blob: f7f2d6898a87e4d0c6221a56b763682b630f07a8 [file] [log] [blame]
Felix Helddc2d3562020-12-02 14:38:53 +01001# SPDX-License-Identifier: GPL-2.0-only
2
3config SOC_AMD_CEZANNE
4 bool
5 help
6 AMD Cezanne support
7
8if SOC_AMD_CEZANNE
9
10config SOC_SPECIFIC_OPTIONS
11 def_bool y
Kyösti Mälkki3139c8d2020-06-28 16:33:33 +030012 select ACPI_SOC_NVS
Felix Helddc2d3562020-12-02 14:38:53 +010013 select ARCH_BOOTBLOCK_X86_32
14 select ARCH_VERSTAGE_X86_32
15 select ARCH_ROMSTAGE_X86_32
16 select ARCH_RAMSTAGE_X86_32
Felix Held44f41532020-12-09 02:01:16 +010017 select HAVE_CF9_RESET
Felix Held4be064a2020-12-08 17:21:04 +010018 select IOAPIC
Felix Helddc2d3562020-12-02 14:38:53 +010019 select RESET_VECTOR_IN_RAM
20 select SOC_AMD_COMMON
Felix Held64de2c12020-12-05 20:53:59 +010021 select SOC_AMD_COMMON_BLOCK_ACPIMMIO
Felix Held07462ef2020-12-11 15:55:45 +010022 select SOC_AMD_COMMON_BLOCK_BANKED_GPIOS
Felix Helddc2d3562020-12-02 14:38:53 +010023 select SOC_AMD_COMMON_BLOCK_NONCAR
24 select SOC_AMD_COMMON_BLOCK_PCI_MMCONF
Felix Held4be064a2020-12-08 17:21:04 +010025 select SOC_AMD_COMMON_BLOCK_SMBUS
Zheng Bao02a5ddd2020-12-15 22:16:51 +080026 select SOC_AMD_COMMON_BLOCK_SMI
Felix Held65783fb2020-12-04 17:38:46 +010027 select SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H
Felix Held8a3d4d52021-01-13 03:06:21 +010028 select SOC_AMD_COMMON_BLOCK_UART
Felix Helddc2d3562020-12-02 14:38:53 +010029
Furquan Shaikh696f4ea2021-01-08 11:48:52 -080030config CHIPSET_DEVICETREE
31 string
32 default "soc/amd/cezanne/chipset.cb"
33
Felix Helddc2d3562020-12-02 14:38:53 +010034config EARLY_RESERVED_DRAM_BASE
35 hex
36 default 0x2000000
37 help
38 This variable defines the base address of the DRAM which is reserved
39 for usage by coreboot in early stages (i.e. before ramstage is up).
40 This memory gets reserved in BIOS tables to ensure that the OS does
41 not use it, thus preventing corruption of OS memory in case of S3
42 resume.
43
44config EARLYRAM_BSP_STACK_SIZE
45 hex
46 default 0x1000
47
48config PSP_APOB_DRAM_ADDRESS
49 hex
50 default 0x2001000
51 help
52 Location in DRAM where the PSP will copy the AGESA PSP Output
53 Block.
54
55config PRERAM_CBMEM_CONSOLE_SIZE
56 hex
57 default 0x1600
58 help
59 Increase this value if preram cbmem console is getting truncated
60
Felix Helddc2d3562020-12-02 14:38:53 +010061config C_ENV_BOOTBLOCK_SIZE
62 hex
63 default 0x10000
64 help
65 Sets the size of the bootblock stage that should be loaded in DRAM.
66 This variable controls the DRAM allocation size in linker script
67 for bootblock stage.
68
Felix Helddc2d3562020-12-02 14:38:53 +010069config ROMSTAGE_ADDR
70 hex
71 default 0x2040000
72 help
73 Sets the address in DRAM where romstage should be loaded.
74
75config ROMSTAGE_SIZE
76 hex
77 default 0x80000
78 help
79 Sets the size of DRAM allocation for romstage in linker script.
80
81config FSP_M_ADDR
82 hex
83 default 0x20C0000
84 help
85 Sets the address in DRAM where FSP-M should be loaded. cbfstool
86 performs relocation of FSP-M to this address.
87
88config FSP_M_SIZE
89 hex
90 default 0x80000
91 help
92 Sets the size of DRAM allocation for FSP-M in linker script.
93
94config RAMBASE
95 hex
96 default 0x10000000
97
98config CPU_ADDR_BITS
99 int
100 default 48
101
102config MMCONF_BASE_ADDRESS
103 hex
104 default 0xF8000000
105
106config MMCONF_BUS_NUMBER
107 int
108 default 64
109
Felix Held8a3d4d52021-01-13 03:06:21 +0100110config CONSOLE_UART_BASE_ADDRESS
111 depends on CONSOLE_SERIAL && AMD_SOC_CONSOLE_UART
112 hex
113 default 0xfedc9000 if UART_FOR_CONSOLE = 0
114 default 0xfedca000 if UART_FOR_CONSOLE = 1
115
Felix Helddc2d3562020-12-02 14:38:53 +0100116endif # SOC_AMD_CEZANNE