blob: 8c46ab0255fc1a8ae82e3f2cd1bfeb8cf866d974 [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>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020021#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050022#include <console/console.h>
23#include <cpu/x86/cache.h>
24#include <device/pci_def.h>
25#include <cpu/x86/smm.h>
26#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010027#include <halt.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050028#include <pc80/mc146818rtc.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130029#include <southbridge/intel/common/finalize.h>
Tristan Corrick09fc6342018-11-30 22:53:01 +130030#include <northbridge/intel/haswell/haswell.h>
31#include <cpu/intel/haswell/haswell.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130032#include "me.h"
Aaron Durbin76c37002012-10-30 09:03:43 -050033#include "pch.h"
34
35#include "nvs.h"
36
Aaron Durbin76c37002012-10-30 09:03:43 -050037
38static u8 smm_initialized = 0;
39
40/* GNVS needs to be updated by an 0xEA PM Trap (B2) after it has been located
41 * by coreboot.
42 */
Aaron Durbin29ffa542012-12-21 21:21:48 -060043static global_nvs_t *gnvs;
Aaron Durbin76c37002012-10-30 09:03:43 -050044global_nvs_t *smm_get_gnvs(void)
45{
46 return gnvs;
47}
48
Aaron Durbin76c37002012-10-30 09:03:43 -050049int southbridge_io_trap_handler(int smif)
50{
51 switch (smif) {
52 case 0x32:
53 printk(BIOS_DEBUG, "OS Init\n");
54 /* gnvs->smif:
55 * On success, the IO Trap Handler returns 0
56 * On failure, the IO Trap Handler returns a value != 0
57 */
58 gnvs->smif = 0;
59 return 1; /* IO trap handled */
60 }
61
62 /* Not handled */
63 return 0;
64}
65
66/**
67 * @brief Set the EOS bit
68 */
69void southbridge_smi_set_eos(void)
70{
Duncan Laurie467f31d2013-03-08 17:00:37 -080071 enable_smi(EOS);
Aaron Durbin76c37002012-10-30 09:03:43 -050072}
73
74static void busmaster_disable_on_bus(int bus)
75{
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020076 int slot, func;
77 unsigned int val;
78 unsigned char hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -050079
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020080 for (slot = 0; slot < 0x20; slot++) {
81 for (func = 0; func < 8; func++) {
82 u32 reg32;
Elyes HAOUAS68c851b2018-06-12 22:06:09 +020083 pci_devfn_t dev = PCI_DEV(bus, slot, func);
Aaron Durbin76c37002012-10-30 09:03:43 -050084
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020085 val = pci_read_config32(dev, PCI_VENDOR_ID);
Aaron Durbin76c37002012-10-30 09:03:43 -050086
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020087 if (val == 0xffffffff || val == 0x00000000 ||
88 val == 0x0000ffff || val == 0xffff0000)
89 continue;
Aaron Durbin76c37002012-10-30 09:03:43 -050090
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020091 /* Disable Bus Mastering for this one device */
92 reg32 = pci_read_config32(dev, PCI_COMMAND);
93 reg32 &= ~PCI_COMMAND_MASTER;
94 pci_write_config32(dev, PCI_COMMAND, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -050095
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020096 /* If this is a bridge, then follow it. */
97 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
98 hdr &= 0x7f;
99 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
100 hdr == PCI_HEADER_TYPE_CARDBUS) {
101 unsigned int buses;
102 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
103 busmaster_disable_on_bus((buses >> 8) & 0xff);
104 }
105 }
106 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500107}
108
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700109
Aaron Durbin29ffa542012-12-21 21:21:48 -0600110static void southbridge_smi_sleep(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500111{
112 u8 reg8;
113 u32 reg32;
114 u8 slp_typ;
Nico Huber9faae2b2018-11-14 00:00:35 +0100115 u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800116 u16 pmbase = get_pmbase();
Aaron Durbin76c37002012-10-30 09:03:43 -0500117
118 // save and recover RTC port values
119 u8 tmp70, tmp72;
120 tmp70 = inb(0x70);
121 tmp72 = inb(0x72);
122 get_option(&s5pwr, "power_on_after_fail");
123 outb(tmp70, 0x70);
124 outb(tmp72, 0x72);
125
Aaron Durbin76c37002012-10-30 09:03:43 -0500126 /* First, disable further SMIs */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800127 disable_smi(SLP_SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500128
129 /* Figure out SLP_TYP */
130 reg32 = inl(pmbase + PM1_CNT);
131 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Aaron Durbinda5f5092016-07-13 23:23:16 -0500132 slp_typ = acpi_sleep_from_pm1(reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500133
134 /* Do any mainboard sleep handling */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500135 mainboard_smi_sleep(slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500136
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700137 /* USB sleep preparations */
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600138#if !IS_ENABLED(CONFIG_FINALIZE_USB_ROUTE_XHCI)
Duncan Laurie1f529082013-07-30 15:53:45 -0700139 usb_ehci_sleep_prepare(PCH_EHCI1_DEV, slp_typ);
140 usb_ehci_sleep_prepare(PCH_EHCI2_DEV, slp_typ);
Duncan Laurie911cedf2013-07-30 16:05:55 -0700141#endif
Duncan Laurie1f529082013-07-30 15:53:45 -0700142 usb_xhci_sleep_prepare(PCH_XHCI_DEV, slp_typ);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700143
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600144#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500145 /* Log S3, S4, and S5 entry */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500146 if (slp_typ >= ACPI_S3)
147 elog_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500148#endif
149
150 /* Next, do the deed.
151 */
152
153 switch (slp_typ) {
Aaron Durbinda5f5092016-07-13 23:23:16 -0500154 case ACPI_S0:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800155 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
156 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500157 case ACPI_S1:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800158 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
159 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500160 case ACPI_S3:
Aaron Durbin76c37002012-10-30 09:03:43 -0500161 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
162
Aaron Durbin76c37002012-10-30 09:03:43 -0500163 /* Invalidate the cache before going to S3 */
164 wbinvd();
165 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500166 case ACPI_S4:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800167 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
168 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500169 case ACPI_S5:
Aaron Durbin76c37002012-10-30 09:03:43 -0500170 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
171
Duncan Laurie467f31d2013-03-08 17:00:37 -0800172 /* Disable all GPE */
173 disable_all_gpe();
Aaron Durbin76c37002012-10-30 09:03:43 -0500174
175 /* Always set the flag in case CMOS was changed on runtime. For
176 * "KEEP", switch to "OFF" - KEEP is software emulated
177 */
Aaron Durbin89f79a02012-10-31 23:05:25 -0500178 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
Aaron Durbin76c37002012-10-30 09:03:43 -0500179 if (s5pwr == MAINBOARD_POWER_ON) {
180 reg8 &= ~1;
181 } else {
182 reg8 |= 1;
183 }
Aaron Durbin89f79a02012-10-31 23:05:25 -0500184 pci_write_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3, reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500185
186 /* also iterates over all bridges on bus 0 */
187 busmaster_disable_on_bus(0);
188 break;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800189 default:
190 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
191 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500192 }
193
194 /* Write back to the SLP register to cause the originally intended
195 * event again. We need to set BIT13 (SLP_EN) though to make the
196 * sleep happen.
197 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800198 enable_pm1_control(SLP_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500199
200 /* Make sure to stop executing code here for S3/S4/S5 */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500201 if (slp_typ >= ACPI_S3)
Patrick Georgi546953c2014-11-29 10:38:17 +0100202 halt();
Aaron Durbin76c37002012-10-30 09:03:43 -0500203
204 /* In most sleep states, the code flow of this function ends at
205 * the line above. However, if we entered sleep state S1 and wake
206 * up again, we will continue to execute code in this function.
207 */
208 reg32 = inl(pmbase + PM1_CNT);
209 if (reg32 & SCI_EN) {
210 /* The OS is not an ACPI OS, so we set the state to S0 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800211 disable_pm1_control(SLP_EN | SLP_TYP);
Aaron Durbin76c37002012-10-30 09:03:43 -0500212 }
213}
214
215/*
216 * Look for Synchronous IO SMI and use save state from that
217 * core in case we are not running on the same core that
218 * initiated the IO transaction.
219 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500220static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
221{
222 em64t101_smm_state_save_area_t *state;
Aaron Durbin76c37002012-10-30 09:03:43 -0500223 int node;
224
225 /* Check all nodes looking for the one that issued the IO */
226 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600227 state = smm_get_save_state(node);
Aaron Durbin76c37002012-10-30 09:03:43 -0500228
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200229 /* Check for Synchronous IO (bit0 == 1) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500230 if (!(state->io_misc_info & (1 << 0)))
231 continue;
232
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200233 /* Make sure it was a write (bit4 == 0) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500234 if (state->io_misc_info & (1 << 4))
235 continue;
236
237 /* Check for APMC IO port */
238 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
239 continue;
240
241 /* Check AX against the requested command */
242 if ((state->rax & 0xff) != cmd)
243 continue;
244
245 return state;
246 }
247
248 return NULL;
249}
250
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600251#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500252static void southbridge_smi_gsmi(void)
253{
254 u32 *ret, *param;
255 u8 sub_command;
256 em64t101_smm_state_save_area_t *io_smi =
Patrick Georgid61839c2018-12-03 16:10:33 +0100257 smi_apmc_find_state_save(APM_CNT_ELOG_GSMI);
Aaron Durbin76c37002012-10-30 09:03:43 -0500258
259 if (!io_smi)
260 return;
261
262 /* Command and return value in EAX */
263 ret = (u32*)&io_smi->rax;
264 sub_command = (u8)(*ret >> 8);
265
266 /* Parameter buffer in EBX */
267 param = (u32*)&io_smi->rbx;
268
269 /* drivers/elog/gsmi.c */
270 *ret = gsmi_exec(sub_command, param);
271}
272#endif
273
Aaron Durbin29ffa542012-12-21 21:21:48 -0600274static void southbridge_smi_apmc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500275{
Aaron Durbin76c37002012-10-30 09:03:43 -0500276 u8 reg8;
Aaron Durbin76c37002012-10-30 09:03:43 -0500277 em64t101_smm_state_save_area_t *state;
Tristan Corrick09fc6342018-11-30 22:53:01 +1300278 static int chipset_finalized = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500279
280 /* Emulate B2 register as the FADT / Linux expects it */
281
282 reg8 = inb(APM_CNT);
283 switch (reg8) {
Tristan Corrick09fc6342018-11-30 22:53:01 +1300284 case APM_CNT_FINALIZE:
285 if (chipset_finalized) {
286 printk(BIOS_DEBUG, "SMI#: Already finalized\n");
287 return;
288 }
289
Tristan Corrick63626b12018-11-30 22:53:50 +1300290 intel_me_finalize_smm();
Tristan Corrick09fc6342018-11-30 22:53:01 +1300291 intel_pch_finalize_smm();
292 intel_northbridge_haswell_finalize_smm();
293 intel_cpu_haswell_finalize_smm();
294
295 chipset_finalized = 1;
296 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500297 case APM_CNT_CST_CONTROL:
298 /* Calling this function seems to cause
299 * some kind of race condition in Linux
300 * and causes a kernel oops
301 */
302 printk(BIOS_DEBUG, "C-state control\n");
303 break;
304 case APM_CNT_PST_CONTROL:
305 /* Calling this function seems to cause
306 * some kind of race condition in Linux
307 * and causes a kernel oops
308 */
309 printk(BIOS_DEBUG, "P-state control\n");
310 break;
311 case APM_CNT_ACPI_DISABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800312 disable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500313 printk(BIOS_DEBUG, "SMI#: ACPI disabled.\n");
314 break;
315 case APM_CNT_ACPI_ENABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800316 enable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500317 printk(BIOS_DEBUG, "SMI#: ACPI enabled.\n");
318 break;
319 case APM_CNT_GNVS_UPDATE:
320 if (smm_initialized) {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800321 printk(BIOS_DEBUG,
322 "SMI#: SMM structures already initialized!\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500323 return;
324 }
325 state = smi_apmc_find_state_save(reg8);
326 if (state) {
327 /* EBX in the state save contains the GNVS pointer */
328 gnvs = (global_nvs_t *)((u32)state->rbx);
329 smm_initialized = 1;
330 printk(BIOS_DEBUG, "SMI#: Setting GNVS to %p\n", gnvs);
331 }
332 break;
Duncan Laurie78145a52013-08-21 13:16:21 -0700333 case 0xca:
Duncan Laurie911cedf2013-07-30 16:05:55 -0700334 usb_xhci_route_all();
Duncan Laurie911cedf2013-07-30 16:05:55 -0700335 break;
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600336#if IS_ENABLED(CONFIG_ELOG_GSMI)
Patrick Georgid61839c2018-12-03 16:10:33 +0100337 case APM_CNT_ELOG_GSMI:
Aaron Durbin76c37002012-10-30 09:03:43 -0500338 southbridge_smi_gsmi();
339 break;
340#endif
341 }
342
Aaron Durbin29ffa542012-12-21 21:21:48 -0600343 mainboard_smi_apmc(reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500344}
345
Aaron Durbin29ffa542012-12-21 21:21:48 -0600346static void southbridge_smi_pm1(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500347{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800348 u16 pm1_sts = clear_pm1_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500349
350 /* While OSPM is not active, poweroff immediately
351 * on a power button event.
352 */
353 if (pm1_sts & PWRBTN_STS) {
354 // power button pressed
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600355#if IS_ENABLED(CONFIG_ELOG_GSMI)
Aaron Durbin76c37002012-10-30 09:03:43 -0500356 elog_add_event(ELOG_TYPE_POWER_BUTTON);
357#endif
Duncan Laurie467f31d2013-03-08 17:00:37 -0800358 disable_pm1_control(-1UL);
359 enable_pm1_control(SLP_EN | (SLP_TYP_S5 << 10));
Aaron Durbin76c37002012-10-30 09:03:43 -0500360 }
361}
362
Aaron Durbin29ffa542012-12-21 21:21:48 -0600363static void southbridge_smi_gpe0(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500364{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800365 clear_gpe_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500366}
367
Aaron Durbin29ffa542012-12-21 21:21:48 -0600368static void southbridge_smi_gpi(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500369{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800370 mainboard_smi_gpi(clear_alt_smi_status());
Aaron Durbin76c37002012-10-30 09:03:43 -0500371
Duncan Laurie467f31d2013-03-08 17:00:37 -0800372 /* Clear again after mainboard handler */
373 clear_alt_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500374}
375
Aaron Durbin29ffa542012-12-21 21:21:48 -0600376static void southbridge_smi_mc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500377{
378 u32 reg32;
379
Duncan Laurie467f31d2013-03-08 17:00:37 -0800380 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500381
Duncan Laurie467f31d2013-03-08 17:00:37 -0800382 /* Are microcontroller SMIs enabled? */
Aaron Durbin76c37002012-10-30 09:03:43 -0500383 if ((reg32 & MCSMI_EN) == 0)
384 return;
385
386 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
387}
388
389
390
Aaron Durbin29ffa542012-12-21 21:21:48 -0600391static void southbridge_smi_tco(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500392{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800393 u32 tco_sts = clear_tco_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500394
395 /* Any TCO event? */
396 if (!tco_sts)
397 return;
398
399 if (tco_sts & (1 << 8)) { // BIOSWR
400 u8 bios_cntl;
401
Aaron Durbin89f79a02012-10-31 23:05:25 -0500402 bios_cntl = pci_read_config16(PCI_DEV(0, 0x1f, 0), 0xdc);
Aaron Durbin76c37002012-10-30 09:03:43 -0500403
404 if (bios_cntl & 1) {
405 /* BWE is RW, so the SMI was caused by a
406 * write to BWE, not by a write to the BIOS
407 */
408
409 /* This is the place where we notice someone
410 * is trying to tinker with the BIOS. We are
411 * trying to be nice and just ignore it. A more
412 * resolute answer would be to power down the
413 * box.
414 */
415 printk(BIOS_DEBUG, "Switching back to RO\n");
Duncan Laurie467f31d2013-03-08 17:00:37 -0800416 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0xdc,
417 (bios_cntl & ~1));
Aaron Durbin76c37002012-10-30 09:03:43 -0500418 } /* No else for now? */
419 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
420 /* Handle TCO timeout */
421 printk(BIOS_DEBUG, "TCO Timeout.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500422 }
423}
424
Aaron Durbin29ffa542012-12-21 21:21:48 -0600425static void southbridge_smi_periodic(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500426{
427 u32 reg32;
428
Duncan Laurie467f31d2013-03-08 17:00:37 -0800429 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500430
431 /* Are periodic SMIs enabled? */
432 if ((reg32 & PERIODIC_EN) == 0)
433 return;
434
435 printk(BIOS_DEBUG, "Periodic SMI.\n");
436}
437
Aaron Durbin29ffa542012-12-21 21:21:48 -0600438static void southbridge_smi_monitor(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500439{
440#define IOTRAP(x) (trap_sts & (1 << x))
441 u32 trap_sts, trap_cycle;
442 u32 data, mask = 0;
443 int i;
444
445 trap_sts = RCBA32(0x1e00); // TRSR - Trap Status Register
446 RCBA32(0x1e00) = trap_sts; // Clear trap(s) in TRSR
447
448 trap_cycle = RCBA32(0x1e10);
449 for (i=16; i<20; i++) {
450 if (trap_cycle & (1 << i))
451 mask |= (0xff << ((i - 16) << 2));
452 }
453
454
455 /* IOTRAP(3) SMI function call */
456 if (IOTRAP(3)) {
457 if (gnvs && gnvs->smif)
458 io_trap_handler(gnvs->smif); // call function smif
459 return;
460 }
461
462 /* IOTRAP(2) currently unused
463 * IOTRAP(1) currently unused */
464
465 /* IOTRAP(0) SMIC */
466 if (IOTRAP(0)) {
467 if (!(trap_cycle & (1 << 24))) { // It's a write
468 printk(BIOS_DEBUG, "SMI1 command\n");
469 data = RCBA32(0x1e18);
470 data &= mask;
471 // if (smi1)
Elyes HAOUASb0f19882018-06-09 11:59:00 +0200472 // southbridge_smi_command(data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500473 // return;
474 }
475 // Fall through to debug
476 }
477
Duncan Laurie467f31d2013-03-08 17:00:37 -0800478 printk(BIOS_DEBUG, " trapped io address = 0x%x\n",
479 trap_cycle & 0xfffc);
480 for (i=0; i < 4; i++)
Elyes HAOUASba28e8d2016-08-31 19:22:16 +0200481 if (IOTRAP(i)) printk(BIOS_DEBUG, " TRAP = %d\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500482 printk(BIOS_DEBUG, " AHBE = %x\n", (trap_cycle >> 16) & 0xf);
483 printk(BIOS_DEBUG, " MASK = 0x%08x\n", mask);
Duncan Laurie467f31d2013-03-08 17:00:37 -0800484 printk(BIOS_DEBUG, " read/write: %s\n",
485 (trap_cycle & (1 << 24)) ? "read" : "write");
Aaron Durbin76c37002012-10-30 09:03:43 -0500486
487 if (!(trap_cycle & (1 << 24))) {
488 /* Write Cycle */
489 data = RCBA32(0x1e18);
490 printk(BIOS_DEBUG, " iotrap written data = 0x%08x\n", data);
491 }
492#undef IOTRAP
493}
494
Aaron Durbin29ffa542012-12-21 21:21:48 -0600495typedef void (*smi_handler_t)(void);
Aaron Durbin76c37002012-10-30 09:03:43 -0500496
497static smi_handler_t southbridge_smi[32] = {
498 NULL, // [0] reserved
499 NULL, // [1] reserved
500 NULL, // [2] BIOS_STS
501 NULL, // [3] LEGACY_USB_STS
502 southbridge_smi_sleep, // [4] SLP_SMI_STS
503 southbridge_smi_apmc, // [5] APM_STS
504 NULL, // [6] SWSMI_TMR_STS
505 NULL, // [7] reserved
506 southbridge_smi_pm1, // [8] PM1_STS
507 southbridge_smi_gpe0, // [9] GPE0_STS
508 southbridge_smi_gpi, // [10] GPI_STS
509 southbridge_smi_mc, // [11] MCSMI_STS
510 NULL, // [12] DEVMON_STS
511 southbridge_smi_tco, // [13] TCO_STS
512 southbridge_smi_periodic, // [14] PERIODIC_STS
513 NULL, // [15] SERIRQ_SMI_STS
514 NULL, // [16] SMBUS_SMI_STS
515 NULL, // [17] LEGACY_USB2_STS
516 NULL, // [18] INTEL_USB2_STS
517 NULL, // [19] reserved
518 NULL, // [20] PCI_EXP_SMI_STS
519 southbridge_smi_monitor, // [21] MONITOR_STS
520 NULL, // [22] reserved
521 NULL, // [23] reserved
522 NULL, // [24] reserved
523 NULL, // [25] EL_SMI_STS
524 NULL, // [26] SPI_STS
525 NULL, // [27] reserved
526 NULL, // [28] reserved
527 NULL, // [29] reserved
528 NULL, // [30] reserved
529 NULL // [31] reserved
530};
531
532/**
533 * @brief Interrupt handler for SMI#
Aaron Durbin76c37002012-10-30 09:03:43 -0500534 */
Aaron Durbin29ffa542012-12-21 21:21:48 -0600535void southbridge_smi_handler(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500536{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800537 int i;
Aaron Durbin76c37002012-10-30 09:03:43 -0500538 u32 smi_sts;
539
Aaron Durbin76c37002012-10-30 09:03:43 -0500540 /* We need to clear the SMI status registers, or we won't see what's
541 * happening in the following calls.
542 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800543 smi_sts = clear_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500544
545 /* Call SMI sub handler for each of the status bits */
546 for (i = 0; i < 31; i++) {
547 if (smi_sts & (1 << i)) {
548 if (southbridge_smi[i]) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600549 southbridge_smi[i]();
Aaron Durbin76c37002012-10-30 09:03:43 -0500550 } else {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800551 printk(BIOS_DEBUG,
Martin Roth2ed0aa22016-01-05 20:58:58 -0700552 "SMI_STS[%d] occurred, but no "
Duncan Laurie467f31d2013-03-08 17:00:37 -0800553 "handler available.\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500554 }
555 }
556 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500557}