coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
chip.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _NB_AGESA_CHIP_H_
4 #define _NB_AGESA_CHIP_H_
5 
7 {
8  /*
9  * Here is an example of how this would be put into the devicetree.cb file
10  * Note that only Socket 0, Channel 0 is used for the Ontario
11  * (family 14, Fam 0x00-0x0F) parts.
12  * This should be placed after the device pci 18.x statements
13  *
14  * register "spdAddrLookup" = "
15  * { // Use 8-bit SPD addresses here
16  * { {0xA0, 0xA2}, {0x00, 0x00}, }, // socket 0 - Channel 0 & 1
17  * { {0x00, 0x00}, {0x00, 0x00}, }, // socket 1 - Channel 0 & 1 (Unused)
18  * }"
19  *
20  */
21 
22  u8 spdAddrLookup[2][2][4];
23 };
24 
25 #endif
uint8_t u8
Definition: stdint.h:45