blob: 3daf73c30a31e6459cae6522e3a4569f5f3c85de [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>
wdenkc6097192002-11-03 00:24:07 +000018#include <asm/processor.h>
19#include <asm/io.h>
20#include <pci.h>
21
wdenkf07771c2003-05-28 08:06:31 +000022#define PCI_HOSE_OP(rw, size, type) \
Wolfgang Denk53677ef2008-05-20 16:00:29 +020023int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
24 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000025 int offset, type value) \
26{ \
27 return hose->rw##_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000028}
29
30PCI_HOSE_OP(read, byte, u8 *)
31PCI_HOSE_OP(read, word, u16 *)
32PCI_HOSE_OP(read, dword, u32 *)
33PCI_HOSE_OP(write, byte, u8)
34PCI_HOSE_OP(write, word, u16)
35PCI_HOSE_OP(write, dword, u32)
36
wdenkf07771c2003-05-28 08:06:31 +000037#define PCI_OP(rw, size, type, error_code) \
38int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
39{ \
40 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
41 \
42 if (!hose) \
43 { \
44 error_code; \
45 return -1; \
46 } \
47 \
48 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
wdenkc6097192002-11-03 00:24:07 +000049}
50
51PCI_OP(read, byte, u8 *, *value = 0xff)
52PCI_OP(read, word, u16 *, *value = 0xffff)
53PCI_OP(read, dword, u32 *, *value = 0xffffffff)
54PCI_OP(write, byte, u8, )
55PCI_OP(write, word, u16, )
56PCI_OP(write, dword, u32, )
57
wdenkf07771c2003-05-28 08:06:31 +000058#define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
59int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020060 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000061 int offset, type val) \
62{ \
63 u32 val32; \
64 \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090065 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
66 *val = -1; \
wdenkf07771c2003-05-28 08:06:31 +000067 return -1; \
Shinya Kuribayashi815b5bd2007-08-17 12:43:44 +090068 } \
wdenkf07771c2003-05-28 08:06:31 +000069 \
70 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
71 \
72 return 0; \
wdenkc6097192002-11-03 00:24:07 +000073}
74
wdenkf07771c2003-05-28 08:06:31 +000075#define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
76int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
Wolfgang Denk53677ef2008-05-20 16:00:29 +020077 pci_dev_t dev, \
wdenkf07771c2003-05-28 08:06:31 +000078 int offset, type val) \
79{ \
wdenk498b8db2004-04-18 22:26:17 +000080 u32 val32, mask, ldata, shift; \
wdenkf07771c2003-05-28 08:06:31 +000081 \
82 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
83 return -1; \
84 \
wdenk498b8db2004-04-18 22:26:17 +000085 shift = ((offset & (int)off_mask) * 8); \
86 ldata = (((unsigned long)val) & val_mask) << shift; \
87 mask = val_mask << shift; \
wdenkf07771c2003-05-28 08:06:31 +000088 val32 = (val32 & ~mask) | ldata; \
89 \
90 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
91 return -1; \
92 \
93 return 0; \
wdenkc6097192002-11-03 00:24:07 +000094}
95
96PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
97PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
98PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
99PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
100
Becky Bruce6e61fae2009-02-03 18:10:50 -0600101/* Get a virtual address associated with a BAR region */
102void *pci_map_bar(pci_dev_t pdev, int bar, int flags)
103{
104 pci_addr_t pci_bus_addr;
Kumar Galacf5787f2012-09-19 04:47:36 +0000105 u32 bar_response;
Becky Bruce6e61fae2009-02-03 18:10:50 -0600106
107 /* read BAR address */
108 pci_read_config_dword(pdev, bar, &bar_response);
Kumar Galacf5787f2012-09-19 04:47:36 +0000109 pci_bus_addr = (pci_addr_t)(bar_response & ~0xf);
Becky Bruce6e61fae2009-02-03 18:10:50 -0600110
111 /*
112 * Pass "0" as the length argument to pci_bus_to_virt. The arg
113 * isn't actualy used on any platform because u-boot assumes a static
114 * linear mapping. In the future, this could read the BAR size
115 * and pass that as the size if needed.
116 */
117 return pci_bus_to_virt(pdev, pci_bus_addr, flags, 0, MAP_NOCACHE);
118}
119
wdenkc6097192002-11-03 00:24:07 +0000120/*
121 *
122 */
123
John Schmoller96d61602010-10-22 00:20:23 -0500124static struct pci_controller* hose_head;
wdenkc6097192002-11-03 00:24:07 +0000125
126void pci_register_hose(struct pci_controller* hose)
127{
128 struct pci_controller **phose = &hose_head;
129
130 while(*phose)
131 phose = &(*phose)->next;
132
133 hose->next = NULL;
134
135 *phose = hose;
136}
137
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000138struct pci_controller *pci_bus_to_hose(int bus)
wdenkc6097192002-11-03 00:24:07 +0000139{
140 struct pci_controller *hose;
141
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000142 for (hose = hose_head; hose; hose = hose->next) {
wdenkf07771c2003-05-28 08:06:31 +0000143 if (bus >= hose->first_busno && bus <= hose->last_busno)
wdenkc6097192002-11-03 00:24:07 +0000144 return hose;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000145 }
wdenkc6097192002-11-03 00:24:07 +0000146
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200147 printf("pci_bus_to_hose() failed\n");
wdenkc6097192002-11-03 00:24:07 +0000148 return NULL;
149}
150
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600151struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
152{
153 struct pci_controller *hose;
154
155 for (hose = hose_head; hose; hose = hose->next) {
156 if (hose->cfg_addr == cfg_addr)
157 return hose;
158 }
159
160 return NULL;
161}
162
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300163int pci_last_busno(void)
164{
165 struct pci_controller *hose = hose_head;
166
167 if (!hose)
168 return -1;
169
170 while (hose->next)
171 hose = hose->next;
172
173 return hose->last_busno;
174}
175
wdenkc6097192002-11-03 00:24:07 +0000176pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
177{
178 struct pci_controller * hose;
179 u16 vendor, device;
180 u8 header_type;
181 pci_dev_t bdf;
182 int i, bus, found_multi = 0;
183
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000184 for (hose = hose_head; hose; hose = hose->next) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185#ifdef CONFIG_SYS_SCSI_SCAN_BUS_REVERSE
wdenkc6097192002-11-03 00:24:07 +0000186 for (bus = hose->last_busno; bus >= hose->first_busno; bus--)
187#else
188 for (bus = hose->first_busno; bus <= hose->last_busno; bus++)
189#endif
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000190 for (bdf = PCI_BDF(bus, 0, 0);
Heiko Schocherf5e0d032006-06-19 11:02:41 +0200191#if defined(CONFIG_ELPPC) || defined(CONFIG_PPMC7XX)
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000192 bdf < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
193 PCI_MAX_PCI_FUNCTIONS - 1);
wdenkc6097192002-11-03 00:24:07 +0000194#else
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000195 bdf < PCI_BDF(bus + 1, 0, 0);
wdenkc6097192002-11-03 00:24:07 +0000196#endif
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000197 bdf += PCI_BDF(0, 0, 1)) {
Thierry Reding4efe52b2014-11-12 18:26:49 -0700198 if (pci_skip_dev(hose, bdf))
199 continue;
200
wdenkf07771c2003-05-28 08:06:31 +0000201 if (!PCI_FUNC(bdf)) {
wdenkc6097192002-11-03 00:24:07 +0000202 pci_read_config_byte(bdf,
203 PCI_HEADER_TYPE,
204 &header_type);
205
206 found_multi = header_type & 0x80;
wdenkf07771c2003-05-28 08:06:31 +0000207 } else {
wdenkc6097192002-11-03 00:24:07 +0000208 if (!found_multi)
209 continue;
210 }
211
212 pci_read_config_word(bdf,
213 PCI_VENDOR_ID,
214 &vendor);
215 pci_read_config_word(bdf,
216 PCI_DEVICE_ID,
217 &device);
218
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000219 for (i = 0; ids[i].vendor != 0; i++) {
wdenkc6097192002-11-03 00:24:07 +0000220 if (vendor == ids[i].vendor &&
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000221 device == ids[i].device) {
wdenkc6097192002-11-03 00:24:07 +0000222 if (index <= 0)
223 return bdf;
224
225 index--;
226 }
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000227 }
wdenkc6097192002-11-03 00:24:07 +0000228 }
229 }
230
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000231 return -1;
wdenkc6097192002-11-03 00:24:07 +0000232}
233
234pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index)
235{
236 static struct pci_device_id ids[2] = {{}, {0, 0}};
237
238 ids[0].vendor = vendor;
239 ids[0].device = device;
240
241 return pci_find_devices(ids, index);
242}
243
244/*
245 *
246 */
247
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000248int __pci_hose_phys_to_bus(struct pci_controller *hose,
Kumar Gala2d43e872009-02-06 09:49:32 -0600249 phys_addr_t phys_addr,
250 unsigned long flags,
251 unsigned long skip_mask,
252 pci_addr_t *ba)
wdenkc6097192002-11-03 00:24:07 +0000253{
254 struct pci_region *res;
Kumar Gala30e76d52008-10-21 08:36:08 -0500255 pci_addr_t bus_addr;
wdenkc6097192002-11-03 00:24:07 +0000256 int i;
257
wdenkf07771c2003-05-28 08:06:31 +0000258 for (i = 0; i < hose->region_count; i++) {
wdenkc6097192002-11-03 00:24:07 +0000259 res = &hose->regions[i];
260
261 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
262 continue;
263
Kumar Gala2d43e872009-02-06 09:49:32 -0600264 if (res->flags & skip_mask)
265 continue;
266
wdenkc6097192002-11-03 00:24:07 +0000267 bus_addr = phys_addr - res->phys_start + res->bus_start;
268
269 if (bus_addr >= res->bus_start &&
wdenkf07771c2003-05-28 08:06:31 +0000270 bus_addr < res->bus_start + res->size) {
Kumar Gala2d43e872009-02-06 09:49:32 -0600271 *ba = bus_addr;
272 return 0;
wdenkc6097192002-11-03 00:24:07 +0000273 }
274 }
275
Kumar Gala2d43e872009-02-06 09:49:32 -0600276 return 1;
wdenkc6097192002-11-03 00:24:07 +0000277}
278
Kumar Gala2d43e872009-02-06 09:49:32 -0600279pci_addr_t pci_hose_phys_to_bus (struct pci_controller *hose,
280 phys_addr_t phys_addr,
281 unsigned long flags)
282{
283 pci_addr_t bus_addr = 0;
284 int ret;
285
286 if (!hose) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000287 puts("pci_hose_phys_to_bus: invalid hose\n");
Kumar Gala2d43e872009-02-06 09:49:32 -0600288 return bus_addr;
289 }
290
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000291 /*
292 * if PCI_REGION_MEM is set we do a two pass search with preference
293 * on matches that don't have PCI_REGION_SYS_MEMORY set
294 */
Kumar Gala2d43e872009-02-06 09:49:32 -0600295 if ((flags & PCI_REGION_MEM) == PCI_REGION_MEM) {
296 ret = __pci_hose_phys_to_bus(hose, phys_addr,
297 flags, PCI_REGION_SYS_MEMORY, &bus_addr);
298 if (!ret)
299 return bus_addr;
300 }
301
302 ret = __pci_hose_phys_to_bus(hose, phys_addr, flags, 0, &bus_addr);
303
304 if (ret)
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000305 puts("pci_hose_phys_to_bus: invalid physical address\n");
Kumar Gala2d43e872009-02-06 09:49:32 -0600306
307 return bus_addr;
308}
309
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000310int __pci_hose_bus_to_phys(struct pci_controller *hose,
Kumar Gala2d43e872009-02-06 09:49:32 -0600311 pci_addr_t bus_addr,
312 unsigned long flags,
313 unsigned long skip_mask,
314 phys_addr_t *pa)
wdenkc6097192002-11-03 00:24:07 +0000315{
316 struct pci_region *res;
317 int i;
318
wdenkf07771c2003-05-28 08:06:31 +0000319 for (i = 0; i < hose->region_count; i++) {
wdenkc6097192002-11-03 00:24:07 +0000320 res = &hose->regions[i];
321
322 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
323 continue;
324
Kumar Gala2d43e872009-02-06 09:49:32 -0600325 if (res->flags & skip_mask)
326 continue;
327
wdenkc6097192002-11-03 00:24:07 +0000328 if (bus_addr >= res->bus_start &&
Stephen Warrend878c9a2014-08-11 16:09:28 -0600329 (bus_addr - res->bus_start) < res->size) {
Kumar Gala2d43e872009-02-06 09:49:32 -0600330 *pa = (bus_addr - res->bus_start + res->phys_start);
331 return 0;
wdenkc6097192002-11-03 00:24:07 +0000332 }
333 }
334
Kumar Gala2d43e872009-02-06 09:49:32 -0600335 return 1;
336}
wdenkc6097192002-11-03 00:24:07 +0000337
Kumar Gala2d43e872009-02-06 09:49:32 -0600338phys_addr_t pci_hose_bus_to_phys(struct pci_controller* hose,
339 pci_addr_t bus_addr,
340 unsigned long flags)
341{
342 phys_addr_t phys_addr = 0;
343 int ret;
344
345 if (!hose) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000346 puts("pci_hose_bus_to_phys: invalid hose\n");
Kumar Gala2d43e872009-02-06 09:49:32 -0600347 return phys_addr;
348 }
349
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000350 /*
351 * if PCI_REGION_MEM is set we do a two pass search with preference
352 * on matches that don't have PCI_REGION_SYS_MEMORY set
353 */
Kumar Gala2d43e872009-02-06 09:49:32 -0600354 if ((flags & PCI_REGION_MEM) == PCI_REGION_MEM) {
355 ret = __pci_hose_bus_to_phys(hose, bus_addr,
356 flags, PCI_REGION_SYS_MEMORY, &phys_addr);
357 if (!ret)
358 return phys_addr;
359 }
360
361 ret = __pci_hose_bus_to_phys(hose, bus_addr, flags, 0, &phys_addr);
362
363 if (ret)
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000364 puts("pci_hose_bus_to_phys: invalid physical address\n");
Kumar Gala2d43e872009-02-06 09:49:32 -0600365
366 return phys_addr;
wdenkc6097192002-11-03 00:24:07 +0000367}
368
Simon Glasse8a552e2014-11-14 18:18:30 -0700369void pci_write_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum,
370 u32 addr_and_ctrl)
371{
372 int bar;
373
374 bar = PCI_BASE_ADDRESS_0 + barnum * 4;
375 pci_hose_write_config_dword(hose, dev, bar, addr_and_ctrl);
376}
377
378u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum)
379{
380 u32 addr;
381 int bar;
382
383 bar = PCI_BASE_ADDRESS_0 + barnum * 4;
384 pci_hose_read_config_dword(hose, dev, bar, &addr);
385 if (addr & PCI_BASE_ADDRESS_SPACE_IO)
386 return addr & PCI_BASE_ADDRESS_IO_MASK;
387 else
388 return addr & PCI_BASE_ADDRESS_MEM_MASK;
389}
wdenkc6097192002-11-03 00:24:07 +0000390
391int pci_hose_config_device(struct pci_controller *hose,
392 pci_dev_t dev,
393 unsigned long io,
Kumar Gala30e76d52008-10-21 08:36:08 -0500394 pci_addr_t mem,
wdenkc6097192002-11-03 00:24:07 +0000395 unsigned long command)
396{
Kumar Galacf5787f2012-09-19 04:47:36 +0000397 u32 bar_response;
Andrew Sharpaf778c62012-08-01 12:27:16 +0000398 unsigned int old_command;
Kumar Gala30e76d52008-10-21 08:36:08 -0500399 pci_addr_t bar_value;
400 pci_size_t bar_size;
wdenkc6097192002-11-03 00:24:07 +0000401 unsigned char pin;
402 int bar, found_mem64;
403
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000404 debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io,
405 (u64)mem, command);
wdenkc6097192002-11-03 00:24:07 +0000406
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000407 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
wdenkc6097192002-11-03 00:24:07 +0000408
Wolfgang Denk252b4042010-03-09 14:27:25 +0100409 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000410 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
411 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
wdenkc6097192002-11-03 00:24:07 +0000412
413 if (!bar_response)
414 continue;
415
416 found_mem64 = 0;
417
418 /* Check the BAR type and set our address mask */
wdenkf07771c2003-05-28 08:06:31 +0000419 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
wdenkc6097192002-11-03 00:24:07 +0000420 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000421 /* round up region base address to a multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000422 io = ((io - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000423 bar_value = io;
424 /* compute new region base address */
425 io = io + bar_size;
426 } else {
427 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -0500428 PCI_BASE_ADDRESS_MEM_TYPE_64) {
429 u32 bar_response_upper;
430 u64 bar64;
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000431 pci_hose_write_config_dword(hose, dev, bar + 4,
432 0xffffffff);
433 pci_hose_read_config_dword(hose, dev, bar + 4,
434 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000435
Kumar Gala30e76d52008-10-21 08:36:08 -0500436 bar64 = ((u64)bar_response_upper << 32) | bar_response;
437
438 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
439 found_mem64 = 1;
440 } else {
441 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
442 }
wdenkc6097192002-11-03 00:24:07 +0000443
wdenkf07771c2003-05-28 08:06:31 +0000444 /* round up region base address to multiple of size */
wdenkc6097192002-11-03 00:24:07 +0000445 mem = ((mem - 1) | (bar_size - 1)) + 1;
wdenkf07771c2003-05-28 08:06:31 +0000446 bar_value = mem;
447 /* compute new region base address */
448 mem = mem + bar_size;
wdenkc6097192002-11-03 00:24:07 +0000449 }
450
451 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500452 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000453
wdenkf07771c2003-05-28 08:06:31 +0000454 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000455 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500456#ifdef CONFIG_SYS_PCI_64BIT
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000457 pci_hose_write_config_dword(hose, dev, bar,
458 (u32)(bar_value >> 32));
Kumar Gala30e76d52008-10-21 08:36:08 -0500459#else
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000460 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500461#endif
wdenkc6097192002-11-03 00:24:07 +0000462 }
463 }
464
465 /* Configure Cache Line Size Register */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000466 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
wdenkc6097192002-11-03 00:24:07 +0000467
468 /* Configure Latency Timer */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000469 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
wdenkc6097192002-11-03 00:24:07 +0000470
471 /* Disable interrupt line, if device says it wants to use interrupts */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000472 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
wdenkf07771c2003-05-28 08:06:31 +0000473 if (pin != 0) {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000474 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, 0xff);
wdenkc6097192002-11-03 00:24:07 +0000475 }
476
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000477 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
478 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
wdenkf07771c2003-05-28 08:06:31 +0000479 (old_command & 0xffff0000) | command);
wdenkc6097192002-11-03 00:24:07 +0000480
481 return 0;
482}
483
484/*
485 *
486 */
487
488struct pci_config_table *pci_find_config(struct pci_controller *hose,
489 unsigned short class,
490 unsigned int vendor,
491 unsigned int device,
492 unsigned int bus,
493 unsigned int dev,
494 unsigned int func)
495{
496 struct pci_config_table *table;
497
wdenkf07771c2003-05-28 08:06:31 +0000498 for (table = hose->config_table; table && table->vendor; table++) {
wdenkc6097192002-11-03 00:24:07 +0000499 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
500 (table->device == PCI_ANY_ID || table->device == device) &&
501 (table->class == PCI_ANY_ID || table->class == class) &&
502 (table->bus == PCI_ANY_ID || table->bus == bus) &&
503 (table->dev == PCI_ANY_ID || table->dev == dev) &&
wdenkf07771c2003-05-28 08:06:31 +0000504 (table->func == PCI_ANY_ID || table->func == func)) {
wdenkc6097192002-11-03 00:24:07 +0000505 return table;
506 }
507 }
508
509 return NULL;
510}
511
512void pci_cfgfunc_config_device(struct pci_controller *hose,
513 pci_dev_t dev,
514 struct pci_config_table *entry)
515{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000516 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1],
517 entry->priv[2]);
wdenkc6097192002-11-03 00:24:07 +0000518}
519
520void pci_cfgfunc_do_nothing(struct pci_controller *hose,
521 pci_dev_t dev, struct pci_config_table *entry)
522{
523}
524
525/*
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000526 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000527 * to get the correct result when scanning bridges
528 */
529extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000530
Peter Tyser983eb9d2010-10-29 17:59:27 -0500531#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI_SCAN_SHOW)
532const char * pci_class_str(u8 class)
533{
534 switch (class) {
535 case PCI_CLASS_NOT_DEFINED:
536 return "Build before PCI Rev2.0";
537 break;
538 case PCI_BASE_CLASS_STORAGE:
539 return "Mass storage controller";
540 break;
541 case PCI_BASE_CLASS_NETWORK:
542 return "Network controller";
543 break;
544 case PCI_BASE_CLASS_DISPLAY:
545 return "Display controller";
546 break;
547 case PCI_BASE_CLASS_MULTIMEDIA:
548 return "Multimedia device";
549 break;
550 case PCI_BASE_CLASS_MEMORY:
551 return "Memory controller";
552 break;
553 case PCI_BASE_CLASS_BRIDGE:
554 return "Bridge device";
555 break;
556 case PCI_BASE_CLASS_COMMUNICATION:
557 return "Simple comm. controller";
558 break;
559 case PCI_BASE_CLASS_SYSTEM:
560 return "Base system peripheral";
561 break;
562 case PCI_BASE_CLASS_INPUT:
563 return "Input device";
564 break;
565 case PCI_BASE_CLASS_DOCKING:
566 return "Docking station";
567 break;
568 case PCI_BASE_CLASS_PROCESSOR:
569 return "Processor";
570 break;
571 case PCI_BASE_CLASS_SERIAL:
572 return "Serial bus controller";
573 break;
574 case PCI_BASE_CLASS_INTELLIGENT:
575 return "Intelligent controller";
576 break;
577 case PCI_BASE_CLASS_SATELLITE:
578 return "Satellite controller";
579 break;
580 case PCI_BASE_CLASS_CRYPT:
581 return "Cryptographic device";
582 break;
583 case PCI_BASE_CLASS_SIGNAL_PROCESSING:
584 return "DSP";
585 break;
586 case PCI_CLASS_OTHERS:
587 return "Does not fit any class";
588 break;
589 default:
590 return "???";
591 break;
592 };
593}
594#endif /* CONFIG_CMD_PCI || CONFIG_PCI_SCAN_SHOW */
595
Jeroen Hofstee7b19fd62014-10-08 22:57:27 +0200596__weak int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev)
Stefan Roesedc1da422008-07-08 12:01:47 +0200597{
598 /*
599 * Check if pci device should be skipped in configuration
600 */
601 if (dev == PCI_BDF(hose->first_busno, 0, 0)) {
602#if defined(CONFIG_PCI_CONFIG_HOST_BRIDGE) /* don't skip host bridge */
603 /*
604 * Only skip configuration if "pciconfighost" is not set
605 */
606 if (getenv("pciconfighost") == NULL)
607 return 1;
608#else
609 return 1;
610#endif
611 }
612
613 return 0;
614}
Stefan Roesedc1da422008-07-08 12:01:47 +0200615
616#ifdef CONFIG_PCI_SCAN_SHOW
Jeroen Hofstee7b19fd62014-10-08 22:57:27 +0200617__weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
Stefan Roesedc1da422008-07-08 12:01:47 +0200618{
619 if (dev == PCI_BDF(hose->first_busno, 0, 0))
620 return 0;
621
622 return 1;
623}
Stefan Roesedc1da422008-07-08 12:01:47 +0200624#endif /* CONFIG_PCI_SCAN_SHOW */
625
wdenkc6097192002-11-03 00:24:07 +0000626int pci_hose_scan_bus(struct pci_controller *hose, int bus)
627{
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000628 unsigned int sub_bus, found_multi = 0;
wdenkc6097192002-11-03 00:24:07 +0000629 unsigned short vendor, device, class;
630 unsigned char header_type;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000631#ifndef CONFIG_PCI_PNP
wdenkc6097192002-11-03 00:24:07 +0000632 struct pci_config_table *cfg;
Andrew Sharp03992ac2012-08-29 14:16:30 +0000633#endif
wdenkc6097192002-11-03 00:24:07 +0000634 pci_dev_t dev;
Peter Tyser009884a2010-10-29 17:59:29 -0500635#ifdef CONFIG_PCI_SCAN_SHOW
636 static int indent = 0;
637#endif
wdenkc6097192002-11-03 00:24:07 +0000638
639 sub_bus = bus;
640
641 for (dev = PCI_BDF(bus,0,0);
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000642 dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
643 PCI_MAX_PCI_FUNCTIONS - 1);
644 dev += PCI_BDF(0, 0, 1)) {
Stefan Roesedc1da422008-07-08 12:01:47 +0200645
646 if (pci_skip_dev(hose, dev))
647 continue;
wdenkc6097192002-11-03 00:24:07 +0000648
649 if (PCI_FUNC(dev) && !found_multi)
650 continue;
651
652 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
653
654 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
655
Peter Tyser983eb9d2010-10-29 17:59:27 -0500656 if (vendor == 0xffff || vendor == 0x0000)
657 continue;
wdenkc6097192002-11-03 00:24:07 +0000658
Peter Tyser983eb9d2010-10-29 17:59:27 -0500659 if (!PCI_FUNC(dev))
660 found_multi = header_type & 0x80;
wdenkc6097192002-11-03 00:24:07 +0000661
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000662 debug("PCI Scan: Found Bus %d, Device %d, Function %d\n",
663 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
wdenkc6097192002-11-03 00:24:07 +0000664
Peter Tyser983eb9d2010-10-29 17:59:27 -0500665 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
666 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
wdenkc6097192002-11-03 00:24:07 +0000667
Tim Harvey09918662014-08-07 22:49:56 -0700668#ifdef CONFIG_PCI_FIXUP_DEV
669 board_pci_fixup_dev(hose, dev, vendor, device, class);
670#endif
671
Peter Tysera38d2162010-10-29 17:59:28 -0500672#ifdef CONFIG_PCI_SCAN_SHOW
Peter Tyser009884a2010-10-29 17:59:29 -0500673 indent++;
674
675 /* Print leading space, including bus indentation */
676 printf("%*c", indent + 1, ' ');
677
Peter Tysera38d2162010-10-29 17:59:28 -0500678 if (pci_print_dev(hose, dev)) {
Peter Tyser009884a2010-10-29 17:59:29 -0500679 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
680 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
Peter Tysera38d2162010-10-29 17:59:28 -0500681 vendor, device, pci_class_str(class >> 8));
682 }
683#endif
684
Andrew Sharp03992ac2012-08-29 14:16:30 +0000685#ifdef CONFIG_PCI_PNP
Masahiro Yamadab4141192014-11-07 03:03:31 +0900686 sub_bus = max((unsigned int)pciauto_config_device(hose, dev),
687 sub_bus);
Andrew Sharp03992ac2012-08-29 14:16:30 +0000688#else
Peter Tyser983eb9d2010-10-29 17:59:27 -0500689 cfg = pci_find_config(hose, class, vendor, device,
690 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
691 if (cfg) {
692 cfg->config_device(hose, dev, cfg);
Masahiro Yamadab4141192014-11-07 03:03:31 +0900693 sub_bus = max(sub_bus,
694 (unsigned int)hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000695 }
Andrew Sharp03992ac2012-08-29 14:16:30 +0000696#endif
Peter Tysera38d2162010-10-29 17:59:28 -0500697
Peter Tyser009884a2010-10-29 17:59:29 -0500698#ifdef CONFIG_PCI_SCAN_SHOW
699 indent--;
700#endif
701
Peter Tyser983eb9d2010-10-29 17:59:27 -0500702 if (hose->fixup_irq)
703 hose->fixup_irq(hose, dev);
wdenkc6097192002-11-03 00:24:07 +0000704 }
705
706 return sub_bus;
707}
708
709int pci_hose_scan(struct pci_controller *hose)
710{
Anatolij Gustschin0da1fb02011-10-11 22:44:30 +0000711#if defined(CONFIG_PCI_BOOTDELAY)
712 static int pcidelay_done;
713 char *s;
714 int i;
715
716 if (!pcidelay_done) {
717 /* wait "pcidelay" ms (if defined)... */
718 s = getenv("pcidelay");
719 if (s) {
720 int val = simple_strtoul(s, NULL, 10);
721 for (i = 0; i < val; i++)
722 udelay(1000);
723 }
724 pcidelay_done = 1;
725 }
726#endif /* CONFIG_PCI_BOOTDELAY */
727
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000728 /*
729 * Start scan at current_busno.
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500730 * PCIe will start scan at first_busno+1.
731 */
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000732 /* For legacy support, ensure current >= first */
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500733 if (hose->first_busno > hose->current_busno)
734 hose->current_busno = hose->first_busno;
wdenkc6097192002-11-03 00:24:07 +0000735#ifdef CONFIG_PCI_PNP
736 pciauto_config_init(hose);
737#endif
Ed Swarthout40e81ad2007-07-11 14:51:35 -0500738 return pci_hose_scan_bus(hose, hose->current_busno);
wdenkc6097192002-11-03 00:24:07 +0000739}
740
stroesead10dd92003-02-14 11:21:23 +0000741void pci_init(void)
742{
John Schmoller96d61602010-10-22 00:20:23 -0500743 hose_head = NULL;
744
stroesead10dd92003-02-14 11:21:23 +0000745 /* now call board specific pci_init()... */
746 pci_init_board();
747}
Zhao Qiang287df012013-10-12 13:46:33 +0800748
749/* Returns the address of the requested capability structure within the
750 * device's PCI configuration space or 0 in case the device does not
751 * support it.
752 * */
753int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
754 int cap)
755{
756 int pos;
757 u8 hdr_type;
758
759 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type);
760
761 pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F);
762
763 if (pos)
764 pos = pci_find_cap(hose, dev, pos, cap);
765
766 return pos;
767}
768
769/* Find the header pointer to the Capabilities*/
770int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
771 u8 hdr_type)
772{
773 u16 status;
774
775 pci_hose_read_config_word(hose, dev, PCI_STATUS, &status);
776
777 if (!(status & PCI_STATUS_CAP_LIST))
778 return 0;
779
780 switch (hdr_type) {
781 case PCI_HEADER_TYPE_NORMAL:
782 case PCI_HEADER_TYPE_BRIDGE:
783 return PCI_CAPABILITY_LIST;
784 case PCI_HEADER_TYPE_CARDBUS:
785 return PCI_CB_CAPABILITY_LIST;
786 default:
787 return 0;
788 }
789}
790
791int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap)
792{
793 int ttl = PCI_FIND_CAP_TTL;
794 u8 id;
795 u8 next_pos;
796
797 while (ttl--) {
798 pci_hose_read_config_byte(hose, dev, pos, &next_pos);
799 if (next_pos < CAP_START_POS)
800 break;
801 next_pos &= ~3;
802 pos = (int) next_pos;
803 pci_hose_read_config_byte(hose, dev,
804 pos + PCI_CAP_LIST_ID, &id);
805 if (id == 0xff)
806 break;
807 if (id == cap)
808 return pos;
809 pos += PCI_CAP_LIST_NEXT;
810 }
811 return 0;
812}