blob: 08c3c05d85f1e2fc8f20832c184a73681dcde048 [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 Pons41b1edf2020-07-07 17:54:56 +020022 REG_PCI_OR16(PCI_COMMAND, PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | (1 << 10)),
Duncan Laurie430bf0d2013-12-10 14:37:42 -080023 /* Enable ACPI mode */
24 REG_IOSF_OR(IOSF_PORT_LPSS, iosf_reg,
25 LPSS_CTL_PCI_CFG_DIS | LPSS_CTL_ACPI_INT_EN),
Angel Pons41b1edf2020-07-07 17:54:56 +020026
Duncan Laurie430bf0d2013-12-10 14:37:42 -080027 REG_SCRIPT_END
28 };
29 struct resource *bar;
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +030030 struct global_nvs *gnvs;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080031
32 /* Find ACPI NVS to update BARs */
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +030033 gnvs = acpi_get_gnvs();
34 if (!gnvs)
Duncan Laurie430bf0d2013-12-10 14:37:42 -080035 return;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080036
37 /* Save BAR0 and BAR1 to ACPI NVS */
38 bar = find_resource(dev, PCI_BASE_ADDRESS_0);
39 if (bar)
40 gnvs->dev.lpss_bar0[nvs_index] = (u32)bar->base;
41
42 bar = find_resource(dev, PCI_BASE_ADDRESS_1);
43 if (bar)
44 gnvs->dev.lpss_bar1[nvs_index] = (u32)bar->base;
45
46 /* Device is enabled in ACPI mode */
47 gnvs->dev.lpss_en[nvs_index] = 1;
48
49 /* Put device in ACPI mode */
Aaron Durbin616f3942013-12-10 17:12:44 -080050 reg_script_run_on_dev(dev, ops);
Duncan Laurie430bf0d2013-12-10 14:37:42 -080051}
Aaron Durbindc866cf2013-11-12 20:21:53 -060052
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +020053static void dev_enable_snoop_and_pm(struct device *dev, int iosf_reg)
Aaron Durbindc866cf2013-11-12 20:21:53 -060054{
55 struct reg_script ops[] = {
Aaron Durbindc866cf2013-11-12 20:21:53 -060056 REG_IOSF_RMW(IOSF_PORT_LPSS, iosf_reg,
57 ~(LPSS_CTL_SNOOP | LPSS_CTL_NOSNOOP),
58 LPSS_CTL_SNOOP | LPSS_CTL_PM_CAP_PRSNT),
59 REG_SCRIPT_END,
60 };
61
Aaron Durbin616f3942013-12-10 17:12:44 -080062 reg_script_run_on_dev(dev, ops);
Aaron Durbindc866cf2013-11-12 20:21:53 -060063}
64
Angel Pons41b1edf2020-07-07 17:54:56 +020065#define SET_IOSF_REG(name_) \
66 case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC): \
67 do { \
68 *iosf_reg = LPSS_ ## name_ ## _CTL; \
69 *nvs_index = LPSS_NVS_ ## name_; \
70 } while (0)
71
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +020072static void dev_ctl_reg(struct device *dev, int *iosf_reg, int *nvs_index)
Aaron Durbindc866cf2013-11-12 20:21:53 -060073{
Duncan Laurie430bf0d2013-12-10 14:37:42 -080074 *iosf_reg = -1;
75 *nvs_index = -1;
Aaron Durbindc866cf2013-11-12 20:21:53 -060076
77 switch (dev->path.pci.devfn) {
78 SET_IOSF_REG(SIO_DMA1);
79 break;
80 SET_IOSF_REG(I2C1);
81 break;
82 SET_IOSF_REG(I2C2);
83 break;
84 SET_IOSF_REG(I2C3);
85 break;
86 SET_IOSF_REG(I2C4);
87 break;
88 SET_IOSF_REG(I2C5);
89 break;
90 SET_IOSF_REG(I2C6);
91 break;
92 SET_IOSF_REG(I2C7);
93 break;
94 SET_IOSF_REG(SIO_DMA2);
95 break;
96 SET_IOSF_REG(PWM1);
97 break;
98 SET_IOSF_REG(PWM2);
99 break;
100 SET_IOSF_REG(HSUART1);
101 break;
102 SET_IOSF_REG(HSUART2);
103 break;
104 SET_IOSF_REG(SPI);
105 break;
106 }
Aaron Durbindc866cf2013-11-12 20:21:53 -0600107}
108
Angel Pons41b1edf2020-07-07 17:54:56 +0200109#define CASE_I2C(name_) case PCI_DEVFN(name_ ## _DEV, name_ ## _FUNC)
110
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +0200111static void i2c_disable_resets(struct device *dev)
Aaron Durbindc866cf2013-11-12 20:21:53 -0600112{
113 /* Release the I2C devices from reset. */
Aaron Durbin616f3942013-12-10 17:12:44 -0800114 static const struct reg_script ops[] = {
Aaron Durbindc866cf2013-11-12 20:21:53 -0600115 REG_RES_WRITE32(PCI_BASE_ADDRESS_0, 0x804, 0x3),
116 REG_SCRIPT_END,
117 };
118
Aaron Durbindc866cf2013-11-12 20:21:53 -0600119 switch (dev->path.pci.devfn) {
120 CASE_I2C(I2C1):
121 CASE_I2C(I2C2):
122 CASE_I2C(I2C3):
123 CASE_I2C(I2C4):
124 CASE_I2C(I2C5):
125 CASE_I2C(I2C6):
126 CASE_I2C(I2C7):
127 printk(BIOS_DEBUG, "Releasing I2C device from reset.\n");
Aaron Durbin616f3942013-12-10 17:12:44 -0800128 reg_script_run_on_dev(dev, ops);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600129 break;
130 default:
131 return;
132 }
133}
134
Elyes HAOUAS17a3ceb2018-05-22 10:42:28 +0200135static void lpss_init(struct device *dev)
Aaron Durbindc866cf2013-11-12 20:21:53 -0600136{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300137 struct soc_intel_baytrail_config *config = config_of(dev);
Duncan Laurie430bf0d2013-12-10 14:37:42 -0800138 int iosf_reg, nvs_index;
139
140 dev_ctl_reg(dev, &iosf_reg, &nvs_index);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600141
142 if (iosf_reg < 0) {
143 int slot = PCI_SLOT(dev->path.pci.devfn);
144 int func = PCI_FUNC(dev->path.pci.devfn);
Angel Pons41b1edf2020-07-07 17:54:56 +0200145 printk(BIOS_DEBUG, "Could not find iosf_reg for %02x.%01x\n", slot, func);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600146 return;
147 }
148 dev_enable_snoop_and_pm(dev, iosf_reg);
Duncan Lauriec29d6b82013-12-12 16:55:36 -0800149 i2c_disable_resets(dev);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600150
Duncan Laurie430bf0d2013-12-10 14:37:42 -0800151 if (config->lpss_acpi_mode)
152 dev_enable_acpi_mode(dev, iosf_reg, nvs_index);
Aaron Durbindc866cf2013-11-12 20:21:53 -0600153}
154
155static struct device_operations device_ops = {
156 .read_resources = pci_dev_read_resources,
157 .set_resources = pci_dev_set_resources,
158 .enable_resources = pci_dev_enable_resources,
159 .init = lpss_init,
Aaron Durbindc866cf2013-11-12 20:21:53 -0600160 .ops_pci = &soc_pci_ops,
161};
162
163static const unsigned short pci_device_ids[] = {
164 SIO_DMA1_DEVID,
165 I2C1_DEVID,
166 I2C2_DEVID,
167 I2C3_DEVID,
168 I2C4_DEVID,
169 I2C5_DEVID,
170 I2C6_DEVID,
171 I2C7_DEVID,
172 SIO_DMA2_DEVID,
173 PWM1_DEVID,
174 PWM2_DEVID,
175 HSUART1_DEVID,
176 HSUART2_DEVID,
177 SPI_DEVID,
178 0,
179};
180
181static const struct pci_driver southcluster __pci_driver = {
182 .ops = &device_ops,
183 .vendor = PCI_VENDOR_ID_INTEL,
184 .devices = pci_device_ids,
185};