blob: b8918e8377584ff6bac3203feb2b7e58d945d1cb [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00002
3#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
Kyösti Mälkkidf128a52019-09-21 18:35:37 +03006#include <device/pci_def.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02007#include <device/pci_ops.h>
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00008#include <device/pci_ids.h>
Arthur Heymans742df5a2019-06-03 16:24:41 +02009#include "chip.h"
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +010010#include "i82801gx.h"
11
12/* Low Power variant has 6 root ports. */
13#define NUM_ROOT_PORTS 6
14
15struct root_port_config {
16 /* RPFN is a write-once register so keep a copy until it is written */
17 u32 orig_rpfn;
18 u32 new_rpfn;
19 int num_ports;
20 struct device *ports[NUM_ROOT_PORTS];
21};
22
23static struct root_port_config rpc;
24
25static inline int root_port_is_first(struct device *dev)
26{
27 return PCI_FUNC(dev->path.pci.devfn) == 0;
28}
29
30static inline int root_port_is_last(struct device *dev)
31{
32 return PCI_FUNC(dev->path.pci.devfn) == (rpc.num_ports - 1);
33}
34
35/* Root ports are numbered 1..N in the documentation. */
36static inline int root_port_number(struct device *dev)
37{
38 return PCI_FUNC(dev->path.pci.devfn) + 1;
39}
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000040
41static void pci_init(struct device *dev)
42{
43 u16 reg16;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000044
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000045 printk(BIOS_DEBUG, "Initializing ICH7 PCIe bridge.\n");
Stefan Reinauer109ab312009-08-12 16:08:05 +000046
Stefan Reinauera8e11682009-03-11 14:54:18 +000047 /* Enable Bus Master */
Elyes HAOUAS12349252020-04-27 05:08:26 +020048 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000049
Stefan Reinauera8e11682009-03-11 14:54:18 +000050 /* Set Cache Line Size to 0x10 */
51 // This has no effect but the OS might expect it
Elyes HAOUASae22fe22020-05-21 09:04:16 +020052 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 0x10);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000053
Angel Ponsd19332c2020-06-08 12:32:54 +020054 pci_and_config16(dev, PCI_BRIDGE_CONTROL, ~PCI_BRIDGE_CTL_PARITY);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000055
Stefan Reinauera8e11682009-03-11 14:54:18 +000056 /* Enable IO xAPIC on this PCIe port */
Angel Ponsd19332c2020-06-08 12:32:54 +020057 pci_or_config32(dev, 0xd8, 1 << 7);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000058
Stefan Reinauera8e11682009-03-11 14:54:18 +000059 /* Enable Backbone Clock Gating */
Angel Ponsd19332c2020-06-08 12:32:54 +020060 pci_or_config32(dev, 0xe1, (1 << 3) | (1 << 2) | (1 << 1) | (1 << 0));
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000061
Stefan Reinauera8e11682009-03-11 14:54:18 +000062 /* Set VC0 transaction class */
Angel Ponsd19332c2020-06-08 12:32:54 +020063 pci_update_config32(dev, 0x114, ~0x000000ff, 1);
Stefan Reinauera8e11682009-03-11 14:54:18 +000064
65 /* Mask completion timeouts */
Angel Ponsd19332c2020-06-08 12:32:54 +020066 pci_or_config32(dev, 0x148, 1 << 14);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +030067
Stefan Reinauera8e11682009-03-11 14:54:18 +000068 /* Enable common clock configuration */
69 // Are there cases when we don't want that?
Angel Ponsd19332c2020-06-08 12:32:54 +020070 pci_or_config16(dev, 0x50, 1 << 6);
Stefan Reinauera8e11682009-03-11 14:54:18 +000071
Angel Ponsd19332c2020-06-08 12:32:54 +020072 /* Clear errors in status registers. FIXME: Do something? */
Stefan Reinauera8e11682009-03-11 14:54:18 +000073 reg16 = pci_read_config16(dev, 0x06);
74 //reg16 |= 0xf900;
75 pci_write_config16(dev, 0x06, reg16);
76
77 reg16 = pci_read_config16(dev, 0x1e);
78 //reg16 |= 0xf900;
79 pci_write_config16(dev, 0x1e, reg16);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000080}
81
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +010082static int get_num_ports(void)
83{
84 struct device *dev = pcidev_on_root(31, 0);
85 if (pci_read_config32(dev, FDVCT) & PCIE_4_PORTS_MAX)
86 return 4;
87 else
88 return 6;
89}
90
91static void root_port_init_config(struct device *dev)
92{
93 int rp;
94
95 if (root_port_is_first(dev)) {
96 rpc.orig_rpfn = RCBA32(RPFN);
97 rpc.new_rpfn = rpc.orig_rpfn;
98 rpc.num_ports = get_num_ports();
99 }
100
101 rp = root_port_number(dev);
102 if (rp > rpc.num_ports) {
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200103 printk(BIOS_ERR, "Found Root Port %d, expecting %d\n", rp, rpc.num_ports);
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100104 return;
105 }
106
107 /* Cache pci device. */
108 rpc.ports[rp - 1] = dev;
109}
110
111/* Update devicetree with new Root Port function number assignment */
112static void ich_pcie_device_set_func(int index, int pci_func)
113{
114 struct device *dev;
115 unsigned int new_devfn;
116
117 dev = rpc.ports[index];
118
119 /* Set the new PCI function field for this Root Port. */
120 rpc.new_rpfn &= ~RPFN_FNMASK(index);
121 rpc.new_rpfn |= RPFN_FNSET(index, pci_func);
122
123 /* Determine the new devfn for this port */
124 new_devfn = PCI_DEVFN(ICH_PCIE_DEV_SLOT, pci_func);
125
126 if (dev->path.pci.devfn != new_devfn) {
127 printk(BIOS_DEBUG,
128 "ICH: PCIe map %02x.%1x -> %02x.%1x\n",
129 PCI_SLOT(dev->path.pci.devfn),
130 PCI_FUNC(dev->path.pci.devfn),
131 PCI_SLOT(new_devfn), PCI_FUNC(new_devfn));
132
133 dev->path.pci.devfn = new_devfn;
134 }
135}
136
137static void root_port_commit_config(struct device *dev)
138{
139 int i;
Angel Ponsaf4bd562021-12-28 13:05:56 +0100140 bool coalesce = false;
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100141
142 if (dev->chip_info != NULL) {
Elyes HAOUAS8d9a6f12020-04-28 04:57:27 +0200143 const struct southbridge_intel_i82801gx_config *config = dev->chip_info;
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100144 coalesce = config->pcie_port_coalesce;
145 }
146
147 if (!rpc.ports[0]->enabled)
Angel Ponsaf4bd562021-12-28 13:05:56 +0100148 coalesce = true;
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100149
150 for (i = 0; i < rpc.num_ports; i++) {
151 struct device *pcie_dev;
152
153 pcie_dev = rpc.ports[i];
154
Jacob Garber14e826f2019-03-12 22:27:52 -0600155 if (pcie_dev == NULL) {
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200156 printk(BIOS_ERR, "Root Port %d device is NULL?\n", i + 1);
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100157 continue;
158 }
159
160 if (pcie_dev->enabled)
161 continue;
162
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200163 printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(pcie_dev));
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100164
165 /* Disable this device if possible */
166 i82801gx_enable(pcie_dev);
167 }
168
169 if (coalesce) {
170 int current_func;
171
172 /* For all Root Ports N enabled ports get assigned the lower
173 * PCI function number. The disabled ones get upper PCI
174 * function numbers. */
175 current_func = 0;
176 for (i = 0; i < rpc.num_ports; i++) {
177 if (!rpc.ports[i]->enabled)
178 continue;
179 ich_pcie_device_set_func(i, current_func);
180 current_func++;
181 }
182
183 /* Allocate the disabled devices' PCI function number. */
184 for (i = 0; i < rpc.num_ports; i++) {
185 if (rpc.ports[i]->enabled)
186 continue;
187 ich_pcie_device_set_func(i, current_func);
188 current_func++;
189 }
190 }
191
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200192 printk(BIOS_SPEW, "ICH: RPFN 0x%08x -> 0x%08x\n", rpc.orig_rpfn, rpc.new_rpfn);
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100193 RCBA32(RPFN) = rpc.new_rpfn;
194}
195
196static void ich_pcie_enable(struct device *dev)
197{
198 /* Add this device to the root port config structure. */
199 root_port_init_config(dev);
200
201 /*
202 * When processing the last PCIe root port we can now
203 * update the Root Port Function Number and Hide register.
204 */
205 if (root_port_is_last(dev))
206 root_port_commit_config(dev);
207}
208
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000209static struct device_operations device_ops = {
210 .read_resources = pci_bus_read_resources,
211 .set_resources = pci_dev_set_resources,
212 .enable_resources = pci_bus_enable_resources,
213 .init = pci_init,
Arthur Heymanse6e5ecb2018-12-20 01:44:50 +0100214 .enable = ich_pcie_enable,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000215 .scan_bus = pci_scan_bridge,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200216 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000217};
218
Patrick Georgiefff7332012-07-26 19:48:23 +0200219static const unsigned short i82801gx_pcie_ids[] = {
220 0x27d0, /* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
221 0x27d2, /* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
222 0x27d4, /* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
223 0x27d6, /* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
224 0x27e0, /* 82801GR/GDH/GHM (ICH7R/ICH7DH/ICH7-M DH) */
225 0x27e2, /* 82801GR/GDH/GHM (ICH7R/ICH7DH/ICH7-M DH) */
226 0
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000227};
228
Patrick Georgiefff7332012-07-26 19:48:23 +0200229static const struct pci_driver i82801gx_pcie __pci_driver = {
Arthur Heymans3f111b02017-03-09 12:02:52 +0100230 .ops = &device_ops,
231 .vendor = PCI_VENDOR_ID_INTEL,
232 .devices = i82801gx_pcie_ids,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000233};