blob: 5470890d26cf87b5a46d5a639e643e40d0bfdb65 [file] [log] [blame]
Stefan Reinauer800379f2010-03-01 08:34:19 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22#include <types.h>
23#include <arch/io.h>
Stefan Reinauer800379f2010-03-01 08:34:19 +000024#include <console/console.h>
25#include <cpu/x86/cache.h>
26#include <cpu/x86/smm.h>
27#include <device/pci_def.h>
28#include "i82801dx.h"
29
30#define DEBUG_SMI
31
Stefan Reinauer800379f2010-03-01 08:34:19 +000032/* I830M */
33#define SMRAM 0x90
34#define D_OPEN (1 << 6)
35#define D_CLS (1 << 5)
36#define D_LCK (1 << 4)
37#define G_SMRANE (1 << 3)
38#define C_BASE_SEG ((0 << 2) | (1 << 1) | (0 << 0))
39
stepan836ae292010-12-08 05:42:47 +000040#include "nvs.h"
Stefan Reinauer800379f2010-03-01 08:34:19 +000041
42/* While we read PMBASE dynamically in case it changed, let's
43 * initialize it with a sane value
44 */
45u16 pmbase = PMBASE_ADDR;
46u8 smm_initialized = 0;
47
48unsigned char *mbi = NULL;
49u32 mbi_len;
50u8 mbi_initialized = 0;
51
52/* GNVS needs to be updated by an 0xEA PM Trap (B2) after it has been located
53 * by coreboot.
54 */
55global_nvs_t *gnvs = (global_nvs_t *)0x0;
56void *tcg = (void *)0x0;
57void *smi1 = (void *)0x0;
58
59/**
60 * @brief read and clear PM1_STS
61 * @return PM1_STS register
62 */
63static u16 reset_pm1_status(void)
64{
65 u16 reg16;
66
67 reg16 = inw(pmbase + PM1_STS);
68 /* set status bits are cleared by writing 1 to them */
69 outw(reg16, pmbase + PM1_STS);
70
71 return reg16;
72}
73
74static void dump_pm1_status(u16 pm1_sts)
75{
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000076 printk(BIOS_SPEW, "PM1_STS: ");
77 if (pm1_sts & (1 << 15)) printk(BIOS_SPEW, "WAK ");
78 if (pm1_sts & (1 << 14)) printk(BIOS_SPEW, "PCIEXPWAK ");
79 if (pm1_sts & (1 << 11)) printk(BIOS_SPEW, "PRBTNOR ");
80 if (pm1_sts & (1 << 10)) printk(BIOS_SPEW, "RTC ");
81 if (pm1_sts & (1 << 8)) printk(BIOS_SPEW, "PWRBTN ");
82 if (pm1_sts & (1 << 5)) printk(BIOS_SPEW, "GBL ");
83 if (pm1_sts & (1 << 4)) printk(BIOS_SPEW, "BM ");
84 if (pm1_sts & (1 << 0)) printk(BIOS_SPEW, "TMROF ");
85 printk(BIOS_SPEW, "\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +000086 int reg16 = inw(pmbase + PM1_EN);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000087 printk(BIOS_SPEW, "PM1_EN: %x\n", reg16);
Stefan Reinauer800379f2010-03-01 08:34:19 +000088}
89
90/**
91 * @brief read and clear SMI_STS
92 * @return SMI_STS register
93 */
94static u32 reset_smi_status(void)
95{
96 u32 reg32;
97
98 reg32 = inl(pmbase + SMI_STS);
99 /* set status bits are cleared by writing 1 to them */
100 outl(reg32, pmbase + SMI_STS);
101
102 return reg32;
103}
104
105static void dump_smi_status(u32 smi_sts)
106{
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000107 printk(BIOS_DEBUG, "SMI_STS: ");
108 if (smi_sts & (1 << 26)) printk(BIOS_DEBUG, "SPI ");
109 if (smi_sts & (1 << 25)) printk(BIOS_DEBUG, "EL_SMI ");
110 if (smi_sts & (1 << 21)) printk(BIOS_DEBUG, "MONITOR ");
111 if (smi_sts & (1 << 20)) printk(BIOS_DEBUG, "PCI_EXP_SMI ");
112 if (smi_sts & (1 << 18)) printk(BIOS_DEBUG, "INTEL_USB2 ");
113 if (smi_sts & (1 << 17)) printk(BIOS_DEBUG, "LEGACY_USB2 ");
114 if (smi_sts & (1 << 16)) printk(BIOS_DEBUG, "SMBUS_SMI ");
115 if (smi_sts & (1 << 15)) printk(BIOS_DEBUG, "SERIRQ_SMI ");
116 if (smi_sts & (1 << 14)) printk(BIOS_DEBUG, "PERIODIC ");
117 if (smi_sts & (1 << 13)) printk(BIOS_DEBUG, "TCO ");
118 if (smi_sts & (1 << 12)) printk(BIOS_DEBUG, "DEVMON ");
119 if (smi_sts & (1 << 11)) printk(BIOS_DEBUG, "MCSMI ");
120 if (smi_sts & (1 << 10)) printk(BIOS_DEBUG, "GPI ");
121 if (smi_sts & (1 << 9)) printk(BIOS_DEBUG, "GPE0 ");
122 if (smi_sts & (1 << 8)) printk(BIOS_DEBUG, "PM1 ");
123 if (smi_sts & (1 << 6)) printk(BIOS_DEBUG, "SWSMI_TMR ");
124 if (smi_sts & (1 << 5)) printk(BIOS_DEBUG, "APM ");
125 if (smi_sts & (1 << 4)) printk(BIOS_DEBUG, "SLP_SMI ");
126 if (smi_sts & (1 << 3)) printk(BIOS_DEBUG, "LEGACY_USB ");
127 if (smi_sts & (1 << 2)) printk(BIOS_DEBUG, "BIOS ");
128 printk(BIOS_DEBUG, "\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000129}
130
131
132/**
133 * @brief read and clear GPE0_STS
134 * @return GPE0_STS register
135 */
136static u32 reset_gpe0_status(void)
137{
138 u32 reg32;
139
140 reg32 = inl(pmbase + GPE0_STS);
141 /* set status bits are cleared by writing 1 to them */
142 outl(reg32, pmbase + GPE0_STS);
143
144 return reg32;
145}
146
147static void dump_gpe0_status(u32 gpe0_sts)
148{
149 int i;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000150 printk(BIOS_DEBUG, "GPE0_STS: ");
Konstantin Aladyshev62f80832013-03-07 04:04:27 +0400151 for (i=31; i>= 16; i--) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000152 if (gpe0_sts & (1 << i)) printk(BIOS_DEBUG, "GPIO%d ", (i-16));
Stefan Reinauer800379f2010-03-01 08:34:19 +0000153 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000154 if (gpe0_sts & (1 << 14)) printk(BIOS_DEBUG, "USB4 ");
155 if (gpe0_sts & (1 << 13)) printk(BIOS_DEBUG, "PME_B0 ");
156 if (gpe0_sts & (1 << 12)) printk(BIOS_DEBUG, "USB3 ");
157 if (gpe0_sts & (1 << 11)) printk(BIOS_DEBUG, "PME ");
158 if (gpe0_sts & (1 << 10)) printk(BIOS_DEBUG, "EL_SCI/BATLOW ");
159 if (gpe0_sts & (1 << 9)) printk(BIOS_DEBUG, "PCI_EXP ");
160 if (gpe0_sts & (1 << 8)) printk(BIOS_DEBUG, "RI ");
161 if (gpe0_sts & (1 << 7)) printk(BIOS_DEBUG, "SMB_WAK ");
162 if (gpe0_sts & (1 << 6)) printk(BIOS_DEBUG, "TCO_SCI ");
163 if (gpe0_sts & (1 << 5)) printk(BIOS_DEBUG, "AC97 ");
164 if (gpe0_sts & (1 << 4)) printk(BIOS_DEBUG, "USB2 ");
165 if (gpe0_sts & (1 << 3)) printk(BIOS_DEBUG, "USB1 ");
166 if (gpe0_sts & (1 << 2)) printk(BIOS_DEBUG, "HOT_PLUG ");
167 if (gpe0_sts & (1 << 0)) printk(BIOS_DEBUG, "THRM ");
168 printk(BIOS_DEBUG, "\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000169}
170
171
172/**
173 * @brief read and clear TCOx_STS
174 * @return TCOx_STS registers
175 */
176static u32 reset_tco_status(void)
177{
178 u32 tcobase = pmbase + 0x60;
179 u32 reg32;
180
181 reg32 = inl(tcobase + 0x04);
182 /* set status bits are cleared by writing 1 to them */
183 outl(reg32 & ~(1<<18), tcobase + 0x04); // Don't clear BOOT_STS before SECOND_TO_STS
184 if (reg32 & (1 << 18))
185 outl(reg32 & (1<<18), tcobase + 0x04); // clear BOOT_STS
186
187 return reg32;
188}
189
190
191static void dump_tco_status(u32 tco_sts)
192{
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000193 printk(BIOS_DEBUG, "TCO_STS: ");
194 if (tco_sts & (1 << 20)) printk(BIOS_DEBUG, "SMLINK_SLV ");
195 if (tco_sts & (1 << 18)) printk(BIOS_DEBUG, "BOOT ");
196 if (tco_sts & (1 << 17)) printk(BIOS_DEBUG, "SECOND_TO ");
197 if (tco_sts & (1 << 16)) printk(BIOS_DEBUG, "INTRD_DET ");
198 if (tco_sts & (1 << 12)) printk(BIOS_DEBUG, "DMISERR ");
199 if (tco_sts & (1 << 10)) printk(BIOS_DEBUG, "DMISMI ");
200 if (tco_sts & (1 << 9)) printk(BIOS_DEBUG, "DMISCI ");
201 if (tco_sts & (1 << 8)) printk(BIOS_DEBUG, "BIOSWR ");
202 if (tco_sts & (1 << 7)) printk(BIOS_DEBUG, "NEWCENTURY ");
203 if (tco_sts & (1 << 3)) printk(BIOS_DEBUG, "TIMEOUT ");
204 if (tco_sts & (1 << 2)) printk(BIOS_DEBUG, "TCO_INT ");
205 if (tco_sts & (1 << 1)) printk(BIOS_DEBUG, "SW_TCO ");
206 if (tco_sts & (1 << 0)) printk(BIOS_DEBUG, "NMI2SMI ");
207 printk(BIOS_DEBUG, "\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000208}
209
210/* We are using PCIe accesses for now
211 * 1. the chipset can do it
212 * 2. we don't need to worry about how we leave 0xcf8/0xcfc behind
213 */
214// #include "../../../northbridge/intel/i945/pcie_config.c"
215
216int southbridge_io_trap_handler(int smif)
217{
218 switch (smif) {
219 case 0x32:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000220 printk(BIOS_DEBUG, "OS Init\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000221 /* gnvs->smif:
222 * On success, the IO Trap Handler returns 0
223 * On failure, the IO Trap Handler returns a value != 0
224 */
225 gnvs->smif = 0;
226 return 1; /* IO trap handled */
227 }
228
229 /* Not handled */
230 return 0;
231}
232
233/**
234 * @brief Set the EOS bit
235 */
236void southbridge_smi_set_eos(void)
237{
238 u8 reg8;
239
240 reg8 = inb(pmbase + SMI_EN);
241 reg8 |= EOS;
242 outb(reg8, pmbase + SMI_EN);
243}
244
245static void busmaster_disable_on_bus(int bus)
246{
247 int slot, func;
248 unsigned int val;
249 unsigned char hdr;
250
251 for (slot = 0; slot < 0x20; slot++) {
252 for (func = 0; func < 8; func++) {
253 u32 reg32;
254 device_t dev = PCI_DEV(bus, slot, func);
255
256 val = pci_read_config32(dev, PCI_VENDOR_ID);
257
258 if (val == 0xffffffff || val == 0x00000000 ||
259 val == 0x0000ffff || val == 0xffff0000)
260 continue;
261
262 /* Disable Bus Mastering for this one device */
263 reg32 = pci_read_config32(dev, PCI_COMMAND);
264 reg32 &= ~PCI_COMMAND_MASTER;
265 pci_write_config32(dev, PCI_COMMAND, reg32);
266
267 /* If this is a bridge, then follow it. */
268 hdr = pci_read_config8(dev, PCI_HEADER_TYPE);
269 hdr &= 0x7f;
270 if (hdr == PCI_HEADER_TYPE_BRIDGE ||
271 hdr == PCI_HEADER_TYPE_CARDBUS) {
272 unsigned int buses;
273 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
274 busmaster_disable_on_bus((buses >> 8) & 0xff);
275 }
276 }
277 }
278}
279
280
281static void southbridge_smi_sleep(unsigned int node, smm_state_save_area_t *state_save)
282{
283 u8 reg8;
284 u32 reg32;
285 u8 slp_typ;
286 /* FIXME: the power state on boot should be read from
287 * CMOS or even better from GNVS. Right now it's hard
288 * coded at compile time.
289 */
290 u8 s5pwr = CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
291
292 /* First, disable further SMIs */
293 reg8 = inb(pmbase + SMI_EN);
294 reg8 &= ~SLP_SMI_EN;
295 outb(reg8, pmbase + SMI_EN);
296
297 /* Figure out SLP_TYP */
298 reg32 = inl(pmbase + PM1_CNT);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000299 printk(BIOS_SPEW, "SMI#: SLP = 0x%08x\n", reg32);
Stefan Reinauer800379f2010-03-01 08:34:19 +0000300 slp_typ = (reg32 >> 10) & 7;
301
302 /* Next, do the deed.
303 */
304
305 switch (slp_typ) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000306 case 0: printk(BIOS_DEBUG, "SMI#: Entering S0 (On)\n"); break;
307 case 1: printk(BIOS_DEBUG, "SMI#: Entering S1 (Assert STPCLK#)\n"); break;
Stefan Reinauer800379f2010-03-01 08:34:19 +0000308 case 5:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000309 printk(BIOS_DEBUG, "SMI#: Entering S3 (Suspend-To-RAM)\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000310 /* Invalidate the cache before going to S3 */
311 wbinvd();
312 break;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000313 case 6: printk(BIOS_DEBUG, "SMI#: Entering S4 (Suspend-To-Disk)\n"); break;
Stefan Reinauer800379f2010-03-01 08:34:19 +0000314 case 7:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000315 printk(BIOS_DEBUG, "SMI#: Entering S5 (Soft Power off)\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000316
317 outl(0, pmbase + GPE0_EN);
318
319 /* Should we keep the power state after a power loss?
320 * In case the setting is "ON" or "OFF" we don't have
321 * to do anything. But if it's "KEEP" we have to switch
322 * to "OFF" before entering S5.
323 */
324 if (s5pwr == MAINBOARD_POWER_KEEP) {
325 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
326 reg8 |= 1;
327 pci_write_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3, reg8);
328 }
329
330 /* also iterates over all bridges on bus 0 */
331 busmaster_disable_on_bus(0);
332 break;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000333 default: printk(BIOS_DEBUG, "SMI#: ERROR: SLP_TYP reserved\n"); break;
Stefan Reinauer800379f2010-03-01 08:34:19 +0000334 }
335
336 /* Write back to the SLP register to cause the originally intended
337 * event again. We need to set BIT13 (SLP_EN) though to make the
338 * sleep happen.
339 */
340 outl(reg32 | SLP_EN, pmbase + PM1_CNT);
341
342 /* In most sleep states, the code flow of this function ends at
343 * the line above. However, if we entered sleep state S1 and wake
344 * up again, we will continue to execute code in this function.
345 */
346 reg32 = inl(pmbase + PM1_CNT);
347 if (reg32 & SCI_EN) {
348 /* The OS is not an ACPI OS, so we set the state to S0 */
349 reg32 &= ~(SLP_EN | SLP_TYP);
350 outl(reg32, pmbase + PM1_CNT);
351 }
352}
353
354static void southbridge_smi_apmc(unsigned int node, smm_state_save_area_t *state_save)
355{
356 u32 pmctrl;
357 u8 reg8;
358
359 /* Emulate B2 register as the FADT / Linux expects it */
360
361 reg8 = inb(APM_CNT);
362 switch (reg8) {
Sven Schnellef4dc1a72011-06-05 11:33:41 +0200363 case APM_CNT_CST_CONTROL:
Stefan Reinauer800379f2010-03-01 08:34:19 +0000364 /* Calling this function seems to cause
365 * some kind of race condition in Linux
366 * and causes a kernel oops
367 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000368 printk(BIOS_DEBUG, "C-state control\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000369 break;
Sven Schnellef4dc1a72011-06-05 11:33:41 +0200370 case APM_CNT_PST_CONTROL:
Stefan Reinauer800379f2010-03-01 08:34:19 +0000371 /* Calling this function seems to cause
372 * some kind of race condition in Linux
373 * and causes a kernel oops
374 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000375 printk(BIOS_DEBUG, "P-state control\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000376 break;
Sven Schnellef4dc1a72011-06-05 11:33:41 +0200377 case APM_CNT_ACPI_DISABLE:
Stefan Reinauer800379f2010-03-01 08:34:19 +0000378 pmctrl = inl(pmbase + PM1_CNT);
379 pmctrl &= ~SCI_EN;
380 outl(pmctrl, pmbase + PM1_CNT);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000381 printk(BIOS_DEBUG, "SMI#: ACPI disabled.\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000382 break;
Sven Schnellef4dc1a72011-06-05 11:33:41 +0200383 case APM_CNT_ACPI_ENABLE:
Stefan Reinauer800379f2010-03-01 08:34:19 +0000384 pmctrl = inl(pmbase + PM1_CNT);
385 pmctrl |= SCI_EN;
386 outl(pmctrl, pmbase + PM1_CNT);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000387 printk(BIOS_DEBUG, "SMI#: ACPI enabled.\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000388 break;
Sven Schnellef4dc1a72011-06-05 11:33:41 +0200389 case APM_CNT_GNVS_UPDATE:
Stefan Reinauer800379f2010-03-01 08:34:19 +0000390 if (smm_initialized) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000391 printk(BIOS_DEBUG, "SMI#: SMM structures already initialized!\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000392 return;
393 }
394 gnvs = *(global_nvs_t **)0x500;
395 tcg = *(void **)0x504;
396 smi1 = *(void **)0x508;
397 smm_initialized = 1;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000398 printk(BIOS_DEBUG, "SMI#: Setting up structures to %p, %p, %p\n", gnvs, tcg, smi1);
Stefan Reinauer800379f2010-03-01 08:34:19 +0000399 break;
Sven Schnellef4dc1a72011-06-05 11:33:41 +0200400 case APM_CNT_MBI_UPDATE: // FIXME
Stefan Reinauer800379f2010-03-01 08:34:19 +0000401 if (mbi_initialized) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000402 printk(BIOS_DEBUG, "SMI#: mbi already registered!\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000403 return;
404 }
405 mbi = *(void **)0x500;
406 mbi_len = *(u32 *)0x504;
407 mbi_initialized = 1;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000408 printk(BIOS_DEBUG, "SMI#: Registered MBI at %p (%d bytes)\n", mbi, mbi_len);
Stefan Reinauer800379f2010-03-01 08:34:19 +0000409 break;
410
411 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000412 printk(BIOS_DEBUG, "SMI#: Unknown function APM_CNT=%02x\n", reg8);
Stefan Reinauer800379f2010-03-01 08:34:19 +0000413 }
414}
415
416static void southbridge_smi_pm1(unsigned int node, smm_state_save_area_t *state_save)
417{
418 u16 pm1_sts;
419
420 pm1_sts = reset_pm1_status();
421 dump_pm1_status(pm1_sts);
422
423 /* While OSPM is not active, poweroff immediately
424 * on a power button event.
425 */
426 if (pm1_sts & PWRBTN_STS) {
427 // power button pressed
428 u32 reg32;
429 reg32 = (7 << 10) | (1 << 13);
430 outl(reg32, pmbase + PM1_CNT);
431 }
432}
433
434static void southbridge_smi_gpe0(unsigned int node, smm_state_save_area_t *state_save)
435{
436 u32 gpe0_sts;
437
438 gpe0_sts = reset_gpe0_status();
439 dump_gpe0_status(gpe0_sts);
440}
441
Stefan Reinauer800379f2010-03-01 08:34:19 +0000442static void southbridge_smi_gpi(unsigned int node, smm_state_save_area_t *state_save)
443{
444 u16 reg16;
445 reg16 = inw(pmbase + ALT_GP_SMI_STS);
446 outl(reg16, pmbase + ALT_GP_SMI_STS);
447
448 reg16 &= inw(pmbase + ALT_GP_SMI_EN);
449
450 if (mainboard_smi_gpi) {
451 mainboard_smi_gpi(reg16);
452 } else {
453 if (reg16)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000454 printk(BIOS_DEBUG, "GPI (mask %04x)\n",reg16);
Stefan Reinauer800379f2010-03-01 08:34:19 +0000455 }
456}
457
458static void southbridge_smi_mc(unsigned int node, smm_state_save_area_t *state_save)
459{
460 u32 reg32;
461
462 reg32 = inl(pmbase + SMI_EN);
463
464 /* Are periodic SMIs enabled? */
465 if ((reg32 & MCSMI_EN) == 0)
466 return;
467
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000468 printk(BIOS_DEBUG, "Microcontroller SMI.\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000469}
470
471
472
473static void southbridge_smi_tco(unsigned int node, smm_state_save_area_t *state_save)
474{
475 u32 tco_sts;
476
477 tco_sts = reset_tco_status();
478
479 /* Any TCO event? */
480 if (!tco_sts)
481 return;
482
483 if (tco_sts & (1 << 8)) { // BIOSWR
484 u8 bios_cntl;
485
486 bios_cntl = pci_read_config16(PCI_DEV(0, 0x1f, 0), 0xdc);
487
488 if (bios_cntl & 1) {
489 /* BWE is RW, so the SMI was caused by a
490 * write to BWE, not by a write to the BIOS
491 */
492
493 /* This is the place where we notice someone
494 * is trying to tinker with the BIOS. We are
495 * trying to be nice and just ignore it. A more
496 * resolute answer would be to power down the
497 * box.
498 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000499 printk(BIOS_DEBUG, "Switching back to RO\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000500 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0xdc, (bios_cntl & ~1));
501 } /* No else for now? */
502 } else if (tco_sts & (1 << 3)) { /* TIMEOUT */
503 /* Handle TCO timeout */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000504 printk(BIOS_DEBUG, "TCO Timeout.\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000505 } else if (!tco_sts) {
506 dump_tco_status(tco_sts);
507 }
508}
509
510static void southbridge_smi_periodic(unsigned int node, smm_state_save_area_t *state_save)
511{
512 u32 reg32;
513
514 reg32 = inl(pmbase + SMI_EN);
515
516 /* Are periodic SMIs enabled? */
517 if ((reg32 & PERIODIC_EN) == 0)
518 return;
519
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000520 printk(BIOS_DEBUG, "Periodic SMI.\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000521}
522
523static void southbridge_smi_monitor(unsigned int node, smm_state_save_area_t *state_save)
524{
525#define IOTRAP(x) (trap_sts & (1 << x))
526#if 0
527 u32 trap_sts, trap_cycle;
528 u32 data, mask = 0;
529 int i;
530
531 trap_sts = RCBA32(0x1e00); // TRSR - Trap Status Register
532 RCBA32(0x1e00) = trap_sts; // Clear trap(s) in TRSR
533
534 trap_cycle = RCBA32(0x1e10);
535 for (i=16; i<20; i++) {
536 if (trap_cycle & (1 << i))
537 mask |= (0xff << ((i - 16) << 2));
538 }
539
540
541 /* IOTRAP(3) SMI function call */
542 if (IOTRAP(3)) {
543 if (gnvs && gnvs->smif)
544 io_trap_handler(gnvs->smif); // call function smif
545 return;
546 }
547
548 /* IOTRAP(2) currently unused
549 * IOTRAP(1) currently unused */
550
551 /* IOTRAP(0) SMIC */
552 if (IOTRAP(0)) {
553 if (!(trap_cycle & (1 << 24))) { // It's a write
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000554 printk(BIOS_DEBUG, "SMI1 command\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000555 data = RCBA32(0x1e18);
556 data &= mask;
557 // if (smi1)
558 // southbridge_smi_command(data);
559 // return;
560 }
561 // Fall through to debug
562 }
563
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000564 printk(BIOS_DEBUG, " trapped io address = 0x%x\n", trap_cycle & 0xfffc);
565 for (i=0; i < 4; i++) if(IOTRAP(i)) printk(BIOS_DEBUG, " TRAPĀ = %d\n", i);
566 printk(BIOS_DEBUG, " AHBE = %x\n", (trap_cycle >> 16) & 0xf);
567 printk(BIOS_DEBUG, " MASK = 0x%08x\n", mask);
568 printk(BIOS_DEBUG, " read/write: %s\n", (trap_cycle & (1 << 24)) ? "read" : "write");
Stefan Reinauer800379f2010-03-01 08:34:19 +0000569
570 if (!(trap_cycle & (1 << 24))) {
571 /* Write Cycle */
572 data = RCBA32(0x1e18);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000573 printk(BIOS_DEBUG, " iotrap written data = 0x%08x\n", data);
Stefan Reinauer800379f2010-03-01 08:34:19 +0000574 }
575#endif
576#undef IOTRAP
577}
578
Stefan Reinauer348a1ba2010-03-17 01:51:11 +0000579typedef void (*smi_handler_t)(unsigned int node,
Stefan Reinauer800379f2010-03-01 08:34:19 +0000580 smm_state_save_area_t *state_save);
581
Stefan Reinauer348a1ba2010-03-17 01:51:11 +0000582smi_handler_t southbridge_smi[32] = {
Stefan Reinauer800379f2010-03-01 08:34:19 +0000583 NULL, // [0] reserved
584 NULL, // [1] reserved
585 NULL, // [2] BIOS_STS
586 NULL, // [3] LEGACY_USB_STS
587 southbridge_smi_sleep, // [4] SLP_SMI_STS
588 southbridge_smi_apmc, // [5] APM_STS
589 NULL, // [6] SWSMI_TMR_STS
590 NULL, // [7] reserved
591 southbridge_smi_pm1, // [8] PM1_STS
592 southbridge_smi_gpe0, // [9] GPE0_STS
593 southbridge_smi_gpi, // [10] GPI_STS
594 southbridge_smi_mc, // [11] MCSMI_STS
595 NULL, // [12] DEVMON_STS
596 southbridge_smi_tco, // [13] TCO_STS
597 southbridge_smi_periodic, // [14] PERIODIC_STS
598 NULL, // [15] SERIRQ_SMI_STS
599 NULL, // [16] SMBUS_SMI_STS
600 NULL, // [17] LEGACY_USB2_STS
601 NULL, // [18] INTEL_USB2_STS
602 NULL, // [19] reserved
603 NULL, // [20] PCI_EXP_SMI_STS
604 southbridge_smi_monitor, // [21] MONITOR_STS
605 NULL, // [22] reserved
606 NULL, // [23] reserved
607 NULL, // [24] reserved
608 NULL, // [25] EL_SMI_STS
609 NULL, // [26] SPI_STS
610 NULL, // [27] reserved
611 NULL, // [28] reserved
612 NULL, // [29] reserved
613 NULL, // [30] reserved
614 NULL // [31] reserved
615};
616
617/**
618 * @brief Interrupt handler for SMI#
619 *
620 * @param smm_revision revision of the smm state save map
621 */
622
623void southbridge_smi_handler(unsigned int node, smm_state_save_area_t *state_save)
624{
625 int i, dump = 0;
626 u32 smi_sts;
627
628 /* Update global variable pmbase */
629 pmbase = pci_read_config16(PCI_DEV(0, 0x1f, 0), 0x40) & 0xfffc;
630
631 /* We need to clear the SMI status registers, or we won't see what's
632 * happening in the following calls.
633 */
634 smi_sts = reset_smi_status();
635
636 /* Filter all non-enabled SMI events */
637 // FIXME Double check, this clears MONITOR
638 // smi_sts &= inl(pmbase + SMI_EN);
639
640 /* Call SMI sub handler for each of the status bits */
641 for (i = 0; i < 31; i++) {
642 if (smi_sts & (1 << i)) {
643 if (southbridge_smi[i])
644 southbridge_smi[i](node, state_save);
645 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000646 printk(BIOS_DEBUG, "SMI_STS[%d] occured, but no "
Stefan Reinauer800379f2010-03-01 08:34:19 +0000647 "handler available.\n", i);
648 dump = 1;
649 }
650 }
651 }
652
653 if(dump) {
654 dump_smi_status(smi_sts);
655 }
656
657}