blob: e79cb128a59682b816db3d91adc5838c7b7c3193 [file] [log] [blame]
Lee Leahy77ff0b12015-05-05 15:07:29 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2013 Google Inc.
Lee Leahy32471722015-04-20 15:20:28 -07006 * Copyright (C) 2015 Intel Corp.
Frans Hendriksb55cd542019-03-06 14:45:12 +01007 * Copyright (C) 2018-2019 Eltan B.V.
Lee Leahy77ff0b12015-05-05 15:07:29 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Lee Leahy77ff0b12015-05-05 15:07:29 -070017 */
18
Lee Leahy77ff0b12015-05-05 15:07:29 -070019#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020020#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020021#include <device/pci_ops.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070022#include <arch/acpi.h>
Frans Hendriksad5e0a82019-03-18 13:31:56 +010023#include <arch/ioapic.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070024#include <bootstate.h>
Lee Leahy32471722015-04-20 15:20:28 -070025#include "chip.h"
Lee Leahy77ff0b12015-05-05 15:07:29 -070026#include <console/console.h>
27#include <cpu/x86/smm.h>
28#include <device/device.h>
29#include <device/pci.h>
30#include <device/pci_ids.h>
Frans Hendriks255f35c2018-12-11 15:21:47 +010031#include <pc80/isa-dma.h>
Frans Hendriksbd5233e2018-12-05 15:24:48 +010032#include <pc80/i8254.h>
Frans Hendriks93484132018-12-10 12:38:16 +010033#include <pc80/i8259.h>
Lee Leahy2bc9cee2015-06-30 15:25:44 -070034#include <soc/acpi.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070035#include <soc/iomap.h>
36#include <soc/irq.h>
37#include <soc/lpc.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070038#include <soc/pci_devs.h>
Lee Leahy32471722015-04-20 15:20:28 -070039#include <soc/pm.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070040#include <soc/ramstage.h>
41#include <soc/spi.h>
Lee Leahy32471722015-04-20 15:20:28 -070042#include <spi-generic.h>
43#include <stdint.h>
Hannah Williams3fa80a92017-03-22 16:33:36 -070044#include <reg_script.h>
45
46static const struct reg_script ops[] = {
47 REG_MMIO_RMW32(ILB_BASE_ADDRESS + SCNT,
48 ~SCNT_MODE, 0), /* put LPC SERIRQ in Quiet Mode */
49 REG_SCRIPT_END
50};
51
52static void enable_serirq_quiet_mode(void)
53{
54 reg_script_run(ops);
55}
Lee Leahy77ff0b12015-05-05 15:07:29 -070056
57static inline void
Elyes HAOUASb13fac32018-05-24 22:29:44 +020058add_mmio_resource(struct device *dev, int i, unsigned long addr,
59 unsigned long size)
Lee Leahy77ff0b12015-05-05 15:07:29 -070060{
Elyes HAOUASa342f392018-10-17 10:56:26 +020061 printk(BIOS_SPEW, "%s/%s (%s, 0x%016lx, 0x%016lx)\n",
Lee Leahy32471722015-04-20 15:20:28 -070062 __FILE__, __func__, dev_name(dev), addr, size);
Lee Leahy77ff0b12015-05-05 15:07:29 -070063 mmio_resource(dev, i, addr >> 10, size >> 10);
64}
65
Elyes HAOUASb13fac32018-05-24 22:29:44 +020066static void sc_add_mmio_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070067{
Elyes HAOUASa342f392018-10-17 10:56:26 +020068 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -070069 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -070070 add_mmio_resource(dev, 0xfeb, ABORT_BASE_ADDRESS, ABORT_BASE_SIZE);
71 add_mmio_resource(dev, PBASE, PMC_BASE_ADDRESS, PMC_BASE_SIZE);
72 add_mmio_resource(dev, IOBASE, IO_BASE_ADDRESS, IO_BASE_SIZE);
73 add_mmio_resource(dev, IBASE, ILB_BASE_ADDRESS, ILB_BASE_SIZE);
74 add_mmio_resource(dev, SBASE, SPI_BASE_ADDRESS, SPI_BASE_SIZE);
75 add_mmio_resource(dev, MPBASE, MPHY_BASE_ADDRESS, MPHY_BASE_SIZE);
76 add_mmio_resource(dev, PUBASE, PUNIT_BASE_ADDRESS, PUNIT_BASE_SIZE);
77 add_mmio_resource(dev, RCBA, RCBA_BASE_ADDRESS, RCBA_BASE_SIZE);
Frans Hendriksad5e0a82019-03-18 13:31:56 +010078 add_mmio_resource(dev, 0xfff,
79 0xffffffff - (CONFIG_COREBOOT_ROMSIZE_KB*KiB) + 1,
80 (CONFIG_COREBOOT_ROMSIZE_KB*KiB)); /* BIOS ROM */
81 add_mmio_resource(dev, 0xfec, IO_APIC_ADDR, 0x00001000); /* IOAPIC */
Lee Leahy77ff0b12015-05-05 15:07:29 -070082}
83
84/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
85#define LPC_DEFAULT_IO_RANGE_LOWER 0
86#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
87
Frans Hendriks93484132018-12-10 12:38:16 +010088/*
89 * Write PCI config space IRQ assignments. PCI devices have the INT_LINE
90 * (0x3C) and INT_PIN (0x3D) registers which report interrupt routing
91 * information to operating systems and drivers. The INT_PIN register is
92 * generally read only and reports which interrupt pin A - D it uses. The
93 * INT_LINE register is configurable and reports which IRQ (generally the
94 * PIC IRQs 1 - 15) it will use. This needs to take interrupt pin swizzling
95 * on devices that are downstream on a PCI bridge into account.
96 *
97 * This function will loop through all enabled PCI devices and program the
98 * INT_LINE register with the correct PIC IRQ number for the INT_PIN that it
99 * uses. It then configures each interrupt in the pic to be level triggered.
100 */
101static void write_pci_config_irqs(void)
102{
103 struct device *irq_dev;
104 struct device *targ_dev;
105 uint8_t int_line = 0;
106 uint8_t original_int_pin = 0;
107 uint8_t new_int_pin = 0;
108 uint16_t current_bdf = 0;
109 uint16_t parent_bdf = 0;
110 uint8_t pirq = 0;
111 uint8_t device_num = 0;
112 const struct soc_irq_route *ir = &global_soc_irq_route;
113
114 if (ir == NULL) {
115 printk(BIOS_WARNING, "Warning: Can't write PCI IRQ assignments"
116 " because 'global_braswell_irq_route' structure does"
117 " not exist\n");
118 return;
119 }
120
121 /*
122 * Loop through all enabled devices and program their
123 * INT_LINE, INT_PIN registers from values taken from
124 * the Interrupt Route registers in the ILB
125 */
126 printk(BIOS_DEBUG, "PCI_CFG IRQ: Write PIRQ assignments\n");
127 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
128
129 if ((irq_dev->path.type != DEVICE_PATH_PCI) ||
130 (!irq_dev->enabled))
131 continue;
132
133 current_bdf = irq_dev->path.pci.devfn |
134 irq_dev->bus->secondary << 8;
135
136 /*
137 * Step 1: Get the INT_PIN and device structure to look for
138 * in the pirq_data table defined in the mainboard directory.
139 */
140 targ_dev = NULL;
141 new_int_pin = get_pci_irq_pins(irq_dev, &targ_dev);
142 if (targ_dev == NULL || new_int_pin < 1)
143 continue;
144
145 /* Get the original INT_PIN for record keeping */
146 original_int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
147
148 parent_bdf = targ_dev->path.pci.devfn
149 | targ_dev->bus->secondary << 8;
150 device_num = PCI_SLOT(parent_bdf);
151
152 if (ir->pcidev[device_num] == 0) {
153 printk(BIOS_WARNING,
154 "Warning: PCI Device %d does not have an IRQ "
155 "entry, skipping it\n", device_num);
156 continue;
157 }
158
159 /* Find the PIRQ that is attached to the INT_PIN */
160 pirq = (ir->pcidev[device_num] >> ((new_int_pin - 1) * 4))
161 & 0x7;
162
163 /* Get the INT_LINE this device/function will use */
164 int_line = ir->pic[pirq];
165
166 if (int_line != PIRQ_PIC_IRQDISABLE) {
167 /* Set this IRQ to level triggered */
168 i8259_configure_irq_trigger(int_line,
169 IRQ_LEVEL_TRIGGERED);
170 /* Set the Interrupt Line register */
171 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE,
172 int_line);
173 } else {
174 /*
175 * Set the Interrupt line register as 'unknown' or
176 * 'unused'
177 */
178 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE,
179 PIRQ_PIC_UNKNOWN_UNUSED);
180 }
181
182 printk(BIOS_SPEW, "\tINT_PIN\t\t: %d (%s)\n",
183 original_int_pin, pin_to_str(original_int_pin));
184 if (parent_bdf != current_bdf)
185 printk(BIOS_SPEW, "\tSwizzled to\t: %d (%s)\n",
186 new_int_pin, pin_to_str(new_int_pin));
187 printk(BIOS_SPEW, "\tPIRQ\t\t: %c\n"
188 "\tINT_LINE\t: 0x%X (IRQ %d)\n",
189 'A' + pirq, int_line, int_line);
190 }
191 printk(BIOS_DEBUG, "PCI_CFG IRQ: Finished writing PIRQ assignments\n");
192}
193
Lee Leahy77ff0b12015-05-05 15:07:29 -0700194static inline int io_range_in_default(int base, int size)
195{
196 /* Does it start above the range? */
197 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
198 return 0;
199
200 /* Is it entirely contained? */
201 if (base >= LPC_DEFAULT_IO_RANGE_LOWER &&
202 (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
203 return 1;
204
205 /* This will return not in range for partial overlaps. */
206 return 0;
207}
208
209/*
210 * Note: this function assumes there is no overlap with the default LPC device's
211 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
212 */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200213static void sc_add_io_resource(struct device *dev, int base, int size,
214 int index)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700215{
216 struct resource *res;
217
Elyes HAOUASa342f392018-10-17 10:56:26 +0200218 printk(BIOS_SPEW, "%s/%s (%s, 0x%08x, 0x%08x, 0x%08x)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700219 __FILE__, __func__, dev_name(dev), base, size, index);
220
Lee Leahy77ff0b12015-05-05 15:07:29 -0700221 if (io_range_in_default(base, size))
222 return;
223
224 res = new_resource(dev, index);
225 res->base = base;
226 res->size = size;
227 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
228}
229
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200230static void sc_add_io_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700231{
232 struct resource *res;
233
Elyes HAOUASa342f392018-10-17 10:56:26 +0200234 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700235 __FILE__, __func__, dev_name(dev));
236
Lee Leahy77ff0b12015-05-05 15:07:29 -0700237 /* Add the default claimed IO range for the LPC device. */
238 res = new_resource(dev, 0);
239 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
240 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
241 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
242
243 /* GPIO */
Frans Hendriks4b2c12f2018-11-22 07:52:38 +0100244 sc_add_io_resource(dev, GPIO_BASE_ADDRESS, GPIO_BASE_SIZE, GBASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700245
246 /* ACPI */
Frans Hendriks4b2c12f2018-11-22 07:52:38 +0100247 sc_add_io_resource(dev, ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, ABASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700248}
249
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200250static void sc_read_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700251{
Elyes HAOUASa342f392018-10-17 10:56:26 +0200252 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700253 __FILE__, __func__, dev_name(dev));
254
Lee Leahy77ff0b12015-05-05 15:07:29 -0700255 /* Get the normal PCI resources of this device. */
256 pci_dev_read_resources(dev);
257
258 /* Add non-standard MMIO resources. */
259 sc_add_mmio_resources(dev);
260
261 /* Add IO resources. */
262 sc_add_io_resources(dev);
263}
264
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200265static void sc_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700266{
267 int i;
Lee Leahy32471722015-04-20 15:20:28 -0700268 const unsigned long pr_base = ILB_BASE_ADDRESS + 0x08;
269 const unsigned long ir_base = ILB_BASE_ADDRESS + 0x20;
Frans Hendriksb55cd542019-03-06 14:45:12 +0100270 const unsigned long ilb_base = ILB_BASE_ADDRESS;
Lee Leahy32471722015-04-20 15:20:28 -0700271 void *gen_pmcon1 = (void *)(PMC_BASE_ADDRESS + GEN_PMCON1);
Lee Leahy32471722015-04-20 15:20:28 -0700272 const struct soc_irq_route *ir = &global_soc_irq_route;
273 struct soc_intel_braswell_config *config = dev->chip_info;
274
Elyes HAOUASa342f392018-10-17 10:56:26 +0200275 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700276 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -0700277
Frans Hendriksb55cd542019-03-06 14:45:12 +0100278 /* Set the value for PCI command register. */
279 pci_write_config16(dev, PCI_COMMAND,
280 PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
281 PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
282
283 /* Use IRQ9 for SCI Interrupt */
284 write32((void *)(ilb_base + ACTL), 0);
285
Frans Hendriks255f35c2018-12-11 15:21:47 +0100286 isa_dma_init();
287
Lee Leahy77ff0b12015-05-05 15:07:29 -0700288 /* Set up the PIRQ PIC routing based on static config. */
Lee Leahy32471722015-04-20 15:20:28 -0700289 for (i = 0; i < NUM_PIRQS; i++)
290 write8((void *)(pr_base + i*sizeof(ir->pic[i])),
291 ir->pic[i]);
292
Lee Leahy77ff0b12015-05-05 15:07:29 -0700293 /* Set up the per device PIRQ routing base on static config. */
Lee Leahy32471722015-04-20 15:20:28 -0700294 for (i = 0; i < NUM_IR_DEVS; i++)
295 write16((void *)(ir_base + i*sizeof(ir->pcidev[i])),
296 ir->pcidev[i]);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700297
Frans Hendriks93484132018-12-10 12:38:16 +0100298 /* Interrupt 9 should be level triggered (SCI) */
299 i8259_configure_irq_trigger(9, 1);
300
301 for (i = 0; i < NUM_PIRQS; i++) {
302 if (ir->pic[i])
303 i8259_configure_irq_trigger(ir->pic[i], 1);
304 }
Lee Leahy77ff0b12015-05-05 15:07:29 -0700305
Lee Leahy77ff0b12015-05-05 15:07:29 -0700306 if (config->disable_slp_x_stretch_sus_fail) {
307 printk(BIOS_DEBUG, "Disabling slp_x stretching.\n");
308 write32(gen_pmcon1,
309 read32(gen_pmcon1) | DIS_SLP_X_STRCH_SUS_UP);
310 } else {
311 write32(gen_pmcon1,
312 read32(gen_pmcon1) & ~DIS_SLP_X_STRCH_SUS_UP);
313 }
314
Frans Hendriks93484132018-12-10 12:38:16 +0100315 /* Write IRQ assignments to PCI config space */
316 write_pci_config_irqs();
317
318 /* Initialize i8259 pic */
319 setup_i8259();
320
Frans Hendriksbd5233e2018-12-05 15:24:48 +0100321 /* Initialize i8254 timers */
322 setup_i8254();
Lee Leahy77ff0b12015-05-05 15:07:29 -0700323}
324
325/*
326 * Common code for the south cluster devices.
327 */
328
Lee Leahy32471722015-04-20 15:20:28 -0700329/* Set bit in function disble register to hide this device. */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200330static void sc_disable_devfn(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700331{
Lee Leahy32471722015-04-20 15:20:28 -0700332 void *func_dis = (void *)(PMC_BASE_ADDRESS + FUNC_DIS);
333 void *func_dis2 = (void *)(PMC_BASE_ADDRESS + FUNC_DIS2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700334 uint32_t mask = 0;
335 uint32_t mask2 = 0;
336
Elyes HAOUASa342f392018-10-17 10:56:26 +0200337 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700338 __FILE__, __func__, dev_name(dev));
339
340#define SET_DIS_MASK(name_) \
341 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
342 mask |= name_ ## _DIS
343#define SET_DIS_MASK2(name_) \
344 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
345 mask2 |= name_ ## _DIS
346
Lee Leahy77ff0b12015-05-05 15:07:29 -0700347 switch (dev->path.pci.devfn) {
Lee Leahy32471722015-04-20 15:20:28 -0700348 SET_DIS_MASK(SDIO);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700349 break;
Lee Leahy32471722015-04-20 15:20:28 -0700350 SET_DIS_MASK(SD);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700351 break;
Lee Leahy32471722015-04-20 15:20:28 -0700352 SET_DIS_MASK(SATA);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700353 break;
Lee Leahy32471722015-04-20 15:20:28 -0700354 SET_DIS_MASK(XHCI);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700355 /* Disable super speed PHY when XHCI is not available. */
356 mask2 |= USH_SS_PHY_DIS;
357 break;
Lee Leahy32471722015-04-20 15:20:28 -0700358 SET_DIS_MASK(LPE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700359 break;
Lee Leahy32471722015-04-20 15:20:28 -0700360 SET_DIS_MASK(MMC);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700361 break;
Lee Leahy32471722015-04-20 15:20:28 -0700362 SET_DIS_MASK(SIO_DMA1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700363 break;
Lee Leahy32471722015-04-20 15:20:28 -0700364 SET_DIS_MASK(I2C1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700365 break;
Lee Leahy32471722015-04-20 15:20:28 -0700366 SET_DIS_MASK(I2C2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700367 break;
Lee Leahy32471722015-04-20 15:20:28 -0700368 SET_DIS_MASK(I2C3);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700369 break;
Lee Leahy32471722015-04-20 15:20:28 -0700370 SET_DIS_MASK(I2C4);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700371 break;
Lee Leahy32471722015-04-20 15:20:28 -0700372 SET_DIS_MASK(I2C5);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700373 break;
Lee Leahy32471722015-04-20 15:20:28 -0700374 SET_DIS_MASK(I2C6);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700375 break;
Lee Leahy32471722015-04-20 15:20:28 -0700376 SET_DIS_MASK(I2C7);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700377 break;
Lee Leahy32471722015-04-20 15:20:28 -0700378 SET_DIS_MASK(TXE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700379 break;
Lee Leahy32471722015-04-20 15:20:28 -0700380 SET_DIS_MASK(HDA);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700381 break;
Lee Leahy32471722015-04-20 15:20:28 -0700382 SET_DIS_MASK(PCIE_PORT1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700383 break;
Lee Leahy32471722015-04-20 15:20:28 -0700384 SET_DIS_MASK(PCIE_PORT2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700385 break;
Lee Leahy32471722015-04-20 15:20:28 -0700386 SET_DIS_MASK(PCIE_PORT3);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700387 break;
Lee Leahy32471722015-04-20 15:20:28 -0700388 SET_DIS_MASK(PCIE_PORT4);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700389 break;
Lee Leahy32471722015-04-20 15:20:28 -0700390 SET_DIS_MASK(SIO_DMA2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700391 break;
Lee Leahy32471722015-04-20 15:20:28 -0700392 SET_DIS_MASK(PWM1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700393 break;
Lee Leahy32471722015-04-20 15:20:28 -0700394 SET_DIS_MASK(PWM2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700395 break;
Lee Leahy32471722015-04-20 15:20:28 -0700396 SET_DIS_MASK(HSUART1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700397 break;
Lee Leahy32471722015-04-20 15:20:28 -0700398 SET_DIS_MASK(HSUART2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700399 break;
Lee Leahy32471722015-04-20 15:20:28 -0700400 SET_DIS_MASK(SPI);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700401 break;
Lee Leahy32471722015-04-20 15:20:28 -0700402 SET_DIS_MASK2(SMBUS);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700403 break;
404 }
405
406 if (mask != 0) {
407 write32(func_dis, read32(func_dis) | mask);
408 /* Ensure posted write hits. */
409 read32(func_dis);
410 }
411
412 if (mask2 != 0) {
413 write32(func_dis2, read32(func_dis2) | mask2);
414 /* Ensure posted write hits. */
415 read32(func_dis2);
416 }
417}
418
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200419static inline void set_d3hot_bits(struct device *dev, int offset)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700420{
421 uint32_t reg8;
Lee Leahy32471722015-04-20 15:20:28 -0700422
Elyes HAOUASa342f392018-10-17 10:56:26 +0200423 printk(BIOS_SPEW, "%s/%s (%s, 0x%08x)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700424 __FILE__, __func__, dev_name(dev), offset);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700425 printk(BIOS_DEBUG, "Power management CAP offset 0x%x.\n", offset);
426 reg8 = pci_read_config8(dev, offset + 4);
427 reg8 |= 0x3;
428 pci_write_config8(dev, offset + 4, reg8);
429}
430
Lee Leahy32471722015-04-20 15:20:28 -0700431/*
432 * Parts of the audio subsystem are powered by the HDA device. Therefore, one
Lee Leahy77ff0b12015-05-05 15:07:29 -0700433 * cannot put HDA into D3Hot. Instead perform this workaround to make some of
Lee Leahy32471722015-04-20 15:20:28 -0700434 * the audio paths work for LPE audio.
435 */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200436static void hda_work_around(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700437{
Lee Leahy32471722015-04-20 15:20:28 -0700438 void *gctl = (void *)(TEMP_BASE_ADDRESS + 0x8);
439
Elyes HAOUASa342f392018-10-17 10:56:26 +0200440 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700441 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -0700442
443 /* Need to set magic register 0x43 to 0xd7 in config space. */
444 pci_write_config8(dev, 0x43, 0xd7);
445
Lee Leahy32471722015-04-20 15:20:28 -0700446 /*
447 * Need to set bit 0 of GCTL to take the device out of reset. However,
448 * that requires setting up the 64-bit BAR.
449 */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700450 pci_write_config32(dev, PCI_BASE_ADDRESS_0, TEMP_BASE_ADDRESS);
451 pci_write_config32(dev, PCI_BASE_ADDRESS_1, 0);
452 pci_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY);
453 write32(gctl, read32(gctl) | 0x1);
454 pci_write_config8(dev, PCI_COMMAND, 0);
455 pci_write_config32(dev, PCI_BASE_ADDRESS_0, 0);
456}
457
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200458static int place_device_in_d3hot(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700459{
Lee Leahy1072e7d2017-03-16 17:35:32 -0700460 unsigned int offset;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700461
Elyes HAOUASa342f392018-10-17 10:56:26 +0200462 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700463 __FILE__, __func__, dev_name(dev));
464
465 /*
466 * Parts of the HDA block are used for LPE audio as well.
467 * Therefore assume the HDA will never be put into D3Hot.
468 */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700469 if (dev->path.pci.devfn == PCI_DEVFN(HDA_DEV, HDA_FUNC)) {
470 hda_work_around(dev);
471 return 0;
472 }
473
474 offset = pci_find_capability(dev, PCI_CAP_ID_PM);
475
476 if (offset != 0) {
477 set_d3hot_bits(dev, offset);
478 return 0;
479 }
480
Lee Leahy32471722015-04-20 15:20:28 -0700481 /*
482 * For some reason some of the devices don't have the capability
483 * pointer set correctly. Work around this by hard coding the offset.
484 */
485#define DEV_CASE(name_) \
486 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC)
487
Lee Leahy77ff0b12015-05-05 15:07:29 -0700488 switch (dev->path.pci.devfn) {
Lee Leahy32471722015-04-20 15:20:28 -0700489 DEV_CASE(SDIO) :
490 DEV_CASE(SD) :
491 DEV_CASE(MMC) :
492 DEV_CASE(LPE) :
493 DEV_CASE(SIO_DMA1) :
494 DEV_CASE(I2C1) :
495 DEV_CASE(I2C2) :
496 DEV_CASE(I2C3) :
497 DEV_CASE(I2C4) :
498 DEV_CASE(I2C5) :
499 DEV_CASE(I2C6) :
500 DEV_CASE(I2C7) :
501 DEV_CASE(SIO_DMA2) :
502 DEV_CASE(PWM1) :
503 DEV_CASE(PWM2) :
504 DEV_CASE(HSUART1) :
505 DEV_CASE(HSUART2) :
506 DEV_CASE(SPI) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700507 offset = 0x80;
508 break;
Lee Leahy32471722015-04-20 15:20:28 -0700509 DEV_CASE(SATA) :
510 DEV_CASE(XHCI) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700511 offset = 0x70;
512 break;
Lee Leahy32471722015-04-20 15:20:28 -0700513 DEV_CASE(HDA) :
514 DEV_CASE(SMBUS) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700515 offset = 0x50;
516 break;
Lee Leahy32471722015-04-20 15:20:28 -0700517 DEV_CASE(TXE) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700518 /* TXE cannot be placed in D3Hot. */
519 return 0;
Lee Leahy32471722015-04-20 15:20:28 -0700520 DEV_CASE(PCIE_PORT1) :
521 DEV_CASE(PCIE_PORT2) :
522 DEV_CASE(PCIE_PORT3) :
523 DEV_CASE(PCIE_PORT4) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700524 offset = 0xa0;
525 break;
526 }
527
528 if (offset != 0) {
529 set_d3hot_bits(dev, offset);
530 return 0;
531 }
532
533 return -1;
534}
535
536/* Common PCI device function disable. */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200537void southcluster_enable_dev(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700538{
539 uint32_t reg32;
540
Elyes HAOUASa342f392018-10-17 10:56:26 +0200541 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700542 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -0700543 if (!dev->enabled) {
544 int slot = PCI_SLOT(dev->path.pci.devfn);
545 int func = PCI_FUNC(dev->path.pci.devfn);
546 printk(BIOS_DEBUG, "%s: Disabling device: %02x.%01x\n",
547 dev_path(dev), slot, func);
548
549 /* Ensure memory, io, and bus master are all disabled */
550 reg32 = pci_read_config32(dev, PCI_COMMAND);
551 reg32 &= ~(PCI_COMMAND_MASTER |
552 PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
553 pci_write_config32(dev, PCI_COMMAND, reg32);
554
555 /* Place device in D3Hot */
556 if (place_device_in_d3hot(dev) < 0) {
557 printk(BIOS_WARNING,
558 "Could not place %02x.%01x into D3Hot. "
559 "Keeping device visible.\n", slot, func);
560 return;
561 }
562 /* Disable this device if possible */
563 sc_disable_devfn(dev);
564 } else {
565 /* Enable SERR */
566 reg32 = pci_read_config32(dev, PCI_COMMAND);
567 reg32 |= PCI_COMMAND_SERR;
568 pci_write_config32(dev, PCI_COMMAND, reg32);
569 }
570}
571
572static struct device_operations device_ops = {
573 .read_resources = sc_read_resources,
574 .set_resources = pci_dev_set_resources,
575 .enable_resources = NULL,
Lee Leahy2bc9cee2015-06-30 15:25:44 -0700576 .acpi_inject_dsdt_generator = southcluster_inject_dsdt,
577 .write_acpi_tables = southcluster_write_acpi_tables,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700578 .init = sc_init,
579 .enable = southcluster_enable_dev,
Lee Leahy32471722015-04-20 15:20:28 -0700580 .scan_bus = scan_lpc_bus,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700581 .ops_pci = &soc_pci_ops,
582};
583
584static const struct pci_driver southcluster __pci_driver = {
585 .ops = &device_ops,
586 .vendor = PCI_VENDOR_ID_INTEL,
587 .device = LPC_DEVID,
588};
589
Aaron Durbin64031672018-04-21 14:45:32 -0600590int __weak mainboard_get_spi_config(struct spi_config *cfg)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700591{
Elyes HAOUASa342f392018-10-17 10:56:26 +0200592 printk(BIOS_SPEW, "%s/%s (0x%p)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700593 __FILE__, __func__, (void *)cfg);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700594 return -1;
595}
596
597static void finalize_chipset(void *unused)
598{
Lee Leahy32471722015-04-20 15:20:28 -0700599 void *bcr = (void *)(SPI_BASE_ADDRESS + BCR);
600 void *gcs = (void *)(RCBA_BASE_ADDRESS + GCS);
601 void *gen_pmcon2 = (void *)(PMC_BASE_ADDRESS + GEN_PMCON2);
602 void *etr = (void *)(PMC_BASE_ADDRESS + ETR);
603 uint8_t *spi = (uint8_t *)SPI_BASE_ADDRESS;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700604 struct spi_config cfg;
605
Elyes HAOUASa342f392018-10-17 10:56:26 +0200606 printk(BIOS_SPEW, "%s/%s (0x%p)\n",
Lee Leahy32471722015-04-20 15:20:28 -0700607 __FILE__, __func__, unused);
608
Lee Leahy77ff0b12015-05-05 15:07:29 -0700609 /* Set the lock enable on the BIOS control register. */
610 write32(bcr, read32(bcr) | BCR_LE);
611
612 /* Set BIOS lock down bit controlling boot block size and swapping. */
613 write32(gcs, read32(gcs) | BILD);
614
615 /* Lock sleep stretching policy and set SMI lock. */
616 write32(gen_pmcon2, read32(gen_pmcon2) | SLPSX_STR_POL_LOCK | SMI_LOCK);
617
618 /* Set the CF9 lock. */
619 write32(etr, read32(etr) | CF9LOCK);
620
621 if (mainboard_get_spi_config(&cfg) < 0) {
622 printk(BIOS_DEBUG, "No SPI lockdown configuration.\n");
623 } else {
624 write16(spi + PREOP, cfg.preop);
625 write16(spi + OPTYPE, cfg.optype);
626 write32(spi + OPMENU0, cfg.opmenu[0]);
627 write32(spi + OPMENU1, cfg.opmenu[1]);
628 write16(spi + HSFSTS, read16(spi + HSFSTS) | FLOCKDN);
629 write32(spi + UVSCC, cfg.uvscc);
630 write32(spi + LVSCC, cfg.lvscc | VCL);
631 }
Lee Leahy32471722015-04-20 15:20:28 -0700632 spi_init();
Hannah Williams3fa80a92017-03-22 16:33:36 -0700633 enable_serirq_quiet_mode();
Lee Leahy77ff0b12015-05-05 15:07:29 -0700634
635 printk(BIOS_DEBUG, "Finalizing SMM.\n");
636 outb(APM_CNT_FINALIZE, APM_CNT);
637}
638
Hannah Williams2cfdde72015-04-15 19:48:07 -0700639BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, finalize_chipset, NULL);