blob: a9e3ec56b5f54a375197680ce77faa51e9c813d6 [file] [log] [blame]
Stefan Reinauer8e073822012-04-04 00:07:22 +02001/*
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
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Stefan Reinauer8e073822012-04-04 00:07:22 +020019 */
20
21#include <console/console.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <pc80/mc146818rtc.h>
26#include <pc80/isa-dma.h>
27#include <pc80/i8259.h>
28#include <arch/io.h>
29#include <arch/ioapic.h>
30#include <arch/acpi.h>
31#include <cpu/cpu.h>
Duncan Laurie800e9502012-06-23 17:06:47 -070032#include <elog.h>
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +020033#include <arch/acpigen.h>
34#include <drivers/intel/gma/i915.h>
Vladimir Serbinenko5b044ae2014-10-25 15:20:55 +020035#include <cpu/x86/smm.h>
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +020036#include <cbmem.h>
Vladimir Serbinenko7309c642014-10-05 11:07:33 +020037#include <string.h>
Vladimir Serbinenko5b044ae2014-10-25 15:20:55 +020038#include <cpu/x86/smm.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020039#include "pch.h"
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +020040#include "nvs.h"
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010041#include <southbridge/intel/common/pciehp.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020042
43#define NMI_OFF 0
44
45#define ENABLE_ACPI_MODE_IN_COREBOOT 0
Stefan Reinauer8e073822012-04-04 00:07:22 +020046
47typedef struct southbridge_intel_bd82x6x_config config_t;
48
Paul Menzel9c50e6a2013-05-03 12:23:39 +020049/**
50 * Set miscellanous static southbridge features.
51 *
52 * @param dev PCI device with I/O APIC control registers
53 */
54static void pch_enable_ioapic(struct device *dev)
Stefan Reinauer8e073822012-04-04 00:07:22 +020055{
Stefan Reinauer8e073822012-04-04 00:07:22 +020056 u32 reg32;
Stefan Reinauer8e073822012-04-04 00:07:22 +020057
Paul Menzel9c50e6a2013-05-03 12:23:39 +020058 /* Enable ACPI I/O range decode */
59 pci_write_config8(dev, ACPI_CNTL, ACPI_EN);
Stefan Reinauer8e073822012-04-04 00:07:22 +020060
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080061 set_ioapic_id(VIO_APIC_VADDR, 0x02);
Stefan Reinauer8e073822012-04-04 00:07:22 +020062
63 /* affirm full set of redirection table entries ("write once") */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080064 reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);
65 io_apic_write(VIO_APIC_VADDR, 0x01, reg32);
Stefan Reinauer8e073822012-04-04 00:07:22 +020066
Paul Menzel9c50e6a2013-05-03 12:23:39 +020067 /*
68 * Select Boot Configuration register (0x03) and
69 * use Processor System Bus (0x01) to deliver interrupts.
70 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080071 io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
Stefan Reinauer8e073822012-04-04 00:07:22 +020072}
73
74static void pch_enable_serial_irqs(struct device *dev)
75{
76 /* Set packet length and toggle silent mode bit for one frame. */
77 pci_write_config8(dev, SERIRQ_CNTL,
78 (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
79#if !CONFIG_SERIRQ_CONTINUOUS_MODE
80 pci_write_config8(dev, SERIRQ_CNTL,
81 (1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
82#endif
83}
84
85/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
86 * 0x00 - 0000 = Reserved
87 * 0x01 - 0001 = Reserved
88 * 0x02 - 0010 = Reserved
89 * 0x03 - 0011 = IRQ3
90 * 0x04 - 0100 = IRQ4
91 * 0x05 - 0101 = IRQ5
92 * 0x06 - 0110 = IRQ6
93 * 0x07 - 0111 = IRQ7
94 * 0x08 - 1000 = Reserved
95 * 0x09 - 1001 = IRQ9
96 * 0x0A - 1010 = IRQ10
97 * 0x0B - 1011 = IRQ11
98 * 0x0C - 1100 = IRQ12
99 * 0x0D - 1101 = Reserved
100 * 0x0E - 1110 = IRQ14
101 * 0x0F - 1111 = IRQ15
102 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
103 * 0x80 - The PIRQ is not routed.
104 */
105
106static void pch_pirq_init(device_t dev)
107{
108 device_t irq_dev;
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +0200109 /* Interrupt 11 is not used by legacy devices and so can always be used for
110 PCI interrupts. Full legacy IRQ routing is complicated and hard to
111 get right. Fortunately all modern OS use MSI and so it's not that big of
112 an issue anyway. Still we have to provide a reasonable default. Using
113 interrupt 11 for it everywhere is a working default. ACPI-aware OS can
114 move it to any interrupt and others will just leave them at default.
Stefan Reinauer8e073822012-04-04 00:07:22 +0200115 */
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +0200116 const u8 pirq_routing = 11;
117
118 pci_write_config8(dev, PIRQA_ROUT, pirq_routing);
119 pci_write_config8(dev, PIRQB_ROUT, pirq_routing);
120 pci_write_config8(dev, PIRQC_ROUT, pirq_routing);
121 pci_write_config8(dev, PIRQD_ROUT, pirq_routing);
122
123 pci_write_config8(dev, PIRQE_ROUT, pirq_routing);
124 pci_write_config8(dev, PIRQF_ROUT, pirq_routing);
125 pci_write_config8(dev, PIRQG_ROUT, pirq_routing);
126 pci_write_config8(dev, PIRQH_ROUT, pirq_routing);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200127
128 for(irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +0200129 u8 int_pin=0;
Stefan Reinauer8e073822012-04-04 00:07:22 +0200130
131 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
132 continue;
133
134 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
135
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +0200136 if (int_pin == 0)
Stefan Reinauer8e073822012-04-04 00:07:22 +0200137 continue;
138
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +0200139 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, pirq_routing);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200140 }
141}
142
143static void pch_gpi_routing(device_t dev)
144{
145 /* Get the chip configuration */
146 config_t *config = dev->chip_info;
147 u32 reg32 = 0;
148
149 /* An array would be much nicer here, or some
150 * other method of doing this.
151 */
152 reg32 |= (config->gpi0_routing & 0x03) << 0;
153 reg32 |= (config->gpi1_routing & 0x03) << 2;
154 reg32 |= (config->gpi2_routing & 0x03) << 4;
155 reg32 |= (config->gpi3_routing & 0x03) << 6;
156 reg32 |= (config->gpi4_routing & 0x03) << 8;
157 reg32 |= (config->gpi5_routing & 0x03) << 10;
158 reg32 |= (config->gpi6_routing & 0x03) << 12;
159 reg32 |= (config->gpi7_routing & 0x03) << 14;
160 reg32 |= (config->gpi8_routing & 0x03) << 16;
161 reg32 |= (config->gpi9_routing & 0x03) << 18;
162 reg32 |= (config->gpi10_routing & 0x03) << 20;
163 reg32 |= (config->gpi11_routing & 0x03) << 22;
164 reg32 |= (config->gpi12_routing & 0x03) << 24;
165 reg32 |= (config->gpi13_routing & 0x03) << 26;
166 reg32 |= (config->gpi14_routing & 0x03) << 28;
167 reg32 |= (config->gpi15_routing & 0x03) << 30;
168
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +0200169 pci_write_config32(dev, GPIO_ROUT, reg32);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200170}
171
172static void pch_power_options(device_t dev)
173{
174 u8 reg8;
175 u16 reg16, pmbase;
176 u32 reg32;
177 const char *state;
178 /* Get the chip configuration */
179 config_t *config = dev->chip_info;
180
181 int pwr_on=CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
182 int nmi_option;
183
184 /* Which state do we want to goto after g3 (power restored)?
185 * 0 == S0 Full On
186 * 1 == S5 Soft Off
187 *
188 * If the option is not existent (Laptops), use Kconfig setting.
189 */
190 get_option(&pwr_on, "power_on_after_fail");
191
192 reg16 = pci_read_config16(dev, GEN_PMCON_3);
193 reg16 &= 0xfffe;
194 switch (pwr_on) {
195 case MAINBOARD_POWER_OFF:
196 reg16 |= 1;
197 state = "off";
198 break;
199 case MAINBOARD_POWER_ON:
200 reg16 &= ~1;
201 state = "on";
202 break;
203 case MAINBOARD_POWER_KEEP:
204 reg16 &= ~1;
205 state = "state keep";
206 break;
207 default:
208 state = "undefined";
209 }
210
211 reg16 &= ~(3 << 4); /* SLP_S4# Assertion Stretch 4s */
212 reg16 |= (1 << 3); /* SLP_S4# Assertion Stretch Enable */
213
214 reg16 &= ~(1 << 10);
215 reg16 |= (1 << 11); /* SLP_S3# Min Assertion Width 50ms */
216
217 reg16 |= (1 << 12); /* Disable SLP stretch after SUS well */
218
219 pci_write_config16(dev, GEN_PMCON_3, reg16);
220 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
221
222 /* Set up NMI on errors. */
223 reg8 = inb(0x61);
224 reg8 &= 0x0f; /* Higher Nibble must be 0 */
225 reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
226 // reg8 &= ~(1 << 2); /* PCI SERR# Enable */
227 reg8 |= (1 << 2); /* PCI SERR# Disable for now */
228 outb(reg8, 0x61);
229
230 reg8 = inb(0x70);
231 nmi_option = NMI_OFF;
232 get_option(&nmi_option, "nmi");
233 if (nmi_option) {
234 printk(BIOS_INFO, "NMI sources enabled.\n");
235 reg8 &= ~(1 << 7); /* Set NMI. */
236 } else {
237 printk(BIOS_INFO, "NMI sources disabled.\n");
238 reg8 |= ( 1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
239 }
240 outb(reg8, 0x70);
241
242 /* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
243 reg16 = pci_read_config16(dev, GEN_PMCON_1);
244 reg16 &= ~(3 << 0); // SMI# rate 1 minute
245 reg16 &= ~(1 << 10); // Disable BIOS_PCI_EXP_EN for native PME
246#if DEBUG_PERIODIC_SMIS
247 /* Set DEBUG_PERIODIC_SMIS in pch.h to debug using
248 * periodic SMIs.
249 */
250 reg16 |= (3 << 0); // Periodic SMI every 8s
251#endif
252 pci_write_config16(dev, GEN_PMCON_1, reg16);
253
254 // Set the board's GPI routing.
255 pch_gpi_routing(dev);
256
257 pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
258
259 outl(config->gpe0_en, pmbase + GPE0_EN);
260 outw(config->alt_gp_smi_en, pmbase + ALT_GP_SMI_EN);
261
262 /* Set up power management block and determine sleep mode */
263 reg32 = inl(pmbase + 0x04); // PM1_CNT
264 reg32 &= ~(7 << 10); // SLP_TYP
265 reg32 |= (1 << 0); // SCI_EN
266 outl(reg32, pmbase + 0x04);
267
268 /* Clear magic status bits to prevent unexpected wake */
269 reg32 = RCBA32(0x3310);
270 reg32 |= (1 << 4)|(1 << 5)|(1 << 0);
271 RCBA32(0x3310) = reg32;
272
273 reg32 = RCBA32(0x3f02);
274 reg32 &= ~0xf;
275 RCBA32(0x3f02) = reg32;
276}
277
278static void pch_rtc_init(struct device *dev)
279{
280 u8 reg8;
281 int rtc_failed;
282
283 reg8 = pci_read_config8(dev, GEN_PMCON_3);
284 rtc_failed = reg8 & RTC_BATTERY_DEAD;
285 if (rtc_failed) {
286 reg8 &= ~RTC_BATTERY_DEAD;
287 pci_write_config8(dev, GEN_PMCON_3, reg8);
Duncan Laurie800e9502012-06-23 17:06:47 -0700288#if CONFIG_ELOG
289 elog_add_event(ELOG_TYPE_RTC_RESET);
290#endif
Stefan Reinauer8e073822012-04-04 00:07:22 +0200291 }
292 printk(BIOS_DEBUG, "rtc_failed = 0x%x\n", rtc_failed);
293
Gabe Blackb3f08c62014-04-30 17:12:25 -0700294 cmos_init(rtc_failed);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200295}
296
Duncan Laurie3f6a4d72012-06-28 13:03:40 -0700297/* CougarPoint PCH Power Management init */
298static void cpt_pm_init(struct device *dev)
Stefan Reinauer8e073822012-04-04 00:07:22 +0200299{
Duncan Laurie3f6a4d72012-06-28 13:03:40 -0700300 printk(BIOS_DEBUG, "CougarPoint PM init\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +0200301 pci_write_config8(dev, 0xa9, 0x47);
302 RCBA32_AND_OR(0x2238, ~0UL, (1 << 6)|(1 << 0));
303 RCBA32_AND_OR(0x228c, ~0UL, (1 << 0));
304 RCBA16_AND_OR(0x1100, ~0UL, (1 << 13)|(1 << 14));
305 RCBA16_AND_OR(0x0900, ~0UL, (1 << 14));
306 RCBA32(0x2304) = 0xc0388400;
307 RCBA32_AND_OR(0x2314, ~0UL, (1 << 5)|(1 << 18));
308 RCBA32_AND_OR(0x2320, ~0UL, (1 << 15)|(1 << 1));
309 RCBA32_AND_OR(0x3314, ~0x1f, 0xf);
310 RCBA32(0x3318) = 0x050f0000;
311 RCBA32(0x3324) = 0x04000000;
312 RCBA32_AND_OR(0x3340, ~0UL, 0xfffff);
313 RCBA32_AND_OR(0x3344, ~0UL, (1 << 1));
314 RCBA32(0x3360) = 0x0001c000;
315 RCBA32(0x3368) = 0x00061100;
316 RCBA32(0x3378) = 0x7f8fdfff;
317 RCBA32(0x337c) = 0x000003fc;
318 RCBA32(0x3388) = 0x00001000;
319 RCBA32(0x3390) = 0x0001c000;
320 RCBA32(0x33a0) = 0x00000800;
321 RCBA32(0x33b0) = 0x00001000;
322 RCBA32(0x33c0) = 0x00093900;
323 RCBA32(0x33cc) = 0x24653002;
324 RCBA32(0x33d0) = 0x062108fe;
325 RCBA32_AND_OR(0x33d4, 0xf000f000, 0x00670060);
326 RCBA32(0x3a28) = 0x01010000;
327 RCBA32(0x3a2c) = 0x01010404;
328 RCBA32(0x3a80) = 0x01041041;
329 RCBA32_AND_OR(0x3a84, ~0x0000ffff, 0x00001001);
330 RCBA32_AND_OR(0x3a84, ~0UL, (1 << 24)); /* SATA 2/3 disabled */
331 RCBA32_AND_OR(0x3a88, ~0UL, (1 << 0)); /* SATA 4/5 disabled */
332 RCBA32(0x3a6c) = 0x00000001;
333 RCBA32_AND_OR(0x2344, 0x00ffff00, 0xff00000c);
334 RCBA32_AND_OR(0x80c, ~(0xff << 20), 0x11 << 20);
335 RCBA32(0x33c8) = 0;
336 RCBA32_AND_OR(0x21b0, ~0UL, 0xf);
337}
338
Duncan Laurie3f6a4d72012-06-28 13:03:40 -0700339/* PantherPoint PCH Power Management init */
340static void ppt_pm_init(struct device *dev)
341{
342 printk(BIOS_DEBUG, "PantherPoint PM init\n");
343 pci_write_config8(dev, 0xa9, 0x47);
344 RCBA32_AND_OR(0x2238, ~0UL, (1 << 0));
345 RCBA32_AND_OR(0x228c, ~0UL, (1 << 0));
346 RCBA16_AND_OR(0x1100, ~0UL, (1 << 13)|(1 << 14));
347 RCBA16_AND_OR(0x0900, ~0UL, (1 << 14));
348 RCBA32(0x2304) = 0xc03b8400;
349 RCBA32_AND_OR(0x2314, ~0UL, (1 << 5)|(1 << 18));
350 RCBA32_AND_OR(0x2320, ~0UL, (1 << 15)|(1 << 1));
351 RCBA32_AND_OR(0x3314, ~0x1f, 0xf);
352 RCBA32(0x3318) = 0x054f0000;
353 RCBA32(0x3324) = 0x04000000;
354 RCBA32_AND_OR(0x3340, ~0UL, 0xfffff);
355 RCBA32_AND_OR(0x3344, ~0UL, (1 << 1)|(1 << 0));
356 RCBA32(0x3360) = 0x0001c000;
357 RCBA32(0x3368) = 0x00061100;
358 RCBA32(0x3378) = 0x7f8fdfff;
359 RCBA32(0x337c) = 0x000003fd;
360 RCBA32(0x3388) = 0x00001000;
361 RCBA32(0x3390) = 0x0001c000;
362 RCBA32(0x33a0) = 0x00000800;
363 RCBA32(0x33b0) = 0x00001000;
364 RCBA32(0x33c0) = 0x00093900;
365 RCBA32(0x33cc) = 0x24653002;
366 RCBA32(0x33d0) = 0x067388fe;
367 RCBA32_AND_OR(0x33d4, 0xf000f000, 0x00670060);
368 RCBA32(0x3a28) = 0x01010000;
369 RCBA32(0x3a2c) = 0x01010404;
370 RCBA32(0x3a80) = 0x01040000;
371 RCBA32_AND_OR(0x3a84, ~0x0000ffff, 0x00001001);
372 RCBA32_AND_OR(0x3a84, ~0UL, (1 << 24)); /* SATA 2/3 disabled */
373 RCBA32_AND_OR(0x3a88, ~0UL, (1 << 0)); /* SATA 4/5 disabled */
374 RCBA32(0x3a6c) = 0x00000001;
375 RCBA32_AND_OR(0x2344, 0x00ffff00, 0xff00000c);
376 RCBA32_AND_OR(0x80c, ~(0xff << 20), 0x11 << 20);
377 RCBA32_AND_OR(0x33a4, ~0UL, (1 << 0));
378 RCBA32(0x33c8) = 0;
379 RCBA32_AND_OR(0x21b0, ~0UL, 0xf);
380}
381
Stefan Reinauer8e073822012-04-04 00:07:22 +0200382static void enable_hpet(void)
383{
384 u32 reg32;
385
386 /* Move HPET to default address 0xfed00000 and enable it */
387 reg32 = RCBA32(HPTC);
388 reg32 |= (1 << 7); // HPET Address Enable
389 reg32 &= ~(3 << 0);
390 RCBA32(HPTC) = reg32;
391}
392
393static void enable_clock_gating(device_t dev)
394{
395 u32 reg32;
396 u16 reg16;
397
398 RCBA32_AND_OR(0x2234, ~0UL, 0xf);
399
400 reg16 = pci_read_config16(dev, GEN_PMCON_1);
401 reg16 |= (1 << 2) | (1 << 11);
402 pci_write_config16(dev, GEN_PMCON_1, reg16);
403
404 pch_iobp_update(0xEB007F07, ~0UL, (1 << 31));
405 pch_iobp_update(0xEB004000, ~0UL, (1 << 7));
406 pch_iobp_update(0xEC007F07, ~0UL, (1 << 31));
407 pch_iobp_update(0xEC004000, ~0UL, (1 << 7));
408
409 reg32 = RCBA32(CG);
410 reg32 |= (1 << 31);
411 reg32 |= (1 << 29) | (1 << 28);
412 reg32 |= (1 << 27) | (1 << 26) | (1 << 25) | (1 << 24);
413 reg32 |= (1 << 16);
414 reg32 |= (1 << 17);
415 reg32 |= (1 << 18);
416 reg32 |= (1 << 22);
417 reg32 |= (1 << 23);
418 reg32 &= ~(1 << 20);
419 reg32 |= (1 << 19);
420 reg32 |= (1 << 0);
421 reg32 |= (0xf << 1);
422 RCBA32(CG) = reg32;
423
424 RCBA32_OR(0x38c0, 0x7);
425 RCBA32_OR(0x36d4, 0x6680c004);
426 RCBA32_OR(0x3564, 0x3);
427}
428
Vladimir Serbinenkoa3e41c02015-05-28 16:04:17 +0200429static void pch_set_acpi_mode(void)
Stefan Reinauer8e073822012-04-04 00:07:22 +0200430{
Vladimir Serbinenkoa3e41c02015-05-28 16:04:17 +0200431 if (!acpi_is_wakeup_s3() && CONFIG_HAVE_SMI_HANDLER) {
Stefan Reinauer8e073822012-04-04 00:07:22 +0200432#if ENABLE_ACPI_MODE_IN_COREBOOT
Duncan Laurie95be1d62012-04-09 12:31:43 -0700433 printk(BIOS_DEBUG, "Enabling ACPI via APMC:\n");
Vladimir Serbinenkoa3e41c02015-05-28 16:04:17 +0200434 outb(APM_CNT_ACPI_ENABLE, APM_CNT); // Enable ACPI mode
Duncan Laurie95be1d62012-04-09 12:31:43 -0700435 printk(BIOS_DEBUG, "done.\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +0200436#else
Duncan Laurie95be1d62012-04-09 12:31:43 -0700437 printk(BIOS_DEBUG, "Disabling ACPI via APMC:\n");
Vladimir Serbinenkoa3e41c02015-05-28 16:04:17 +0200438 outb(APM_CNT_ACPI_DISABLE, APM_CNT); // Disable ACPI mode
Duncan Laurie95be1d62012-04-09 12:31:43 -0700439 printk(BIOS_DEBUG, "done.\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +0200440#endif
Duncan Laurie95be1d62012-04-09 12:31:43 -0700441 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200442}
Stefan Reinauer8e073822012-04-04 00:07:22 +0200443
444static void pch_disable_smm_only_flashing(struct device *dev)
445{
446 u8 reg8;
447
448 printk(BIOS_SPEW, "Enabling BIOS updates outside of SMM... ");
449 reg8 = pci_read_config8(dev, 0xdc); /* BIOS_CNTL */
450 reg8 &= ~(1 << 5);
451 pci_write_config8(dev, 0xdc, reg8);
452}
453
454static void pch_fixups(struct device *dev)
455{
456 u8 gen_pmcon_2;
457
458 /* Indicate DRAM init done for MRC S3 to know it can resume */
459 gen_pmcon_2 = pci_read_config8(dev, GEN_PMCON_2);
460 gen_pmcon_2 |= (1 << 7);
461 pci_write_config8(dev, GEN_PMCON_2, gen_pmcon_2);
462
463 /*
464 * Enable DMI ASPM in the PCH
465 */
466 RCBA32_AND_OR(0x2304, ~(1 << 10), 0);
467 RCBA32_OR(0x21a4, (1 << 11)|(1 << 10));
468 RCBA32_OR(0x21a8, 0x3);
469}
470
471static void pch_decode_init(struct device *dev)
472{
473 config_t *config = dev->chip_info;
474
475 printk(BIOS_DEBUG, "pch_decode_init\n");
476
477 pci_write_config32(dev, LPC_GEN1_DEC, config->gen1_dec);
478 pci_write_config32(dev, LPC_GEN2_DEC, config->gen2_dec);
479 pci_write_config32(dev, LPC_GEN3_DEC, config->gen3_dec);
480 pci_write_config32(dev, LPC_GEN4_DEC, config->gen4_dec);
481}
482
Nico Huber7b2f9f62015-10-01 19:00:51 +0200483static void pch_spi_init(const struct device *const dev)
484{
485 const config_t *const config = dev->chip_info;
486
487 printk(BIOS_DEBUG, "pch_spi_init\n");
488
489 if (config->spi_uvscc)
490 RCBA32(0x3800 + 0xc8) = config->spi_uvscc;
491 if (config->spi_lvscc)
492 RCBA32(0x3800 + 0xc4) = config->spi_lvscc;
493
494 if (config->spi_uvscc || config->spi_lvscc)
495 RCBA32_OR(0x3800 + 0xc4, 1 << 23); /* lock both UVSCC + LVSCC */
496}
497
Stefan Reinauer8e073822012-04-04 00:07:22 +0200498static void lpc_init(struct device *dev)
499{
500 printk(BIOS_DEBUG, "pch: lpc_init\n");
501
502 /* Set the value for PCI command register. */
503 pci_write_config16(dev, PCI_COMMAND, 0x000f);
504
505 /* IO APIC initialization. */
Paul Menzel9c50e6a2013-05-03 12:23:39 +0200506 pch_enable_ioapic(dev);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200507
508 pch_enable_serial_irqs(dev);
509
510 /* Setup the PIRQ. */
511 pch_pirq_init(dev);
512
513 /* Setup power options. */
514 pch_power_options(dev);
515
516 /* Initialize power management */
Duncan Laurie3f6a4d72012-06-28 13:03:40 -0700517 switch (pch_silicon_type()) {
518 case PCH_TYPE_CPT: /* CougarPoint */
519 cpt_pm_init(dev);
520 break;
521 case PCH_TYPE_PPT: /* PantherPoint */
522 ppt_pm_init(dev);
523 break;
524 default:
525 printk(BIOS_ERR, "Unknown Chipset: 0x%04x\n", dev->device);
526 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200527
528 /* Set the state of the GPIO lines. */
529 //gpio_init(dev);
530
531 /* Initialize the real time clock. */
532 pch_rtc_init(dev);
533
534 /* Initialize ISA DMA. */
535 isa_dma_init();
536
537 /* Initialize the High Precision Event Timers, if present. */
538 enable_hpet();
539
540 /* Initialize Clock Gating */
541 enable_clock_gating(dev);
542
543 setup_i8259();
544
545 /* The OS should do this? */
546 /* Interrupt 9 should be level triggered (SCI) */
547 i8259_configure_irq_trigger(9, 1);
548
549 pch_disable_smm_only_flashing(dev);
550
Vladimir Serbinenkoa3e41c02015-05-28 16:04:17 +0200551 pch_set_acpi_mode();
Stefan Reinauer8e073822012-04-04 00:07:22 +0200552
553 pch_fixups(dev);
Nico Huber7b2f9f62015-10-01 19:00:51 +0200554
555 pch_spi_init(dev);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200556}
557
558static void pch_lpc_read_resources(device_t dev)
559{
560 struct resource *res;
Marc Jonesa0bec172012-07-13 14:14:34 -0600561 config_t *config = dev->chip_info;
562 u8 io_index = 0;
Stefan Reinauer8e073822012-04-04 00:07:22 +0200563
564 /* Get the normal PCI resources of this device. */
565 pci_dev_read_resources(dev);
566
567 /* Add an extra subtractive resource for both memory and I/O. */
Marc Jonesa0bec172012-07-13 14:14:34 -0600568 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Stefan Reinauer8e073822012-04-04 00:07:22 +0200569 res->base = 0;
570 res->size = 0x1000;
571 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
572 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
573
Marc Jonesa0bec172012-07-13 14:14:34 -0600574 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Vladimir Serbinenko0650cd02014-02-05 15:03:50 +0100575 res->base = 0xff000000;
576 /* Some systems (e.g. X230) have 12 MiB flash.
577 SPI controller supports up to 2 x 16 MiB of flash but
578 address map limits this to 16MiB. */
579 res->size = 0x01000000; /* 16 MB for flash */
Stefan Reinauer8e073822012-04-04 00:07:22 +0200580 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
581 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
582
583 res = new_resource(dev, 3); /* IOAPIC */
584 res->base = IO_APIC_ADDR;
585 res->size = 0x00001000;
586 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Marc Jonesa0bec172012-07-13 14:14:34 -0600587
588 /* Set PCH IO decode ranges if required.*/
589 if ((config->gen1_dec & 0xFFFC) > 0x1000) {
590 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
591 res->base = config->gen1_dec & 0xFFFC;
592 res->size = (config->gen1_dec >> 16) & 0xFC;
593 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
594 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
595 }
596
597 if ((config->gen2_dec & 0xFFFC) > 0x1000) {
598 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
599 res->base = config->gen2_dec & 0xFFFC;
600 res->size = (config->gen2_dec >> 16) & 0xFC;
601 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
602 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
603 }
604
605 if ((config->gen3_dec & 0xFFFC) > 0x1000) {
606 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
607 res->base = config->gen3_dec & 0xFFFC;
608 res->size = (config->gen3_dec >> 16) & 0xFC;
609 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
610 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
611 }
612
613 if ((config->gen4_dec & 0xFFFC) > 0x1000) {
614 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
615 res->base = config->gen4_dec & 0xFFFC;
616 res->size = (config->gen4_dec >> 16) & 0xFC;
617 res->flags = IORESOURCE_IO| IORESOURCE_SUBTRACTIVE |
618 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
619 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200620}
621
622static void pch_lpc_enable_resources(device_t dev)
623{
624 pch_decode_init(dev);
625 return pci_dev_enable_resources(dev);
626}
627
628static void pch_lpc_enable(device_t dev)
629{
630 /* Enable PCH Display Port */
631 RCBA16(DISPBDF) = 0x0010;
632 RCBA32_OR(FD2, PCH_ENABLE_DBDF);
633
634 pch_enable(dev);
635}
636
637static void set_subsystem(device_t dev, unsigned vendor, unsigned device)
638{
639 if (!vendor || !device) {
640 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
641 pci_read_config32(dev, PCI_VENDOR_ID));
642 } else {
643 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
644 ((device & 0xffff) << 16) | (vendor & 0xffff));
645 }
646}
647
Alexander Couzensa90dad12015-04-12 21:49:46 +0200648static void southbridge_inject_dsdt(device_t dev)
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +0200649{
650 global_nvs_t *gnvs = cbmem_add (CBMEM_ID_ACPI_GNVS, sizeof (*gnvs));
651 void *opregion;
652
653 /* Calling northbridge code as gnvs contains opregion address. */
654 opregion = igd_make_opregion();
655
656 if (gnvs) {
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100657 const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
Vladimir Serbinenko7309c642014-10-05 11:07:33 +0200658 memset(gnvs, 0, sizeof (*gnvs));
659
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +0200660 acpi_create_gnvs(gnvs);
Vladimir Serbinenko06c788d2014-10-12 00:17:11 +0200661
662 gnvs->apic = 1;
663 gnvs->mpen = 1; /* Enable Multi Processing */
664 gnvs->pcnt = dev_count_cpu();
665
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100666 gnvs->ndid = gfx->ndid;
667 memcpy(gnvs->did, gfx->did, sizeof(gnvs->did));
668
Vladimir Serbinenko06c788d2014-10-12 00:17:11 +0200669#if CONFIG_CHROMEOS
670 chromeos_init_vboot(&(gnvs->chromeos));
671#endif
672
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +0200673 /* IGD OpRegion Base Address */
674 gnvs->aslb = (u32)opregion;
675 /* And tell SMI about it */
676 smm_setup_structures(gnvs, NULL, NULL);
677
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +0200678 /* Add it to DSDT. */
Vladimir Serbinenko226d7842014-11-04 21:09:23 +0100679 acpigen_write_scope("\\");
680 acpigen_write_name_dword("NVSA", (u32) gnvs);
681 acpigen_pop_len();
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +0200682 }
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +0200683}
684
Vladimir Serbinenko5b044ae2014-10-25 15:20:55 +0200685void acpi_fill_fadt(acpi_fadt_t *fadt)
686{
687 device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
688 config_t *chip = dev->chip_info;
689 u16 pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
690 int c2_latency;
691
692 fadt->model = 1;
693
694 fadt->sci_int = 0x9;
695 fadt->smi_cmd = APM_CNT;
696 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
697 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
698 fadt->s4bios_req = 0x0;
699 fadt->pstate_cnt = 0;
700
701 fadt->pm1a_evt_blk = pmbase;
702 fadt->pm1b_evt_blk = 0x0;
703 fadt->pm1a_cnt_blk = pmbase + 0x4;
704 fadt->pm1b_cnt_blk = 0x0;
705 fadt->pm2_cnt_blk = pmbase + 0x50;
706 fadt->pm_tmr_blk = pmbase + 0x8;
707 fadt->gpe0_blk = pmbase + 0x20;
708 fadt->gpe1_blk = 0;
709
710 fadt->pm1_evt_len = 4;
711 fadt->pm1_cnt_len = 2;
712 fadt->pm2_cnt_len = 1;
713 fadt->pm_tmr_len = 4;
714 fadt->gpe0_blk_len = 16;
715 fadt->gpe1_blk_len = 0;
716 fadt->gpe1_base = 0;
717 fadt->cst_cnt = 0;
718 c2_latency = chip->c2_latency;
719 if (!c2_latency) {
720 c2_latency = 101; /* c2 unsupported */
721 }
722 fadt->p_lvl2_lat = c2_latency;
723 fadt->p_lvl3_lat = 87;
724 fadt->flush_size = 1024;
725 fadt->flush_stride = 16;
726 fadt->duty_offset = 1;
727 if (chip->p_cnt_throttling_supported) {
728 fadt->duty_width = 3;
729 } else {
730 fadt->duty_width = 0;
731 }
732 fadt->day_alrm = 0xd;
733 fadt->mon_alrm = 0x00;
734 fadt->century = 0x00;
735 fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042;
736
737 fadt->flags = ACPI_FADT_WBINVD |
738 ACPI_FADT_C1_SUPPORTED |
739 ACPI_FADT_SLEEP_BUTTON |
740 ACPI_FADT_RESET_REGISTER |
741 ACPI_FADT_SEALED_CASE |
742 ACPI_FADT_S4_RTC_WAKE |
743 ACPI_FADT_PLATFORM_CLOCK;
744 if (chip->docking_supported) {
745 fadt->flags |= ACPI_FADT_DOCKING_SUPPORTED;
746 }
747 if (c2_latency < 100) {
748 fadt->flags |= ACPI_FADT_C2_MP_SUPPORTED;
749 }
750
751 fadt->reset_reg.space_id = 1;
752 fadt->reset_reg.bit_width = 8;
753 fadt->reset_reg.bit_offset = 0;
754 fadt->reset_reg.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
755 fadt->reset_reg.addrl = 0xcf9;
756 fadt->reset_reg.addrh = 0;
757
758 fadt->reset_value = 6;
759
760 fadt->x_pm1a_evt_blk.space_id = 1;
761 fadt->x_pm1a_evt_blk.bit_width = 32;
762 fadt->x_pm1a_evt_blk.bit_offset = 0;
763 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
764 fadt->x_pm1a_evt_blk.addrl = pmbase;
765 fadt->x_pm1a_evt_blk.addrh = 0x0;
766
767 fadt->x_pm1b_evt_blk.space_id = 1;
768 fadt->x_pm1b_evt_blk.bit_width = 0;
769 fadt->x_pm1b_evt_blk.bit_offset = 0;
770 fadt->x_pm1b_evt_blk.access_size = 0;
771 fadt->x_pm1b_evt_blk.addrl = 0x0;
772 fadt->x_pm1b_evt_blk.addrh = 0x0;
773
774 fadt->x_pm1a_cnt_blk.space_id = 1;
775 fadt->x_pm1a_cnt_blk.bit_width = 16;
776 fadt->x_pm1a_cnt_blk.bit_offset = 0;
777 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
778 fadt->x_pm1a_cnt_blk.addrl = pmbase + 0x4;
779 fadt->x_pm1a_cnt_blk.addrh = 0x0;
780
781 fadt->x_pm1b_cnt_blk.space_id = 1;
782 fadt->x_pm1b_cnt_blk.bit_width = 0;
783 fadt->x_pm1b_cnt_blk.bit_offset = 0;
784 fadt->x_pm1b_cnt_blk.access_size = 0;
785 fadt->x_pm1b_cnt_blk.addrl = 0x0;
786 fadt->x_pm1b_cnt_blk.addrh = 0x0;
787
788 fadt->x_pm2_cnt_blk.space_id = 1;
789 fadt->x_pm2_cnt_blk.bit_width = 8;
790 fadt->x_pm2_cnt_blk.bit_offset = 0;
791 fadt->x_pm2_cnt_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
792 fadt->x_pm2_cnt_blk.addrl = pmbase + 0x50;
793 fadt->x_pm2_cnt_blk.addrh = 0x0;
794
795 fadt->x_pm_tmr_blk.space_id = 1;
796 fadt->x_pm_tmr_blk.bit_width = 32;
797 fadt->x_pm_tmr_blk.bit_offset = 0;
798 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
799 fadt->x_pm_tmr_blk.addrl = pmbase + 0x8;
800 fadt->x_pm_tmr_blk.addrh = 0x0;
801
802 fadt->x_gpe0_blk.space_id = 1;
803 fadt->x_gpe0_blk.bit_width = 128;
804 fadt->x_gpe0_blk.bit_offset = 0;
805 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
806 fadt->x_gpe0_blk.addrl = pmbase + 0x20;
807 fadt->x_gpe0_blk.addrh = 0x0;
808
809 fadt->x_gpe1_blk.space_id = 1;
810 fadt->x_gpe1_blk.bit_width = 0;
811 fadt->x_gpe1_blk.bit_offset = 0;
812 fadt->x_gpe1_blk.access_size = 0;
813 fadt->x_gpe1_blk.addrl = 0x0;
814 fadt->x_gpe1_blk.addrh = 0x0;
815}
816
Alexander Couzens5eea4582015-04-12 22:18:55 +0200817static void southbridge_fill_ssdt(device_t device)
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100818{
819 device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
820 config_t *chip = dev->chip_info;
821
822 intel_acpi_pcie_hotplug_generator(chip->pcie_hotplug_map, 8);
823}
824
Vladimir Serbinenkob06a2492015-05-21 10:32:59 +0200825static void lpc_final(struct device *dev)
826{
827 if (CONFIG_HAVE_SMI_HANDLER && acpi_is_wakeup_s3()) {
828 /* Call SMM finalize() handlers before resume */
829 outb(0xcb, 0xb2);
830 }
831}
832
Stefan Reinauer8e073822012-04-04 00:07:22 +0200833static struct pci_operations pci_ops = {
834 .set_subsystem = set_subsystem,
835};
836
837static struct device_operations device_ops = {
838 .read_resources = pch_lpc_read_resources,
839 .set_resources = pci_dev_set_resources,
840 .enable_resources = pch_lpc_enable_resources,
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +0200841 .write_acpi_tables = acpi_write_hpet,
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +0200842 .acpi_inject_dsdt_generator = southbridge_inject_dsdt,
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100843 .acpi_fill_ssdt_generator = southbridge_fill_ssdt,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200844 .init = lpc_init,
Vladimir Serbinenkob06a2492015-05-21 10:32:59 +0200845 .final = lpc_final,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200846 .enable = pch_lpc_enable,
Kyösti Mälkkid0e212c2015-02-26 20:47:47 +0200847 .scan_bus = scan_lpc_bus,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200848 .ops_pci = &pci_ops,
849};
850
851
Kimarie Hoote6f459c2012-07-14 08:26:08 -0600852/* IDs for LPC device of Intel 6 Series Chipset, Intel 7 Series Chipset, and
853 * Intel C200 Series Chipset
Stefan Reinauer8e073822012-04-04 00:07:22 +0200854 */
855
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700856static const unsigned short pci_device_ids[] = { 0x1c46, 0x1c47, 0x1c49, 0x1c4a,
857 0x1c4b, 0x1c4c, 0x1c4d, 0x1c4e,
858 0x1c4f, 0x1c50, 0x1c52, 0x1c54,
Kimarie Hoote6f459c2012-07-14 08:26:08 -0600859 0x1e55, 0x1c56, 0x1e57, 0x1c5c,
Damien Zammit31ca97c2015-04-20 16:50:52 +1000860 0x1e5d, 0x1e5e, 0x1e5f, 0x1e49,
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700861 0 };
862
863static const struct pci_driver pch_lpc __pci_driver = {
864 .ops = &device_ops,
865 .vendor = PCI_VENDOR_ID_INTEL,
866 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200867};