blob: 0f762fcb8caebf0caff20431483d12ebde6f0bb5 [file] [log] [blame]
Angel Ponsba38f372020-04-05 15:46:45 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Lee Leahy77ff0b12015-05-05 15:07:29 -07002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpi.h>
Frans Hendriksad5e0a82019-03-18 13:31:56 +01006#include <arch/ioapic.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -07007#include <bootstate.h>
Lee Leahy32471722015-04-20 15:20:28 -07008#include "chip.h"
Lee Leahy77ff0b12015-05-05 15:07:29 -07009#include <console/console.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070010#include <device/device.h>
11#include <device/pci.h>
12#include <device/pci_ids.h>
Frans Hendriks2c630172019-04-02 15:06:29 +020013#include <intelblocks/lpc_lib.h>
Frans Hendriks255f35c2018-12-11 15:21:47 +010014#include <pc80/isa-dma.h>
Frans Hendriksbd5233e2018-12-05 15:24:48 +010015#include <pc80/i8254.h>
Frans Hendriks93484132018-12-10 12:38:16 +010016#include <pc80/i8259.h>
Lee Leahy2bc9cee2015-06-30 15:25:44 -070017#include <soc/acpi.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070018#include <soc/iomap.h>
19#include <soc/irq.h>
20#include <soc/lpc.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070021#include <soc/pci_devs.h>
Lee Leahy32471722015-04-20 15:20:28 -070022#include <soc/pm.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070023#include <soc/ramstage.h>
24#include <soc/spi.h>
Lee Leahy32471722015-04-20 15:20:28 -070025#include <spi-generic.h>
26#include <stdint.h>
Arthur Heymans68b6eb72019-10-13 23:26:36 +020027#include <southbridge/intel/common/spi.h>
Hannah Williams3fa80a92017-03-22 16:33:36 -070028
Frans Hendriks2c630172019-04-02 15:06:29 +020029static void sc_set_serial_irqs_mode(struct device *dev, enum serirq_mode mode)
Hannah Williams3fa80a92017-03-22 16:33:36 -070030{
Angel Ponsaee7ab22020-03-19 00:31:58 +010031 u8 *ilb_base = (u8 *)(pci_read_config32(dev, IBASE) & ~0xf);
Frans Hendriks2c630172019-04-02 15:06:29 +020032
33 switch (mode) {
34 case SERIRQ_CONTINUOUS:
35 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010036
Frans Hendriks2c630172019-04-02 15:06:29 +020037 case SERIRQ_OFF:
Angel Ponsaee7ab22020-03-19 00:31:58 +010038 write32(ilb_base + ILB_OIC, read32(ilb_base + ILB_OIC) & ~SIRQEN);
Frans Hendriks2c630172019-04-02 15:06:29 +020039 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010040
Frans Hendriks2c630172019-04-02 15:06:29 +020041 case SERIRQ_QUIET:
42 default:
43 write8(ilb_base + SCNT, read8(ilb_base + SCNT) & ~SCNT_MODE);
44 break;
45 }
Hannah Williams3fa80a92017-03-22 16:33:36 -070046}
Lee Leahy77ff0b12015-05-05 15:07:29 -070047
Angel Ponsaee7ab22020-03-19 00:31:58 +010048static inline void add_mmio_resource(struct device *dev, int i, unsigned long addr,
49 unsigned long size)
Lee Leahy77ff0b12015-05-05 15:07:29 -070050{
Kyösti Mälkki27d62992022-05-24 20:25:58 +030051 mmio_resource_kb(dev, i, addr >> 10, size >> 10);
Lee Leahy77ff0b12015-05-05 15:07:29 -070052}
53
Elyes HAOUASb13fac32018-05-24 22:29:44 +020054static void sc_add_mmio_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070055{
56 add_mmio_resource(dev, 0xfeb, ABORT_BASE_ADDRESS, ABORT_BASE_SIZE);
57 add_mmio_resource(dev, PBASE, PMC_BASE_ADDRESS, PMC_BASE_SIZE);
58 add_mmio_resource(dev, IOBASE, IO_BASE_ADDRESS, IO_BASE_SIZE);
59 add_mmio_resource(dev, IBASE, ILB_BASE_ADDRESS, ILB_BASE_SIZE);
60 add_mmio_resource(dev, SBASE, SPI_BASE_ADDRESS, SPI_BASE_SIZE);
61 add_mmio_resource(dev, MPBASE, MPHY_BASE_ADDRESS, MPHY_BASE_SIZE);
62 add_mmio_resource(dev, PUBASE, PUNIT_BASE_ADDRESS, PUNIT_BASE_SIZE);
63 add_mmio_resource(dev, RCBA, RCBA_BASE_ADDRESS, RCBA_BASE_SIZE);
Angel Ponsaee7ab22020-03-19 00:31:58 +010064 add_mmio_resource(dev, 0xfff, 0xffffffff - (CONFIG_COREBOOT_ROMSIZE_KB * KiB) + 1,
65 (CONFIG_COREBOOT_ROMSIZE_KB * KiB)); /* BIOS ROM */
66
Frans Hendriksad5e0a82019-03-18 13:31:56 +010067 add_mmio_resource(dev, 0xfec, IO_APIC_ADDR, 0x00001000); /* IOAPIC */
Lee Leahy77ff0b12015-05-05 15:07:29 -070068}
69
70/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
71#define LPC_DEFAULT_IO_RANGE_LOWER 0
72#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
73
Frans Hendriks2c630172019-04-02 15:06:29 +020074static void sc_enable_serial_irqs(struct device *dev)
75{
76 u8 *ilb_base = (u8 *)(pci_read_config32(dev, IBASE) & ~0xF);
77
78 printk(BIOS_SPEW, "Enable serial irq\n");
79 write32(ilb_base + ILB_OIC, read32(ilb_base + ILB_OIC) | SIRQEN);
80 write8(ilb_base + SCNT, read8(ilb_base + SCNT) | SCNT_MODE);
81}
82
Frans Hendriks93484132018-12-10 12:38:16 +010083/*
Angel Ponsaee7ab22020-03-19 00:31:58 +010084 * Write PCI config space IRQ assignments. PCI devices have the INT_LINE (0x3c) and INT_PIN
85 * (0x3d) registers which report interrupt routing information to operating systems and drivers.
86 * The INT_PIN register is generally read only and reports which interrupt pin A - D it uses.
87 * The INT_LINE register is configurable and reports which IRQ (generally the PIC IRQs 1 - 15)
88 * it will use. This needs to take interrupt pin swizzling on devices that are downstream on
89 * a PCI bridge into account.
Frans Hendriks93484132018-12-10 12:38:16 +010090 *
Angel Ponsaee7ab22020-03-19 00:31:58 +010091 * This function will loop through all enabled PCI devices and program the INT_LINE register
92 * with the correct PIC IRQ number for the INT_PIN that it uses. It then configures each
93 * interrupt in the PIC to be level triggered.
Frans Hendriks93484132018-12-10 12:38:16 +010094 */
95static void write_pci_config_irqs(void)
96{
97 struct device *irq_dev;
98 struct device *targ_dev;
99 uint8_t int_line = 0;
100 uint8_t original_int_pin = 0;
101 uint8_t new_int_pin = 0;
102 uint16_t current_bdf = 0;
103 uint16_t parent_bdf = 0;
104 uint8_t pirq = 0;
105 uint8_t device_num = 0;
106 const struct soc_irq_route *ir = &global_soc_irq_route;
107
108 if (ir == NULL) {
Julius Wernere9665952022-01-21 17:06:20 -0800109 printk(BIOS_WARNING, "Can't write PCI IRQ assignments "
Angel Ponsaee7ab22020-03-19 00:31:58 +0100110 "because 'global_braswell_irq_route' structure does not exist\n");
Frans Hendriks93484132018-12-10 12:38:16 +0100111 return;
112 }
113
114 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100115 * Loop through all enabled devices and program their INT_LINE, INT_PIN registers from
116 * values taken from the Interrupt Route registers in the ILB
Frans Hendriks93484132018-12-10 12:38:16 +0100117 */
118 printk(BIOS_DEBUG, "PCI_CFG IRQ: Write PIRQ assignments\n");
119 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
120
121 if ((irq_dev->path.type != DEVICE_PATH_PCI) ||
122 (!irq_dev->enabled))
123 continue;
124
125 current_bdf = irq_dev->path.pci.devfn |
126 irq_dev->bus->secondary << 8;
127
128 /*
129 * Step 1: Get the INT_PIN and device structure to look for
130 * in the pirq_data table defined in the mainboard directory.
131 */
132 targ_dev = NULL;
133 new_int_pin = get_pci_irq_pins(irq_dev, &targ_dev);
134 if (targ_dev == NULL || new_int_pin < 1)
135 continue;
136
137 /* Get the original INT_PIN for record keeping */
138 original_int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
139
140 parent_bdf = targ_dev->path.pci.devfn
141 | targ_dev->bus->secondary << 8;
142 device_num = PCI_SLOT(parent_bdf);
143
144 if (ir->pcidev[device_num] == 0) {
Julius Wernere9665952022-01-21 17:06:20 -0800145 printk(BIOS_WARNING, "PCI Device %d does not have an IRQ entry, "
Angel Ponsaee7ab22020-03-19 00:31:58 +0100146 "skipping it\n", device_num);
Frans Hendriks93484132018-12-10 12:38:16 +0100147 continue;
148 }
149
150 /* Find the PIRQ that is attached to the INT_PIN */
151 pirq = (ir->pcidev[device_num] >> ((new_int_pin - 1) * 4))
152 & 0x7;
153
154 /* Get the INT_LINE this device/function will use */
155 int_line = ir->pic[pirq];
156
157 if (int_line != PIRQ_PIC_IRQDISABLE) {
158 /* Set this IRQ to level triggered */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100159 i8259_configure_irq_trigger(int_line, IRQ_LEVEL_TRIGGERED);
160
Frans Hendriks93484132018-12-10 12:38:16 +0100161 /* Set the Interrupt Line register */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100162 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
Frans Hendriks93484132018-12-10 12:38:16 +0100163 } else {
Angel Ponsaee7ab22020-03-19 00:31:58 +0100164 /* Set the Interrupt line register as 'unknown' or 'unused' */
165 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, PIRQ_PIC_UNKNOWN_UNUSED);
Frans Hendriks93484132018-12-10 12:38:16 +0100166 }
167
Angel Ponsaee7ab22020-03-19 00:31:58 +0100168 printk(BIOS_SPEW, "\tINT_PIN\t\t: %d (%s)\n", original_int_pin,
169 pin_to_str(original_int_pin));
170
Frans Hendriks93484132018-12-10 12:38:16 +0100171 if (parent_bdf != current_bdf)
Angel Ponsaee7ab22020-03-19 00:31:58 +0100172 printk(BIOS_SPEW, "\tSwizzled to\t: %d (%s)\n", new_int_pin,
173 pin_to_str(new_int_pin));
174
175 printk(BIOS_SPEW, "\tPIRQ\t\t: %c\n\tINT_LINE\t: 0x%X (IRQ %d)\n",
176 'A' + pirq, int_line, int_line);
Frans Hendriks93484132018-12-10 12:38:16 +0100177 }
178 printk(BIOS_DEBUG, "PCI_CFG IRQ: Finished writing PIRQ assignments\n");
179}
180
Lee Leahy77ff0b12015-05-05 15:07:29 -0700181static inline int io_range_in_default(int base, int size)
182{
183 /* Does it start above the range? */
184 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
185 return 0;
186
187 /* Is it entirely contained? */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100188 if (base >= LPC_DEFAULT_IO_RANGE_LOWER && (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700189 return 1;
190
Angel Ponsaee7ab22020-03-19 00:31:58 +0100191 /* This will return not in range for partial overlaps */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700192 return 0;
193}
194
195/*
196 * Note: this function assumes there is no overlap with the default LPC device's
197 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
198 */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100199static void sc_add_io_resource(struct device *dev, int base, int size, int index)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700200{
201 struct resource *res;
202
203 if (io_range_in_default(base, size))
204 return;
205
206 res = new_resource(dev, index);
207 res->base = base;
208 res->size = size;
209 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
210}
211
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200212static void sc_add_io_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700213{
214 struct resource *res;
215
216 /* Add the default claimed IO range for the LPC device. */
217 res = new_resource(dev, 0);
218 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
219 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
220 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
221
222 /* GPIO */
Frans Hendriks4b2c12f2018-11-22 07:52:38 +0100223 sc_add_io_resource(dev, GPIO_BASE_ADDRESS, GPIO_BASE_SIZE, GBASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700224
225 /* ACPI */
Frans Hendriks4b2c12f2018-11-22 07:52:38 +0100226 sc_add_io_resource(dev, ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, ABASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700227}
228
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200229static void sc_read_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700230{
231 /* Get the normal PCI resources of this device. */
232 pci_dev_read_resources(dev);
233
234 /* Add non-standard MMIO resources. */
235 sc_add_mmio_resources(dev);
236
237 /* Add IO resources. */
238 sc_add_io_resources(dev);
239}
240
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200241static void sc_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700242{
243 int i;
Frans Hendriksb55cd542019-03-06 14:45:12 +0100244 const unsigned long ilb_base = ILB_BASE_ADDRESS;
Angel Ponsaee7ab22020-03-19 00:31:58 +0100245 const unsigned long pr_base = ILB_BASE_ADDRESS + 0x08;
246 const unsigned long ir_base = ILB_BASE_ADDRESS + 0x20;
247
Lee Leahy32471722015-04-20 15:20:28 -0700248 void *gen_pmcon1 = (void *)(PMC_BASE_ADDRESS + GEN_PMCON1);
Lee Leahy32471722015-04-20 15:20:28 -0700249 const struct soc_irq_route *ir = &global_soc_irq_route;
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300250 struct soc_intel_braswell_config *config = config_of(dev);
Lee Leahy32471722015-04-20 15:20:28 -0700251
Frans Hendriksb55cd542019-03-06 14:45:12 +0100252 /* Set the value for PCI command register. */
253 pci_write_config16(dev, PCI_COMMAND,
Angel Ponsaee7ab22020-03-19 00:31:58 +0100254 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
Frans Hendriksb55cd542019-03-06 14:45:12 +0100255
256 /* Use IRQ9 for SCI Interrupt */
257 write32((void *)(ilb_base + ACTL), 0);
258
Frans Hendriks255f35c2018-12-11 15:21:47 +0100259 isa_dma_init();
260
Frans Hendriks2c630172019-04-02 15:06:29 +0200261 sc_enable_serial_irqs(dev);
262
Lee Leahy77ff0b12015-05-05 15:07:29 -0700263 /* Set up the PIRQ PIC routing based on static config. */
Lee Leahy32471722015-04-20 15:20:28 -0700264 for (i = 0; i < NUM_PIRQS; i++)
Angel Ponsaee7ab22020-03-19 00:31:58 +0100265 write8((void *)(pr_base + i*sizeof(ir->pic[i])), ir->pic[i]);
Lee Leahy32471722015-04-20 15:20:28 -0700266
Lee Leahy77ff0b12015-05-05 15:07:29 -0700267 /* Set up the per device PIRQ routing base on static config. */
Lee Leahy32471722015-04-20 15:20:28 -0700268 for (i = 0; i < NUM_IR_DEVS; i++)
Angel Ponsaee7ab22020-03-19 00:31:58 +0100269 write16((void *)(ir_base + i*sizeof(ir->pcidev[i])), ir->pcidev[i]);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700270
Frans Hendriks93484132018-12-10 12:38:16 +0100271 /* Interrupt 9 should be level triggered (SCI) */
272 i8259_configure_irq_trigger(9, 1);
273
274 for (i = 0; i < NUM_PIRQS; i++) {
275 if (ir->pic[i])
276 i8259_configure_irq_trigger(ir->pic[i], 1);
277 }
Lee Leahy77ff0b12015-05-05 15:07:29 -0700278
Lee Leahy77ff0b12015-05-05 15:07:29 -0700279 if (config->disable_slp_x_stretch_sus_fail) {
280 printk(BIOS_DEBUG, "Disabling slp_x stretching.\n");
Angel Ponsaee7ab22020-03-19 00:31:58 +0100281 write32(gen_pmcon1, read32(gen_pmcon1) | DIS_SLP_X_STRCH_SUS_UP);
282
Lee Leahy77ff0b12015-05-05 15:07:29 -0700283 } else {
Angel Ponsaee7ab22020-03-19 00:31:58 +0100284 write32(gen_pmcon1, read32(gen_pmcon1) & ~DIS_SLP_X_STRCH_SUS_UP);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700285 }
286
Frans Hendriks93484132018-12-10 12:38:16 +0100287 /* Write IRQ assignments to PCI config space */
288 write_pci_config_irqs();
289
290 /* Initialize i8259 pic */
291 setup_i8259();
292
Frans Hendriksbd5233e2018-12-05 15:24:48 +0100293 /* Initialize i8254 timers */
294 setup_i8254();
Frans Hendriks2c630172019-04-02 15:06:29 +0200295
296 sc_set_serial_irqs_mode(dev, config->serirq_mode);
297
Lee Leahy77ff0b12015-05-05 15:07:29 -0700298}
299
300/*
301 * Common code for the south cluster devices.
302 */
303
Frans Hendrikse6bf51f2019-05-01 10:48:31 +0200304/* Set bit in function disable register to hide this device. */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200305static void sc_disable_devfn(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700306{
Angel Ponsaee7ab22020-03-19 00:31:58 +0100307 void *func_dis = (void *)(PMC_BASE_ADDRESS + FUNC_DIS);
Lee Leahy32471722015-04-20 15:20:28 -0700308 void *func_dis2 = (void *)(PMC_BASE_ADDRESS + FUNC_DIS2);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100309 uint32_t mask = 0;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700310 uint32_t mask2 = 0;
311
Lee Leahy32471722015-04-20 15:20:28 -0700312#define SET_DIS_MASK(name_) \
313 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
314 mask |= name_ ## _DIS
Angel Ponsaee7ab22020-03-19 00:31:58 +0100315
Lee Leahy32471722015-04-20 15:20:28 -0700316#define SET_DIS_MASK2(name_) \
317 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
318 mask2 |= name_ ## _DIS
319
Lee Leahy77ff0b12015-05-05 15:07:29 -0700320 switch (dev->path.pci.devfn) {
Lee Leahy32471722015-04-20 15:20:28 -0700321 SET_DIS_MASK(SDIO);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700322 break;
Lee Leahy32471722015-04-20 15:20:28 -0700323 SET_DIS_MASK(SD);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700324 break;
Lee Leahy32471722015-04-20 15:20:28 -0700325 SET_DIS_MASK(SATA);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700326 break;
Lee Leahy32471722015-04-20 15:20:28 -0700327 SET_DIS_MASK(XHCI);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700328 /* Disable super speed PHY when XHCI is not available. */
329 mask2 |= USH_SS_PHY_DIS;
330 break;
Lee Leahy32471722015-04-20 15:20:28 -0700331 SET_DIS_MASK(LPE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700332 break;
Lee Leahy32471722015-04-20 15:20:28 -0700333 SET_DIS_MASK(MMC);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700334 break;
Lee Leahy32471722015-04-20 15:20:28 -0700335 SET_DIS_MASK(SIO_DMA1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700336 break;
Lee Leahy32471722015-04-20 15:20:28 -0700337 SET_DIS_MASK(I2C1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700338 break;
Lee Leahy32471722015-04-20 15:20:28 -0700339 SET_DIS_MASK(I2C2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700340 break;
Lee Leahy32471722015-04-20 15:20:28 -0700341 SET_DIS_MASK(I2C3);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700342 break;
Lee Leahy32471722015-04-20 15:20:28 -0700343 SET_DIS_MASK(I2C4);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700344 break;
Lee Leahy32471722015-04-20 15:20:28 -0700345 SET_DIS_MASK(I2C5);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700346 break;
Lee Leahy32471722015-04-20 15:20:28 -0700347 SET_DIS_MASK(I2C6);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700348 break;
Lee Leahy32471722015-04-20 15:20:28 -0700349 SET_DIS_MASK(I2C7);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700350 break;
Lee Leahy32471722015-04-20 15:20:28 -0700351 SET_DIS_MASK(TXE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700352 break;
Lee Leahy32471722015-04-20 15:20:28 -0700353 SET_DIS_MASK(HDA);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700354 break;
Lee Leahy32471722015-04-20 15:20:28 -0700355 SET_DIS_MASK(PCIE_PORT1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700356 break;
Lee Leahy32471722015-04-20 15:20:28 -0700357 SET_DIS_MASK(PCIE_PORT2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700358 break;
Lee Leahy32471722015-04-20 15:20:28 -0700359 SET_DIS_MASK(PCIE_PORT3);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700360 break;
Lee Leahy32471722015-04-20 15:20:28 -0700361 SET_DIS_MASK(PCIE_PORT4);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700362 break;
Lee Leahy32471722015-04-20 15:20:28 -0700363 SET_DIS_MASK(SIO_DMA2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700364 break;
Lee Leahy32471722015-04-20 15:20:28 -0700365 SET_DIS_MASK(PWM1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700366 break;
Lee Leahy32471722015-04-20 15:20:28 -0700367 SET_DIS_MASK(PWM2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700368 break;
Lee Leahy32471722015-04-20 15:20:28 -0700369 SET_DIS_MASK(HSUART1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700370 break;
Lee Leahy32471722015-04-20 15:20:28 -0700371 SET_DIS_MASK(HSUART2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700372 break;
Lee Leahy32471722015-04-20 15:20:28 -0700373 SET_DIS_MASK(SPI);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700374 break;
Lee Leahy32471722015-04-20 15:20:28 -0700375 SET_DIS_MASK2(SMBUS);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700376 break;
377 }
378
379 if (mask != 0) {
380 write32(func_dis, read32(func_dis) | mask);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100381 /* Ensure posted write hits */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700382 read32(func_dis);
383 }
384
385 if (mask2 != 0) {
386 write32(func_dis2, read32(func_dis2) | mask2);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100387 /* Ensure posted write hits */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700388 read32(func_dis2);
389 }
390}
391
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200392static inline void set_d3hot_bits(struct device *dev, int offset)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700393{
394 uint32_t reg8;
395 printk(BIOS_DEBUG, "Power management CAP offset 0x%x.\n", offset);
396 reg8 = pci_read_config8(dev, offset + 4);
397 reg8 |= 0x3;
398 pci_write_config8(dev, offset + 4, reg8);
399}
400
Lee Leahy32471722015-04-20 15:20:28 -0700401/*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100402 * Parts of the audio subsystem are powered by the HDA device. Thus, one cannot put HDA into
403 * D3Hot. Instead, perform this workaround to make some of the audio paths work for LPE audio.
Lee Leahy32471722015-04-20 15:20:28 -0700404 */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200405static void hda_work_around(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700406{
Lee Leahy32471722015-04-20 15:20:28 -0700407 void *gctl = (void *)(TEMP_BASE_ADDRESS + 0x8);
408
Lee Leahy77ff0b12015-05-05 15:07:29 -0700409 /* Need to set magic register 0x43 to 0xd7 in config space. */
410 pci_write_config8(dev, 0x43, 0xd7);
411
Lee Leahy32471722015-04-20 15:20:28 -0700412 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100413 * Need to set bit 0 of GCTL to take the device out of reset.
414 * However, that requires setting up the 64-bit BAR.
Lee Leahy32471722015-04-20 15:20:28 -0700415 */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700416 pci_write_config32(dev, PCI_BASE_ADDRESS_0, TEMP_BASE_ADDRESS);
417 pci_write_config32(dev, PCI_BASE_ADDRESS_1, 0);
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200418 pci_write_config16(dev, PCI_COMMAND, PCI_COMMAND_MEMORY);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700419 write32(gctl, read32(gctl) | 0x1);
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200420 pci_write_config16(dev, PCI_COMMAND, 0);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700421 pci_write_config32(dev, PCI_BASE_ADDRESS_0, 0);
422}
423
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200424static int place_device_in_d3hot(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700425{
Lee Leahy1072e7d2017-03-16 17:35:32 -0700426 unsigned int offset;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700427
Lee Leahy32471722015-04-20 15:20:28 -0700428 /*
429 * Parts of the HDA block are used for LPE audio as well.
430 * Therefore assume the HDA will never be put into D3Hot.
431 */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700432 if (dev->path.pci.devfn == PCI_DEVFN(HDA_DEV, HDA_FUNC)) {
433 hda_work_around(dev);
434 return 0;
435 }
436
437 offset = pci_find_capability(dev, PCI_CAP_ID_PM);
438
439 if (offset != 0) {
440 set_d3hot_bits(dev, offset);
441 return 0;
442 }
443
Lee Leahy32471722015-04-20 15:20:28 -0700444 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100445 * For some reason some of the devices don't have the capability pointer set correctly.
446 * Work around this by hard coding the offset.
Lee Leahy32471722015-04-20 15:20:28 -0700447 */
448#define DEV_CASE(name_) \
449 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC)
450
Lee Leahy77ff0b12015-05-05 15:07:29 -0700451 switch (dev->path.pci.devfn) {
Lee Leahy32471722015-04-20 15:20:28 -0700452 DEV_CASE(SDIO) :
453 DEV_CASE(SD) :
454 DEV_CASE(MMC) :
455 DEV_CASE(LPE) :
456 DEV_CASE(SIO_DMA1) :
457 DEV_CASE(I2C1) :
458 DEV_CASE(I2C2) :
459 DEV_CASE(I2C3) :
460 DEV_CASE(I2C4) :
461 DEV_CASE(I2C5) :
462 DEV_CASE(I2C6) :
463 DEV_CASE(I2C7) :
464 DEV_CASE(SIO_DMA2) :
465 DEV_CASE(PWM1) :
466 DEV_CASE(PWM2) :
467 DEV_CASE(HSUART1) :
468 DEV_CASE(HSUART2) :
469 DEV_CASE(SPI) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700470 offset = 0x80;
471 break;
Lee Leahy32471722015-04-20 15:20:28 -0700472 DEV_CASE(SATA) :
473 DEV_CASE(XHCI) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700474 offset = 0x70;
475 break;
Lee Leahy32471722015-04-20 15:20:28 -0700476 DEV_CASE(HDA) :
477 DEV_CASE(SMBUS) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700478 offset = 0x50;
479 break;
Lee Leahy32471722015-04-20 15:20:28 -0700480 DEV_CASE(TXE) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700481 /* TXE cannot be placed in D3Hot. */
482 return 0;
Lee Leahy32471722015-04-20 15:20:28 -0700483 DEV_CASE(PCIE_PORT1) :
484 DEV_CASE(PCIE_PORT2) :
485 DEV_CASE(PCIE_PORT3) :
486 DEV_CASE(PCIE_PORT4) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700487 offset = 0xa0;
488 break;
489 }
490
491 if (offset != 0) {
492 set_d3hot_bits(dev, offset);
493 return 0;
494 }
495
496 return -1;
497}
498
499/* Common PCI device function disable. */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200500void southcluster_enable_dev(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700501{
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200502 uint16_t reg16;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700503
504 if (!dev->enabled) {
505 int slot = PCI_SLOT(dev->path.pci.devfn);
506 int func = PCI_FUNC(dev->path.pci.devfn);
507 printk(BIOS_DEBUG, "%s: Disabling device: %02x.%01x\n",
508 dev_path(dev), slot, func);
509
510 /* Ensure memory, io, and bus master are all disabled */
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200511 reg16 = pci_read_config16(dev, PCI_COMMAND);
512 reg16 &= ~(PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
513 pci_write_config16(dev, PCI_COMMAND, reg16);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700514
515 /* Place device in D3Hot */
516 if (place_device_in_d3hot(dev) < 0) {
517 printk(BIOS_WARNING,
518 "Could not place %02x.%01x into D3Hot. "
519 "Keeping device visible.\n", slot, func);
520 return;
521 }
522 /* Disable this device if possible */
523 sc_disable_devfn(dev);
524 } else {
525 /* Enable SERR */
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200526 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_SERR);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700527 }
528}
529
530static struct device_operations device_ops = {
Angel Ponsaee7ab22020-03-19 00:31:58 +0100531 .read_resources = sc_read_resources,
532 .set_resources = pci_dev_set_resources,
Angel Ponsaee7ab22020-03-19 00:31:58 +0100533 .write_acpi_tables = southcluster_write_acpi_tables,
534 .init = sc_init,
535 .enable = southcluster_enable_dev,
536 .scan_bus = scan_static_bus,
537 .ops_pci = &soc_pci_ops,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700538};
539
540static const struct pci_driver southcluster __pci_driver = {
541 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100542 .vendor = PCI_VID_INTEL,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700543 .device = LPC_DEVID,
544};
545
Lee Leahy77ff0b12015-05-05 15:07:29 -0700546static void finalize_chipset(void *unused)
547{
Lee Leahy32471722015-04-20 15:20:28 -0700548 void *bcr = (void *)(SPI_BASE_ADDRESS + BCR);
549 void *gcs = (void *)(RCBA_BASE_ADDRESS + GCS);
550 void *gen_pmcon2 = (void *)(PMC_BASE_ADDRESS + GEN_PMCON2);
551 void *etr = (void *)(PMC_BASE_ADDRESS + ETR);
552 uint8_t *spi = (uint8_t *)SPI_BASE_ADDRESS;
Angel Ponsaee7ab22020-03-19 00:31:58 +0100553
Arthur Heymans68b6eb72019-10-13 23:26:36 +0200554 struct vscc_config cfg;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700555
Angel Ponsaee7ab22020-03-19 00:31:58 +0100556 /* Set the lock enable on the BIOS control register */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700557 write32(bcr, read32(bcr) | BCR_LE);
558
Angel Ponsaee7ab22020-03-19 00:31:58 +0100559 /* Set BIOS lock down bit controlling boot block size and swapping */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700560 write32(gcs, read32(gcs) | BILD);
561
Angel Ponsaee7ab22020-03-19 00:31:58 +0100562 /* Lock sleep stretching policy and set SMI lock */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700563 write32(gen_pmcon2, read32(gen_pmcon2) | SLPSX_STR_POL_LOCK | SMI_LOCK);
564
Angel Ponsaee7ab22020-03-19 00:31:58 +0100565 /* Set the CF9 lock */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700566 write32(etr, read32(etr) | CF9LOCK);
567
Arthur Heymans68b6eb72019-10-13 23:26:36 +0200568 spi_finalize_ops();
569 write16(spi + HSFSTS, read16(spi + HSFSTS) | FLOCKDN);
570
571 if (mainboard_get_spi_vscc_config(&cfg) < 0) {
572 printk(BIOS_DEBUG, "No SPI VSCC configuration.\n");
Lee Leahy77ff0b12015-05-05 15:07:29 -0700573 } else {
Lee Leahy77ff0b12015-05-05 15:07:29 -0700574 write32(spi + UVSCC, cfg.uvscc);
575 write32(spi + LVSCC, cfg.lvscc | VCL);
576 }
Lee Leahy77ff0b12015-05-05 15:07:29 -0700577}
578
Hannah Williams2cfdde72015-04-15 19:48:07 -0700579BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, finalize_chipset, NULL);