coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
data_fabric.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_CEZANNE_DATA_FABRIC_H
4 #define AMD_CEZANNE_DATA_FABRIC_H
5 
6 #include <types.h>
7 
8 /* SoC-specific bits in D18F0_MMIO_CTRL0 */
9 #define DF_MMIO_NP BIT(16)
10 
11 #define IOMS0_FABRIC_ID 10
12 
13 #define NUM_NB_MMIO_REGS 8
14 
15 void data_fabric_set_mmio_np(void);
16 
17 #endif /* AMD_CEZANNE_DATA_FABRIC_H */
void data_fabric_set_mmio_np(void)
Definition: data_fabric.c:15