blob: b95dbf4dbe6b018d64c8c7fc28caab1e7e9b77f7 [file] [log] [blame]
Felix Held4a8cd722020-04-18 22:26:39 +02001# SPDX-License-Identifier: GPL-2.0-only
Marc Jones24484842017-05-04 21:17:45 -06002
Marshall Dawson68519222019-11-25 11:36:15 -07003config SOC_AMD_STONEYRIDGE
4 bool
5 help
6 AMD support for SOCs in Family 15h Models 60h-6Fh and Models 70h-7Fh.
7
8if SOC_AMD_STONEYRIDGE
9
Marc Jones21cde8b2017-05-07 16:47:36 -060010config CPU_SPECIFIC_OPTIONS
11 def_bool y
Marshall Dawson68592c32017-11-06 10:56:52 -070012 select ACPI_AMD_HARDWARE_SLEEP_VALUES
Felix Heldc07c7c92020-12-04 18:50:53 +010013 select ACPI_NO_SMI_GNVS
14 select ARCH_ALL_STAGES_X86_32
15 select BOOT_DEVICE_SUPPORTS_WRITES if BOOT_DEVICE_SPI_FLASH
Aaron Durbin51e4c1a2018-01-24 17:42:51 -070016 select COLLECT_TIMESTAMPS_NO_TSC
Chris Ching6fc39d42017-12-20 16:06:03 -070017 select DRIVERS_I2C_DESIGNWARE
Marc Jones9156cac2017-07-12 11:05:38 -060018 select GENERIC_GPIO_LIB
Aaron Durbin51e4c1a2018-01-24 17:42:51 -070019 select GENERIC_UDELAY
Angel Ponsb74975e2020-07-13 01:12:57 +020020 select HAVE_CF9_RESET
Felix Heldc07c7c92020-12-04 18:50:53 +010021 select HAVE_SMI_HANDLER
Marc Jones24484842017-05-04 21:17:45 -060022 select HAVE_USBDEBUG_OPTIONS
Felix Heldc07c7c92020-12-04 18:50:53 +010023 select IOAPIC
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060024 select PARALLEL_MP
Marc Jones33eef132017-10-26 16:50:42 -060025 select PARALLEL_MP_AP_WORK
Marc Jones17e85ad2017-12-20 16:21:25 -070026 select RTC
Felix Heldc07c7c92020-12-04 18:50:53 +010027 select SOC_AMD_PI
28 select SOC_AMD_COMMON
29 select SOC_AMD_COMMON_BLOCK_ACPI
30 select SOC_AMD_COMMON_BLOCK_ACPIMMIO
31 select SOC_AMD_COMMON_BLOCK_AOAC
32 select SOC_AMD_COMMON_BLOCK_BANKED_GPIOS
33 select SOC_AMD_COMMON_BLOCK_CAR
34 select SOC_AMD_COMMON_BLOCK_HDA
35 select SOC_AMD_COMMON_BLOCK_IOMMU
36 select SOC_AMD_COMMON_BLOCK_LPC
37 select SOC_AMD_COMMON_BLOCK_PCI
38 select SOC_AMD_COMMON_BLOCK_PI
39 select SOC_AMD_COMMON_BLOCK_PSP_GEN1
40 select SOC_AMD_COMMON_BLOCK_S3
41 select SOC_AMD_COMMON_BLOCK_SATA
42 select SOC_AMD_COMMON_BLOCK_SMBUS
43 select SOC_AMD_COMMON_BLOCK_SMI
44 select SOC_AMD_COMMON_BLOCK_SPI
45 select SSE2
46 select TSC_SYNC_LFENCE
47 select X86_AMD_FIXED_MTRRS
Marc Jones24484842017-05-04 21:17:45 -060048
Marshall Dawson12294d02019-11-25 07:21:18 -070049config AMD_APU_STONEYRIDGE
50 bool
51 help
52 AMD Stoney Ridge APU
53
Marshall Dawsone1988f52019-11-25 11:15:35 -070054config AMD_APU_PRAIRIEFALCON
55 bool
56 help
57 AMD Embedded Prairie Falcon APU
58
Marshall Dawson12294d02019-11-25 07:21:18 -070059config AMD_APU_MERLINFALCON
60 bool
61 help
Marshall Dawsone1988f52019-11-25 11:15:35 -070062 AMD Embedded Merlin Falcon APU
Marshall Dawson12294d02019-11-25 07:21:18 -070063
Marshall Dawson3ac0ab52019-11-24 19:03:56 -070064config AMD_APU_PKG_FP4
65 bool
66 help
67 AMD FP4 package
68
69config AMD_APU_PKG_FT4
70 bool
71 help
72 AMD FT4 package
73
74config AMD_SOC_PACKAGE
75 string
76 default "FP4" if AMD_APU_PKG_FP4
77 default "FT4" if AMD_APU_PKG_FT4
78
Marshall Dawsone7557de2017-06-09 16:35:14 -060079config VBOOT
Marshall Dawsone7557de2017-06-09 16:35:14 -060080 select VBOOT_SEPARATE_VERSTAGE
81 select VBOOT_STARTS_IN_BOOTBLOCK
Marc Jones4c887ea2018-04-25 16:43:18 -060082 select VBOOT_VBNV_CMOS
83 select VBOOT_VBNV_CMOS_BACKUP_TO_FLASH
Marshall Dawsone7557de2017-06-09 16:35:14 -060084
Marc Jones21cde8b2017-05-07 16:47:36 -060085# TODO: Sync these with definitions in PI vendorcode.
86# DCACHE_RAM_BASE must equal BSP_STACK_BASE_ADDR.
87# DCACHE_RAM_SIZE must equal BSP_STACK_SIZE.
88
89config DCACHE_RAM_BASE
90 hex
91 default 0x30000
92
93config DCACHE_RAM_SIZE
94 hex
95 default 0x10000
96
Marshall Dawson9df969a2017-07-25 18:46:46 -060097config DCACHE_BSP_STACK_SIZE
Marshall Dawson9df969a2017-07-25 18:46:46 -060098 hex
99 default 0x4000
100 help
101 The amount of anticipated stack usage in CAR by bootblock and
102 other stages.
103
Marshall Dawson7c3f1e72017-08-24 09:59:10 -0600104config PRERAM_CBMEM_CONSOLE_SIZE
105 hex
Marshall Dawson1df6bc62017-12-19 20:41:29 -0700106 default 0x1600
Marshall Dawson7c3f1e72017-08-24 09:59:10 -0600107 help
108 Increase this value if preram cbmem console is getting truncated
109
Marc Jones21cde8b2017-05-07 16:47:36 -0600110config CPU_ADDR_BITS
111 int
112 default 48
113
Marc Jones1587dc82017-05-15 18:55:11 -0600114config BOTTOMIO_POSITION
115 hex "Bottom of 32-bit IO space"
116 default 0xD0000000
117 help
118 If PCI peripherals with big BARs are connected to the system
119 the bottom of the IO must be decreased to allocate such
120 devices.
121
122 Declare the beginning of the 128MB-aligned MMIO region. This
123 option is useful when PCI peripherals requesting large address
124 ranges are present.
125
Marc Jones1587dc82017-05-15 18:55:11 -0600126config MMCONF_BASE_ADDRESS
127 hex
128 default 0xF8000000
129
130config MMCONF_BUS_NUMBER
131 int
132 default 64
133
134config VGA_BIOS_ID
135 string
Marshall Dawson12294d02019-11-25 07:21:18 -0700136 default "1002,9874" if AMD_APU_MERLINFALCON
Marc Jones1587dc82017-05-15 18:55:11 -0600137 default "1002,98e4"
138 help
139 The default VGA BIOS PCI vendor/device ID should be set to the
140 result of the map_oprom_vendev() function in northbridge.c.
141
142config VGA_BIOS_FILE
143 string
Marshall Dawson7987c1c2019-11-25 08:29:28 -0700144 default "3rdparty/amd_blobs/stoneyridge/CarrizoGenericVbios.bin" if AMD_APU_MERLINFALCON
Marshall Dawsone1988f52019-11-25 11:15:35 -0700145 default "3rdparty/amd_blobs/stoneyridge/StoneyGenericVbios.bin" if AMD_APU_PRAIRIEFALCON
146 default "3rdparty/amd_blobs/stoneyridge/StoneyGenericVbios.bin" if AMD_APU_STONEYRIDGE
Marc Jones1587dc82017-05-15 18:55:11 -0600147
Marshall Dawson668dea02017-11-29 09:57:15 -0700148config S3_VGA_ROM_RUN
149 bool
150 default n
151
Marc Jones1587dc82017-05-15 18:55:11 -0600152config HEAP_SIZE
153 hex
154 default 0xc0000
155
Marc Jones24484842017-05-04 21:17:45 -0600156config EHCI_BAR
157 hex
158 default 0xfef00000
159
160config STONEYRIDGE_XHCI_ENABLE
161 bool "Enable Stoney Ridge XHCI Controller"
162 default y
163 help
164 The XHCI controller must be enabled and the XHCI firmware
165 must be added in order to have USB 3.0 support configured
166 by coreboot. The OS will be responsible for enabling the XHCI
Jonathan Neuschäfer45e6c822018-12-11 17:53:07 +0100167 controller if the XHCI firmware is available but the
Marc Jones24484842017-05-04 21:17:45 -0600168 XHCI controller is not enabled by coreboot.
169
170config STONEYRIDGE_XHCI_FWM
171 bool "Add xhci firmware"
172 default y
173 help
174 Add Stoney Ridge XHCI Firmware to support the onboard USB 3.0
175
Marc Jones24484842017-05-04 21:17:45 -0600176config STONEYRIDGE_GEC_FWM
177 bool
178 default n
179 help
180 Add Stoney Ridge GEC Firmware to support the onboard gigabit Ethernet MAC.
181 Must be connected to a Broadcom B50610 or B50610M PHY on the motherboard.
182
183config STONEYRIDGE_XHCI_FWM_FILE
184 string "XHCI firmware path and filename"
Marshall Dawson7987c1c2019-11-25 08:29:28 -0700185 default "3rdparty/amd_blobs/stoneyridge/xhci.bin"
Marc Jones24484842017-05-04 21:17:45 -0600186 depends on STONEYRIDGE_XHCI_FWM
187
Marc Jones24484842017-05-04 21:17:45 -0600188config STONEYRIDGE_GEC_FWM_FILE
189 string "GEC firmware path and filename"
190 depends on STONEYRIDGE_GEC_FWM
191
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800192config AMDFW_CONFIG_FILE
193 string
194 string "AMD PSP Firmware config file"
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800195 default "src/soc/amd/stoneyridge/fw_cz.cfg" if AMD_APU_MERLINFALCON
196 default "src/soc/amd/stoneyridge/fw_st.cfg" if AMD_APU_PRAIRIEFALCON
197 default "src/soc/amd/stoneyridge/fw_st.cfg" if AMD_APU_STONEYRIDGE
Marc Jones24484842017-05-04 21:17:45 -0600198
199config STONEYRIDGE_SATA_MODE
200 int "SATA Mode"
201 default 0
202 range 0 6
203 help
204 Select the mode in which SATA should be driven.
205 The default is NATIVE.
206 0: NATIVE mode does not require a ROM.
207 2: AHCI may work with or without AHCI ROM. It depends on the payload support.
208 For example, seabios does not require the AHCI ROM.
209 3: LEGACY IDE
210 4: IDE to AHCI
211 5: AHCI7804: ROM Required, and AMD driver required in the OS.
212 6: IDE to AHCI7804: ROM Required, and AMD driver required in the OS.
213
214comment "NATIVE"
215 depends on STONEYRIDGE_SATA_MODE = 0
216
217comment "AHCI"
218 depends on STONEYRIDGE_SATA_MODE = 2
219
220comment "LEGACY IDE"
221 depends on STONEYRIDGE_SATA_MODE = 3
222
223comment "IDE to AHCI"
224 depends on STONEYRIDGE_SATA_MODE = 4
225
226comment "AHCI7804"
227 depends on STONEYRIDGE_SATA_MODE = 5
228
229comment "IDE to AHCI7804"
230 depends on STONEYRIDGE_SATA_MODE = 6
231
232if STONEYRIDGE_SATA_MODE = 2 || STONEYRIDGE_SATA_MODE = 5
233
234config AHCI_ROM_ID
235 string "AHCI device PCI IDs"
236 default "1022,7801" if STONEYRIDGE_SATA_MODE = 2
237 default "1022,7804" if STONEYRIDGE_SATA_MODE = 5
238
239endif # STONEYRIDGE_SATA_MODE = 2 || STONEYRIDGE_SATA_MODE = 5
240
241config STONEYRIDGE_LEGACY_FREE
242 bool "System is legacy free"
243 help
244 Select y if there is no keyboard controller in the system.
245 This sets variables in AGESA and ACPI.
246
Marc Jones24484842017-05-04 21:17:45 -0600247config SERIRQ_CONTINUOUS_MODE
248 bool
249 default n
250 help
251 Set this option to y for serial IRQ in continuous mode.
252 Otherwise it is in quiet mode.
253
254config STONEYRIDGE_ACPI_IO_BASE
255 hex
256 default 0x400
257 help
258 Base address for the ACPI registers.
259 This value must match the hardcoded value of AGESA.
260
261config STONEYRIDGE_UART
262 bool "UART controller on Stoney Ridge"
263 default n
264 select DRIVERS_UART_8250MEM
265 select DRIVERS_UART_8250MEM_32
266 select NO_UART_ON_SUPERIO
267 select UART_OVERRIDE_REFCLK
268 help
269 There are two UART controllers in Stoney Ridge.
270 The UART registers are memory-mapped. UART
271 controller 0 registers range from FEDC_6000h
272 to FEDC_6FFFh. UART controller 1 registers
273 range from FEDC_8000h to FEDC_8FFFh.
274
Arthur Heymansb5e72b62018-01-02 23:41:24 +0100275config CONSOLE_UART_BASE_ADDRESS
276 depends on CONSOLE_SERIAL
277 hex
278 default 0xfedc6000
279
Marshall Dawsonc6ef9db2017-05-14 14:16:56 -0600280config SMM_TSEG_SIZE
281 hex
Marshall Dawson0801b332017-08-25 15:29:45 -0600282 default 0x800000 if SMM_TSEG && HAVE_SMI_HANDLER
Marshall Dawsonc6ef9db2017-05-14 14:16:56 -0600283 default 0x0
284
Marshall Dawsonb6172112017-09-13 17:47:31 -0600285config SMM_RESERVED_SIZE
286 hex
Marshall Dawsonfceac7e2018-05-18 14:40:53 -0600287 default 0x150000
Marshall Dawsonb6172112017-09-13 17:47:31 -0600288
Raul E Rangel846b4942018-06-12 10:43:09 -0600289config SMM_MODULE_STACK_SIZE
290 hex
291 default 0x800
292
Marc Jonese013df92017-08-23 16:28:02 -0600293config ACPI_CPU_STRING
294 string
Matt DeVillierc08d4c52020-06-20 23:45:30 -0500295 default "\\_SB.P%03d"
Marc Jonese013df92017-08-23 16:28:02 -0600296
Marshall Dawson9a32c412018-09-04 13:29:12 -0600297config ACPI_BERT
298 bool "Build ACPI BERT Table"
299 default y
300 depends on HAVE_ACPI_TABLES
301 help
302 Report Machine Check errors identified in POST to the OS in an
303 ACPI Boot Error Record Table. This option reserves an 8MB region
304 for building the error structures.
305
Marshall Dawson25eb2bc2019-03-14 12:42:46 -0600306config USE_PSPSECUREOS
Martin Rothb617e322017-09-07 13:23:55 -0600307 bool "Include PSP SecureOS blobs in AMD firmware"
308 default y
309 help
310 Include the PspSecureOs, PspTrustlet and TrustletKey binaries
311 in the amdfw section.
312
313 If unsure, answer 'y'
314
Richard Spiegel1bc578a2019-06-18 18:19:47 -0700315config SOC_AMD_PSP_SELECTABLE_SMU_FW
316 bool
Marshall Dawson12294d02019-11-25 07:21:18 -0700317 default y if AMD_APU_STONEYRIDGE
Richard Spiegel1bc578a2019-06-18 18:19:47 -0700318 help
319 Some ST implementations allow storing SMU firmware into cbfs and
320 calling the PSP to load the blobs at the proper time.
321
322 Merlin Falcon does not support it. If you are using 00670F00 SOC,
323 ask your AMD representative if it supports it or not.
324
Marshall Dawson5f0520a2017-10-30 16:11:45 -0600325config SOC_AMD_SMU_FANLESS
326 bool
327 depends on SOC_AMD_PSP_SELECTABLE_SMU_FW
328 default n if SOC_AMD_SMU_NOTFANLESS
329 default y
330
331config SOC_AMD_SMU_FANNED
332 bool
333 depends on SOC_AMD_PSP_SELECTABLE_SMU_FW
334 default n
335 select SOC_AMD_SMU_NOTFANLESS
336
337config SOC_AMD_SMU_NOTFANLESS # helper symbol - do not use
338 bool
339 depends on SOC_AMD_PSP_SELECTABLE_SMU_FW
340
Martin Roth30f9b952017-10-03 15:54:45 -0600341config AMDFW_OUTSIDE_CBFS
342 bool "The AMD firmware is outside CBFS"
343 default n
344 help
345 The AMDFW (PSP) is typically locatable in cbfs. Select this
346 option to manually attach the generated amdfw.rom outside of
347 cbfs. The location is selected by the FWM position.
348
Martin Roth6d8ef242017-09-08 14:39:35 -0600349config AMD_FWM_POSITION_INDEX
350 int "Firmware Directory Table location (0 to 5)"
351 range 0 5
352 default 0 if BOARD_ROMSIZE_KB_512
353 default 1 if BOARD_ROMSIZE_KB_1024
354 default 2 if BOARD_ROMSIZE_KB_2048
355 default 3 if BOARD_ROMSIZE_KB_4096
356 default 4 if BOARD_ROMSIZE_KB_8192
357 default 5 if BOARD_ROMSIZE_KB_16384
358 help
359 Typically this is calculated by the ROM size, but there may
360 be situations where you want to put the firmware directory
361 table in a different location.
362 0: 512 KB - 0xFFFA0000
363 1: 1 MB - 0xFFF20000
364 2: 2 MB - 0xFFE20000
365 3: 4 MB - 0xFFC20000
366 4: 8 MB - 0xFF820000
367 5: 16 MB - 0xFF020000
368
369comment "AMD Firmware Directory Table set to location for 512KB ROM"
370 depends on AMD_FWM_POSITION_INDEX = 0
371comment "AMD Firmware Directory Table set to location for 1MB ROM"
372 depends on AMD_FWM_POSITION_INDEX = 1
373comment "AMD Firmware Directory Table set to location for 2MB ROM"
374 depends on AMD_FWM_POSITION_INDEX = 2
375comment "AMD Firmware Directory Table set to location for 4MB ROM"
376 depends on AMD_FWM_POSITION_INDEX = 3
377comment "AMD Firmware Directory Table set to location for 8MB ROM"
378 depends on AMD_FWM_POSITION_INDEX = 4
379comment "AMD Firmware Directory Table set to location for 16MB ROM"
380 depends on AMD_FWM_POSITION_INDEX = 5
381
Marc Jones17431ab2017-11-16 15:26:00 -0700382config DIMM_SPD_SIZE
383 int
384 default 512 # DDR4
385
Marc Jones578a79d2017-12-06 16:27:04 -0700386config RO_REGION_ONLY
387 string
388 depends on CHROMEOS
389 default "apu/amdfw"
390
Chris Ching6fc39d42017-12-20 16:06:03 -0700391config DRIVERS_I2C_DESIGNWARE_CLOCK_MHZ
392 int
393 default 133
394
Richard Spiegel6a389142018-03-05 14:28:10 -0700395config MAINBOARD_POWER_RESTORE
396 def_bool n
397 help
398 This option determines what state to go to once power is restored
399 after having been lost in S0. Select this option to automatically
400 return to S0. Otherwise the system will remain in S5 once power
401 is restored.
402
Marshall Dawson68519222019-11-25 11:36:15 -0700403endif # SOC_AMD_STONEYRIDGE