blob: c631da9394096cdee8fa1b22b1eb0d9d381533ad [file] [log] [blame]
Arthur Heymans7b9c1392017-04-09 20:40:39 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * 2012 secunet Security Networks AG
6 *
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.
16 */
17
18#include <console/console.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
22#include <pc80/mc146818rtc.h>
23#include <pc80/isa-dma.h>
24#include <pc80/i8259.h>
25#include <arch/io.h>
26#include <arch/ioapic.h>
27#include <arch/acpi.h>
28#include <cpu/cpu.h>
29#include <cpu/x86/smm.h>
30#include <arch/acpigen.h>
Arthur Heymansad501492017-04-12 00:15:39 +020031#include <arch/smp/mpspec.h>
Arthur Heymans7b9c1392017-04-09 20:40:39 +020032#include <cbmem.h>
33#include <string.h>
Arthur Heymans349e0852017-04-09 20:48:37 +020034#include "i82801jx.h"
Arthur Heymans7b9c1392017-04-09 20:40:39 +020035#include "nvs.h"
36#include <southbridge/intel/common/pciehp.h>
37#include <drivers/intel/gma/i915.h>
38
39#define NMI_OFF 0
40
41#define ENABLE_ACPI_MODE_IN_COREBOOT 0
42#define TEST_SMM_FLASH_LOCKDOWN 0
43
Arthur Heymans349e0852017-04-09 20:48:37 +020044typedef struct southbridge_intel_i82801jx_config config_t;
Arthur Heymans7b9c1392017-04-09 20:40:39 +020045
Arthur Heymans349e0852017-04-09 20:48:37 +020046static void i82801jx_enable_apic(struct device *dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +020047{
48 u32 reg32;
49 volatile u32 *ioapic_index = (volatile u32 *)(IO_APIC_ADDR);
50 volatile u32 *ioapic_data = (volatile u32 *)(IO_APIC_ADDR + 0x10);
51
52 /* Enable IOAPIC. Keep APIC Range Select at zero. */
53 RCBA8(0x31ff) = 0x03;
54 /* We have to read 0x31ff back if bit0 changed. */
55 RCBA8(0x31ff);
56
57 /* Lock maximum redirection entries (MRE), R/WO register. */
58 *ioapic_index = 0x01;
59 reg32 = *ioapic_data;
60 *ioapic_index = 0x01;
61 *ioapic_data = reg32;
62
63 setup_ioapic(VIO_APIC_VADDR, 2); /* ICH7 code uses id 2. */
64}
65
Arthur Heymans349e0852017-04-09 20:48:37 +020066static void i82801jx_enable_serial_irqs(struct device *dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +020067{
68 /* Set packet length and toggle silent mode bit for one frame. */
69 pci_write_config8(dev, D31F0_SERIRQ_CNTL,
70 (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
71}
72
73/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
74 * 0x00 - 0000 = Reserved
75 * 0x01 - 0001 = Reserved
76 * 0x02 - 0010 = Reserved
77 * 0x03 - 0011 = IRQ3
78 * 0x04 - 0100 = IRQ4
79 * 0x05 - 0101 = IRQ5
80 * 0x06 - 0110 = IRQ6
81 * 0x07 - 0111 = IRQ7
82 * 0x08 - 1000 = Reserved
83 * 0x09 - 1001 = IRQ9
84 * 0x0A - 1010 = IRQ10
85 * 0x0B - 1011 = IRQ11
86 * 0x0C - 1100 = IRQ12
87 * 0x0D - 1101 = Reserved
88 * 0x0E - 1110 = IRQ14
89 * 0x0F - 1111 = IRQ15
90 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
91 * 0x80 - The PIRQ is not routed.
92 */
93
Arthur Heymans349e0852017-04-09 20:48:37 +020094static void i82801jx_pirq_init(device_t dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +020095{
96 device_t irq_dev;
Arthur Heymans7b9c1392017-04-09 20:40:39 +020097
Arthur Heymans87af36a2017-04-12 10:53:30 +020098 /* Interrupt 11 is not used by legacy devices and so can always be used
99 * for PCI interrupts. Full legacy IRQ routing is complicated and hard
100 * to get right. Fortunately all modern OS use MSI and so it's not that
101 * big of an issue anyway. Still we have to provide a reasonable
102 * default. Using interrupt 11 for it everywhere is a working default.
103 * ACPI-aware OS can move it to any interrupt and others will just leave
104 * them at default.
105 */
106 const u8 pirq_routing = 11;
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200107
Arthur Heymans87af36a2017-04-12 10:53:30 +0200108 pci_write_config8(dev, D31F0_PIRQA_ROUT, pirq_routing);
109 pci_write_config8(dev, D31F0_PIRQB_ROUT, pirq_routing);
110 pci_write_config8(dev, D31F0_PIRQC_ROUT, pirq_routing);
111 pci_write_config8(dev, D31F0_PIRQD_ROUT, pirq_routing);
112
113 pci_write_config8(dev, D31F0_PIRQE_ROUT, pirq_routing);
114 pci_write_config8(dev, D31F0_PIRQF_ROUT, pirq_routing);
115 pci_write_config8(dev, D31F0_PIRQG_ROUT, pirq_routing);
116 pci_write_config8(dev, D31F0_PIRQH_ROUT, pirq_routing);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200117
118 /* Eric Biederman once said we should let the OS do this.
119 * I am not so sure anymore he was right.
120 */
121
122 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Arthur Heymans87af36a2017-04-12 10:53:30 +0200123 u8 int_pin = 0;
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200124
125 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
126 continue;
127
128 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
129
Arthur Heymans87af36a2017-04-12 10:53:30 +0200130 if (int_pin == 0)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200131 continue;
132
Arthur Heymans87af36a2017-04-12 10:53:30 +0200133 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, pirq_routing);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200134 }
135}
136
Arthur Heymans349e0852017-04-09 20:48:37 +0200137static void i82801jx_gpi_routing(device_t dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200138{
139 /* Get the chip configuration */
140 config_t *config = dev->chip_info;
141 u32 reg32 = 0;
142
143 /* An array would be much nicer here, or some
144 * other method of doing this.
145 */
146 reg32 |= (config->gpi0_routing & 0x03) << 0;
147 reg32 |= (config->gpi1_routing & 0x03) << 2;
148 reg32 |= (config->gpi2_routing & 0x03) << 4;
149 reg32 |= (config->gpi3_routing & 0x03) << 6;
150 reg32 |= (config->gpi4_routing & 0x03) << 8;
151 reg32 |= (config->gpi5_routing & 0x03) << 10;
152 reg32 |= (config->gpi6_routing & 0x03) << 12;
153 reg32 |= (config->gpi7_routing & 0x03) << 14;
154 reg32 |= (config->gpi8_routing & 0x03) << 16;
155 reg32 |= (config->gpi9_routing & 0x03) << 18;
156 reg32 |= (config->gpi10_routing & 0x03) << 20;
157 reg32 |= (config->gpi11_routing & 0x03) << 22;
158 reg32 |= (config->gpi12_routing & 0x03) << 24;
159 reg32 |= (config->gpi13_routing & 0x03) << 26;
160 reg32 |= (config->gpi14_routing & 0x03) << 28;
161 reg32 |= (config->gpi15_routing & 0x03) << 30;
162
163 pci_write_config32(dev, D31F0_GPIO_ROUT, reg32);
164}
165
Arthur Heymans349e0852017-04-09 20:48:37 +0200166static void i82801jx_power_options(device_t dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200167{
168 u8 reg8;
169 u16 reg16, pmbase;
170 u32 reg32;
171 const char *state;
172 /* Get the chip configuration */
173 config_t *config = dev->chip_info;
174
175 int pwr_on=CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
176 int nmi_option;
177
178 /* BIOS must program... */
179 reg32 = pci_read_config32(dev, 0xac);
180 pci_write_config32(dev, 0xac, reg32 | (1 << 30) | (3 << 8));
181
182 /* Which state do we want to goto after g3 (power restored)?
183 * 0 == S0 Full On
184 * 1 == S5 Soft Off
185 *
186 * If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
187 */
188 pwr_on = MAINBOARD_POWER_ON;
189 get_option(&pwr_on, "power_on_after_fail");
190
191 reg8 = pci_read_config8(dev, D31F0_GEN_PMCON_3);
192 reg8 &= 0xfe;
193 switch (pwr_on) {
194 case MAINBOARD_POWER_OFF:
195 reg8 |= 1;
196 state = "off";
197 break;
198 case MAINBOARD_POWER_ON:
199 reg8 &= ~1;
200 state = "on";
201 break;
202 case MAINBOARD_POWER_KEEP:
203 reg8 &= ~1;
204 state = "state keep";
205 break;
206 default:
207 state = "undefined";
208 }
209
210 reg8 |= (3 << 4); /* avoid #S4 assertions */
211 reg8 &= ~(1 << 3); /* minimum asssertion is 1 to 2 RTCCLK */
212
213 pci_write_config8(dev, D31F0_GEN_PMCON_3, reg8);
214 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
215
216 /* Set up NMI on errors. */
217 reg8 = inb(0x61);
218 reg8 &= 0x0f; /* Higher Nibble must be 0 */
219 reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
220 // reg8 &= ~(1 << 2); /* PCI SERR# Enable */
221 reg8 |= (1 << 2); /* PCI SERR# Disable for now */
222 outb(reg8, 0x61);
223
224 reg8 = inb(0x74); /* Read from 0x74 as 0x70 is write only. */
225 nmi_option = NMI_OFF;
226 get_option(&nmi_option, "nmi");
227 if (nmi_option) {
228 printk(BIOS_INFO, "NMI sources enabled.\n");
229 reg8 &= ~(1 << 7); /* Set NMI. */
230 } else {
231 printk(BIOS_INFO, "NMI sources disabled.\n");
Elyes HAOUAS9c5d4632018-04-26 22:21:21 +0200232 reg8 |= (1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200233 }
234 outb(reg8, 0x70);
235
236 /* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
237 reg16 = pci_read_config16(dev, D31F0_GEN_PMCON_1);
238 reg16 &= ~(3 << 0); // SMI# rate 1 minute
239 reg16 |= (1 << 2); // CLKRUN_EN - Mobile/Ultra only
240 reg16 |= (1 << 3); // Speedstep Enable - Mobile/Ultra only
241 reg16 |= (1 << 5); // CPUSLP_EN Desktop only
242
243 if (config->c4onc3_enable)
244 reg16 |= (1 << 7);
245
246 // another laptop wants this?
247 // reg16 &= ~(1 << 10); // BIOS_PCI_EXP_EN - Desktop/Mobile only
248 reg16 |= (1 << 10); // BIOS_PCI_EXP_EN - Desktop/Mobile only
249#if DEBUG_PERIODIC_SMIS
Arthur Heymans349e0852017-04-09 20:48:37 +0200250 /* Set DEBUG_PERIODIC_SMIS in i82801jx.h to debug using
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200251 * periodic SMIs.
252 */
253 reg16 |= (3 << 0); // Periodic SMI every 8s
254#endif
255 if (config->c5_enable)
256 reg16 |= (1 << 11); /* Enable C5, C6 and PMSYNC# */
257 pci_write_config16(dev, D31F0_GEN_PMCON_1, reg16);
258
259 /* Set exit timings for C5/C6. */
260 if (config->c5_enable) {
261 reg8 = pci_read_config8(dev, D31F0_C5_EXIT_TIMING);
262 reg8 &= ~((7 << 3) | (7 << 0));
263 if (config->c6_enable)
264 reg8 |= (5 << 3) | (3 << 0); /* 38-44us PMSYNC# to STPCLK#,
265 95-102us DPRSTP# to STP_CPU# */
266 else
267 reg8 |= (0 << 3) | (1 << 0); /* 16-17us PMSYNC# to STPCLK#,
268 34-40us DPRSTP# to STP_CPU# */
269 pci_write_config8(dev, D31F0_C5_EXIT_TIMING, reg8);
270 }
271
272 // Set the board's GPI routing.
Arthur Heymans349e0852017-04-09 20:48:37 +0200273 i82801jx_gpi_routing(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200274
275 pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
276
277 outl(config->gpe0_en, pmbase + 0x28);
278 outw(config->alt_gp_smi_en, pmbase + 0x38);
279
280 /* Set up power management block and determine sleep mode */
281 reg16 = inw(pmbase + 0x00); /* PM1_STS */
282 outw(reg16, pmbase + 0x00); /* Clear status bits. At least bit11 (power
283 button override) must be cleared or SCI
284 will be constantly fired and OSPM must
285 not know about it (ACPI spec says to
286 ignore the bit). */
287 reg32 = inl(pmbase + 0x04); // PM1_CNT
288 reg32 &= ~(7 << 10); // SLP_TYP
289 outl(reg32, pmbase + 0x04);
290
291 /* Set duty cycle for hardware throttling (defaults to 0x0: 50%). */
292 reg32 = inl(pmbase + 0x10);
293 reg32 &= ~(7 << 5);
294 reg32 |= (config->throttle_duty & 7) << 5;
295 outl(reg32, pmbase + 0x10);
296}
297
Arthur Heymans349e0852017-04-09 20:48:37 +0200298static void i82801jx_configure_cstates(device_t dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200299{
300 u8 reg8;
301
302 reg8 = pci_read_config8(dev, D31F0_CxSTATE_CNF);
303 reg8 |= (1 << 4) | (1 << 3) | (1 << 2); // Enable Popup & Popdown
304 pci_write_config8(dev, D31F0_CxSTATE_CNF, reg8);
305
306 // Set Deeper Sleep configuration to recommended values
307 reg8 = pci_read_config8(dev, D31F0_C4TIMING_CNT);
308 reg8 &= 0xf0;
309 reg8 |= (2 << 2); // Deeper Sleep to Stop CPU: 34-40us
310 reg8 |= (2 << 0); // Deeper Sleep to Sleep: 15us
311 pci_write_config8(dev, D31F0_C4TIMING_CNT, reg8);
312
313 /* We could enable slow-C4 exit here, if someone needs it? */
314}
315
Arthur Heymans349e0852017-04-09 20:48:37 +0200316static void i82801jx_rtc_init(struct device *dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200317{
318 u8 reg8;
319 int rtc_failed;
320
321 reg8 = pci_read_config8(dev, D31F0_GEN_PMCON_3);
322 rtc_failed = reg8 & RTC_BATTERY_DEAD;
323 if (rtc_failed) {
324 reg8 &= ~RTC_BATTERY_DEAD;
325 pci_write_config8(dev, D31F0_GEN_PMCON_3, reg8);
326 }
327 printk(BIOS_DEBUG, "rtc_failed = 0x%x\n", rtc_failed);
328
329 cmos_init(rtc_failed);
330}
331
332static void enable_hpet(void)
333{
334 u32 reg32;
335
336 /* Move HPET to default address 0xfed00000 and enable it */
337 reg32 = RCBA32(RCBA_HPTC);
338 reg32 |= (1 << 7); // HPET Address Enable
339 reg32 &= ~(3 << 0);
340 RCBA32(RCBA_HPTC) = reg32;
341}
342
343static void enable_clock_gating(void)
344{
345 u32 reg32;
346
347 /* Enable DMI dynamic clock gating. */
348 RCBA32(RCBA_DMIC) |= 3;
349
350 /* Enable Clock Gating for most devices. */
351 reg32 = RCBA32(RCBA_CG);
352 reg32 |= (1 << 31); /* LPC dynamic clock gating */
353 /* USB UHCI dynamic clock gating: */
354 reg32 |= (1 << 29) | (1 << 28);
355 /* SATA dynamic clock gating [0-3]: */
356 reg32 |= (1 << 27) | (1 << 26) | (1 << 25) | (1 << 24);
357 reg32 |= (1 << 23); /* LAN static clock gating (if LAN disabled) */
358 reg32 |= (1 << 22); /* HD audio dynamic clock gating */
359 reg32 &= ~(1 << 21); /* No HD audio static clock gating */
360 reg32 &= ~(1 << 20); /* No USB EHCI static clock gating */
361 reg32 |= (1 << 19); /* USB EHCI dynamic clock gating */
362 /* More SATA dynamic clock gating [4-5]: */
363 reg32 |= (1 << 18) | (1 << 17);
364 reg32 |= (1 << 16); /* PCI dynamic clock gating */
365 /* PCIe, DMI dynamic clock gating: */
366 reg32 |= (1 << 4) | (1 << 3) | (1 << 2) | (1 << 1);
367 reg32 |= (1 << 0); /* PCIe root port static clock gating */
368 RCBA32(RCBA_CG) = reg32;
369
370 /* Enable SPI dynamic clock gating. */
371 RCBA32(0x38c0) |= 7;
372}
373
Martin Rothb137c132017-07-21 10:23:57 -0600374#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
Arthur Heymans349e0852017-04-09 20:48:37 +0200375static void i82801jx_lock_smm(struct device *dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200376{
377#if TEST_SMM_FLASH_LOCKDOWN
378 u8 reg8;
379#endif
380
381 if (!acpi_is_wakeup_s3()) {
382#if ENABLE_ACPI_MODE_IN_COREBOOT
383 printk(BIOS_DEBUG, "Enabling ACPI via APMC:\n");
384 outb(APM_CNT_ACPI_ENABLE, APM_CNT); // Enable ACPI mode
385 printk(BIOS_DEBUG, "done.\n");
386#else
387 printk(BIOS_DEBUG, "Disabling ACPI via APMC:\n");
388 outb(APM_CNT_ACPI_DISABLE, APM_CNT); // Disable ACPI mode
389 printk(BIOS_DEBUG, "done.\n");
390#endif
391 } else {
392 printk(BIOS_DEBUG, "S3 wakeup, enabling ACPI via APMC\n");
393 outb(APM_CNT_ACPI_ENABLE, APM_CNT);
394 }
395 /* Don't allow evil boot loaders, kernels, or
396 * userspace applications to deceive us:
397 */
398 smm_lock();
399
400#if TEST_SMM_FLASH_LOCKDOWN
401 /* Now try this: */
402 printk(BIOS_DEBUG, "Locking BIOS to RO... ");
403 reg8 = pci_read_config8(dev, 0xdc); /* BIOS_CNTL */
404 printk(BIOS_DEBUG, " BLE: %s; BWE: %s\n", (reg8&2)?"on":"off",
405 (reg8&1)?"rw":"ro");
406 reg8 &= ~(1 << 0); /* clear BIOSWE */
407 pci_write_config8(dev, 0xdc, reg8);
408 reg8 |= (1 << 1); /* set BLE */
409 pci_write_config8(dev, 0xdc, reg8);
410 printk(BIOS_DEBUG, "ok.\n");
411 reg8 = pci_read_config8(dev, 0xdc); /* BIOS_CNTL */
412 printk(BIOS_DEBUG, " BLE: %s; BWE: %s\n", (reg8&2)?"on":"off",
413 (reg8&1)?"rw":"ro");
414
415 printk(BIOS_DEBUG, "Writing:\n");
416 *(volatile u8 *)0xfff00000 = 0x00;
417 printk(BIOS_DEBUG, "Testing:\n");
418 reg8 |= (1 << 0); /* set BIOSWE */
419 pci_write_config8(dev, 0xdc, reg8);
420
421 reg8 = pci_read_config8(dev, 0xdc); /* BIOS_CNTL */
422 printk(BIOS_DEBUG, " BLE: %s; BWE: %s\n", (reg8&2)?"on":"off",
423 (reg8&1)?"rw":"ro");
424 printk(BIOS_DEBUG, "Done.\n");
425#endif
426}
427#endif
428
429static void lpc_init(struct device *dev)
430{
Arthur Heymans349e0852017-04-09 20:48:37 +0200431 printk(BIOS_DEBUG, "i82801jx: lpc_init\n");
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200432
433 /* Set the value for PCI command register. */
434 pci_write_config16(dev, PCI_COMMAND, 0x000f);
435
436 /* IO APIC initialization. */
Arthur Heymans349e0852017-04-09 20:48:37 +0200437 i82801jx_enable_apic(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200438
Arthur Heymans349e0852017-04-09 20:48:37 +0200439 i82801jx_enable_serial_irqs(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200440
441 /* Setup the PIRQ. */
Arthur Heymans349e0852017-04-09 20:48:37 +0200442 i82801jx_pirq_init(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200443
444 /* Setup power options. */
Arthur Heymans349e0852017-04-09 20:48:37 +0200445 i82801jx_power_options(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200446
447 /* Configure Cx state registers */
448 if (LPC_IS_MOBILE(dev))
Arthur Heymans349e0852017-04-09 20:48:37 +0200449 i82801jx_configure_cstates(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200450
451 /* Initialize the real time clock. */
Arthur Heymans349e0852017-04-09 20:48:37 +0200452 i82801jx_rtc_init(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200453
454 /* Initialize ISA DMA. */
455 isa_dma_init();
456
457 /* Initialize the High Precision Event Timers, if present. */
458 enable_hpet();
459
460 /* Initialize Clock Gating */
461 enable_clock_gating();
462
463 setup_i8259();
464
465 /* The OS should do this? */
466 /* Interrupt 9 should be level triggered (SCI) */
467 i8259_configure_irq_trigger(9, 1);
468
Martin Rothb137c132017-07-21 10:23:57 -0600469#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
Arthur Heymans349e0852017-04-09 20:48:37 +0200470 i82801jx_lock_smm(dev);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200471#endif
472}
473
Arthur Heymansad501492017-04-12 00:15:39 +0200474unsigned long acpi_fill_madt(unsigned long current)
475{
476 /* Local APICs */
477 current = acpi_create_madt_lapics(current);
478
479 /* IOAPIC */
480 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
481 2, IO_APIC_ADDR, 0);
482
483 /* LAPIC_NMI */
484 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)
485 current, 0,
486 MP_IRQ_POLARITY_HIGH |
487 MP_IRQ_TRIGGER_EDGE, 0x01);
488 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)
489 current, 1, MP_IRQ_POLARITY_HIGH |
490 MP_IRQ_TRIGGER_EDGE, 0x01);
491
492 /* INT_SRC_OVR */
493 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
494 current, 0, 0, 2, MP_IRQ_POLARITY_HIGH | MP_IRQ_TRIGGER_EDGE);
495 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
496 current, 0, 9, 9, MP_IRQ_POLARITY_HIGH | MP_IRQ_TRIGGER_LEVEL);
497
498
499 return current;
500}
501
502void acpi_fill_fadt(acpi_fadt_t *fadt)
503{
504 device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
505 config_t *chip = dev->chip_info;
506 u16 pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
507
508 fadt->pm1a_evt_blk = pmbase;
509 fadt->pm1b_evt_blk = 0x0;
510 fadt->pm1a_cnt_blk = pmbase + 0x4;
511 fadt->pm1b_cnt_blk = 0x0;
512 fadt->pm2_cnt_blk = pmbase + 0x50;
513 fadt->pm_tmr_blk = pmbase + 0x8;
514 fadt->gpe0_blk = pmbase + 0x20;
515 fadt->gpe1_blk = 0;
516
517 fadt->pm1_evt_len = 4;
518 fadt->pm1_cnt_len = 2;
519 fadt->pm2_cnt_len = 1;
520 fadt->pm_tmr_len = 4;
521 fadt->gpe0_blk_len = 16;
522 fadt->gpe1_blk_len = 0;
523 fadt->gpe1_base = 0;
524
525 fadt->reset_reg.space_id = 1;
526 fadt->reset_reg.bit_width = 8;
527 fadt->reset_reg.bit_offset = 0;
528 fadt->reset_reg.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
529 fadt->reset_reg.addrl = 0xcf9;
530 fadt->reset_reg.addrh = 0;
531 fadt->reset_value = 6;
532
533 fadt->x_pm1a_evt_blk.space_id = 1;
534 fadt->x_pm1a_evt_blk.bit_width = 32;
535 fadt->x_pm1a_evt_blk.bit_offset = 0;
536 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
537 fadt->x_pm1a_evt_blk.addrl = pmbase;
538 fadt->x_pm1a_evt_blk.addrh = 0x0;
539
540 fadt->x_pm1b_evt_blk.space_id = 0;
541 fadt->x_pm1b_evt_blk.bit_width = 0;
542 fadt->x_pm1b_evt_blk.bit_offset = 0;
543 fadt->x_pm1b_evt_blk.access_size = 0;
544 fadt->x_pm1b_evt_blk.addrl = 0x0;
545 fadt->x_pm1b_evt_blk.addrh = 0x0;
546
547 fadt->x_pm1a_cnt_blk.space_id = 1;
548 fadt->x_pm1a_cnt_blk.bit_width = 16;
549 fadt->x_pm1a_cnt_blk.bit_offset = 0;
550 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
551 fadt->x_pm1a_cnt_blk.addrl = pmbase + 0x4;
552 fadt->x_pm1a_cnt_blk.addrh = 0x0;
553
554 fadt->x_pm1b_cnt_blk.space_id = 0;
555 fadt->x_pm1b_cnt_blk.bit_width = 0;
556 fadt->x_pm1b_cnt_blk.bit_offset = 0;
557 fadt->x_pm1b_cnt_blk.access_size = 0;
558 fadt->x_pm1b_cnt_blk.addrl = 0x0;
559 fadt->x_pm1b_cnt_blk.addrh = 0x0;
560
561 fadt->x_pm2_cnt_blk.space_id = 1;
562 fadt->x_pm2_cnt_blk.bit_width = 8;
563 fadt->x_pm2_cnt_blk.bit_offset = 0;
564 fadt->x_pm2_cnt_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
565 fadt->x_pm2_cnt_blk.addrl = pmbase + 0x20;
566 fadt->x_pm2_cnt_blk.addrh = 0x0;
567
568 fadt->x_pm_tmr_blk.space_id = 1;
569 fadt->x_pm_tmr_blk.bit_width = 32;
570 fadt->x_pm_tmr_blk.bit_offset = 0;
571 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
572 fadt->x_pm_tmr_blk.addrl = pmbase + 0x8;
573 fadt->x_pm_tmr_blk.addrh = 0x0;
574
575 fadt->x_gpe0_blk.space_id = 1;
576 fadt->x_gpe0_blk.bit_width = 128;
577 fadt->x_gpe0_blk.bit_offset = 0;
578 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
579 fadt->x_gpe0_blk.addrl = pmbase + 0x20;
580 fadt->x_gpe0_blk.addrh = 0x0;
581
582 fadt->x_gpe1_blk.space_id = 0;
583 fadt->x_gpe1_blk.bit_width = 0;
584 fadt->x_gpe1_blk.bit_offset = 0;
585 fadt->x_gpe1_blk.access_size = 0;
586 fadt->x_gpe1_blk.addrl = 0x0;
587 fadt->x_gpe1_blk.addrh = 0x0;
588 fadt->day_alrm = 0xd;
589 fadt->mon_alrm = 0x00;
590 fadt->century = 0x32;
591
592 fadt->model = 1;
593 fadt->sci_int = 0x9;
594 fadt->smi_cmd = APM_CNT;
595 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
596 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
597 fadt->s4bios_req = 0x0;
598 fadt->pstate_cnt = APM_CNT_PST_CONTROL;
599
600 fadt->cst_cnt = APM_CNT_CST_CONTROL;
601 fadt->p_lvl2_lat = 1;
602 fadt->p_lvl3_lat = chip->c3_latency;
603 fadt->flush_size = 0;
604 fadt->flush_stride = 0;
605 fadt->duty_offset = 1;
606 if (chip->p_cnt_throttling_supported)
607 fadt->duty_width = 3;
608 else
609 fadt->duty_width = 0;
610 fadt->iapc_boot_arch = 0x03;
611 fadt->flags = (ACPI_FADT_WBINVD | ACPI_FADT_C1_SUPPORTED
612 | ACPI_FADT_SLEEP_BUTTON | ACPI_FADT_S4_RTC_WAKE
613 | ACPI_FADT_PLATFORM_CLOCK | ACPI_FADT_RESET_REGISTER
614 | ACPI_FADT_C2_MP_SUPPORTED);
615 if (chip->docking_supported)
616 fadt->flags |= ACPI_FADT_DOCKING_SUPPORTED;
617}
618
Arthur Heymans349e0852017-04-09 20:48:37 +0200619static void i82801jx_lpc_read_resources(device_t dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200620{
Arthur Heymanse5dcaf12017-04-12 00:03:37 +0200621 int i, io_index = 0;
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200622 /*
623 * I/O Resources
624 *
625 * 0x0000 - 0x000f....ISA DMA
626 * 0x0010 - 0x001f....ISA DMA aliases
627 * 0x0020 ~ 0x003d....PIC
628 * 0x002e - 0x002f....Maybe Super I/O
629 * 0x0040 - 0x0043....Timer
630 * 0x004e - 0x004f....Maybe Super I/O
631 * 0x0050 - 0x0053....Timer aliases
632 * 0x0061.............NMI_SC
633 * 0x0070.............NMI_EN (readable in alternative access mode)
634 * 0x0070 - 0x0077....RTC
635 * 0x0080 - 0x008f....ISA DMA
636 * 0x0090 ~ 0x009f....ISA DMA aliases
637 * 0x0092.............Fast A20 and Init
638 * 0x00a0 ~ 0x00bd....PIC
639 * 0x00b2 - 0x00b3....APM
640 * 0x00c0 ~ 0x00de....ISA DMA
641 * 0x00c1 ~ 0x00df....ISA DMA aliases
642 * 0x00f0.............Coprocessor Error
643 * (0x0400-0x041f)....SMBus (SMBUS_IO_BASE, during raminit)
644 * 0x04d0 - 0x04d1....PIC
645 * 0x0500 - 0x057f....PM (DEFAULT_PMBASE)
646 * 0x0580 - 0x05bf....SB GPIO (DEFAULT_GPIOBASE)
647 * 0x05c0 - 0x05ff....SB GPIO cont. (mobile only)
648 * 0x0cf8 - 0x0cff....PCI
649 * 0x0cf9.............Reset Control
650 */
651
652 struct resource *res;
653
654 /* Get the normal PCI resources of this device. */
655 pci_dev_read_resources(dev);
656
657 /* Add an extra subtractive resource for both memory and I/O. */
Arthur Heymanse5dcaf12017-04-12 00:03:37 +0200658 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200659 res->base = 0;
660 res->size = 0x1000;
661 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
662 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
663
Arthur Heymanse5dcaf12017-04-12 00:03:37 +0200664 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
665 res->base = 0xff000000;
666 res->size = 0x01000000; /* 16 MB for flash */
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200667 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
668 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
669
670 res = new_resource(dev, 3); /* IOAPIC */
671 res->base = IO_APIC_ADDR;
672 res->size = 0x00001000;
673 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Arthur Heymanse5dcaf12017-04-12 00:03:37 +0200674
675 /* Set IO decode ranges if required.*/
676 for (i = 0; i < 4; i++) {
677 u32 gen_dec;
678 gen_dec = pci_read_config32(dev, 0x84 + 4 * i);
679
680 if ((gen_dec & 0xFFFC) > 0x1000) {
681 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
682 res->base = gen_dec & 0xFFFC;
683 res->size = (gen_dec >> 16) & 0xFC;
684 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
685 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
686 }
687 }
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200688}
689
690static void set_subsystem(device_t dev, unsigned vendor, unsigned device)
691{
692 if (!vendor || !device) {
693 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
694 pci_read_config32(dev, PCI_VENDOR_ID));
695 } else {
696 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
697 ((device & 0xffff) << 16) | (vendor & 0xffff));
698 }
699}
700
701static void southbridge_inject_dsdt(device_t dev)
702{
703 global_nvs_t *gnvs = cbmem_add (CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
704
705 if (gnvs) {
706 const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
707 memset(gnvs, 0, sizeof(*gnvs));
708 acpi_create_gnvs(gnvs);
709
710 gnvs->ndid = gfx->ndid;
711 memcpy(gnvs->did, gfx->did, sizeof(gnvs->did));
712
713 /* And tell SMI about it */
714 smm_setup_structures(gnvs, NULL, NULL);
715
716 /* Add it to SSDT. */
717 acpigen_write_scope("\\");
718 acpigen_write_name_dword("NVSA", (u32) gnvs);
719 acpigen_pop_len();
720 }
721}
722
723static void southbridge_fill_ssdt(device_t device)
724{
725 device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
726 config_t *chip = dev->chip_info;
727
728 intel_acpi_pcie_hotplug_generator(chip->pcie_hotplug_map, 8);
729}
730
731static struct pci_operations pci_ops = {
732 .set_subsystem = set_subsystem,
733};
734
735static struct device_operations device_ops = {
Arthur Heymans349e0852017-04-09 20:48:37 +0200736 .read_resources = i82801jx_lpc_read_resources,
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200737 .set_resources = pci_dev_set_resources,
738 .enable_resources = pci_dev_enable_resources,
739 .acpi_inject_dsdt_generator = southbridge_inject_dsdt,
740 .write_acpi_tables = acpi_write_hpet,
741 .acpi_fill_ssdt_generator = southbridge_fill_ssdt,
742 .init = lpc_init,
743 .scan_bus = scan_lpc_bus,
744 .ops_pci = &pci_ops,
745};
746
747static const unsigned short pci_device_ids[] = {
Arthur Heymans349e0852017-04-09 20:48:37 +0200748 0x3a10, /* ICH10R Eng. Sample */
749 0x3a14, /* ICH10DO */
750 0x3a16, /* ICH10R */
751 0x3a18, /* ICH10 */
752 0x3a1a, /* ICH10D */
753 0x3a1e, /* ICH10 Eng. Sample */
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200754 0
755};
756
Arthur Heymans349e0852017-04-09 20:48:37 +0200757static const struct pci_driver ich10_lpc __pci_driver = {
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200758 .ops = &device_ops,
759 .vendor = PCI_VENDOR_ID_INTEL,
760 .devices = pci_device_ids,
761};