blob: 0a4b69bfb2f2c39d25a42947d9c1a3064cb6f261 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
Martin Rothbb5953d2016-04-11 20:53:39 -06004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
Uwe Hermannb80dbf02007-04-22 19:08:13 +000012 */
13
14/*
Martin Roth99f83bb2019-09-15 20:57:18 -070015 * Originally based on the Linux kernel (drivers/pci/pci.c).
Myles Watson29cc9ed2009-07-02 18:56:24 +000016 * PCI Bus Services, see include/linux/pci.h for further explanation.
Eric Biederman8ca8d762003-04-22 19:02:15 +000017 */
18
Edward O'Callaghan6c992502014-06-20 21:19:06 +100019#include <arch/acpi.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100021#include <bootmode.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000022#include <console/console.h>
23#include <stdlib.h>
24#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000025#include <string.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100026#include <delay.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100027#include <device/cardbus.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000028#include <device/device.h>
29#include <device/pci.h>
30#include <device/pci_ids.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000031#include <device/pcix.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000032#include <device/pciexp.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100033#include <device/hypertransport.h>
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000034#include <pc80/i8259.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020035#include <security/vboot/vbnv.h>
Martin Roth5dd4a2a2018-03-06 16:10:45 -070036#include <timestamp.h>
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020037#include <types.h>
38
Eric Biederman03acab62004-10-14 21:25:53 +000039
Myles Watson29cc9ed2009-07-02 18:56:24 +000040u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000041{
Myles Watson29cc9ed2009-07-02 18:56:24 +000042 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000043
Eric Biederman03acab62004-10-14 21:25:53 +000044 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000045
Eric Biederman03acab62004-10-14 21:25:53 +000046 pci_write_config8(dev, reg, 0xff);
47 ones = pci_read_config8(dev, reg);
48
49 pci_write_config8(dev, reg, 0x00);
50 zeroes = pci_read_config8(dev, reg);
51
52 pci_write_config8(dev, reg, value);
53
54 return ones ^ zeroes;
55}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000056
Uwe Hermanne4870472010-11-04 23:23:47 +000057u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000058{
Myles Watson29cc9ed2009-07-02 18:56:24 +000059 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000060
Eric Biederman03acab62004-10-14 21:25:53 +000061 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000062
Eric Biederman03acab62004-10-14 21:25:53 +000063 pci_write_config16(dev, reg, 0xffff);
64 ones = pci_read_config16(dev, reg);
65
66 pci_write_config16(dev, reg, 0x0000);
67 zeroes = pci_read_config16(dev, reg);
68
69 pci_write_config16(dev, reg, value);
70
71 return ones ^ zeroes;
72}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000073
Uwe Hermanne4870472010-11-04 23:23:47 +000074u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000075{
Myles Watson29cc9ed2009-07-02 18:56:24 +000076 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000077
Eric Biederman03acab62004-10-14 21:25:53 +000078 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000079
Eric Biederman03acab62004-10-14 21:25:53 +000080 pci_write_config32(dev, reg, 0xffffffff);
81 ones = pci_read_config32(dev, reg);
82
83 pci_write_config32(dev, reg, 0x00000000);
84 zeroes = pci_read_config32(dev, reg);
85
86 pci_write_config32(dev, reg, value);
87
88 return ones ^ zeroes;
89}
90
Myles Watson29cc9ed2009-07-02 18:56:24 +000091/**
Myles Watson29cc9ed2009-07-02 18:56:24 +000092 * Given a device and register, read the size of the BAR for that register.
93 *
94 * @param dev Pointer to the device structure.
95 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +000096 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +000097 */
Eric Biederman03acab62004-10-14 21:25:53 +000098struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +000099{
Eric Biederman5cd81732004-03-11 15:01:31 +0000100 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000101 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000102 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000103
Myles Watson29cc9ed2009-07-02 18:56:24 +0000104 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000105 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000106
Myles Watson29cc9ed2009-07-02 18:56:24 +0000107 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000108 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000109
Myles Watson29cc9ed2009-07-02 18:56:24 +0000110 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000111 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000112
Myles Watson29cc9ed2009-07-02 18:56:24 +0000113 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000114 attr = value & ~moving;
115
Myles Watson29cc9ed2009-07-02 18:56:24 +0000116 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000117 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000118 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
119 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
120 /* Find the high bits that move. */
121 moving |=
122 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000123 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000124
Myles Watson032a9652009-05-11 22:24:53 +0000125 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000126 * Start by finding the bits that move. From there:
127 * - Size is the least significant bit of the bits that move.
128 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000129 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000130 */
Eric Biederman03acab62004-10-14 21:25:53 +0000131 limit = 0;
132 if (moving) {
133 resource->size = 1;
134 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000135 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000136 resource->size <<= 1;
137 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000138 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000139 }
140 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200141
142 if (pci_base_address_is_memory_space(attr)) {
143 /* Page-align to allow individual mapping of devices. */
144 if (resource->align < 12)
145 resource->align = 12;
146 }
Eric Biederman03acab62004-10-14 21:25:53 +0000147 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000148
Uwe Hermanne4870472010-11-04 23:23:47 +0000149 /*
150 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000151 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000152 *
153 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000154 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000155 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
156 * is a violation of the spec.
157 *
158 * We catch this case and ignore it by observing which bits move.
159 *
160 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000161 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000162 */
Eric Biederman03acab62004-10-14 21:25:53 +0000163 if (moving == 0) {
164 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000165 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
166 "read-only ignoring it\n",
167 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000168 }
169 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000170 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
171 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000172 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000173 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000174 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000175 } else {
176 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000177 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000178 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000179 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000180 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000181 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
182 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000183 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000184 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000185 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
186 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000187 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000188 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
189 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000190 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000191 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000192 } else {
193 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000194 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
195 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000196 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000197 resource->flags = 0;
198 }
199 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000200
Myles Watson29cc9ed2009-07-02 18:56:24 +0000201 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000202 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000203 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000204
Eric Biederman5cd81732004-03-11 15:01:31 +0000205 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000206}
207
Myles Watson29cc9ed2009-07-02 18:56:24 +0000208/**
209 * Given a device and an index, read the size of the BAR for that register.
210 *
211 * @param dev Pointer to the device structure.
212 * @param index Address of the PCI configuration register.
213 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000214static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000215{
216 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000217 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000218 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000219
Myles Watson29cc9ed2009-07-02 18:56:24 +0000220 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000221 resource = new_resource(dev, index);
222
Myles Watson29cc9ed2009-07-02 18:56:24 +0000223 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000224 value = pci_read_config32(dev, index);
225
Myles Watson29cc9ed2009-07-02 18:56:24 +0000226 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000227 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000228
229 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000230 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000231
Myles Watson032a9652009-05-11 22:24:53 +0000232 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000233 * Start by finding the bits that move. From there:
234 * - Size is the least significant bit of the bits that move.
235 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000236 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000237 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000238 if (moving) {
239 resource->size = 1;
240 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000241 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000242 resource->size <<= 1;
243 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000244 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000245 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000246 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000247 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
248 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000249 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000250 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
251 "read-only ignoring it\n",
252 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000253 }
254 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000255 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000256 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000257}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000258
Myles Watson29cc9ed2009-07-02 18:56:24 +0000259/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200260 * Given a device, read the size of the MSI-X table.
261 *
262 * @param dev Pointer to the device structure.
263 * @return MSI-X table size or 0 if not MSI-X capable device
264 */
265size_t pci_msix_table_size(struct device *dev)
266{
267 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
268 if (!pos)
269 return 0;
270
271 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
272 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
273}
274
275/**
276 * Given a device, return the table offset and bar the MSI-X tables resides in.
277 *
278 * @param dev Pointer to the device structure.
279 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
280 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
281 * the MSI-X table is located in.
282 * @return Zero on success
283 */
284int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
285{
286 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
287 if (!pos || !offset || !idx)
288 return 1;
289
290 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
291 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
292 *offset &= PCI_MSIX_PBA_OFFSET;
293
294 return 0;
295}
296
297/**
298 * Given a device, return a msix_entry pointer or NULL if no table was found.
299 *
300 * @param dev Pointer to the device structure.
301 *
302 * @return NULL on error
303 */
304struct msix_entry *pci_msix_get_table(struct device *dev)
305{
306 struct resource *res;
307 u32 offset;
308 u8 idx;
309
310 if (pci_msix_table_bar(dev, &offset, &idx))
311 return NULL;
312
313 if (idx > 5)
314 return NULL;
315
316 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
317 if (!res || !res->base || offset >= res->size)
318 return NULL;
319
320 if ((res->flags & IORESOURCE_PCI64) &&
321 (uintptr_t)res->base != res->base)
322 return NULL;
323
324 return (struct msix_entry *)((uintptr_t)res->base + offset);
325}
326
327/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000328 * Read the base address registers for a given device.
329 *
330 * @param dev Pointer to the dev structure.
331 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000332 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000333static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000334{
335 unsigned long index;
336
Myles Watson29cc9ed2009-07-02 18:56:24 +0000337 for (index = PCI_BASE_ADDRESS_0;
338 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000339 struct resource *resource;
340 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000341 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000342 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000343
344 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000345}
346
Myles Watson29cc9ed2009-07-02 18:56:24 +0000347static void pci_record_bridge_resource(struct device *dev, resource_t moving,
348 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000349{
Eric Biederman03acab62004-10-14 21:25:53 +0000350 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000351 unsigned long gran;
352 resource_t step;
353
Myles Watson29cc9ed2009-07-02 18:56:24 +0000354 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000355
356 if (!moving)
357 return;
358
359 /* Initialize the constraints on the current bus. */
360 resource = new_resource(dev, index);
361 resource->size = 0;
362 gran = 0;
363 step = 1;
364 while ((moving & step) == 0) {
365 gran += 1;
366 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000367 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000368 resource->gran = gran;
369 resource->align = gran;
370 resource->limit = moving | (step - 1);
371 resource->flags = type | IORESOURCE_PCI_BRIDGE |
372 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000373}
374
Eric Biederman8ca8d762003-04-22 19:02:15 +0000375static void pci_bridge_read_bases(struct device *dev)
376{
Eric Biederman03acab62004-10-14 21:25:53 +0000377 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000378
Myles Watson29cc9ed2009-07-02 18:56:24 +0000379 /* See if the bridge I/O resources are implemented. */
380 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
381 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000382 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000383
Myles Watson29cc9ed2009-07-02 18:56:24 +0000384 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
385 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000386 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000387
388 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000389
Myles Watson29cc9ed2009-07-02 18:56:24 +0000390 /* Initialize the I/O space constraints on the current bus. */
391 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000392
Myles Watson29cc9ed2009-07-02 18:56:24 +0000393 /* See if the bridge prefmem resources are implemented. */
394 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000395 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000396 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000397 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000398
Myles Watson29cc9ed2009-07-02 18:56:24 +0000399 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000400 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000401 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000402 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000403
Eric Biederman03acab62004-10-14 21:25:53 +0000404 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 /* Initialize the prefetchable memory constraints on the current bus. */
406 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
407 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000408
Myles Watson29cc9ed2009-07-02 18:56:24 +0000409 /* See if the bridge mem resources are implemented. */
410 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
411 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000412
413 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000414
Myles Watson29cc9ed2009-07-02 18:56:24 +0000415 /* Initialize the memory resources on the current bus. */
416 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
417 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000418
Eric Biederman5cd81732004-03-11 15:01:31 +0000419 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420}
421
Eric Biederman5899fd82003-04-24 06:25:08 +0000422void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000423{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000424 pci_read_bases(dev, 6);
425 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426}
427
Eric Biederman5899fd82003-04-24 06:25:08 +0000428void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000431 pci_read_bases(dev, 2);
432 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433}
434
Myles Watson29cc9ed2009-07-02 18:56:24 +0000435void pci_domain_read_resources(struct device *dev)
436{
437 struct resource *res;
438
439 /* Initialize the system-wide I/O space constraints. */
440 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
441 res->limit = 0xffffUL;
442 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
443 IORESOURCE_ASSIGNED;
444
445 /* Initialize the system-wide memory resources constraints. */
446 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
447 res->limit = 0xffffffffULL;
448 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
449 IORESOURCE_ASSIGNED;
450}
451
Eric Biederman8ca8d762003-04-22 19:02:15 +0000452static void pci_set_resource(struct device *dev, struct resource *resource)
453{
Eric Biederman03acab62004-10-14 21:25:53 +0000454 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000455
Myles Watson29cc9ed2009-07-02 18:56:24 +0000456 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000457 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000458 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
459 "assigned\n", dev_path(dev), resource->index,
460 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000461 return;
462 }
463
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000464 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000465 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000466 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000467
Myles Watson29cc9ed2009-07-02 18:56:24 +0000468 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000469 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000470 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000471
Myles Watson29cc9ed2009-07-02 18:56:24 +0000472 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000473 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000474 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000475
Myles Watson29cc9ed2009-07-02 18:56:24 +0000476 /* Only handle PCI memory and I/O resources for now. */
477 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000478 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000479
Myles Watson29cc9ed2009-07-02 18:56:24 +0000480 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000481 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000482 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000483 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000484 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000485 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000486 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000487 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000488 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000489
Myles Watson29cc9ed2009-07-02 18:56:24 +0000490 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000491 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000492
Myles Watson29cc9ed2009-07-02 18:56:24 +0000493 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000494 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000495
Myles Watson29cc9ed2009-07-02 18:56:24 +0000496 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000497 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000498
Uwe Hermanne4870472010-11-04 23:23:47 +0000499 /*
500 * PCI bridges have no enable bit. They are disabled if the base of
501 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000502 * by setting the base = limit and end = limit - 2^gran.
503 */
504 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
505 base = resource->limit;
506 end = resource->limit - (1 << resource->gran);
507 resource->base = base;
508 }
509
Eric Biederman8ca8d762003-04-22 19:02:15 +0000510 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000511 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000512
513 /*
514 * Some chipsets allow us to set/clear the I/O bit
515 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000516 */
Eric Biederman03acab62004-10-14 21:25:53 +0000517 base_lo = base & 0xffffffff;
518 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000519 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000520 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000521 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000522 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000523 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000524 } else if (resource->index == PCI_IO_BASE) {
525 /* Set the I/O ranges. */
526 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000527 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000528 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000529 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000530 } else if (resource->index == PCI_MEMORY_BASE) {
531 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000532 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000533 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000534 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
535 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000536 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
537 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
538 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
539 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 } else {
541 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000542 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000543 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000544 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000545 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000546
Eric Biederman03acab62004-10-14 21:25:53 +0000547 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000548}
549
Eric Biederman5899fd82003-04-24 06:25:08 +0000550void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000551{
Myles Watsonc25cc112010-05-21 14:33:48 +0000552 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000553 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000554 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000555
Uwe Hermanne4870472010-11-04 23:23:47 +0000556 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000557 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000558
Myles Watson894a3472010-06-09 22:41:35 +0000559 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000560 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000561 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000562 }
563
Myles Watson29cc9ed2009-07-02 18:56:24 +0000564 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000565 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000566
Myles Watson29cc9ed2009-07-02 18:56:24 +0000567 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000568 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000569 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000570
Myles Watson29cc9ed2009-07-02 18:56:24 +0000571 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000572 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000573 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000574 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000575
Myles Watson29cc9ed2009-07-02 18:56:24 +0000576 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000577 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578}
579
Eric Biedermane9a271e32003-09-02 03:36:25 +0000580void pci_dev_enable_resources(struct device *dev)
581{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300582 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000583 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000584
Uwe Hermanne4870472010-11-04 23:23:47 +0000585 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300586 if (dev->ops)
587 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000588 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700589 if (CONFIG_SUBSYSTEM_VENDOR_ID)
590 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530591 else if (!dev->subsystem_vendor)
592 dev->subsystem_vendor = pci_read_config16(dev,
593 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700594 if (CONFIG_SUBSYSTEM_DEVICE_ID)
595 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530596 else if (!dev->subsystem_device)
597 dev->subsystem_device = pci_read_config16(dev,
598 PCI_DEVICE_ID);
599
Sven Schnelle91321022011-03-01 19:58:47 +0000600 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
601 dev_path(dev), dev->subsystem_vendor,
602 dev->subsystem_device);
603 ops->set_subsystem(dev, dev->subsystem_vendor,
604 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000605 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000606 command = pci_read_config16(dev, PCI_COMMAND);
607 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000608
Myles Watson29cc9ed2009-07-02 18:56:24 +0000609 /* v3 has
610 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
611 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000612
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000613 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000614 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000615}
616
617void pci_bus_enable_resources(struct device *dev)
618{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000619 u16 ctrl;
620
Uwe Hermanne4870472010-11-04 23:23:47 +0000621 /*
622 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000623 * connected with (even it does not claim I/O resource).
624 */
Myles Watson894a3472010-06-09 22:41:35 +0000625 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000626 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000627 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000628 ctrl |= dev->link_list->bridge_ctrl;
Kyösti Mälkki382e2162019-09-21 16:19:32 +0300629 ctrl |= (PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000630 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000631 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
632
633 pci_dev_enable_resources(dev);
634}
635
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000636void pci_bus_reset(struct bus *bus)
637{
Uwe Hermanne4870472010-11-04 23:23:47 +0000638 u16 ctl;
639
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000640 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
641 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
642 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
643 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000644
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000645 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
646 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
647 delay(1);
648}
649
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200650void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
651 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000652{
Subrata Banik9514d472019-03-20 14:56:27 +0530653 uint8_t offset;
654
655 /* Header type */
656 switch (dev->hdr_type & 0x7f) {
657 case PCI_HEADER_TYPE_NORMAL:
658 offset = PCI_SUBSYSTEM_VENDOR_ID;
659 break;
660 case PCI_HEADER_TYPE_BRIDGE:
661 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
662 if (!offset)
663 return;
664 offset += 4; /* Vendor ID at offset 4 */
665 break;
666 case PCI_HEADER_TYPE_CARDBUS:
667 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
668 break;
669 default:
670 return;
671 }
672
Subrata Banik4a0f0712019-03-20 14:29:47 +0530673 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530674 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530675 pci_read_config32(dev, PCI_VENDOR_ID));
676 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530677 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530678 ((device & 0xffff) << 16) | (vendor & 0xffff));
679 }
Eric Biederman03acab62004-10-14 21:25:53 +0000680}
681
Frans Hendriksb71181a2019-10-04 14:06:33 +0200682static int should_run_oprom(struct device *dev, struct rom_header *rom)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300683{
684 static int should_run = -1;
685
Frans Hendriksb71181a2019-10-04 14:06:33 +0200686 if (CONFIG(VENDORCODE_ELTAN_VBOOT))
687 if (rom != NULL)
688 if (!verified_boot_should_run_oprom(rom))
689 return 0;
690
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300691 if (should_run >= 0)
692 return should_run;
693
Julius Wernercd49cce2019-03-05 16:53:33 -0800694 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700695 should_run = 1;
696 return should_run;
697 }
698
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200699 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300700 * something on the screen before the kernel is loaded.
701 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700702 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300703
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200704 if (!should_run)
705 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300706 return should_run;
707}
708
709static int should_load_oprom(struct device *dev)
710{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300711 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
712 * ROMs when coming out of an S3 resume.
713 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800714 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300715 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
716 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800717 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300718 return 1;
Frans Hendriksb71181a2019-10-04 14:06:33 +0200719 if (should_run_oprom(dev, NULL))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300720 return 1;
721
722 return 0;
723}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300724
Uwe Hermanne4870472010-11-04 23:23:47 +0000725/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000726void pci_dev_init(struct device *dev)
727{
728 struct rom_header *rom, *ram;
729
Julius Wernercd49cce2019-03-05 16:53:33 -0800730 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700731 return;
732
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100733 /* Only execute VGA ROMs. */
734 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000735 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000736
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300737 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700738 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700739 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500740
741 rom = pci_rom_probe(dev);
742 if (rom == NULL)
743 return;
744
745 ram = pci_rom_load(dev, rom);
746 if (ram == NULL)
747 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700748 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500749
Frans Hendriksb71181a2019-10-04 14:06:33 +0200750 if (!should_run_oprom(dev, rom))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300751 return;
752
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000753 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200754
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200755 gfx_set_init_done(1);
756 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700757 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000758}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000759
Li-Ta Loe5266692004-03-23 21:28:05 +0000760/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530761struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000762 .set_subsystem = pci_dev_set_subsystem,
763};
764
Eric Biederman8ca8d762003-04-22 19:02:15 +0000765struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000766 .read_resources = pci_dev_read_resources,
767 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000768 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800769#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200770 .write_acpi_tables = pci_rom_write_acpi_tables,
Patrick Rudolph00c0cd22017-06-06 19:30:55 +0200771 .acpi_fill_ssdt_generator = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200772#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000773 .init = pci_dev_init,
774 .scan_bus = 0,
775 .enable = 0,
776 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000777};
Li-Ta Loe5266692004-03-23 21:28:05 +0000778
779/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000780static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000781 .set_subsystem = 0,
782};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000783
Eric Biederman8ca8d762003-04-22 19:02:15 +0000784struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000785 .read_resources = pci_bus_read_resources,
786 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000787 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000788 .init = 0,
789 .scan_bus = pci_scan_bridge,
790 .enable = 0,
791 .reset_bus = pci_bus_reset,
792 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000793};
Li-Ta Loe5266692004-03-23 21:28:05 +0000794
795/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000796 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000797 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000798 * This function is a heuristic to detect which type of bus is downstream
799 * of a PCI-to-PCI bridge. This functions by looking for various capability
800 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
801 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000802 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000803 * When only a PCI-Express capability is found the type is examined to see
804 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000805 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000806 * @param dev Pointer to the device structure of the bridge.
807 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000808 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600809static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000810{
Julius Wernercd49cce2019-03-05 16:53:33 -0800811#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800812 unsigned int pcixpos;
813 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
814 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000815 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000816 return &default_pcix_ops_bus;
817 }
818#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800819#if CONFIG(HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800820 unsigned int htpos = 0;
821 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000822 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800823 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000824 if ((flags >> 13) == 1) {
825 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000826 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
827 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000828 return &default_ht_ops_bus;
829 }
830 }
831#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800832#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800833 unsigned int pciexpos;
834 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
835 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000836 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800837 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000838 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000839 case PCI_EXP_TYPE_ROOT_PORT:
840 case PCI_EXP_TYPE_UPSTREAM:
841 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000842 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000843 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000844 return &default_pciexp_ops_bus;
845 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000846 printk(BIOS_DEBUG, "%s subordinate PCI\n",
847 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000848 return &default_pci_ops_bus;
849 default:
850 break;
851 }
852 }
853#endif
854 return &default_pci_ops_bus;
855}
856
857/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700858 * Check if a device id matches a PCI driver entry.
859 *
860 * The driver entry can either point at a zero terminated array of acceptable
861 * device IDs, or include a single device ID.
862 *
Martin Roth98b698c2015-01-06 21:02:52 -0700863 * @param driver pointer to the PCI driver entry being checked
864 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700865 */
866static int device_id_match(struct pci_driver *driver, unsigned short device_id)
867{
868 if (driver->devices) {
869 unsigned short check_id;
870 const unsigned short *device_list = driver->devices;
871 while ((check_id = *device_list++) != 0)
872 if (check_id == device_id)
873 return 1;
874 }
875
876 return (driver->device == device_id);
877}
878
879/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000880 * Set up PCI device operation.
881 *
882 * Check if it already has a driver. If not, use find_device_operations(),
883 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000884 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000885 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000886 * @see pci_drivers
887 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000888static void set_pci_ops(struct device *dev)
889{
890 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000891
Uwe Hermanne4870472010-11-04 23:23:47 +0000892 if (dev->ops)
893 return;
894
895 /*
896 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000897 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000898 */
Aaron Durbin03758152015-09-03 17:23:08 -0500899 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000900 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700901 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000902 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000903 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000904 dev_path(dev), driver->vendor, driver->device,
905 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000906 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000907 }
908 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000909
Uwe Hermanne4870472010-11-04 23:23:47 +0000910 /* If I don't have a specific driver use the default operations. */
911 switch (dev->hdr_type & 0x7f) { /* Header type */
912 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000913 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
914 goto bad;
915 dev->ops = &default_pci_ops_dev;
916 break;
917 case PCI_HEADER_TYPE_BRIDGE:
918 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
919 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000920 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000921 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800922#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000923 case PCI_HEADER_TYPE_CARDBUS:
924 dev->ops = &default_cardbus_ops_bus;
925 break;
926#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000927default:
928bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000929 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000930 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
931 "header type %02x, ignoring.\n", dev_path(dev),
932 dev->vendor, dev->device,
933 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000934 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000935 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000936}
937
938/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000939 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000940 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200941 * Given a PCI bus structure and a devfn number, find the device structure
942 * corresponding to the devfn, if present. Then move the device structure
943 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000944 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200945 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000946 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000947 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000948 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000949 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200950static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000951{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200952 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000953
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200954 prev = &bus->children;
955 for (dev = bus->children; dev; dev = dev->sibling) {
956 if (dev->path.type == DEVICE_PATH_PCI) {
957 if (dev->path.pci.devfn == devfn) {
958 /* Unlink from the list. */
959 *prev = dev->sibling;
960 dev->sibling = NULL;
961 break;
962 }
963 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000964 printk(BIOS_ERR, "child %s not a PCI device\n",
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200965 dev_path(dev));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000966 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200967 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000968 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000969
Uwe Hermanne4870472010-11-04 23:23:47 +0000970 /*
971 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000972 * bus. When the list of devices was formed we removed all of the
973 * parents children, and now we are interleaving static and dynamic
974 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000975 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000976 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000977 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000978
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200979 /* Find the last child on the bus. */
980 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000981 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000982
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200983 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000984 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000985 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000986 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200987 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000988 }
989
Eric Biederman8ca8d762003-04-22 19:02:15 +0000990 return dev;
991}
992
Myles Watson032a9652009-05-11 22:24:53 +0000993/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000994 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000995 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000996 * Determine the existence of a given PCI device. Allocate a new struct device
997 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000998 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000999 * @param dev Pointer to the dev structure.
1000 * @param bus Pointer to the bus structure.
1001 * @param devfn A device/function number to look at.
1002 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001003 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001004struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1005 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001006{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001007 u32 id, class;
1008 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001009
Myles Watson29cc9ed2009-07-02 18:56:24 +00001010 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001011 if (!dev) {
1012 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001013
Myles Watson29cc9ed2009-07-02 18:56:24 +00001014 dummy.bus = bus;
1015 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001016 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001017
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001018 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001019 /*
1020 * Have we found something? Some broken boards return 0 if a
1021 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001022 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001023 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001024 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001025
Stefan Reinauer7355c752010-04-02 16:30:25 +00001026 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1027 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001028 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1029 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001030 return NULL;
1031 }
1032 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001034 /*
1035 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001036 * specific operations this operations we will disable the
1037 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001038 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001039 * This is geared toward devices that have subfunctions
1040 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001041 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001042 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001043 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001044 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001045 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001046 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001047 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001048
Myles Watson29cc9ed2009-07-02 18:56:24 +00001049 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001050 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001051
Uwe Hermanne4870472010-11-04 23:23:47 +00001052 /*
1053 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001054 * this is because we have already disabled the device. But
1055 * this also handles optional devices that may not always
1056 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001057 */
1058 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001059 if ((id == 0xffffffff) || (id == 0x00000000) ||
1060 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001061 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001062 printk(BIOS_INFO, "PCI: Static device %s not "
1063 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001064 dev->enabled = 0;
1065 }
1066 return dev;
1067 }
1068 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001069
Myles Watson29cc9ed2009-07-02 18:56:24 +00001070 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001071 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1072 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001073
Myles Watson29cc9ed2009-07-02 18:56:24 +00001074 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001075 dev->vendor = id & 0xffff;
1076 dev->device = (id >> 16) & 0xffff;
1077 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001078
1079 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001080 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001081
Myles Watson29cc9ed2009-07-02 18:56:24 +00001082 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001083 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001084 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001085
1086 /*
1087 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001088 * class and figure out which set of configuration methods to use.
1089 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001090 */
1091 set_pci_ops(dev);
1092
Myles Watson29cc9ed2009-07-02 18:56:24 +00001093 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001094 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001095 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001096
Myles Watson29cc9ed2009-07-02 18:56:24 +00001097 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001098 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1099 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1100 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001101
1102 return dev;
1103}
1104
Myles Watson032a9652009-05-11 22:24:53 +00001105/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001106 * Test for match between romstage and ramstage device instance.
1107 *
1108 * @param dev Pointer to the device structure.
1109 * @param sdev Simple device model identifier, created with PCI_DEV().
1110 * @return Non-zero if bus:dev.fn of device matches.
1111 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001112unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001113{
1114 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1115 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1116}
1117
1118/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001119 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001120 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001121 * Determine the existence of devices and bridges on a PCI bus. If there are
1122 * bridges on the bus, recursively scan the buses behind the bridges.
1123 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001124 * @param bus Pointer to the bus structure.
1125 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1126 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001127 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001128void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1129 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001130{
1131 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001132 struct device *dev, **prev;
1133 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001134
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001135 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001136
Uwe Hermanne4870472010-11-04 23:23:47 +00001137 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001138 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001139 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1140 "devfn %x\n", min_devfn, max_devfn);
1141 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1142 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001143 max_devfn=0xff;
1144 }
1145
Eric Biederman8ca8d762003-04-22 19:02:15 +00001146 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001147
1148 /*
1149 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001150 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001151 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001152 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001153 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001154 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001155
Myles Watson29cc9ed2009-07-02 18:56:24 +00001156 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001157 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001158
Uwe Hermanne4870472010-11-04 23:23:47 +00001159 /*
1160 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001161 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001162 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001163 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001164 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001165 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001166 devfn += 0x07;
1167 }
1168 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001169
Eric Biederman8ca8d762003-04-22 19:02:15 +00001170 post_code(0x25);
1171
Uwe Hermanne4870472010-11-04 23:23:47 +00001172 /*
1173 * Warn if any leftover static devices are are found.
1174 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001175 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001176
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001177 prev = &bus->children;
1178 for (dev = bus->children; dev; dev = dev->sibling) {
1179 /* If we read valid vendor id, it is not leftover device. */
1180 if (dev->vendor != 0) {
1181 prev = &dev->sibling;
1182 continue;
1183 }
1184
1185 /* Unlink it from list. */
1186 *prev = dev->sibling;
1187
1188 if (!once++)
1189 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1190 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001191 }
1192
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001193 if (once)
1194 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1195
Uwe Hermanne4870472010-11-04 23:23:47 +00001196 /*
1197 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001198 * scan the bus behind that child.
1199 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001200
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001201 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001202
Uwe Hermanne4870472010-11-04 23:23:47 +00001203 /*
1204 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001205 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001206 * Return how far we've got finding sub-buses.
1207 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001208 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001209}
1210
Kyösti Mälkki33452402015-02-23 06:58:26 +02001211typedef enum {
1212 PCI_ROUTE_CLOSE,
1213 PCI_ROUTE_SCAN,
1214 PCI_ROUTE_FINAL,
1215} scan_state;
1216
1217static void pci_bridge_route(struct bus *link, scan_state state)
1218{
1219 struct device *dev = link->dev;
1220 struct bus *parent = dev->bus;
1221 u32 reg, buses = 0;
1222
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001223 if (state == PCI_ROUTE_SCAN) {
1224 link->secondary = parent->subordinate + 1;
1225 link->subordinate = link->secondary;
1226 }
1227
Kyösti Mälkki33452402015-02-23 06:58:26 +02001228 if (state == PCI_ROUTE_CLOSE) {
1229 buses |= 0xfeff << 8;
1230 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001231 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001232 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001233 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001234 } else if (state == PCI_ROUTE_FINAL) {
1235 buses |= parent->secondary & 0xff;
1236 buses |= ((u32) link->secondary & 0xff) << 8;
1237 buses |= ((u32) link->subordinate & 0xff) << 16;
1238 }
1239
1240 if (state == PCI_ROUTE_SCAN) {
1241 /* Clear all status bits and turn off memory, I/O and master enables. */
1242 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1243 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1244 pci_write_config16(dev, PCI_STATUS, 0xffff);
1245 }
1246
1247 /*
1248 * Configure the bus numbers for this bridge: the configuration
1249 * transactions will not be propagated by the bridge if it is not
1250 * correctly configured.
1251 */
1252
1253 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1254 reg &= 0xff000000;
1255 reg |= buses;
1256 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1257
1258 if (state == PCI_ROUTE_FINAL) {
1259 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001260 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001261 }
1262}
1263
Li-Ta Loe5266692004-03-23 21:28:05 +00001264/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001265 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001266 *
1267 * Determine the existence of buses behind the bridge. Set up the bridge
1268 * according to the result of the scan.
1269 *
1270 * This function is the default scan_bus() method for PCI bridge devices.
1271 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001272 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001273 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001274 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001275void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001276 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001277 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001278 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001279{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001280 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001281
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001282 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001283
Myles Watson894a3472010-06-09 22:41:35 +00001284 if (dev->link_list == NULL) {
1285 struct bus *link;
1286 link = malloc(sizeof(*link));
1287 if (link == NULL)
1288 die("Couldn't allocate a link!\n");
1289 memset(link, 0, sizeof(*link));
1290 link->dev = dev;
1291 dev->link_list = link;
1292 }
1293
1294 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001295
Kyösti Mälkki33452402015-02-23 06:58:26 +02001296 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001297
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001298 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001299
1300 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001301}
Li-Ta Loe5266692004-03-23 21:28:05 +00001302
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001303/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001304 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001305 *
1306 * Determine the existence of buses behind the bridge. Set up the bridge
1307 * according to the result of the scan.
1308 *
1309 * This function is the default scan_bus() method for PCI bridge devices.
1310 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001311 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001312 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001313void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001314{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001315 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001316}
1317
Myles Watson29cc9ed2009-07-02 18:56:24 +00001318/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001319 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001320 *
1321 * This function is the default scan_bus() method for PCI domains.
1322 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001323 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001324 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001325void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001326{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001327 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001328 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001329}
1330
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001331/**
1332 * Take an INT_PIN number (0, 1 - 4) and convert
1333 * it to a string ("NO PIN", "PIN A" - "PIN D")
1334 *
1335 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1336 * @return A string corresponding to the pin number or "Invalid"
1337 */
1338const char *pin_to_str(int pin)
1339{
1340 const char *str[5] = {
1341 "NO PIN",
1342 "PIN A",
1343 "PIN B",
1344 "PIN C",
1345 "PIN D",
1346 };
1347
1348 if (pin >= 0 && pin <= 4)
1349 return str[pin];
1350 else
1351 return "Invalid PIN, not 0 - 4";
1352}
1353
1354/**
1355 * Get the PCI INT_PIN swizzle for a device defined as:
1356 * pin_parent = (pin_child + devn_child) % 4 + 1
1357 * where PIN A = 1 ... PIN_D = 4
1358 *
1359 * Given a PCI device structure 'dev', find the interrupt pin
1360 * that will be triggered on its parent bridge device when
1361 * generating an interrupt. For example: Device 1:3.2 may
1362 * use INT_PIN A but will trigger PIN D on its parent bridge
1363 * device. In this case, this function will return 4 (PIN D).
1364 *
1365 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001366 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001367 * device 'dev' is attached to
1368 * @return The interrupt pin number (1 - 4) that 'dev' will
1369 * trigger when generating an interrupt
1370 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001371static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001372{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001373 struct device *parent; /* Our current device's parent device */
1374 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001375 uint8_t parent_bus = 0; /* Parent Bus number */
1376 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1377 uint16_t child_devfn = 0; /* Child Device and Function number */
1378 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1379
1380 /* Start with PIN A = 0 ... D = 3 */
1381 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1382
1383 /* While our current device has parent devices */
1384 child = dev;
1385 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1386 parent_bus = parent->bus->secondary;
1387 parent_devfn = parent->path.pci.devfn;
1388 child_devfn = child->path.pci.devfn;
1389
1390 /* Swizzle the INT_PIN for any bridges not on root bus */
1391 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1392 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1393 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1394 pin_to_str(swizzled_pin + 1), parent_bus,
1395 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1396
1397 /* Continue until we find the root bus */
1398 if (parent_bus > 0) {
1399 /*
1400 * We will go on to the next parent so this parent
1401 * becomes the child
1402 */
1403 child = parent;
1404 continue;
1405 } else {
1406 /*
1407 * Found the root bridge device,
1408 * fill in the structure and exit
1409 */
1410 *parent_bridge = parent;
1411 break;
1412 }
1413 }
1414
1415 /* End with PIN A = 1 ... D = 4 */
1416 return swizzled_pin + 1;
1417}
1418
1419/**
1420 * Given a device structure 'dev', find its interrupt pin
1421 * and its parent bridge 'parent_bdg' device structure.
1422 * If it is behind a bridge, it will return the interrupt
1423 * pin number (1 - 4) of the parent bridge that the device
1424 * interrupt pin has been swizzled to, otherwise it will
1425 * return the interrupt pin that is programmed into the
1426 * PCI config space of the target device. If 'dev' is
1427 * behind a bridge, it will fill in 'parent_bdg' with the
1428 * device structure of the bridge it is behind, otherwise
1429 * it will copy 'dev' into 'parent_bdg'.
1430 *
1431 * @param dev A PCI device structure to get interrupt pins for.
1432 * @param *parent_bdg The PCI device structure for the bridge
1433 * device 'dev' is attached to.
1434 * @return The interrupt pin number (1 - 4) that 'dev' will
1435 * trigger when generating an interrupt.
1436 * Errors: -1 is returned if the device is not enabled
1437 * -2 is returned if a parent bridge could not be found.
1438 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001439int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001440{
1441 uint8_t bus = 0; /* The bus this device is on */
1442 uint16_t devfn = 0; /* This device's device and function numbers */
1443 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1444 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1445
1446 /* Make sure this device is enabled */
1447 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1448 return -1;
1449
1450 bus = dev->bus->secondary;
1451 devfn = dev->path.pci.devfn;
1452
1453 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1454 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1455 if (int_pin < 1 || int_pin > 4)
1456 return -1;
1457
1458 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1459 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1460
1461 /* If this device is on a bridge, swizzle its INT_PIN */
1462 if (bus) {
1463 /* Swizzle its INT_PINs */
1464 target_pin = swizzle_irq_pins(dev, parent_bdg);
1465
1466 /* Make sure the swizzle returned valid structures */
1467 if (parent_bdg == NULL) {
1468 printk(BIOS_WARNING,
1469 "Warning: Could not find parent bridge for this device!\n");
1470 return -2;
1471 }
1472 } else { /* Device is not behind a bridge */
1473 target_pin = int_pin; /* Return its own interrupt pin */
1474 *parent_bdg = dev; /* Return its own structure */
1475 }
1476
1477 /* Target pin is the interrupt pin we want to assign an IRQ to */
1478 return target_pin;
1479}
1480
Julius Wernercd49cce2019-03-05 16:53:33 -08001481#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001482/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001483 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001484 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001485 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001486 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001487 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001488 *
1489 * This function should be called for each PCI slot in your system.
1490 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001491 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001492 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1493 * of this slot. The particular IRQ #s that are passed in depend on the
1494 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001495 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001496void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001497{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001498 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001499
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001500 /* Each device may contain up to eight functions. */
1501 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001502
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001503 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001504
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001505 if (dev->path.pci.devfn >> 3 != slot)
1506 break;
1507
1508 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001509
Uwe Hermanne4870472010-11-04 23:23:47 +00001510 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001511 if ((line < 1) || (line > 4))
1512 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001513
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001514 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001515
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001516 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001517
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001518 pci_write_config8(dev, PCI_INTERRUPT_LINE, pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001519
1520#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001521 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001522 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001523#endif
1524
Julius Wernercd49cce2019-03-05 16:53:33 -08001525#if CONFIG(PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001526 /* Change to level triggered. */
1527 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1528 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001529#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001530 }
1531}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001532#endif