blob: e156b347c1071a612b1cc4d5facccc0f872ec225 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Aaron Durbin76c37002012-10-30 09:03:43 -05003
4#include <types.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05005#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05007#include <console/console.h>
8#include <cpu/x86/cache.h>
9#include <device/pci_def.h>
10#include <cpu/x86/smm.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030011#include <cpu/intel/em64t101_save_state.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050012#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010013#include <halt.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020014#include <option.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130015#include <southbridge/intel/common/finalize.h>
Tristan Corrick09fc6342018-11-30 22:53:01 +130016#include <northbridge/intel/haswell/haswell.h>
17#include <cpu/intel/haswell/haswell.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#include "nvs.h"
22
Aaron Durbin76c37002012-10-30 09:03:43 -050023static u8 smm_initialized = 0;
24
25/* GNVS needs to be updated by an 0xEA PM Trap (B2) after it has been located
26 * by coreboot.
27 */
Aaron Durbin29ffa542012-12-21 21:21:48 -060028static global_nvs_t *gnvs;
Aaron Durbin76c37002012-10-30 09:03:43 -050029global_nvs_t *smm_get_gnvs(void)
30{
31 return gnvs;
32}
33
Aaron Durbin76c37002012-10-30 09:03:43 -050034int southbridge_io_trap_handler(int smif)
35{
36 switch (smif) {
37 case 0x32:
38 printk(BIOS_DEBUG, "OS Init\n");
39 /* gnvs->smif:
40 * On success, the IO Trap Handler returns 0
41 * On failure, the IO Trap Handler returns a value != 0
42 */
43 gnvs->smif = 0;
44 return 1; /* IO trap handled */
45 }
46
47 /* Not handled */
48 return 0;
49}
50
51/**
52 * @brief Set the EOS bit
53 */
54void southbridge_smi_set_eos(void)
55{
Duncan Laurie467f31d2013-03-08 17:00:37 -080056 enable_smi(EOS);
Aaron Durbin76c37002012-10-30 09:03:43 -050057}
58
59static void busmaster_disable_on_bus(int bus)
60{
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020061 int slot, func;
62 unsigned int val;
63 unsigned char hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -050064
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020065 for (slot = 0; slot < 0x20; slot++) {
66 for (func = 0; func < 8; func++) {
67 u32 reg32;
Elyes HAOUAS68c851b2018-06-12 22:06:09 +020068 pci_devfn_t dev = PCI_DEV(bus, slot, func);
Aaron Durbin76c37002012-10-30 09:03:43 -050069
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020070 val = pci_read_config32(dev, PCI_VENDOR_ID);
Aaron Durbin76c37002012-10-30 09:03:43 -050071
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020072 if (val == 0xffffffff || val == 0x00000000 ||
73 val == 0x0000ffff || val == 0xffff0000)
74 continue;
Aaron Durbin76c37002012-10-30 09:03:43 -050075
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020076 /* Disable Bus Mastering for this one device */
77 reg32 = pci_read_config32(dev, PCI_COMMAND);
78 reg32 &= ~PCI_COMMAND_MASTER;
79 pci_write_config32(dev, PCI_COMMAND, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -050080
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020081 /* If this is a bridge, then follow it. */
82 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
83 hdr &= 0x7f;
84 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
85 hdr == PCI_HEADER_TYPE_CARDBUS) {
86 unsigned int buses;
87 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
88 busmaster_disable_on_bus((buses >> 8) & 0xff);
89 }
90 }
91 }
Aaron Durbin76c37002012-10-30 09:03:43 -050092}
93
Duncan Laurie2d9d39a2013-05-29 15:27:55 -070094
Aaron Durbin29ffa542012-12-21 21:21:48 -060095static void southbridge_smi_sleep(void)
Aaron Durbin76c37002012-10-30 09:03:43 -050096{
97 u8 reg8;
98 u32 reg32;
99 u8 slp_typ;
Nico Huber9faae2b2018-11-14 00:00:35 +0100100 u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800101 u16 pmbase = get_pmbase();
Aaron Durbin76c37002012-10-30 09:03:43 -0500102
103 // save and recover RTC port values
104 u8 tmp70, tmp72;
105 tmp70 = inb(0x70);
106 tmp72 = inb(0x72);
107 get_option(&s5pwr, "power_on_after_fail");
108 outb(tmp70, 0x70);
109 outb(tmp72, 0x72);
110
Aaron Durbin76c37002012-10-30 09:03:43 -0500111 /* First, disable further SMIs */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800112 disable_smi(SLP_SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500113
114 /* Figure out SLP_TYP */
115 reg32 = inl(pmbase + PM1_CNT);
116 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Aaron Durbinda5f5092016-07-13 23:23:16 -0500117 slp_typ = acpi_sleep_from_pm1(reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500118
119 /* Do any mainboard sleep handling */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500120 mainboard_smi_sleep(slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500121
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700122 /* USB sleep preparations */
Julius Wernercd49cce2019-03-05 16:53:33 -0800123#if !CONFIG(FINALIZE_USB_ROUTE_XHCI)
Duncan Laurie1f529082013-07-30 15:53:45 -0700124 usb_ehci_sleep_prepare(PCH_EHCI1_DEV, slp_typ);
125 usb_ehci_sleep_prepare(PCH_EHCI2_DEV, slp_typ);
Duncan Laurie911cedf2013-07-30 16:05:55 -0700126#endif
Duncan Laurie1f529082013-07-30 15:53:45 -0700127 usb_xhci_sleep_prepare(PCH_XHCI_DEV, slp_typ);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700128
Aaron Durbin76c37002012-10-30 09:03:43 -0500129 /* Log S3, S4, and S5 entry */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500130 if (slp_typ >= ACPI_S3)
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200131 elog_gsmi_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
Aaron Durbin76c37002012-10-30 09:03:43 -0500132
133 /* Next, do the deed.
134 */
135
136 switch (slp_typ) {
Aaron Durbinda5f5092016-07-13 23:23:16 -0500137 case ACPI_S0:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800138 printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n");
139 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500140 case ACPI_S1:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800141 printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n");
142 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500143 case ACPI_S3:
Aaron Durbin76c37002012-10-30 09:03:43 -0500144 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
145
Aaron Durbin76c37002012-10-30 09:03:43 -0500146 /* Invalidate the cache before going to S3 */
147 wbinvd();
148 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500149 case ACPI_S4:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800150 printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n");
151 break;
Aaron Durbinda5f5092016-07-13 23:23:16 -0500152 case ACPI_S5:
Aaron Durbin76c37002012-10-30 09:03:43 -0500153 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
154
Duncan Laurie467f31d2013-03-08 17:00:37 -0800155 /* Disable all GPE */
156 disable_all_gpe();
Aaron Durbin76c37002012-10-30 09:03:43 -0500157
158 /* Always set the flag in case CMOS was changed on runtime. For
159 * "KEEP", switch to "OFF" - KEEP is software emulated
160 */
Aaron Durbin89f79a02012-10-31 23:05:25 -0500161 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
Aaron Durbin76c37002012-10-30 09:03:43 -0500162 if (s5pwr == MAINBOARD_POWER_ON) {
163 reg8 &= ~1;
164 } else {
165 reg8 |= 1;
166 }
Aaron Durbin89f79a02012-10-31 23:05:25 -0500167 pci_write_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3, reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500168
169 /* also iterates over all bridges on bus 0 */
170 busmaster_disable_on_bus(0);
171 break;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800172 default:
173 printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n");
174 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500175 }
176
177 /* Write back to the SLP register to cause the originally intended
178 * event again. We need to set BIT13 (SLP_EN) though to make the
179 * sleep happen.
180 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800181 enable_pm1_control(SLP_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500182
183 /* Make sure to stop executing code here for S3/S4/S5 */
Aaron Durbinda5f5092016-07-13 23:23:16 -0500184 if (slp_typ >= ACPI_S3)
Patrick Georgi546953c2014-11-29 10:38:17 +0100185 halt();
Aaron Durbin76c37002012-10-30 09:03:43 -0500186
187 /* In most sleep states, the code flow of this function ends at
188 * the line above. However, if we entered sleep state S1 and wake
189 * up again, we will continue to execute code in this function.
190 */
191 reg32 = inl(pmbase + PM1_CNT);
192 if (reg32 & SCI_EN) {
193 /* The OS is not an ACPI OS, so we set the state to S0 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800194 disable_pm1_control(SLP_EN | SLP_TYP);
Aaron Durbin76c37002012-10-30 09:03:43 -0500195 }
196}
197
198/*
199 * Look for Synchronous IO SMI and use save state from that
200 * core in case we are not running on the same core that
201 * initiated the IO transaction.
202 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500203static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
204{
205 em64t101_smm_state_save_area_t *state;
Aaron Durbin76c37002012-10-30 09:03:43 -0500206 int node;
207
208 /* Check all nodes looking for the one that issued the IO */
209 for (node = 0; node < CONFIG_MAX_CPUS; node++) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600210 state = smm_get_save_state(node);
Aaron Durbin76c37002012-10-30 09:03:43 -0500211
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200212 /* Check for Synchronous IO (bit0 == 1) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500213 if (!(state->io_misc_info & (1 << 0)))
214 continue;
215
Elyes HAOUAS581fe582018-04-26 09:57:07 +0200216 /* Make sure it was a write (bit4 == 0) */
Aaron Durbin76c37002012-10-30 09:03:43 -0500217 if (state->io_misc_info & (1 << 4))
218 continue;
219
220 /* Check for APMC IO port */
221 if (((state->io_misc_info >> 16) & 0xff) != APM_CNT)
222 continue;
223
224 /* Check AX against the requested command */
225 if ((state->rax & 0xff) != cmd)
226 continue;
227
228 return state;
229 }
230
231 return NULL;
232}
233
Aaron Durbin76c37002012-10-30 09:03:43 -0500234static void southbridge_smi_gsmi(void)
235{
236 u32 *ret, *param;
237 u8 sub_command;
238 em64t101_smm_state_save_area_t *io_smi =
Patrick Georgid61839c2018-12-03 16:10:33 +0100239 smi_apmc_find_state_save(APM_CNT_ELOG_GSMI);
Aaron Durbin76c37002012-10-30 09:03:43 -0500240
241 if (!io_smi)
242 return;
243
244 /* Command and return value in EAX */
245 ret = (u32*)&io_smi->rax;
246 sub_command = (u8)(*ret >> 8);
247
248 /* Parameter buffer in EBX */
249 param = (u32*)&io_smi->rbx;
250
251 /* drivers/elog/gsmi.c */
252 *ret = gsmi_exec(sub_command, param);
253}
Aaron Durbin76c37002012-10-30 09:03:43 -0500254
Matt DeVillier8187f112018-12-24 21:46:46 -0600255static void southbridge_smi_store(void)
256{
257 u8 sub_command, ret;
258 em64t101_smm_state_save_area_t *io_smi =
259 smi_apmc_find_state_save(APM_CNT_SMMSTORE);
260 uint32_t reg_ebx;
261
262 if (!io_smi)
263 return;
264 /* Command and return value in EAX */
265 sub_command = (io_smi->rax >> 8) & 0xff;
266
267 /* Parameter buffer in EBX */
268 reg_ebx = io_smi->rbx;
269
270 /* drivers/smmstore/smi.c */
271 ret = smmstore_exec(sub_command, (void *)reg_ebx);
272 io_smi->rax = ret;
273}
274
Aaron Durbin29ffa542012-12-21 21:21:48 -0600275static void southbridge_smi_apmc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500276{
Aaron Durbin76c37002012-10-30 09:03:43 -0500277 u8 reg8;
Aaron Durbin76c37002012-10-30 09:03:43 -0500278 em64t101_smm_state_save_area_t *state;
Tristan Corrick09fc6342018-11-30 22:53:01 +1300279 static int chipset_finalized = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500280
281 /* Emulate B2 register as the FADT / Linux expects it */
282
283 reg8 = inb(APM_CNT);
284 switch (reg8) {
Tristan Corrick09fc6342018-11-30 22:53:01 +1300285 case APM_CNT_FINALIZE:
286 if (chipset_finalized) {
287 printk(BIOS_DEBUG, "SMI#: Already finalized\n");
288 return;
289 }
290
Tristan Corrick63626b12018-11-30 22:53:50 +1300291 intel_me_finalize_smm();
Tristan Corrick09fc6342018-11-30 22:53:01 +1300292 intel_pch_finalize_smm();
293 intel_northbridge_haswell_finalize_smm();
294 intel_cpu_haswell_finalize_smm();
295
296 chipset_finalized = 1;
297 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500298 case APM_CNT_CST_CONTROL:
299 /* Calling this function seems to cause
300 * some kind of race condition in Linux
301 * and causes a kernel oops
302 */
303 printk(BIOS_DEBUG, "C-state control\n");
304 break;
305 case APM_CNT_PST_CONTROL:
306 /* Calling this function seems to cause
307 * some kind of race condition in Linux
308 * and causes a kernel oops
309 */
310 printk(BIOS_DEBUG, "P-state control\n");
311 break;
312 case APM_CNT_ACPI_DISABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800313 disable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500314 printk(BIOS_DEBUG, "SMI#: ACPI disabled.\n");
315 break;
316 case APM_CNT_ACPI_ENABLE:
Duncan Laurie467f31d2013-03-08 17:00:37 -0800317 enable_pm1_control(SCI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500318 printk(BIOS_DEBUG, "SMI#: ACPI enabled.\n");
319 break;
320 case APM_CNT_GNVS_UPDATE:
321 if (smm_initialized) {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800322 printk(BIOS_DEBUG,
323 "SMI#: SMM structures already initialized!\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500324 return;
325 }
326 state = smi_apmc_find_state_save(reg8);
327 if (state) {
328 /* EBX in the state save contains the GNVS pointer */
329 gnvs = (global_nvs_t *)((u32)state->rbx);
330 smm_initialized = 1;
331 printk(BIOS_DEBUG, "SMI#: Setting GNVS to %p\n", gnvs);
332 }
333 break;
Duncan Laurie78145a52013-08-21 13:16:21 -0700334 case 0xca:
Duncan Laurie911cedf2013-07-30 16:05:55 -0700335 usb_xhci_route_all();
Duncan Laurie911cedf2013-07-30 16:05:55 -0700336 break;
Patrick Georgid61839c2018-12-03 16:10:33 +0100337 case APM_CNT_ELOG_GSMI:
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200338 if (CONFIG(ELOG_GSMI))
339 southbridge_smi_gsmi();
Aaron Durbin76c37002012-10-30 09:03:43 -0500340 break;
Matt DeVillier8187f112018-12-24 21:46:46 -0600341 case APM_CNT_SMMSTORE:
342 if (CONFIG(SMMSTORE))
343 southbridge_smi_store();
344 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500345 }
346
Aaron Durbin29ffa542012-12-21 21:21:48 -0600347 mainboard_smi_apmc(reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500348}
349
Aaron Durbin29ffa542012-12-21 21:21:48 -0600350static void southbridge_smi_pm1(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500351{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800352 u16 pm1_sts = clear_pm1_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500353
354 /* While OSPM is not active, poweroff immediately
355 * on a power button event.
356 */
357 if (pm1_sts & PWRBTN_STS) {
358 // power button pressed
Kyösti Mälkki9dd1a122019-11-06 11:04:27 +0200359 elog_gsmi_add_event(ELOG_TYPE_POWER_BUTTON);
Duncan Laurie467f31d2013-03-08 17:00:37 -0800360 disable_pm1_control(-1UL);
361 enable_pm1_control(SLP_EN | (SLP_TYP_S5 << 10));
Aaron Durbin76c37002012-10-30 09:03:43 -0500362 }
363}
364
Aaron Durbin29ffa542012-12-21 21:21:48 -0600365static void southbridge_smi_gpe0(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500366{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800367 clear_gpe_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500368}
369
Aaron Durbin29ffa542012-12-21 21:21:48 -0600370static void southbridge_smi_gpi(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500371{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800372 mainboard_smi_gpi(clear_alt_smi_status());
Aaron Durbin76c37002012-10-30 09:03:43 -0500373
Duncan Laurie467f31d2013-03-08 17:00:37 -0800374 /* Clear again after mainboard handler */
375 clear_alt_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500376}
377
Aaron Durbin29ffa542012-12-21 21:21:48 -0600378static void southbridge_smi_mc(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500379{
380 u32 reg32;
381
Duncan Laurie467f31d2013-03-08 17:00:37 -0800382 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500383
Duncan Laurie467f31d2013-03-08 17:00:37 -0800384 /* Are microcontroller SMIs enabled? */
Aaron Durbin76c37002012-10-30 09:03:43 -0500385 if ((reg32 & MCSMI_EN) == 0)
386 return;
387
388 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
389}
390
391
392
Aaron Durbin29ffa542012-12-21 21:21:48 -0600393static void southbridge_smi_tco(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500394{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800395 u32 tco_sts = clear_tco_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500396
397 /* Any TCO event? */
398 if (!tco_sts)
399 return;
400
401 if (tco_sts & (1 << 8)) { // BIOSWR
402 u8 bios_cntl;
403
Aaron Durbin89f79a02012-10-31 23:05:25 -0500404 bios_cntl = pci_read_config16(PCI_DEV(0, 0x1f, 0), 0xdc);
Aaron Durbin76c37002012-10-30 09:03:43 -0500405
406 if (bios_cntl & 1) {
407 /* BWE is RW, so the SMI was caused by a
408 * write to BWE, not by a write to the BIOS
409 */
410
411 /* This is the place where we notice someone
412 * is trying to tinker with the BIOS. We are
413 * trying to be nice and just ignore it. A more
414 * resolute answer would be to power down the
415 * box.
416 */
417 printk(BIOS_DEBUG, "Switching back to RO\n");
Duncan Laurie467f31d2013-03-08 17:00:37 -0800418 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0xdc,
419 (bios_cntl & ~1));
Aaron Durbin76c37002012-10-30 09:03:43 -0500420 } /* No else for now? */
421 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
422 /* Handle TCO timeout */
423 printk(BIOS_DEBUG, "TCO Timeout.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500424 }
425}
426
Aaron Durbin29ffa542012-12-21 21:21:48 -0600427static void southbridge_smi_periodic(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500428{
429 u32 reg32;
430
Duncan Laurie467f31d2013-03-08 17:00:37 -0800431 reg32 = inl(get_pmbase() + SMI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -0500432
433 /* Are periodic SMIs enabled? */
434 if ((reg32 & PERIODIC_EN) == 0)
435 return;
436
437 printk(BIOS_DEBUG, "Periodic SMI.\n");
438}
439
Aaron Durbin29ffa542012-12-21 21:21:48 -0600440static void southbridge_smi_monitor(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500441{
442#define IOTRAP(x) (trap_sts & (1 << x))
443 u32 trap_sts, trap_cycle;
444 u32 data, mask = 0;
445 int i;
446
447 trap_sts = RCBA32(0x1e00); // TRSR - Trap Status Register
448 RCBA32(0x1e00) = trap_sts; // Clear trap(s) in TRSR
449
450 trap_cycle = RCBA32(0x1e10);
451 for (i=16; i<20; i++) {
452 if (trap_cycle & (1 << i))
453 mask |= (0xff << ((i - 16) << 2));
454 }
455
456
457 /* IOTRAP(3) SMI function call */
458 if (IOTRAP(3)) {
459 if (gnvs && gnvs->smif)
460 io_trap_handler(gnvs->smif); // call function smif
461 return;
462 }
463
464 /* IOTRAP(2) currently unused
465 * IOTRAP(1) currently unused */
466
467 /* IOTRAP(0) SMIC */
468 if (IOTRAP(0)) {
469 if (!(trap_cycle & (1 << 24))) { // It's a write
470 printk(BIOS_DEBUG, "SMI1 command\n");
471 data = RCBA32(0x1e18);
472 data &= mask;
473 // if (smi1)
Elyes HAOUASb0f19882018-06-09 11:59:00 +0200474 // southbridge_smi_command(data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500475 // return;
476 }
477 // Fall through to debug
478 }
479
Duncan Laurie467f31d2013-03-08 17:00:37 -0800480 printk(BIOS_DEBUG, " trapped io address = 0x%x\n",
481 trap_cycle & 0xfffc);
482 for (i=0; i < 4; i++)
Elyes HAOUASba28e8d2016-08-31 19:22:16 +0200483 if (IOTRAP(i)) printk(BIOS_DEBUG, " TRAP = %d\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500484 printk(BIOS_DEBUG, " AHBE = %x\n", (trap_cycle >> 16) & 0xf);
485 printk(BIOS_DEBUG, " MASK = 0x%08x\n", mask);
Duncan Laurie467f31d2013-03-08 17:00:37 -0800486 printk(BIOS_DEBUG, " read/write: %s\n",
487 (trap_cycle & (1 << 24)) ? "read" : "write");
Aaron Durbin76c37002012-10-30 09:03:43 -0500488
489 if (!(trap_cycle & (1 << 24))) {
490 /* Write Cycle */
491 data = RCBA32(0x1e18);
492 printk(BIOS_DEBUG, " iotrap written data = 0x%08x\n", data);
493 }
494#undef IOTRAP
495}
496
Aaron Durbin29ffa542012-12-21 21:21:48 -0600497typedef void (*smi_handler_t)(void);
Aaron Durbin76c37002012-10-30 09:03:43 -0500498
499static smi_handler_t southbridge_smi[32] = {
500 NULL, // [0] reserved
501 NULL, // [1] reserved
502 NULL, // [2] BIOS_STS
503 NULL, // [3] LEGACY_USB_STS
504 southbridge_smi_sleep, // [4] SLP_SMI_STS
505 southbridge_smi_apmc, // [5] APM_STS
506 NULL, // [6] SWSMI_TMR_STS
507 NULL, // [7] reserved
508 southbridge_smi_pm1, // [8] PM1_STS
509 southbridge_smi_gpe0, // [9] GPE0_STS
510 southbridge_smi_gpi, // [10] GPI_STS
511 southbridge_smi_mc, // [11] MCSMI_STS
512 NULL, // [12] DEVMON_STS
513 southbridge_smi_tco, // [13] TCO_STS
514 southbridge_smi_periodic, // [14] PERIODIC_STS
515 NULL, // [15] SERIRQ_SMI_STS
516 NULL, // [16] SMBUS_SMI_STS
517 NULL, // [17] LEGACY_USB2_STS
518 NULL, // [18] INTEL_USB2_STS
519 NULL, // [19] reserved
520 NULL, // [20] PCI_EXP_SMI_STS
521 southbridge_smi_monitor, // [21] MONITOR_STS
522 NULL, // [22] reserved
523 NULL, // [23] reserved
524 NULL, // [24] reserved
525 NULL, // [25] EL_SMI_STS
526 NULL, // [26] SPI_STS
527 NULL, // [27] reserved
528 NULL, // [28] reserved
529 NULL, // [29] reserved
530 NULL, // [30] reserved
531 NULL // [31] reserved
532};
533
534/**
535 * @brief Interrupt handler for SMI#
Aaron Durbin76c37002012-10-30 09:03:43 -0500536 */
Aaron Durbin29ffa542012-12-21 21:21:48 -0600537void southbridge_smi_handler(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500538{
Duncan Laurie467f31d2013-03-08 17:00:37 -0800539 int i;
Aaron Durbin76c37002012-10-30 09:03:43 -0500540 u32 smi_sts;
541
Aaron Durbin76c37002012-10-30 09:03:43 -0500542 /* We need to clear the SMI status registers, or we won't see what's
543 * happening in the following calls.
544 */
Duncan Laurie467f31d2013-03-08 17:00:37 -0800545 smi_sts = clear_smi_status();
Aaron Durbin76c37002012-10-30 09:03:43 -0500546
547 /* Call SMI sub handler for each of the status bits */
548 for (i = 0; i < 31; i++) {
549 if (smi_sts & (1 << i)) {
550 if (southbridge_smi[i]) {
Aaron Durbin29ffa542012-12-21 21:21:48 -0600551 southbridge_smi[i]();
Aaron Durbin76c37002012-10-30 09:03:43 -0500552 } else {
Duncan Laurie467f31d2013-03-08 17:00:37 -0800553 printk(BIOS_DEBUG,
Martin Roth2ed0aa22016-01-05 20:58:58 -0700554 "SMI_STS[%d] occurred, but no "
Duncan Laurie467f31d2013-03-08 17:00:37 -0800555 "handler available.\n", i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500556 }
557 }
558 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500559}