blob: 14d08af7af86a6df26fef26a8d9c1b53bfd52d98 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
3#include <delay.h>
4#include <types.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07005#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02006#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02007#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07008#include <console/console.h>
9#include <cpu/x86/cache.h>
10#include <device/pci_def.h>
11#include <cpu/x86/smm.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030012#include <cpu/intel/em64t101_save_state.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070013#include <spi-generic.h>
14#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010015#include <halt.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020016#include <option.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070017#include <soc/lpc.h>
18#include <soc/nvs.h>
19#include <soc/pci_devs.h>
20#include <soc/pm.h>
21#include <soc/rcba.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070022#include <soc/xhci.h>
Duncan Laurief3e0a132015-01-14 17:33:00 -080023#include <drivers/intel/gma/i915_reg.h>
Matt DeVillier3a7a3392018-12-25 22:22:47 -060024#include <smmstore.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070025
Duncan Lauriec88c54c2014-04-30 16:36:13 -070026/**
27 * @brief Set the EOS bit
28 */
29void southbridge_smi_set_eos(void)
30{
31 enable_smi(EOS);
32}
33
34static void busmaster_disable_on_bus(int bus)
35{
Lee Leahy26b7cd02017-03-16 18:47:55 -070036 int slot, func;
37 unsigned int val;
38 unsigned char hdr;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070039
Lee Leahy26b7cd02017-03-16 18:47:55 -070040 for (slot = 0; slot < 0x20; slot++) {
41 for (func = 0; func < 8; func++) {
Kyösti Mälkkie16c9df2018-12-29 08:04:16 +020042 pci_devfn_t dev = PCI_DEV(bus, slot, func);
Angel Pons2ead3632020-09-24 16:50:05 +020043
Lee Leahy26b7cd02017-03-16 18:47:55 -070044 val = pci_read_config32(dev, PCI_VENDOR_ID);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070045
Lee Leahy26b7cd02017-03-16 18:47:55 -070046 if (val == 0xffffffff || val == 0x00000000 ||
Angel Pons2ead3632020-09-24 16:50:05 +020047 val == 0x0000ffff || val == 0xffff0000)
Lee Leahy26b7cd02017-03-16 18:47:55 -070048 continue;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070049
Lee Leahy26b7cd02017-03-16 18:47:55 -070050 /* Disable Bus Mastering for this one device */
Angel Pons2ead3632020-09-24 16:50:05 +020051 pci_and_config16(dev, PCI_COMMAND, ~PCI_COMMAND_MASTER);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070052
Lee Leahy26b7cd02017-03-16 18:47:55 -070053 /* If this is a bridge, then follow it. */
54 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
55 hdr &= 0x7f;
56 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
Angel Pons2ead3632020-09-24 16:50:05 +020057 hdr == PCI_HEADER_TYPE_CARDBUS) {
Lee Leahy26b7cd02017-03-16 18:47:55 -070058 unsigned int buses;
59 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
60 busmaster_disable_on_bus((buses >> 8) & 0xff);
61 }
62 }
63 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -070064}
65
Duncan Laurief3e0a132015-01-14 17:33:00 -080066/*
67 * Turn off the backlight if it is on, and wait for the specified
68 * backlight off delay. This will allow panel power timings to meet
69 * spec and prevent brief garbage on the screen when turned off
70 * during firmware with power button triggered SMI.
71 */
72static void backlight_off(void)
73{
74 void *reg_base;
75 uint32_t pp_ctrl;
76 uint32_t bl_off_delay;
77
Lee Leahy6ef51922017-03-17 10:56:08 -070078 reg_base = (void *)((uintptr_t)pci_read_config32(SA_DEV_IGD,
79 PCI_BASE_ADDRESS_0) & ~0xf);
Duncan Laurief3e0a132015-01-14 17:33:00 -080080
Patrick Rudolph9f8f1152020-05-06 11:58:45 +020081 /* Validate pointer before using it */
82 if (smm_points_to_smram(reg_base, PCH_PP_OFF_DELAYS + sizeof(uint32_t)))
83 return;
84
Duncan Laurief3e0a132015-01-14 17:33:00 -080085 /* Check if backlight is enabled */
86 pp_ctrl = read32(reg_base + PCH_PP_CONTROL);
87 if (!(pp_ctrl & EDP_BLC_ENABLE))
88 return;
89
90 /* Enable writes to this register */
91 pp_ctrl &= ~PANEL_UNLOCK_MASK;
92 pp_ctrl |= PANEL_UNLOCK_REGS;
93
94 /* Turn off backlight */
95 pp_ctrl &= ~EDP_BLC_ENABLE;
96
97 write32(reg_base + PCH_PP_CONTROL, pp_ctrl);
98 read32(reg_base + PCH_PP_CONTROL);
99
100 /* Read backlight off delay in 100us units */
101 bl_off_delay = read32(reg_base + PCH_PP_OFF_DELAYS);
102 bl_off_delay &= PANEL_LIGHT_OFF_DELAY_MASK;
103 bl_off_delay *= 100;
104
105 /* Wait for backlight to turn off */
106 udelay(bl_off_delay);
107
108 printk(BIOS_INFO, "Backlight turned off\n");
109}
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700110
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200111static int power_on_after_fail(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700112{
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700113 /* save and recover RTC port values */
114 u8 tmp70, tmp72;
115 tmp70 = inb(0x70);
116 tmp72 = inb(0x72);
Angel Pons88dcb312021-04-26 17:10:28 +0200117 const unsigned int s5pwr = get_uint_option("power_on_after_fail",
Angel Pons62719a32021-04-19 13:15:28 +0200118 CONFIG_MAINBOARD_POWER_FAILURE_STATE);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700119 outb(tmp70, 0x70);
120 outb(tmp72, 0x72);
121
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200122 /* For "KEEP", switch to "OFF" - KEEP is software emulated. */
123 return (s5pwr == MAINBOARD_POWER_ON);
124}
125
126static void southbridge_smi_sleep(void)
127{
128 u32 reg32;
129 u8 slp_typ;
130 u16 pmbase = get_pmbase();
131
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700132 /* First, disable further SMIs */
133 disable_smi(SLP_SMI_EN);
134
135 /* Figure out SLP_TYP */
Angel Ponsf92f2732020-09-25 00:44:52 +0200136 reg32 = inl(pmbase + PM1_CNT);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700137 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500138 slp_typ = acpi_sleep_from_pm1(reg32);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700139
140 /* Do any mainboard sleep handling */
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500141 mainboard_smi_sleep(slp_typ);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700142
143 /* USB sleep preparations */
144 usb_xhci_sleep_prepare(PCH_DEV_XHCI, slp_typ);
145
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700146 /* Log S3, S4, and S5 entry */
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500147 if (slp_typ >= ACPI_S3)
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200148 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700149
Duncan Lauried775dda2014-10-25 01:49:32 -0700150 /* Clear pending GPE events */
151 clear_gpe_status();
152
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700153 /* Next, do the deed.
154 */
155
156 switch (slp_typ) {
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500157 case ACPI_S0:
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700158 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
159 break;
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500160 case ACPI_S1:
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700161 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
162 break;
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500163 case ACPI_S3:
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700164 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
165
166 /* Invalidate the cache before going to S3 */
167 wbinvd();
168 break;
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500169 case ACPI_S4:
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700170 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
171 break;
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500172 case ACPI_S5:
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700173 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
174
Duncan Laurief3e0a132015-01-14 17:33:00 -0800175 /* Turn off backlight if needed */
176 backlight_off();
177
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700178 /* Disable all GPE */
179 disable_all_gpe();
180
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200181 /* Always set the flag in case CMOS was changed on runtime. */
182 if (power_on_after_fail())
183 pci_and_config8(PCH_DEV_LPC, GEN_PMCON_3, ~1);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700184 else
Kyösti Mälkki3c181862021-01-08 19:01:30 +0200185 pci_or_config8(PCH_DEV_LPC, GEN_PMCON_3, 1);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700186
187 /* also iterates over all bridges on bus 0 */
188 busmaster_disable_on_bus(0);
189 break;
190 default:
191 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
192 break;
193 }
194
195 /*
196 * Write back to the SLP register to cause the originally intended
197 * event again. We need to set BIT13 (SLP_EN) though to make the
198 * sleep happen.
199 */
200 enable_pm1_control(SLP_EN);
201
202 /* Make sure to stop executing code here for S3/S4/S5 */
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500203 if (slp_typ >= ACPI_S3)
Patrick Georgi546953c2014-11-29 10:38:17 +0100204 halt();
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700205
206 /*
207 * In most sleep states, the code flow of this function ends at
208 * the line above. However, if we entered sleep state S1 and wake
209 * up again, we will continue to execute code in this function.
210 */
Angel Ponsf92f2732020-09-25 00:44:52 +0200211 reg32 = inl(pmbase + PM1_CNT);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700212 if (reg32 & SCI_EN) {
213 /* The OS is not an ACPI OS, so we set the state to S0 */
214 disable_pm1_control(SLP_EN | SLP_TYP);
215 }
216}
217
218/*
219 * Look for Synchronous IO SMI and use save state from that
220 * core in case we are not running on the same core that
221 * initiated the IO transaction.
222 */
223static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
224{
225 em64t101_smm_state_save_area_t *state;
226 int node;
227
228 /* Check all nodes looking for the one that issued the IO */
229 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
230 state = smm_get_save_state(node);
231
Angel Pons2ead3632020-09-24 16:50:05 +0200232 /* Check for Synchronous IO (bit0 == 1) */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700233 if (!(state->io_misc_info & (1 << 0)))
234 continue;
235
Angel Pons2ead3632020-09-24 16:50:05 +0200236 /* Make sure it was a write (bit4 == 0) */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700237 if (state->io_misc_info & (1 << 4))
238 continue;
239
240 /* Check for APMC IO port */
241 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
242 continue;
243
244 /* Check AX against the requested command */
245 if ((state->rax & 0xff) != cmd)
246 continue;
247
248 return state;
249 }
250
251 return NULL;
252}
253
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700254static void southbridge_smi_gsmi(void)
255{
256 u32 *ret, *param;
257 u8 sub_command;
258 em64t101_smm_state_save_area_t *io_smi =
Patrick Georgid61839c2018-12-03 16:10:33 +0100259 smi_apmc_find_state_save(APM_CNT_ELOG_GSMI);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700260
261 if (!io_smi)
262 return;
263
264 /* Command and return value in EAX */
Lee Leahy26b7cd02017-03-16 18:47:55 -0700265 ret = (u32 *)&io_smi->rax;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700266 sub_command = (u8)(*ret >> 8);
267
268 /* Parameter buffer in EBX */
Lee Leahy26b7cd02017-03-16 18:47:55 -0700269 param = (u32 *)&io_smi->rbx;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700270
271 /* drivers/elog/gsmi.c */
272 *ret = gsmi_exec(sub_command, param);
273}
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700274
Matt DeVillier3a7a3392018-12-25 22:22:47 -0600275static void southbridge_smi_store(void)
276{
277 u8 sub_command, ret;
278 em64t101_smm_state_save_area_t *io_smi =
279 smi_apmc_find_state_save(APM_CNT_SMMSTORE);
280 uint32_t reg_ebx;
281
282 if (!io_smi)
283 return;
284 /* Command and return value in EAX */
285 sub_command = (io_smi->rax >> 8) & 0xff;
286
287 /* Parameter buffer in EBX */
288 reg_ebx = io_smi->rbx;
289
290 /* drivers/smmstore/smi.c */
291 ret = smmstore_exec(sub_command, (void *)reg_ebx);
292 io_smi->rax = ret;
293}
294
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700295static void southbridge_smi_apmc(void)
296{
297 u8 reg8;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700298
Kyösti Mälkki9a1620f2021-01-08 13:27:33 +0200299 reg8 = apm_get_apmc();
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700300 switch (reg8) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700301 case APM_CNT_ACPI_DISABLE:
302 disable_pm1_control(SCI_EN);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700303 break;
304 case APM_CNT_ACPI_ENABLE:
305 enable_pm1_control(SCI_EN);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700306 break;
Patrick Georgid61839c2018-12-03 16:10:33 +0100307 case APM_CNT_ELOG_GSMI:
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200308 if (CONFIG(ELOG_GSMI))
309 southbridge_smi_gsmi();
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700310 break;
Matt DeVillier3a7a3392018-12-25 22:22:47 -0600311 case APM_CNT_SMMSTORE:
312 if (CONFIG(SMMSTORE))
313 southbridge_smi_store();
314 break;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700315 }
316
317 mainboard_smi_apmc(reg8);
318}
319
320static void southbridge_smi_pm1(void)
321{
322 u16 pm1_sts = clear_pm1_status();
323
324 /* While OSPM is not active, poweroff immediately
325 * on a power button event.
326 */
327 if (pm1_sts & PWRBTN_STS) {
328 /* power button pressed */
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200329 elog_gsmi_add_event(ELOG_TYPE_POWER_BUTTON);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700330 disable_pm1_control(-1UL);
331 enable_pm1_control(SLP_EN | (SLP_TYP_S5 << 10));
332 }
333}
334
335static void southbridge_smi_gpe0(void)
336{
337 clear_gpe_status();
338}
339
340static void southbridge_smi_gpi(void)
341{
342 mainboard_smi_gpi(clear_alt_smi_status());
343
344 /* Clear again after mainboard handler */
345 clear_alt_smi_status();
346}
347
348static void southbridge_smi_mc(void)
349{
Angel Ponsf92f2732020-09-25 00:44:52 +0200350 u32 reg32 = inl(get_pmbase() + SMI_EN);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700351
352 /* Are microcontroller SMIs enabled? */
353 if ((reg32 & MCSMI_EN) == 0)
354 return;
355
356 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
357}
358
359static void southbridge_smi_tco(void)
360{
361 u32 tco_sts = clear_tco_status();
362
363 /* Any TCO event? */
364 if (!tco_sts)
365 return;
366
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700367 // BIOSWR
368 if (tco_sts & (1 << 8)) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700369 u8 bios_cntl = pci_read_config16(PCH_DEV_LPC, BIOS_CNTL);
370
371 if (bios_cntl & 1) {
372 /*
373 * BWE is RW, so the SMI was caused by a
374 * write to BWE, not by a write to the BIOS
375 *
376 * This is the place where we notice someone
377 * is trying to tinker with the BIOS. We are
378 * trying to be nice and just ignore it. A more
379 * resolute answer would be to power down the
380 * box.
381 */
382 printk(BIOS_DEBUG, "Switching back to RO\n");
Angel Pons2ead3632020-09-24 16:50:05 +0200383 pci_write_config32(PCH_DEV_LPC, BIOS_CNTL, (bios_cntl & ~1));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700384 } /* No else for now? */
385 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
386 /* Handle TCO timeout */
387 printk(BIOS_DEBUG, "TCO Timeout.\n");
388 }
389}
390
391static void southbridge_smi_periodic(void)
392{
Angel Ponsf92f2732020-09-25 00:44:52 +0200393 u32 reg32 = inl(get_pmbase() + SMI_EN);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700394
395 /* Are periodic SMIs enabled? */
396 if ((reg32 & PERIODIC_EN) == 0)
397 return;
398
399 printk(BIOS_DEBUG, "Periodic SMI.\n");
400}
401
402static void southbridge_smi_monitor(void)
403{
404#define IOTRAP(x) (trap_sts & (1 << x))
405 u32 trap_sts, trap_cycle;
Angel Pons2ead3632020-09-24 16:50:05 +0200406 u32 mask = 0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700407 int i;
408
409 trap_sts = RCBA32(0x1e00); // TRSR - Trap Status Register
410 RCBA32(0x1e00) = trap_sts; // Clear trap(s) in TRSR
411
412 trap_cycle = RCBA32(0x1e10);
Lee Leahy26b7cd02017-03-16 18:47:55 -0700413 for (i = 16; i < 20; i++) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700414 if (trap_cycle & (1 << i))
Kyösti Mälkkia0720432022-12-03 19:35:53 +0200415 mask |= (0xff << ((i - 16) << 3));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700416 }
417
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700418 /* IOTRAP(3) SMI function call */
419 if (IOTRAP(3)) {
420 if (gnvs && gnvs->smif)
421 io_trap_handler(gnvs->smif); // call function smif
422 return;
423 }
424
425 /* IOTRAP(2) currently unused
426 * IOTRAP(1) currently unused */
427
428 /* IOTRAP(0) SMIC */
429 if (IOTRAP(0)) {
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700430 // It's a write
431 if (!(trap_cycle & (1 << 24))) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700432 printk(BIOS_DEBUG, "SMI1 command\n");
Angel Pons2ead3632020-09-24 16:50:05 +0200433 (void)RCBA32(0x1e18);
434 // data = RCBA32(0x1e18);
435 // data &= mask;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700436 // if (smi1)
Lee Leahy26b7cd02017-03-16 18:47:55 -0700437 // southbridge_smi_command(data);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700438 // return;
439 }
440 // Fall through to debug
441 }
442
443 printk(BIOS_DEBUG, " trapped io address = 0x%x\n",
444 trap_cycle & 0xfffc);
Lee Leahy26b7cd02017-03-16 18:47:55 -0700445 for (i = 0; i < 4; i++)
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700446 if (IOTRAP(i))
447 printk(BIOS_DEBUG, " TRAP = %d\n", i);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700448 printk(BIOS_DEBUG, " AHBE = %x\n", (trap_cycle >> 16) & 0xf);
449 printk(BIOS_DEBUG, " MASK = 0x%08x\n", mask);
450 printk(BIOS_DEBUG, " read/write: %s\n",
451 (trap_cycle & (1 << 24)) ? "read" : "write");
452
453 if (!(trap_cycle & (1 << 24))) {
454 /* Write Cycle */
Angel Pons2ead3632020-09-24 16:50:05 +0200455 printk(BIOS_DEBUG, " iotrap written data = 0x%08x\n", RCBA32(0x1e18));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700456 }
457#undef IOTRAP
458}
459
460typedef void (*smi_handler_t)(void);
461
462static smi_handler_t southbridge_smi[32] = {
463 NULL, // [0] reserved
464 NULL, // [1] reserved
465 NULL, // [2] BIOS_STS
466 NULL, // [3] LEGACY_USB_STS
467 southbridge_smi_sleep, // [4] SLP_SMI_STS
468 southbridge_smi_apmc, // [5] APM_STS
469 NULL, // [6] SWSMI_TMR_STS
470 NULL, // [7] reserved
471 southbridge_smi_pm1, // [8] PM1_STS
472 southbridge_smi_gpe0, // [9] GPE0_STS
473 southbridge_smi_gpi, // [10] GPI_STS
474 southbridge_smi_mc, // [11] MCSMI_STS
475 NULL, // [12] DEVMON_STS
476 southbridge_smi_tco, // [13] TCO_STS
477 southbridge_smi_periodic, // [14] PERIODIC_STS
478 NULL, // [15] SERIRQ_SMI_STS
479 NULL, // [16] SMBUS_SMI_STS
480 NULL, // [17] LEGACY_USB2_STS
481 NULL, // [18] INTEL_USB2_STS
482 NULL, // [19] reserved
483 NULL, // [20] PCI_EXP_SMI_STS
484 southbridge_smi_monitor, // [21] MONITOR_STS
485 NULL, // [22] reserved
486 NULL, // [23] reserved
487 NULL, // [24] reserved
488 NULL, // [25] EL_SMI_STS
489 NULL, // [26] SPI_STS
490 NULL, // [27] reserved
491 NULL, // [28] reserved
492 NULL, // [29] reserved
493 NULL, // [30] reserved
494 NULL // [31] reserved
495};
496
497/**
498 * @brief Interrupt handler for SMI#
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700499 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700500void southbridge_smi_handler(void)
501{
502 int i;
503 u32 smi_sts;
504
505 /* We need to clear the SMI status registers, or we won't see what's
506 * happening in the following calls.
507 */
508 smi_sts = clear_smi_status();
509
510 /* Call SMI sub handler for each of the status bits */
511 for (i = 0; i < 31; i++) {
512 if (smi_sts & (1 << i)) {
513 if (southbridge_smi[i]) {
514 southbridge_smi[i]();
515 } else {
516 printk(BIOS_DEBUG,
Martin Rothde7ed6f2014-12-07 14:58:18 -0700517 "SMI_STS[%d] occurred, but no "
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700518 "handler available.\n", i);
519 }
520 }
521 }
522}