blob: 2111913a0e2ff663a7efb7bec57d39c060cc7d8a [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
3#include <console/console.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07004#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +02007#include <option.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07008#include <pc80/isa-dma.h>
9#include <pc80/i8259.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020010#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070011#include <arch/ioapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070012#include <acpi/acpi.h>
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +030013#include <acpi/acpi_gnvs.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070014#include <cpu/x86/smm.h>
15#include <cbmem.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070016#include <string.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070017#include <soc/gpio.h>
18#include <soc/iobp.h>
19#include <soc/iomap.h>
20#include <soc/lpc.h>
21#include <soc/nvs.h>
22#include <soc/pch.h>
23#include <soc/pci_devs.h>
24#include <soc/pm.h>
25#include <soc/ramstage.h>
26#include <soc/rcba.h>
Angel Pons3cc2c382020-10-23 20:38:23 +020027#include <soc/intel/broadwell/pch/chip.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070028#include <acpi/acpigen.h>
Arthur Heymans2abbe462019-06-04 14:12:01 +020029#include <southbridge/intel/common/rtc.h>
Duncan Laurie35dc00f2015-01-18 14:06:42 -080030
Duncan Lauriec88c54c2014-04-30 16:36:13 -070031static void pch_enable_ioapic(struct device *dev)
32{
33 u32 reg32;
34
Matt DeVillier81a6f102018-02-19 17:33:48 -060035 /* Assign unique bus/dev/fn for I/O APIC */
36 pci_write_config16(dev, LPC_IBDF,
37 PCH_IOAPIC_PCI_BUS << 8 | PCH_IOAPIC_PCI_SLOT << 3);
38
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080039 set_ioapic_id(VIO_APIC_VADDR, 0x02);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070040
41 /* affirm full set of redirection table entries ("write once") */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080042 reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070043
44 /* PCH-LP has 39 redirection entries */
45 reg32 &= ~0x00ff0000;
46 reg32 |= 0x00270000;
47
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080048 io_apic_write(VIO_APIC_VADDR, 0x01, reg32);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070049
50 /*
51 * Select Boot Configuration register (0x03) and
52 * use Processor System Bus (0x01) to deliver interrupts.
53 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080054 io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070055}
56
Matt DeVillier81a6f102018-02-19 17:33:48 -060057static void enable_hpet(struct device *dev)
58{
59 size_t i;
60
61 /* Assign unique bus/dev/fn for each HPET */
62 for (i = 0; i < 8; ++i)
63 pci_write_config16(dev, LPC_HnBDF(i),
64 PCH_HPET_PCI_BUS << 8 | PCH_HPET_PCI_SLOT << 3 | i);
65}
66
Duncan Lauriec88c54c2014-04-30 16:36:13 -070067/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
68 * 0x00 - 0000 = Reserved
69 * 0x01 - 0001 = Reserved
70 * 0x02 - 0010 = Reserved
71 * 0x03 - 0011 = IRQ3
72 * 0x04 - 0100 = IRQ4
73 * 0x05 - 0101 = IRQ5
74 * 0x06 - 0110 = IRQ6
75 * 0x07 - 0111 = IRQ7
76 * 0x08 - 1000 = Reserved
77 * 0x09 - 1001 = IRQ9
78 * 0x0A - 1010 = IRQ10
79 * 0x0B - 1011 = IRQ11
80 * 0x0C - 1100 = IRQ12
81 * 0x0D - 1101 = Reserved
82 * 0x0E - 1110 = IRQ14
83 * 0x0F - 1111 = IRQ15
84 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
85 * 0x80 - The PIRQ is not routed.
86 */
87
Elyes HAOUAS040aff22018-05-27 16:30:36 +020088static void pch_pirq_init(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070089{
Elyes HAOUAS040aff22018-05-27 16:30:36 +020090 struct device *irq_dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070091
Angel Pons4a6c0a32020-07-25 15:11:15 +020092 const uint8_t pirq = 0x80;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070093
Angel Pons4a6c0a32020-07-25 15:11:15 +020094 pci_write_config8(dev, PIRQA_ROUT, pirq);
95 pci_write_config8(dev, PIRQB_ROUT, pirq);
96 pci_write_config8(dev, PIRQC_ROUT, pirq);
97 pci_write_config8(dev, PIRQD_ROUT, pirq);
98
99 pci_write_config8(dev, PIRQE_ROUT, pirq);
100 pci_write_config8(dev, PIRQF_ROUT, pirq);
101 pci_write_config8(dev, PIRQG_ROUT, pirq);
102 pci_write_config8(dev, PIRQH_ROUT, pirq);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700103
Elyes HAOUAS4a83f1c2016-08-25 21:07:59 +0200104 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Lee Leahy26b7cd02017-03-16 18:47:55 -0700105 u8 int_pin = 0, int_line = 0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700106
107 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
108 continue;
109
110 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
111
112 switch (int_pin) {
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700113 case 1: /* INTA# */
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700114 case 2: /* INTB# */
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700115 case 3: /* INTC# */
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700116 case 4: /* INTD# */
Angel Pons4a6c0a32020-07-25 15:11:15 +0200117 int_line = pirq;
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700118 break;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700119 }
120
121 if (!int_line)
122 continue;
123
124 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
125 }
126}
127
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200128static void pch_power_options(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700129{
130 u16 reg16;
131 const char *state;
132 /* Get the chip configuration */
Angel Pons3cc2c382020-10-23 20:38:23 +0200133 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Nico Huber9faae2b2018-11-14 00:00:35 +0100134 int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700135
136 /* Which state do we want to goto after g3 (power restored)?
137 * 0 == S0 Full On
138 * 1 == S5 Soft Off
139 *
140 * If the option is not existent (Laptops), use Kconfig setting.
141 */
142 get_option(&pwr_on, "power_on_after_fail");
143
144 reg16 = pci_read_config16(dev, GEN_PMCON_3);
145 reg16 &= 0xfffe;
146 switch (pwr_on) {
147 case MAINBOARD_POWER_OFF:
148 reg16 |= 1;
149 state = "off";
150 break;
151 case MAINBOARD_POWER_ON:
152 reg16 &= ~1;
153 state = "on";
154 break;
155 case MAINBOARD_POWER_KEEP:
156 reg16 &= ~1;
157 state = "state keep";
158 break;
159 default:
160 state = "undefined";
161 }
162 pci_write_config16(dev, GEN_PMCON_3, reg16);
163 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
164
165 /* GPE setup based on device tree configuration */
166 enable_all_gpe(config->gpe0_en_1, config->gpe0_en_2,
167 config->gpe0_en_3, config->gpe0_en_4);
168
169 /* SMI setup based on device tree configuration */
170 enable_alt_smi(config->alt_gp_smi_en);
171}
172
Angel Ponsf2e2b962020-10-13 20:19:40 +0200173static void pch_misc_init(struct device *dev)
174{
175 u8 reg8;
176 u16 reg16;
177 u32 reg32;
178
179 reg16 = pci_read_config16(dev, GEN_PMCON_3);
180
181 reg16 &= ~(3 << 4); /* SLP_S4# Assertion Stretch 4s */
182 reg16 |= (1 << 3); /* SLP_S4# Assertion Stretch Enable */
183
184 reg16 &= ~(1 << 10);
185 reg16 |= (1 << 11); /* SLP_S3# Min Assertion Width 50ms */
186
187 reg16 |= (1 << 12); /* Disable SLP stretch after SUS well */
188
189 pci_write_config16(dev, GEN_PMCON_3, reg16);
190
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700191 /* Prepare sleep mode */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200192 reg32 = inl(ACPI_BASE_ADDRESS + PM1_CNT);
193 reg32 &= ~SLP_TYP;
194 reg32 |= SCI_EN;
195 outl(reg32, ACPI_BASE_ADDRESS + PM1_CNT);
196
197 /* Set up NMI on errors */
198 reg8 = inb(0x61);
199 reg8 &= ~0xf0; /* Higher nibble must be 0 */
200 reg8 |= (1 << 2); /* PCI SERR# disable for now */
201 outb(reg8, 0x61);
202
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700203 /* Disable NMI sources */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200204 reg8 = inb(0x70);
205 reg8 |= (1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
206 outb(reg8, 0x70);
207
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700208 /* Indicate DRAM init done for MRC */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200209 pci_or_config8(dev, GEN_PMCON_2, 1 << 7);
210
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700211 /* Enable BIOS updates outside of SMM */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200212 pci_and_config8(dev, BIOS_CNTL, ~(1 << 5));
213
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700214 /* Clear status bits to prevent unexpected wake */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200215 RCBA32_OR(0x3310, 0x2f);
216
217 RCBA32_AND_OR(0x3f02, ~0xf, 0);
218
Kenji Chen074a0282014-09-20 01:39:20 +0800219 /* Enable PCIe Releaxed Order */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200220 RCBA32_OR(0x2314, (1 << 31) | (1 << 7)),
221 RCBA32_OR(0x1114, (1 << 15) | (1 << 14)),
222
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700223 /* Setup SERIRQ, enable continuous mode */
Angel Ponsf2e2b962020-10-13 20:19:40 +0200224 reg8 = pci_read_config8(dev, SERIRQ_CNTL);
225 reg8 |= 1 << 7;
226
227 if (CONFIG(SERIRQ_CONTINUOUS_MODE))
228 reg8 |= 1 << 6;
229
230 pci_write_config8(dev, SERIRQ_CNTL, reg8);
231}
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700232
233/* Magic register settings for power management */
Angel Pons2436ac02020-10-13 20:03:49 +0200234static void pch_pm_init_magic(struct device *dev)
235{
236 pci_write_config8(dev, 0xa9, 0x46);
237
238 RCBA32_AND_OR(0x232c, ~1, 0);
239
240 RCBA32_OR(0x1100, 0x0000c13f);
241
242 RCBA32_AND_OR(0x2320, ~0x60, 0x10);
243
244 RCBA32(0x3314) = 0x00012fff;
245
246 RCBA32_AND_OR(0x3318, ~0x000f0330, 0x0dcf0400);
247
248 RCBA32(0x3324) = 0x04000000;
249 RCBA32(0x3368) = 0x00041400;
250 RCBA32(0x3388) = 0x3f8ddbff;
251 RCBA32(0x33ac) = 0x00007001;
252 RCBA32(0x33b0) = 0x00181900;
253 RCBA32(0x33c0) = 0x00060A00;
254 RCBA32(0x33d0) = 0x06200840;
255 RCBA32(0x3a28) = 0x01010101;
256 RCBA32(0x3a2c) = 0x040c0404;
257 RCBA32(0x3a9c) = 0x9000000a;
258 RCBA32(0x2b1c) = 0x03808033;
259 RCBA32(0x2b34) = 0x80000009;
260 RCBA32(0x3348) = 0x022ddfff;
261 RCBA32(0x334c) = 0x00000001;
262 RCBA32(0x3358) = 0x0001c000;
263 RCBA32(0x3380) = 0x3f8ddbff;
264 RCBA32(0x3384) = 0x0001c7e1;
265 RCBA32(0x338c) = 0x0001c7e1;
266 RCBA32(0x3398) = 0x0001c000;
267 RCBA32(0x33a8) = 0x00181900;
268 RCBA32(0x33dc) = 0x00080000;
269 RCBA32(0x33e0) = 0x00000001;
270 RCBA32(0x3a20) = 0x0000040c;
271 RCBA32(0x3a24) = 0x01010101;
272 RCBA32(0x3a30) = 0x01010101;
273
274 pci_update_config32(dev, 0xac, ~0x00200000, 0);
275
276 RCBA32_OR(0x0410, 0x00000003);
277 RCBA32_OR(0x2618, 0x08000000);
278 RCBA32_OR(0x2300, 0x00000002);
279 RCBA32_OR(0x2600, 0x00000008);
280
281 RCBA32(0x33b4) = 0x00007001;
282 RCBA32(0x3350) = 0x022ddfff;
283 RCBA32(0x3354) = 0x00000001;
284
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700285 /* Power Optimizer */
Angel Pons2436ac02020-10-13 20:03:49 +0200286 RCBA32_OR(0x33d4, 0x08000000);
287 RCBA32_OR(0x33c8, 0x00000080);
288
289 RCBA32(0x2b10) = 0x0000883c;
290 RCBA32(0x2b14) = 0x1e0a4616;
291 RCBA32(0x2b24) = 0x40000005;
292 RCBA32(0x2b20) = 0x0005db01;
293 RCBA32(0x3a80) = 0x05145005;
294 RCBA32(0x3a84) = 0x00001005;
295
296 RCBA32_OR(0x33d4, 0x2fff2fb1);
297 RCBA32_OR(0x33c8, 0x00008000);
298}
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700299
300static void pch_enable_mphy(void)
301{
302 u32 gpio71_native = gpio_is_native(71);
303 u32 data_and = 0xffffffff;
304 u32 data_or = (1 << 14) | (1 << 13) | (1 << 12);
305
306 if (gpio71_native) {
307 data_or |= (1 << 0);
308 if (pch_is_wpt()) {
309 data_and &= ~((1 << 7) | (1 << 6) | (1 << 3));
310 data_or |= (1 << 5) | (1 << 4);
311
312 if (pch_is_wpt_ulx()) {
313 /* Check if SATA and USB3 MPHY are enabled */
314 u32 strap19 = pch_read_soft_strap(19);
315 strap19 &= ((1 << 31) | (1 << 30));
316 strap19 >>= 30;
317 if (strap19 == 3) {
318 data_or |= (1 << 3);
319 printk(BIOS_DEBUG, "Enable ULX MPHY PG "
320 "control in single domain\n");
321 } else if (strap19 == 0) {
322 printk(BIOS_DEBUG, "Enable ULX MPHY PG "
323 "control in split domains\n");
324 } else {
325 printk(BIOS_DEBUG, "Invalid PCH Soft "
326 "Strap 19 configuration\n");
327 }
328 } else {
329 data_or |= (1 << 3);
330 }
331 }
332 }
333
334 pch_iobp_update(0xCF000000, data_and, data_or);
335}
336
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700337static void pch_init_deep_sx(struct device *dev)
338{
Angel Pons3cc2c382020-10-23 20:38:23 +0200339 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700340
341 if (config->deep_sx_enable_ac) {
342 RCBA32_OR(DEEP_S3_POL, DEEP_S3_EN_AC);
343 RCBA32_OR(DEEP_S5_POL, DEEP_S5_EN_AC);
344 }
345
346 if (config->deep_sx_enable_dc) {
347 RCBA32_OR(DEEP_S3_POL, DEEP_S3_EN_DC);
348 RCBA32_OR(DEEP_S5_POL, DEEP_S5_EN_DC);
349 }
350
351 if (config->deep_sx_enable_ac || config->deep_sx_enable_dc)
352 RCBA32_OR(DEEP_SX_CONFIG,
353 DEEP_SX_WAKE_PIN_EN | DEEP_SX_GP27_PIN_EN);
354}
355
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700356/* Power Management init */
357static void pch_pm_init(struct device *dev)
358{
359 printk(BIOS_DEBUG, "PCH PM init\n");
360
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700361 pch_init_deep_sx(dev);
362
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700363 pch_enable_mphy();
364
Angel Pons2436ac02020-10-13 20:03:49 +0200365 pch_pm_init_magic(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700366
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700367 if (pch_is_wpt()) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700368 RCBA32_OR(0x33e0, (1 << 4) | (1 << 1));
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700369 RCBA32_OR(0x2b1c, (1 << 22) | (1 << 14) | (1 << 13));
370 RCBA32(0x33e4) = 0x16bf0002;
371 RCBA32_OR(0x33e4, 0x1);
372 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700373
374 pch_iobp_update(0xCA000000, ~0UL, 0x00000009);
375
376 /* Set RCBA 0x2b1c[29]=1 if DSP disabled */
377 if (RCBA32(FD) & PCH_DISABLE_ADSPD)
378 RCBA32_OR(0x2b1c, (1 << 29));
379
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700380}
381
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200382static void pch_cg_init(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700383{
384 u32 reg32;
385 u16 reg16;
Kyösti Mälkki71756c212019-07-12 13:10:19 +0300386 struct device *igd_dev = pcidev_path_on_root(SA_DEVFN_IGD);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700387
388 /* DMI */
389 RCBA32_OR(0x2234, 0xf);
390
391 reg16 = pci_read_config16(dev, GEN_PMCON_1);
392 reg16 &= ~(1 << 10); /* Disable BIOS_PCI_EXP_EN for native PME */
393 if (pch_is_wpt())
394 reg16 &= ~(1 << 11);
395 else
396 reg16 |= (1 << 11);
397 reg16 |= (1 << 5) | (1 << 6) | (1 << 7) | (1 << 12);
398 reg16 |= (1 << 2); // PCI CLKRUN# Enable
399 pci_write_config16(dev, GEN_PMCON_1, reg16);
400
401 /*
402 * RCBA + 0x2614[27:25,14:13,10,8] = 101,11,1,1
403 * RCBA + 0x2614[23:16] = 0x20
404 * RCBA + 0x2614[30:28] = 0x0
405 * RCBA + 0x2614[26] = 1 (IF 0:2.0@0x08 >= 0x0b)
406 */
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700407 RCBA32_AND_OR(0x2614, ~0x64ff0000, 0x0a206500);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700408
409 /* Check for 0:2.0@0x08 >= 0x0b */
Kyösti Mälkki71756c212019-07-12 13:10:19 +0300410 if (pch_is_wpt() || pci_read_config8(igd_dev, 0x8) >= 0x0b)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700411 RCBA32_OR(0x2614, (1 << 26));
412
413 RCBA32_OR(0x900, 0x0000031f);
414
415 reg32 = RCBA32(CG);
416 if (RCBA32(0x3454) & (1 << 4))
417 reg32 &= ~(1 << 29); // LPC Dynamic
418 else
419 reg32 |= (1 << 29); // LPC Dynamic
420 reg32 |= (1 << 31); // LP LPC
421 reg32 |= (1 << 30); // LP BLA
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700422 if (RCBA32(0x3454) & (1 << 4))
423 reg32 &= ~(1 << 29);
424 else
425 reg32 |= (1 << 29);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700426 reg32 |= (1 << 28); // GPIO Dynamic
427 reg32 |= (1 << 27); // HPET Dynamic
428 reg32 |= (1 << 26); // Generic Platform Event Clock
429 if (RCBA32(BUC) & PCH_DISABLE_GBE)
430 reg32 |= (1 << 23); // GbE Static
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700431 if (RCBA32(FD) & PCH_DISABLE_HD_AUDIO)
432 reg32 |= (1 << 21); // HDA Static
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700433 reg32 |= (1 << 22); // HDA Dynamic
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700434 RCBA32(CG) = reg32;
435
436 /* PCH-LP LPC */
437 if (pch_is_wpt())
438 RCBA32_AND_OR(0x3434, ~0x1f, 0x17);
439 else
440 RCBA32_OR(0x3434, 0x7);
441
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700442 /* SPI */
443 RCBA32_OR(0x38c0, 0x3c07);
444
445 pch_iobp_update(0xCE00C000, ~1UL, 0x00000000);
446}
447
448static void pch_set_acpi_mode(void)
449{
Kyösti Mälkkiad882c32020-06-02 05:05:30 +0300450 if (!acpi_is_wakeup_s3()) {
Kyösti Mälkkib6585482020-06-01 15:11:14 +0300451 apm_control(APM_CNT_ACPI_DISABLE);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700452 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700453}
454
455static void lpc_init(struct device *dev)
456{
457 /* Legacy initialization */
458 isa_dma_init();
Arthur Heymans2abbe462019-06-04 14:12:01 +0200459 sb_rtc_init();
Angel Ponsf2e2b962020-10-13 20:19:40 +0200460 pch_misc_init(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700461
462 /* Interrupt configuration */
463 pch_enable_ioapic(dev);
464 pch_pirq_init(dev);
465 setup_i8259();
466 i8259_configure_irq_trigger(9, 1);
Matt DeVillier81a6f102018-02-19 17:33:48 -0600467 enable_hpet(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700468
469 /* Initialize power management */
470 pch_power_options(dev);
471 pch_pm_init(dev);
472 pch_cg_init(dev);
473
474 pch_set_acpi_mode();
475}
476
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200477static void pch_lpc_add_mmio_resources(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700478{
479 u32 reg;
480 struct resource *res;
481 const u32 default_decode_base = IO_APIC_ADDR;
482
483 /*
484 * Just report all resources from IO-APIC base to 4GiB. Don't mark
485 * them reserved as that may upset the OS if this range is marked
486 * as reserved in the e820.
487 */
488 res = new_resource(dev, OIC);
489 res->base = default_decode_base;
490 res->size = 0 - default_decode_base;
491 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
492
493 /* RCBA */
Lee Leahy6ef51922017-03-17 10:56:08 -0700494 if (default_decode_base > RCBA_BASE_ADDRESS) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700495 res = new_resource(dev, RCBA);
496 res->base = RCBA_BASE_ADDRESS;
497 res->size = 16 * 1024;
498 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
Lee Leahy26b7cd02017-03-16 18:47:55 -0700499 IORESOURCE_FIXED | IORESOURCE_RESERVE;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700500 }
501
502 /* Check LPC Memory Decode register. */
503 reg = pci_read_config32(dev, LGMR);
504 if (reg & 1) {
505 reg &= ~0xffff;
506 if (reg < default_decode_base) {
507 res = new_resource(dev, LGMR);
508 res->base = reg;
509 res->size = 16 * 1024;
510 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
Lee Leahy26b7cd02017-03-16 18:47:55 -0700511 IORESOURCE_FIXED | IORESOURCE_RESERVE;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700512 }
513 }
514}
515
516/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
517#define LPC_DEFAULT_IO_RANGE_LOWER 0
518#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
519
Julius Werner7c712bb2019-05-01 16:51:20 -0700520static inline int pch_io_range_in_default(int base, int size)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700521{
522 /* Does it start above the range? */
523 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
524 return 0;
525
526 /* Is it entirely contained? */
527 if (base >= LPC_DEFAULT_IO_RANGE_LOWER &&
528 (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
529 return 1;
530
531 /* This will return not in range for partial overlaps. */
532 return 0;
533}
534
535/*
536 * Note: this function assumes there is no overlap with the default LPC device's
537 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
538 */
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200539static void pch_lpc_add_io_resource(struct device *dev, u16 base, u16 size,
540 int index)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700541{
542 struct resource *res;
543
544 if (pch_io_range_in_default(base, size))
545 return;
546
547 res = new_resource(dev, index);
548 res->base = base;
549 res->size = size;
550 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
551}
552
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200553static void pch_lpc_add_gen_io_resources(struct device *dev, int reg_value,
554 int index)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700555{
556 /*
557 * Check if the register is enabled. If so and the base exceeds the
Martin Rothde7ed6f2014-12-07 14:58:18 -0700558 * device's default claim range add the resource.
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700559 */
560 if (reg_value & 1) {
561 u16 base = reg_value & 0xfffc;
562 u16 size = (0x3 | ((reg_value >> 16) & 0xfc)) + 1;
563 pch_lpc_add_io_resource(dev, base, size, index);
564 }
565}
566
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200567static void pch_lpc_add_io_resources(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700568{
569 struct resource *res;
Angel Pons3cc2c382020-10-23 20:38:23 +0200570 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700571
572 /* Add the default claimed IO range for the LPC device. */
573 res = new_resource(dev, 0);
574 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
575 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
576 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
577
578 /* GPIOBASE */
579 pch_lpc_add_io_resource(dev, GPIO_BASE_ADDRESS,
580 GPIO_BASE_SIZE, GPIO_BASE);
581
582 /* PMBASE */
583 pch_lpc_add_io_resource(dev, ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, PMBASE);
584
585 /* LPC Generic IO Decode range. */
586 pch_lpc_add_gen_io_resources(dev, config->gen1_dec, LPC_GEN1_DEC);
587 pch_lpc_add_gen_io_resources(dev, config->gen2_dec, LPC_GEN2_DEC);
588 pch_lpc_add_gen_io_resources(dev, config->gen3_dec, LPC_GEN3_DEC);
589 pch_lpc_add_gen_io_resources(dev, config->gen4_dec, LPC_GEN4_DEC);
590}
591
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200592static void pch_lpc_read_resources(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700593{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300594 struct global_nvs *gnvs;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700595
596 /* Get the normal PCI resources of this device. */
597 pci_dev_read_resources(dev);
598
599 /* Add non-standard MMIO resources. */
600 pch_lpc_add_mmio_resources(dev);
601
602 /* Add IO resources. */
603 pch_lpc_add_io_resources(dev);
604
605 /* Allocate ACPI NVS in CBMEM */
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300606 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(struct global_nvs));
Kyösti Mälkki9e94dbf2015-01-08 20:03:18 +0200607 if (!acpi_is_wakeup_s3() && gnvs)
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300608 memset(gnvs, 0, sizeof(struct global_nvs));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700609}
610
Furquan Shaikh338fd9a2020-04-24 22:57:05 -0700611static void southcluster_inject_dsdt(const struct device *device)
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100612{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300613 struct global_nvs *gnvs;
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100614
615 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
616 if (!gnvs) {
Lee Leahy26b7cd02017-03-16 18:47:55 -0700617 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100618 if (gnvs)
619 memset(gnvs, 0, sizeof(*gnvs));
620 }
621
622 if (gnvs) {
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100623 acpi_create_gnvs(gnvs);
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100624 /* And tell SMI about it */
Kyösti Mälkkic3c55212020-06-17 10:34:26 +0300625 apm_control(APM_CNT_GNVS_UPDATE);
Vladimir Serbinenkob219da82014-11-09 03:29:30 +0100626
627 /* Add it to DSDT. */
628 acpigen_write_scope("\\");
629 acpigen_write_name_dword("NVSA", (u32) gnvs);
630 acpigen_pop_len();
631 }
632}
633
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700634static unsigned long broadwell_write_acpi_tables(const struct device *device,
Duncan Laurie93bbd412017-11-11 20:03:29 -0800635 unsigned long current,
636 struct acpi_rsdp *rsdp)
637{
Julius Wernercd49cce2019-03-05 16:53:33 -0800638 if (CONFIG(INTEL_PCH_UART_CONSOLE))
Duncan Laurie93bbd412017-11-11 20:03:29 -0800639 current = acpi_write_dbg2_pci_uart(rsdp, current,
640 (CONFIG_INTEL_PCH_UART_CONSOLE_NUMBER == 1) ?
641 PCH_DEV_UART1 : PCH_DEV_UART0,
642 ACPI_ACCESS_SIZE_BYTE_ACCESS);
643 return acpi_write_hpet(device, current, rsdp);
644}
645
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700646static struct device_operations device_ops = {
647 .read_resources = &pch_lpc_read_resources,
648 .set_resources = &pci_dev_set_resources,
649 .enable_resources = &pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200650 .acpi_inject_dsdt = southcluster_inject_dsdt,
Duncan Laurie93bbd412017-11-11 20:03:29 -0800651 .write_acpi_tables = broadwell_write_acpi_tables,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700652 .init = &lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100653 .scan_bus = &scan_static_bus,
Angel Ponscb2080f2020-10-23 15:45:44 +0200654 .ops_pci = &pci_dev_ops_pci,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700655};
656
657static const unsigned short pci_device_ids[] = {
658 PCH_LPT_LP_SAMPLE,
659 PCH_LPT_LP_PREMIUM,
660 PCH_LPT_LP_MAINSTREAM,
661 PCH_LPT_LP_VALUE,
662 PCH_WPT_HSW_U_SAMPLE,
663 PCH_WPT_BDW_U_SAMPLE,
664 PCH_WPT_BDW_U_PREMIUM,
665 PCH_WPT_BDW_U_BASE,
666 PCH_WPT_BDW_Y_SAMPLE,
667 PCH_WPT_BDW_Y_PREMIUM,
668 PCH_WPT_BDW_Y_BASE,
669 PCH_WPT_BDW_H,
670 0
671};
672
673static const struct pci_driver pch_lpc __pci_driver = {
674 .ops = &device_ops,
675 .vendor = PCI_VENDOR_ID_INTEL,
676 .devices = pci_device_ids,
677};