blob: f0b88b2f41acb7c06ff5943b14730354e499b77d [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
Aaron Durbin76c37002012-10-30 09:03:43 -05004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; version 2 of
8 * the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin76c37002012-10-30 09:03:43 -050014 */
15
16#include <console/console.h>
17#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020020#include <device/pci_ops.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020021#include <option.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050022#include <pc80/isa-dma.h>
23#include <pc80/i8259.h>
24#include <arch/io.h>
25#include <arch/ioapic.h>
26#include <arch/acpi.h>
Aaron Durbin29ffa542012-12-21 21:21:48 -060027#include <cpu/x86/smm.h>
Duncan Laurie9c07c8f2013-03-22 11:08:39 -070028#include <cbmem.h>
29#include <string.h>
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030030#include "chip.h"
Duncan Laurie9c07c8f2013-03-22 11:08:39 -070031#include "nvs.h"
Aaron Durbin76c37002012-10-30 09:03:43 -050032#include "pch.h"
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +020033#include <arch/acpigen.h>
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010034#include <drivers/intel/gma/i915.h>
Tristan Corrickf3127d42018-10-31 02:25:54 +130035#include <southbridge/intel/common/acpi_pirq_gen.h>
Patrick Rudolph6b931122018-11-01 17:48:37 +010036#include <southbridge/intel/common/rtc.h>
Arthur Heymansa3121b02019-05-28 13:46:49 +020037#include <southbridge/intel/common/spi.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050038
39#define NMI_OFF 0
40
Aaron Durbin76c37002012-10-30 09:03:43 -050041typedef struct southbridge_intel_lynxpoint_config config_t;
42
Paul Menzel373a20c2013-05-03 12:17:02 +020043/**
44 * Set miscellanous static southbridge features.
45 *
46 * @param dev PCI device with I/O APIC control registers
47 */
48static void pch_enable_ioapic(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -050049{
Aaron Durbin76c37002012-10-30 09:03:43 -050050 u32 reg32;
Aaron Durbin76c37002012-10-30 09:03:43 -050051
Matt DeVilliera51e3792018-03-04 01:44:15 -060052 /* Assign unique bus/dev/fn for I/O APIC */
53 pci_write_config16(dev, LPC_IBDF,
54 PCH_IOAPIC_PCI_BUS << 8 | PCH_IOAPIC_PCI_SLOT << 3);
55
Paul Menzel373a20c2013-05-03 12:17:02 +020056 /* Enable ACPI I/O range decode */
57 pci_write_config8(dev, ACPI_CNTL, ACPI_EN);
Aaron Durbin76c37002012-10-30 09:03:43 -050058
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080059 set_ioapic_id(VIO_APIC_VADDR, 0x02);
Aaron Durbin76c37002012-10-30 09:03:43 -050060
61 /* affirm full set of redirection table entries ("write once") */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080062 reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);
Duncan Lauriec5939992013-05-24 11:06:49 -070063 if (pch_is_lp()) {
64 /* PCH-LP has 39 redirection entries */
65 reg32 &= ~0x00ff0000;
66 reg32 |= 0x00270000;
67 }
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080068 io_apic_write(VIO_APIC_VADDR, 0x01, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -050069
Paul Menzel373a20c2013-05-03 12:17:02 +020070 /*
71 * Select Boot Configuration register (0x03) and
72 * use Processor System Bus (0x01) to deliver interrupts.
73 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080074 io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
Aaron Durbin76c37002012-10-30 09:03:43 -050075}
76
77static void pch_enable_serial_irqs(struct device *dev)
78{
79 /* Set packet length and toggle silent mode bit for one frame. */
80 pci_write_config8(dev, SERIRQ_CNTL,
81 (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
Julius Wernercd49cce2019-03-05 16:53:33 -080082#if !CONFIG(SERIRQ_CONTINUOUS_MODE)
Aaron Durbin76c37002012-10-30 09:03:43 -050083 pci_write_config8(dev, SERIRQ_CNTL,
84 (1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
85#endif
86}
87
88/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
89 * 0x00 - 0000 = Reserved
90 * 0x01 - 0001 = Reserved
91 * 0x02 - 0010 = Reserved
92 * 0x03 - 0011 = IRQ3
93 * 0x04 - 0100 = IRQ4
94 * 0x05 - 0101 = IRQ5
95 * 0x06 - 0110 = IRQ6
96 * 0x07 - 0111 = IRQ7
97 * 0x08 - 1000 = Reserved
98 * 0x09 - 1001 = IRQ9
99 * 0x0A - 1010 = IRQ10
100 * 0x0B - 1011 = IRQ11
101 * 0x0C - 1100 = IRQ12
102 * 0x0D - 1101 = Reserved
103 * 0x0E - 1110 = IRQ14
104 * 0x0F - 1111 = IRQ15
105 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
106 * 0x80 - The PIRQ is not routed.
107 */
108
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200109static void pch_pirq_init(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500110{
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200111 struct device *irq_dev;
Aaron Durbin76c37002012-10-30 09:03:43 -0500112 /* Get the chip configuration */
113 config_t *config = dev->chip_info;
114
115 pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
116 pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
117 pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
118 pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
119
120 pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
121 pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
122 pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
123 pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
124
125 /* Eric Biederman once said we should let the OS do this.
126 * I am not so sure anymore he was right.
127 */
128
Elyes HAOUASba28e8d2016-08-31 19:22:16 +0200129 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500130 u8 int_pin=0, int_line=0;
131
132 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
133 continue;
134
135 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
136
137 switch (int_pin) {
138 case 1: /* INTA# */ int_line = config->pirqa_routing; break;
139 case 2: /* INTB# */ int_line = config->pirqb_routing; break;
140 case 3: /* INTC# */ int_line = config->pirqc_routing; break;
141 case 4: /* INTD# */ int_line = config->pirqd_routing; break;
142 }
143
144 if (!int_line)
145 continue;
146
147 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
148 }
149}
150
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200151static void pch_gpi_routing(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500152{
153 /* Get the chip configuration */
154 config_t *config = dev->chip_info;
155 u32 reg32 = 0;
156
157 /* An array would be much nicer here, or some
158 * other method of doing this.
159 */
160 reg32 |= (config->gpi0_routing & 0x03) << 0;
161 reg32 |= (config->gpi1_routing & 0x03) << 2;
162 reg32 |= (config->gpi2_routing & 0x03) << 4;
163 reg32 |= (config->gpi3_routing & 0x03) << 6;
164 reg32 |= (config->gpi4_routing & 0x03) << 8;
165 reg32 |= (config->gpi5_routing & 0x03) << 10;
166 reg32 |= (config->gpi6_routing & 0x03) << 12;
167 reg32 |= (config->gpi7_routing & 0x03) << 14;
168 reg32 |= (config->gpi8_routing & 0x03) << 16;
169 reg32 |= (config->gpi9_routing & 0x03) << 18;
170 reg32 |= (config->gpi10_routing & 0x03) << 20;
171 reg32 |= (config->gpi11_routing & 0x03) << 22;
172 reg32 |= (config->gpi12_routing & 0x03) << 24;
173 reg32 |= (config->gpi13_routing & 0x03) << 26;
174 reg32 |= (config->gpi14_routing & 0x03) << 28;
175 reg32 |= (config->gpi15_routing & 0x03) << 30;
176
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +0200177 pci_write_config32(dev, GPIO_ROUT, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500178}
179
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200180static void pch_power_options(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500181{
182 u8 reg8;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800183 u16 reg16;
Aaron Durbin76c37002012-10-30 09:03:43 -0500184 u32 reg32;
185 const char *state;
186 /* Get the chip configuration */
187 config_t *config = dev->chip_info;
Duncan Laurie467f31d2013-03-08 17:00:37 -0800188 u16 pmbase = get_pmbase();
Nico Huber9faae2b2018-11-14 00:00:35 +0100189 int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Aaron Durbin76c37002012-10-30 09:03:43 -0500190 int nmi_option;
191
192 /* Which state do we want to goto after g3 (power restored)?
193 * 0 == S0 Full On
194 * 1 == S5 Soft Off
195 *
196 * If the option is not existent (Laptops), use Kconfig setting.
197 */
198 get_option(&pwr_on, "power_on_after_fail");
199
200 reg16 = pci_read_config16(dev, GEN_PMCON_3);
201 reg16 &= 0xfffe;
202 switch (pwr_on) {
203 case MAINBOARD_POWER_OFF:
204 reg16 |= 1;
205 state = "off";
206 break;
207 case MAINBOARD_POWER_ON:
208 reg16 &= ~1;
209 state = "on";
210 break;
211 case MAINBOARD_POWER_KEEP:
212 reg16 &= ~1;
213 state = "state keep";
214 break;
215 default:
216 state = "undefined";
217 }
218
219 reg16 &= ~(3 << 4); /* SLP_S4# Assertion Stretch 4s */
220 reg16 |= (1 << 3); /* SLP_S4# Assertion Stretch Enable */
221
222 reg16 &= ~(1 << 10);
223 reg16 |= (1 << 11); /* SLP_S3# Min Assertion Width 50ms */
224
225 reg16 |= (1 << 12); /* Disable SLP stretch after SUS well */
226
227 pci_write_config16(dev, GEN_PMCON_3, reg16);
228 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
229
230 /* Set up NMI on errors. */
231 reg8 = inb(0x61);
232 reg8 &= 0x0f; /* Higher Nibble must be 0 */
233 reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
234 // reg8 &= ~(1 << 2); /* PCI SERR# Enable */
235 reg8 |= (1 << 2); /* PCI SERR# Disable for now */
236 outb(reg8, 0x61);
237
238 reg8 = inb(0x70);
239 nmi_option = NMI_OFF;
240 get_option(&nmi_option, "nmi");
241 if (nmi_option) {
242 printk(BIOS_INFO, "NMI sources enabled.\n");
243 reg8 &= ~(1 << 7); /* Set NMI. */
244 } else {
245 printk(BIOS_INFO, "NMI sources disabled.\n");
Elyes HAOUAS9c5d4632018-04-26 22:21:21 +0200246 reg8 |= (1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
Aaron Durbin76c37002012-10-30 09:03:43 -0500247 }
248 outb(reg8, 0x70);
249
250 /* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
251 reg16 = pci_read_config16(dev, GEN_PMCON_1);
252 reg16 &= ~(3 << 0); // SMI# rate 1 minute
253 reg16 &= ~(1 << 10); // Disable BIOS_PCI_EXP_EN for native PME
Aaron Durbin76c37002012-10-30 09:03:43 -0500254 pci_write_config16(dev, GEN_PMCON_1, reg16);
255
Duncan Laurie467f31d2013-03-08 17:00:37 -0800256 /*
257 * Set the board's GPI routing on LynxPoint-H.
258 * This is done as part of GPIO configuration on LynxPoint-LP.
259 */
260 if (pch_is_lp())
261 pch_gpi_routing(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500262
Duncan Laurie467f31d2013-03-08 17:00:37 -0800263 /* GPE setup based on device tree configuration */
264 enable_all_gpe(config->gpe0_en_1, config->gpe0_en_2,
265 config->gpe0_en_3, config->gpe0_en_4);
Aaron Durbin76c37002012-10-30 09:03:43 -0500266
Duncan Laurie467f31d2013-03-08 17:00:37 -0800267 /* SMI setup based on device tree configuration */
268 enable_alt_smi(config->alt_gp_smi_en);
Aaron Durbin76c37002012-10-30 09:03:43 -0500269
270 /* Set up power management block and determine sleep mode */
271 reg32 = inl(pmbase + 0x04); // PM1_CNT
272 reg32 &= ~(7 << 10); // SLP_TYP
273 reg32 |= (1 << 0); // SCI_EN
274 outl(reg32, pmbase + 0x04);
275
276 /* Clear magic status bits to prevent unexpected wake */
277 reg32 = RCBA32(0x3310);
278 reg32 |= (1 << 4)|(1 << 5)|(1 << 0);
279 RCBA32(0x3310) = reg32;
280
Ryan Salsamendi889ce9c2017-06-30 17:45:14 -0700281 reg16 = RCBA16(0x3f02);
282 reg16 &= ~0xf;
283 RCBA16(0x3f02) = reg16;
Aaron Durbin76c37002012-10-30 09:03:43 -0500284}
285
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800286/* LynxPoint PCH Power Management init */
287static void lpt_pm_init(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500288{
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800289 printk(BIOS_DEBUG, "LynxPoint PM init\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500290}
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800291
292const struct rcba_config_instruction lpt_lp_pm_rcba[] = {
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700293 RCBA_RMW_REG_32(0x232c, ~1, 0x00000000),
294 RCBA_RMW_REG_32(0x1100, ~0xc000, 0xc000),
295 RCBA_RMW_REG_32(0x1100, ~0, 0x00000100),
296 RCBA_RMW_REG_32(0x1100, ~0, 0x0000003f),
297 RCBA_RMW_REG_32(0x2320, ~0x60, 0x10),
298 RCBA_RMW_REG_32(0x3314, 0, 0x00012fff),
299 RCBA_RMW_REG_32(0x3318, 0, 0x0dcf0400),
300 RCBA_RMW_REG_32(0x3324, 0, 0x04000000),
301 RCBA_RMW_REG_32(0x3368, 0, 0x00041400),
302 RCBA_RMW_REG_32(0x3388, 0, 0x3f8ddbff),
303 RCBA_RMW_REG_32(0x33ac, 0, 0x00007001),
304 RCBA_RMW_REG_32(0x33b0, 0, 0x00181900),
305 RCBA_RMW_REG_32(0x33c0, 0, 0x00060A00),
306 RCBA_RMW_REG_32(0x33d0, 0, 0x06200840),
307 RCBA_RMW_REG_32(0x3a28, 0, 0x01010101),
308 RCBA_RMW_REG_32(0x3a2c, 0, 0x04040404),
309 RCBA_RMW_REG_32(0x2b1c, 0, 0x03808033),
310 RCBA_RMW_REG_32(0x2b34, 0, 0x80000009),
311 RCBA_RMW_REG_32(0x3348, 0, 0x022ddfff),
312 RCBA_RMW_REG_32(0x334c, 0, 0x00000001),
313 RCBA_RMW_REG_32(0x3358, 0, 0x0001c000),
314 RCBA_RMW_REG_32(0x3380, 0, 0x3f8ddbff),
315 RCBA_RMW_REG_32(0x3384, 0, 0x0001c7e1),
316 RCBA_RMW_REG_32(0x338c, 0, 0x0001c7e1),
317 RCBA_RMW_REG_32(0x3398, 0, 0x0001c000),
318 RCBA_RMW_REG_32(0x33a8, 0, 0x00181900),
319 RCBA_RMW_REG_32(0x33dc, 0, 0x00080000),
320 RCBA_RMW_REG_32(0x33e0, 0, 0x00000001),
321 RCBA_RMW_REG_32(0x3a20, 0, 0x00000404),
322 RCBA_RMW_REG_32(0x3a24, 0, 0x01010101),
323 RCBA_RMW_REG_32(0x3a30, 0, 0x01010101),
324 RCBA_RMW_REG_32(0x0410, ~0, 0x00000003),
325 RCBA_RMW_REG_32(0x2618, ~0, 0x08000000),
326 RCBA_RMW_REG_32(0x2300, ~0, 0x00000002),
327 RCBA_RMW_REG_32(0x2600, ~0, 0x00000008),
328 RCBA_RMW_REG_32(0x33b4, 0, 0x00007001),
329 RCBA_RMW_REG_32(0x3350, 0, 0x022ddfff),
330 RCBA_RMW_REG_32(0x3354, 0, 0x00000001),
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800331 RCBA_RMW_REG_32(0x33d4, ~0, 0x08000000), /* Power Optimizer */
Matt DeVillierc97e0422017-02-16 11:36:16 -0600332 RCBA_RMW_REG_32(0x33c8, ~0, 0x00000080), /* Power Optimizer */
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800333 RCBA_RMW_REG_32(0x2b10, 0, 0x0000883c), /* Power Optimizer */
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700334 RCBA_RMW_REG_32(0x2b14, 0, 0x1e0a4616), /* Power Optimizer */
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800335 RCBA_RMW_REG_32(0x2b24, 0, 0x40000005), /* Power Optimizer */
336 RCBA_RMW_REG_32(0x2b20, 0, 0x0005db01), /* Power Optimizer */
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700337 RCBA_RMW_REG_32(0x3a80, 0, 0x05145005),
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800338 RCBA_END_CONFIG
339};
340
341/* LynxPoint LP PCH Power Management init */
342static void lpt_lp_pm_init(struct device *dev)
343{
344 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
345 u32 data;
346
347 printk(BIOS_DEBUG, "LynxPoint LP PM init\n");
348
349 pci_write_config8(dev, 0xa9, 0x46);
350
351 pch_config_rcba(lpt_lp_pm_rcba);
352
353 pci_write_config32(dev, 0xac,
354 pci_read_config32(dev, 0xac) | (1 << 21));
355
Elyes HAOUASa0aea562017-07-03 21:38:53 +0200356 pch_iobp_update(0xED00015C, ~(1 << 11), 0x00003700);
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700357 pch_iobp_update(0xED000118, ~0UL, 0x00c00000);
358 pch_iobp_update(0xED000120, ~0UL, 0x00240000);
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800359 pch_iobp_update(0xCA000000, ~0UL, 0x00000009);
360
361 /* Set RCBA CIR28 0x3A84 based on SATA port enables */
362 data = 0x00001005;
363 /* Port 3 and 2 disabled */
364 if ((config->sata_port_map & ((1 << 3)|(1 << 2))) == 0)
365 data |= (1 << 24) | (1 << 26);
366 /* Port 1 and 0 disabled */
367 if ((config->sata_port_map & ((1 << 1)|(1 << 0))) == 0)
368 data |= (1 << 20) | (1 << 18);
369 RCBA32(0x3a84) = data;
370
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700371 /* Set RCBA 0x2b1c[29]=1 if DSP disabled */
372 if (RCBA32(FD) & PCH_DISABLE_ADSPD)
373 RCBA32_OR(0x2b1c, (1 << 29));
374
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800375 /* Lock */
376 RCBA32_OR(0x3a6c, 0x00000001);
377
378 /* Set RCBA 0x33D4 after other setup */
379 RCBA32_OR(0x33d4, 0x2fff2fb1);
380
381 /* Set RCBA 0x33C8[15]=1 as last step */
382 RCBA32_OR(0x33c8, (1 << 15));
383}
Aaron Durbin76c37002012-10-30 09:03:43 -0500384
Matt DeVilliera51e3792018-03-04 01:44:15 -0600385static void enable_hpet(struct device *const dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500386{
387 u32 reg32;
Matt DeVilliera51e3792018-03-04 01:44:15 -0600388 size_t i;
389
390 /* Assign unique bus/dev/fn for each HPET */
391 for (i = 0; i < 8; ++i)
392 pci_write_config16(dev, LPC_HnBDF(i),
393 PCH_HPET_PCI_BUS << 8 | PCH_HPET_PCI_SLOT << 3 | i);
Aaron Durbin76c37002012-10-30 09:03:43 -0500394
395 /* Move HPET to default address 0xfed00000 and enable it */
396 reg32 = RCBA32(HPTC);
397 reg32 |= (1 << 7); // HPET Address Enable
398 reg32 &= ~(3 << 0);
399 RCBA32(HPTC) = reg32;
400 /* Read it back to stick. It's affected by posted write syndrome. */
Elyes HAOUAS6de151e2019-10-18 16:43:30 +0200401 RCBA32(HPTC);
Aaron Durbin76c37002012-10-30 09:03:43 -0500402}
403
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200404static void enable_clock_gating(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500405{
Duncan Laurie74c0d052012-12-17 11:31:40 -0800406 /* LynxPoint Mobile */
407 u32 reg32;
408 u16 reg16;
409
410 /* DMI */
411 RCBA32_AND_OR(0x2234, ~0UL, 0xf);
412 reg16 = pci_read_config16(dev, GEN_PMCON_1);
413 reg16 |= (1 << 11) | (1 << 12) | (1 << 14);
414 reg16 |= (1 << 2); // PCI CLKRUN# Enable
415 pci_write_config16(dev, GEN_PMCON_1, reg16);
416 RCBA32_OR(0x900, (1 << 14));
417
418 reg32 = RCBA32(CG);
419 reg32 |= (1 << 22); // HDA Dynamic
Ryan Salsamendi0d9b3602017-06-30 17:15:57 -0700420 reg32 |= (1UL << 31); // LPC Dynamic
Duncan Laurie74c0d052012-12-17 11:31:40 -0800421 reg32 |= (1 << 16); // PCIe Dynamic
422 reg32 |= (1 << 27); // HPET Dynamic
423 reg32 |= (1 << 28); // GPIO Dynamic
424 RCBA32(CG) = reg32;
425
426 RCBA32_OR(0x38c0, 0x7); // SPI Dynamic
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800427}
428
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200429static void enable_lp_clock_gating(struct device *dev)
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800430{
431 /* LynxPoint LP */
432 u32 reg32;
433 u16 reg16;
434
435 /* DMI */
436 RCBA32_AND_OR(0x2234, ~0UL, 0xf);
437 reg16 = pci_read_config16(dev, GEN_PMCON_1);
438 reg16 &= ~((1 << 11) | (1 << 14));
439 reg16 |= (1 << 5) | (1 << 6) | (1 << 7) | (1 << 12) | (1 << 13);
440 reg16 |= (1 << 2); // PCI CLKRUN# Enable
441 pci_write_config16(dev, GEN_PMCON_1, reg16);
442
443 reg32 = pci_read_config32(dev, 0x64);
444 reg32 |= (1 << 6);
445 pci_write_config32(dev, 0x64, reg32);
446
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700447 /*
448 * RCBA + 0x2614[27:25,14:13,10,8] = 101,11,1,1
449 * RCBA + 0x2614[23:16] = 0x20
450 * RCBA + 0x2614[30:28] = 0x0
Duncan Lauried8c7d732013-07-16 09:01:43 -0700451 * RCBA + 0x2614[26] = 1 (IF 0:2.0@0x08 >= 0x0b)
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700452 */
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800453 RCBA32_AND_OR(0x2614, 0x8bffffff, 0x0a206500);
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700454
455 /* Check for LPT-LP B2 stepping and 0:31.0@0xFA > 4 */
Nico Huber744d6bd2019-01-12 14:58:20 +0100456 struct device *const gma = pcidev_on_root(2, 0);
457 if (gma && pci_read_config8(gma, 0x8) >= 0x0b)
Elyes HAOUASa0aea562017-07-03 21:38:53 +0200458 RCBA32_OR(0x2614, (1 << 26));
Duncan Laurie4bc107b2013-06-24 13:14:44 -0700459
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800460 RCBA32_OR(0x900, 0x0000031f);
461
462 reg32 = RCBA32(CG);
Duncan Lauriea2d6a402013-03-22 11:24:45 -0700463 if (RCBA32(0x3454) & (1 << 4))
464 reg32 &= ~(1 << 29); // LPC Dynamic
465 else
466 reg32 |= (1 << 29); // LPC Dynamic
Ryan Salsamendi3f2fe182017-07-04 13:14:16 -0700467 reg32 |= (1UL << 31); // LP LPC
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700468 reg32 |= (1 << 30); // LP BLA
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800469 reg32 |= (1 << 28); // GPIO Dynamic
470 reg32 |= (1 << 27); // HPET Dynamic
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700471 reg32 |= (1 << 26); // Generic Platform Event Clock
472 if (RCBA32(BUC) & PCH_DISABLE_GBE)
473 reg32 |= (1 << 23); // GbE Static
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800474 reg32 |= (1 << 22); // HDA Dynamic
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700475 reg32 |= (1 << 16); // PCI Dynamic
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800476 RCBA32(CG) = reg32;
477
478 RCBA32_OR(0x3434, 0x7); // LP LPC
479
480 RCBA32_AND_OR(0x333c, 0xffcfffff, 0x00c00000); // SATA
481
482 RCBA32_OR(0x38c0, 0x3c07); // SPI Dynamic
483
484 pch_iobp_update(0xCF000000, ~0UL, 0x00007001);
Duncan Laurie5cf34ce2013-04-26 10:41:33 -0700485 pch_iobp_update(0xCE00C000, ~1UL, 0x00000000); // bit0=0 in BWG 1.4.0
Aaron Durbin76c37002012-10-30 09:03:43 -0500486}
487
Aaron Durbin29ffa542012-12-21 21:21:48 -0600488static void pch_set_acpi_mode(void)
Aaron Durbin76c37002012-10-30 09:03:43 -0500489{
Kyösti Mälkkib4905622019-07-12 08:02:35 +0300490 if (CONFIG(HAVE_SMI_HANDLER) && !acpi_is_wakeup_s3()) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500491 printk(BIOS_DEBUG, "Disabling ACPI via APMC:\n");
Aaron Durbin29ffa542012-12-21 21:21:48 -0600492 outb(APM_CNT_ACPI_DISABLE, APM_CNT);
Aaron Durbin76c37002012-10-30 09:03:43 -0500493 printk(BIOS_DEBUG, "done.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500494 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500495}
Aaron Durbin76c37002012-10-30 09:03:43 -0500496
497static void pch_disable_smm_only_flashing(struct device *dev)
498{
499 u8 reg8;
500
501 printk(BIOS_SPEW, "Enabling BIOS updates outside of SMM... ");
Elyes HAOUAS0c22d2f2018-12-01 12:19:52 +0100502 reg8 = pci_read_config8(dev, BIOS_CNTL);
Aaron Durbin76c37002012-10-30 09:03:43 -0500503 reg8 &= ~(1 << 5);
Elyes HAOUAS0c22d2f2018-12-01 12:19:52 +0100504 pci_write_config8(dev, BIOS_CNTL, reg8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500505}
506
507static void pch_fixups(struct device *dev)
508{
509 u8 gen_pmcon_2;
510
511 /* Indicate DRAM init done for MRC S3 to know it can resume */
512 gen_pmcon_2 = pci_read_config8(dev, GEN_PMCON_2);
513 gen_pmcon_2 |= (1 << 7);
514 pci_write_config8(dev, GEN_PMCON_2, gen_pmcon_2);
515
516 /*
517 * Enable DMI ASPM in the PCH
518 */
519 RCBA32_AND_OR(0x2304, ~(1 << 10), 0);
520 RCBA32_OR(0x21a4, (1 << 11)|(1 << 10));
521 RCBA32_OR(0x21a8, 0x3);
522}
523
Aaron Durbin76c37002012-10-30 09:03:43 -0500524static void lpc_init(struct device *dev)
525{
526 printk(BIOS_DEBUG, "pch: lpc_init\n");
527
528 /* Set the value for PCI command register. */
529 pci_write_config16(dev, PCI_COMMAND, 0x000f);
530
531 /* IO APIC initialization. */
Paul Menzel373a20c2013-05-03 12:17:02 +0200532 pch_enable_ioapic(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500533
534 pch_enable_serial_irqs(dev);
535
536 /* Setup the PIRQ. */
537 pch_pirq_init(dev);
538
539 /* Setup power options. */
540 pch_power_options(dev);
541
542 /* Initialize power management */
Duncan Lauriedeb90f42013-03-08 17:22:37 -0800543 if (pch_is_lp()) {
544 lpt_lp_pm_init(dev);
545 enable_lp_clock_gating(dev);
546 } else {
547 lpt_pm_init(dev);
548 enable_clock_gating(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500549 }
550
Aaron Durbin76c37002012-10-30 09:03:43 -0500551 /* Initialize the real time clock. */
Patrick Rudolph6b931122018-11-01 17:48:37 +0100552 sb_rtc_init();
Aaron Durbin76c37002012-10-30 09:03:43 -0500553
554 /* Initialize ISA DMA. */
555 isa_dma_init();
556
557 /* Initialize the High Precision Event Timers, if present. */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600558 enable_hpet(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500559
Aaron Durbin76c37002012-10-30 09:03:43 -0500560 setup_i8259();
561
Aaron Durbin76c37002012-10-30 09:03:43 -0500562 /* Interrupt 9 should be level triggered (SCI) */
563 i8259_configure_irq_trigger(9, 1);
564
565 pch_disable_smm_only_flashing(dev);
566
Aaron Durbin29ffa542012-12-21 21:21:48 -0600567 pch_set_acpi_mode();
Aaron Durbin76c37002012-10-30 09:03:43 -0500568
569 pch_fixups(dev);
570}
571
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200572static void pch_lpc_add_mmio_resources(struct device *dev)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600573{
574 u32 reg;
575 struct resource *res;
576 const u32 default_decode_base = IO_APIC_ADDR;
577
578 /*
579 * Just report all resources from IO-APIC base to 4GiB. Don't mark
580 * them reserved as that may upset the OS if this range is marked
581 * as reserved in the e820.
582 */
583 res = new_resource(dev, OIC);
584 res->base = default_decode_base;
585 res->size = 0 - default_decode_base;
586 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
587
588 /* RCBA */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800589 if ((uintptr_t)DEFAULT_RCBA < default_decode_base) {
Aaron Durbin6f561af2012-12-19 14:38:01 -0600590 res = new_resource(dev, RCBA);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800591 res->base = (resource_t)(uintptr_t)DEFAULT_RCBA;
Aaron Durbin6f561af2012-12-19 14:38:01 -0600592 res->size = 16 * 1024;
593 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
594 IORESOURCE_FIXED | IORESOURCE_RESERVE;
595 }
596
597 /* Check LPC Memory Decode register. */
598 reg = pci_read_config32(dev, LGMR);
599 if (reg & 1) {
600 reg &= ~0xffff;
601 if (reg < default_decode_base) {
602 res = new_resource(dev, LGMR);
603 res->base = reg;
604 res->size = 16 * 1024;
605 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
606 IORESOURCE_FIXED | IORESOURCE_RESERVE;
607 }
608 }
609}
610
611/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
612#define LPC_DEFAULT_IO_RANGE_LOWER 0
613#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
614
Julius Werner7c712bb2019-05-01 16:51:20 -0700615static inline int pch_io_range_in_default(int base, int size)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600616{
617 /* Does it start above the range? */
618 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
619 return 0;
620
621 /* Is it entirely contained? */
622 if (base >= LPC_DEFAULT_IO_RANGE_LOWER &&
623 (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
624 return 1;
625
626 /* This will return not in range for partial overlaps. */
627 return 0;
628}
629
630/*
631 * Note: this function assumes there is no overlap with the default LPC device's
632 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
633 */
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200634static void pch_lpc_add_io_resource(struct device *dev, u16 base, u16 size,
635 int index)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600636{
637 struct resource *res;
638
639 if (pch_io_range_in_default(base, size))
640 return;
641
642 res = new_resource(dev, index);
643 res->base = base;
644 res->size = size;
645 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
646}
647
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200648static void pch_lpc_add_gen_io_resources(struct device *dev, int reg_value,
649 int index)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600650{
651 /*
652 * Check if the register is enabled. If so and the base exceeds the
Kyösti Mälkkib544c002019-01-06 10:41:41 +0200653 * device's default, claim range and add the resource.
Aaron Durbin6f561af2012-12-19 14:38:01 -0600654 */
655 if (reg_value & 1) {
656 u16 base = reg_value & 0xfffc;
657 u16 size = (0x3 | ((reg_value >> 16) & 0xfc)) + 1;
658 pch_lpc_add_io_resource(dev, base, size, index);
659 }
660}
661
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200662static void pch_lpc_add_io_resources(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500663{
664 struct resource *res;
665 config_t *config = dev->chip_info;
Aaron Durbin76c37002012-10-30 09:03:43 -0500666
Aaron Durbin6f561af2012-12-19 14:38:01 -0600667 /* Add the default claimed IO range for the LPC device. */
668 res = new_resource(dev, 0);
669 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
670 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
671 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
672
673 /* GPIOBASE */
Duncan Laurie7922b462013-03-08 16:34:33 -0800674 pch_lpc_add_io_resource(dev, get_gpiobase(), DEFAULT_GPIOSIZE,
Aaron Durbin6f561af2012-12-19 14:38:01 -0600675 GPIO_BASE);
676
677 /* PMBASE */
Duncan Laurie7922b462013-03-08 16:34:33 -0800678 pch_lpc_add_io_resource(dev, get_pmbase(), 256, PMBASE);
Aaron Durbin6f561af2012-12-19 14:38:01 -0600679
680 /* LPC Generic IO Decode range. */
681 pch_lpc_add_gen_io_resources(dev, config->gen1_dec, LPC_GEN1_DEC);
682 pch_lpc_add_gen_io_resources(dev, config->gen2_dec, LPC_GEN2_DEC);
683 pch_lpc_add_gen_io_resources(dev, config->gen3_dec, LPC_GEN3_DEC);
684 pch_lpc_add_gen_io_resources(dev, config->gen4_dec, LPC_GEN4_DEC);
685}
686
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200687static void pch_lpc_read_resources(struct device *dev)
Aaron Durbin6f561af2012-12-19 14:38:01 -0600688{
Duncan Laurie9c07c8f2013-03-22 11:08:39 -0700689 global_nvs_t *gnvs;
690
Aaron Durbin76c37002012-10-30 09:03:43 -0500691 /* Get the normal PCI resources of this device. */
692 pci_dev_read_resources(dev);
693
Aaron Durbin6f561af2012-12-19 14:38:01 -0600694 /* Add non-standard MMIO resources. */
695 pch_lpc_add_mmio_resources(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500696
Aaron Durbin6f561af2012-12-19 14:38:01 -0600697 /* Add IO resources. */
698 pch_lpc_add_io_resources(dev);
Duncan Laurie9c07c8f2013-03-22 11:08:39 -0700699
700 /* Allocate ACPI NVS in CBMEM */
701 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(global_nvs_t));
Kyösti Mälkkic3ed8862014-06-19 19:50:51 +0300702 if (!acpi_is_wakeup_s3() && gnvs)
Duncan Laurie9c07c8f2013-03-22 11:08:39 -0700703 memset(gnvs, 0, sizeof(global_nvs_t));
Aaron Durbin76c37002012-10-30 09:03:43 -0500704}
705
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200706static void pch_lpc_enable(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500707{
708 /* Enable PCH Display Port */
709 RCBA16(DISPBDF) = 0x0010;
710 RCBA32_OR(FD2, PCH_ENABLE_DBDF);
711
712 pch_enable(dev);
713}
714
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200715static void southbridge_inject_dsdt(struct device *dev)
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200716{
Vladimir Serbinenko7309c642014-10-05 11:07:33 +0200717 global_nvs_t *gnvs;
718
719 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
720 if (!gnvs) {
Elyes HAOUAS035df002016-10-03 21:54:16 +0200721 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
Vladimir Serbinenko7309c642014-10-05 11:07:33 +0200722 if (gnvs)
723 memset(gnvs, 0, sizeof(*gnvs));
724 }
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200725
726 if (gnvs) {
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100727 const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
728
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200729 acpi_create_gnvs(gnvs);
Vladimir Serbinenko1b409fd2014-10-12 00:26:21 +0200730
731 gnvs->apic = 1;
732 gnvs->mpen = 1; /* Enable Multi Processing */
733 gnvs->pcnt = dev_count_cpu();
734
Julius Wernercd49cce2019-03-05 16:53:33 -0800735#if CONFIG(CHROMEOS)
Joel Kitching6fbd8742018-08-23 14:56:25 +0800736 chromeos_init_chromeos_acpi(&(gnvs->chromeos));
Vladimir Serbinenko1b409fd2014-10-12 00:26:21 +0200737#endif
738
739 /* Update the mem console pointer. */
740 gnvs->cbmc = (u32)cbmem_find(CBMEM_ID_CONSOLE);
741
Nico Huber744d6bd2019-01-12 14:58:20 +0100742 if (gfx) {
743 gnvs->ndid = gfx->ndid;
744 memcpy(gnvs->did, gfx->did, sizeof(gnvs->did));
745 }
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100746
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200747 /* And tell SMI about it */
748 smm_setup_structures(gnvs, NULL, NULL);
749
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +0200750 /* Add it to DSDT. */
Vladimir Serbinenkobe0fd0a2014-11-04 21:10:59 +0100751 acpigen_write_scope("\\");
752 acpigen_write_name_dword("NVSA", (u32) gnvs);
753 acpigen_pop_len();
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200754 }
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200755}
756
Tristan Corrickb2632ce2018-10-31 02:28:13 +1300757void acpi_fill_fadt(acpi_fadt_t *fadt)
758{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300759 struct device *dev = pcidev_on_root(0x1f, 0);
Tristan Corrickb2632ce2018-10-31 02:28:13 +1300760 struct southbridge_intel_lynxpoint_config *cfg = dev->chip_info;
761 u16 pmbase = get_pmbase();
762
763 fadt->sci_int = 0x9;
764 fadt->smi_cmd = APM_CNT;
765 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
766 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
767 fadt->s4bios_req = 0x0;
768 fadt->pstate_cnt = 0;
769
770 fadt->pm1a_evt_blk = pmbase + PM1_STS;
771 fadt->pm1b_evt_blk = 0x0;
772 fadt->pm1a_cnt_blk = pmbase + PM1_CNT;
773 fadt->pm1b_cnt_blk = 0x0;
774 fadt->pm2_cnt_blk = pmbase + PM2_CNT;
775 fadt->pm_tmr_blk = pmbase + PM1_TMR;
776 if (pch_is_lp())
777 fadt->gpe0_blk = pmbase + LP_GPE0_STS_1;
778 else
779 fadt->gpe0_blk = pmbase + GPE0_STS;
780 fadt->gpe1_blk = 0;
781
782 /*
783 * Some of the lengths here are doubled. This is because they describe
784 * blocks containing two registers, where the size of each register
785 * is found by halving the block length. See Table 5-34 and section
786 * 4.8.3 of the ACPI specification for details.
787 */
788 fadt->pm1_evt_len = 2 * 2;
789 fadt->pm1_cnt_len = 2;
790 fadt->pm2_cnt_len = 1;
791 fadt->pm_tmr_len = 4;
792 if (pch_is_lp())
793 fadt->gpe0_blk_len = 2 * 16;
794 else
795 fadt->gpe0_blk_len = 2 * 8;
796 fadt->gpe1_blk_len = 0;
797 fadt->gpe1_base = 0;
798
799 fadt->cst_cnt = 0;
800 fadt->p_lvl2_lat = 1;
801 fadt->p_lvl3_lat = 87;
802 fadt->flush_size = 0;
803 fadt->flush_stride = 0;
804 fadt->duty_offset = 0;
805 fadt->duty_width = 0;
806 fadt->day_alrm = 0xd;
807 fadt->mon_alrm = 0x00;
808 fadt->century = 0x00;
809 fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042;
810
811 fadt->flags = ACPI_FADT_WBINVD |
812 ACPI_FADT_C1_SUPPORTED |
813 ACPI_FADT_C2_MP_SUPPORTED |
814 ACPI_FADT_SLEEP_BUTTON |
815 ACPI_FADT_RESET_REGISTER |
816 ACPI_FADT_SEALED_CASE |
817 ACPI_FADT_S4_RTC_WAKE |
818 ACPI_FADT_PLATFORM_CLOCK;
819
820 if (cfg->docking_supported)
821 fadt->flags |= ACPI_FADT_DOCKING_SUPPORTED;
822
823 fadt->reset_reg.space_id = ACPI_ADDRESS_SPACE_IO;
824 fadt->reset_reg.bit_width = 8;
825 fadt->reset_reg.bit_offset = 0;
826 fadt->reset_reg.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
827 fadt->reset_reg.addrl = 0xcf9;
828 fadt->reset_reg.addrh = 0;
829
830 fadt->reset_value = 6;
831
832 fadt->x_pm1a_evt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
833 fadt->x_pm1a_evt_blk.bit_width = 2 * 16;
834 fadt->x_pm1a_evt_blk.bit_offset = 0;
835 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
836 fadt->x_pm1a_evt_blk.addrl = pmbase + PM1_STS;
837 fadt->x_pm1a_evt_blk.addrh = 0x0;
838
839 fadt->x_pm1b_evt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
840 fadt->x_pm1b_evt_blk.bit_width = 0;
841 fadt->x_pm1b_evt_blk.bit_offset = 0;
842 fadt->x_pm1b_evt_blk.access_size = 0;
843 fadt->x_pm1b_evt_blk.addrl = 0x0;
844 fadt->x_pm1b_evt_blk.addrh = 0x0;
845
846 fadt->x_pm1a_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
847 fadt->x_pm1a_cnt_blk.bit_width = 16;
848 fadt->x_pm1a_cnt_blk.bit_offset = 0;
849 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
850 fadt->x_pm1a_cnt_blk.addrl = pmbase + PM1_CNT;
851 fadt->x_pm1a_cnt_blk.addrh = 0x0;
852
853 fadt->x_pm1b_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
854 fadt->x_pm1b_cnt_blk.bit_width = 0;
855 fadt->x_pm1b_cnt_blk.bit_offset = 0;
856 fadt->x_pm1b_cnt_blk.access_size = 0;
857 fadt->x_pm1b_cnt_blk.addrl = 0x0;
858 fadt->x_pm1b_cnt_blk.addrh = 0x0;
859
860 fadt->x_pm2_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
861 fadt->x_pm2_cnt_blk.bit_width = 8;
862 fadt->x_pm2_cnt_blk.bit_offset = 0;
863 fadt->x_pm2_cnt_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
864 fadt->x_pm2_cnt_blk.addrl = pmbase + PM2_CNT;
865 fadt->x_pm2_cnt_blk.addrh = 0x0;
866
867 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
868 fadt->x_pm_tmr_blk.bit_width = 32;
869 fadt->x_pm_tmr_blk.bit_offset = 0;
870 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
871 fadt->x_pm_tmr_blk.addrl = pmbase + PM1_TMR;
872 fadt->x_pm_tmr_blk.addrh = 0x0;
873
874 /*
875 * We don't set `fadt->x_gpe0_blk` for Lynx Point LP since the correct
876 * bit width is 128 * 2, which is too large for an 8 bit unsigned int.
877 * The OSPM can instead use the values in `fadt->gpe0_blk{,_len}`.
878 */
879 if (!pch_is_lp()) {
880 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
881 fadt->x_gpe0_blk.bit_width = 2 * 64;
882 fadt->x_gpe0_blk.bit_offset = 0;
883 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
884 fadt->x_gpe0_blk.addrl = pmbase + GPE0_STS;
885 fadt->x_gpe0_blk.addrh = 0x0;
886 } else {
887 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
888 fadt->x_gpe0_blk.bit_width = 0;
889 fadt->x_gpe0_blk.bit_offset = 0;
890 fadt->x_gpe0_blk.access_size = 0;
891 fadt->x_gpe0_blk.addrl = 0x0;
892 fadt->x_gpe0_blk.addrh = 0x0;
893 }
894
895 fadt->x_gpe1_blk.space_id = ACPI_ADDRESS_SPACE_IO;
896 fadt->x_gpe1_blk.bit_width = 0;
897 fadt->x_gpe1_blk.bit_offset = 0;
898 fadt->x_gpe1_blk.access_size = 0;
899 fadt->x_gpe1_blk.addrl = 0x0;
900 fadt->x_gpe1_blk.addrh = 0x0;
901}
902
Tristan Corrickf3127d42018-10-31 02:25:54 +1300903static const char *lpc_acpi_name(const struct device *dev)
904{
905 return "LPCB";
906}
907
908static void southbridge_fill_ssdt(struct device *dev)
909{
910 intel_acpi_gen_def_acpi_pirq(dev);
911}
912
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200913static unsigned long southbridge_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200914 unsigned long start,
915 struct acpi_rsdp *rsdp)
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200916{
917 unsigned long current;
918 acpi_hpet_t *hpet;
919 acpi_header_t *ssdt;
920
921 current = start;
922
923 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -0600924 current = acpi_align_current(current);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200925
926 /*
927 * We explicitly add these tables later on:
928 */
929 printk(BIOS_DEBUG, "ACPI: * HPET\n");
930
931 hpet = (acpi_hpet_t *) current;
932 current += sizeof(acpi_hpet_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -0600933 current = acpi_align_current(current);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200934 acpi_create_intel_hpet(hpet);
935 acpi_add_table(rsdp, hpet);
936
Aaron Durbin07a1b282015-12-10 17:07:38 -0600937 current = acpi_align_current(current);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200938
939 printk(BIOS_DEBUG, "ACPI: * SSDT2\n");
940 ssdt = (acpi_header_t *)current;
941 acpi_create_serialio_ssdt(ssdt);
942 current += ssdt->length;
943 acpi_add_table(rsdp, ssdt);
Aaron Durbin07a1b282015-12-10 17:07:38 -0600944 current = acpi_align_current(current);
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200945
946 printk(BIOS_DEBUG, "current = %lx\n", current);
947 return current;
948}
949
Tristan Corrick32ceed82018-11-30 22:53:27 +1300950static void lpc_final(struct device *dev)
951{
Arthur Heymansa3121b02019-05-28 13:46:49 +0200952 spi_finalize_ops();
Tristan Corrick63626b12018-11-30 22:53:50 +1300953
Julius Wernercd49cce2019-03-05 16:53:33 -0800954 if (acpi_is_wakeup_s3() || CONFIG(INTEL_CHIPSET_LOCKDOWN))
Tristan Corrick32ceed82018-11-30 22:53:27 +1300955 outb(APM_CNT_FINALIZE, APM_CNT);
956}
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200957
Aaron Durbin76c37002012-10-30 09:03:43 -0500958static struct pci_operations pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +0530959 .set_subsystem = pci_dev_set_subsystem,
Aaron Durbin76c37002012-10-30 09:03:43 -0500960};
961
962static struct device_operations device_ops = {
963 .read_resources = pch_lpc_read_resources,
964 .set_resources = pci_dev_set_resources,
Duncan Laurie8d783b82013-05-14 11:16:34 -0700965 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200966 .acpi_fill_ssdt = southbridge_fill_ssdt,
967 .acpi_inject_dsdt = southbridge_inject_dsdt,
Tristan Corrickf3127d42018-10-31 02:25:54 +1300968 .acpi_name = lpc_acpi_name,
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +0200969 .write_acpi_tables = southbridge_write_acpi_tables,
Aaron Durbin76c37002012-10-30 09:03:43 -0500970 .init = lpc_init,
Tristan Corrick32ceed82018-11-30 22:53:27 +1300971 .final = lpc_final,
Aaron Durbin76c37002012-10-30 09:03:43 -0500972 .enable = pch_lpc_enable,
Nico Huber51b75ae2019-03-14 16:02:05 +0100973 .scan_bus = scan_static_bus,
Aaron Durbin76c37002012-10-30 09:03:43 -0500974 .ops_pci = &pci_ops,
975};
976
977
Aaron Durbinc1989c42012-12-11 17:13:17 -0600978/* IDs for LPC device of Intel 8 Series Chipset (Lynx Point) */
979static const unsigned short pci_device_ids[] = {
980 0x8c41, /* Mobile Full Featured Engineering Sample. */
981 0x8c42, /* Desktop Full Featured Engineering Sample. */
982 0x8c44, /* Z87 SKU */
983 0x8c46, /* Z85 SKU */
984 0x8c49, /* HM86 SKU */
985 0x8c4a, /* H87 SKU */
986 0x8c4b, /* HM87 SKU */
987 0x8c4c, /* Q85 SKU */
988 0x8c4e, /* Q87 SKU */
989 0x8c4f, /* QM87 SKU */
Tristan Corrick9a085742018-10-31 02:20:28 +1300990 0x8c50, /* B85 SKU */
991 0x8c52, /* C222 SKU */
992 0x8c54, /* C224 SKU */
993 0x8c56, /* C226 SKU */
994 0x8c5c, /* H81 SKU */
Duncan Laurie74c0d052012-12-17 11:31:40 -0800995 0x9c41, /* LP Full Featured Engineering Sample */
996 0x9c43, /* LP Premium SKU */
997 0x9c45, /* LP Mainstream SKU */
998 0x9c47, /* LP Value SKU */
Aaron Durbinc1989c42012-12-11 17:13:17 -0600999 0 };
Aaron Durbin76c37002012-10-30 09:03:43 -05001000
1001static const struct pci_driver pch_lpc __pci_driver = {
1002 .ops = &device_ops,
1003 .vendor = PCI_VENDOR_ID_INTEL,
1004 .devices = pci_device_ids,
1005};