blob: 0e5a2605aca2c130eea4ed9c12c16abaf8462b14 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of 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, MA 02110-1301 USA
19 */
20
21#include <console/console.h>
22#include <delay.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <pc80/mc146818rtc.h>
27#include <pc80/isa-dma.h>
28#include <pc80/i8259.h>
29#include <arch/io.h>
30#include <arch/ioapic.h>
31#include <arch/acpi.h>
32#include <cpu/cpu.h>
33#include <cpu/x86/smm.h>
34#include <cbmem.h>
35#include <reg_script.h>
36#include <string.h>
37#include <broadwell/gpio.h>
38#include <broadwell/iobp.h>
39#include <broadwell/iomap.h>
40#include <broadwell/lpc.h>
41#include <broadwell/nvs.h>
42#include <broadwell/pch.h>
43#include <broadwell/pci_devs.h>
44#include <broadwell/pm.h>
45#include <broadwell/ramstage.h>
46#include <broadwell/rcba.h>
47#include <chip.h>
Vladimir Serbinenkob219da82014-11-09 03:29:30 +010048#include <arch/acpi.h>
49#include <arch/acpigen.h>
50#include <cpu/cpu.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070051
52static void pch_enable_ioapic(struct device *dev)
53{
54 u32 reg32;
55
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080056 set_ioapic_id(VIO_APIC_VADDR, 0x02);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070057
58 /* affirm full set of redirection table entries ("write once") */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080059 reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070060
61 /* PCH-LP has 39 redirection entries */
62 reg32 &= ~0x00ff0000;
63 reg32 |= 0x00270000;
64
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080065 io_apic_write(VIO_APIC_VADDR, 0x01, reg32);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070066
67 /*
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);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070072}
73
74/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
75 * 0x00 - 0000 = Reserved
76 * 0x01 - 0001 = Reserved
77 * 0x02 - 0010 = Reserved
78 * 0x03 - 0011 = IRQ3
79 * 0x04 - 0100 = IRQ4
80 * 0x05 - 0101 = IRQ5
81 * 0x06 - 0110 = IRQ6
82 * 0x07 - 0111 = IRQ7
83 * 0x08 - 1000 = Reserved
84 * 0x09 - 1001 = IRQ9
85 * 0x0A - 1010 = IRQ10
86 * 0x0B - 1011 = IRQ11
87 * 0x0C - 1100 = IRQ12
88 * 0x0D - 1101 = Reserved
89 * 0x0E - 1110 = IRQ14
90 * 0x0F - 1111 = IRQ15
91 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
92 * 0x80 - The PIRQ is not routed.
93 */
94
95static void pch_pirq_init(device_t dev)
96{
97 device_t irq_dev;
98 config_t *config = dev->chip_info;
99
100 pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
101 pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
102 pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
103 pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
104
105 pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
106 pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
107 pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
108 pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
109
110 for(irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
111 u8 int_pin=0, int_line=0;
112
113 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
114 continue;
115
116 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
117
118 switch (int_pin) {
119 case 1: /* INTA# */ int_line = config->pirqa_routing; break;
120 case 2: /* INTB# */ int_line = config->pirqb_routing; break;
121 case 3: /* INTC# */ int_line = config->pirqc_routing; break;
122 case 4: /* INTD# */ int_line = config->pirqd_routing; break;
123 }
124
125 if (!int_line)
126 continue;
127
128 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
129 }
130}
131
132static void pch_power_options(device_t dev)
133{
134 u16 reg16;
135 const char *state;
136 /* Get the chip configuration */
137 config_t *config = dev->chip_info;
138 int pwr_on=CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
139
140 /* Which state do we want to goto after g3 (power restored)?
141 * 0 == S0 Full On
142 * 1 == S5 Soft Off
143 *
144 * If the option is not existent (Laptops), use Kconfig setting.
145 */
146 get_option(&pwr_on, "power_on_after_fail");
147
148 reg16 = pci_read_config16(dev, GEN_PMCON_3);
149 reg16 &= 0xfffe;
150 switch (pwr_on) {
151 case MAINBOARD_POWER_OFF:
152 reg16 |= 1;
153 state = "off";
154 break;
155 case MAINBOARD_POWER_ON:
156 reg16 &= ~1;
157 state = "on";
158 break;
159 case MAINBOARD_POWER_KEEP:
160 reg16 &= ~1;
161 state = "state keep";
162 break;
163 default:
164 state = "undefined";
165 }
166 pci_write_config16(dev, GEN_PMCON_3, reg16);
167 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
168
169 /* GPE setup based on device tree configuration */
170 enable_all_gpe(config->gpe0_en_1, config->gpe0_en_2,
171 config->gpe0_en_3, config->gpe0_en_4);
172
173 /* SMI setup based on device tree configuration */
174 enable_alt_smi(config->alt_gp_smi_en);
175}
176
177static void pch_rtc_init(struct device *dev)
178{
179 u8 reg8;
180 int rtc_failed;
181
182 reg8 = pci_read_config8(dev, GEN_PMCON_3);
183 rtc_failed = reg8 & RTC_BATTERY_DEAD;
184 if (rtc_failed) {
185 reg8 &= ~RTC_BATTERY_DEAD;
186 pci_write_config8(dev, GEN_PMCON_3, reg8);
187 printk(BIOS_DEBUG, "rtc_failed = 0x%x\n", rtc_failed);
188 }
189
190 cmos_init(rtc_failed);
191}
192
193static const struct reg_script pch_misc_init_script[] = {
194 /* Setup SLP signal assertion, SLP_S4=4s, SLP_S3=50ms */
195 REG_PCI_RMW16(GEN_PMCON_3, ~((3 << 4)|(1 << 10)),
196 (1 << 3)|(1 << 11)|(1 << 12)),
197 /* Prepare sleep mode */
198 REG_IO_RMW32(ACPI_BASE_ADDRESS + PM1_CNT, ~SLP_TYP, SCI_EN),
199 /* Setup NMI on errors, disable SERR */
200 REG_IO_RMW8(0x61, ~0xf0, (1 << 2)),
201 /* Disable NMI sources */
202 REG_IO_OR8(0x70, (1 << 7)),
203 /* Indicate DRAM init done for MRC */
204 REG_PCI_OR8(GEN_PMCON_2, (1 << 7)),
205 /* Enable BIOS updates outside of SMM */
206 REG_PCI_RMW8(0xdc, ~(1 << 5), 0),
207 /* Clear status bits to prevent unexpected wake */
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700208 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x3310, 0x0000002f),
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700209 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x3f02, ~0x0000000f, 0),
210 /* Setup SERIRQ, enable continuous mode */
211 REG_PCI_OR8(SERIRQ_CNTL, (1 << 7) | (1 << 6)),
212#if !CONFIG_SERIRQ_CONTINUOUS_MODE
213 REG_PCI_RMW8(SERIRQ_CNTL, ~(1 << 6), 0),
214#endif
215 REG_SCRIPT_END
216};
217
218/* Magic register settings for power management */
219static const struct reg_script pch_pm_init_script[] = {
220 REG_PCI_WRITE8(0xa9, 0x46),
221 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x232c, ~1, 0),
222 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x1100, 0x0000c13f),
223 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x2320, ~0x60, 0x10),
224 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3314, 0x00012fff),
225 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x3318, ~0x000f0330, 0x0dcf0400),
226 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3324, 0x04000000),
227 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3368, 0x00041400),
228 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3388, 0x3f8ddbff),
229 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33ac, 0x00007001),
230 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33b0, 0x00181900),
231 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33c0, 0x00060A00),
232 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33d0, 0x06200840),
233 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a28, 0x01010101),
234 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a2c, 0x040c0404),
235 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a9c, 0x9000000a),
236 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x2b1c, 0x03808033),
237 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x2b34, 0x80000009),
238 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3348, 0x022ddfff),
239 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x334c, 0x00000001),
240 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3358, 0x0001c000),
241 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3380, 0x3f8ddbff),
242 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3384, 0x0001c7e1),
243 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x338c, 0x0001c7e1),
244 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3398, 0x0001c000),
245 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33a8, 0x00181900),
246 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33dc, 0x00080000),
247 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33e0, 0x00000001),
248 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a20, 0x0000040c),
249 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a24, 0x01010101),
250 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a30, 0x01010101),
251 REG_PCI_RMW32(0xac, ~0x00200000, 0),
252 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x0410, 0x00000003),
253 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x2618, 0x08000000),
254 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x2300, 0x00000002),
255 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x2600, 0x00000008),
256 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x33b4, 0x00007001),
257 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3350, 0x022ddfff),
258 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3354, 0x00000001),
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700259 /* Power Optimizer */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700260 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x33d4, 0x08000000),
261 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x33c8, 0x08000080),
262 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x2b10, 0x0000883c),
263 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x2b14, 0x1e0a4616),
264 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x2b24, 0x40000005),
265 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x2b20, 0x0005db01),
266 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a80, 0x05145005),
267 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x3a84, 0x00001005),
268 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x33d4, 0x2fff2fb1),
269 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x33c8, 0x00008000),
270 REG_SCRIPT_END
271};
272
273static void pch_enable_mphy(void)
274{
275 u32 gpio71_native = gpio_is_native(71);
276 u32 data_and = 0xffffffff;
277 u32 data_or = (1 << 14) | (1 << 13) | (1 << 12);
278
279 if (gpio71_native) {
280 data_or |= (1 << 0);
281 if (pch_is_wpt()) {
282 data_and &= ~((1 << 7) | (1 << 6) | (1 << 3));
283 data_or |= (1 << 5) | (1 << 4);
284
285 if (pch_is_wpt_ulx()) {
286 /* Check if SATA and USB3 MPHY are enabled */
287 u32 strap19 = pch_read_soft_strap(19);
288 strap19 &= ((1 << 31) | (1 << 30));
289 strap19 >>= 30;
290 if (strap19 == 3) {
291 data_or |= (1 << 3);
292 printk(BIOS_DEBUG, "Enable ULX MPHY PG "
293 "control in single domain\n");
294 } else if (strap19 == 0) {
295 printk(BIOS_DEBUG, "Enable ULX MPHY PG "
296 "control in split domains\n");
297 } else {
298 printk(BIOS_DEBUG, "Invalid PCH Soft "
299 "Strap 19 configuration\n");
300 }
301 } else {
302 data_or |= (1 << 3);
303 }
304 }
305 }
306
307 pch_iobp_update(0xCF000000, data_and, data_or);
308}
309
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700310static void pch_init_deep_sx(struct device *dev)
311{
312 config_t *config = dev->chip_info;
313
314 if (config->deep_sx_enable_ac) {
315 RCBA32_OR(DEEP_S3_POL, DEEP_S3_EN_AC);
316 RCBA32_OR(DEEP_S5_POL, DEEP_S5_EN_AC);
317 }
318
319 if (config->deep_sx_enable_dc) {
320 RCBA32_OR(DEEP_S3_POL, DEEP_S3_EN_DC);
321 RCBA32_OR(DEEP_S5_POL, DEEP_S5_EN_DC);
322 }
323
324 if (config->deep_sx_enable_ac || config->deep_sx_enable_dc)
325 RCBA32_OR(DEEP_SX_CONFIG,
326 DEEP_SX_WAKE_PIN_EN | DEEP_SX_GP27_PIN_EN);
327}
328
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700329/* Power Management init */
330static void pch_pm_init(struct device *dev)
331{
332 printk(BIOS_DEBUG, "PCH PM init\n");
333
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700334 pch_init_deep_sx(dev);
335
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700336 pch_enable_mphy();
337
338 reg_script_run_on_dev(dev, pch_pm_init_script);
339
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700340 if (pch_is_wpt()) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700341 RCBA32_OR(0x33e0, (1 << 4) | (1 << 1));
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700342 RCBA32_OR(0x2b1c, (1 << 22) | (1 << 14) | (1 << 13));
343 RCBA32(0x33e4) = 0x16bf0002;
344 RCBA32_OR(0x33e4, 0x1);
345 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700346
347 pch_iobp_update(0xCA000000, ~0UL, 0x00000009);
348
349 /* Set RCBA 0x2b1c[29]=1 if DSP disabled */
350 if (RCBA32(FD) & PCH_DISABLE_ADSPD)
351 RCBA32_OR(0x2b1c, (1 << 29));
352
353 /* Lock */
354 RCBA32_OR(0x3a6c, 0x00000001);
355}
356
357static void pch_cg_init(device_t dev)
358{
359 u32 reg32;
360 u16 reg16;
361
362 /* DMI */
363 RCBA32_OR(0x2234, 0xf);
364
365 reg16 = pci_read_config16(dev, GEN_PMCON_1);
366 reg16 &= ~(1 << 10); /* Disable BIOS_PCI_EXP_EN for native PME */
367 if (pch_is_wpt())
368 reg16 &= ~(1 << 11);
369 else
370 reg16 |= (1 << 11);
371 reg16 |= (1 << 5) | (1 << 6) | (1 << 7) | (1 << 12);
372 reg16 |= (1 << 2); // PCI CLKRUN# Enable
373 pci_write_config16(dev, GEN_PMCON_1, reg16);
374
375 /*
376 * RCBA + 0x2614[27:25,14:13,10,8] = 101,11,1,1
377 * RCBA + 0x2614[23:16] = 0x20
378 * RCBA + 0x2614[30:28] = 0x0
379 * RCBA + 0x2614[26] = 1 (IF 0:2.0@0x08 >= 0x0b)
380 */
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700381 RCBA32_AND_OR(0x2614, ~0x64ff0000, 0x0a206500);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700382
383 /* Check for 0:2.0@0x08 >= 0x0b */
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700384 if (pch_is_wpt() || pci_read_config8(SA_DEV_IGD, 0x8) >= 0x0b)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700385 RCBA32_OR(0x2614, (1 << 26));
386
387 RCBA32_OR(0x900, 0x0000031f);
388
389 reg32 = RCBA32(CG);
390 if (RCBA32(0x3454) & (1 << 4))
391 reg32 &= ~(1 << 29); // LPC Dynamic
392 else
393 reg32 |= (1 << 29); // LPC Dynamic
394 reg32 |= (1 << 31); // LP LPC
395 reg32 |= (1 << 30); // LP BLA
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700396 if (RCBA32(0x3454) & (1 << 4))
397 reg32 &= ~(1 << 29);
398 else
399 reg32 |= (1 << 29);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700400 reg32 |= (1 << 28); // GPIO Dynamic
401 reg32 |= (1 << 27); // HPET Dynamic
402 reg32 |= (1 << 26); // Generic Platform Event Clock
403 if (RCBA32(BUC) & PCH_DISABLE_GBE)
404 reg32 |= (1 << 23); // GbE Static
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700405 if (RCBA32(FD) & PCH_DISABLE_HD_AUDIO)
406 reg32 |= (1 << 21); // HDA Static
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700407 reg32 |= (1 << 22); // HDA Dynamic
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700408 RCBA32(CG) = reg32;
409
410 /* PCH-LP LPC */
411 if (pch_is_wpt())
412 RCBA32_AND_OR(0x3434, ~0x1f, 0x17);
413 else
414 RCBA32_OR(0x3434, 0x7);
415
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700416 /* SPI */
417 RCBA32_OR(0x38c0, 0x3c07);
418
419 pch_iobp_update(0xCE00C000, ~1UL, 0x00000000);
420}
421
422static void pch_set_acpi_mode(void)
423{
424#if CONFIG_HAVE_SMI_HANDLER
Kyösti Mälkki9e94dbf2015-01-08 20:03:18 +0200425 if (!acpi_is_wakeup_s3()) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700426 printk(BIOS_DEBUG, "Disabling ACPI via APMC:\n");
427 outb(APM_CNT_ACPI_DISABLE, APM_CNT);
428 printk(BIOS_DEBUG, "done.\n");
429 }
430#endif /* CONFIG_HAVE_SMI_HANDLER */
431}
432
433static void lpc_init(struct device *dev)
434{
435 /* Legacy initialization */
436 isa_dma_init();
437 pch_rtc_init(dev);
438 reg_script_run_on_dev(dev, pch_misc_init_script);
439
440 /* Interrupt configuration */
441 pch_enable_ioapic(dev);
442 pch_pirq_init(dev);
443 setup_i8259();
444 i8259_configure_irq_trigger(9, 1);
445
446 /* Initialize power management */
447 pch_power_options(dev);
448 pch_pm_init(dev);
449 pch_cg_init(dev);
450
451 pch_set_acpi_mode();
452}
453
454static void pch_lpc_add_mmio_resources(device_t dev)
455{
456 u32 reg;
457 struct resource *res;
458 const u32 default_decode_base = IO_APIC_ADDR;
459
460 /*
461 * Just report all resources from IO-APIC base to 4GiB. Don't mark
462 * them reserved as that may upset the OS if this range is marked
463 * as reserved in the e820.
464 */
465 res = new_resource(dev, OIC);
466 res->base = default_decode_base;
467 res->size = 0 - default_decode_base;
468 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
469
470 /* RCBA */
471 if (RCBA_BASE_ADDRESS < default_decode_base) {
472 res = new_resource(dev, RCBA);
473 res->base = RCBA_BASE_ADDRESS;
474 res->size = 16 * 1024;
475 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
476 IORESOURCE_FIXED | IORESOURCE_RESERVE;
477 }
478
479 /* Check LPC Memory Decode register. */
480 reg = pci_read_config32(dev, LGMR);
481 if (reg & 1) {
482 reg &= ~0xffff;
483 if (reg < default_decode_base) {
484 res = new_resource(dev, LGMR);
485 res->base = reg;
486 res->size = 16 * 1024;
487 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
488 IORESOURCE_FIXED | IORESOURCE_RESERVE;
489 }
490 }
491}
492
493/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
494#define LPC_DEFAULT_IO_RANGE_LOWER 0
495#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
496
497static inline int pch_io_range_in_default(u16 base, u16 size)
498{
499 /* Does it start above the range? */
500 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
501 return 0;
502
503 /* Is it entirely contained? */
504 if (base >= LPC_DEFAULT_IO_RANGE_LOWER &&
505 (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
506 return 1;
507
508 /* This will return not in range for partial overlaps. */
509 return 0;
510}
511
512/*
513 * Note: this function assumes there is no overlap with the default LPC device's
514 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
515 */
516static void pch_lpc_add_io_resource(device_t dev, u16 base, u16 size, int index)
517{
518 struct resource *res;
519
520 if (pch_io_range_in_default(base, size))
521 return;
522
523 res = new_resource(dev, index);
524 res->base = base;
525 res->size = size;
526 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
527}
528
529static void pch_lpc_add_gen_io_resources(device_t dev, int reg_value, int index)
530{
531 /*
532 * Check if the register is enabled. If so and the base exceeds the
Martin Rothde7ed6f2014-12-07 14:58:18 -0700533 * device's default claim range add the resource.
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700534 */
535 if (reg_value & 1) {
536 u16 base = reg_value & 0xfffc;
537 u16 size = (0x3 | ((reg_value >> 16) & 0xfc)) + 1;
538 pch_lpc_add_io_resource(dev, base, size, index);
539 }
540}
541
542static void pch_lpc_add_io_resources(device_t dev)
543{
544 struct resource *res;
545 config_t *config = dev->chip_info;
546
547 /* Add the default claimed IO range for the LPC device. */
548 res = new_resource(dev, 0);
549 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
550 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
551 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
552
553 /* GPIOBASE */
554 pch_lpc_add_io_resource(dev, GPIO_BASE_ADDRESS,
555 GPIO_BASE_SIZE, GPIO_BASE);
556
557 /* PMBASE */
558 pch_lpc_add_io_resource(dev, ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, PMBASE);
559
560 /* LPC Generic IO Decode range. */
561 pch_lpc_add_gen_io_resources(dev, config->gen1_dec, LPC_GEN1_DEC);
562 pch_lpc_add_gen_io_resources(dev, config->gen2_dec, LPC_GEN2_DEC);
563 pch_lpc_add_gen_io_resources(dev, config->gen3_dec, LPC_GEN3_DEC);
564 pch_lpc_add_gen_io_resources(dev, config->gen4_dec, LPC_GEN4_DEC);
565}
566
567static void pch_lpc_read_resources(device_t dev)
568{
569 global_nvs_t *gnvs;
570
571 /* Get the normal PCI resources of this device. */
572 pci_dev_read_resources(dev);
573
574 /* Add non-standard MMIO resources. */
575 pch_lpc_add_mmio_resources(dev);
576
577 /* Add IO resources. */
578 pch_lpc_add_io_resources(dev);
579
580 /* Allocate ACPI NVS in CBMEM */
581 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(global_nvs_t));
Kyösti Mälkki9e94dbf2015-01-08 20:03:18 +0200582 if (!acpi_is_wakeup_s3() && gnvs)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700583 memset(gnvs, 0, sizeof(global_nvs_t));
584}
585
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100586static void southcluster_inject_dsdt(void)
587{
588 global_nvs_t *gnvs;
589
590 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
591 if (!gnvs) {
592 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof (*gnvs));
593 if (gnvs)
594 memset(gnvs, 0, sizeof(*gnvs));
595 }
596
597 if (gnvs) {
598 memset(gnvs, 0, sizeof(*gnvs));
599 acpi_create_gnvs(gnvs);
600 acpi_save_gnvs((unsigned long)gnvs);
601 /* And tell SMI about it */
602 smm_setup_structures(gnvs, NULL, NULL);
603
604 /* Add it to DSDT. */
605 acpigen_write_scope("\\");
606 acpigen_write_name_dword("NVSA", (u32) gnvs);
607 acpigen_pop_len();
608 }
609}
610
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700611static struct device_operations device_ops = {
612 .read_resources = &pch_lpc_read_resources,
613 .set_resources = &pci_dev_set_resources,
614 .enable_resources = &pci_dev_enable_resources,
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100615 .acpi_inject_dsdt_generator = southcluster_inject_dsdt,
616 .write_acpi_tables = acpi_write_hpet,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700617 .init = &lpc_init,
618 .scan_bus = &scan_static_bus,
619 .ops_pci = &broadwell_pci_ops,
620};
621
622static const unsigned short pci_device_ids[] = {
623 PCH_LPT_LP_SAMPLE,
624 PCH_LPT_LP_PREMIUM,
625 PCH_LPT_LP_MAINSTREAM,
626 PCH_LPT_LP_VALUE,
627 PCH_WPT_HSW_U_SAMPLE,
628 PCH_WPT_BDW_U_SAMPLE,
629 PCH_WPT_BDW_U_PREMIUM,
630 PCH_WPT_BDW_U_BASE,
631 PCH_WPT_BDW_Y_SAMPLE,
632 PCH_WPT_BDW_Y_PREMIUM,
633 PCH_WPT_BDW_Y_BASE,
634 PCH_WPT_BDW_H,
635 0
636};
637
638static const struct pci_driver pch_lpc __pci_driver = {
639 .ops = &device_ops,
640 .vendor = PCI_VENDOR_ID_INTEL,
641 .devices = pci_device_ids,
642};