blob: 12e5ea2eb67654233123db2fddb1fd00d92d3e38 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
Duncan Laurie467f31d2013-03-08 17:00:37 -08005 * Copyright 2013 Google Inc.
Aaron Durbin76c37002012-10-30 09:03:43 -05006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Aaron Durbin76c37002012-10-30 09:03:43 -050016 */
17
Duncan Laurie2d9d39a2013-05-29 15:27:55 -070018#include <delay.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050019#include <types.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050020#include <arch/io.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050021#include <console/console.h>
22#include <cpu/x86/cache.h>
23#include <device/pci_def.h>
24#include <cpu/x86/smm.h>
25#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010026#include <halt.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050027#include <pc80/mc146818rtc.h>
Tristan Corrick09fc6342018-11-30 22:53:01 +130028#include <northbridge/intel/haswell/haswell.h>
29#include <cpu/intel/haswell/haswell.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050030#include "pch.h"
31
32#include "nvs.h"
33
Aaron Durbin76c37002012-10-30 09:03:43 -050034
35static u8 smm_initialized = 0;
36
37/* GNVS needs to be updated by an 0xEA PM Trap (B2) after it has been located
38 * by coreboot.
39 */
Aaron Durbin29ffa542012-12-21 21:21:48 -060040static global_nvs_t *gnvs;
Aaron Durbin76c37002012-10-30 09:03:43 -050041global_nvs_t *smm_get_gnvs(void)
42{
43 return gnvs;
44}
45
Aaron Durbin76c37002012-10-30 09:03:43 -050046int southbridge_io_trap_handler(int smif)
47{
48 switch (smif) {
49 case 0x32:
50 printk(BIOS_DEBUG, "OS Init\n");
51 /* gnvs->smif:
52 * On success, the IO Trap Handler returns 0
53 * On failure, the IO Trap Handler returns a value != 0
54 */
55 gnvs->smif = 0;
56 return 1; /* IO trap handled */
57 }
58
59 /* Not handled */
60 return 0;
61}
62
63/**
64 * @brief Set the EOS bit
65 */
66void southbridge_smi_set_eos(void)
67{
Duncan Laurie467f31d2013-03-08 17:00:37 -080068 enable_smi(EOS);
Aaron Durbin76c37002012-10-30 09:03:43 -050069}
70
71static void busmaster_disable_on_bus(int bus)
72{
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020073 int slot, func;
74 unsigned int val;
75 unsigned char hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -050076
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020077 for (slot = 0; slot < 0x20; slot++) {
78 for (func = 0; func < 8; func++) {
79 u32 reg32;
Elyes HAOUAS68c851b2018-06-12 22:06:09 +020080 pci_devfn_t dev = PCI_DEV(bus, slot, func);
Aaron Durbin76c37002012-10-30 09:03:43 -050081
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020082 val = pci_read_config32(dev, PCI_VENDOR_ID);
Aaron Durbin76c37002012-10-30 09:03:43 -050083
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020084 if (val == 0xffffffff || val == 0x00000000 ||
85 val == 0x0000ffff || val == 0xffff0000)
86 continue;
Aaron Durbin76c37002012-10-30 09:03:43 -050087
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020088 /* Disable Bus Mastering for this one device */
89 reg32 = pci_read_config32(dev, PCI_COMMAND);
90 reg32 &= ~PCI_COMMAND_MASTER;
91 pci_write_config32(dev, PCI_COMMAND, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -050092
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020093 /* If this is a bridge, then follow it. */
94 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
95 hdr &= 0x7f;
96 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
97 hdr == PCI_HEADER_TYPE_CARDBUS) {
98 unsigned int buses;
99 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
100 busmaster_disable_on_bus((buses >> 8) & 0xff);
101 }
102 }
103 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500104}
105
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700106
Aaron Durbin29ffa542012-12-21 21:21:48 -0600107static void southbridge_smi_sleep(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500108{
109 u8 reg8;
110 u32 reg32;
111 u8 slp_typ;
112 u8 s5pwr = CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800113 u16 pmbase = get_pmbase();
Aaron Durbin76c37002012-10-30 09:03:43 -0500114
115 // save and recover RTC port values
116 u8 tmp70, tmp72;
117 tmp70 = inb(0x70);
118 tmp72 = inb(0x72);
119 get_option(&s5pwr, "power_on_after_fail");
120 outb(tmp70, 0x70);
121 outb(tmp72, 0x72);
122
Aaron Durbin76c37002012-10-30 09:03:43 -0500123 /* First, disable further SMIs */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800124 disable_smi(SLP_SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500125
126 /* Figure out SLP_TYP */
127 reg32 = inl(pmbase + PM1_CNT);
128 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Aaron Durbinda5f5092016-07-13 23:23:16 -0500129 slp_typ = acpi_sleep_from_pm1(reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500130
131 /* Do any mainboard sleep handling */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500132 mainboard_smi_sleep(slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500133
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700134 /* USB sleep preparations */
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600135#if !IS_ENABLED(CONFIG_FINALIZE_USB_ROUTE_XHCI)
Duncan Laurie1f529082013-07-30 15:53:45 -0700136 usb_ehci_sleep_prepare(PCH_EHCI1_DEV, slp_typ);
137 usb_ehci_sleep_prepare(PCH_EHCI2_DEV, slp_typ);
Duncan Laurie911cedf2013-07-30 16:05:55 -0700138#endif
Duncan Laurie1f529082013-07-30 15:53:45 -0700139 usb_xhci_sleep_prepare(PCH_XHCI_DEV, slp_typ);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700140
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600141#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500142 /* Log S3, S4, and S5 entry */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500143 if (slp_typ >= ACPI_S3)
144 elog_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500145#endif
146
147 /* Next, do the deed.
148 */
149
150 switch (slp_typ) {
Aaron Durbinda5f5092016-07-13 23:23:16 -0500151 case ACPI_S0:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800152 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
153 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500154 case ACPI_S1:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800155 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
156 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500157 case ACPI_S3:
Aaron Durbin76c37002012-10-30 09:03:43 -0500158 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
159
Aaron Durbin76c37002012-10-30 09:03:43 -0500160 /* Invalidate the cache before going to S3 */
161 wbinvd();
162 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500163 case ACPI_S4:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800164 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
165 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500166 case ACPI_S5:
Aaron Durbin76c37002012-10-30 09:03:43 -0500167 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
168
Duncan Laurie467f31d2013-03-08 17:00:37 -0800169 /* Disable all GPE */
170 disable_all_gpe();
Aaron Durbin76c37002012-10-30 09:03:43 -0500171
172 /* Always set the flag in case CMOS was changed on runtime. For
173 * "KEEP", switch to "OFF" - KEEP is software emulated
174 */
Aaron Durbin89f79a02012-10-31 23:05:25 -0500175 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
Aaron Durbin76c37002012-10-30 09:03:43 -0500176 if (s5pwr == MAINBOARD_POWER_ON) {
177 reg8 &= ~1;
178 } else {
179 reg8 |= 1;
180 }
Aaron Durbin89f79a02012-10-31 23:05:25 -0500181 pci_write_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3, reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500182
183 /* also iterates over all bridges on bus 0 */
184 busmaster_disable_on_bus(0);
185 break;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800186 default:
187 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
188 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500189 }
190
191 /* Write back to the SLP register to cause the originally intended
192 * event again. We need to set BIT13 (SLP_EN) though to make the
193 * sleep happen.
194 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800195 enable_pm1_control(SLP_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500196
197 /* Make sure to stop executing code here for S3/S4/S5 */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500198 if (slp_typ >= ACPI_S3)
Patrick Georgi546953c2014-11-29 10:38:17 +0100199 halt();
Aaron Durbin76c37002012-10-30 09:03:43 -0500200
201 /* In most sleep states, the code flow of this function ends at
202 * the line above. However, if we entered sleep state S1 and wake
203 * up again, we will continue to execute code in this function.
204 */
205 reg32 = inl(pmbase + PM1_CNT);
206 if (reg32 & SCI_EN) {
207 /* The OS is not an ACPI OS, so we set the state to S0 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800208 disable_pm1_control(SLP_EN | SLP_TYP);
Aaron Durbin76c37002012-10-30 09:03:43 -0500209 }
210}
211
212/*
213 * Look for Synchronous IO SMI and use save state from that
214 * core in case we are not running on the same core that
215 * initiated the IO transaction.
216 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500217static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
218{
219 em64t101_smm_state_save_area_t *state;
Aaron Durbin76c37002012-10-30 09:03:43 -0500220 int node;
221
222 /* Check all nodes looking for the one that issued the IO */
223 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600224 state = smm_get_save_state(node);
Aaron Durbin76c37002012-10-30 09:03:43 -0500225
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200226 /* Check for Synchronous IO (bit0 == 1) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500227 if (!(state->io_misc_info & (1 << 0)))
228 continue;
229
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200230 /* Make sure it was a write (bit4 == 0) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500231 if (state->io_misc_info & (1 << 4))
232 continue;
233
234 /* Check for APMC IO port */
235 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
236 continue;
237
238 /* Check AX against the requested command */
239 if ((state->rax & 0xff) != cmd)
240 continue;
241
242 return state;
243 }
244
245 return NULL;
246}
247
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600248#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500249static void southbridge_smi_gsmi(void)
250{
251 u32 *ret, *param;
252 u8 sub_command;
253 em64t101_smm_state_save_area_t *io_smi =
254 smi_apmc_find_state_save(ELOG_GSMI_APM_CNT);
255
256 if (!io_smi)
257 return;
258
259 /* Command and return value in EAX */
260 ret = (u32*)&io_smi->rax;
261 sub_command = (u8)(*ret >> 8);
262
263 /* Parameter buffer in EBX */
264 param = (u32*)&io_smi->rbx;
265
266 /* drivers/elog/gsmi.c */
267 *ret = gsmi_exec(sub_command, param);
268}
269#endif
270
Aaron Durbin29ffa542012-12-21 21:21:48 -0600271static void southbridge_smi_apmc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500272{
Aaron Durbin76c37002012-10-30 09:03:43 -0500273 u8 reg8;
Aaron Durbin76c37002012-10-30 09:03:43 -0500274 em64t101_smm_state_save_area_t *state;
Tristan Corrick09fc6342018-11-30 22:53:01 +1300275 static int chipset_finalized = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500276
277 /* Emulate B2 register as the FADT / Linux expects it */
278
279 reg8 = inb(APM_CNT);
280 switch (reg8) {
Tristan Corrick09fc6342018-11-30 22:53:01 +1300281 case APM_CNT_FINALIZE:
282 if (chipset_finalized) {
283 printk(BIOS_DEBUG, "SMI#: Already finalized\n");
284 return;
285 }
286
287 intel_pch_finalize_smm();
288 intel_northbridge_haswell_finalize_smm();
289 intel_cpu_haswell_finalize_smm();
290
291 chipset_finalized = 1;
292 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500293 case APM_CNT_CST_CONTROL:
294 /* Calling this function seems to cause
295 * some kind of race condition in Linux
296 * and causes a kernel oops
297 */
298 printk(BIOS_DEBUG, "C-state control\n");
299 break;
300 case APM_CNT_PST_CONTROL:
301 /* Calling this function seems to cause
302 * some kind of race condition in Linux
303 * and causes a kernel oops
304 */
305 printk(BIOS_DEBUG, "P-state control\n");
306 break;
307 case APM_CNT_ACPI_DISABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800308 disable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500309 printk(BIOS_DEBUG, "SMI#: ACPI disabled.\n");
310 break;
311 case APM_CNT_ACPI_ENABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800312 enable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500313 printk(BIOS_DEBUG, "SMI#: ACPI enabled.\n");
314 break;
315 case APM_CNT_GNVS_UPDATE:
316 if (smm_initialized) {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800317 printk(BIOS_DEBUG,
318 "SMI#: SMM structures already initialized!\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500319 return;
320 }
321 state = smi_apmc_find_state_save(reg8);
322 if (state) {
323 /* EBX in the state save contains the GNVS pointer */
324 gnvs = (global_nvs_t *)((u32)state->rbx);
325 smm_initialized = 1;
326 printk(BIOS_DEBUG, "SMI#: Setting GNVS to %p\n", gnvs);
327 }
328 break;
Duncan Laurie78145a52013-08-21 13:16:21 -0700329 case 0xca:
Duncan Laurie911cedf2013-07-30 16:05:55 -0700330 usb_xhci_route_all();
Duncan Laurie911cedf2013-07-30 16:05:55 -0700331 break;
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600332#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500333 case ELOG_GSMI_APM_CNT:
334 southbridge_smi_gsmi();
335 break;
336#endif
337 }
338
Aaron Durbin29ffa542012-12-21 21:21:48 -0600339 mainboard_smi_apmc(reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500340}
341
Aaron Durbin29ffa542012-12-21 21:21:48 -0600342static void southbridge_smi_pm1(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500343{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800344 u16 pm1_sts = clear_pm1_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500345
346 /* While OSPM is not active, poweroff immediately
347 * on a power button event.
348 */
349 if (pm1_sts & PWRBTN_STS) {
350 // power button pressed
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600351#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500352 elog_add_event(ELOG_TYPE_POWER_BUTTON);
353#endif
Duncan Laurie467f31d2013-03-08 17:00:37 -0800354 disable_pm1_control(-1UL);
355 enable_pm1_control(SLP_EN | (SLP_TYP_S5 << 10));
Aaron Durbin76c37002012-10-30 09:03:43 -0500356 }
357}
358
Aaron Durbin29ffa542012-12-21 21:21:48 -0600359static void southbridge_smi_gpe0(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500360{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800361 clear_gpe_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500362}
363
Aaron Durbin29ffa542012-12-21 21:21:48 -0600364static void southbridge_smi_gpi(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500365{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800366 mainboard_smi_gpi(clear_alt_smi_status());
Aaron Durbin76c37002012-10-30 09:03:43 -0500367
Duncan Laurie467f31d2013-03-08 17:00:37 -0800368 /* Clear again after mainboard handler */
369 clear_alt_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500370}
371
Aaron Durbin29ffa542012-12-21 21:21:48 -0600372static void southbridge_smi_mc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500373{
374 u32 reg32;
375
Duncan Laurie467f31d2013-03-08 17:00:37 -0800376 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500377
Duncan Laurie467f31d2013-03-08 17:00:37 -0800378 /* Are microcontroller SMIs enabled? */
Aaron Durbin76c37002012-10-30 09:03:43 -0500379 if ((reg32 & MCSMI_EN) == 0)
380 return;
381
382 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
383}
384
385
386
Aaron Durbin29ffa542012-12-21 21:21:48 -0600387static void southbridge_smi_tco(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500388{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800389 u32 tco_sts = clear_tco_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500390
391 /* Any TCO event? */
392 if (!tco_sts)
393 return;
394
395 if (tco_sts & (1 << 8)) { // BIOSWR
396 u8 bios_cntl;
397
Aaron Durbin89f79a02012-10-31 23:05:25 -0500398 bios_cntl = pci_read_config16(PCI_DEV(0, 0x1f, 0), 0xdc);
Aaron Durbin76c37002012-10-30 09:03:43 -0500399
400 if (bios_cntl & 1) {
401 /* BWE is RW, so the SMI was caused by a
402 * write to BWE, not by a write to the BIOS
403 */
404
405 /* This is the place where we notice someone
406 * is trying to tinker with the BIOS. We are
407 * trying to be nice and just ignore it. A more
408 * resolute answer would be to power down the
409 * box.
410 */
411 printk(BIOS_DEBUG, "Switching back to RO\n");
Duncan Laurie467f31d2013-03-08 17:00:37 -0800412 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0xdc,
413 (bios_cntl & ~1));
Aaron Durbin76c37002012-10-30 09:03:43 -0500414 } /* No else for now? */
415 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
416 /* Handle TCO timeout */
417 printk(BIOS_DEBUG, "TCO Timeout.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500418 }
419}
420
Aaron Durbin29ffa542012-12-21 21:21:48 -0600421static void southbridge_smi_periodic(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500422{
423 u32 reg32;
424
Duncan Laurie467f31d2013-03-08 17:00:37 -0800425 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500426
427 /* Are periodic SMIs enabled? */
428 if ((reg32 & PERIODIC_EN) == 0)
429 return;
430
431 printk(BIOS_DEBUG, "Periodic SMI.\n");
432}
433
Aaron Durbin29ffa542012-12-21 21:21:48 -0600434static void southbridge_smi_monitor(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500435{
436#define IOTRAP(x) (trap_sts & (1 << x))
437 u32 trap_sts, trap_cycle;
438 u32 data, mask = 0;
439 int i;
440
441 trap_sts = RCBA32(0x1e00); // TRSR - Trap Status Register
442 RCBA32(0x1e00) = trap_sts; // Clear trap(s) in TRSR
443
444 trap_cycle = RCBA32(0x1e10);
445 for (i=16; i<20; i++) {
446 if (trap_cycle & (1 << i))
447 mask |= (0xff << ((i - 16) << 2));
448 }
449
450
451 /* IOTRAP(3) SMI function call */
452 if (IOTRAP(3)) {
453 if (gnvs && gnvs->smif)
454 io_trap_handler(gnvs->smif); // call function smif
455 return;
456 }
457
458 /* IOTRAP(2) currently unused
459 * IOTRAP(1) currently unused */
460
461 /* IOTRAP(0) SMIC */
462 if (IOTRAP(0)) {
463 if (!(trap_cycle & (1 << 24))) { // It's a write
464 printk(BIOS_DEBUG, "SMI1 command\n");
465 data = RCBA32(0x1e18);
466 data &= mask;
467 // if (smi1)
Elyes HAOUASb0f19882018-06-09 11:59:00 +0200468 // southbridge_smi_command(data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500469 // return;
470 }
471 // Fall through to debug
472 }
473
Duncan Laurie467f31d2013-03-08 17:00:37 -0800474 printk(BIOS_DEBUG, " trapped io address = 0x%x\n",
475 trap_cycle & 0xfffc);
476 for (i=0; i < 4; i++)
Elyes HAOUASba28e8d2016-08-31 19:22:16 +0200477 if (IOTRAP(i)) printk(BIOS_DEBUG, " TRAP = %d\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500478 printk(BIOS_DEBUG, " AHBE = %x\n", (trap_cycle >> 16) & 0xf);
479 printk(BIOS_DEBUG, " MASK = 0x%08x\n", mask);
Duncan Laurie467f31d2013-03-08 17:00:37 -0800480 printk(BIOS_DEBUG, " read/write: %s\n",
481 (trap_cycle & (1 << 24)) ? "read" : "write");
Aaron Durbin76c37002012-10-30 09:03:43 -0500482
483 if (!(trap_cycle & (1 << 24))) {
484 /* Write Cycle */
485 data = RCBA32(0x1e18);
486 printk(BIOS_DEBUG, " iotrap written data = 0x%08x\n", data);
487 }
488#undef IOTRAP
489}
490
Aaron Durbin29ffa542012-12-21 21:21:48 -0600491typedef void (*smi_handler_t)(void);
Aaron Durbin76c37002012-10-30 09:03:43 -0500492
493static smi_handler_t southbridge_smi[32] = {
494 NULL, // [0] reserved
495 NULL, // [1] reserved
496 NULL, // [2] BIOS_STS
497 NULL, // [3] LEGACY_USB_STS
498 southbridge_smi_sleep, // [4] SLP_SMI_STS
499 southbridge_smi_apmc, // [5] APM_STS
500 NULL, // [6] SWSMI_TMR_STS
501 NULL, // [7] reserved
502 southbridge_smi_pm1, // [8] PM1_STS
503 southbridge_smi_gpe0, // [9] GPE0_STS
504 southbridge_smi_gpi, // [10] GPI_STS
505 southbridge_smi_mc, // [11] MCSMI_STS
506 NULL, // [12] DEVMON_STS
507 southbridge_smi_tco, // [13] TCO_STS
508 southbridge_smi_periodic, // [14] PERIODIC_STS
509 NULL, // [15] SERIRQ_SMI_STS
510 NULL, // [16] SMBUS_SMI_STS
511 NULL, // [17] LEGACY_USB2_STS
512 NULL, // [18] INTEL_USB2_STS
513 NULL, // [19] reserved
514 NULL, // [20] PCI_EXP_SMI_STS
515 southbridge_smi_monitor, // [21] MONITOR_STS
516 NULL, // [22] reserved
517 NULL, // [23] reserved
518 NULL, // [24] reserved
519 NULL, // [25] EL_SMI_STS
520 NULL, // [26] SPI_STS
521 NULL, // [27] reserved
522 NULL, // [28] reserved
523 NULL, // [29] reserved
524 NULL, // [30] reserved
525 NULL // [31] reserved
526};
527
528/**
529 * @brief Interrupt handler for SMI#
Aaron Durbin76c37002012-10-30 09:03:43 -0500530 */
Aaron Durbin29ffa542012-12-21 21:21:48 -0600531void southbridge_smi_handler(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500532{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800533 int i;
Aaron Durbin76c37002012-10-30 09:03:43 -0500534 u32 smi_sts;
535
Aaron Durbin76c37002012-10-30 09:03:43 -0500536 /* We need to clear the SMI status registers, or we won't see what's
537 * happening in the following calls.
538 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800539 smi_sts = clear_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500540
541 /* Call SMI sub handler for each of the status bits */
542 for (i = 0; i < 31; i++) {
543 if (smi_sts & (1 << i)) {
544 if (southbridge_smi[i]) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600545 southbridge_smi[i]();
Aaron Durbin76c37002012-10-30 09:03:43 -0500546 } else {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800547 printk(BIOS_DEBUG,
Martin Roth2ed0aa22016-01-05 20:58:58 -0700548 "SMI_STS[%d] occurred, but no "
Duncan Laurie467f31d2013-03-08 17:00:37 -0800549 "handler available.\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500550 }
551 }
552 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500553}