coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
data_fabric_def.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_BLOCK_DATA_FABRIC_DEF_H
4 #define AMD_BLOCK_DATA_FABRIC_DEF_H
5 
6 #define DF_FICAA_BIOS 0x5C
7 #define DF_FICAD_LO 0x98
8 #define DF_FICAD_HI 0x9C
9 
10 #define DF_IND_CFG_INST_ACC_EN (1 << 0)
11 #define DF_IND_CFG_ACC_REG_SHIFT 2
12 #define DF_IND_CFG_ACC_REG_MASK (0x1ff << DF_IND_CFG_ACC_REG_SHIFT)
13 #define DF_IND_CFG_ACC_FUN_SHIFT 11
14 #define DF_IND_CFG_ACC_FUN_MASK (0x7 << DF_IND_CFG_ACC_FUN_SHIFT)
15 #define DF_IND_CFG_64B_EN_SHIFT 14
16 #define DF_IND_CFG_64B_EN (0x1 << DF_IND_CFG_64B_EN_SHIFT)
17 #define DF_IND_CFG_INST_ID_SHIFT 16
18 #define DF_IND_CFG_INST_ID_MASK (0xff << DF_IND_CFG_INST_ID_SHIFT)
19 
20 #endif /* AMD_BLOCK_DATA_FABRIC_DEF_H */