blob: 9c7b269c1f5e3ac1dd1dc14ba1b6525d4939f64b [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
3#include <types.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05004#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05006#include <console/console.h>
7#include <cpu/x86/cache.h>
8#include <device/pci_def.h>
9#include <cpu/x86/smm.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030010#include <cpu/intel/em64t101_save_state.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050011#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010012#include <halt.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020013#include <option.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130014#include <southbridge/intel/common/finalize.h>
Tristan Corrick09fc6342018-11-30 22:53:01 +130015#include <northbridge/intel/haswell/haswell.h>
16#include <cpu/intel/haswell/haswell.h>
Kyösti Mälkki661ad462020-12-29 06:26:21 +020017#include <soc/nvs.h>
Matt DeVillier8187f112018-12-24 21:46:46 -060018#include <smmstore.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130019#include "me.h"
Aaron Durbin76c37002012-10-30 09:03:43 -050020#include "pch.h"
Aaron Durbin76c37002012-10-30 09:03:43 -050021
Aaron Durbin76c37002012-10-30 09:03:43 -050022int southbridge_io_trap_handler(int smif)
23{
24 switch (smif) {
25 case 0x32:
26 printk(BIOS_DEBUG, "OS Init\n");
27 /* gnvs->smif:
28 * On success, the IO Trap Handler returns 0
29 * On failure, the IO Trap Handler returns a value != 0
30 */
31 gnvs->smif = 0;
32 return 1; /* IO trap handled */
33 }
34
35 /* Not handled */
36 return 0;
37}
38
39/**
40 * @brief Set the EOS bit
41 */
42void southbridge_smi_set_eos(void)
43{
Duncan Laurie467f31d2013-03-08 17:00:37 -080044 enable_smi(EOS);
Aaron Durbin76c37002012-10-30 09:03:43 -050045}
46
47static void busmaster_disable_on_bus(int bus)
48{
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020049 int slot, func;
50 unsigned int val;
51 unsigned char hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -050052
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020053 for (slot = 0; slot < 0x20; slot++) {
54 for (func = 0; func < 8; func++) {
Elyes HAOUAS68c851b2018-06-12 22:06:09 +020055 pci_devfn_t dev = PCI_DEV(bus, slot, func);
Aaron Durbin76c37002012-10-30 09:03:43 -050056
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020057 val = pci_read_config32(dev, PCI_VENDOR_ID);
Aaron Durbin76c37002012-10-30 09:03:43 -050058
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020059 if (val == 0xffffffff || val == 0x00000000 ||
60 val == 0x0000ffff || val == 0xffff0000)
61 continue;
Aaron Durbin76c37002012-10-30 09:03:43 -050062
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020063 /* Disable Bus Mastering for this one device */
Angel Ponsbf9bc502020-06-08 00:12:43 +020064 pci_and_config16(dev, PCI_COMMAND, ~PCI_COMMAND_MASTER);
Aaron Durbin76c37002012-10-30 09:03:43 -050065
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020066 /* If this is a bridge, then follow it. */
67 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
68 hdr &= 0x7f;
69 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
70 hdr == PCI_HEADER_TYPE_CARDBUS) {
71 unsigned int buses;
72 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
73 busmaster_disable_on_bus((buses >> 8) & 0xff);
74 }
75 }
76 }
Aaron Durbin76c37002012-10-30 09:03:43 -050077}
78
Kyösti Mälkki3c181862021-01-08 19:01:30 +020079static int power_on_after_fail(void)
Aaron Durbin76c37002012-10-30 09:03:43 -050080{
Nico Huber9faae2b2018-11-14 00:00:35 +010081 u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Aaron Durbin76c37002012-10-30 09:03:43 -050082
Angel Pons2aaf7c02020-09-24 18:03:18 +020083 /* save and recover RTC port values */
Aaron Durbin76c37002012-10-30 09:03:43 -050084 u8 tmp70, tmp72;
85 tmp70 = inb(0x70);
86 tmp72 = inb(0x72);
87 get_option(&s5pwr, "power_on_after_fail");
88 outb(tmp70, 0x70);
89 outb(tmp72, 0x72);
90
Kyösti Mälkki3c181862021-01-08 19:01:30 +020091 /* For "KEEP", switch to "OFF" - KEEP is software emulated. */
92 return (s5pwr == MAINBOARD_POWER_ON);
93}
94
95static void southbridge_smi_sleep(void)
96{
97 u32 reg32;
98 u8 slp_typ;
99 u16 pmbase = get_pmbase();
100
Aaron Durbin76c37002012-10-30 09:03:43 -0500101 /* First, disable further SMIs */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800102 disable_smi(SLP_SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500103
104 /* Figure out SLP_TYP */
105 reg32 = inl(pmbase + PM1_CNT);
106 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Aaron Durbinda5f5092016-07-13 23:23:16 -0500107 slp_typ = acpi_sleep_from_pm1(reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500108
109 /* Do any mainboard sleep handling */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500110 mainboard_smi_sleep(slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500111
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700112 /* USB sleep preparations */
Julius Wernercd49cce2019-03-05 16:53:33 -0800113#if !CONFIG(FINALIZE_USB_ROUTE_XHCI)
Duncan Laurie1f529082013-07-30 15:53:45 -0700114 usb_ehci_sleep_prepare(PCH_EHCI1_DEV, slp_typ);
115 usb_ehci_sleep_prepare(PCH_EHCI2_DEV, slp_typ);
Duncan Laurie911cedf2013-07-30 16:05:55 -0700116#endif
Duncan Laurie1f529082013-07-30 15:53:45 -0700117 usb_xhci_sleep_prepare(PCH_XHCI_DEV, slp_typ);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700118
Aaron Durbin76c37002012-10-30 09:03:43 -0500119 /* Log S3, S4, and S5 entry */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500120 if (slp_typ >= ACPI_S3)
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200121 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500122
123 /* Next, do the deed.
124 */
125
126 switch (slp_typ) {
Aaron Durbinda5f5092016-07-13 23:23:16 -0500127 case ACPI_S0:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800128 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
129 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500130 case ACPI_S1:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800131 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
132 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500133 case ACPI_S3:
Aaron Durbin76c37002012-10-30 09:03:43 -0500134 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
135
Aaron Durbin76c37002012-10-30 09:03:43 -0500136 /* Invalidate the cache before going to S3 */
137 wbinvd();
138 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500139 case ACPI_S4:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800140 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
141 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500142 case ACPI_S5:
Aaron Durbin76c37002012-10-30 09:03:43 -0500143 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
144
Duncan Laurie467f31d2013-03-08 17:00:37 -0800145 /* Disable all GPE */
146 disable_all_gpe();
Aaron Durbin76c37002012-10-30 09:03:43 -0500147
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200148 /* Always set the flag in case CMOS was changed on runtime. */
149 if (power_on_after_fail())
150 pci_and_config8(PCH_LPC_DEV, GEN_PMCON_3, ~1);
Angel Pons2aaf7c02020-09-24 18:03:18 +0200151 else
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200152 pci_or_config8(PCH_LPC_DEV, GEN_PMCON_3, 1);
Aaron Durbin76c37002012-10-30 09:03:43 -0500153
154 /* also iterates over all bridges on bus 0 */
155 busmaster_disable_on_bus(0);
156 break;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800157 default:
158 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
159 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500160 }
161
Angel Pons2aaf7c02020-09-24 18:03:18 +0200162 /*
163 * Write back to the SLP register to cause the originally intended
Aaron Durbin76c37002012-10-30 09:03:43 -0500164 * event again. We need to set BIT13 (SLP_EN) though to make the
165 * sleep happen.
166 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800167 enable_pm1_control(SLP_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500168
169 /* Make sure to stop executing code here for S3/S4/S5 */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500170 if (slp_typ >= ACPI_S3)
Patrick Georgi546953c2014-11-29 10:38:17 +0100171 halt();
Aaron Durbin76c37002012-10-30 09:03:43 -0500172
Angel Pons2aaf7c02020-09-24 18:03:18 +0200173 /*
174 * In most sleep states, the code flow of this function ends at
Aaron Durbin76c37002012-10-30 09:03:43 -0500175 * the line above. However, if we entered sleep state S1 and wake
176 * up again, we will continue to execute code in this function.
177 */
178 reg32 = inl(pmbase + PM1_CNT);
179 if (reg32 & SCI_EN) {
180 /* The OS is not an ACPI OS, so we set the state to S0 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800181 disable_pm1_control(SLP_EN | SLP_TYP);
Aaron Durbin76c37002012-10-30 09:03:43 -0500182 }
183}
184
185/*
186 * Look for Synchronous IO SMI and use save state from that
187 * core in case we are not running on the same core that
188 * initiated the IO transaction.
189 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500190static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
191{
192 em64t101_smm_state_save_area_t *state;
Aaron Durbin76c37002012-10-30 09:03:43 -0500193 int node;
194
195 /* Check all nodes looking for the one that issued the IO */
196 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600197 state = smm_get_save_state(node);
Aaron Durbin76c37002012-10-30 09:03:43 -0500198
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200199 /* Check for Synchronous IO (bit0 == 1) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500200 if (!(state->io_misc_info & (1 << 0)))
201 continue;
202
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200203 /* Make sure it was a write (bit4 == 0) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500204 if (state->io_misc_info & (1 << 4))
205 continue;
206
207 /* Check for APMC IO port */
208 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
209 continue;
210
211 /* Check AX against the requested command */
212 if ((state->rax & 0xff) != cmd)
213 continue;
214
215 return state;
216 }
217
218 return NULL;
219}
220
Aaron Durbin76c37002012-10-30 09:03:43 -0500221static void southbridge_smi_gsmi(void)
222{
223 u32 *ret, *param;
224 u8 sub_command;
225 em64t101_smm_state_save_area_t *io_smi =
Patrick Georgid61839c2018-12-03 16:10:33 +0100226 smi_apmc_find_state_save(APM_CNT_ELOG_GSMI);
Aaron Durbin76c37002012-10-30 09:03:43 -0500227
228 if (!io_smi)
229 return;
230
231 /* Command and return value in EAX */
Angel Pons2aaf7c02020-09-24 18:03:18 +0200232 ret = (u32 *)&io_smi->rax;
Aaron Durbin76c37002012-10-30 09:03:43 -0500233 sub_command = (u8)(*ret >> 8);
234
235 /* Parameter buffer in EBX */
Angel Pons2aaf7c02020-09-24 18:03:18 +0200236 param = (u32 *)&io_smi->rbx;
Aaron Durbin76c37002012-10-30 09:03:43 -0500237
238 /* drivers/elog/gsmi.c */
239 *ret = gsmi_exec(sub_command, param);
240}
Aaron Durbin76c37002012-10-30 09:03:43 -0500241
Matt DeVillier8187f112018-12-24 21:46:46 -0600242static void southbridge_smi_store(void)
243{
244 u8 sub_command, ret;
245 em64t101_smm_state_save_area_t *io_smi =
246 smi_apmc_find_state_save(APM_CNT_SMMSTORE);
247 uint32_t reg_ebx;
248
249 if (!io_smi)
250 return;
251 /* Command and return value in EAX */
252 sub_command = (io_smi->rax >> 8) & 0xff;
253
254 /* Parameter buffer in EBX */
255 reg_ebx = io_smi->rbx;
256
257 /* drivers/smmstore/smi.c */
258 ret = smmstore_exec(sub_command, (void *)reg_ebx);
259 io_smi->rax = ret;
260}
261
Aaron Durbin29ffa542012-12-21 21:21:48 -0600262static void southbridge_smi_apmc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500263{
Aaron Durbin76c37002012-10-30 09:03:43 -0500264 u8 reg8;
Tristan Corrick09fc6342018-11-30 22:53:01 +1300265 static int chipset_finalized = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500266
Kyösti Mälkki9a1620f2021-01-08 13:27:33 +0200267 reg8 = apm_get_apmc();
Aaron Durbin76c37002012-10-30 09:03:43 -0500268 switch (reg8) {
Tristan Corrick09fc6342018-11-30 22:53:01 +1300269 case APM_CNT_FINALIZE:
270 if (chipset_finalized) {
271 printk(BIOS_DEBUG, "SMI#: Already finalized\n");
272 return;
273 }
274
275 intel_pch_finalize_smm();
Tristan Corrick09fc6342018-11-30 22:53:01 +1300276 intel_cpu_haswell_finalize_smm();
277
278 chipset_finalized = 1;
279 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500280 case APM_CNT_ACPI_DISABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800281 disable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500282 break;
283 case APM_CNT_ACPI_ENABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800284 enable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500285 break;
Kyösti Mälkkib486f292020-06-18 14:05:35 +0300286 case APM_CNT_ROUTE_ALL_XHCI:
Duncan Laurie911cedf2013-07-30 16:05:55 -0700287 usb_xhci_route_all();
Duncan Laurie911cedf2013-07-30 16:05:55 -0700288 break;
Patrick Georgid61839c2018-12-03 16:10:33 +0100289 case APM_CNT_ELOG_GSMI:
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200290 if (CONFIG(ELOG_GSMI))
291 southbridge_smi_gsmi();
Aaron Durbin76c37002012-10-30 09:03:43 -0500292 break;
Matt DeVillier8187f112018-12-24 21:46:46 -0600293 case APM_CNT_SMMSTORE:
294 if (CONFIG(SMMSTORE))
295 southbridge_smi_store();
296 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500297 }
298
Aaron Durbin29ffa542012-12-21 21:21:48 -0600299 mainboard_smi_apmc(reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500300}
301
Aaron Durbin29ffa542012-12-21 21:21:48 -0600302static void southbridge_smi_pm1(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500303{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800304 u16 pm1_sts = clear_pm1_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500305
306 /* While OSPM is not active, poweroff immediately
307 * on a power button event.
308 */
309 if (pm1_sts & PWRBTN_STS) {
Angel Pons2aaf7c02020-09-24 18:03:18 +0200310 /* power button pressed */
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200311 elog_gsmi_add_event(ELOG_TYPE_POWER_BUTTON);
Angel Pons8963f7d2020-10-24 12:20:28 +0200312 disable_pm1_control(-1);
Duncan Laurie467f31d2013-03-08 17:00:37 -0800313 enable_pm1_control(SLP_EN | (SLP_TYP_S5 << 10));
Aaron Durbin76c37002012-10-30 09:03:43 -0500314 }
315}
316
Aaron Durbin29ffa542012-12-21 21:21:48 -0600317static void southbridge_smi_gpe0(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500318{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800319 clear_gpe_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500320}
321
Aaron Durbin29ffa542012-12-21 21:21:48 -0600322static void southbridge_smi_gpi(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500323{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800324 mainboard_smi_gpi(clear_alt_smi_status());
Aaron Durbin76c37002012-10-30 09:03:43 -0500325
Duncan Laurie467f31d2013-03-08 17:00:37 -0800326 /* Clear again after mainboard handler */
327 clear_alt_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500328}
329
Aaron Durbin29ffa542012-12-21 21:21:48 -0600330static void southbridge_smi_mc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500331{
Angel Pons2aaf7c02020-09-24 18:03:18 +0200332 u32 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500333
Duncan Laurie467f31d2013-03-08 17:00:37 -0800334 /* Are microcontroller SMIs enabled? */
Aaron Durbin76c37002012-10-30 09:03:43 -0500335 if ((reg32 & MCSMI_EN) == 0)
336 return;
337
338 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
339}
340
Aaron Durbin29ffa542012-12-21 21:21:48 -0600341static void southbridge_smi_tco(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500342{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800343 u32 tco_sts = clear_tco_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500344
345 /* Any TCO event? */
346 if (!tco_sts)
347 return;
348
Angel Pons2aaf7c02020-09-24 18:03:18 +0200349 // BIOSWR
350 if (tco_sts & (1 << 8)) {
Angel Ponscc36c4c2021-03-30 10:49:24 +0200351 u8 bios_cntl = pci_read_config8(PCH_LPC_DEV, BIOS_CNTL);
Aaron Durbin76c37002012-10-30 09:03:43 -0500352
353 if (bios_cntl & 1) {
Angel Pons2aaf7c02020-09-24 18:03:18 +0200354 /*
355 * BWE is RW, so the SMI was caused by a
Aaron Durbin76c37002012-10-30 09:03:43 -0500356 * write to BWE, not by a write to the BIOS
Angel Pons2aaf7c02020-09-24 18:03:18 +0200357 *
358 * This is the place where we notice someone
Aaron Durbin76c37002012-10-30 09:03:43 -0500359 * is trying to tinker with the BIOS. We are
360 * trying to be nice and just ignore it. A more
361 * resolute answer would be to power down the
362 * box.
363 */
364 printk(BIOS_DEBUG, "Switching back to RO\n");
Angel Ponscc36c4c2021-03-30 10:49:24 +0200365 pci_write_config8(PCH_LPC_DEV, BIOS_CNTL, (bios_cntl & ~1));
Aaron Durbin76c37002012-10-30 09:03:43 -0500366 } /* No else for now? */
367 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
368 /* Handle TCO timeout */
369 printk(BIOS_DEBUG, "TCO Timeout.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500370 }
371}
372
Aaron Durbin29ffa542012-12-21 21:21:48 -0600373static void southbridge_smi_periodic(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500374{
Angel Pons2aaf7c02020-09-24 18:03:18 +0200375 u32 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500376
377 /* Are periodic SMIs enabled? */
378 if ((reg32 & PERIODIC_EN) == 0)
379 return;
380
381 printk(BIOS_DEBUG, "Periodic SMI.\n");
382}
383
Aaron Durbin29ffa542012-12-21 21:21:48 -0600384static void southbridge_smi_monitor(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500385{
386#define IOTRAP(x) (trap_sts & (1 << x))
387 u32 trap_sts, trap_cycle;
Elyes HAOUAS2a66dd22020-08-07 15:22:12 +0200388 u32 mask = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500389 int i;
390
391 trap_sts = RCBA32(0x1e00); // TRSR - Trap Status Register
392 RCBA32(0x1e00) = trap_sts; // Clear trap(s) in TRSR
393
394 trap_cycle = RCBA32(0x1e10);
Angel Pons2aaf7c02020-09-24 18:03:18 +0200395 for (i = 16; i < 20; i++) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500396 if (trap_cycle & (1 << i))
397 mask |= (0xff << ((i - 16) << 2));
398 }
399
Aaron Durbin76c37002012-10-30 09:03:43 -0500400 /* IOTRAP(3) SMI function call */
401 if (IOTRAP(3)) {
402 if (gnvs && gnvs->smif)
403 io_trap_handler(gnvs->smif); // call function smif
404 return;
405 }
406
407 /* IOTRAP(2) currently unused
408 * IOTRAP(1) currently unused */
409
410 /* IOTRAP(0) SMIC */
411 if (IOTRAP(0)) {
Angel Pons2aaf7c02020-09-24 18:03:18 +0200412 // It's a write
413 if (!(trap_cycle & (1 << 24))) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500414 printk(BIOS_DEBUG, "SMI1 command\n");
Elyes HAOUAS2a66dd22020-08-07 15:22:12 +0200415 (void)RCBA32(0x1e18);
416 // data = RCBA32(0x1e18);
417 // data &= mask;
Aaron Durbin76c37002012-10-30 09:03:43 -0500418 // if (smi1)
Elyes HAOUASb0f19882018-06-09 11:59:00 +0200419 // southbridge_smi_command(data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500420 // return;
421 }
422 // Fall through to debug
423 }
424
Duncan Laurie467f31d2013-03-08 17:00:37 -0800425 printk(BIOS_DEBUG, " trapped io address = 0x%x\n",
426 trap_cycle & 0xfffc);
Angel Pons2aaf7c02020-09-24 18:03:18 +0200427 for (i = 0; i < 4; i++)
428 if (IOTRAP(i))
429 printk(BIOS_DEBUG, " TRAP = %d\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500430 printk(BIOS_DEBUG, " AHBE = %x\n", (trap_cycle >> 16) & 0xf);
431 printk(BIOS_DEBUG, " MASK = 0x%08x\n", mask);
Duncan Laurie467f31d2013-03-08 17:00:37 -0800432 printk(BIOS_DEBUG, " read/write: %s\n",
433 (trap_cycle & (1 << 24)) ? "read" : "write");
Aaron Durbin76c37002012-10-30 09:03:43 -0500434
435 if (!(trap_cycle & (1 << 24))) {
436 /* Write Cycle */
Elyes HAOUAS2a66dd22020-08-07 15:22:12 +0200437 printk(BIOS_DEBUG, " iotrap written data = 0x%08x\n", RCBA32(0x1e18));
Aaron Durbin76c37002012-10-30 09:03:43 -0500438 }
439#undef IOTRAP
440}
441
Aaron Durbin29ffa542012-12-21 21:21:48 -0600442typedef void (*smi_handler_t)(void);
Aaron Durbin76c37002012-10-30 09:03:43 -0500443
444static smi_handler_t southbridge_smi[32] = {
445 NULL, // [0] reserved
446 NULL, // [1] reserved
447 NULL, // [2] BIOS_STS
448 NULL, // [3] LEGACY_USB_STS
449 southbridge_smi_sleep, // [4] SLP_SMI_STS
450 southbridge_smi_apmc, // [5] APM_STS
451 NULL, // [6] SWSMI_TMR_STS
452 NULL, // [7] reserved
453 southbridge_smi_pm1, // [8] PM1_STS
454 southbridge_smi_gpe0, // [9] GPE0_STS
455 southbridge_smi_gpi, // [10] GPI_STS
456 southbridge_smi_mc, // [11] MCSMI_STS
457 NULL, // [12] DEVMON_STS
458 southbridge_smi_tco, // [13] TCO_STS
459 southbridge_smi_periodic, // [14] PERIODIC_STS
460 NULL, // [15] SERIRQ_SMI_STS
461 NULL, // [16] SMBUS_SMI_STS
462 NULL, // [17] LEGACY_USB2_STS
463 NULL, // [18] INTEL_USB2_STS
464 NULL, // [19] reserved
465 NULL, // [20] PCI_EXP_SMI_STS
466 southbridge_smi_monitor, // [21] MONITOR_STS
467 NULL, // [22] reserved
468 NULL, // [23] reserved
469 NULL, // [24] reserved
470 NULL, // [25] EL_SMI_STS
471 NULL, // [26] SPI_STS
472 NULL, // [27] reserved
473 NULL, // [28] reserved
474 NULL, // [29] reserved
475 NULL, // [30] reserved
476 NULL // [31] reserved
477};
478
479/**
480 * @brief Interrupt handler for SMI#
Aaron Durbin76c37002012-10-30 09:03:43 -0500481 */
Aaron Durbin29ffa542012-12-21 21:21:48 -0600482void southbridge_smi_handler(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500483{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800484 int i;
Aaron Durbin76c37002012-10-30 09:03:43 -0500485 u32 smi_sts;
486
Aaron Durbin76c37002012-10-30 09:03:43 -0500487 /* We need to clear the SMI status registers, or we won't see what's
488 * happening in the following calls.
489 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800490 smi_sts = clear_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500491
492 /* Call SMI sub handler for each of the status bits */
493 for (i = 0; i < 31; i++) {
494 if (smi_sts & (1 << i)) {
495 if (southbridge_smi[i]) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600496 southbridge_smi[i]();
Aaron Durbin76c37002012-10-30 09:03:43 -0500497 } else {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800498 printk(BIOS_DEBUG,
Martin Roth2ed0aa22016-01-05 20:58:58 -0700499 "SMI_STS[%d] occurred, but no "
Duncan Laurie467f31d2013-03-08 17:00:37 -0800500 "handler available.\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500501 }
502 }
503 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500504}