blob: a4922f7d7376dc76f01327db4567c7902b297855 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07003
Kyösti Mälkki13f66502019-03-03 08:01:05 +02004#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07006#include <cbmem.h>
7#include <console/console.h>
8#include <device/device.h>
9#include <device/pci.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070010#include <device/pci_ids.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070011#include <soc/iobp.h>
12#include <soc/nvs.h>
13#include <soc/pci_devs.h>
14#include <soc/pch.h>
15#include <soc/ramstage.h>
16#include <soc/rcba.h>
17#include <soc/serialio.h>
18#include <soc/intel/broadwell/chip.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070019
20/* Set D3Hot Power State in ACPI mode */
Duncan Laurie61680272014-05-05 12:42:35 -050021static void serialio_enable_d3hot(struct resource *res)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070022{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080023 u32 reg32 = read32(res2mmio(res, PCH_PCS, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -070024 reg32 |= PCH_PCS_PS_D3HOT;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080025 write32(res2mmio(res, PCH_PCS, 0), reg32);
Duncan Laurie61680272014-05-05 12:42:35 -050026}
27
28static int serialio_uart_is_debug(struct device *dev)
29{
Julius Wernercd49cce2019-03-05 16:53:33 -080030#if CONFIG(INTEL_PCH_UART_CONSOLE)
Duncan Laurie61680272014-05-05 12:42:35 -050031 switch (dev->path.pci.devfn) {
32 case PCH_DEVFN_UART0: /* UART0 */
33 return !!(CONFIG_INTEL_PCH_UART_CONSOLE_NUMBER == 0);
34 case PCH_DEVFN_UART1: /* UART1 */
35 return !!(CONFIG_INTEL_PCH_UART_CONSOLE_NUMBER == 1);
36 }
37#endif
38 return 0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070039}
40
41/* Enable clock in PCI mode */
42static void serialio_enable_clock(struct resource *bar0)
43{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080044 u32 reg32 = read32(res2mmio(bar0, SIO_REG_PPR_CLOCK, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -070045 reg32 |= SIO_REG_PPR_CLOCK_EN;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080046 write32(res2mmio(bar0, SIO_REG_PPR_CLOCK, 0), reg32);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070047}
48
49/* Put Serial IO D21:F0-F6 device into desired mode. */
50static void serialio_d21_mode(int sio_index, int int_pin, int acpi_mode)
51{
52 u32 portctrl = SIO_IOBP_PORTCTRL_PM_CAP_PRSNT;
53
54 /* Snoop select 1. */
55 portctrl |= SIO_IOBP_PORTCTRL_SNOOP_SELECT(1);
56
57 /* Set interrupt pin. */
58 portctrl |= SIO_IOBP_PORTCTRL_INT_PIN(int_pin);
59
60 if (acpi_mode) {
61 /* Enable ACPI interrupt mode. */
62 portctrl |= SIO_IOBP_PORTCTRL_ACPI_IRQ_EN;
63
64 /* Disable PCI config space. */
65 portctrl |= SIO_IOBP_PORTCTRL_PCI_CONF_DIS;
66 }
67
68 pch_iobp_update(SIO_IOBP_PORTCTRLX(sio_index), 0, portctrl);
69}
70
71/* Put Serial IO D23:F0 device into desired mode. */
72static void serialio_d23_mode(int acpi_mode)
73{
74 u32 portctrl = 0;
75
76 /* Snoop select 1. */
77 pch_iobp_update(SIO_IOBP_PORTCTRL1, 0,
78 SIO_IOBP_PORTCTRL1_SNOOP_SELECT(1));
79
80 if (acpi_mode) {
81 /* Enable ACPI interrupt mode. */
82 portctrl |= SIO_IOBP_PORTCTRL0_ACPI_IRQ_EN;
83
84 /* Disable PCI config space. */
85 portctrl |= SIO_IOBP_PORTCTRL0_PCI_CONF_DIS;
86 }
87
88 pch_iobp_update(SIO_IOBP_PORTCTRL0, 0, portctrl);
89}
90
91/* Enable LTR Auto Mode for D21:F1-F6. */
92static void serialio_d21_ltr(struct resource *bar0)
93{
94 u32 reg;
95
96 /* 1. Program BAR0 + 808h[2] = 0b */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080097 reg = read32(res2mmio(bar0, SIO_REG_PPR_GEN, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -070098 reg &= ~SIO_REG_PPR_GEN_LTR_MODE_MASK;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080099 write32(res2mmio(bar0, SIO_REG_PPR_GEN, 0), reg);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700100
101 /* 2. Program BAR0 + 804h[1:0] = 00b */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800102 reg = read32(res2mmio(bar0, SIO_REG_PPR_RST, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700103 reg &= ~SIO_REG_PPR_RST_ASSERT;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800104 write32(res2mmio(bar0, SIO_REG_PPR_RST, 0), reg);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700105
106 /* 3. Program BAR0 + 804h[1:0] = 11b */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800107 reg = read32(res2mmio(bar0, SIO_REG_PPR_RST, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700108 reg |= SIO_REG_PPR_RST_ASSERT;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800109 write32(res2mmio(bar0, SIO_REG_PPR_RST, 0), reg);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700110
111 /* 4. Program BAR0 + 814h[31:0] = 00000000h */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800112 write32(res2mmio(bar0, SIO_REG_AUTO_LTR, 0), 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700113}
114
115/* Enable LTR Auto Mode for D23:F0. */
116static void serialio_d23_ltr(struct resource *bar0)
117{
118 u32 reg;
119
120 /* Program BAR0 + 1008h[2] = 1b */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800121 reg = read32(res2mmio(bar0, SIO_REG_SDIO_PPR_GEN, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700122 reg |= SIO_REG_PPR_GEN_LTR_MODE_MASK;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800123 write32(res2mmio(bar0, SIO_REG_SDIO_PPR_GEN, 0), reg);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700124
125 /* Program BAR0 + 1010h = 0x00000000 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800126 write32(res2mmio(bar0, SIO_REG_SDIO_PPR_SW_LTR, 0), 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700127
128 /* Program BAR0 + 3Ch[30] = 1b */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800129 reg = read32(res2mmio(bar0, SIO_REG_SDIO_PPR_CMD12, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700130 reg |= SIO_REG_SDIO_PPR_CMD12_B30;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800131 write32(res2mmio(bar0, SIO_REG_SDIO_PPR_CMD12, 0), reg);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700132}
133
134/* Select I2C voltage of 1.8V or 3.3V. */
135static void serialio_i2c_voltage_sel(struct resource *bar0, u8 voltage)
136{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800137 u32 reg32 = read32(res2mmio(bar0, SIO_REG_PPR_GEN, 0));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700138 reg32 &= ~SIO_REG_PPR_GEN_VOLTAGE_MASK;
139 reg32 |= SIO_REG_PPR_GEN_VOLTAGE(voltage);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800140 write32(res2mmio(bar0, SIO_REG_PPR_GEN, 0), reg32);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700141}
142
143/* Init sequence to be run once, done as part of D21:F0 (SDMA) init. */
144static void serialio_init_once(int acpi_mode)
145{
146 if (acpi_mode) {
147 /* Enable ACPI IRQ for IRQ13, IRQ7, IRQ6, IRQ5 in RCBA. */
148 RCBA32_OR(ACPIIRQEN, (1 << 13)|(1 << 7)|(1 << 6)|(1 << 5));
149 }
150
151 /* Program IOBP CB000154h[12,9:8,4:0] = 1001100011111b. */
152 pch_iobp_update(SIO_IOBP_GPIODF, ~0x0000131f, 0x0000131f);
153
154 /* Program IOBP CB000180h[5:0] = 111111b (undefined register) */
155 pch_iobp_update(0xcb000180, ~0x0000003f, 0x0000003f);
156}
157
158static void serialio_init(struct device *dev)
159{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300160 config_t *config = config_of(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700161 struct resource *bar0, *bar1;
162 int sio_index = -1;
163 u32 reg32;
164
165 printk(BIOS_DEBUG, "Initializing Serial IO device\n");
166
167 /* Ensure memory and bus master are enabled */
168 reg32 = pci_read_config32(dev, PCI_COMMAND);
169 reg32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
170 pci_write_config32(dev, PCI_COMMAND, reg32);
171
172 /* Find BAR0 and BAR1 */
173 bar0 = find_resource(dev, PCI_BASE_ADDRESS_0);
174 if (!bar0)
175 return;
176 bar1 = find_resource(dev, PCI_BASE_ADDRESS_1);
177 if (!bar1)
178 return;
179
180 if (!config->sio_acpi_mode)
181 serialio_enable_clock(bar0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700182
183 switch (dev->path.pci.devfn) {
Duncan Laurie61680272014-05-05 12:42:35 -0500184 case PCH_DEVFN_SDMA: /* SDMA */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700185 sio_index = SIO_ID_SDMA;
186 serialio_init_once(config->sio_acpi_mode);
187 serialio_d21_mode(sio_index, SIO_PIN_INTB,
188 config->sio_acpi_mode);
189 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500190 case PCH_DEVFN_I2C0: /* I2C0 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700191 sio_index = SIO_ID_I2C0;
192 serialio_d21_ltr(bar0);
193 serialio_i2c_voltage_sel(bar0, config->sio_i2c0_voltage);
194 serialio_d21_mode(sio_index, SIO_PIN_INTC,
195 config->sio_acpi_mode);
196 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500197 case PCH_DEVFN_I2C1: /* I2C1 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700198 sio_index = SIO_ID_I2C1;
199 serialio_d21_ltr(bar0);
200 serialio_i2c_voltage_sel(bar0, config->sio_i2c1_voltage);
201 serialio_d21_mode(sio_index, SIO_PIN_INTC,
202 config->sio_acpi_mode);
203 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500204 case PCH_DEVFN_SPI0: /* SPI0 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700205 sio_index = SIO_ID_SPI0;
206 serialio_d21_ltr(bar0);
207 serialio_d21_mode(sio_index, SIO_PIN_INTC,
208 config->sio_acpi_mode);
209 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500210 case PCH_DEVFN_SPI1: /* SPI1 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700211 sio_index = SIO_ID_SPI1;
212 serialio_d21_ltr(bar0);
213 serialio_d21_mode(sio_index, SIO_PIN_INTC,
214 config->sio_acpi_mode);
215 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500216 case PCH_DEVFN_UART0: /* UART0 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700217 sio_index = SIO_ID_UART0;
Duncan Laurie61680272014-05-05 12:42:35 -0500218 if (!serialio_uart_is_debug(dev))
219 serialio_d21_ltr(bar0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700220 serialio_d21_mode(sio_index, SIO_PIN_INTD,
221 config->sio_acpi_mode);
222 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500223 case PCH_DEVFN_UART1: /* UART1 */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700224 sio_index = SIO_ID_UART1;
Duncan Laurie61680272014-05-05 12:42:35 -0500225 if (!serialio_uart_is_debug(dev))
226 serialio_d21_ltr(bar0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700227 serialio_d21_mode(sio_index, SIO_PIN_INTD,
228 config->sio_acpi_mode);
229 break;
Duncan Laurie61680272014-05-05 12:42:35 -0500230 case PCH_DEVFN_SDIO: /* SDIO */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700231 sio_index = SIO_ID_SDIO;
232 serialio_d23_ltr(bar0);
233 serialio_d23_mode(config->sio_acpi_mode);
234 break;
235 default:
236 return;
237 }
238
239 if (config->sio_acpi_mode) {
240 global_nvs_t *gnvs;
241
242 /* Find ACPI NVS to update BARs */
243 gnvs = (global_nvs_t *)cbmem_find(CBMEM_ID_ACPI_GNVS);
244 if (!gnvs) {
245 printk(BIOS_ERR, "Unable to locate Global NVS\n");
246 return;
247 }
248
249 /* Save BAR0 and BAR1 to ACPI NVS */
250 gnvs->dev.bar0[sio_index] = (u32)bar0->base;
251 gnvs->dev.bar1[sio_index] = (u32)bar1->base;
Duncan Laurie61680272014-05-05 12:42:35 -0500252
253 /* Do not enable UART if it is used as debug port */
254 if (!serialio_uart_is_debug(dev))
255 gnvs->dev.enable[sio_index] = 1;
256
257 /* Put device in D3hot state via BAR1 */
258 if (dev->path.pci.devfn != PCH_DEVFN_SDMA)
259 serialio_enable_d3hot(bar1); /* all but SDMA */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700260 }
261}
262
263static void serialio_set_resources(struct device *dev)
264{
265 pci_dev_set_resources(dev);
266
Julius Wernercd49cce2019-03-05 16:53:33 -0800267#if CONFIG(INTEL_PCH_UART_CONSOLE)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700268 /* Update UART base address if used for debug */
269 if (serialio_uart_is_debug(dev)) {
270 struct resource *res = find_resource(dev, PCI_BASE_ADDRESS_0);
271 if (res)
272 uartmem_setbaseaddr(res->base);
273 }
274#endif
275}
276
277static struct device_operations device_ops = {
278 .read_resources = &pci_dev_read_resources,
279 .set_resources = &serialio_set_resources,
280 .enable_resources = &pci_dev_enable_resources,
281 .init = &serialio_init,
282 .ops_pci = &broadwell_pci_ops,
283};
284
285static const unsigned short pci_device_ids[] = {
286 0x9c60, 0x9ce0, /* 0:15.0 - SDMA */
287 0x9c61, 0x9ce1, /* 0:15.1 - I2C0 */
288 0x9c62, 0x9ce2, /* 0:15.2 - I2C1 */
289 0x9c65, 0x9ce5, /* 0:15.3 - SPI0 */
290 0x9c66, 0x9ce6, /* 0:15.4 - SPI1 */
291 0x9c63, 0x9ce3, /* 0:15.5 - UART0 */
292 0x9c64, 0x9ce4, /* 0:15.6 - UART1 */
293 0x9c35, 0x9cb5, /* 0:17.0 - SDIO */
294 0
295};
296
297static const struct pci_driver pch_pcie __pci_driver = {
298 .ops = &device_ops,
299 .vendor = PCI_VENDOR_ID_INTEL,
300 .devices = pci_device_ids,
301};