blob: fa1b957ba12259146ceaa200cab26d4538ec849a [file] [log] [blame]
Angel Ponsc3f58f62020-04-05 15:46:41 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbindc866cf2013-11-12 20:21:53 -06002
3#include <stdint.h>
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +03004#include <acpi/acpi_gnvs.h>
Aaron Durbindc866cf2013-11-12 20:21:53 -06005#include <console/console.h>
6#include <device/device.h>
7#include <device/pci.h>
8#include <device/pci_ids.h>
9#include <reg_script.h>
10
Julius Werner18ea2d32014-10-07 16:42:17 -070011#include <soc/iosf.h>
12#include <soc/nvs.h>
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020013#include <soc/device_nvs.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070014#include <soc/pci_devs.h>
15#include <soc/ramstage.h>
Aaron Durbindc866cf2013-11-12 20:21:53 -060016
Duncan Laurie430bf0d2013-12-10 14:37:42 -080017#include "chip.h"
18
Angel Pons41b1edf2020-07-07 17:54:56 +020019static void dev_enable_acpi_mode(struct device *dev, int iosf_reg, int nvs_index)
Duncan Laurie430bf0d2013-12-10 14:37:42 -080020{
21 struct reg_script ops[] = {
Duncan Laurie430bf0d2013-12-10 14:37:42 -080022 /* Disable PCI interrupt, enable Memory and Bus Master */
Angel Pons89739ba2020-07-25 02:46:39 +020023 REG_PCI_OR16(PCI_COMMAND,
24 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | PCI_COMMAND_INT_DISABLE),
Duncan Laurie430bf0d2013-12-10 14:37:42 -080025 /* Enable ACPI mode */
26 REG_IOSF_OR(IOSF_PORT_LPSS, iosf_reg,
27 LPSS_CTL_PCI_CFG_DIS | LPSS_CTL_ACPI_INT_EN),
Angel Pons41b1edf2020-07-07 17:54:56 +020028
Duncan Laurie430bf0d2013-12-10 14:37:42 -080029 REG_SCRIPT_END
30 };
31 struct resource *bar;
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020032 struct device_nvs *dev_nvs = acpi_get_device_nvs();
Duncan Laurie430bf0d2013-12-10 14:37:42 -080033
34 /* Save BAR0 and BAR1 to ACPI NVS */
Angel Ponsc1bfbe02021-11-03 13:18:53 +010035 bar = probe_resource(dev, PCI_BASE_ADDRESS_0);
Duncan Laurie430bf0d2013-12-10 14:37:42 -080036 if (bar)
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020037 dev_nvs->lpss_bar0[nvs_index] = (u32)bar->base;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080038
Angel Ponsc1bfbe02021-11-03 13:18:53 +010039 bar = probe_resource(dev, PCI_BASE_ADDRESS_1);
Duncan Laurie430bf0d2013-12-10 14:37:42 -080040 if (bar)
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020041 dev_nvs->lpss_bar1[nvs_index] = (u32)bar->base;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080042
43 /* Device is enabled in ACPI mode */
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020044 dev_nvs->lpss_en[nvs_index] = 1;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080045
46 /* Put device in ACPI mode */
Aaron Durbin616f3942013-12-10 17:12:44 -080047 reg_script_run_on_dev(dev, ops);
Duncan Laurie430bf0d2013-12-10 14:37:42 -080048}
Aaron Durbindc866cf2013-11-12 20:21:53 -060049
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +020050static void dev_enable_snoop_and_pm(struct device *dev, int iosf_reg)
Aaron Durbindc866cf2013-11-12 20:21:53 -060051{
52 struct reg_script ops[] = {
Aaron Durbindc866cf2013-11-12 20:21:53 -060053 REG_IOSF_RMW(IOSF_PORT_LPSS, iosf_reg,
54 ~(LPSS_CTL_SNOOP | LPSS_CTL_NOSNOOP),
55 LPSS_CTL_SNOOP | LPSS_CTL_PM_CAP_PRSNT),
56 REG_SCRIPT_END,
57 };
58
Aaron Durbin616f3942013-12-10 17:12:44 -080059 reg_script_run_on_dev(dev, ops);
Aaron Durbindc866cf2013-11-12 20:21:53 -060060}
61
Angel Pons41b1edf2020-07-07 17:54:56 +020062#define SET_IOSF_REG(name_) \
63 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
64 do { \
65 *iosf_reg = LPSS_ ## name_ ## _CTL; \
66 *nvs_index = LPSS_NVS_ ## name_; \
67 } while (0)
68
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +020069static void dev_ctl_reg(struct device *dev, int *iosf_reg, int *nvs_index)
Aaron Durbindc866cf2013-11-12 20:21:53 -060070{
Duncan Laurie430bf0d2013-12-10 14:37:42 -080071 *iosf_reg = -1;
72 *nvs_index = -1;
Aaron Durbindc866cf2013-11-12 20:21:53 -060073
74 switch (dev->path.pci.devfn) {
75 SET_IOSF_REG(SIO_DMA1);
76 break;
77 SET_IOSF_REG(I2C1);
78 break;
79 SET_IOSF_REG(I2C2);
80 break;
81 SET_IOSF_REG(I2C3);
82 break;
83 SET_IOSF_REG(I2C4);
84 break;
85 SET_IOSF_REG(I2C5);
86 break;
87 SET_IOSF_REG(I2C6);
88 break;
89 SET_IOSF_REG(I2C7);
90 break;
91 SET_IOSF_REG(SIO_DMA2);
92 break;
93 SET_IOSF_REG(PWM1);
94 break;
95 SET_IOSF_REG(PWM2);
96 break;
97 SET_IOSF_REG(HSUART1);
98 break;
99 SET_IOSF_REG(HSUART2);
100 break;
101 SET_IOSF_REG(SPI);
102 break;
103 }
Aaron Durbindc866cf2013-11-12 20:21:53 -0600104}
105
Angel Pons41b1edf2020-07-07 17:54:56 +0200106#define CASE_I2C(name_) case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC)
107
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +0200108static void i2c_disable_resets(struct device *dev)
Aaron Durbindc866cf2013-11-12 20:21:53 -0600109{
110 /* Release the I2C devices from reset. */
Aaron Durbin616f3942013-12-10 17:12:44 -0800111 static const struct reg_script ops[] = {
Aaron Durbindc866cf2013-11-12 20:21:53 -0600112 REG_RES_WRITE32(PCI_BASE_ADDRESS_0, 0x804, 0x3),
113 REG_SCRIPT_END,
114 };
115
Aaron Durbindc866cf2013-11-12 20:21:53 -0600116 switch (dev->path.pci.devfn) {
117 CASE_I2C(I2C1):
118 CASE_I2C(I2C2):
119 CASE_I2C(I2C3):
120 CASE_I2C(I2C4):
121 CASE_I2C(I2C5):
122 CASE_I2C(I2C6):
123 CASE_I2C(I2C7):
124 printk(BIOS_DEBUG, "Releasing I2C device from reset.\n");
Aaron Durbin616f3942013-12-10 17:12:44 -0800125 reg_script_run_on_dev(dev, ops);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600126 break;
127 default:
128 return;
129 }
130}
131
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +0200132static void lpss_init(struct device *dev)
Aaron Durbindc866cf2013-11-12 20:21:53 -0600133{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300134 struct soc_intel_baytrail_config *config = config_of(dev);
Duncan Laurie430bf0d2013-12-10 14:37:42 -0800135 int iosf_reg, nvs_index;
136
137 dev_ctl_reg(dev, &iosf_reg, &nvs_index);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600138
139 if (iosf_reg < 0) {
140 int slot = PCI_SLOT(dev->path.pci.devfn);
141 int func = PCI_FUNC(dev->path.pci.devfn);
Angel Pons41b1edf2020-07-07 17:54:56 +0200142 printk(BIOS_DEBUG, "Could not find iosf_reg for %02x.%01x\n", slot, func);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600143 return;
144 }
145 dev_enable_snoop_and_pm(dev, iosf_reg);
Duncan Lauriec29d6b82013-12-12 16:55:36 -0800146 i2c_disable_resets(dev);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600147
Duncan Laurie430bf0d2013-12-10 14:37:42 -0800148 if (config->lpss_acpi_mode)
149 dev_enable_acpi_mode(dev, iosf_reg, nvs_index);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600150}
151
152static struct device_operations device_ops = {
153 .read_resources = pci_dev_read_resources,
154 .set_resources = pci_dev_set_resources,
155 .enable_resources = pci_dev_enable_resources,
156 .init = lpss_init,
Aaron Durbindc866cf2013-11-12 20:21:53 -0600157 .ops_pci = &soc_pci_ops,
158};
159
160static const unsigned short pci_device_ids[] = {
161 SIO_DMA1_DEVID,
162 I2C1_DEVID,
163 I2C2_DEVID,
164 I2C3_DEVID,
165 I2C4_DEVID,
166 I2C5_DEVID,
167 I2C6_DEVID,
168 I2C7_DEVID,
169 SIO_DMA2_DEVID,
170 PWM1_DEVID,
171 PWM2_DEVID,
172 HSUART1_DEVID,
173 HSUART2_DEVID,
174 SPI_DEVID,
175 0,
176};
177
178static const struct pci_driver southcluster __pci_driver = {
179 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100180 .vendor = PCI_VID_INTEL,
Aaron Durbindc866cf2013-11-12 20:21:53 -0600181 .devices = pci_device_ids,
182};