blob: e2195726c8a744c7cf65d68f3ce462dd7effae88 [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 Glass250e0392015-01-27 22:13:27 -070020#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000021#include <asm/processor.h>
22#include <asm/io.h>
23#include <pci.h>
24
Bin Meng8f9052f2014-12-30 22:53:21 +080025DECLARE_GLOBAL_DATA_PTR;
26
wdenkf07771c2003-05-28 08:06:31 +000027#define PCI_HOSE_OP(rw, size, type) \
Wolfgang Denk53677ef2008-05-20 16:00:29 +020028int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
29 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000030 int offset, type value) \
31{ \
32 return hose->rw##_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000033}
34
35PCI_HOSE_OP(read, byte, u8 *)
36PCI_HOSE_OP(read, word, u16 *)
37PCI_HOSE_OP(read, dword, u32 *)
38PCI_HOSE_OP(write, byte, u8)
39PCI_HOSE_OP(write, word, u16)
40PCI_HOSE_OP(write, dword, u32)
41
wdenkf07771c2003-05-28 08:06:31 +000042#define PCI_OP(rw, size, type, error_code) \
43int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
44{ \
45 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
46 \
47 if (!hose) \
48 { \
49 error_code; \
50 return -1; \
51 } \
52 \
53 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000054}
55
56PCI_OP(read, byte, u8 *, *value = 0xff)
57PCI_OP(read, word, u16 *, *value = 0xffff)
58PCI_OP(read, dword, u32 *, *value = 0xffffffff)
59PCI_OP(write, byte, u8, )
60PCI_OP(write, word, u16, )
61PCI_OP(write, dword, u32, )
62
wdenkf07771c2003-05-28 08:06:31 +000063#define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
64int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020065 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000066 int offset, type val) \
67{ \
68 u32 val32; \
69 \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090070 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
71 *val = -1; \
wdenkf07771c2003-05-28 08:06:31 +000072 return -1; \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090073 } \
wdenkf07771c2003-05-28 08:06:31 +000074 \
75 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
76 \
77 return 0; \
wdenkc6097192002-11-03 00:24:07 +000078}
79
wdenkf07771c2003-05-28 08:06:31 +000080#define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
81int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020082 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000083 int offset, type val) \
84{ \
wdenk498b8db2004-04-18 22:26:17 +000085 u32 val32, mask, ldata, shift; \
wdenkf07771c2003-05-28 08:06:31 +000086 \
87 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
88 return -1; \
89 \
wdenk498b8db2004-04-18 22:26:17 +000090 shift = ((offset & (int)off_mask) * 8); \
91 ldata = (((unsigned long)val) & val_mask) << shift; \
92 mask = val_mask << shift; \
wdenkf07771c2003-05-28 08:06:31 +000093 val32 = (val32 & ~mask) | ldata; \
94 \
95 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
96 return -1; \
97 \
98 return 0; \
wdenkc6097192002-11-03 00:24:07 +000099}
100
101PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
102PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
103PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
104PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
105
106/*
107 *
108 */
109
John Schmoller96d61602010-10-22 00:20:23 -0500110static struct pci_controller* hose_head;
wdenkc6097192002-11-03 00:24:07 +0000111
Bin Meng8f9052f2014-12-30 22:53:21 +0800112struct pci_controller *pci_get_hose_head(void)
113{
114 if (gd->hose)
115 return gd->hose;
116
117 return hose_head;
118}
119
wdenkc6097192002-11-03 00:24:07 +0000120void pci_register_hose(struct pci_controller* hose)
121{
122 struct pci_controller **phose = &hose_head;
123
124 while(*phose)
125 phose = &(*phose)->next;
126
127 hose->next = NULL;
128
129 *phose = hose;
130}
131
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000132struct pci_controller *pci_bus_to_hose(int bus)
wdenkc6097192002-11-03 00:24:07 +0000133{
134 struct pci_controller *hose;
135
Bin Meng8f9052f2014-12-30 22:53:21 +0800136 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
wdenkf07771c2003-05-28 08:06:31 +0000137 if (bus >= hose->first_busno && bus <= hose->last_busno)
wdenkc6097192002-11-03 00:24:07 +0000138 return hose;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000139 }
wdenkc6097192002-11-03 00:24:07 +0000140
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200141 printf("pci_bus_to_hose() failed\n");
wdenkc6097192002-11-03 00:24:07 +0000142 return NULL;
143}
144
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600145struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
146{
147 struct pci_controller *hose;
148
Bin Meng8f9052f2014-12-30 22:53:21 +0800149 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600150 if (hose->cfg_addr == cfg_addr)
151 return hose;
152 }
153
154 return NULL;
155}
156
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300157int pci_last_busno(void)
158{
Bin Meng8f9052f2014-12-30 22:53:21 +0800159 struct pci_controller *hose = pci_get_hose_head();
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300160
161 if (!hose)
162 return -1;
163
164 while (hose->next)
165 hose = hose->next;
166
167 return hose->last_busno;
168}
169
wdenkc6097192002-11-03 00:24:07 +0000170pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
171{
172 struct pci_controller * hose;
wdenkc6097192002-11-03 00:24:07 +0000173 pci_dev_t bdf;
Simon Glassaab67242015-03-05 12:25:24 -0700174 int bus;
wdenkc6097192002-11-03 00:24:07 +0000175
Bin Meng8f9052f2014-12-30 22:53:21 +0800176 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Simon Glassaab67242015-03-05 12:25:24 -0700177 for (bus = hose->first_busno; bus <= hose->last_busno; bus++) {
Simon Glassaab67242015-03-05 12:25:24 -0700178 bdf = pci_hose_find_devices(hose, bus, ids, &index);
179 if (bdf != -1)
Simon Glass250e0392015-01-27 22:13:27 -0700180 return bdf;
Simon Glass250e0392015-01-27 22:13:27 -0700181 }
182 }
183
Simon Glassaab67242015-03-05 12:25:24 -0700184 return -1;
wdenkc6097192002-11-03 00:24:07 +0000185}
186
Simon Glass11503be2019-02-16 20:24:40 -0700187static int pci_hose_config_device(struct pci_controller *hose, pci_dev_t dev,
188 ulong io, pci_addr_t mem, ulong command)
wdenkc6097192002-11-03 00:24:07 +0000189{
Kumar Galacf5787f2012-09-19 04:47:36 +0000190 u32 bar_response;
Andrew Sharpaf778c62012-08-01 12:27:16 +0000191 unsigned int old_command;
Kumar Gala30e76d52008-10-21 08:36:08 -0500192 pci_addr_t bar_value;
193 pci_size_t bar_size;
wdenkc6097192002-11-03 00:24:07 +0000194 unsigned char pin;
195 int bar, found_mem64;
196
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000197 debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io,
198 (u64)mem, command);
wdenkc6097192002-11-03 00:24:07 +0000199
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000200 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
wdenkc6097192002-11-03 00:24:07 +0000201
Wolfgang Denk252b4042010-03-09 14:27:25 +0100202 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000203 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
204 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
wdenkc6097192002-11-03 00:24:07 +0000205
206 if (!bar_response)
207 continue;
208
209 found_mem64 = 0;
210
211 /* Check the BAR type and set our address mask */
wdenkf07771c2003-05-28 08:06:31 +0000212 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
wdenkc6097192002-11-03 00:24:07 +0000213 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000214 /* round up region base address to a multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000215 io = ((io - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000216 bar_value = io;
217 /* compute new region base address */
218 io = io + bar_size;
219 } else {
220 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -0500221 PCI_BASE_ADDRESS_MEM_TYPE_64) {
222 u32 bar_response_upper;
223 u64 bar64;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000224 pci_hose_write_config_dword(hose, dev, bar + 4,
225 0xffffffff);
226 pci_hose_read_config_dword(hose, dev, bar + 4,
227 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000228
Kumar Gala30e76d52008-10-21 08:36:08 -0500229 bar64 = ((u64)bar_response_upper << 32) | bar_response;
230
231 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
232 found_mem64 = 1;
233 } else {
234 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
235 }
wdenkc6097192002-11-03 00:24:07 +0000236
wdenkf07771c2003-05-28 08:06:31 +0000237 /* round up region base address to multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000238 mem = ((mem - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000239 bar_value = mem;
240 /* compute new region base address */
241 mem = mem + bar_size;
wdenkc6097192002-11-03 00:24:07 +0000242 }
243
244 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500245 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000246
wdenkf07771c2003-05-28 08:06:31 +0000247 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000248 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500249#ifdef CONFIG_SYS_PCI_64BIT
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000250 pci_hose_write_config_dword(hose, dev, bar,
251 (u32)(bar_value >> 32));
Kumar Gala30e76d52008-10-21 08:36:08 -0500252#else
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000253 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500254#endif
wdenkc6097192002-11-03 00:24:07 +0000255 }
256 }
257
258 /* Configure Cache Line Size Register */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000259 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
wdenkc6097192002-11-03 00:24:07 +0000260
261 /* Configure Latency Timer */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000262 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
wdenkc6097192002-11-03 00:24:07 +0000263
264 /* Disable interrupt line, if device says it wants to use interrupts */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000265 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
wdenkf07771c2003-05-28 08:06:31 +0000266 if (pin != 0) {
Simon Glass5f48d792015-07-27 15:47:17 -0600267 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
268 PCI_INTERRUPT_LINE_DISABLE);
wdenkc6097192002-11-03 00:24:07 +0000269 }
270
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000271 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
272 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
wdenkf07771c2003-05-28 08:06:31 +0000273 (old_command & 0xffff0000) | command);
wdenkc6097192002-11-03 00:24:07 +0000274
275 return 0;
276}
277
278/*
279 *
280 */
281
282struct pci_config_table *pci_find_config(struct pci_controller *hose,
283 unsigned short class,
284 unsigned int vendor,
285 unsigned int device,
286 unsigned int bus,
287 unsigned int dev,
288 unsigned int func)
289{
290 struct pci_config_table *table;
291
wdenkf07771c2003-05-28 08:06:31 +0000292 for (table = hose->config_table; table && table->vendor; table++) {
wdenkc6097192002-11-03 00:24:07 +0000293 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
294 (table->device == PCI_ANY_ID || table->device == device) &&
295 (table->class == PCI_ANY_ID || table->class == class) &&
296 (table->bus == PCI_ANY_ID || table->bus == bus) &&
297 (table->dev == PCI_ANY_ID || table->dev == dev) &&
wdenkf07771c2003-05-28 08:06:31 +0000298 (table->func == PCI_ANY_ID || table->func == func)) {
wdenkc6097192002-11-03 00:24:07 +0000299 return table;
300 }
301 }
302
303 return NULL;
304}
305
306void pci_cfgfunc_config_device(struct pci_controller *hose,
307 pci_dev_t dev,
308 struct pci_config_table *entry)
309{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000310 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1],
311 entry->priv[2]);
wdenkc6097192002-11-03 00:24:07 +0000312}
313
314void pci_cfgfunc_do_nothing(struct pci_controller *hose,
315 pci_dev_t dev, struct pci_config_table *entry)
316{
317}
318
319/*
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000320 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000321 * to get the correct result when scanning bridges
322 */
323extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000324
Stefan Roesedc1da422008-07-08 12:01:47 +0200325#ifdef CONFIG_PCI_SCAN_SHOW
Jeroen Hofstee7b19fd62014-10-08 22:57:27 +0200326__weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
Stefan Roesedc1da422008-07-08 12:01:47 +0200327{
328 if (dev == PCI_BDF(hose->first_busno, 0, 0))
329 return 0;
330
331 return 1;
332}
Stefan Roesedc1da422008-07-08 12:01:47 +0200333#endif /* CONFIG_PCI_SCAN_SHOW */
334
wdenkc6097192002-11-03 00:24:07 +0000335int pci_hose_scan_bus(struct pci_controller *hose, int bus)
336{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000337 unsigned int sub_bus, found_multi = 0;
wdenkc6097192002-11-03 00:24:07 +0000338 unsigned short vendor, device, class;
339 unsigned char header_type;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000340#ifndef CONFIG_PCI_PNP
wdenkc6097192002-11-03 00:24:07 +0000341 struct pci_config_table *cfg;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000342#endif
wdenkc6097192002-11-03 00:24:07 +0000343 pci_dev_t dev;
Peter Tyser009884a2010-10-29 17:59:29 -0500344#ifdef CONFIG_PCI_SCAN_SHOW
345 static int indent = 0;
346#endif
wdenkc6097192002-11-03 00:24:07 +0000347
348 sub_bus = bus;
349
350 for (dev = PCI_BDF(bus,0,0);
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000351 dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
352 PCI_MAX_PCI_FUNCTIONS - 1);
353 dev += PCI_BDF(0, 0, 1)) {
Stefan Roesedc1da422008-07-08 12:01:47 +0200354
355 if (pci_skip_dev(hose, dev))
356 continue;
wdenkc6097192002-11-03 00:24:07 +0000357
358 if (PCI_FUNC(dev) && !found_multi)
359 continue;
360
361 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
362
363 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
364
Peter Tyser983eb9d2010-10-29 17:59:27 -0500365 if (vendor == 0xffff || vendor == 0x0000)
366 continue;
wdenkc6097192002-11-03 00:24:07 +0000367
Peter Tyser983eb9d2010-10-29 17:59:27 -0500368 if (!PCI_FUNC(dev))
369 found_multi = header_type & 0x80;
wdenkc6097192002-11-03 00:24:07 +0000370
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000371 debug("PCI Scan: Found Bus %d, Device %d, Function %d\n",
372 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
wdenkc6097192002-11-03 00:24:07 +0000373
Peter Tyser983eb9d2010-10-29 17:59:27 -0500374 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
375 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
wdenkc6097192002-11-03 00:24:07 +0000376
Tim Harvey09918662014-08-07 22:49:56 -0700377#ifdef CONFIG_PCI_FIXUP_DEV
378 board_pci_fixup_dev(hose, dev, vendor, device, class);
379#endif
380
Peter Tysera38d2162010-10-29 17:59:28 -0500381#ifdef CONFIG_PCI_SCAN_SHOW
Peter Tyser009884a2010-10-29 17:59:29 -0500382 indent++;
383
384 /* Print leading space, including bus indentation */
385 printf("%*c", indent + 1, ' ');
386
Peter Tysera38d2162010-10-29 17:59:28 -0500387 if (pci_print_dev(hose, dev)) {
Peter Tyser009884a2010-10-29 17:59:29 -0500388 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
389 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
Peter Tysera38d2162010-10-29 17:59:28 -0500390 vendor, device, pci_class_str(class >> 8));
391 }
392#endif
393
Andrew Sharp03992ac2012-08-29 14:16:30 +0000394#ifdef CONFIG_PCI_PNP
Masahiro Yamadab4141192014-11-07 03:03:31 +0900395 sub_bus = max((unsigned int)pciauto_config_device(hose, dev),
396 sub_bus);
Andrew Sharp03992ac2012-08-29 14:16:30 +0000397#else
Peter Tyser983eb9d2010-10-29 17:59:27 -0500398 cfg = pci_find_config(hose, class, vendor, device,
399 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
400 if (cfg) {
401 cfg->config_device(hose, dev, cfg);
Masahiro Yamadab4141192014-11-07 03:03:31 +0900402 sub_bus = max(sub_bus,
403 (unsigned int)hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000404 }
Andrew Sharp03992ac2012-08-29 14:16:30 +0000405#endif
Peter Tysera38d2162010-10-29 17:59:28 -0500406
Peter Tyser009884a2010-10-29 17:59:29 -0500407#ifdef CONFIG_PCI_SCAN_SHOW
408 indent--;
409#endif
410
Peter Tyser983eb9d2010-10-29 17:59:27 -0500411 if (hose->fixup_irq)
412 hose->fixup_irq(hose, dev);
wdenkc6097192002-11-03 00:24:07 +0000413 }
414
415 return sub_bus;
416}
417
418int pci_hose_scan(struct pci_controller *hose)
419{
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000420#if defined(CONFIG_PCI_BOOTDELAY)
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000421 char *s;
422 int i;
423
Bin Meng8f9052f2014-12-30 22:53:21 +0800424 if (!gd->pcidelay_done) {
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000425 /* wait "pcidelay" ms (if defined)... */
Simon Glass00caae62017-08-03 12:22:12 -0600426 s = env_get("pcidelay");
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000427 if (s) {
428 int val = simple_strtoul(s, NULL, 10);
429 for (i = 0; i < val; i++)
430 udelay(1000);
431 }
Bin Meng8f9052f2014-12-30 22:53:21 +0800432 gd->pcidelay_done = 1;
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000433 }
434#endif /* CONFIG_PCI_BOOTDELAY */
435
Tim Harvey0373a7e2015-05-08 15:16:07 -0700436#ifdef CONFIG_PCI_SCAN_SHOW
437 puts("PCI:\n");
438#endif
439
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000440 /*
441 * Start scan at current_busno.
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500442 * PCIe will start scan at first_busno+1.
443 */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000444 /* For legacy support, ensure current >= first */
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500445 if (hose->first_busno > hose->current_busno)
446 hose->current_busno = hose->first_busno;
wdenkc6097192002-11-03 00:24:07 +0000447#ifdef CONFIG_PCI_PNP
448 pciauto_config_init(hose);
449#endif
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500450 return pci_hose_scan_bus(hose, hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000451}
452
stroesead10dd92003-02-14 11:21:23 +0000453void pci_init(void)
454{
John Schmoller96d61602010-10-22 00:20:23 -0500455 hose_head = NULL;
456
Tim Harveyec21aee2016-06-17 06:20:25 -0700457 /* allow env to disable pci init/enum */
Simon Glass00caae62017-08-03 12:22:12 -0600458 if (env_get("pcidisable") != NULL)
Tim Harveyec21aee2016-06-17 06:20:25 -0700459 return;
460
stroesead10dd92003-02-14 11:21:23 +0000461 /* now call board specific pci_init()... */
462 pci_init_board();
463}
Zhao Qiang287df012013-10-12 13:46:33 +0800464
465/* Returns the address of the requested capability structure within the
466 * device's PCI configuration space or 0 in case the device does not
467 * support it.
468 * */
469int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
470 int cap)
471{
472 int pos;
473 u8 hdr_type;
474
475 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type);
476
477 pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F);
478
479 if (pos)
480 pos = pci_find_cap(hose, dev, pos, cap);
481
482 return pos;
483}
484
485/* Find the header pointer to the Capabilities*/
486int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
487 u8 hdr_type)
488{
489 u16 status;
490
491 pci_hose_read_config_word(hose, dev, PCI_STATUS, &status);
492
493 if (!(status & PCI_STATUS_CAP_LIST))
494 return 0;
495
496 switch (hdr_type) {
497 case PCI_HEADER_TYPE_NORMAL:
498 case PCI_HEADER_TYPE_BRIDGE:
499 return PCI_CAPABILITY_LIST;
500 case PCI_HEADER_TYPE_CARDBUS:
501 return PCI_CB_CAPABILITY_LIST;
502 default:
503 return 0;
504 }
505}
506
507int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap)
508{
509 int ttl = PCI_FIND_CAP_TTL;
510 u8 id;
511 u8 next_pos;
512
513 while (ttl--) {
514 pci_hose_read_config_byte(hose, dev, pos, &next_pos);
515 if (next_pos < CAP_START_POS)
516 break;
517 next_pos &= ~3;
518 pos = (int) next_pos;
519 pci_hose_read_config_byte(hose, dev,
520 pos + PCI_CAP_LIST_ID, &id);
521 if (id == 0xff)
522 break;
523 if (id == cap)
524 return pos;
525 pos += PCI_CAP_LIST_NEXT;
526 }
527 return 0;
528}
Minghuan Lianed5b5802015-07-10 11:35:08 +0800529
530/**
531 * pci_find_next_ext_capability - Find an extended capability
532 *
533 * Returns the address of the next matching extended capability structure
534 * within the device's PCI configuration space or 0 if the device does
535 * not support it. Some capabilities can occur several times, e.g., the
536 * vendor-specific capability, and this provides a way to find them all.
537 */
538int pci_find_next_ext_capability(struct pci_controller *hose, pci_dev_t dev,
539 int start, int cap)
540{
541 u32 header;
542 int ttl, pos = PCI_CFG_SPACE_SIZE;
543
544 /* minimum 8 bytes per capability */
545 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
546
547 if (start)
548 pos = start;
549
550 pci_hose_read_config_dword(hose, dev, pos, &header);
551 if (header == 0xffffffff || header == 0)
552 return 0;
553
554 while (ttl-- > 0) {
555 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
556 return pos;
557
558 pos = PCI_EXT_CAP_NEXT(header);
559 if (pos < PCI_CFG_SPACE_SIZE)
560 break;
561
562 pci_hose_read_config_dword(hose, dev, pos, &header);
563 if (header == 0xffffffff || header == 0)
564 break;
565 }
566
567 return 0;
568}
569
570/**
571 * pci_hose_find_ext_capability - Find an extended capability
572 *
573 * Returns the address of the requested extended capability structure
574 * within the device's PCI configuration space or 0 if the device does
575 * not support it.
576 */
577int pci_hose_find_ext_capability(struct pci_controller *hose, pci_dev_t dev,
578 int cap)
579{
580 return pci_find_next_ext_capability(hose, dev, 0, cap);
581}