blob: 3babd948056da4a25d58a8d593b0cc36761fcfc1 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
3 * Andreas Heppel <aheppel@sysgo.de>
4 *
wdenkf07771c2003-05-28 08:06:31 +00005 * (C) Copyright 2002, 2003
wdenkc6097192002-11-03 00:24:07 +00006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00009 */
10
11/*
12 * PCI routines
13 */
14
15#include <common.h>
16
wdenkc6097192002-11-03 00:24:07 +000017#include <command.h>
Simon Glass250e0392015-01-27 22:13:27 -070018#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000019#include <asm/processor.h>
20#include <asm/io.h>
21#include <pci.h>
22
Bin Meng8f9052f2014-12-30 22:53:21 +080023DECLARE_GLOBAL_DATA_PTR;
24
wdenkf07771c2003-05-28 08:06:31 +000025#define PCI_HOSE_OP(rw, size, type) \
Wolfgang Denk53677ef2008-05-20 16:00:29 +020026int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
27 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000028 int offset, type value) \
29{ \
30 return hose->rw##_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000031}
32
33PCI_HOSE_OP(read, byte, u8 *)
34PCI_HOSE_OP(read, word, u16 *)
35PCI_HOSE_OP(read, dword, u32 *)
36PCI_HOSE_OP(write, byte, u8)
37PCI_HOSE_OP(write, word, u16)
38PCI_HOSE_OP(write, dword, u32)
39
wdenkf07771c2003-05-28 08:06:31 +000040#define PCI_OP(rw, size, type, error_code) \
41int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
42{ \
43 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
44 \
45 if (!hose) \
46 { \
47 error_code; \
48 return -1; \
49 } \
50 \
51 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000052}
53
54PCI_OP(read, byte, u8 *, *value = 0xff)
55PCI_OP(read, word, u16 *, *value = 0xffff)
56PCI_OP(read, dword, u32 *, *value = 0xffffffff)
57PCI_OP(write, byte, u8, )
58PCI_OP(write, word, u16, )
59PCI_OP(write, dword, u32, )
60
wdenkf07771c2003-05-28 08:06:31 +000061#define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
62int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020063 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000064 int offset, type val) \
65{ \
66 u32 val32; \
67 \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090068 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
69 *val = -1; \
wdenkf07771c2003-05-28 08:06:31 +000070 return -1; \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090071 } \
wdenkf07771c2003-05-28 08:06:31 +000072 \
73 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
74 \
75 return 0; \
wdenkc6097192002-11-03 00:24:07 +000076}
77
wdenkf07771c2003-05-28 08:06:31 +000078#define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
79int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020080 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000081 int offset, type val) \
82{ \
wdenk498b8db2004-04-18 22:26:17 +000083 u32 val32, mask, ldata, shift; \
wdenkf07771c2003-05-28 08:06:31 +000084 \
85 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
86 return -1; \
87 \
wdenk498b8db2004-04-18 22:26:17 +000088 shift = ((offset & (int)off_mask) * 8); \
89 ldata = (((unsigned long)val) & val_mask) << shift; \
90 mask = val_mask << shift; \
wdenkf07771c2003-05-28 08:06:31 +000091 val32 = (val32 & ~mask) | ldata; \
92 \
93 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
94 return -1; \
95 \
96 return 0; \
wdenkc6097192002-11-03 00:24:07 +000097}
98
99PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
100PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
101PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
102PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
103
104/*
105 *
106 */
107
John Schmoller96d61602010-10-22 00:20:23 -0500108static struct pci_controller* hose_head;
wdenkc6097192002-11-03 00:24:07 +0000109
Bin Meng8f9052f2014-12-30 22:53:21 +0800110struct pci_controller *pci_get_hose_head(void)
111{
112 if (gd->hose)
113 return gd->hose;
114
115 return hose_head;
116}
117
wdenkc6097192002-11-03 00:24:07 +0000118void pci_register_hose(struct pci_controller* hose)
119{
120 struct pci_controller **phose = &hose_head;
121
122 while(*phose)
123 phose = &(*phose)->next;
124
125 hose->next = NULL;
126
127 *phose = hose;
128}
129
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000130struct pci_controller *pci_bus_to_hose(int bus)
wdenkc6097192002-11-03 00:24:07 +0000131{
132 struct pci_controller *hose;
133
Bin Meng8f9052f2014-12-30 22:53:21 +0800134 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
wdenkf07771c2003-05-28 08:06:31 +0000135 if (bus >= hose->first_busno && bus <= hose->last_busno)
wdenkc6097192002-11-03 00:24:07 +0000136 return hose;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000137 }
wdenkc6097192002-11-03 00:24:07 +0000138
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200139 printf("pci_bus_to_hose() failed\n");
wdenkc6097192002-11-03 00:24:07 +0000140 return NULL;
141}
142
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600143struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
144{
145 struct pci_controller *hose;
146
Bin Meng8f9052f2014-12-30 22:53:21 +0800147 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600148 if (hose->cfg_addr == cfg_addr)
149 return hose;
150 }
151
152 return NULL;
153}
154
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300155int pci_last_busno(void)
156{
Bin Meng8f9052f2014-12-30 22:53:21 +0800157 struct pci_controller *hose = pci_get_hose_head();
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300158
159 if (!hose)
160 return -1;
161
162 while (hose->next)
163 hose = hose->next;
164
165 return hose->last_busno;
166}
167
wdenkc6097192002-11-03 00:24:07 +0000168pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
169{
170 struct pci_controller * hose;
wdenkc6097192002-11-03 00:24:07 +0000171 pci_dev_t bdf;
Simon Glassaab67242015-03-05 12:25:24 -0700172 int bus;
wdenkc6097192002-11-03 00:24:07 +0000173
Bin Meng8f9052f2014-12-30 22:53:21 +0800174 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200175#ifdef CONFIG_SYS_SCSI_SCAN_BUS_REVERSE
Simon Glassaab67242015-03-05 12:25:24 -0700176 for (bus = hose->last_busno; bus >= hose->first_busno; bus--) {
wdenkc6097192002-11-03 00:24:07 +0000177#else
Simon Glassaab67242015-03-05 12:25:24 -0700178 for (bus = hose->first_busno; bus <= hose->last_busno; bus++) {
wdenkc6097192002-11-03 00:24:07 +0000179#endif
Simon Glassaab67242015-03-05 12:25:24 -0700180 bdf = pci_hose_find_devices(hose, bus, ids, &index);
181 if (bdf != -1)
Simon Glass250e0392015-01-27 22:13:27 -0700182 return bdf;
Simon Glass250e0392015-01-27 22:13:27 -0700183 }
184 }
185
Simon Glassaab67242015-03-05 12:25:24 -0700186 return -1;
wdenkc6097192002-11-03 00:24:07 +0000187}
188
189/*
190 *
191 */
192
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000193int __pci_hose_phys_to_bus(struct pci_controller *hose,
Kumar Gala2d43e872009-02-06 09:49:32 -0600194 phys_addr_t phys_addr,
195 unsigned long flags,
196 unsigned long skip_mask,
197 pci_addr_t *ba)
wdenkc6097192002-11-03 00:24:07 +0000198{
199 struct pci_region *res;
Kumar Gala30e76d52008-10-21 08:36:08 -0500200 pci_addr_t bus_addr;
wdenkc6097192002-11-03 00:24:07 +0000201 int i;
202
wdenkf07771c2003-05-28 08:06:31 +0000203 for (i = 0; i < hose->region_count; i++) {
wdenkc6097192002-11-03 00:24:07 +0000204 res = &hose->regions[i];
205
206 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
207 continue;
208
Kumar Gala2d43e872009-02-06 09:49:32 -0600209 if (res->flags & skip_mask)
210 continue;
211
wdenkc6097192002-11-03 00:24:07 +0000212 bus_addr = phys_addr - res->phys_start + res->bus_start;
213
214 if (bus_addr >= res->bus_start &&
wdenkf07771c2003-05-28 08:06:31 +0000215 bus_addr < res->bus_start + res->size) {
Kumar Gala2d43e872009-02-06 09:49:32 -0600216 *ba = bus_addr;
217 return 0;
wdenkc6097192002-11-03 00:24:07 +0000218 }
219 }
220
Kumar Gala2d43e872009-02-06 09:49:32 -0600221 return 1;
wdenkc6097192002-11-03 00:24:07 +0000222}
223
Kumar Gala2d43e872009-02-06 09:49:32 -0600224pci_addr_t pci_hose_phys_to_bus (struct pci_controller *hose,
225 phys_addr_t phys_addr,
226 unsigned long flags)
227{
228 pci_addr_t bus_addr = 0;
229 int ret;
230
231 if (!hose) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000232 puts("pci_hose_phys_to_bus: invalid hose\n");
Kumar Gala2d43e872009-02-06 09:49:32 -0600233 return bus_addr;
234 }
235
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000236 /*
237 * if PCI_REGION_MEM is set we do a two pass search with preference
238 * on matches that don't have PCI_REGION_SYS_MEMORY set
239 */
Kumar Gala2d43e872009-02-06 09:49:32 -0600240 if ((flags & PCI_REGION_MEM) == PCI_REGION_MEM) {
241 ret = __pci_hose_phys_to_bus(hose, phys_addr,
242 flags, PCI_REGION_SYS_MEMORY, &bus_addr);
243 if (!ret)
244 return bus_addr;
245 }
246
247 ret = __pci_hose_phys_to_bus(hose, phys_addr, flags, 0, &bus_addr);
248
249 if (ret)
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000250 puts("pci_hose_phys_to_bus: invalid physical address\n");
Kumar Gala2d43e872009-02-06 09:49:32 -0600251
252 return bus_addr;
253}
254
wdenkc6097192002-11-03 00:24:07 +0000255int pci_hose_config_device(struct pci_controller *hose,
256 pci_dev_t dev,
257 unsigned long io,
Kumar Gala30e76d52008-10-21 08:36:08 -0500258 pci_addr_t mem,
wdenkc6097192002-11-03 00:24:07 +0000259 unsigned long command)
260{
Kumar Galacf5787f2012-09-19 04:47:36 +0000261 u32 bar_response;
Andrew Sharpaf778c62012-08-01 12:27:16 +0000262 unsigned int old_command;
Kumar Gala30e76d52008-10-21 08:36:08 -0500263 pci_addr_t bar_value;
264 pci_size_t bar_size;
wdenkc6097192002-11-03 00:24:07 +0000265 unsigned char pin;
266 int bar, found_mem64;
267
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000268 debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io,
269 (u64)mem, command);
wdenkc6097192002-11-03 00:24:07 +0000270
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000271 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
wdenkc6097192002-11-03 00:24:07 +0000272
Wolfgang Denk252b4042010-03-09 14:27:25 +0100273 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000274 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
275 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
wdenkc6097192002-11-03 00:24:07 +0000276
277 if (!bar_response)
278 continue;
279
280 found_mem64 = 0;
281
282 /* Check the BAR type and set our address mask */
wdenkf07771c2003-05-28 08:06:31 +0000283 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
wdenkc6097192002-11-03 00:24:07 +0000284 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000285 /* round up region base address to a multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000286 io = ((io - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000287 bar_value = io;
288 /* compute new region base address */
289 io = io + bar_size;
290 } else {
291 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -0500292 PCI_BASE_ADDRESS_MEM_TYPE_64) {
293 u32 bar_response_upper;
294 u64 bar64;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000295 pci_hose_write_config_dword(hose, dev, bar + 4,
296 0xffffffff);
297 pci_hose_read_config_dword(hose, dev, bar + 4,
298 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000299
Kumar Gala30e76d52008-10-21 08:36:08 -0500300 bar64 = ((u64)bar_response_upper << 32) | bar_response;
301
302 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
303 found_mem64 = 1;
304 } else {
305 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
306 }
wdenkc6097192002-11-03 00:24:07 +0000307
wdenkf07771c2003-05-28 08:06:31 +0000308 /* round up region base address to multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000309 mem = ((mem - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000310 bar_value = mem;
311 /* compute new region base address */
312 mem = mem + bar_size;
wdenkc6097192002-11-03 00:24:07 +0000313 }
314
315 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500316 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000317
wdenkf07771c2003-05-28 08:06:31 +0000318 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000319 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500320#ifdef CONFIG_SYS_PCI_64BIT
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000321 pci_hose_write_config_dword(hose, dev, bar,
322 (u32)(bar_value >> 32));
Kumar Gala30e76d52008-10-21 08:36:08 -0500323#else
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000324 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500325#endif
wdenkc6097192002-11-03 00:24:07 +0000326 }
327 }
328
329 /* Configure Cache Line Size Register */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000330 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
wdenkc6097192002-11-03 00:24:07 +0000331
332 /* Configure Latency Timer */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000333 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
wdenkc6097192002-11-03 00:24:07 +0000334
335 /* Disable interrupt line, if device says it wants to use interrupts */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000336 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
wdenkf07771c2003-05-28 08:06:31 +0000337 if (pin != 0) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000338 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, 0xff);
wdenkc6097192002-11-03 00:24:07 +0000339 }
340
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000341 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
342 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
wdenkf07771c2003-05-28 08:06:31 +0000343 (old_command & 0xffff0000) | command);
wdenkc6097192002-11-03 00:24:07 +0000344
345 return 0;
346}
347
348/*
349 *
350 */
351
352struct pci_config_table *pci_find_config(struct pci_controller *hose,
353 unsigned short class,
354 unsigned int vendor,
355 unsigned int device,
356 unsigned int bus,
357 unsigned int dev,
358 unsigned int func)
359{
360 struct pci_config_table *table;
361
wdenkf07771c2003-05-28 08:06:31 +0000362 for (table = hose->config_table; table && table->vendor; table++) {
wdenkc6097192002-11-03 00:24:07 +0000363 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
364 (table->device == PCI_ANY_ID || table->device == device) &&
365 (table->class == PCI_ANY_ID || table->class == class) &&
366 (table->bus == PCI_ANY_ID || table->bus == bus) &&
367 (table->dev == PCI_ANY_ID || table->dev == dev) &&
wdenkf07771c2003-05-28 08:06:31 +0000368 (table->func == PCI_ANY_ID || table->func == func)) {
wdenkc6097192002-11-03 00:24:07 +0000369 return table;
370 }
371 }
372
373 return NULL;
374}
375
376void pci_cfgfunc_config_device(struct pci_controller *hose,
377 pci_dev_t dev,
378 struct pci_config_table *entry)
379{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000380 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1],
381 entry->priv[2]);
wdenkc6097192002-11-03 00:24:07 +0000382}
383
384void pci_cfgfunc_do_nothing(struct pci_controller *hose,
385 pci_dev_t dev, struct pci_config_table *entry)
386{
387}
388
389/*
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000390 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000391 * to get the correct result when scanning bridges
392 */
393extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000394
Stefan Roesedc1da422008-07-08 12:01:47 +0200395#ifdef CONFIG_PCI_SCAN_SHOW
Jeroen Hofstee7b19fd62014-10-08 22:57:27 +0200396__weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
Stefan Roesedc1da422008-07-08 12:01:47 +0200397{
398 if (dev == PCI_BDF(hose->first_busno, 0, 0))
399 return 0;
400
401 return 1;
402}
Stefan Roesedc1da422008-07-08 12:01:47 +0200403#endif /* CONFIG_PCI_SCAN_SHOW */
404
wdenkc6097192002-11-03 00:24:07 +0000405int pci_hose_scan_bus(struct pci_controller *hose, int bus)
406{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000407 unsigned int sub_bus, found_multi = 0;
wdenkc6097192002-11-03 00:24:07 +0000408 unsigned short vendor, device, class;
409 unsigned char header_type;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000410#ifndef CONFIG_PCI_PNP
wdenkc6097192002-11-03 00:24:07 +0000411 struct pci_config_table *cfg;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000412#endif
wdenkc6097192002-11-03 00:24:07 +0000413 pci_dev_t dev;
Peter Tyser009884a2010-10-29 17:59:29 -0500414#ifdef CONFIG_PCI_SCAN_SHOW
415 static int indent = 0;
416#endif
wdenkc6097192002-11-03 00:24:07 +0000417
418 sub_bus = bus;
419
420 for (dev = PCI_BDF(bus,0,0);
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000421 dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
422 PCI_MAX_PCI_FUNCTIONS - 1);
423 dev += PCI_BDF(0, 0, 1)) {
Stefan Roesedc1da422008-07-08 12:01:47 +0200424
425 if (pci_skip_dev(hose, dev))
426 continue;
wdenkc6097192002-11-03 00:24:07 +0000427
428 if (PCI_FUNC(dev) && !found_multi)
429 continue;
430
431 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
432
433 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
434
Peter Tyser983eb9d2010-10-29 17:59:27 -0500435 if (vendor == 0xffff || vendor == 0x0000)
436 continue;
wdenkc6097192002-11-03 00:24:07 +0000437
Peter Tyser983eb9d2010-10-29 17:59:27 -0500438 if (!PCI_FUNC(dev))
439 found_multi = header_type & 0x80;
wdenkc6097192002-11-03 00:24:07 +0000440
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000441 debug("PCI Scan: Found Bus %d, Device %d, Function %d\n",
442 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
wdenkc6097192002-11-03 00:24:07 +0000443
Peter Tyser983eb9d2010-10-29 17:59:27 -0500444 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
445 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
wdenkc6097192002-11-03 00:24:07 +0000446
Tim Harvey09918662014-08-07 22:49:56 -0700447#ifdef CONFIG_PCI_FIXUP_DEV
448 board_pci_fixup_dev(hose, dev, vendor, device, class);
449#endif
450
Peter Tysera38d2162010-10-29 17:59:28 -0500451#ifdef CONFIG_PCI_SCAN_SHOW
Peter Tyser009884a2010-10-29 17:59:29 -0500452 indent++;
453
454 /* Print leading space, including bus indentation */
455 printf("%*c", indent + 1, ' ');
456
Peter Tysera38d2162010-10-29 17:59:28 -0500457 if (pci_print_dev(hose, dev)) {
Peter Tyser009884a2010-10-29 17:59:29 -0500458 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
459 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
Peter Tysera38d2162010-10-29 17:59:28 -0500460 vendor, device, pci_class_str(class >> 8));
461 }
462#endif
463
Andrew Sharp03992ac2012-08-29 14:16:30 +0000464#ifdef CONFIG_PCI_PNP
Masahiro Yamadab4141192014-11-07 03:03:31 +0900465 sub_bus = max((unsigned int)pciauto_config_device(hose, dev),
466 sub_bus);
Andrew Sharp03992ac2012-08-29 14:16:30 +0000467#else
Peter Tyser983eb9d2010-10-29 17:59:27 -0500468 cfg = pci_find_config(hose, class, vendor, device,
469 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
470 if (cfg) {
471 cfg->config_device(hose, dev, cfg);
Masahiro Yamadab4141192014-11-07 03:03:31 +0900472 sub_bus = max(sub_bus,
473 (unsigned int)hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000474 }
Andrew Sharp03992ac2012-08-29 14:16:30 +0000475#endif
Peter Tysera38d2162010-10-29 17:59:28 -0500476
Peter Tyser009884a2010-10-29 17:59:29 -0500477#ifdef CONFIG_PCI_SCAN_SHOW
478 indent--;
479#endif
480
Peter Tyser983eb9d2010-10-29 17:59:27 -0500481 if (hose->fixup_irq)
482 hose->fixup_irq(hose, dev);
wdenkc6097192002-11-03 00:24:07 +0000483 }
484
485 return sub_bus;
486}
487
488int pci_hose_scan(struct pci_controller *hose)
489{
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000490#if defined(CONFIG_PCI_BOOTDELAY)
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000491 char *s;
492 int i;
493
Bin Meng8f9052f2014-12-30 22:53:21 +0800494 if (!gd->pcidelay_done) {
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000495 /* wait "pcidelay" ms (if defined)... */
496 s = getenv("pcidelay");
497 if (s) {
498 int val = simple_strtoul(s, NULL, 10);
499 for (i = 0; i < val; i++)
500 udelay(1000);
501 }
Bin Meng8f9052f2014-12-30 22:53:21 +0800502 gd->pcidelay_done = 1;
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000503 }
504#endif /* CONFIG_PCI_BOOTDELAY */
505
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000506 /*
507 * Start scan at current_busno.
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500508 * PCIe will start scan at first_busno+1.
509 */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000510 /* For legacy support, ensure current >= first */
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500511 if (hose->first_busno > hose->current_busno)
512 hose->current_busno = hose->first_busno;
wdenkc6097192002-11-03 00:24:07 +0000513#ifdef CONFIG_PCI_PNP
514 pciauto_config_init(hose);
515#endif
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500516 return pci_hose_scan_bus(hose, hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000517}
518
stroesead10dd92003-02-14 11:21:23 +0000519void pci_init(void)
520{
John Schmoller96d61602010-10-22 00:20:23 -0500521 hose_head = NULL;
522
stroesead10dd92003-02-14 11:21:23 +0000523 /* now call board specific pci_init()... */
524 pci_init_board();
525}
Zhao Qiang287df012013-10-12 13:46:33 +0800526
527/* Returns the address of the requested capability structure within the
528 * device's PCI configuration space or 0 in case the device does not
529 * support it.
530 * */
531int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
532 int cap)
533{
534 int pos;
535 u8 hdr_type;
536
537 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type);
538
539 pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F);
540
541 if (pos)
542 pos = pci_find_cap(hose, dev, pos, cap);
543
544 return pos;
545}
546
547/* Find the header pointer to the Capabilities*/
548int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
549 u8 hdr_type)
550{
551 u16 status;
552
553 pci_hose_read_config_word(hose, dev, PCI_STATUS, &status);
554
555 if (!(status & PCI_STATUS_CAP_LIST))
556 return 0;
557
558 switch (hdr_type) {
559 case PCI_HEADER_TYPE_NORMAL:
560 case PCI_HEADER_TYPE_BRIDGE:
561 return PCI_CAPABILITY_LIST;
562 case PCI_HEADER_TYPE_CARDBUS:
563 return PCI_CB_CAPABILITY_LIST;
564 default:
565 return 0;
566 }
567}
568
569int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap)
570{
571 int ttl = PCI_FIND_CAP_TTL;
572 u8 id;
573 u8 next_pos;
574
575 while (ttl--) {
576 pci_hose_read_config_byte(hose, dev, pos, &next_pos);
577 if (next_pos < CAP_START_POS)
578 break;
579 next_pos &= ~3;
580 pos = (int) next_pos;
581 pci_hose_read_config_byte(hose, dev,
582 pos + PCI_CAP_LIST_ID, &id);
583 if (id == 0xff)
584 break;
585 if (id == cap)
586 return pos;
587 pos += PCI_CAP_LIST_NEXT;
588 }
589 return 0;
590}