blob: 7dc27c86da0789b7a6a84e285fcc3f783ffe4f89 [file] [log] [blame]
Marc Jones24484842017-05-04 21:17:45 -06001/*
2 * This file is part of the coreboot project.
3 *
Richard Spiegel376dc822017-12-01 08:24:26 -07004 * Copyright (C) 2010-2017 Advanced Micro Devices, Inc.
Marc Jones24484842017-05-04 21:17:45 -06005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <console/console.h>
17
18#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020019#include <device/mmio.h>
Marshall Dawson8a906df2017-06-13 14:19:02 -060020#include <bootstate.h>
Marshall Dawsone9b862e2017-09-22 15:14:46 -060021#include <cpu/x86/smm.h>
Marc Jones24484842017-05-04 21:17:45 -060022#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <device/pci_ops.h>
26#include <cbmem.h>
Marshall Dawson70f051f2018-03-20 10:27:41 -060027#include <elog.h>
Richard Spiegel2bbc3dc2017-12-06 16:14:58 -070028#include <amdblocks/amd_pci_util.h>
Richard Spiegel71081072018-07-26 10:51:38 -070029#include <amdblocks/agesawrapper.h>
Nico Huber73c11192018-10-06 18:20:47 +020030#include <amdblocks/reset.h>
Marc Jonesdfeb1c42017-08-07 19:08:24 -060031#include <soc/southbridge.h>
Richard Spiegelb40e1932018-10-24 12:51:21 -070032#include <soc/smbus.h>
Marc Jones24484842017-05-04 21:17:45 -060033#include <soc/smi.h>
Richard Spiegel376dc822017-12-01 08:24:26 -070034#include <soc/amd_pci_int_defs.h>
Richard Spiegelbec44f22017-11-24 07:41:29 -070035#include <delay.h>
36#include <soc/pci_devs.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070037#include <agesa_headers.h>
Richard Spiegeldbee8ae2018-05-09 17:34:04 -070038#include <soc/nvs.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070039
Richard Spiegel0e0e93c2018-03-13 10:19:51 -070040/*
41 * Table of devices that need their AOAC registers enabled and waited
42 * upon (usually about .55 milliseconds). Instead of individual delays
43 * waiting for each device to become available, a single delay will be
Richard Spiegel6dfbb592018-03-15 15:45:44 -070044 * executed.
Richard Spiegel0e0e93c2018-03-13 10:19:51 -070045 */
46const static struct stoneyridge_aoac aoac_devs[] = {
47 { (FCH_AOAC_D3_CONTROL_UART0 + CONFIG_UART_FOR_CONSOLE * 2),
48 (FCH_AOAC_D3_STATE_UART0 + CONFIG_UART_FOR_CONSOLE * 2) },
49 { FCH_AOAC_D3_CONTROL_AMBA, FCH_AOAC_D3_STATE_AMBA },
50 { FCH_AOAC_D3_CONTROL_I2C0, FCH_AOAC_D3_STATE_I2C0 },
51 { FCH_AOAC_D3_CONTROL_I2C1, FCH_AOAC_D3_STATE_I2C1 },
52 { FCH_AOAC_D3_CONTROL_I2C2, FCH_AOAC_D3_STATE_I2C2 },
53 { FCH_AOAC_D3_CONTROL_I2C3, FCH_AOAC_D3_STATE_I2C3 }
54};
55
Marshall Dawson2942db62017-12-14 10:00:27 -070056static int is_sata_config(void)
57{
Richard Spiegelbdd272a2018-10-16 13:53:05 -070058 return !((SataNativeIde == CONFIG_STONEYRIDGE_SATA_MODE)
59 || (SataLegacyIde == CONFIG_STONEYRIDGE_SATA_MODE));
Marshall Dawson2942db62017-12-14 10:00:27 -070060}
61
Richard Spiegel7ea8e022018-01-16 14:40:10 -070062static inline int sb_sata_enable(void)
63{
64 /* True if IDE or AHCI. */
Richard Spiegelbdd272a2018-10-16 13:53:05 -070065 return (SataNativeIde == CONFIG_STONEYRIDGE_SATA_MODE) ||
66 (SataAhci == CONFIG_STONEYRIDGE_SATA_MODE);
Richard Spiegel7ea8e022018-01-16 14:40:10 -070067}
68
69static inline int sb_ide_enable(void)
70{
71 /* True if IDE or LEGACY IDE. */
Richard Spiegelbdd272a2018-10-16 13:53:05 -070072 return (SataNativeIde == CONFIG_STONEYRIDGE_SATA_MODE) ||
73 (SataLegacyIde == CONFIG_STONEYRIDGE_SATA_MODE);
Richard Spiegel7ea8e022018-01-16 14:40:10 -070074}
75
Marshall Dawson2942db62017-12-14 10:00:27 -070076void SetFchResetParams(FCH_RESET_INTERFACE *params)
77{
Kyösti Mälkkie7377552018-06-21 16:20:55 +030078 const struct device *dev = pcidev_path_on_root(SATA_DEVFN);
Julius Wernercd49cce2019-03-05 16:53:33 -080079 params->Xhci0Enable = CONFIG(STONEYRIDGE_XHCI_ENABLE);
Richard Spiegelbb18b432018-08-03 10:37:28 -070080 if (dev && dev->enabled) {
81 params->SataEnable = sb_sata_enable();
82 params->IdeEnable = sb_ide_enable();
83 } else {
84 params->SataEnable = FALSE;
85 params->IdeEnable = FALSE;
86 }
Marshall Dawson2942db62017-12-14 10:00:27 -070087}
88
89void SetFchEnvParams(FCH_INTERFACE *params)
90{
Kyösti Mälkkie7377552018-06-21 16:20:55 +030091 const struct device *dev = pcidev_path_on_root(SATA_DEVFN);
Marshall Dawson2942db62017-12-14 10:00:27 -070092 params->AzaliaController = AzEnable;
93 params->SataClass = CONFIG_STONEYRIDGE_SATA_MODE;
Richard Spiegelbb18b432018-08-03 10:37:28 -070094 if (dev && dev->enabled) {
95 params->SataEnable = is_sata_config();
96 params->IdeEnable = !params->SataEnable;
97 params->SataIdeMode = (CONFIG_STONEYRIDGE_SATA_MODE ==
98 SataLegacyIde);
99 } else {
100 params->SataEnable = FALSE;
101 params->IdeEnable = FALSE;
102 params->SataIdeMode = FALSE;
103 }
Marshall Dawson2942db62017-12-14 10:00:27 -0700104}
105
106void SetFchMidParams(FCH_INTERFACE *params)
107{
108 SetFchEnvParams(params);
109}
Marc Jones24484842017-05-04 21:17:45 -0600110
Richard Spiegel376dc822017-12-01 08:24:26 -0700111/*
112 * Table of APIC register index and associated IRQ name. Using IDX_XXX_NAME
Jonathan Neuschäfer5268b762018-02-12 12:24:25 +0100113 * provides a visible association with the index, therefore helping
Richard Spiegel376dc822017-12-01 08:24:26 -0700114 * maintainability of table. If a new index/name is defined in
115 * amd_pci_int_defs.h, just add the pair at the end of this table.
116 * Order is not important.
117 */
118const static struct irq_idx_name irq_association[] = {
Richard Spiegele89d4442017-12-08 07:52:42 -0700119 { PIRQ_A, "INTA#" },
120 { PIRQ_B, "INTB#" },
121 { PIRQ_C, "INTC#" },
122 { PIRQ_D, "INTD#" },
123 { PIRQ_E, "INTE#" },
124 { PIRQ_F, "INTF#" },
125 { PIRQ_G, "INTG#" },
126 { PIRQ_H, "INTH#" },
127 { PIRQ_MISC, "Misc" },
128 { PIRQ_MISC0, "Misc0" },
129 { PIRQ_MISC1, "Misc1" },
130 { PIRQ_MISC2, "Misc2" },
Richard Spiegel376dc822017-12-01 08:24:26 -0700131 { PIRQ_SIRQA, "Ser IRQ INTA" },
132 { PIRQ_SIRQB, "Ser IRQ INTB" },
133 { PIRQ_SIRQC, "Ser IRQ INTC" },
134 { PIRQ_SIRQD, "Ser IRQ INTD" },
Richard Spiegele89d4442017-12-08 07:52:42 -0700135 { PIRQ_SCI, "SCI" },
136 { PIRQ_SMBUS, "SMBUS" },
137 { PIRQ_ASF, "ASF" },
138 { PIRQ_HDA, "HDA" },
139 { PIRQ_FC, "FC" },
140 { PIRQ_PMON, "PerMon" },
141 { PIRQ_SD, "SD" },
142 { PIRQ_SDIO, "SDIOt" },
Richard Spiegele89d4442017-12-08 07:52:42 -0700143 { PIRQ_EHCI, "EHCI" },
144 { PIRQ_XHCI, "XHCI" },
145 { PIRQ_SATA, "SATA" },
146 { PIRQ_GPIO, "GPIO" },
147 { PIRQ_I2C0, "I2C0" },
148 { PIRQ_I2C1, "I2C1" },
149 { PIRQ_I2C2, "I2C2" },
150 { PIRQ_I2C3, "I2C3" },
151 { PIRQ_UART0, "UART0" },
152 { PIRQ_UART1, "UART1" },
Richard Spiegel376dc822017-12-01 08:24:26 -0700153};
154
Richard Spiegelebf3aa82017-11-24 07:47:42 -0700155/*
156 * Structure to simplify code obtaining the total of used wide IO
157 * registers and the size assigned to each.
158 */
159static struct wide_io_ioport_and_bits {
160 uint32_t enable;
161 uint16_t port;
162 uint8_t alt;
163} wio_io_en[TOTAL_WIDEIO_PORTS] = {
164 {
165 LPC_WIDEIO0_ENABLE,
166 LPC_WIDEIO_GENERIC_PORT,
167 LPC_ALT_WIDEIO0_ENABLE
168 },
169 {
170 LPC_WIDEIO1_ENABLE,
171 LPC_WIDEIO1_GENERIC_PORT,
172 LPC_ALT_WIDEIO1_ENABLE
173 },
174 {
175 LPC_WIDEIO2_ENABLE,
176 LPC_WIDEIO2_GENERIC_PORT,
177 LPC_ALT_WIDEIO2_ENABLE
178 }
179};
180
Richard Spiegel376dc822017-12-01 08:24:26 -0700181const struct irq_idx_name *sb_get_apic_reg_association(size_t *size)
182{
183 *size = ARRAY_SIZE(irq_association);
184 return irq_association;
185}
186
Richard Spiegelebf3aa82017-11-24 07:47:42 -0700187/**
188 * @brief Find the size of a particular wide IO
189 *
190 * @param index = index of desired wide IO
191 *
192 * @return size of desired wide IO
193 */
194uint16_t sb_wideio_size(int index)
195{
196 uint32_t enable_register;
197 uint16_t size = 0;
198 uint8_t alternate_register;
199
200 if (index >= TOTAL_WIDEIO_PORTS)
201 return size;
202 enable_register = pci_read_config32(SOC_LPC_DEV,
203 LPC_IO_OR_MEM_DECODE_ENABLE);
204 alternate_register = pci_read_config8(SOC_LPC_DEV,
205 LPC_ALT_WIDEIO_RANGE_ENABLE);
206 if (enable_register & wio_io_en[index].enable)
207 size = (alternate_register & wio_io_en[index].alt) ?
208 16 : 512;
209 return size;
210}
211
212/**
213 * @brief Identify if any LPC wide IO is covering the IO range
214 *
215 * @param start = start of IO range
216 * @param size = size of IO range
217 *
218 * @return Index of wide IO covering the range or error
219 */
220int sb_find_wideio_range(uint16_t start, uint16_t size)
221{
Richard Spiegelebf3aa82017-11-24 07:47:42 -0700222 int i, index = WIDEIO_RANGE_ERROR;
223 uint16_t end, current_size, start_wideio, end_wideio;
224
225 end = start + size;
Richard Spiegelebf3aa82017-11-24 07:47:42 -0700226 for (i = 0; i < TOTAL_WIDEIO_PORTS; i++) {
227 current_size = sb_wideio_size(i);
228 if (current_size == 0)
229 continue;
230 start_wideio = pci_read_config16(SOC_LPC_DEV,
231 wio_io_en[i].port);
232 end_wideio = start_wideio + current_size;
233 if ((start >= start_wideio) && (end <= end_wideio)) {
234 index = i;
235 break;
236 }
237 }
238 return index;
239}
240
241/**
242 * @brief Program a LPC wide IO to support an IO range
243 *
244 * @param start = start of range to be routed through wide IO
245 * @param size = size of range to be routed through wide IO
246 *
247 * @return Index of wide IO register used or error
248 */
249int sb_set_wideio_range(uint16_t start, uint16_t size)
250{
251 int i, index = WIDEIO_RANGE_ERROR;
252 uint32_t enable_register;
253 uint8_t alternate_register;
254
255 enable_register = pci_read_config32(SOC_LPC_DEV,
256 LPC_IO_OR_MEM_DECODE_ENABLE);
257 alternate_register = pci_read_config8(SOC_LPC_DEV,
258 LPC_ALT_WIDEIO_RANGE_ENABLE);
259 for (i = 0; i < TOTAL_WIDEIO_PORTS; i++) {
260 if (enable_register & wio_io_en[i].enable)
261 continue;
262 index = i;
263 pci_write_config16(SOC_LPC_DEV, wio_io_en[i].port, start);
264 enable_register |= wio_io_en[i].enable;
265 pci_write_config32(SOC_LPC_DEV, LPC_IO_OR_MEM_DECODE_ENABLE,
266 enable_register);
267 if (size <= 16)
268 alternate_register |= wio_io_en[i].alt;
269 else
270 alternate_register &= ~wio_io_en[i].alt;
271 pci_write_config8(SOC_LPC_DEV,
272 LPC_ALT_WIDEIO_RANGE_ENABLE,
273 alternate_register);
274 break;
275 }
276 return index;
277}
278
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600279static void power_on_aoac_device(int aoac_device_control_register)
Richard Spiegelbec44f22017-11-24 07:41:29 -0700280{
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600281 uint8_t byte;
Richard Spiegelbec44f22017-11-24 07:41:29 -0700282
283 /* Power on the UART and AMBA devices */
Marshall Dawsonb435d442019-05-01 21:17:20 -0600284 byte = aoac_read8(aoac_device_control_register);
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600285 byte |= FCH_AOAC_PWR_ON_DEV;
Marshall Dawsonb435d442019-05-01 21:17:20 -0600286 aoac_write8(aoac_device_control_register, byte);
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600287}
Richard Spiegelbec44f22017-11-24 07:41:29 -0700288
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600289static bool is_aoac_device_enabled(int aoac_device_status_register)
290{
291 uint8_t byte;
Marshall Dawsonb435d442019-05-01 21:17:20 -0600292
293 byte = aoac_read8(aoac_device_status_register);
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600294 byte &= (FCH_AOAC_PWR_RST_STATE | FCH_AOAC_RST_CLK_OK_STATE);
295 if (byte == (FCH_AOAC_PWR_RST_STATE | FCH_AOAC_RST_CLK_OK_STATE))
296 return true;
297 else
298 return false;
299}
300
Richard Spiegel0e0e93c2018-03-13 10:19:51 -0700301void enable_aoac_devices(void)
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600302{
303 bool status;
Richard Spiegel0e0e93c2018-03-13 10:19:51 -0700304 int i;
Garrett Kirkendalla0ff6fc2018-03-06 09:23:47 -0600305
Richard Spiegel0e0e93c2018-03-13 10:19:51 -0700306 for (i = 0; i < ARRAY_SIZE(aoac_devs); i++)
307 power_on_aoac_device(aoac_devs[i].enable);
Richard Spiegelbec44f22017-11-24 07:41:29 -0700308
Richard Spiegel0e0e93c2018-03-13 10:19:51 -0700309 /* Wait for AOAC devices to indicate power and clock OK */
310 do {
311 udelay(100);
312 status = true;
313 for (i = 0; i < ARRAY_SIZE(aoac_devs); i++)
314 status &= is_aoac_device_enabled(aoac_devs[i].status);
315 } while (!status);
316}
317
Richard Spiegelbec44f22017-11-24 07:41:29 -0700318void sb_pci_port80(void)
319{
320 u8 byte;
321
322 byte = pci_read_config8(SOC_LPC_DEV, LPC_IO_OR_MEM_DEC_EN_HIGH);
323 byte &= ~DECODE_IO_PORT_ENABLE4_H; /* disable lpc port 80 */
324 pci_write_config8(SOC_LPC_DEV, LPC_IO_OR_MEM_DEC_EN_HIGH, byte);
325}
326
327void sb_lpc_port80(void)
328{
329 u8 byte;
330
331 /* Enable LPC controller */
332 outb(PM_LPC_GATING, PM_INDEX);
333 byte = inb(PM_DATA);
334 byte |= PM_LPC_ENABLE;
335 outb(PM_LPC_GATING, PM_INDEX);
336 outb(byte, PM_DATA);
337
338 /* Enable port 80 LPC decode in pci function 3 configuration space. */
339 byte = pci_read_config8(SOC_LPC_DEV, LPC_IO_OR_MEM_DEC_EN_HIGH);
340 byte |= DECODE_IO_PORT_ENABLE4_H; /* enable port 80 */
341 pci_write_config8(SOC_LPC_DEV, LPC_IO_OR_MEM_DEC_EN_HIGH, byte);
342}
343
344void sb_lpc_decode(void)
345{
346 u32 tmp = 0;
347
348 /* Enable I/O decode to LPC bus */
349 tmp = DECODE_ENABLE_PARALLEL_PORT0 | DECODE_ENABLE_PARALLEL_PORT2
350 | DECODE_ENABLE_PARALLEL_PORT4 | DECODE_ENABLE_SERIAL_PORT0
351 | DECODE_ENABLE_SERIAL_PORT1 | DECODE_ENABLE_SERIAL_PORT2
352 | DECODE_ENABLE_SERIAL_PORT3 | DECODE_ENABLE_SERIAL_PORT4
353 | DECODE_ENABLE_SERIAL_PORT5 | DECODE_ENABLE_SERIAL_PORT6
354 | DECODE_ENABLE_SERIAL_PORT7 | DECODE_ENABLE_AUDIO_PORT0
355 | DECODE_ENABLE_AUDIO_PORT1 | DECODE_ENABLE_AUDIO_PORT2
356 | DECODE_ENABLE_AUDIO_PORT3 | DECODE_ENABLE_MSS_PORT2
357 | DECODE_ENABLE_MSS_PORT3 | DECODE_ENABLE_FDC_PORT0
358 | DECODE_ENABLE_FDC_PORT1 | DECODE_ENABLE_GAME_PORT
359 | DECODE_ENABLE_KBC_PORT | DECODE_ENABLE_ACPIUC_PORT
360 | DECODE_ENABLE_ADLIB_PORT;
361
362 pci_write_config32(SOC_LPC_DEV, LPC_IO_PORT_DECODE_ENABLE, tmp);
363}
364
Garrett Kirkendall9858bd22018-03-07 15:38:14 -0600365void sb_acpi_mmio_decode(void)
366{
367 uint8_t byte;
368
369 /* Enable ACPI MMIO range 0xfed80000 - 0xfed81fff */
370 outb(PM_ISA_CONTROL, PM_INDEX);
371 byte = inb(PM_DATA);
372 byte |= MMIO_EN;
373 outb(PM_ISA_CONTROL, PM_INDEX);
374 outb(byte, PM_DATA);
375}
376
Raul E Rangel5b058232018-06-28 16:31:45 -0600377static void sb_enable_cf9_io(void)
378{
379 uint32_t reg = pm_read32(PM_DECODE_EN);
380
381 pm_write32(PM_DECODE_EN, reg | CF9_IO_EN);
382}
383
Raul E Rangel9abc3fe2018-06-28 16:31:45 -0600384static void sb_enable_legacy_io(void)
385{
386 uint32_t reg = pm_read32(PM_DECODE_EN);
387
388 pm_write32(PM_DECODE_EN, reg | LEGACY_IO_EN);
389}
390
Richard Spiegelc93d4ab2019-02-12 19:17:02 -0700391void sb_clk_output_48Mhz(u32 osc)
Richard Spiegelbec44f22017-11-24 07:41:29 -0700392{
393 u32 ctrl;
Marshall Dawson5de47712019-05-01 16:14:42 -0600394 u32 *misc_clk_cntl_1_ptr = (u32 *)(uintptr_t)(ACPIMMIO_MISC_BASE
Richard Spiegel62052212018-10-17 13:32:58 -0700395 + MISC_CLK_CNTL1);
Richard Spiegelbec44f22017-11-24 07:41:29 -0700396
397 /*
Richard Spiegelc93d4ab2019-02-12 19:17:02 -0700398 * Clear the disable for OSCOUT1 (signal typically named XnnM_25M_48M)
399 * or OSCOUT2 (USBCLK/25M_48M_OSC). The frequency defaults to 48MHz.
Richard Spiegelbec44f22017-11-24 07:41:29 -0700400 */
Garrett Kirkendalld2558302018-03-06 09:05:20 -0600401 ctrl = read32(misc_clk_cntl_1_ptr);
Richard Spiegelbec44f22017-11-24 07:41:29 -0700402
Richard Spiegelc93d4ab2019-02-12 19:17:02 -0700403 switch (osc) {
404 case 1:
405 ctrl &= ~OSCOUT1_CLK_OUTPUT_ENB;
406 break;
407 case 2:
408 ctrl &= ~OSCOUT2_CLK_OUTPUT_ENB;
409 break;
410 default:
411 return; /* do nothing if invalid */
412 }
Garrett Kirkendalld2558302018-03-06 09:05:20 -0600413 write32(misc_clk_cntl_1_ptr, ctrl);
Richard Spiegelbec44f22017-11-24 07:41:29 -0700414}
415
416static uintptr_t sb_spibase(void)
417{
418 u32 base, enables;
419
420 /* Make sure the base address is predictable */
421 base = pci_read_config32(SOC_LPC_DEV, SPIROM_BASE_ADDRESS_REGISTER);
Patrick Georgi4fbefc52018-10-23 14:35:37 +0200422 enables = base & SPI_PRESERVE_BITS;
423 base &= ~(SPI_PRESERVE_BITS | SPI_BASE_RESERVED);
Richard Spiegelbec44f22017-11-24 07:41:29 -0700424
425 if (!base) {
426 base = SPI_BASE_ADDRESS;
427 pci_write_config32(SOC_LPC_DEV, SPIROM_BASE_ADDRESS_REGISTER,
428 base | enables | SPI_ROM_ENABLE);
429 /* PCI_COMMAND_MEMORY is read-only and enabled. */
430 }
431 return (uintptr_t)base;
432}
433
434void sb_set_spi100(u16 norm, u16 fast, u16 alt, u16 tpm)
435{
436 uintptr_t base = sb_spibase();
Richard Spiegel9f25e9d2018-10-29 08:01:53 -0700437 write16((void *)(base + SPI100_SPEED_CONFIG),
Richard Spiegelbec44f22017-11-24 07:41:29 -0700438 (norm << SPI_NORM_SPEED_NEW_SH) |
439 (fast << SPI_FAST_SPEED_NEW_SH) |
440 (alt << SPI_ALT_SPEED_NEW_SH) |
441 (tpm << SPI_TPM_SPEED_NEW_SH));
Richard Spiegel9f25e9d2018-10-29 08:01:53 -0700442 write16((void *)(base + SPI100_ENABLE), SPI_USE_SPI100);
Richard Spiegelbec44f22017-11-24 07:41:29 -0700443}
444
445void sb_disable_4dw_burst(void)
446{
447 uintptr_t base = sb_spibase();
Richard Spiegel9f25e9d2018-10-29 08:01:53 -0700448 write16((void *)(base + SPI100_HOST_PREF_CONFIG),
449 read16((void *)(base + SPI100_HOST_PREF_CONFIG))
Richard Spiegelbec44f22017-11-24 07:41:29 -0700450 & ~SPI_RD4DW_EN_HOST);
451}
452
Richard Spiegelbec44f22017-11-24 07:41:29 -0700453void sb_read_mode(u32 mode)
454{
455 uintptr_t base = sb_spibase();
Richard Spiegel9f25e9d2018-10-29 08:01:53 -0700456 write32((void *)(base + SPI_CNTRL0),
457 (read32((void *)(base + SPI_CNTRL0))
Richard Spiegelbec44f22017-11-24 07:41:29 -0700458 & ~SPI_READ_MODE_MASK) | mode);
459}
460
Garrett Kirkendall65753062018-03-07 16:12:11 -0600461/*
462 * Enable FCH to decode TPM associated Memory and IO regions
463 *
464 * Enable decoding of TPM cycles defined in TPM 1.2 spec
465 * Enable decoding of legacy TPM addresses: IO addresses 0x7f-
466 * 0x7e and 0xef-0xee.
467 * This function should be called if TPM is connected in any way to the FCH and
468 * conforms to the regions decoded.
469 * Absent any other routing configuration the TPM cycles will be claimed by the
470 * LPC bus
471 */
472void sb_tpm_decode(void)
473{
474 u32 value;
475
476 value = pci_read_config32(SOC_LPC_DEV, LPC_TRUSTED_PLATFORM_MODULE);
477 value |= TPM_12_EN | TPM_LEGACY_EN;
478 pci_write_config32(SOC_LPC_DEV, LPC_TRUSTED_PLATFORM_MODULE, value);
479}
480
481/*
482 * Enable FCH to decode TPM associated Memory and IO regions to SPI
483 *
484 * This should be used if TPM is connected to SPI bus.
485 * Assumes SPI address space is already configured via a call to sb_spibase().
486 */
Richard Spiegelbec44f22017-11-24 07:41:29 -0700487void sb_tpm_decode_spi(void)
488{
Garrett Kirkendall65753062018-03-07 16:12:11 -0600489 /* Enable TPM decoding to FCH */
490 sb_tpm_decode();
491
492 /* Route TPM accesses to SPI */
Richard Spiegelbec44f22017-11-24 07:41:29 -0700493 u32 spibase = pci_read_config32(SOC_LPC_DEV,
494 SPIROM_BASE_ADDRESS_REGISTER);
495 pci_write_config32(SOC_LPC_DEV, SPIROM_BASE_ADDRESS_REGISTER, spibase
496 | ROUTE_TPM_2_SPI);
497}
498
499/*
500 * Enable 4MB (LPC) ROM access at 0xFFC00000 - 0xFFFFFFFF.
501 *
502 * Hardware should enable LPC ROM by pin straps. This function does not
503 * handle the theoretically possible PCI ROM, FWH, or SPI ROM configurations.
504 *
505 * The southbridge power-on default is to map 512K ROM space.
506 *
507 */
508void sb_enable_rom(void)
509{
510 u8 reg8;
511
512 /*
513 * Decode variable LPC ROM address ranges 1 and 2.
514 * Bits 3-4 are not defined in any publicly available datasheet
515 */
516 reg8 = pci_read_config8(SOC_LPC_DEV, LPC_IO_OR_MEM_DECODE_ENABLE);
517 reg8 |= (1 << 3) | (1 << 4);
518 pci_write_config8(SOC_LPC_DEV, LPC_IO_OR_MEM_DECODE_ENABLE, reg8);
519
520 /*
521 * LPC ROM address range 1:
522 * Enable LPC ROM range mirroring start at 0x000e(0000).
523 */
524 pci_write_config16(SOC_LPC_DEV, ROM_ADDRESS_RANGE1_START, 0x000e);
525
526 /* Enable LPC ROM range mirroring end at 0x000f(ffff). */
527 pci_write_config16(SOC_LPC_DEV, ROM_ADDRESS_RANGE1_END, 0x000f);
528
529 /*
530 * LPC ROM address range 2:
531 *
532 * Enable LPC ROM range start at:
533 * 0xfff8(0000): 512KB
534 * 0xfff0(0000): 1MB
535 * 0xffe0(0000): 2MB
536 * 0xffc0(0000): 4MB
537 */
538 pci_write_config16(SOC_LPC_DEV, ROM_ADDRESS_RANGE2_START, 0x10000
539 - (CONFIG_COREBOOT_ROMSIZE_KB >> 6));
540
541 /* Enable LPC ROM range end at 0xffff(ffff). */
542 pci_write_config16(SOC_LPC_DEV, ROM_ADDRESS_RANGE2_END, 0xffff);
543}
544
Marc Jonescfb16802018-04-20 16:27:41 -0600545static void sb_lpc_early_setup(void)
546{
547 uint32_t dword;
548
549 /* Enable SPI prefetch */
550 dword = pci_read_config32(SOC_LPC_DEV, LPC_ROM_DMA_EC_HOST_CONTROL);
551 dword |= SPI_FROM_HOST_PREFETCH_EN | SPI_FROM_USB_PREFETCH_EN;
552 pci_write_config32(SOC_LPC_DEV, LPC_ROM_DMA_EC_HOST_CONTROL, dword);
553
Julius Wernercd49cce2019-03-05 16:53:33 -0800554 if (CONFIG(STONEYRIDGE_LEGACY_FREE)) {
Marc Jonescfb16802018-04-20 16:27:41 -0600555 /* Decode SIOs at 2E/2F and 4E/4F */
556 dword = pci_read_config32(SOC_LPC_DEV,
557 LPC_IO_OR_MEM_DECODE_ENABLE);
558 dword |= DECODE_ALTERNATE_SIO_ENABLE | DECODE_SIO_ENABLE;
559 pci_write_config32(SOC_LPC_DEV,
560 LPC_IO_OR_MEM_DECODE_ENABLE, dword);
561 }
562}
563
Raul E Rangel79053412018-08-06 10:40:02 -0600564static void setup_spread_spectrum(int *reboot)
Raul E Rangel6b0fc802018-08-02 15:56:34 -0600565{
566 uint16_t rstcfg = pm_read16(PWR_RESET_CFG);
567
568 rstcfg &= ~TOGGLE_ALL_PWR_GOOD;
569 pm_write16(PWR_RESET_CFG, rstcfg);
570
571 uint32_t cntl1 = misc_read32(MISC_CLK_CNTL1);
572
573 if (cntl1 & CG1PLL_FBDIV_TEST) {
574 printk(BIOS_DEBUG, "Spread spectrum is ready\n");
575 misc_write32(MISC_CGPLL_CONFIG1,
576 misc_read32(MISC_CGPLL_CONFIG1) |
577 CG1PLL_SPREAD_SPECTRUM_ENABLE);
578
579 return;
580 }
581
582 printk(BIOS_DEBUG, "Setting up spread spectrum\n");
583
584 uint32_t cfg6 = misc_read32(MISC_CGPLL_CONFIG6);
585 cfg6 &= ~CG1PLL_LF_MODE_MASK;
Marshall Dawsonecce8472018-10-05 15:41:03 -0600586 cfg6 |= (0x0f8 << CG1PLL_LF_MODE_SHIFT) & CG1PLL_LF_MODE_MASK;
Raul E Rangel6b0fc802018-08-02 15:56:34 -0600587 misc_write32(MISC_CGPLL_CONFIG6, cfg6);
588
589 uint32_t cfg3 = misc_read32(MISC_CGPLL_CONFIG3);
590 cfg3 &= ~CG1PLL_REFDIV_MASK;
591 cfg3 |= (0x003 << CG1PLL_REFDIV_SHIFT) & CG1PLL_REFDIV_MASK;
592 cfg3 &= ~CG1PLL_FBDIV_MASK;
Marshall Dawsonecce8472018-10-05 15:41:03 -0600593 cfg3 |= (0x04b << CG1PLL_FBDIV_SHIFT) & CG1PLL_FBDIV_MASK;
Raul E Rangel6b0fc802018-08-02 15:56:34 -0600594 misc_write32(MISC_CGPLL_CONFIG3, cfg3);
595
596 uint32_t cfg5 = misc_read32(MISC_CGPLL_CONFIG5);
Marshall Dawsonedba21e2018-10-05 19:01:52 -0600597 cfg5 &= ~SS_AMOUNT_NFRAC_SLIP_MASK;
598 cfg5 |= (0x2 << SS_AMOUNT_NFRAC_SLIP_SHIFT) & SS_AMOUNT_NFRAC_SLIP_MASK;
Raul E Rangel6b0fc802018-08-02 15:56:34 -0600599 misc_write32(MISC_CGPLL_CONFIG5, cfg5);
600
601 uint32_t cfg4 = misc_read32(MISC_CGPLL_CONFIG4);
Marshall Dawsonedba21e2018-10-05 19:01:52 -0600602 cfg4 &= ~SS_AMOUNT_DSFRAC_MASK;
603 cfg4 |= (0xd000 << SS_AMOUNT_DSFRAC_SHIFT) & SS_AMOUNT_DSFRAC_MASK;
604 cfg4 &= ~SS_STEP_SIZE_DSFRAC_MASK;
605 cfg4 |= (0x02d5 << SS_STEP_SIZE_DSFRAC_SHIFT)
606 & SS_STEP_SIZE_DSFRAC_MASK;
Raul E Rangel6b0fc802018-08-02 15:56:34 -0600607 misc_write32(MISC_CGPLL_CONFIG4, cfg4);
608
609 rstcfg |= TOGGLE_ALL_PWR_GOOD;
610 pm_write16(PWR_RESET_CFG, rstcfg);
611
612 cntl1 |= CG1PLL_FBDIV_TEST;
613 misc_write32(MISC_CLK_CNTL1, cntl1);
614
Raul E Rangel79053412018-08-06 10:40:02 -0600615 *reboot = 1;
616}
617
618static void setup_misc(int *reboot)
619{
620 /* Undocumented register */
621 uint32_t reg = misc_read32(0x50);
622 if (!(reg & BIT(16))) {
623 reg |= BIT(16);
624
625 misc_write32(0x50, reg);
626 *reboot = 1;
627 }
Raul E Rangel6b0fc802018-08-02 15:56:34 -0600628}
629
Richard Spiegelb40e1932018-10-24 12:51:21 -0700630static void fch_smbus_init(void)
631{
632 pm_write8(SMB_ASF_IO_BASE, SMB_BASE_ADDR >> 8);
Marshall Dawson753c2252019-05-05 14:08:59 -0600633 smbus_write8(SMBTIMING, SMB_SPEED_400KHZ);
Richard Spiegelb40e1932018-10-24 12:51:21 -0700634 /* Clear all SMBUS status bits */
Marshall Dawson753c2252019-05-05 14:08:59 -0600635 smbus_write8(SMBHSTSTAT, SMBHST_STAT_CLEAR);
636 smbus_write8(SMBSLVSTAT, SMBSLV_STAT_CLEAR);
637 asf_write8(SMBHSTSTAT, SMBHST_STAT_CLEAR);
638 asf_write8(SMBSLVSTAT, SMBSLV_STAT_CLEAR);
Richard Spiegelb40e1932018-10-24 12:51:21 -0700639}
640
Raul E Rangeld820f4b82018-08-13 10:39:03 -0600641/* Before console init */
Richard Spiegelbec44f22017-11-24 07:41:29 -0700642void bootblock_fch_early_init(void)
643{
Raul E Rangel79053412018-08-06 10:40:02 -0600644 int reboot = 0;
645
Richard Spiegelbec44f22017-11-24 07:41:29 -0700646 sb_enable_rom();
647 sb_lpc_port80();
648 sb_lpc_decode();
Marc Jonescfb16802018-04-20 16:27:41 -0600649 sb_lpc_early_setup();
Garrett Kirkendall64294eb2018-03-16 13:00:46 -0500650 sb_spibase();
Marc Jonescfb16802018-04-20 16:27:41 -0600651 sb_disable_4dw_burst(); /* Must be disabled on CZ(ST) */
Garrett Kirkendalle7513e0d2018-03-14 12:01:36 -0500652 sb_acpi_mmio_decode();
Richard Spiegelb40e1932018-10-24 12:51:21 -0700653 fch_smbus_init();
Raul E Rangel5b058232018-06-28 16:31:45 -0600654 sb_enable_cf9_io();
Raul E Rangel79053412018-08-06 10:40:02 -0600655 setup_spread_spectrum(&reboot);
656 setup_misc(&reboot);
657
658 if (reboot)
Nico Huber73c11192018-10-06 18:20:47 +0200659 warm_reset();
Raul E Rangel79053412018-08-06 10:40:02 -0600660
Raul E Rangel9abc3fe2018-06-28 16:31:45 -0600661 sb_enable_legacy_io();
Richard Spiegel0e0e93c2018-03-13 10:19:51 -0700662 enable_aoac_devices();
Richard Spiegelbec44f22017-11-24 07:41:29 -0700663}
664
Edward Hillcc680342018-08-10 16:20:02 -0600665static void print_num_status_bits(int num_bits, uint32_t status,
666 const char *const bit_names[])
667{
668 int i;
669
670 if (!status)
671 return;
672
673 for (i = num_bits - 1; i >= 0; i--) {
674 if (status & (1 << i)) {
675 if (bit_names[i])
676 printk(BIOS_DEBUG, "%s ", bit_names[i]);
677 else
678 printk(BIOS_DEBUG, "BIT%d ", i);
679 }
680 }
681}
682
683static void sb_print_pmxc0_status(void)
684{
685 /* PMxC0 S5/Reset Status shows the source of previous reset. */
686 uint32_t pmxc0_status = pm_read32(PM_RST_STATUS);
687
Edward Hill917b4002018-10-02 14:17:19 -0600688 static const char *const pmxc0_status_bits[32] = {
Edward Hillcc680342018-08-10 16:20:02 -0600689 [0] = "ThermalTrip",
690 [1] = "FourSecondPwrBtn",
691 [2] = "Shutdown",
692 [3] = "ThermalTripFromTemp",
693 [4] = "RemotePowerDownFromASF",
694 [5] = "ShutDownFan0",
695 [16] = "UserRst",
696 [17] = "SoftPciRst",
697 [18] = "DoInit",
698 [19] = "DoReset",
699 [20] = "DoFullReset",
700 [21] = "SleepReset",
701 [22] = "KbReset",
702 [23] = "LtReset",
703 [24] = "FailBootRst",
704 [25] = "WatchdogIssueReset",
705 [26] = "RemoteResetFromASF",
706 [27] = "SyncFlood",
707 [28] = "HangReset",
708 [29] = "EcWatchdogRst",
Edward Hillcc680342018-08-10 16:20:02 -0600709 };
710
Edward Hill917b4002018-10-02 14:17:19 -0600711 printk(BIOS_DEBUG, "PMxC0 STATUS: 0x%x ", pmxc0_status);
Edward Hillcc680342018-08-10 16:20:02 -0600712 print_num_status_bits(ARRAY_SIZE(pmxc0_status_bits), pmxc0_status,
713 pmxc0_status_bits);
Edward Hill917b4002018-10-02 14:17:19 -0600714 printk(BIOS_DEBUG, "\n");
Edward Hillcc680342018-08-10 16:20:02 -0600715}
716
Raul E Rangeld820f4b82018-08-13 10:39:03 -0600717/* After console init */
Edward Hillcc680342018-08-10 16:20:02 -0600718void bootblock_fch_init(void)
719{
720 sb_print_pmxc0_status();
721}
Raul E Rangeld820f4b82018-08-13 10:39:03 -0600722
Elyes HAOUASc5ad2672018-12-05 10:58:34 +0100723void sb_enable(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600724{
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600725 printk(BIOS_DEBUG, "%s\n", __func__);
Marc Jones24484842017-05-04 21:17:45 -0600726}
727
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600728static void sb_init_acpi_ports(void)
Marc Jones24484842017-05-04 21:17:45 -0600729{
Marshall Dawson91b80412017-09-27 16:44:40 -0600730 u32 reg;
731
Marc Jones24484842017-05-04 21:17:45 -0600732 /* We use some of these ports in SMM regardless of whether or not
733 * ACPI tables are generated. Enable these ports indiscriminately.
734 */
735
736 pm_write16(PM_EVT_BLK, ACPI_PM_EVT_BLK);
737 pm_write16(PM1_CNT_BLK, ACPI_PM1_CNT_BLK);
738 pm_write16(PM_TMR_BLK, ACPI_PM_TMR_BLK);
739 pm_write16(PM_GPE0_BLK, ACPI_GPE0_BLK);
740 /* CpuControl is in \_PR.CP00, 6 bytes */
741 pm_write16(PM_CPU_CTRL, ACPI_CPU_CONTROL);
742
Julius Wernercd49cce2019-03-05 16:53:33 -0800743 if (CONFIG(HAVE_SMI_HANDLER)) {
Marshall Dawsona05fdcb2017-09-27 15:01:37 -0600744 /* APMC - SMI Command Port */
Marshall Dawsone9b862e2017-09-22 15:14:46 -0600745 pm_write16(PM_ACPI_SMI_CMD, APM_CNT);
Marshall Dawsona05fdcb2017-09-27 15:01:37 -0600746 configure_smi(SMITYPE_SMI_CMD_PORT, SMI_MODE_SMI);
Marshall Dawson91b80412017-09-27 16:44:40 -0600747
748 /* SMI on SlpTyp requires sending SMI before completion
749 * response of the I/O write. The BKDG also specifies
750 * clearing ForceStpClkRetry for SMI trapping.
751 */
752 reg = pm_read32(PM_PCI_CTRL);
753 reg |= FORCE_SLPSTATE_RETRY;
754 reg &= ~FORCE_STPCLK_RETRY;
755 pm_write32(PM_PCI_CTRL, reg);
756
757 /* Disable SlpTyp feature */
758 reg = pm_read8(PM_RST_CTRL1);
759 reg &= ~SLPTYPE_CONTROL_EN;
760 pm_write8(PM_RST_CTRL1, reg);
761
762 configure_smi(SMITYPE_SLP_TYP, SMI_MODE_SMI);
Marc Jones24484842017-05-04 21:17:45 -0600763 } else {
764 pm_write16(PM_ACPI_SMI_CMD, 0);
765 }
766
Marshall Dawson5e2e74f2017-11-10 09:59:56 -0700767 /* Decode ACPI registers and enable standard features */
768 pm_write8(PM_ACPI_CONF, PM_ACPI_DECODE_STD |
769 PM_ACPI_GLOBAL_EN |
770 PM_ACPI_RTC_EN_EN |
771 PM_ACPI_TIMER_EN_EN);
Marc Jones24484842017-05-04 21:17:45 -0600772}
773
Marshall Dawson70f051f2018-03-20 10:27:41 -0600774static uint16_t reset_pm1_status(void)
775{
Richard Spiegele24d7952018-10-26 13:25:01 -0700776 uint16_t pm1_sts = acpi_read16(MMIO_ACPI_PM1_STS);
777 acpi_write16(MMIO_ACPI_PM1_STS, pm1_sts);
Marshall Dawson70f051f2018-03-20 10:27:41 -0600778 return pm1_sts;
779}
780
781static uint16_t print_pm1_status(uint16_t pm1_sts)
782{
Edward Hill917b4002018-10-02 14:17:19 -0600783 static const char *const pm1_sts_bits[16] = {
Marshall Dawson70f051f2018-03-20 10:27:41 -0600784 [0] = "TMROF",
785 [4] = "BMSTATUS",
786 [5] = "GBL",
787 [8] = "PWRBTN",
788 [10] = "RTC",
789 [14] = "PCIEXPWAK",
790 [15] = "WAK",
791 };
792
793 if (!pm1_sts)
794 return 0;
795
Edward Hill917b4002018-10-02 14:17:19 -0600796 printk(BIOS_DEBUG, "PM1_STS: ");
Marshall Dawson70f051f2018-03-20 10:27:41 -0600797 print_num_status_bits(ARRAY_SIZE(pm1_sts_bits), pm1_sts, pm1_sts_bits);
Edward Hill917b4002018-10-02 14:17:19 -0600798 printk(BIOS_DEBUG, "\n");
Marshall Dawson70f051f2018-03-20 10:27:41 -0600799
800 return pm1_sts;
801}
802
803static void sb_log_pm1_status(uint16_t pm1_sts)
804{
Julius Wernercd49cce2019-03-05 16:53:33 -0800805 if (!CONFIG(ELOG))
Marshall Dawson70f051f2018-03-20 10:27:41 -0600806 return;
807
Daniel Kurtzb6fdd222018-05-24 15:52:45 -0600808 if (pm1_sts & WAK_STS)
809 elog_add_event_byte(ELOG_TYPE_ACPI_WAKE,
810 acpi_is_wakeup_s3() ? ACPI_S3 : ACPI_S5);
811
Marshall Dawson70f051f2018-03-20 10:27:41 -0600812 if (pm1_sts & PWRBTN_STS)
813 elog_add_event_wake(ELOG_WAKE_SOURCE_PWRBTN, 0);
814
815 if (pm1_sts & RTC_STS)
816 elog_add_event_wake(ELOG_WAKE_SOURCE_RTC, 0);
817
818 if (pm1_sts & PCIEXPWAK_STS)
819 elog_add_event_wake(ELOG_WAKE_SOURCE_PCIE, 0);
820}
821
Richard Spiegel572f4982018-05-25 15:49:33 -0700822static void sb_save_sws(uint16_t pm1_status)
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700823{
Richard Spiegel35282a02018-06-14 14:57:54 -0700824 struct soc_power_reg *sws;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700825 uint32_t reg32;
Richard Spiegel35282a02018-06-14 14:57:54 -0700826 uint16_t reg16;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700827
Richard Spiegel35282a02018-06-14 14:57:54 -0700828 sws = cbmem_add(CBMEM_ID_POWER_STATE, sizeof(struct soc_power_reg));
829 if (sws == NULL)
830 return;
831 sws->pm1_sts = pm1_status;
Richard Spiegele24d7952018-10-26 13:25:01 -0700832 sws->pm1_en = acpi_read16(MMIO_ACPI_PM1_EN);
833 reg32 = acpi_read32(MMIO_ACPI_GPE0_STS);
834 acpi_write32(MMIO_ACPI_GPE0_STS, reg32);
Richard Spiegel35282a02018-06-14 14:57:54 -0700835 sws->gpe0_sts = reg32;
Richard Spiegele24d7952018-10-26 13:25:01 -0700836 sws->gpe0_en = acpi_read32(MMIO_ACPI_GPE0_EN);
837 reg16 = acpi_read16(MMIO_ACPI_PM1_CNT_BLK);
Richard Spiegel35282a02018-06-14 14:57:54 -0700838 reg16 &= SLP_TYP;
839 sws->wake_from = reg16 >> SLP_TYP_SHIFT;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700840}
841
Marshall Dawson70f051f2018-03-20 10:27:41 -0600842static void sb_clear_pm1_status(void)
843{
844 uint16_t pm1_sts = reset_pm1_status();
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700845
846 sb_save_sws(pm1_sts);
Marshall Dawson70f051f2018-03-20 10:27:41 -0600847 sb_log_pm1_status(pm1_sts);
848 print_pm1_status(pm1_sts);
849}
850
Richard Spiegel572f4982018-05-25 15:49:33 -0700851static int get_index_bit(uint32_t value, uint16_t limit)
852{
853 uint16_t i;
854 uint32_t t;
855
Richard Spiegelef73cb82018-06-19 07:40:18 -0700856 if (limit >= TOTAL_BITS(uint32_t))
Richard Spiegel572f4982018-05-25 15:49:33 -0700857 return -1;
858
859 /* get a mask of valid bits. Ex limit = 3, set bits 0-2 */
860 t = (1 << limit) - 1;
861 if ((value & t) == 0)
862 return -1;
863 t = 1;
864 for (i = 0; i < limit; i++) {
865 if (value & t)
866 break;
867 t <<= 1;
868 }
869 return i;
870}
871
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700872static void set_nvs_sws(void *unused)
873{
Richard Spiegel35282a02018-06-14 14:57:54 -0700874 struct soc_power_reg *sws;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700875 struct global_nvs_t *gnvs;
Richard Spiegel572f4982018-05-25 15:49:33 -0700876 int index;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700877
Richard Spiegel35282a02018-06-14 14:57:54 -0700878 sws = cbmem_find(CBMEM_ID_POWER_STATE);
879 if (sws == NULL)
880 return;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700881 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
882 if (gnvs == NULL)
883 return;
884
Richard Spiegel35282a02018-06-14 14:57:54 -0700885 index = get_index_bit(sws->pm1_sts & sws->pm1_en, PM1_LIMIT);
Richard Spiegel572f4982018-05-25 15:49:33 -0700886 if (index < 0)
887 gnvs->pm1i = ~0ULL;
888 else
889 gnvs->pm1i = index;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700890
Richard Spiegel35282a02018-06-14 14:57:54 -0700891 index = get_index_bit(sws->gpe0_sts & sws->gpe0_en, GPE0_LIMIT);
Richard Spiegel572f4982018-05-25 15:49:33 -0700892 if (index < 0)
893 gnvs->gpei = ~0ULL;
894 else
895 gnvs->gpei = index;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700896}
897
898BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, set_nvs_sws, NULL);
899
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600900void southbridge_init(void *chip_info)
Marc Jones24484842017-05-04 21:17:45 -0600901{
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600902 sb_init_acpi_ports();
Marshall Dawson70f051f2018-03-20 10:27:41 -0600903 sb_clear_pm1_status();
Marc Jones24484842017-05-04 21:17:45 -0600904}
905
Marshall Dawson1d9a46b2018-09-26 16:23:41 -0600906static void set_sb_final_nvs(void)
907{
908 uintptr_t amdfw_rom;
909 uintptr_t xhci_fw;
910 uintptr_t fwaddr;
911 size_t fwsize;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700912 const struct device *sd, *sata;
Marshall Dawson1d9a46b2018-09-26 16:23:41 -0600913
914 struct global_nvs_t *gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
915 if (gnvs == NULL)
916 return;
917
918 gnvs->aoac.ic0e = is_aoac_device_enabled(FCH_AOAC_D3_STATE_I2C0);
919 gnvs->aoac.ic1e = is_aoac_device_enabled(FCH_AOAC_D3_STATE_I2C1);
920 gnvs->aoac.ic2e = is_aoac_device_enabled(FCH_AOAC_D3_STATE_I2C2);
921 gnvs->aoac.ic3e = is_aoac_device_enabled(FCH_AOAC_D3_STATE_I2C3);
922 gnvs->aoac.ut0e = is_aoac_device_enabled(FCH_AOAC_D3_STATE_UART0);
923 gnvs->aoac.ut1e = is_aoac_device_enabled(FCH_AOAC_D3_STATE_UART1);
924 gnvs->aoac.ehce = is_aoac_device_enabled(FCH_AOAC_D3_STATE_USB2);
925 gnvs->aoac.xhce = is_aoac_device_enabled(FCH_AOAC_D3_STATE_USB3);
926 /* Rely on these being in sync with devicetree */
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300927 sd = pcidev_path_on_root(SD_DEVFN);
Marshall Dawson6d3b7e62019-04-18 17:01:01 -0600928 gnvs->aoac.sd_e = sd && sd->enabled ? 1 : 0;
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300929 sata = pcidev_path_on_root(SATA_DEVFN);
Marshall Dawson6d3b7e62019-04-18 17:01:01 -0600930 gnvs->aoac.st_e = sata && sata->enabled ? 1 : 0;
Marshall Dawson1d9a46b2018-09-26 16:23:41 -0600931 gnvs->aoac.espi = 1;
932
933 amdfw_rom = 0x20000 - (0x80000 << CONFIG_AMD_FWM_POSITION_INDEX);
934 xhci_fw = read32((void *)(amdfw_rom + XHCI_FW_SIG_OFFSET));
935
936 fwaddr = 2 + read16((void *)(xhci_fw + XHCI_FW_ADDR_OFFSET
937 + XHCI_FW_BOOTRAM_SIZE));
938 fwsize = read16((void *)(xhci_fw + XHCI_FW_SIZE_OFFSET
939 + XHCI_FW_BOOTRAM_SIZE));
940 gnvs->fw00 = 0;
941 gnvs->fw01 = ((32 * KiB) << 16) + 0;
942 gnvs->fw02 = fwaddr + XHCI_FW_BOOTRAM_SIZE;
943 gnvs->fw03 = fwsize << 16;
944
Marshall Dawson1d9a46b2018-09-26 16:23:41 -0600945 gnvs->eh10 = pci_read_config32(SOC_EHCI1_DEV, PCI_BASE_ADDRESS_0)
946 & ~PCI_BASE_ADDRESS_MEM_ATTR_MASK;
947}
948
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600949void southbridge_final(void *chip_info)
Marc Jones24484842017-05-04 21:17:45 -0600950{
Richard Spiegel6a389142018-03-05 14:28:10 -0700951 uint8_t restored_power = PM_S5_AT_POWER_RECOVERY;
952
Julius Wernercd49cce2019-03-05 16:53:33 -0800953 if (CONFIG(MAINBOARD_POWER_RESTORE))
Richard Spiegel6a389142018-03-05 14:28:10 -0700954 restored_power = PM_RESTORE_S0_IF_PREV_S0;
955 pm_write8(PM_RTC_SHADOW, restored_power);
Marshall Dawson1d9a46b2018-09-26 16:23:41 -0600956
957 set_sb_final_nvs();
Marc Jones24484842017-05-04 21:17:45 -0600958}
Marshall Dawson8a906df2017-06-13 14:19:02 -0600959
960/*
961 * Update the PCI devices with a valid IRQ number
962 * that is set in the mainboard PCI_IRQ structures.
963 */
964static void set_pci_irqs(void *unused)
965{
966 /* Write PCI_INTR regs 0xC00/0xC01 */
967 write_pci_int_table();
968
969 /* Write IRQs for all devicetree enabled devices */
970 write_pci_cfg_irqs();
971}
972
973/*
974 * Hook this function into the PCI state machine
975 * on entry into BS_DEV_ENABLE.
976 */
977BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, set_pci_irqs, NULL);