blob: a0df97cdf798613987d6b6992ae7aeafec9776bf [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
Elyes HAOUASb13fac32018-05-24 22:29:44 +020048static void sc_add_mmio_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070049{
Kyösti Mälkki5a55a452021-06-24 20:49:05 +030050 mmio_range(dev, 0xfeb, ABORT_BASE_ADDRESS, ABORT_BASE_SIZE);
51 mmio_range(dev, PBASE, PMC_BASE_ADDRESS, PMC_BASE_SIZE);
52 mmio_range(dev, IOBASE, IO_BASE_ADDRESS, IO_BASE_SIZE);
53 mmio_range(dev, IBASE, ILB_BASE_ADDRESS, ILB_BASE_SIZE);
54 mmio_range(dev, SBASE, SPI_BASE_ADDRESS, SPI_BASE_SIZE);
55 mmio_range(dev, MPBASE, MPHY_BASE_ADDRESS, MPHY_BASE_SIZE);
56 mmio_range(dev, PUBASE, PUNIT_BASE_ADDRESS, PUNIT_BASE_SIZE);
57 mmio_range(dev, RCBA, RCBA_BASE_ADDRESS, RCBA_BASE_SIZE);
58 mmio_range(dev, 0xfff, 0xffffffff - (CONFIG_COREBOOT_ROMSIZE_KB * KiB) + 1,
59 CONFIG_COREBOOT_ROMSIZE_KB * KiB); /* BIOS ROM */
Angel Ponsaee7ab22020-03-19 00:31:58 +010060
Kyösti Mälkki5a55a452021-06-24 20:49:05 +030061 mmio_range(dev, 0xfec, IO_APIC_ADDR, 0x00001000); /* IOAPIC */
Lee Leahy77ff0b12015-05-05 15:07:29 -070062}
63
64/* Default IO range claimed by the LPC device. The upper bound is exclusive. */
65#define LPC_DEFAULT_IO_RANGE_LOWER 0
66#define LPC_DEFAULT_IO_RANGE_UPPER 0x1000
67
Frans Hendriks2c630172019-04-02 15:06:29 +020068static void sc_enable_serial_irqs(struct device *dev)
69{
70 u8 *ilb_base = (u8 *)(pci_read_config32(dev, IBASE) & ~0xF);
71
72 printk(BIOS_SPEW, "Enable serial irq\n");
73 write32(ilb_base + ILB_OIC, read32(ilb_base + ILB_OIC) | SIRQEN);
74 write8(ilb_base + SCNT, read8(ilb_base + SCNT) | SCNT_MODE);
75}
76
Frans Hendriks93484132018-12-10 12:38:16 +010077/*
Angel Ponsaee7ab22020-03-19 00:31:58 +010078 * Write PCI config space IRQ assignments. PCI devices have the INT_LINE (0x3c) and INT_PIN
79 * (0x3d) registers which report interrupt routing information to operating systems and drivers.
80 * The INT_PIN register is generally read only and reports which interrupt pin A - D it uses.
81 * The INT_LINE register is configurable and reports which IRQ (generally the PIC IRQs 1 - 15)
82 * it will use. This needs to take interrupt pin swizzling on devices that are downstream on
83 * a PCI bridge into account.
Frans Hendriks93484132018-12-10 12:38:16 +010084 *
Angel Ponsaee7ab22020-03-19 00:31:58 +010085 * This function will loop through all enabled PCI devices and program the INT_LINE register
86 * with the correct PIC IRQ number for the INT_PIN that it uses. It then configures each
87 * interrupt in the PIC to be level triggered.
Frans Hendriks93484132018-12-10 12:38:16 +010088 */
89static void write_pci_config_irqs(void)
90{
91 struct device *irq_dev;
92 struct device *targ_dev;
93 uint8_t int_line = 0;
94 uint8_t original_int_pin = 0;
95 uint8_t new_int_pin = 0;
96 uint16_t current_bdf = 0;
97 uint16_t parent_bdf = 0;
98 uint8_t pirq = 0;
99 uint8_t device_num = 0;
100 const struct soc_irq_route *ir = &global_soc_irq_route;
101
102 if (ir == NULL) {
Julius Wernere9665952022-01-21 17:06:20 -0800103 printk(BIOS_WARNING, "Can't write PCI IRQ assignments "
Angel Ponsaee7ab22020-03-19 00:31:58 +0100104 "because 'global_braswell_irq_route' structure does not exist\n");
Frans Hendriks93484132018-12-10 12:38:16 +0100105 return;
106 }
107
108 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100109 * Loop through all enabled devices and program their INT_LINE, INT_PIN registers from
110 * values taken from the Interrupt Route registers in the ILB
Frans Hendriks93484132018-12-10 12:38:16 +0100111 */
112 printk(BIOS_DEBUG, "PCI_CFG IRQ: Write PIRQ assignments\n");
113 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
114
115 if ((irq_dev->path.type != DEVICE_PATH_PCI) ||
116 (!irq_dev->enabled))
117 continue;
118
119 current_bdf = irq_dev->path.pci.devfn |
120 irq_dev->bus->secondary << 8;
121
122 /*
123 * Step 1: Get the INT_PIN and device structure to look for
124 * in the pirq_data table defined in the mainboard directory.
125 */
126 targ_dev = NULL;
127 new_int_pin = get_pci_irq_pins(irq_dev, &targ_dev);
128 if (targ_dev == NULL || new_int_pin < 1)
129 continue;
130
131 /* Get the original INT_PIN for record keeping */
132 original_int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
133
134 parent_bdf = targ_dev->path.pci.devfn
135 | targ_dev->bus->secondary << 8;
136 device_num = PCI_SLOT(parent_bdf);
137
138 if (ir->pcidev[device_num] == 0) {
Julius Wernere9665952022-01-21 17:06:20 -0800139 printk(BIOS_WARNING, "PCI Device %d does not have an IRQ entry, "
Angel Ponsaee7ab22020-03-19 00:31:58 +0100140 "skipping it\n", device_num);
Frans Hendriks93484132018-12-10 12:38:16 +0100141 continue;
142 }
143
144 /* Find the PIRQ that is attached to the INT_PIN */
145 pirq = (ir->pcidev[device_num] >> ((new_int_pin - 1) * 4))
146 & 0x7;
147
148 /* Get the INT_LINE this device/function will use */
149 int_line = ir->pic[pirq];
150
151 if (int_line != PIRQ_PIC_IRQDISABLE) {
152 /* Set this IRQ to level triggered */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100153 i8259_configure_irq_trigger(int_line, IRQ_LEVEL_TRIGGERED);
154
Frans Hendriks93484132018-12-10 12:38:16 +0100155 /* Set the Interrupt Line register */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100156 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
Frans Hendriks93484132018-12-10 12:38:16 +0100157 } else {
Angel Ponsaee7ab22020-03-19 00:31:58 +0100158 /* Set the Interrupt line register as 'unknown' or 'unused' */
159 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, PIRQ_PIC_UNKNOWN_UNUSED);
Frans Hendriks93484132018-12-10 12:38:16 +0100160 }
161
Angel Ponsaee7ab22020-03-19 00:31:58 +0100162 printk(BIOS_SPEW, "\tINT_PIN\t\t: %d (%s)\n", original_int_pin,
163 pin_to_str(original_int_pin));
164
Frans Hendriks93484132018-12-10 12:38:16 +0100165 if (parent_bdf != current_bdf)
Angel Ponsaee7ab22020-03-19 00:31:58 +0100166 printk(BIOS_SPEW, "\tSwizzled to\t: %d (%s)\n", new_int_pin,
167 pin_to_str(new_int_pin));
168
169 printk(BIOS_SPEW, "\tPIRQ\t\t: %c\n\tINT_LINE\t: 0x%X (IRQ %d)\n",
170 'A' + pirq, int_line, int_line);
Frans Hendriks93484132018-12-10 12:38:16 +0100171 }
172 printk(BIOS_DEBUG, "PCI_CFG IRQ: Finished writing PIRQ assignments\n");
173}
174
Lee Leahy77ff0b12015-05-05 15:07:29 -0700175static inline int io_range_in_default(int base, int size)
176{
177 /* Does it start above the range? */
178 if (base >= LPC_DEFAULT_IO_RANGE_UPPER)
179 return 0;
180
181 /* Is it entirely contained? */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100182 if (base >= LPC_DEFAULT_IO_RANGE_LOWER && (base + size) < LPC_DEFAULT_IO_RANGE_UPPER)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700183 return 1;
184
Angel Ponsaee7ab22020-03-19 00:31:58 +0100185 /* This will return not in range for partial overlaps */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700186 return 0;
187}
188
189/*
190 * Note: this function assumes there is no overlap with the default LPC device's
191 * claimed range: LPC_DEFAULT_IO_RANGE_LOWER -> LPC_DEFAULT_IO_RANGE_UPPER.
192 */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100193static void sc_add_io_resource(struct device *dev, int base, int size, int index)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700194{
195 struct resource *res;
196
197 if (io_range_in_default(base, size))
198 return;
199
200 res = new_resource(dev, index);
201 res->base = base;
202 res->size = size;
203 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
204}
205
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200206static void sc_add_io_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700207{
208 struct resource *res;
209
210 /* Add the default claimed IO range for the LPC device. */
211 res = new_resource(dev, 0);
212 res->base = LPC_DEFAULT_IO_RANGE_LOWER;
213 res->size = LPC_DEFAULT_IO_RANGE_UPPER - LPC_DEFAULT_IO_RANGE_LOWER;
214 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
215
216 /* GPIO */
Frans Hendriks4b2c12f2018-11-22 07:52:38 +0100217 sc_add_io_resource(dev, GPIO_BASE_ADDRESS, GPIO_BASE_SIZE, GBASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700218
219 /* ACPI */
Frans Hendriks4b2c12f2018-11-22 07:52:38 +0100220 sc_add_io_resource(dev, ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, ABASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700221}
222
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200223static void sc_read_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700224{
225 /* Get the normal PCI resources of this device. */
226 pci_dev_read_resources(dev);
227
228 /* Add non-standard MMIO resources. */
229 sc_add_mmio_resources(dev);
230
231 /* Add IO resources. */
232 sc_add_io_resources(dev);
233}
234
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200235static void sc_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700236{
237 int i;
Frans Hendriksb55cd542019-03-06 14:45:12 +0100238 const unsigned long ilb_base = ILB_BASE_ADDRESS;
Angel Ponsaee7ab22020-03-19 00:31:58 +0100239 const unsigned long pr_base = ILB_BASE_ADDRESS + 0x08;
240 const unsigned long ir_base = ILB_BASE_ADDRESS + 0x20;
241
Lee Leahy32471722015-04-20 15:20:28 -0700242 void *gen_pmcon1 = (void *)(PMC_BASE_ADDRESS + GEN_PMCON1);
Lee Leahy32471722015-04-20 15:20:28 -0700243 const struct soc_irq_route *ir = &global_soc_irq_route;
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300244 struct soc_intel_braswell_config *config = config_of(dev);
Lee Leahy32471722015-04-20 15:20:28 -0700245
Frans Hendriksb55cd542019-03-06 14:45:12 +0100246 /* Set the value for PCI command register. */
247 pci_write_config16(dev, PCI_COMMAND,
Angel Ponsaee7ab22020-03-19 00:31:58 +0100248 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
Frans Hendriksb55cd542019-03-06 14:45:12 +0100249
250 /* Use IRQ9 for SCI Interrupt */
251 write32((void *)(ilb_base + ACTL), 0);
252
Frans Hendriks255f35c2018-12-11 15:21:47 +0100253 isa_dma_init();
254
Frans Hendriks2c630172019-04-02 15:06:29 +0200255 sc_enable_serial_irqs(dev);
256
Lee Leahy77ff0b12015-05-05 15:07:29 -0700257 /* Set up the PIRQ PIC routing based on static config. */
Lee Leahy32471722015-04-20 15:20:28 -0700258 for (i = 0; i < NUM_PIRQS; i++)
Angel Ponsaee7ab22020-03-19 00:31:58 +0100259 write8((void *)(pr_base + i*sizeof(ir->pic[i])), ir->pic[i]);
Lee Leahy32471722015-04-20 15:20:28 -0700260
Lee Leahy77ff0b12015-05-05 15:07:29 -0700261 /* Set up the per device PIRQ routing base on static config. */
Lee Leahy32471722015-04-20 15:20:28 -0700262 for (i = 0; i < NUM_IR_DEVS; i++)
Angel Ponsaee7ab22020-03-19 00:31:58 +0100263 write16((void *)(ir_base + i*sizeof(ir->pcidev[i])), ir->pcidev[i]);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700264
Frans Hendriks93484132018-12-10 12:38:16 +0100265 /* Interrupt 9 should be level triggered (SCI) */
266 i8259_configure_irq_trigger(9, 1);
267
268 for (i = 0; i < NUM_PIRQS; i++) {
269 if (ir->pic[i])
270 i8259_configure_irq_trigger(ir->pic[i], 1);
271 }
Lee Leahy77ff0b12015-05-05 15:07:29 -0700272
Lee Leahy77ff0b12015-05-05 15:07:29 -0700273 if (config->disable_slp_x_stretch_sus_fail) {
274 printk(BIOS_DEBUG, "Disabling slp_x stretching.\n");
Angel Ponsaee7ab22020-03-19 00:31:58 +0100275 write32(gen_pmcon1, read32(gen_pmcon1) | DIS_SLP_X_STRCH_SUS_UP);
276
Lee Leahy77ff0b12015-05-05 15:07:29 -0700277 } else {
Angel Ponsaee7ab22020-03-19 00:31:58 +0100278 write32(gen_pmcon1, read32(gen_pmcon1) & ~DIS_SLP_X_STRCH_SUS_UP);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700279 }
280
Frans Hendriks93484132018-12-10 12:38:16 +0100281 /* Write IRQ assignments to PCI config space */
282 write_pci_config_irqs();
283
284 /* Initialize i8259 pic */
285 setup_i8259();
286
Frans Hendriksbd5233e2018-12-05 15:24:48 +0100287 /* Initialize i8254 timers */
288 setup_i8254();
Frans Hendriks2c630172019-04-02 15:06:29 +0200289
290 sc_set_serial_irqs_mode(dev, config->serirq_mode);
291
Lee Leahy77ff0b12015-05-05 15:07:29 -0700292}
293
294/*
295 * Common code for the south cluster devices.
296 */
297
Frans Hendrikse6bf51f2019-05-01 10:48:31 +0200298/* Set bit in function disable register to hide this device. */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200299static void sc_disable_devfn(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700300{
Angel Ponsaee7ab22020-03-19 00:31:58 +0100301 void *func_dis = (void *)(PMC_BASE_ADDRESS + FUNC_DIS);
Lee Leahy32471722015-04-20 15:20:28 -0700302 void *func_dis2 = (void *)(PMC_BASE_ADDRESS + FUNC_DIS2);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100303 uint32_t mask = 0;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700304 uint32_t mask2 = 0;
305
Lee Leahy32471722015-04-20 15:20:28 -0700306#define SET_DIS_MASK(name_) \
307 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
308 mask |= name_ ## _DIS
Angel Ponsaee7ab22020-03-19 00:31:58 +0100309
Lee Leahy32471722015-04-20 15:20:28 -0700310#define SET_DIS_MASK2(name_) \
311 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
312 mask2 |= name_ ## _DIS
313
Lee Leahy77ff0b12015-05-05 15:07:29 -0700314 switch (dev->path.pci.devfn) {
Lee Leahy32471722015-04-20 15:20:28 -0700315 SET_DIS_MASK(SDIO);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700316 break;
Lee Leahy32471722015-04-20 15:20:28 -0700317 SET_DIS_MASK(SD);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700318 break;
Lee Leahy32471722015-04-20 15:20:28 -0700319 SET_DIS_MASK(SATA);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700320 break;
Lee Leahy32471722015-04-20 15:20:28 -0700321 SET_DIS_MASK(XHCI);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700322 /* Disable super speed PHY when XHCI is not available. */
323 mask2 |= USH_SS_PHY_DIS;
324 break;
Lee Leahy32471722015-04-20 15:20:28 -0700325 SET_DIS_MASK(LPE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700326 break;
Lee Leahy32471722015-04-20 15:20:28 -0700327 SET_DIS_MASK(MMC);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700328 break;
Lee Leahy32471722015-04-20 15:20:28 -0700329 SET_DIS_MASK(SIO_DMA1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700330 break;
Lee Leahy32471722015-04-20 15:20:28 -0700331 SET_DIS_MASK(I2C1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700332 break;
Lee Leahy32471722015-04-20 15:20:28 -0700333 SET_DIS_MASK(I2C2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700334 break;
Lee Leahy32471722015-04-20 15:20:28 -0700335 SET_DIS_MASK(I2C3);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700336 break;
Lee Leahy32471722015-04-20 15:20:28 -0700337 SET_DIS_MASK(I2C4);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700338 break;
Lee Leahy32471722015-04-20 15:20:28 -0700339 SET_DIS_MASK(I2C5);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700340 break;
Lee Leahy32471722015-04-20 15:20:28 -0700341 SET_DIS_MASK(I2C6);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700342 break;
Lee Leahy32471722015-04-20 15:20:28 -0700343 SET_DIS_MASK(I2C7);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700344 break;
Lee Leahy32471722015-04-20 15:20:28 -0700345 SET_DIS_MASK(TXE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700346 break;
Lee Leahy32471722015-04-20 15:20:28 -0700347 SET_DIS_MASK(HDA);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700348 break;
Lee Leahy32471722015-04-20 15:20:28 -0700349 SET_DIS_MASK(PCIE_PORT1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700350 break;
Lee Leahy32471722015-04-20 15:20:28 -0700351 SET_DIS_MASK(PCIE_PORT2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700352 break;
Lee Leahy32471722015-04-20 15:20:28 -0700353 SET_DIS_MASK(PCIE_PORT3);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700354 break;
Lee Leahy32471722015-04-20 15:20:28 -0700355 SET_DIS_MASK(PCIE_PORT4);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700356 break;
Lee Leahy32471722015-04-20 15:20:28 -0700357 SET_DIS_MASK(SIO_DMA2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700358 break;
Lee Leahy32471722015-04-20 15:20:28 -0700359 SET_DIS_MASK(PWM1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700360 break;
Lee Leahy32471722015-04-20 15:20:28 -0700361 SET_DIS_MASK(PWM2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700362 break;
Lee Leahy32471722015-04-20 15:20:28 -0700363 SET_DIS_MASK(HSUART1);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700364 break;
Lee Leahy32471722015-04-20 15:20:28 -0700365 SET_DIS_MASK(HSUART2);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700366 break;
Lee Leahy32471722015-04-20 15:20:28 -0700367 SET_DIS_MASK(SPI);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700368 break;
Lee Leahy32471722015-04-20 15:20:28 -0700369 SET_DIS_MASK2(SMBUS);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700370 break;
371 }
372
373 if (mask != 0) {
374 write32(func_dis, read32(func_dis) | mask);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100375 /* Ensure posted write hits */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700376 read32(func_dis);
377 }
378
379 if (mask2 != 0) {
380 write32(func_dis2, read32(func_dis2) | mask2);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100381 /* Ensure posted write hits */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700382 read32(func_dis2);
383 }
384}
385
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200386static inline void set_d3hot_bits(struct device *dev, int offset)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700387{
388 uint32_t reg8;
389 printk(BIOS_DEBUG, "Power management CAP offset 0x%x.\n", offset);
390 reg8 = pci_read_config8(dev, offset + 4);
391 reg8 |= 0x3;
392 pci_write_config8(dev, offset + 4, reg8);
393}
394
Lee Leahy32471722015-04-20 15:20:28 -0700395/*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100396 * Parts of the audio subsystem are powered by the HDA device. Thus, one cannot put HDA into
397 * D3Hot. Instead, perform this workaround to make some of the audio paths work for LPE audio.
Lee Leahy32471722015-04-20 15:20:28 -0700398 */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200399static void hda_work_around(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700400{
Lee Leahy32471722015-04-20 15:20:28 -0700401 void *gctl = (void *)(TEMP_BASE_ADDRESS + 0x8);
402
Lee Leahy77ff0b12015-05-05 15:07:29 -0700403 /* Need to set magic register 0x43 to 0xd7 in config space. */
404 pci_write_config8(dev, 0x43, 0xd7);
405
Lee Leahy32471722015-04-20 15:20:28 -0700406 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100407 * Need to set bit 0 of GCTL to take the device out of reset.
408 * However, that requires setting up the 64-bit BAR.
Lee Leahy32471722015-04-20 15:20:28 -0700409 */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700410 pci_write_config32(dev, PCI_BASE_ADDRESS_0, TEMP_BASE_ADDRESS);
411 pci_write_config32(dev, PCI_BASE_ADDRESS_1, 0);
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200412 pci_write_config16(dev, PCI_COMMAND, PCI_COMMAND_MEMORY);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700413 write32(gctl, read32(gctl) | 0x1);
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200414 pci_write_config16(dev, PCI_COMMAND, 0);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700415 pci_write_config32(dev, PCI_BASE_ADDRESS_0, 0);
416}
417
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200418static int place_device_in_d3hot(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700419{
Lee Leahy1072e7d2017-03-16 17:35:32 -0700420 unsigned int offset;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700421
Lee Leahy32471722015-04-20 15:20:28 -0700422 /*
423 * Parts of the HDA block are used for LPE audio as well.
424 * Therefore assume the HDA will never be put into D3Hot.
425 */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700426 if (dev->path.pci.devfn == PCI_DEVFN(HDA_DEV, HDA_FUNC)) {
427 hda_work_around(dev);
428 return 0;
429 }
430
431 offset = pci_find_capability(dev, PCI_CAP_ID_PM);
432
433 if (offset != 0) {
434 set_d3hot_bits(dev, offset);
435 return 0;
436 }
437
Lee Leahy32471722015-04-20 15:20:28 -0700438 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100439 * For some reason some of the devices don't have the capability pointer set correctly.
440 * Work around this by hard coding the offset.
Lee Leahy32471722015-04-20 15:20:28 -0700441 */
442#define DEV_CASE(name_) \
443 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC)
444
Lee Leahy77ff0b12015-05-05 15:07:29 -0700445 switch (dev->path.pci.devfn) {
Lee Leahy32471722015-04-20 15:20:28 -0700446 DEV_CASE(SDIO) :
447 DEV_CASE(SD) :
448 DEV_CASE(MMC) :
449 DEV_CASE(LPE) :
450 DEV_CASE(SIO_DMA1) :
451 DEV_CASE(I2C1) :
452 DEV_CASE(I2C2) :
453 DEV_CASE(I2C3) :
454 DEV_CASE(I2C4) :
455 DEV_CASE(I2C5) :
456 DEV_CASE(I2C6) :
457 DEV_CASE(I2C7) :
458 DEV_CASE(SIO_DMA2) :
459 DEV_CASE(PWM1) :
460 DEV_CASE(PWM2) :
461 DEV_CASE(HSUART1) :
462 DEV_CASE(HSUART2) :
463 DEV_CASE(SPI) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700464 offset = 0x80;
465 break;
Lee Leahy32471722015-04-20 15:20:28 -0700466 DEV_CASE(SATA) :
467 DEV_CASE(XHCI) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700468 offset = 0x70;
469 break;
Lee Leahy32471722015-04-20 15:20:28 -0700470 DEV_CASE(HDA) :
471 DEV_CASE(SMBUS) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700472 offset = 0x50;
473 break;
Lee Leahy32471722015-04-20 15:20:28 -0700474 DEV_CASE(TXE) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700475 /* TXE cannot be placed in D3Hot. */
476 return 0;
Lee Leahy32471722015-04-20 15:20:28 -0700477 DEV_CASE(PCIE_PORT1) :
478 DEV_CASE(PCIE_PORT2) :
479 DEV_CASE(PCIE_PORT3) :
480 DEV_CASE(PCIE_PORT4) :
Lee Leahy77ff0b12015-05-05 15:07:29 -0700481 offset = 0xa0;
482 break;
483 }
484
485 if (offset != 0) {
486 set_d3hot_bits(dev, offset);
487 return 0;
488 }
489
490 return -1;
491}
492
493/* Common PCI device function disable. */
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200494void southcluster_enable_dev(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700495{
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200496 uint16_t reg16;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700497
498 if (!dev->enabled) {
499 int slot = PCI_SLOT(dev->path.pci.devfn);
500 int func = PCI_FUNC(dev->path.pci.devfn);
501 printk(BIOS_DEBUG, "%s: Disabling device: %02x.%01x\n",
502 dev_path(dev), slot, func);
503
504 /* Ensure memory, io, and bus master are all disabled */
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200505 reg16 = pci_read_config16(dev, PCI_COMMAND);
506 reg16 &= ~(PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
507 pci_write_config16(dev, PCI_COMMAND, reg16);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700508
509 /* Place device in D3Hot */
510 if (place_device_in_d3hot(dev) < 0) {
511 printk(BIOS_WARNING,
512 "Could not place %02x.%01x into D3Hot. "
513 "Keeping device visible.\n", slot, func);
514 return;
515 }
516 /* Disable this device if possible */
517 sc_disable_devfn(dev);
518 } else {
519 /* Enable SERR */
Elyes HAOUAS066e61f2020-04-29 10:28:20 +0200520 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_SERR);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700521 }
522}
523
524static struct device_operations device_ops = {
Angel Ponsaee7ab22020-03-19 00:31:58 +0100525 .read_resources = sc_read_resources,
526 .set_resources = pci_dev_set_resources,
Angel Ponsaee7ab22020-03-19 00:31:58 +0100527 .write_acpi_tables = southcluster_write_acpi_tables,
528 .init = sc_init,
529 .enable = southcluster_enable_dev,
530 .scan_bus = scan_static_bus,
531 .ops_pci = &soc_pci_ops,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700532};
533
534static const struct pci_driver southcluster __pci_driver = {
535 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100536 .vendor = PCI_VID_INTEL,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700537 .device = LPC_DEVID,
538};
539
Lee Leahy77ff0b12015-05-05 15:07:29 -0700540static void finalize_chipset(void *unused)
541{
Lee Leahy32471722015-04-20 15:20:28 -0700542 void *bcr = (void *)(SPI_BASE_ADDRESS + BCR);
543 void *gcs = (void *)(RCBA_BASE_ADDRESS + GCS);
544 void *gen_pmcon2 = (void *)(PMC_BASE_ADDRESS + GEN_PMCON2);
545 void *etr = (void *)(PMC_BASE_ADDRESS + ETR);
546 uint8_t *spi = (uint8_t *)SPI_BASE_ADDRESS;
Angel Ponsaee7ab22020-03-19 00:31:58 +0100547
Arthur Heymans68b6eb72019-10-13 23:26:36 +0200548 struct vscc_config cfg;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700549
Angel Ponsaee7ab22020-03-19 00:31:58 +0100550 /* Set the lock enable on the BIOS control register */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700551 write32(bcr, read32(bcr) | BCR_LE);
552
Angel Ponsaee7ab22020-03-19 00:31:58 +0100553 /* Set BIOS lock down bit controlling boot block size and swapping */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700554 write32(gcs, read32(gcs) | BILD);
555
Angel Ponsaee7ab22020-03-19 00:31:58 +0100556 /* Lock sleep stretching policy and set SMI lock */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700557 write32(gen_pmcon2, read32(gen_pmcon2) | SLPSX_STR_POL_LOCK | SMI_LOCK);
558
Angel Ponsaee7ab22020-03-19 00:31:58 +0100559 /* Set the CF9 lock */
Lee Leahy77ff0b12015-05-05 15:07:29 -0700560 write32(etr, read32(etr) | CF9LOCK);
561
Arthur Heymans68b6eb72019-10-13 23:26:36 +0200562 spi_finalize_ops();
563 write16(spi + HSFSTS, read16(spi + HSFSTS) | FLOCKDN);
564
565 if (mainboard_get_spi_vscc_config(&cfg) < 0) {
566 printk(BIOS_DEBUG, "No SPI VSCC configuration.\n");
Lee Leahy77ff0b12015-05-05 15:07:29 -0700567 } else {
Lee Leahy77ff0b12015-05-05 15:07:29 -0700568 write32(spi + UVSCC, cfg.uvscc);
569 write32(spi + LVSCC, cfg.lvscc | VCL);
570 }
Lee Leahy77ff0b12015-05-05 15:07:29 -0700571}
572
Hannah Williams2cfdde72015-04-15 19:48:07 -0700573BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, finalize_chipset, NULL);