coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
lpc.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_CEZANNE_LPC_H
4 #define AMD_CEZANNE_LPC_H
5 
6 /* LPC_MISC_CONTROL_BITS at D14F3x078 */
7 /* The definitions of bits 9 and 10 are swapped on Picasso and older compared to Renoir/Cezanne
8  and newer, so we need to keep those in a SoC-specific header file. */
9 #define LPC_LDRQ0_PU_EN BIT(10)
10 #define LPC_LDRQ0_PD_EN BIT(9)
11 
12 #define SPI_BASE_ADDRESS_REGISTER 0xa0
13 #define SPI_BASE_ALIGNMENT BIT(8)
14 #define SPI_BASE_RESERVED (BIT(5) | BIT(6) | BIT(7))
15 #define PSP_SPI_MMIO_SEL BIT(4)
16 #define ROUTE_TPM_2_SPI BIT(3)
17 #define SPI_ABORT_ENABLE BIT(2)
18 #define SPI_ROM_ENABLE BIT(1)
19 #define SPI_ROM_ALT_ENABLE BIT(0)
20 #define SPI_PRESERVE_BITS (BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(4))
21 
22 #endif /* AMD_CEZANNE_LPC_H */