blob: afeb687be86a54acb54dbe96fb7db6528bcd499d [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>
13#include <soc/pci_devs.h>
14#include <soc/ramstage.h>
Aaron Durbindc866cf2013-11-12 20:21:53 -060015
Duncan Laurie430bf0d2013-12-10 14:37:42 -080016#include "chip.h"
17
Angel Pons41b1edf2020-07-07 17:54:56 +020018static void dev_enable_acpi_mode(struct device *dev, int iosf_reg, int nvs_index)
Duncan Laurie430bf0d2013-12-10 14:37:42 -080019{
20 struct reg_script ops[] = {
Duncan Laurie430bf0d2013-12-10 14:37:42 -080021 /* Disable PCI interrupt, enable Memory and Bus Master */
Angel Pons89739ba2020-07-25 02:46:39 +020022 REG_PCI_OR16(PCI_COMMAND,
23 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | PCI_COMMAND_INT_DISABLE),
Duncan Laurie430bf0d2013-12-10 14:37:42 -080024 /* Enable ACPI mode */
25 REG_IOSF_OR(IOSF_PORT_LPSS, iosf_reg,
26 LPSS_CTL_PCI_CFG_DIS | LPSS_CTL_ACPI_INT_EN),
Angel Pons41b1edf2020-07-07 17:54:56 +020027
Duncan Laurie430bf0d2013-12-10 14:37:42 -080028 REG_SCRIPT_END
29 };
30 struct resource *bar;
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +030031 struct global_nvs *gnvs;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080032
33 /* Find ACPI NVS to update BARs */
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +030034 gnvs = acpi_get_gnvs();
35 if (!gnvs)
Duncan Laurie430bf0d2013-12-10 14:37:42 -080036 return;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080037
38 /* Save BAR0 and BAR1 to ACPI NVS */
39 bar = find_resource(dev, PCI_BASE_ADDRESS_0);
40 if (bar)
41 gnvs->dev.lpss_bar0[nvs_index] = (u32)bar->base;
42
43 bar = find_resource(dev, PCI_BASE_ADDRESS_1);
44 if (bar)
45 gnvs->dev.lpss_bar1[nvs_index] = (u32)bar->base;
46
47 /* Device is enabled in ACPI mode */
48 gnvs->dev.lpss_en[nvs_index] = 1;
49
50 /* Put device in ACPI mode */
Aaron Durbin616f3942013-12-10 17:12:44 -080051 reg_script_run_on_dev(dev, ops);
Duncan Laurie430bf0d2013-12-10 14:37:42 -080052}
Aaron Durbindc866cf2013-11-12 20:21:53 -060053
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +020054static void dev_enable_snoop_and_pm(struct device *dev, int iosf_reg)
Aaron Durbindc866cf2013-11-12 20:21:53 -060055{
56 struct reg_script ops[] = {
Aaron Durbindc866cf2013-11-12 20:21:53 -060057 REG_IOSF_RMW(IOSF_PORT_LPSS, iosf_reg,
58 ~(LPSS_CTL_SNOOP | LPSS_CTL_NOSNOOP),
59 LPSS_CTL_SNOOP | LPSS_CTL_PM_CAP_PRSNT),
60 REG_SCRIPT_END,
61 };
62
Aaron Durbin616f3942013-12-10 17:12:44 -080063 reg_script_run_on_dev(dev, ops);
Aaron Durbindc866cf2013-11-12 20:21:53 -060064}
65
Angel Pons41b1edf2020-07-07 17:54:56 +020066#define SET_IOSF_REG(name_) \
67 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
68 do { \
69 *iosf_reg = LPSS_ ## name_ ## _CTL; \
70 *nvs_index = LPSS_NVS_ ## name_; \
71 } while (0)
72
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +020073static void dev_ctl_reg(struct device *dev, int *iosf_reg, int *nvs_index)
Aaron Durbindc866cf2013-11-12 20:21:53 -060074{
Duncan Laurie430bf0d2013-12-10 14:37:42 -080075 *iosf_reg = -1;
76 *nvs_index = -1;
Aaron Durbindc866cf2013-11-12 20:21:53 -060077
78 switch (dev->path.pci.devfn) {
79 SET_IOSF_REG(SIO_DMA1);
80 break;
81 SET_IOSF_REG(I2C1);
82 break;
83 SET_IOSF_REG(I2C2);
84 break;
85 SET_IOSF_REG(I2C3);
86 break;
87 SET_IOSF_REG(I2C4);
88 break;
89 SET_IOSF_REG(I2C5);
90 break;
91 SET_IOSF_REG(I2C6);
92 break;
93 SET_IOSF_REG(I2C7);
94 break;
95 SET_IOSF_REG(SIO_DMA2);
96 break;
97 SET_IOSF_REG(PWM1);
98 break;
99 SET_IOSF_REG(PWM2);
100 break;
101 SET_IOSF_REG(HSUART1);
102 break;
103 SET_IOSF_REG(HSUART2);
104 break;
105 SET_IOSF_REG(SPI);
106 break;
107 }
Aaron Durbindc866cf2013-11-12 20:21:53 -0600108}
109
Angel Pons41b1edf2020-07-07 17:54:56 +0200110#define CASE_I2C(name_) case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC)
111
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +0200112static void i2c_disable_resets(struct device *dev)
Aaron Durbindc866cf2013-11-12 20:21:53 -0600113{
114 /* Release the I2C devices from reset. */
Aaron Durbin616f3942013-12-10 17:12:44 -0800115 static const struct reg_script ops[] = {
Aaron Durbindc866cf2013-11-12 20:21:53 -0600116 REG_RES_WRITE32(PCI_BASE_ADDRESS_0, 0x804, 0x3),
117 REG_SCRIPT_END,
118 };
119
Aaron Durbindc866cf2013-11-12 20:21:53 -0600120 switch (dev->path.pci.devfn) {
121 CASE_I2C(I2C1):
122 CASE_I2C(I2C2):
123 CASE_I2C(I2C3):
124 CASE_I2C(I2C4):
125 CASE_I2C(I2C5):
126 CASE_I2C(I2C6):
127 CASE_I2C(I2C7):
128 printk(BIOS_DEBUG, "Releasing I2C device from reset.\n");
Aaron Durbin616f3942013-12-10 17:12:44 -0800129 reg_script_run_on_dev(dev, ops);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600130 break;
131 default:
132 return;
133 }
134}
135
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +0200136static void lpss_init(struct device *dev)
Aaron Durbindc866cf2013-11-12 20:21:53 -0600137{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300138 struct soc_intel_baytrail_config *config = config_of(dev);
Duncan Laurie430bf0d2013-12-10 14:37:42 -0800139 int iosf_reg, nvs_index;
140
141 dev_ctl_reg(dev, &iosf_reg, &nvs_index);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600142
143 if (iosf_reg < 0) {
144 int slot = PCI_SLOT(dev->path.pci.devfn);
145 int func = PCI_FUNC(dev->path.pci.devfn);
Angel Pons41b1edf2020-07-07 17:54:56 +0200146 printk(BIOS_DEBUG, "Could not find iosf_reg for %02x.%01x\n", slot, func);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600147 return;
148 }
149 dev_enable_snoop_and_pm(dev, iosf_reg);
Duncan Lauriec29d6b82013-12-12 16:55:36 -0800150 i2c_disable_resets(dev);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600151
Duncan Laurie430bf0d2013-12-10 14:37:42 -0800152 if (config->lpss_acpi_mode)
153 dev_enable_acpi_mode(dev, iosf_reg, nvs_index);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600154}
155
156static struct device_operations device_ops = {
157 .read_resources = pci_dev_read_resources,
158 .set_resources = pci_dev_set_resources,
159 .enable_resources = pci_dev_enable_resources,
160 .init = lpss_init,
Aaron Durbindc866cf2013-11-12 20:21:53 -0600161 .ops_pci = &soc_pci_ops,
162};
163
164static const unsigned short pci_device_ids[] = {
165 SIO_DMA1_DEVID,
166 I2C1_DEVID,
167 I2C2_DEVID,
168 I2C3_DEVID,
169 I2C4_DEVID,
170 I2C5_DEVID,
171 I2C6_DEVID,
172 I2C7_DEVID,
173 SIO_DMA2_DEVID,
174 PWM1_DEVID,
175 PWM2_DEVID,
176 HSUART1_DEVID,
177 HSUART2_DEVID,
178 SPI_DEVID,
179 0,
180};
181
182static const struct pci_driver southcluster __pci_driver = {
183 .ops = &device_ops,
184 .vendor = PCI_VENDOR_ID_INTEL,
185 .devices = pci_device_ids,
186};