blob: 5db24f1c51d57e6ef34e390215164e5a85260f2e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
3 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Andreas Heppel <aheppel@sysgo.de>
5 *
wdenkf07771c2003-05-28 08:06:31 +00006 * (C) Copyright 2002, 2003
wdenkc6097192002-11-03 00:24:07 +00007 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkc6097192002-11-03 00:24:07 +00008 */
9
10/*
Simon Glass2b81e8a2015-11-29 13:17:46 -070011 * Old PCI routines
12 *
13 * Do not change this file. Instead, convert your board to use CONFIG_DM_PCI
14 * and change pci-uclass.c.
wdenkc6097192002-11-03 00:24:07 +000015 */
16
17#include <common.h>
18
wdenkc6097192002-11-03 00:24:07 +000019#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -060020#include <env.h>
Simon Glass250e0392015-01-27 22:13:27 -070021#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000022#include <asm/processor.h>
23#include <asm/io.h>
24#include <pci.h>
25
Bin Meng8f9052f2014-12-30 22:53:21 +080026DECLARE_GLOBAL_DATA_PTR;
27
wdenkf07771c2003-05-28 08:06:31 +000028#define PCI_HOSE_OP(rw, size, type) \
Wolfgang Denk53677ef2008-05-20 16:00:29 +020029int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
30 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000031 int offset, type value) \
32{ \
33 return hose->rw##_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000034}
35
36PCI_HOSE_OP(read, byte, u8 *)
37PCI_HOSE_OP(read, word, u16 *)
38PCI_HOSE_OP(read, dword, u32 *)
39PCI_HOSE_OP(write, byte, u8)
40PCI_HOSE_OP(write, word, u16)
41PCI_HOSE_OP(write, dword, u32)
42
wdenkf07771c2003-05-28 08:06:31 +000043#define PCI_OP(rw, size, type, error_code) \
44int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
45{ \
46 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
47 \
48 if (!hose) \
49 { \
50 error_code; \
51 return -1; \
52 } \
53 \
54 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000055}
56
57PCI_OP(read, byte, u8 *, *value = 0xff)
58PCI_OP(read, word, u16 *, *value = 0xffff)
59PCI_OP(read, dword, u32 *, *value = 0xffffffff)
60PCI_OP(write, byte, u8, )
61PCI_OP(write, word, u16, )
62PCI_OP(write, dword, u32, )
63
wdenkf07771c2003-05-28 08:06:31 +000064#define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
65int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020066 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000067 int offset, type val) \
68{ \
69 u32 val32; \
70 \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090071 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
72 *val = -1; \
wdenkf07771c2003-05-28 08:06:31 +000073 return -1; \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090074 } \
wdenkf07771c2003-05-28 08:06:31 +000075 \
76 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
77 \
78 return 0; \
wdenkc6097192002-11-03 00:24:07 +000079}
80
wdenkf07771c2003-05-28 08:06:31 +000081#define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
82int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020083 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000084 int offset, type val) \
85{ \
wdenk498b8db2004-04-18 22:26:17 +000086 u32 val32, mask, ldata, shift; \
wdenkf07771c2003-05-28 08:06:31 +000087 \
88 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
89 return -1; \
90 \
wdenk498b8db2004-04-18 22:26:17 +000091 shift = ((offset & (int)off_mask) * 8); \
92 ldata = (((unsigned long)val) & val_mask) << shift; \
93 mask = val_mask << shift; \
wdenkf07771c2003-05-28 08:06:31 +000094 val32 = (val32 & ~mask) | ldata; \
95 \
96 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
97 return -1; \
98 \
99 return 0; \
wdenkc6097192002-11-03 00:24:07 +0000100}
101
102PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
103PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
104PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
105PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
106
107/*
108 *
109 */
110
John Schmoller96d61602010-10-22 00:20:23 -0500111static struct pci_controller* hose_head;
wdenkc6097192002-11-03 00:24:07 +0000112
Bin Meng8f9052f2014-12-30 22:53:21 +0800113struct pci_controller *pci_get_hose_head(void)
114{
115 if (gd->hose)
116 return gd->hose;
117
118 return hose_head;
119}
120
wdenkc6097192002-11-03 00:24:07 +0000121void pci_register_hose(struct pci_controller* hose)
122{
123 struct pci_controller **phose = &hose_head;
124
125 while(*phose)
126 phose = &(*phose)->next;
127
128 hose->next = NULL;
129
130 *phose = hose;
131}
132
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000133struct pci_controller *pci_bus_to_hose(int bus)
wdenkc6097192002-11-03 00:24:07 +0000134{
135 struct pci_controller *hose;
136
Bin Meng8f9052f2014-12-30 22:53:21 +0800137 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
wdenkf07771c2003-05-28 08:06:31 +0000138 if (bus >= hose->first_busno && bus <= hose->last_busno)
wdenkc6097192002-11-03 00:24:07 +0000139 return hose;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000140 }
wdenkc6097192002-11-03 00:24:07 +0000141
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200142 printf("pci_bus_to_hose() failed\n");
wdenkc6097192002-11-03 00:24:07 +0000143 return NULL;
144}
145
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600146struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
147{
148 struct pci_controller *hose;
149
Bin Meng8f9052f2014-12-30 22:53:21 +0800150 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600151 if (hose->cfg_addr == cfg_addr)
152 return hose;
153 }
154
155 return NULL;
156}
157
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300158int pci_last_busno(void)
159{
Bin Meng8f9052f2014-12-30 22:53:21 +0800160 struct pci_controller *hose = pci_get_hose_head();
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300161
162 if (!hose)
163 return -1;
164
165 while (hose->next)
166 hose = hose->next;
167
168 return hose->last_busno;
169}
170
wdenkc6097192002-11-03 00:24:07 +0000171pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
172{
173 struct pci_controller * hose;
wdenkc6097192002-11-03 00:24:07 +0000174 pci_dev_t bdf;
Simon Glassaab67242015-03-05 12:25:24 -0700175 int bus;
wdenkc6097192002-11-03 00:24:07 +0000176
Bin Meng8f9052f2014-12-30 22:53:21 +0800177 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Simon Glassaab67242015-03-05 12:25:24 -0700178 for (bus = hose->first_busno; bus <= hose->last_busno; bus++) {
Simon Glassaab67242015-03-05 12:25:24 -0700179 bdf = pci_hose_find_devices(hose, bus, ids, &index);
180 if (bdf != -1)
Simon Glass250e0392015-01-27 22:13:27 -0700181 return bdf;
Simon Glass250e0392015-01-27 22:13:27 -0700182 }
183 }
184
Simon Glassaab67242015-03-05 12:25:24 -0700185 return -1;
wdenkc6097192002-11-03 00:24:07 +0000186}
187
Simon Glass11503be2019-02-16 20:24:40 -0700188static int pci_hose_config_device(struct pci_controller *hose, pci_dev_t dev,
189 ulong io, pci_addr_t mem, ulong command)
wdenkc6097192002-11-03 00:24:07 +0000190{
Kumar Galacf5787f2012-09-19 04:47:36 +0000191 u32 bar_response;
Andrew Sharpaf778c62012-08-01 12:27:16 +0000192 unsigned int old_command;
Kumar Gala30e76d52008-10-21 08:36:08 -0500193 pci_addr_t bar_value;
194 pci_size_t bar_size;
wdenkc6097192002-11-03 00:24:07 +0000195 unsigned char pin;
196 int bar, found_mem64;
197
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000198 debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io,
199 (u64)mem, command);
wdenkc6097192002-11-03 00:24:07 +0000200
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000201 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
wdenkc6097192002-11-03 00:24:07 +0000202
Wolfgang Denk252b4042010-03-09 14:27:25 +0100203 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000204 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
205 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
wdenkc6097192002-11-03 00:24:07 +0000206
207 if (!bar_response)
208 continue;
209
210 found_mem64 = 0;
211
212 /* Check the BAR type and set our address mask */
wdenkf07771c2003-05-28 08:06:31 +0000213 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
wdenkc6097192002-11-03 00:24:07 +0000214 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000215 /* round up region base address to a multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000216 io = ((io - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000217 bar_value = io;
218 /* compute new region base address */
219 io = io + bar_size;
220 } else {
221 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -0500222 PCI_BASE_ADDRESS_MEM_TYPE_64) {
223 u32 bar_response_upper;
224 u64 bar64;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000225 pci_hose_write_config_dword(hose, dev, bar + 4,
226 0xffffffff);
227 pci_hose_read_config_dword(hose, dev, bar + 4,
228 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000229
Kumar Gala30e76d52008-10-21 08:36:08 -0500230 bar64 = ((u64)bar_response_upper << 32) | bar_response;
231
232 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
233 found_mem64 = 1;
234 } else {
235 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
236 }
wdenkc6097192002-11-03 00:24:07 +0000237
wdenkf07771c2003-05-28 08:06:31 +0000238 /* round up region base address to multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000239 mem = ((mem - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000240 bar_value = mem;
241 /* compute new region base address */
242 mem = mem + bar_size;
wdenkc6097192002-11-03 00:24:07 +0000243 }
244
245 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500246 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000247
wdenkf07771c2003-05-28 08:06:31 +0000248 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000249 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500250#ifdef CONFIG_SYS_PCI_64BIT
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000251 pci_hose_write_config_dword(hose, dev, bar,
252 (u32)(bar_value >> 32));
Kumar Gala30e76d52008-10-21 08:36:08 -0500253#else
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000254 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500255#endif
wdenkc6097192002-11-03 00:24:07 +0000256 }
257 }
258
259 /* Configure Cache Line Size Register */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000260 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
wdenkc6097192002-11-03 00:24:07 +0000261
262 /* Configure Latency Timer */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000263 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
wdenkc6097192002-11-03 00:24:07 +0000264
265 /* Disable interrupt line, if device says it wants to use interrupts */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000266 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
wdenkf07771c2003-05-28 08:06:31 +0000267 if (pin != 0) {
Simon Glass5f48d792015-07-27 15:47:17 -0600268 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
269 PCI_INTERRUPT_LINE_DISABLE);
wdenkc6097192002-11-03 00:24:07 +0000270 }
271
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000272 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
273 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
wdenkf07771c2003-05-28 08:06:31 +0000274 (old_command & 0xffff0000) | command);
wdenkc6097192002-11-03 00:24:07 +0000275
276 return 0;
277}
278
279/*
280 *
281 */
282
283struct pci_config_table *pci_find_config(struct pci_controller *hose,
284 unsigned short class,
285 unsigned int vendor,
286 unsigned int device,
287 unsigned int bus,
288 unsigned int dev,
289 unsigned int func)
290{
291 struct pci_config_table *table;
292
wdenkf07771c2003-05-28 08:06:31 +0000293 for (table = hose->config_table; table && table->vendor; table++) {
wdenkc6097192002-11-03 00:24:07 +0000294 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
295 (table->device == PCI_ANY_ID || table->device == device) &&
296 (table->class == PCI_ANY_ID || table->class == class) &&
297 (table->bus == PCI_ANY_ID || table->bus == bus) &&
298 (table->dev == PCI_ANY_ID || table->dev == dev) &&
wdenkf07771c2003-05-28 08:06:31 +0000299 (table->func == PCI_ANY_ID || table->func == func)) {
wdenkc6097192002-11-03 00:24:07 +0000300 return table;
301 }
302 }
303
304 return NULL;
305}
306
307void pci_cfgfunc_config_device(struct pci_controller *hose,
308 pci_dev_t dev,
309 struct pci_config_table *entry)
310{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000311 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1],
312 entry->priv[2]);
wdenkc6097192002-11-03 00:24:07 +0000313}
314
315void pci_cfgfunc_do_nothing(struct pci_controller *hose,
316 pci_dev_t dev, struct pci_config_table *entry)
317{
318}
319
320/*
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000321 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000322 * to get the correct result when scanning bridges
323 */
324extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000325
Stefan Roesedc1da422008-07-08 12:01:47 +0200326#ifdef CONFIG_PCI_SCAN_SHOW
Jeroen Hofstee7b19fd62014-10-08 22:57:27 +0200327__weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
Stefan Roesedc1da422008-07-08 12:01:47 +0200328{
329 if (dev == PCI_BDF(hose->first_busno, 0, 0))
330 return 0;
331
332 return 1;
333}
Stefan Roesedc1da422008-07-08 12:01:47 +0200334#endif /* CONFIG_PCI_SCAN_SHOW */
335
wdenkc6097192002-11-03 00:24:07 +0000336int pci_hose_scan_bus(struct pci_controller *hose, int bus)
337{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000338 unsigned int sub_bus, found_multi = 0;
wdenkc6097192002-11-03 00:24:07 +0000339 unsigned short vendor, device, class;
340 unsigned char header_type;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000341#ifndef CONFIG_PCI_PNP
wdenkc6097192002-11-03 00:24:07 +0000342 struct pci_config_table *cfg;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000343#endif
wdenkc6097192002-11-03 00:24:07 +0000344 pci_dev_t dev;
Peter Tyser009884a2010-10-29 17:59:29 -0500345#ifdef CONFIG_PCI_SCAN_SHOW
346 static int indent = 0;
347#endif
wdenkc6097192002-11-03 00:24:07 +0000348
349 sub_bus = bus;
350
351 for (dev = PCI_BDF(bus,0,0);
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000352 dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
353 PCI_MAX_PCI_FUNCTIONS - 1);
354 dev += PCI_BDF(0, 0, 1)) {
Stefan Roesedc1da422008-07-08 12:01:47 +0200355
356 if (pci_skip_dev(hose, dev))
357 continue;
wdenkc6097192002-11-03 00:24:07 +0000358
359 if (PCI_FUNC(dev) && !found_multi)
360 continue;
361
362 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
363
364 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
365
Peter Tyser983eb9d2010-10-29 17:59:27 -0500366 if (vendor == 0xffff || vendor == 0x0000)
367 continue;
wdenkc6097192002-11-03 00:24:07 +0000368
Peter Tyser983eb9d2010-10-29 17:59:27 -0500369 if (!PCI_FUNC(dev))
370 found_multi = header_type & 0x80;
wdenkc6097192002-11-03 00:24:07 +0000371
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000372 debug("PCI Scan: Found Bus %d, Device %d, Function %d\n",
373 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
wdenkc6097192002-11-03 00:24:07 +0000374
Peter Tyser983eb9d2010-10-29 17:59:27 -0500375 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
376 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
wdenkc6097192002-11-03 00:24:07 +0000377
Tim Harvey09918662014-08-07 22:49:56 -0700378#ifdef CONFIG_PCI_FIXUP_DEV
379 board_pci_fixup_dev(hose, dev, vendor, device, class);
380#endif
381
Peter Tysera38d2162010-10-29 17:59:28 -0500382#ifdef CONFIG_PCI_SCAN_SHOW
Peter Tyser009884a2010-10-29 17:59:29 -0500383 indent++;
384
385 /* Print leading space, including bus indentation */
386 printf("%*c", indent + 1, ' ');
387
Peter Tysera38d2162010-10-29 17:59:28 -0500388 if (pci_print_dev(hose, dev)) {
Peter Tyser009884a2010-10-29 17:59:29 -0500389 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
390 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
Peter Tysera38d2162010-10-29 17:59:28 -0500391 vendor, device, pci_class_str(class >> 8));
392 }
393#endif
394
Andrew Sharp03992ac2012-08-29 14:16:30 +0000395#ifdef CONFIG_PCI_PNP
Masahiro Yamadab4141192014-11-07 03:03:31 +0900396 sub_bus = max((unsigned int)pciauto_config_device(hose, dev),
397 sub_bus);
Andrew Sharp03992ac2012-08-29 14:16:30 +0000398#else
Peter Tyser983eb9d2010-10-29 17:59:27 -0500399 cfg = pci_find_config(hose, class, vendor, device,
400 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
401 if (cfg) {
402 cfg->config_device(hose, dev, cfg);
Masahiro Yamadab4141192014-11-07 03:03:31 +0900403 sub_bus = max(sub_bus,
404 (unsigned int)hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000405 }
Andrew Sharp03992ac2012-08-29 14:16:30 +0000406#endif
Peter Tysera38d2162010-10-29 17:59:28 -0500407
Peter Tyser009884a2010-10-29 17:59:29 -0500408#ifdef CONFIG_PCI_SCAN_SHOW
409 indent--;
410#endif
411
Peter Tyser983eb9d2010-10-29 17:59:27 -0500412 if (hose->fixup_irq)
413 hose->fixup_irq(hose, dev);
wdenkc6097192002-11-03 00:24:07 +0000414 }
415
416 return sub_bus;
417}
418
419int pci_hose_scan(struct pci_controller *hose)
420{
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000421#if defined(CONFIG_PCI_BOOTDELAY)
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000422 char *s;
423 int i;
424
Bin Meng8f9052f2014-12-30 22:53:21 +0800425 if (!gd->pcidelay_done) {
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000426 /* wait "pcidelay" ms (if defined)... */
Simon Glass00caae62017-08-03 12:22:12 -0600427 s = env_get("pcidelay");
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000428 if (s) {
429 int val = simple_strtoul(s, NULL, 10);
430 for (i = 0; i < val; i++)
431 udelay(1000);
432 }
Bin Meng8f9052f2014-12-30 22:53:21 +0800433 gd->pcidelay_done = 1;
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000434 }
435#endif /* CONFIG_PCI_BOOTDELAY */
436
Tim Harvey0373a7e2015-05-08 15:16:07 -0700437#ifdef CONFIG_PCI_SCAN_SHOW
438 puts("PCI:\n");
439#endif
440
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000441 /*
442 * Start scan at current_busno.
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500443 * PCIe will start scan at first_busno+1.
444 */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000445 /* For legacy support, ensure current >= first */
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500446 if (hose->first_busno > hose->current_busno)
447 hose->current_busno = hose->first_busno;
wdenkc6097192002-11-03 00:24:07 +0000448#ifdef CONFIG_PCI_PNP
449 pciauto_config_init(hose);
450#endif
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500451 return pci_hose_scan_bus(hose, hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000452}
453
stroesead10dd92003-02-14 11:21:23 +0000454void pci_init(void)
455{
John Schmoller96d61602010-10-22 00:20:23 -0500456 hose_head = NULL;
457
Tim Harveyec21aee2016-06-17 06:20:25 -0700458 /* allow env to disable pci init/enum */
Simon Glass00caae62017-08-03 12:22:12 -0600459 if (env_get("pcidisable") != NULL)
Tim Harveyec21aee2016-06-17 06:20:25 -0700460 return;
461
stroesead10dd92003-02-14 11:21:23 +0000462 /* now call board specific pci_init()... */
463 pci_init_board();
464}
Zhao Qiang287df012013-10-12 13:46:33 +0800465
466/* Returns the address of the requested capability structure within the
467 * device's PCI configuration space or 0 in case the device does not
468 * support it.
469 * */
470int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
471 int cap)
472{
473 int pos;
474 u8 hdr_type;
475
476 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type);
477
478 pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F);
479
480 if (pos)
481 pos = pci_find_cap(hose, dev, pos, cap);
482
483 return pos;
484}
485
486/* Find the header pointer to the Capabilities*/
487int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
488 u8 hdr_type)
489{
490 u16 status;
491
492 pci_hose_read_config_word(hose, dev, PCI_STATUS, &status);
493
494 if (!(status & PCI_STATUS_CAP_LIST))
495 return 0;
496
497 switch (hdr_type) {
498 case PCI_HEADER_TYPE_NORMAL:
499 case PCI_HEADER_TYPE_BRIDGE:
500 return PCI_CAPABILITY_LIST;
501 case PCI_HEADER_TYPE_CARDBUS:
502 return PCI_CB_CAPABILITY_LIST;
503 default:
504 return 0;
505 }
506}
507
508int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap)
509{
510 int ttl = PCI_FIND_CAP_TTL;
511 u8 id;
512 u8 next_pos;
513
514 while (ttl--) {
515 pci_hose_read_config_byte(hose, dev, pos, &next_pos);
516 if (next_pos < CAP_START_POS)
517 break;
518 next_pos &= ~3;
519 pos = (int) next_pos;
520 pci_hose_read_config_byte(hose, dev,
521 pos + PCI_CAP_LIST_ID, &id);
522 if (id == 0xff)
523 break;
524 if (id == cap)
525 return pos;
526 pos += PCI_CAP_LIST_NEXT;
527 }
528 return 0;
529}
Minghuan Lianed5b5802015-07-10 11:35:08 +0800530
531/**
532 * pci_find_next_ext_capability - Find an extended capability
533 *
534 * Returns the address of the next matching extended capability structure
535 * within the device's PCI configuration space or 0 if the device does
536 * not support it. Some capabilities can occur several times, e.g., the
537 * vendor-specific capability, and this provides a way to find them all.
538 */
539int pci_find_next_ext_capability(struct pci_controller *hose, pci_dev_t dev,
540 int start, int cap)
541{
542 u32 header;
543 int ttl, pos = PCI_CFG_SPACE_SIZE;
544
545 /* minimum 8 bytes per capability */
546 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
547
548 if (start)
549 pos = start;
550
551 pci_hose_read_config_dword(hose, dev, pos, &header);
552 if (header == 0xffffffff || header == 0)
553 return 0;
554
555 while (ttl-- > 0) {
556 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
557 return pos;
558
559 pos = PCI_EXT_CAP_NEXT(header);
560 if (pos < PCI_CFG_SPACE_SIZE)
561 break;
562
563 pci_hose_read_config_dword(hose, dev, pos, &header);
564 if (header == 0xffffffff || header == 0)
565 break;
566 }
567
568 return 0;
569}
570
571/**
572 * pci_hose_find_ext_capability - Find an extended capability
573 *
574 * Returns the address of the requested extended capability structure
575 * within the device's PCI configuration space or 0 if the device does
576 * not support it.
577 */
578int pci_hose_find_ext_capability(struct pci_controller *hose, pci_dev_t dev,
579 int cap)
580{
581 return pci_find_next_ext_capability(hose, dev, 0, cap);
582}