blob: d8f9239523cd1935b546693632229c93e7b5e910 [file] [log] [blame]
Tom Rini10e47792018-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 *
wdenkf4688a22003-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 Glass0ba553a2015-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>
Simon Glass18afe102019-11-14 12:57:47 -070018#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060019#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Simon Glassdbd79542020-05-10 11:40:11 -060021#include <linux/delay.h>
wdenkc6097192002-11-03 00:24:07 +000022
wdenkc6097192002-11-03 00:24:07 +000023#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060024#include <env.h>
Simon Glass62034ff2015-01-27 22:13:27 -070025#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000026#include <asm/processor.h>
27#include <asm/io.h>
28#include <pci.h>
29
Bin Mengf1b81fc2014-12-30 22:53:21 +080030DECLARE_GLOBAL_DATA_PTR;
31
wdenkf4688a22003-05-28 08:06:31 +000032#define PCI_HOSE_OP(rw, size, type) \
Wolfgang Denka1be4762008-05-20 16:00:29 +020033int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
34 pci_dev_t dev, \
wdenkf4688a22003-05-28 08:06:31 +000035 int offset, type value) \
36{ \
37 return hose->rw##_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000038}
39
40PCI_HOSE_OP(read, byte, u8 *)
41PCI_HOSE_OP(read, word, u16 *)
42PCI_HOSE_OP(read, dword, u32 *)
43PCI_HOSE_OP(write, byte, u8)
44PCI_HOSE_OP(write, word, u16)
45PCI_HOSE_OP(write, dword, u32)
46
wdenkf4688a22003-05-28 08:06:31 +000047#define PCI_OP(rw, size, type, error_code) \
48int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
49{ \
50 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
51 \
52 if (!hose) \
53 { \
54 error_code; \
55 return -1; \
56 } \
57 \
58 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000059}
60
61PCI_OP(read, byte, u8 *, *value = 0xff)
62PCI_OP(read, word, u16 *, *value = 0xffff)
63PCI_OP(read, dword, u32 *, *value = 0xffffffff)
64PCI_OP(write, byte, u8, )
65PCI_OP(write, word, u16, )
66PCI_OP(write, dword, u32, )
67
wdenkf4688a22003-05-28 08:06:31 +000068#define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
69int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denka1be4762008-05-20 16:00:29 +020070 pci_dev_t dev, \
wdenkf4688a22003-05-28 08:06:31 +000071 int offset, type val) \
72{ \
73 u32 val32; \
74 \
Shinya Kuribayashif19da9d2007-08-17 12:43:44 +090075 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
76 *val = -1; \
wdenkf4688a22003-05-28 08:06:31 +000077 return -1; \
Shinya Kuribayashif19da9d2007-08-17 12:43:44 +090078 } \
wdenkf4688a22003-05-28 08:06:31 +000079 \
80 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
81 \
82 return 0; \
wdenkc6097192002-11-03 00:24:07 +000083}
84
wdenkf4688a22003-05-28 08:06:31 +000085#define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
86int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denka1be4762008-05-20 16:00:29 +020087 pci_dev_t dev, \
wdenkf4688a22003-05-28 08:06:31 +000088 int offset, type val) \
89{ \
wdenk19c8fb72004-04-18 22:26:17 +000090 u32 val32, mask, ldata, shift; \
wdenkf4688a22003-05-28 08:06:31 +000091 \
92 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
93 return -1; \
94 \
wdenk19c8fb72004-04-18 22:26:17 +000095 shift = ((offset & (int)off_mask) * 8); \
96 ldata = (((unsigned long)val) & val_mask) << shift; \
97 mask = val_mask << shift; \
wdenkf4688a22003-05-28 08:06:31 +000098 val32 = (val32 & ~mask) | ldata; \
99 \
100 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
101 return -1; \
102 \
103 return 0; \
wdenkc6097192002-11-03 00:24:07 +0000104}
105
106PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
107PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
108PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
109PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
110
111/*
112 *
113 */
114
John Schmoller60e877f2010-10-22 00:20:23 -0500115static struct pci_controller* hose_head;
wdenkc6097192002-11-03 00:24:07 +0000116
Bin Mengf1b81fc2014-12-30 22:53:21 +0800117struct pci_controller *pci_get_hose_head(void)
118{
119 if (gd->hose)
120 return gd->hose;
121
122 return hose_head;
123}
124
wdenkc6097192002-11-03 00:24:07 +0000125void pci_register_hose(struct pci_controller* hose)
126{
127 struct pci_controller **phose = &hose_head;
128
129 while(*phose)
130 phose = &(*phose)->next;
131
132 hose->next = NULL;
133
134 *phose = hose;
135}
136
Andrew Sharp68705132012-08-29 14:16:29 +0000137struct pci_controller *pci_bus_to_hose(int bus)
wdenkc6097192002-11-03 00:24:07 +0000138{
139 struct pci_controller *hose;
140
Bin Mengf1b81fc2014-12-30 22:53:21 +0800141 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
wdenkf4688a22003-05-28 08:06:31 +0000142 if (bus >= hose->first_busno && bus <= hose->last_busno)
wdenkc6097192002-11-03 00:24:07 +0000143 return hose;
Andrew Sharp68705132012-08-29 14:16:29 +0000144 }
wdenkc6097192002-11-03 00:24:07 +0000145
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200146 printf("pci_bus_to_hose() failed\n");
wdenkc6097192002-11-03 00:24:07 +0000147 return NULL;
148}
149
Kumar Galadb943ed2010-12-17 05:57:25 -0600150struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
151{
152 struct pci_controller *hose;
153
Bin Mengf1b81fc2014-12-30 22:53:21 +0800154 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Kumar Galadb943ed2010-12-17 05:57:25 -0600155 if (hose->cfg_addr == cfg_addr)
156 return hose;
157 }
158
159 return NULL;
160}
161
Anton Vorontsov597b8c42009-02-19 18:20:41 +0300162int pci_last_busno(void)
163{
Bin Mengf1b81fc2014-12-30 22:53:21 +0800164 struct pci_controller *hose = pci_get_hose_head();
Anton Vorontsov597b8c42009-02-19 18:20:41 +0300165
166 if (!hose)
167 return -1;
168
169 while (hose->next)
170 hose = hose->next;
171
172 return hose->last_busno;
173}
174
wdenkc6097192002-11-03 00:24:07 +0000175pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
176{
177 struct pci_controller * hose;
wdenkc6097192002-11-03 00:24:07 +0000178 pci_dev_t bdf;
Simon Glass75532d82015-03-05 12:25:24 -0700179 int bus;
wdenkc6097192002-11-03 00:24:07 +0000180
Bin Mengf1b81fc2014-12-30 22:53:21 +0800181 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
Simon Glass75532d82015-03-05 12:25:24 -0700182 for (bus = hose->first_busno; bus <= hose->last_busno; bus++) {
Simon Glass75532d82015-03-05 12:25:24 -0700183 bdf = pci_hose_find_devices(hose, bus, ids, &index);
184 if (bdf != -1)
Simon Glass62034ff2015-01-27 22:13:27 -0700185 return bdf;
Simon Glass62034ff2015-01-27 22:13:27 -0700186 }
187 }
188
Simon Glass75532d82015-03-05 12:25:24 -0700189 return -1;
wdenkc6097192002-11-03 00:24:07 +0000190}
191
Simon Glassa5934552019-02-16 20:24:40 -0700192static int pci_hose_config_device(struct pci_controller *hose, pci_dev_t dev,
193 ulong io, pci_addr_t mem, ulong command)
wdenkc6097192002-11-03 00:24:07 +0000194{
Kumar Gala1873d5c2012-09-19 04:47:36 +0000195 u32 bar_response;
Andrew Sharpf4f24822012-08-01 12:27:16 +0000196 unsigned int old_command;
Kumar Galaad714f52008-10-21 08:36:08 -0500197 pci_addr_t bar_value;
198 pci_size_t bar_size;
wdenkc6097192002-11-03 00:24:07 +0000199 unsigned char pin;
200 int bar, found_mem64;
201
Andrew Sharp68705132012-08-29 14:16:29 +0000202 debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io,
203 (u64)mem, command);
wdenkc6097192002-11-03 00:24:07 +0000204
Andrew Sharp68705132012-08-29 14:16:29 +0000205 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
wdenkc6097192002-11-03 00:24:07 +0000206
Wolfgang Denk03bebef2010-03-09 14:27:25 +0100207 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
Andrew Sharp68705132012-08-29 14:16:29 +0000208 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
209 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
wdenkc6097192002-11-03 00:24:07 +0000210
211 if (!bar_response)
212 continue;
213
214 found_mem64 = 0;
215
216 /* Check the BAR type and set our address mask */
wdenkf4688a22003-05-28 08:06:31 +0000217 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
wdenkc6097192002-11-03 00:24:07 +0000218 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
wdenkf4688a22003-05-28 08:06:31 +0000219 /* round up region base address to a multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000220 io = ((io - 1) | (bar_size - 1)) + 1;
wdenkf4688a22003-05-28 08:06:31 +0000221 bar_value = io;
222 /* compute new region base address */
223 io = io + bar_size;
224 } else {
225 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Galaad714f52008-10-21 08:36:08 -0500226 PCI_BASE_ADDRESS_MEM_TYPE_64) {
227 u32 bar_response_upper;
228 u64 bar64;
Andrew Sharp68705132012-08-29 14:16:29 +0000229 pci_hose_write_config_dword(hose, dev, bar + 4,
230 0xffffffff);
231 pci_hose_read_config_dword(hose, dev, bar + 4,
232 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000233
Kumar Galaad714f52008-10-21 08:36:08 -0500234 bar64 = ((u64)bar_response_upper << 32) | bar_response;
235
236 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
237 found_mem64 = 1;
238 } else {
239 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
240 }
wdenkc6097192002-11-03 00:24:07 +0000241
wdenkf4688a22003-05-28 08:06:31 +0000242 /* round up region base address to multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000243 mem = ((mem - 1) | (bar_size - 1)) + 1;
wdenkf4688a22003-05-28 08:06:31 +0000244 bar_value = mem;
245 /* compute new region base address */
246 mem = mem + bar_size;
wdenkc6097192002-11-03 00:24:07 +0000247 }
248
249 /* Write it out and update our limit */
Kumar Galaad714f52008-10-21 08:36:08 -0500250 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000251
wdenkf4688a22003-05-28 08:06:31 +0000252 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000253 bar += 4;
Kumar Galaad714f52008-10-21 08:36:08 -0500254#ifdef CONFIG_SYS_PCI_64BIT
Andrew Sharp68705132012-08-29 14:16:29 +0000255 pci_hose_write_config_dword(hose, dev, bar,
256 (u32)(bar_value >> 32));
Kumar Galaad714f52008-10-21 08:36:08 -0500257#else
Andrew Sharp68705132012-08-29 14:16:29 +0000258 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Galaad714f52008-10-21 08:36:08 -0500259#endif
wdenkc6097192002-11-03 00:24:07 +0000260 }
261 }
262
263 /* Configure Cache Line Size Register */
Andrew Sharp68705132012-08-29 14:16:29 +0000264 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
wdenkc6097192002-11-03 00:24:07 +0000265
266 /* Configure Latency Timer */
Andrew Sharp68705132012-08-29 14:16:29 +0000267 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
wdenkc6097192002-11-03 00:24:07 +0000268
269 /* Disable interrupt line, if device says it wants to use interrupts */
Andrew Sharp68705132012-08-29 14:16:29 +0000270 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
wdenkf4688a22003-05-28 08:06:31 +0000271 if (pin != 0) {
Simon Glass84f57332015-07-27 15:47:17 -0600272 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
273 PCI_INTERRUPT_LINE_DISABLE);
wdenkc6097192002-11-03 00:24:07 +0000274 }
275
Andrew Sharp68705132012-08-29 14:16:29 +0000276 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
277 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
wdenkf4688a22003-05-28 08:06:31 +0000278 (old_command & 0xffff0000) | command);
wdenkc6097192002-11-03 00:24:07 +0000279
280 return 0;
281}
282
283/*
284 *
285 */
286
287struct pci_config_table *pci_find_config(struct pci_controller *hose,
288 unsigned short class,
289 unsigned int vendor,
290 unsigned int device,
291 unsigned int bus,
292 unsigned int dev,
293 unsigned int func)
294{
295 struct pci_config_table *table;
296
wdenkf4688a22003-05-28 08:06:31 +0000297 for (table = hose->config_table; table && table->vendor; table++) {
wdenkc6097192002-11-03 00:24:07 +0000298 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
299 (table->device == PCI_ANY_ID || table->device == device) &&
300 (table->class == PCI_ANY_ID || table->class == class) &&
301 (table->bus == PCI_ANY_ID || table->bus == bus) &&
302 (table->dev == PCI_ANY_ID || table->dev == dev) &&
wdenkf4688a22003-05-28 08:06:31 +0000303 (table->func == PCI_ANY_ID || table->func == func)) {
wdenkc6097192002-11-03 00:24:07 +0000304 return table;
305 }
306 }
307
308 return NULL;
309}
310
311void pci_cfgfunc_config_device(struct pci_controller *hose,
312 pci_dev_t dev,
313 struct pci_config_table *entry)
314{
Andrew Sharp68705132012-08-29 14:16:29 +0000315 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1],
316 entry->priv[2]);
wdenkc6097192002-11-03 00:24:07 +0000317}
318
319void pci_cfgfunc_do_nothing(struct pci_controller *hose,
320 pci_dev_t dev, struct pci_config_table *entry)
321{
322}
323
324/*
Andrew Sharp68705132012-08-29 14:16:29 +0000325 * HJF: Changed this to return int. I think this is required
wdenk452cfd62002-11-19 11:04:11 +0000326 * to get the correct result when scanning bridges
327 */
328extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000329
Stefan Roese41e846f2008-07-08 12:01:47 +0200330#ifdef CONFIG_PCI_SCAN_SHOW
Jeroen Hofsteeab1bca52014-10-08 22:57:27 +0200331__weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
Stefan Roese41e846f2008-07-08 12:01:47 +0200332{
333 if (dev == PCI_BDF(hose->first_busno, 0, 0))
334 return 0;
335
336 return 1;
337}
Stefan Roese41e846f2008-07-08 12:01:47 +0200338#endif /* CONFIG_PCI_SCAN_SHOW */
339
wdenkc6097192002-11-03 00:24:07 +0000340int pci_hose_scan_bus(struct pci_controller *hose, int bus)
341{
Andrew Sharp68705132012-08-29 14:16:29 +0000342 unsigned int sub_bus, found_multi = 0;
wdenkc6097192002-11-03 00:24:07 +0000343 unsigned short vendor, device, class;
344 unsigned char header_type;
Andrew Sharp0e2dc472012-08-29 14:16:30 +0000345#ifndef CONFIG_PCI_PNP
wdenkc6097192002-11-03 00:24:07 +0000346 struct pci_config_table *cfg;
Andrew Sharp0e2dc472012-08-29 14:16:30 +0000347#endif
wdenkc6097192002-11-03 00:24:07 +0000348 pci_dev_t dev;
Peter Tyserb46513d2010-10-29 17:59:29 -0500349#ifdef CONFIG_PCI_SCAN_SHOW
350 static int indent = 0;
351#endif
wdenkc6097192002-11-03 00:24:07 +0000352
353 sub_bus = bus;
354
355 for (dev = PCI_BDF(bus,0,0);
Andrew Sharp68705132012-08-29 14:16:29 +0000356 dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
357 PCI_MAX_PCI_FUNCTIONS - 1);
358 dev += PCI_BDF(0, 0, 1)) {
Stefan Roese41e846f2008-07-08 12:01:47 +0200359
360 if (pci_skip_dev(hose, dev))
361 continue;
wdenkc6097192002-11-03 00:24:07 +0000362
363 if (PCI_FUNC(dev) && !found_multi)
364 continue;
365
366 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
367
368 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
369
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500370 if (vendor == 0xffff || vendor == 0x0000)
371 continue;
wdenkc6097192002-11-03 00:24:07 +0000372
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500373 if (!PCI_FUNC(dev))
374 found_multi = header_type & 0x80;
wdenkc6097192002-11-03 00:24:07 +0000375
Andrew Sharp68705132012-08-29 14:16:29 +0000376 debug("PCI Scan: Found Bus %d, Device %d, Function %d\n",
377 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
wdenkc6097192002-11-03 00:24:07 +0000378
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500379 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
380 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
wdenkc6097192002-11-03 00:24:07 +0000381
Tim Harvey231c0762014-08-07 22:49:56 -0700382#ifdef CONFIG_PCI_FIXUP_DEV
383 board_pci_fixup_dev(hose, dev, vendor, device, class);
384#endif
385
Peter Tyserd40cdc42010-10-29 17:59:28 -0500386#ifdef CONFIG_PCI_SCAN_SHOW
Peter Tyserb46513d2010-10-29 17:59:29 -0500387 indent++;
388
389 /* Print leading space, including bus indentation */
390 printf("%*c", indent + 1, ' ');
391
Peter Tyserd40cdc42010-10-29 17:59:28 -0500392 if (pci_print_dev(hose, dev)) {
Peter Tyserb46513d2010-10-29 17:59:29 -0500393 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
394 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
Peter Tyserd40cdc42010-10-29 17:59:28 -0500395 vendor, device, pci_class_str(class >> 8));
396 }
397#endif
398
Andrew Sharp0e2dc472012-08-29 14:16:30 +0000399#ifdef CONFIG_PCI_PNP
Masahiro Yamadadb204642014-11-07 03:03:31 +0900400 sub_bus = max((unsigned int)pciauto_config_device(hose, dev),
401 sub_bus);
Andrew Sharp0e2dc472012-08-29 14:16:30 +0000402#else
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500403 cfg = pci_find_config(hose, class, vendor, device,
404 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
405 if (cfg) {
406 cfg->config_device(hose, dev, cfg);
Masahiro Yamadadb204642014-11-07 03:03:31 +0900407 sub_bus = max(sub_bus,
408 (unsigned int)hose->current_busno);
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500409 }
Andrew Sharp0e2dc472012-08-29 14:16:30 +0000410#endif
Peter Tyserd40cdc42010-10-29 17:59:28 -0500411
Peter Tyserb46513d2010-10-29 17:59:29 -0500412#ifdef CONFIG_PCI_SCAN_SHOW
413 indent--;
414#endif
415
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500416 if (hose->fixup_irq)
417 hose->fixup_irq(hose, dev);
wdenkc6097192002-11-03 00:24:07 +0000418 }
419
420 return sub_bus;
421}
422
423int pci_hose_scan(struct pci_controller *hose)
424{
Anatolij Gustschin2bd2cb12011-10-11 22:44:30 +0000425#if defined(CONFIG_PCI_BOOTDELAY)
Anatolij Gustschin2bd2cb12011-10-11 22:44:30 +0000426 char *s;
427 int i;
428
Bin Mengf1b81fc2014-12-30 22:53:21 +0800429 if (!gd->pcidelay_done) {
Anatolij Gustschin2bd2cb12011-10-11 22:44:30 +0000430 /* wait "pcidelay" ms (if defined)... */
Simon Glass64b723f2017-08-03 12:22:12 -0600431 s = env_get("pcidelay");
Anatolij Gustschin2bd2cb12011-10-11 22:44:30 +0000432 if (s) {
433 int val = simple_strtoul(s, NULL, 10);
434 for (i = 0; i < val; i++)
435 udelay(1000);
436 }
Bin Mengf1b81fc2014-12-30 22:53:21 +0800437 gd->pcidelay_done = 1;
Anatolij Gustschin2bd2cb12011-10-11 22:44:30 +0000438 }
439#endif /* CONFIG_PCI_BOOTDELAY */
440
Tim Harveyfc409be2015-05-08 15:16:07 -0700441#ifdef CONFIG_PCI_SCAN_SHOW
442 puts("PCI:\n");
443#endif
444
Andrew Sharp68705132012-08-29 14:16:29 +0000445 /*
446 * Start scan at current_busno.
Ed Swarthoutf0d43472007-07-11 14:51:35 -0500447 * PCIe will start scan at first_busno+1.
448 */
Andrew Sharp68705132012-08-29 14:16:29 +0000449 /* For legacy support, ensure current >= first */
Ed Swarthoutf0d43472007-07-11 14:51:35 -0500450 if (hose->first_busno > hose->current_busno)
451 hose->current_busno = hose->first_busno;
wdenkc6097192002-11-03 00:24:07 +0000452#ifdef CONFIG_PCI_PNP
453 pciauto_config_init(hose);
454#endif
Ed Swarthoutf0d43472007-07-11 14:51:35 -0500455 return pci_hose_scan_bus(hose, hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000456}
457
Ovidiu Panaite353edb2020-11-28 10:43:12 +0200458int pci_init(void)
stroesef5dd4102003-02-14 11:21:23 +0000459{
John Schmoller60e877f2010-10-22 00:20:23 -0500460 hose_head = NULL;
461
Tim Harvey341fcb12016-06-17 06:20:25 -0700462 /* allow env to disable pci init/enum */
Simon Glass64b723f2017-08-03 12:22:12 -0600463 if (env_get("pcidisable") != NULL)
Ovidiu Panaite353edb2020-11-28 10:43:12 +0200464 return 0;
Tim Harvey341fcb12016-06-17 06:20:25 -0700465
stroesef5dd4102003-02-14 11:21:23 +0000466 /* now call board specific pci_init()... */
467 pci_init_board();
Ovidiu Panaite353edb2020-11-28 10:43:12 +0200468
469 return 0;
stroesef5dd4102003-02-14 11:21:23 +0000470}
Zhao Qiang5d39f742013-10-12 13:46:33 +0800471
472/* Returns the address of the requested capability structure within the
473 * device's PCI configuration space or 0 in case the device does not
474 * support it.
475 * */
476int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
477 int cap)
478{
479 int pos;
480 u8 hdr_type;
481
482 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type);
483
484 pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F);
485
486 if (pos)
487 pos = pci_find_cap(hose, dev, pos, cap);
488
489 return pos;
490}
491
492/* Find the header pointer to the Capabilities*/
493int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
494 u8 hdr_type)
495{
496 u16 status;
497
498 pci_hose_read_config_word(hose, dev, PCI_STATUS, &status);
499
500 if (!(status & PCI_STATUS_CAP_LIST))
501 return 0;
502
503 switch (hdr_type) {
504 case PCI_HEADER_TYPE_NORMAL:
505 case PCI_HEADER_TYPE_BRIDGE:
506 return PCI_CAPABILITY_LIST;
507 case PCI_HEADER_TYPE_CARDBUS:
508 return PCI_CB_CAPABILITY_LIST;
509 default:
510 return 0;
511 }
512}
513
514int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap)
515{
516 int ttl = PCI_FIND_CAP_TTL;
517 u8 id;
518 u8 next_pos;
519
520 while (ttl--) {
521 pci_hose_read_config_byte(hose, dev, pos, &next_pos);
522 if (next_pos < CAP_START_POS)
523 break;
524 next_pos &= ~3;
525 pos = (int) next_pos;
526 pci_hose_read_config_byte(hose, dev,
527 pos + PCI_CAP_LIST_ID, &id);
528 if (id == 0xff)
529 break;
530 if (id == cap)
531 return pos;
532 pos += PCI_CAP_LIST_NEXT;
533 }
534 return 0;
535}
Minghuan Lianc5bc6aa2015-07-10 11:35:08 +0800536
537/**
538 * pci_find_next_ext_capability - Find an extended capability
539 *
540 * Returns the address of the next matching extended capability structure
541 * within the device's PCI configuration space or 0 if the device does
542 * not support it. Some capabilities can occur several times, e.g., the
543 * vendor-specific capability, and this provides a way to find them all.
544 */
545int pci_find_next_ext_capability(struct pci_controller *hose, pci_dev_t dev,
546 int start, int cap)
547{
548 u32 header;
549 int ttl, pos = PCI_CFG_SPACE_SIZE;
550
551 /* minimum 8 bytes per capability */
552 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
553
554 if (start)
555 pos = start;
556
557 pci_hose_read_config_dword(hose, dev, pos, &header);
558 if (header == 0xffffffff || header == 0)
559 return 0;
560
561 while (ttl-- > 0) {
562 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
563 return pos;
564
565 pos = PCI_EXT_CAP_NEXT(header);
566 if (pos < PCI_CFG_SPACE_SIZE)
567 break;
568
569 pci_hose_read_config_dword(hose, dev, pos, &header);
570 if (header == 0xffffffff || header == 0)
571 break;
572 }
573
574 return 0;
575}
576
577/**
578 * pci_hose_find_ext_capability - Find an extended capability
579 *
580 * Returns the address of the requested extended capability structure
581 * within the device's PCI configuration space or 0 if the device does
582 * not support it.
583 */
584int pci_hose_find_ext_capability(struct pci_controller *hose, pci_dev_t dev,
585 int cap)
586{
587 return pci_find_next_ext_capability(hose, dev, 0, cap);
588}