blob: 8d9b4510d375881a324ba208bfacede5a7ac3d21 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
3#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +02007#include <device/pci_ops.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +02008#include <option.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05009#include <pc80/isa-dma.h>
10#include <pc80/i8259.h>
11#include <arch/io.h>
12#include <arch/ioapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070013#include <acpi/acpi.h>
Aaron Durbin29ffa542012-12-21 21:21:48 -060014#include <cpu/x86/smm.h>
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030015#include "chip.h"
Angel Pons2178b722020-05-31 00:55:35 +020016#include "iobp.h"
Aaron Durbin76c37002012-10-30 09:03:43 -050017#include "pch.h"
Furquan Shaikh76cedd22020-05-02 10:24:23 -070018#include <acpi/acpigen.h>
Tristan Corrickf3127d42018-10-31 02:25:54 +130019#include <southbridge/intel/common/acpi_pirq_gen.h>
Tim Wawrzynczakf62c4942021-02-26 10:30:52 -070020#include <southbridge/intel/common/rcba_pirq.h>
Patrick Rudolph6b931122018-11-01 17:48:37 +010021#include <southbridge/intel/common/rtc.h>
Arthur Heymansa3121b02019-05-28 13:46:49 +020022#include <southbridge/intel/common/spi.h>
Elyes HAOUAS608a75c2021-02-12 08:09:58 +010023#include <types.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050024
25#define NMI_OFF 0
26
Aaron Durbin76c37002012-10-30 09:03:43 -050027typedef struct southbridge_intel_lynxpoint_config config_t;
28
Paul Menzel373a20c2013-05-03 12:17:02 +020029/**
30 * Set miscellanous static southbridge features.
31 *
32 * @param dev PCI device with I/O APIC control registers
33 */
34static void pch_enable_ioapic(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -050035{
Aaron Durbin76c37002012-10-30 09:03:43 -050036 u32 reg32;
Aaron Durbin76c37002012-10-30 09:03:43 -050037
Matt DeVilliera51e3792018-03-04 01:44:15 -060038 /* Assign unique bus/dev/fn for I/O APIC */
39 pci_write_config16(dev, LPC_IBDF,
40 PCH_IOAPIC_PCI_BUS << 8 | PCH_IOAPIC_PCI_SLOT << 3);
41
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080042 set_ioapic_id(VIO_APIC_VADDR, 0x02);
Aaron Durbin76c37002012-10-30 09:03:43 -050043
44 /* affirm full set of redirection table entries ("write once") */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080045 reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);
Duncan Lauriec5939992013-05-24 11:06:49 -070046 if (pch_is_lp()) {
47 /* PCH-LP has 39 redirection entries */
48 reg32 &= ~0x00ff0000;
49 reg32 |= 0x00270000;
50 }
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080051 io_apic_write(VIO_APIC_VADDR, 0x01, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -050052
Paul Menzel373a20c2013-05-03 12:17:02 +020053 /*
54 * Select Boot Configuration register (0x03) and
55 * use Processor System Bus (0x01) to deliver interrupts.
56 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080057 io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
Aaron Durbin76c37002012-10-30 09:03:43 -050058}
59
60static void pch_enable_serial_irqs(struct device *dev)
61{
62 /* Set packet length and toggle silent mode bit for one frame. */
63 pci_write_config8(dev, SERIRQ_CNTL,
64 (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
Julius Wernercd49cce2019-03-05 16:53:33 -080065#if !CONFIG(SERIRQ_CONTINUOUS_MODE)
Aaron Durbin76c37002012-10-30 09:03:43 -050066 pci_write_config8(dev, SERIRQ_CNTL,
67 (1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
68#endif
69}
70
Angel Pons1464a052020-10-30 20:21:37 +010071static void enable_hpet(struct device *const dev)
72{
73 u32 reg32;
74 size_t i;
75
76 /* Assign unique bus/dev/fn for each HPET */
77 for (i = 0; i < 8; ++i)
78 pci_write_config16(dev, LPC_HnBDF(i),
79 PCH_HPET_PCI_BUS << 8 | PCH_HPET_PCI_SLOT << 3 | i);
80
81 /* Move HPET to default address 0xfed00000 and enable it */
82 reg32 = RCBA32(HPTC);
83 reg32 |= (1 << 7); // HPET Address Enable
84 reg32 &= ~(3 << 0);
85 RCBA32(HPTC) = reg32;
86 /* Read it back to stick. It's affected by posted write syndrome. */
87 RCBA32(HPTC);
88}
89
Aaron Durbin76c37002012-10-30 09:03:43 -050090/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
91 * 0x00 - 0000 = Reserved
92 * 0x01 - 0001 = Reserved
93 * 0x02 - 0010 = Reserved
94 * 0x03 - 0011 = IRQ3
95 * 0x04 - 0100 = IRQ4
96 * 0x05 - 0101 = IRQ5
97 * 0x06 - 0110 = IRQ6
98 * 0x07 - 0111 = IRQ7
99 * 0x08 - 1000 = Reserved
100 * 0x09 - 1001 = IRQ9
101 * 0x0A - 1010 = IRQ10
102 * 0x0B - 1011 = IRQ11
103 * 0x0C - 1100 = IRQ12
104 * 0x0D - 1101 = Reserved
105 * 0x0E - 1110 = IRQ14
106 * 0x0F - 1111 = IRQ15
107 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
108 * 0x80 - The PIRQ is not routed.
109 */
110
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200111static void pch_pirq_init(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500112{
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200113 struct device *irq_dev;
Aaron Durbin76c37002012-10-30 09:03:43 -0500114
Angel Pons9f781272020-07-25 14:03:40 +0200115 const uint8_t pirq = 0x80;
Aaron Durbin76c37002012-10-30 09:03:43 -0500116
Angel Pons9f781272020-07-25 14:03:40 +0200117 pci_write_config8(dev, PIRQA_ROUT, pirq);
118 pci_write_config8(dev, PIRQB_ROUT, pirq);
119 pci_write_config8(dev, PIRQC_ROUT, pirq);
120 pci_write_config8(dev, PIRQD_ROUT, pirq);
121
122 pci_write_config8(dev, PIRQE_ROUT, pirq);
123 pci_write_config8(dev, PIRQF_ROUT, pirq);
124 pci_write_config8(dev, PIRQG_ROUT, pirq);
125 pci_write_config8(dev, PIRQH_ROUT, pirq);
Aaron Durbin76c37002012-10-30 09:03:43 -0500126
127 /* Eric Biederman once said we should let the OS do this.
128 * I am not so sure anymore he was right.
129 */
130
Elyes HAOUASba28e8d2016-08-31 19:22:16 +0200131 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Angel Pons2aaf7c02020-09-24 18:03:18 +0200132 u8 int_pin = 0, int_line = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500133
134 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
135 continue;
136
137 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
138
139 switch (int_pin) {
Angel Pons9f781272020-07-25 14:03:40 +0200140 case 1: /* INTA# */
141 case 2: /* INTB# */
142 case 3: /* INTC# */
143 case 4: /* INTD# */
144 int_line = pirq;
145 break;
Aaron Durbin76c37002012-10-30 09:03:43 -0500146 }
147
148 if (!int_line)
149 continue;
150
151 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
152 }
153}
154
Angel Ponscbcbb672020-10-23 00:11:26 +0200155static void pch_gpi_routing(struct device *dev, config_t *config)
Aaron Durbin76c37002012-10-30 09:03:43 -0500156{
Aaron Durbin76c37002012-10-30 09:03:43 -0500157 u32 reg32 = 0;
158
159 /* An array would be much nicer here, or some
160 * other method of doing this.
161 */
162 reg32 |= (config->gpi0_routing & 0x03) << 0;
163 reg32 |= (config->gpi1_routing & 0x03) << 2;
164 reg32 |= (config->gpi2_routing & 0x03) << 4;
165 reg32 |= (config->gpi3_routing & 0x03) << 6;
166 reg32 |= (config->gpi4_routing & 0x03) << 8;
167 reg32 |= (config->gpi5_routing & 0x03) << 10;
168 reg32 |= (config->gpi6_routing & 0x03) << 12;
169 reg32 |= (config->gpi7_routing & 0x03) << 14;
170 reg32 |= (config->gpi8_routing & 0x03) << 16;
171 reg32 |= (config->gpi9_routing & 0x03) << 18;
172 reg32 |= (config->gpi10_routing & 0x03) << 20;
173 reg32 |= (config->gpi11_routing & 0x03) << 22;
174 reg32 |= (config->gpi12_routing & 0x03) << 24;
175 reg32 |= (config->gpi13_routing & 0x03) << 26;
176 reg32 |= (config->gpi14_routing & 0x03) << 28;
177 reg32 |= (config->gpi15_routing & 0x03) << 30;
178
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +0200179 pci_write_config32(dev, GPIO_ROUT, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500180}
181
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200182static void pch_power_options(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500183{
184 u8 reg8;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800185 u16 reg16;
Aaron Durbin76c37002012-10-30 09:03:43 -0500186 u32 reg32;
187 const char *state;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800188 u16 pmbase = get_pmbase();
Aaron Durbin76c37002012-10-30 09:03:43 -0500189
190 /* Which state do we want to goto after g3 (power restored)?
191 * 0 == S0 Full On
192 * 1 == S5 Soft Off
193 *
194 * If the option is not existent (Laptops), use Kconfig setting.
195 */
Angel Pons62719a32021-04-19 13:15:28 +0200196 const int pwr_on = get_int_option("power_on_after_fail",
197 CONFIG_MAINBOARD_POWER_FAILURE_STATE);
Aaron Durbin76c37002012-10-30 09:03:43 -0500198
199 reg16 = pci_read_config16(dev, GEN_PMCON_3);
200 reg16 &= 0xfffe;
201 switch (pwr_on) {
202 case MAINBOARD_POWER_OFF:
203 reg16 |= 1;
204 state = "off";
205 break;
206 case MAINBOARD_POWER_ON:
207 reg16 &= ~1;
208 state = "on";
209 break;
210 case MAINBOARD_POWER_KEEP:
211 reg16 &= ~1;
212 state = "state keep";
213 break;
214 default:
215 state = "undefined";
216 }
217
218 reg16 &= ~(3 << 4); /* SLP_S4# Assertion Stretch 4s */
219 reg16 |= (1 << 3); /* SLP_S4# Assertion Stretch Enable */
220
221 reg16 &= ~(1 << 10);
222 reg16 |= (1 << 11); /* SLP_S3# Min Assertion Width 50ms */
223
224 reg16 |= (1 << 12); /* Disable SLP stretch after SUS well */
225
226 pci_write_config16(dev, GEN_PMCON_3, reg16);
227 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
228
229 /* Set up NMI on errors. */
230 reg8 = inb(0x61);
231 reg8 &= 0x0f; /* Higher Nibble must be 0 */
232 reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
233 // reg8 &= ~(1 << 2); /* PCI SERR# Enable */
234 reg8 |= (1 << 2); /* PCI SERR# Disable for now */
235 outb(reg8, 0x61);
236
237 reg8 = inb(0x70);
Angel Pons62719a32021-04-19 13:15:28 +0200238 const int nmi_option = get_int_option("nmi", NMI_OFF);
Aaron Durbin76c37002012-10-30 09:03:43 -0500239 if (nmi_option) {
240 printk(BIOS_INFO, "NMI sources enabled.\n");
241 reg8 &= ~(1 << 7); /* Set NMI. */
242 } else {
243 printk(BIOS_INFO, "NMI sources disabled.\n");
Elyes HAOUAS9c5d4632018-04-26 22:21:21 +0200244 reg8 |= (1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
Aaron Durbin76c37002012-10-30 09:03:43 -0500245 }
246 outb(reg8, 0x70);
247
248 /* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
249 reg16 = pci_read_config16(dev, GEN_PMCON_1);
250 reg16 &= ~(3 << 0); // SMI# rate 1 minute
251 reg16 &= ~(1 << 10); // Disable BIOS_PCI_EXP_EN for native PME
Aaron Durbin76c37002012-10-30 09:03:43 -0500252 pci_write_config16(dev, GEN_PMCON_1, reg16);
253
Angel Ponscbcbb672020-10-23 00:11:26 +0200254 if (dev->chip_info) {
255 config_t *config = dev->chip_info;
Aaron Durbin76c37002012-10-30 09:03:43 -0500256
Angel Ponscbcbb672020-10-23 00:11:26 +0200257 /*
258 * Set the board's GPI routing on LynxPoint-H.
259 * This is done as part of GPIO configuration on LynxPoint-LP.
260 */
Angel Ponsa7174b72020-10-30 20:23:41 +0100261 if (!pch_is_lp())
Angel Ponscbcbb672020-10-23 00:11:26 +0200262 pch_gpi_routing(dev, config);
Aaron Durbin76c37002012-10-30 09:03:43 -0500263
Angel Ponscbcbb672020-10-23 00:11:26 +0200264 /* GPE setup based on device tree configuration */
265 enable_all_gpe(config->gpe0_en_1, config->gpe0_en_2,
266 config->gpe0_en_3, config->gpe0_en_4);
267
268 /* SMI setup based on device tree configuration */
269 enable_alt_smi(config->alt_gp_smi_en);
270 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500271
272 /* Set up power management block and determine sleep mode */
273 reg32 = inl(pmbase + 0x04); // PM1_CNT
274 reg32 &= ~(7 << 10); // SLP_TYP
275 reg32 |= (1 << 0); // SCI_EN
276 outl(reg32, pmbase + 0x04);
277
278 /* Clear magic status bits to prevent unexpected wake */
279 reg32 = RCBA32(0x3310);
Angel Pons84fa2242020-10-24 11:53:47 +0200280 reg32 |= (1 << 4) | (1 << 5) | (1 << 0);
Aaron Durbin76c37002012-10-30 09:03:43 -0500281 RCBA32(0x3310) = reg32;
282
Ryan Salsamendi889ce9c2017-06-30 17:45:14 -0700283 reg16 = RCBA16(0x3f02);
284 reg16 &= ~0xf;
285 RCBA16(0x3f02) = reg16;
Aaron Durbin76c37002012-10-30 09:03:43 -0500286}
287
Angel Pons2cdf8bd2020-11-04 17:47:45 +0100288static void configure_dmi_pm(struct device *dev)
289{
290 struct device *const pcie_dev = pcidev_on_root(0x1c, 0);
291
292 /* Additional PCH DMI programming steps */
293
294 /* EL0 */
295 u32 reg32 = 3 << 12;
296
297 /* EL1 */
298 if (pcie_dev && !(pci_read_config8(pcie_dev, 0xf5) & 1 << 0))
299 reg32 |= 2 << 15;
300 else
301 reg32 |= 4 << 15;
302
303 RCBA32_AND_OR(0x21a4, ~(7 << 15 | 7 << 12), reg32);
304
305 RCBA32_AND_OR(0x2348, ~0xf, 0);
306
307 /* Clear prior to enabling DMI ASPM */
308 RCBA32_AND_OR(0x2304, ~(1 << 10), 0);
309
310 RCBA32_OR(0x21a4, 3 << 10);
311
312 RCBA16(0x21a8) |= 3 << 0;
313
314 /* Set again after enabling DMI ASPM */
315 RCBA32_OR(0x2304, 1 << 10);
316}
317
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800318/* LynxPoint PCH Power Management init */
319static void lpt_pm_init(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500320{
Angel Pons2cdf8bd2020-11-04 17:47:45 +0100321 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
322
323 struct device *const pcie_dev = pcidev_on_root(0x1c, 0);
324
325 printk(BIOS_DEBUG, "LynxPoint H PM init\n");
326
327 /* Configure additional PM */
328 pci_write_config8(dev, 0xa9, 0x46);
329
330 pci_or_config32(dev, PMIR, PMIR_CF9LOCK);
331
332 /* Step 3 is skipped */
333
334 /* Program DMI Hardware Width Control (thermal throttling) */
335 u32 reg32 = 0;
336 reg32 |= 1 << 0; /* DMI Thermal Sensor Autonomous Width Enable */
337 reg32 |= 0 << 4; /* Thermal Sensor 0 Target Width */
338 reg32 |= 1 << 6; /* Thermal Sensor 1 Target Width */
339 reg32 |= 1 << 8; /* Thermal Sensor 2 Target Width */
340 reg32 |= 2 << 10; /* Thermal Sensor 3 Target Width */
341 RCBA32(0x2238) = reg32;
342
343 RCBA32_OR(0x232c, 1 << 0);
344 RCBA32_OR(0x1100, 3 << 13); /* Assume trunk clock gating is to be enabled */
345
346 RCBA32(0x2304) = 0xc07b8400; /* DMI misc control */
347
348 RCBA32_OR(0x2314, 1 << 23 | 1 << 5);
349
350 if (pcie_dev)
351 pci_update_config8(pcie_dev, 0xf5, ~0xf, 0x5);
352
353 RCBA32_OR(0x2320, 1 << 1);
354
355 RCBA32(0x3314) = 0x000007bf;
356
357 /* NOTE: Preserve bit 5 */
358 RCBA32_OR(0x3318, 0x0dcf0000);
359
360 RCBA32(0x3324) = 0x04000000;
361 RCBA32(0x3340) = 0x020ddbff;
362
363 RCBA32_OR(0x3344, 1 << 0);
364
365 RCBA32(0x3368) = 0x00041000;
366 RCBA32(0x3378) = 0x3f8ddbff;
367 RCBA32(0x337c) = 0x000001e1;
368 RCBA32(0x3388) = 0x00001000;
369 RCBA32(0x33a0) = 0x00000800;
370 RCBA32(0x33ac) = 0x00001000;
371 RCBA32(0x33b0) = 0x00001000;
372 RCBA32(0x33c0) = 0x00011900;
373 RCBA32(0x33d0) = 0x06000802;
374 RCBA32(0x3a28) = 0x01010000;
375 RCBA32(0x3a2c) = 0x01010404;
376
377 RCBA32_OR(0x33a4, 1 << 0);
378
379 /* DMI power optimizer */
380 RCBA32_OR(0x33d4, 1 << 27);
381 RCBA32_OR(0x33c8, 1 << 27);
382 RCBA32(0x2b14) = 0x1e0a0317;
383 RCBA32(0x2b24) = 0x4000000b;
384 RCBA32(0x2b28) = 0x00000002;
385 RCBA32(0x2b2c) = 0x00008813;
386
387 RCBA32(0x3a80) = 0x01040000;
388 reg32 = 0x01041001;
389 /* Port 1 and 0 disabled */
390 if (config && (config->sata_port_map & ((1 << 1) | (1 << 0))) == 0)
391 reg32 |= (1 << 20) | (1 << 18);
392 /* Port 3 and 2 disabled */
393 if (config && (config->sata_port_map & ((1 << 3) | (1 << 2))) == 0)
394 reg32 |= (1 << 24) | (1 << 26);
395 RCBA32(0x3a84) = reg32;
396 RCBA32(0x3a88) = 0x00000001;
397 RCBA32(0x33d4) = 0xc80bc000;
398
399 configure_dmi_pm(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500400}
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800401
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800402/* LynxPoint LP PCH Power Management init */
403static void lpt_lp_pm_init(struct device *dev)
404{
405 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
406 u32 data;
407
408 printk(BIOS_DEBUG, "LynxPoint LP PM init\n");
409
410 pci_write_config8(dev, 0xa9, 0x46);
411
Angel Pons90cdf702020-10-24 23:00:34 +0200412 RCBA32_AND_OR(0x232c, ~1, 0);
413
Angel Pons725657a2020-07-03 13:15:00 +0200414 RCBA32_AND_OR(0x1100, ~0xc000, 0xc000);
Angel Pons4fe46612020-10-24 22:22:04 +0200415 RCBA32_OR(0x1100, 0x00000100);
416 RCBA32_OR(0x1100, 0x0000003f);
Angel Pons90cdf702020-10-24 23:00:34 +0200417
Angel Pons725657a2020-07-03 13:15:00 +0200418 RCBA32_AND_OR(0x2320, ~0x60, 0x10);
Angel Pons90cdf702020-10-24 23:00:34 +0200419
Angel Pons4fe46612020-10-24 22:22:04 +0200420 RCBA32(0x3314) = 0x00012fff;
421 RCBA32(0x3318) = 0x0dcf0400;
422 RCBA32(0x3324) = 0x04000000;
423 RCBA32(0x3368) = 0x00041400;
424 RCBA32(0x3388) = 0x3f8ddbff;
425 RCBA32(0x33ac) = 0x00007001;
426 RCBA32(0x33b0) = 0x00181900;
427 RCBA32(0x33c0) = 0x00060A00;
428 RCBA32(0x33d0) = 0x06200840;
429 RCBA32(0x3a28) = 0x01010101;
430 RCBA32(0x3a2c) = 0x04040404;
431 RCBA32(0x2b1c) = 0x03808033;
432 RCBA32(0x2b34) = 0x80000009;
433 RCBA32(0x3348) = 0x022ddfff;
434 RCBA32(0x334c) = 0x00000001;
435 RCBA32(0x3358) = 0x0001c000;
436 RCBA32(0x3380) = 0x3f8ddbff;
437 RCBA32(0x3384) = 0x0001c7e1;
438 RCBA32(0x338c) = 0x0001c7e1;
439 RCBA32(0x3398) = 0x0001c000;
440 RCBA32(0x33a8) = 0x00181900;
441 RCBA32(0x33dc) = 0x00080000;
442 RCBA32(0x33e0) = 0x00000001;
443 RCBA32(0x3a20) = 0x00000404;
444 RCBA32(0x3a24) = 0x01010101;
445 RCBA32(0x3a30) = 0x01010101;
Angel Pons90cdf702020-10-24 23:00:34 +0200446
Angel Pons4fe46612020-10-24 22:22:04 +0200447 RCBA32_OR(0x0410, 0x00000003);
448 RCBA32_OR(0x2618, 0x08000000);
449 RCBA32_OR(0x2300, 0x00000002);
450 RCBA32_OR(0x2600, 0x00000008);
Angel Pons90cdf702020-10-24 23:00:34 +0200451
Angel Pons4fe46612020-10-24 22:22:04 +0200452 RCBA32(0x33b4) = 0x00007001;
453 RCBA32(0x3350) = 0x022ddfff;
454 RCBA32(0x3354) = 0x00000001;
Angel Pons90cdf702020-10-24 23:00:34 +0200455
456 /* Power Optimizer */
457 RCBA32_OR(0x33d4, 0x08000000);
458 RCBA32_OR(0x33c8, 0x00000080);
459
460 RCBA32(0x2b10) = 0x0000883c;
461 RCBA32(0x2b14) = 0x1e0a4616;
462 RCBA32(0x2b24) = 0x40000005;
463 RCBA32(0x2b20) = 0x0005db01;
Angel Pons4fe46612020-10-24 22:22:04 +0200464 RCBA32(0x3a80) = 0x05145005;
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800465
Angel Ponsbf9bc502020-06-08 00:12:43 +0200466 pci_or_config32(dev, 0xac, 1 << 21);
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800467
Elyes HAOUASa0aea562017-07-03 21:38:53 +0200468 pch_iobp_update(0xED00015C, ~(1 << 11), 0x00003700);
Angel Pons8963f7d2020-10-24 12:20:28 +0200469 pch_iobp_update(0xED000118, ~0, 0x00c00000);
470 pch_iobp_update(0xED000120, ~0, 0x00240000);
471 pch_iobp_update(0xCA000000, ~0, 0x00000009);
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800472
473 /* Set RCBA CIR28 0x3A84 based on SATA port enables */
474 data = 0x00001005;
475 /* Port 3 and 2 disabled */
Angel Ponscbcbb672020-10-23 00:11:26 +0200476 if (config && (config->sata_port_map & ((1 << 3) | (1 << 2))) == 0)
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800477 data |= (1 << 24) | (1 << 26);
478 /* Port 1 and 0 disabled */
Angel Ponscbcbb672020-10-23 00:11:26 +0200479 if (config && (config->sata_port_map & ((1 << 1) | (1 << 0))) == 0)
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800480 data |= (1 << 20) | (1 << 18);
481 RCBA32(0x3a84) = data;
482
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700483 /* Set RCBA 0x2b1c[29]=1 if DSP disabled */
484 if (RCBA32(FD) & PCH_DISABLE_ADSPD)
485 RCBA32_OR(0x2b1c, (1 << 29));
486
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800487 /* Set RCBA 0x33D4 after other setup */
488 RCBA32_OR(0x33d4, 0x2fff2fb1);
489
490 /* Set RCBA 0x33C8[15]=1 as last step */
491 RCBA32_OR(0x33c8, (1 << 15));
492}
Aaron Durbin76c37002012-10-30 09:03:43 -0500493
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200494static void enable_clock_gating(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500495{
Duncan Laurie74c0d052012-12-17 11:31:40 -0800496 /* LynxPoint Mobile */
497 u32 reg32;
498 u16 reg16;
499
500 /* DMI */
Angel Pons8963f7d2020-10-24 12:20:28 +0200501 RCBA32_AND_OR(0x2234, ~0, 0xf);
Duncan Laurie74c0d052012-12-17 11:31:40 -0800502 reg16 = pci_read_config16(dev, GEN_PMCON_1);
503 reg16 |= (1 << 11) | (1 << 12) | (1 << 14);
504 reg16 |= (1 << 2); // PCI CLKRUN# Enable
505 pci_write_config16(dev, GEN_PMCON_1, reg16);
506 RCBA32_OR(0x900, (1 << 14));
507
508 reg32 = RCBA32(CG);
509 reg32 |= (1 << 22); // HDA Dynamic
Angel Pons8963f7d2020-10-24 12:20:28 +0200510 reg32 |= (1 << 31); // LPC Dynamic
Duncan Laurie74c0d052012-12-17 11:31:40 -0800511 reg32 |= (1 << 16); // PCIe Dynamic
512 reg32 |= (1 << 27); // HPET Dynamic
513 reg32 |= (1 << 28); // GPIO Dynamic
514 RCBA32(CG) = reg32;
515
516 RCBA32_OR(0x38c0, 0x7); // SPI Dynamic
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800517}
518
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200519static void enable_lp_clock_gating(struct device *dev)
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800520{
521 /* LynxPoint LP */
522 u32 reg32;
523 u16 reg16;
524
525 /* DMI */
Angel Pons8963f7d2020-10-24 12:20:28 +0200526 RCBA32_AND_OR(0x2234, ~0, 0xf);
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800527 reg16 = pci_read_config16(dev, GEN_PMCON_1);
528 reg16 &= ~((1 << 11) | (1 << 14));
529 reg16 |= (1 << 5) | (1 << 6) | (1 << 7) | (1 << 12) | (1 << 13);
530 reg16 |= (1 << 2); // PCI CLKRUN# Enable
531 pci_write_config16(dev, GEN_PMCON_1, reg16);
532
Angel Ponsbf9bc502020-06-08 00:12:43 +0200533 pci_or_config32(dev, 0x64, 1 << 6);
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800534
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700535 /*
536 * RCBA + 0x2614[27:25,14:13,10,8] = 101,11,1,1
537 * RCBA + 0x2614[23:16] = 0x20
538 * RCBA + 0x2614[30:28] = 0x0
Duncan Lauried8c7d732013-07-16 09:01:43 -0700539 * RCBA + 0x2614[26] = 1 (IF 0:2.0@0x08 >= 0x0b)
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700540 */
Angel Pons90cdf702020-10-24 23:00:34 +0200541 RCBA32_AND_OR(0x2614, ~0x74000000, 0x0a206500);
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700542
543 /* Check for LPT-LP B2 stepping and 0:31.0@0xFA > 4 */
Nico Huber744d6bd2019-01-12 14:58:20 +0100544 struct device *const gma = pcidev_on_root(2, 0);
545 if (gma && pci_read_config8(gma, 0x8) >= 0x0b)
Elyes HAOUASa0aea562017-07-03 21:38:53 +0200546 RCBA32_OR(0x2614, (1 << 26));
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700547
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800548 RCBA32_OR(0x900, 0x0000031f);
549
550 reg32 = RCBA32(CG);
Duncan Lauriea2d6a402013-03-22 11:24:45 -0700551 if (RCBA32(0x3454) & (1 << 4))
552 reg32 &= ~(1 << 29); // LPC Dynamic
553 else
554 reg32 |= (1 << 29); // LPC Dynamic
Angel Pons2aaf7c02020-09-24 18:03:18 +0200555 reg32 |= (1 << 31); // LP LPC
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700556 reg32 |= (1 << 30); // LP BLA
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800557 reg32 |= (1 << 28); // GPIO Dynamic
558 reg32 |= (1 << 27); // HPET Dynamic
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700559 reg32 |= (1 << 26); // Generic Platform Event Clock
560 if (RCBA32(BUC) & PCH_DISABLE_GBE)
561 reg32 |= (1 << 23); // GbE Static
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800562 reg32 |= (1 << 22); // HDA Dynamic
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700563 reg32 |= (1 << 16); // PCI Dynamic
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800564 RCBA32(CG) = reg32;
565
566 RCBA32_OR(0x3434, 0x7); // LP LPC
567
568 RCBA32_AND_OR(0x333c, 0xffcfffff, 0x00c00000); // SATA
569
570 RCBA32_OR(0x38c0, 0x3c07); // SPI Dynamic
571
Angel Pons8963f7d2020-10-24 12:20:28 +0200572 pch_iobp_update(0xCF000000, ~0, 0x00007001);
573 pch_iobp_update(0xCE00C000, ~1, 0x00000000); // bit0=0 in BWG 1.4.0
Aaron Durbin76c37002012-10-30 09:03:43 -0500574}
575
Aaron Durbin29ffa542012-12-21 21:21:48 -0600576static void pch_set_acpi_mode(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500577{
Kyösti Mälkkiad882c32020-06-02 05:05:30 +0300578 if (!acpi_is_wakeup_s3())
Kyösti Mälkkib6585482020-06-01 15:11:14 +0300579 apm_control(APM_CNT_ACPI_DISABLE);
Aaron Durbin76c37002012-10-30 09:03:43 -0500580}
Aaron Durbin76c37002012-10-30 09:03:43 -0500581
Aaron Durbin76c37002012-10-30 09:03:43 -0500582static void lpc_init(struct device *dev)
583{
Elyes HAOUASbfc255a2020-03-07 13:05:14 +0100584 printk(BIOS_DEBUG, "pch: %s\n", __func__);
Aaron Durbin76c37002012-10-30 09:03:43 -0500585
Aaron Durbin76c37002012-10-30 09:03:43 -0500586 /* IO APIC initialization. */
Paul Menzel373a20c2013-05-03 12:17:02 +0200587 pch_enable_ioapic(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500588
589 pch_enable_serial_irqs(dev);
590
591 /* Setup the PIRQ. */
592 pch_pirq_init(dev);
593
594 /* Setup power options. */
595 pch_power_options(dev);
596
597 /* Initialize power management */
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800598 if (pch_is_lp()) {
599 lpt_lp_pm_init(dev);
600 enable_lp_clock_gating(dev);
601 } else {
602 lpt_pm_init(dev);
603 enable_clock_gating(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500604 }
605
Aaron Durbin76c37002012-10-30 09:03:43 -0500606 /* Initialize the real time clock. */
Patrick Rudolph6b931122018-11-01 17:48:37 +0100607 sb_rtc_init();
Aaron Durbin76c37002012-10-30 09:03:43 -0500608
609 /* Initialize ISA DMA. */
610 isa_dma_init();
611
612 /* Initialize the High Precision Event Timers, if present. */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600613 enable_hpet(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500614
Aaron Durbin76c37002012-10-30 09:03:43 -0500615 setup_i8259();
616
Aaron Durbin76c37002012-10-30 09:03:43 -0500617 /* Interrupt 9 should be level triggered (SCI) */
618 i8259_configure_irq_trigger(9, 1);
619
Aaron Durbin29ffa542012-12-21 21:21:48 -0600620 pch_set_acpi_mode();
Aaron Durbin76c37002012-10-30 09:03:43 -0500621
Angel Pons2cdf8bd2020-11-04 17:47:45 +0100622 /* Indicate DRAM init done for MRC S3 to know it can resume */
623 pci_or_config8(dev, GEN_PMCON_2, 1 << 7);
Aaron Durbin76c37002012-10-30 09:03:43 -0500624}
625
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200626static void pch_lpc_add_mmio_resources(struct device *dev)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600627{
628 u32 reg;
629 struct resource *res;
630 const u32 default_decode_base = IO_APIC_ADDR;
631
632 /*
633 * Just report all resources from IO-APIC base to 4GiB. Don't mark
634 * them reserved as that may upset the OS if this range is marked
635 * as reserved in the e820.
636 */
637 res = new_resource(dev, OIC);
638 res->base = default_decode_base;
639 res->size = 0 - default_decode_base;
640 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
641
642 /* RCBA */
Angel Pons6e732d32021-01-28 13:56:18 +0100643 if (CONFIG_FIXED_RCBA_MMIO_BASE < default_decode_base) {
Aaron Durbin6f561af2012-12-19 14:38:01 -0600644 res = new_resource(dev, RCBA);
Angel Pons6e732d32021-01-28 13:56:18 +0100645 res->base = (resource_t)CONFIG_FIXED_RCBA_MMIO_BASE;
Angel Ponsb70ff522021-01-28 14:27:46 +0100646 res->size = CONFIG_RCBA_LENGTH;
Aaron Durbin6f561af2012-12-19 14:38:01 -0600647 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
Angel Pons2aaf7c02020-09-24 18:03:18 +0200648 IORESOURCE_FIXED | IORESOURCE_RESERVE;
Aaron Durbin6f561af2012-12-19 14:38:01 -0600649 }
650
651 /* Check LPC Memory Decode register. */
652 reg = pci_read_config32(dev, LGMR);
653 if (reg & 1) {
654 reg &= ~0xffff;
655 if (reg < default_decode_base) {
656 res = new_resource(dev, LGMR);
657 res->base = reg;
658 res->size = 16 * 1024;
659 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
Angel Pons2aaf7c02020-09-24 18:03:18 +0200660 IORESOURCE_FIXED | IORESOURCE_RESERVE;
Aaron Durbin6f561af2012-12-19 14:38:01 -0600661 }
662 }
663}
664
665/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
666#define LPC_DEFAULT_IO_RANGE_LOWER 0
667#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
668
Julius Werner7c712bb2019-05-01 16:51:20 -0700669static inline int pch_io_range_in_default(int base, int size)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600670{
671 /* Does it start above the range? */
672 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
673 return 0;
674
675 /* Is it entirely contained? */
676 if (base >= LPC_DEFAULT_IO_RANGE_LOWER &&
677 (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
678 return 1;
679
680 /* This will return not in range for partial overlaps. */
681 return 0;
682}
683
684/*
685 * Note: this function assumes there is no overlap with the default LPC device's
686 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
687 */
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200688static void pch_lpc_add_io_resource(struct device *dev, u16 base, u16 size,
689 int index)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600690{
691 struct resource *res;
692
693 if (pch_io_range_in_default(base, size))
694 return;
695
696 res = new_resource(dev, index);
697 res->base = base;
698 res->size = size;
699 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
700}
701
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200702static void pch_lpc_add_gen_io_resources(struct device *dev, int reg_value,
703 int index)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600704{
705 /*
706 * Check if the register is enabled. If so and the base exceeds the
Kyösti Mälkkib544c002019-01-06 10:41:41 +0200707 * device's default, claim range and add the resource.
Aaron Durbin6f561af2012-12-19 14:38:01 -0600708 */
709 if (reg_value & 1) {
710 u16 base = reg_value & 0xfffc;
711 u16 size = (0x3 | ((reg_value >> 16) & 0xfc)) + 1;
712 pch_lpc_add_io_resource(dev, base, size, index);
713 }
714}
715
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200716static void pch_lpc_add_io_resources(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500717{
718 struct resource *res;
Aaron Durbin76c37002012-10-30 09:03:43 -0500719
Aaron Durbin6f561af2012-12-19 14:38:01 -0600720 /* Add the default claimed IO range for the LPC device. */
721 res = new_resource(dev, 0);
722 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
723 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
724 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
725
726 /* GPIOBASE */
Angel Pons2aaf7c02020-09-24 18:03:18 +0200727 pch_lpc_add_io_resource(dev, get_gpiobase(), DEFAULT_GPIOSIZE, GPIO_BASE);
Aaron Durbin6f561af2012-12-19 14:38:01 -0600728
729 /* PMBASE */
Duncan Laurie7922b462013-03-08 16:34:33 -0800730 pch_lpc_add_io_resource(dev, get_pmbase(), 256, PMBASE);
Aaron Durbin6f561af2012-12-19 14:38:01 -0600731
732 /* LPC Generic IO Decode range. */
Angel Ponscbcbb672020-10-23 00:11:26 +0200733 if (dev->chip_info) {
734 config_t *config = dev->chip_info;
735 pch_lpc_add_gen_io_resources(dev, config->gen1_dec, LPC_GEN1_DEC);
736 pch_lpc_add_gen_io_resources(dev, config->gen2_dec, LPC_GEN2_DEC);
737 pch_lpc_add_gen_io_resources(dev, config->gen3_dec, LPC_GEN3_DEC);
738 pch_lpc_add_gen_io_resources(dev, config->gen4_dec, LPC_GEN4_DEC);
739 }
Aaron Durbin6f561af2012-12-19 14:38:01 -0600740}
741
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200742static void pch_lpc_read_resources(struct device *dev)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600743{
Aaron Durbin76c37002012-10-30 09:03:43 -0500744 /* Get the normal PCI resources of this device. */
745 pci_dev_read_resources(dev);
746
Aaron Durbin6f561af2012-12-19 14:38:01 -0600747 /* Add non-standard MMIO resources. */
748 pch_lpc_add_mmio_resources(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500749
Aaron Durbin6f561af2012-12-19 14:38:01 -0600750 /* Add IO resources. */
751 pch_lpc_add_io_resources(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500752}
753
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200754static void pch_lpc_enable(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500755{
756 /* Enable PCH Display Port */
757 RCBA16(DISPBDF) = 0x0010;
758 RCBA32_OR(FD2, PCH_ENABLE_DBDF);
759
760 pch_enable(dev);
761}
762
Tristan Corrickf3127d42018-10-31 02:25:54 +1300763static const char *lpc_acpi_name(const struct device *dev)
764{
765 return "LPCB";
766}
767
Furquan Shaikh7536a392020-04-24 21:59:21 -0700768static void southbridge_fill_ssdt(const struct device *dev)
Tristan Corrickf3127d42018-10-31 02:25:54 +1300769{
770 intel_acpi_gen_def_acpi_pirq(dev);
771}
772
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700773static unsigned long southbridge_write_acpi_tables(const struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200774 unsigned long start,
775 struct acpi_rsdp *rsdp)
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200776{
777 unsigned long current;
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200778
779 current = start;
780
781 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -0600782 current = acpi_align_current(current);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200783
784 /*
785 * We explicitly add these tables later on:
786 */
Angel Pons2d35cf82020-10-29 19:28:44 +0100787 current = acpi_write_hpet(device, current, rsdp);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200788
Aaron Durbin07a1b282015-12-10 17:07:38 -0600789 current = acpi_align_current(current);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200790
Angel Pons04f1de32021-02-10 13:57:01 +0100791 if (pch_is_lp()) {
792 printk(BIOS_DEBUG, "ACPI: * SSDT2\n");
793 acpi_header_t *ssdt = (acpi_header_t *)current;
794 acpi_create_serialio_ssdt(ssdt);
795 current += ssdt->length;
796 acpi_add_table(rsdp, ssdt);
797 current = acpi_align_current(current);
798 }
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200799
800 printk(BIOS_DEBUG, "current = %lx\n", current);
801 return current;
802}
803
Tristan Corrick32ceed82018-11-30 22:53:27 +1300804static void lpc_final(struct device *dev)
805{
Arthur Heymansa3121b02019-05-28 13:46:49 +0200806 spi_finalize_ops();
Tristan Corrick63626b12018-11-30 22:53:50 +1300807
Angel Pons71505f52020-10-30 16:26:28 +0100808 /* Lock */
809 RCBA32_OR(0x3a6c, 0x00000001);
810
Julius Wernercd49cce2019-03-05 16:53:33 -0800811 if (acpi_is_wakeup_s3() || CONFIG(INTEL_CHIPSET_LOCKDOWN))
Kyösti Mälkkib6585482020-06-01 15:11:14 +0300812 apm_control(APM_CNT_FINALIZE);
Tristan Corrick32ceed82018-11-30 22:53:27 +1300813}
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200814
Aaron Durbin76c37002012-10-30 09:03:43 -0500815static struct device_operations device_ops = {
816 .read_resources = pch_lpc_read_resources,
817 .set_resources = pci_dev_set_resources,
Duncan Laurie8d783b82013-05-14 11:16:34 -0700818 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200819 .acpi_fill_ssdt = southbridge_fill_ssdt,
Tristan Corrickf3127d42018-10-31 02:25:54 +1300820 .acpi_name = lpc_acpi_name,
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200821 .write_acpi_tables = southbridge_write_acpi_tables,
Aaron Durbin76c37002012-10-30 09:03:43 -0500822 .init = lpc_init,
Tristan Corrick32ceed82018-11-30 22:53:27 +1300823 .final = lpc_final,
Aaron Durbin76c37002012-10-30 09:03:43 -0500824 .enable = pch_lpc_enable,
Nico Huber51b75ae2019-03-14 16:02:05 +0100825 .scan_bus = scan_static_bus,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200826 .ops_pci = &pci_dev_ops_pci,
Aaron Durbin76c37002012-10-30 09:03:43 -0500827};
828
Aaron Durbinc1989c42012-12-11 17:13:17 -0600829/* IDs for LPC device of Intel 8 Series Chipset (Lynx Point) */
830static const unsigned short pci_device_ids[] = {
Felix Singer4ea08f92020-11-20 12:56:44 +0000831 PCI_DEVICE_ID_INTEL_LPT_MOBILE_SAMPLE,
832 PCI_DEVICE_ID_INTEL_LPT_DESKTOP_SAMPLE,
833 PCI_DEVICE_ID_INTEL_LPT_Z87,
834 PCI_DEVICE_ID_INTEL_LPT_Z85,
835 PCI_DEVICE_ID_INTEL_LPT_HM86,
836 PCI_DEVICE_ID_INTEL_LPT_H87,
837 PCI_DEVICE_ID_INTEL_LPT_HM87,
838 PCI_DEVICE_ID_INTEL_LPT_Q85,
839 PCI_DEVICE_ID_INTEL_LPT_Q87,
840 PCI_DEVICE_ID_INTEL_LPT_QM87,
841 PCI_DEVICE_ID_INTEL_LPT_B85,
842 PCI_DEVICE_ID_INTEL_LPT_C222,
843 PCI_DEVICE_ID_INTEL_LPT_C224,
844 PCI_DEVICE_ID_INTEL_LPT_C226,
845 PCI_DEVICE_ID_INTEL_LPT_H81,
846 PCI_DEVICE_ID_INTEL_LPT_LP_SAMPLE,
847 PCI_DEVICE_ID_INTEL_LPT_LP_PREMIUM,
848 PCI_DEVICE_ID_INTEL_LPT_LP_MAINSTREAM,
849 PCI_DEVICE_ID_INTEL_LPT_LP_VALUE,
850 0
851};
Aaron Durbin76c37002012-10-30 09:03:43 -0500852
853static const struct pci_driver pch_lpc __pci_driver = {
854 .ops = &device_ops,
855 .vendor = PCI_VENDOR_ID_INTEL,
856 .devices = pci_device_ids,
857};