coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
efuse.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef SOC_MEDIATEK_MT8195_EFUSE_H
3 #define SOC_MEDIATEK_MT8195_EFUSE_H
4 
5 #include <soc/addressmap.h>
6 #include <types.h>
7 
8 struct efuse_regs {
9  uint32_t reserved[130];
11 };
12 
13 check_member(efuse_regs, adc_cali_reg, 0x208);
14 static struct efuse_regs *const mtk_efuse = (void *)EFUSEC_BASE;
15 
16 #endif
check_member(efuse_regs, adc_cali_reg, 0x1b4)
static struct efuse_regs *const mtk_efuse
Definition: efuse.h:14
@ EFUSEC_BASE
Definition: addressmap.h:45
unsigned int uint32_t
Definition: stdint.h:14
uint32_t reserved[130]
Definition: efuse.h:10
uint32_t adc_cali_reg
Definition: efuse.h:11