1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Andreas Heppel <aheppel@sysgo.de>
6 * (C) Copyright 2002, 2003
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
13 * Do not change this file. Instead, convert your board to use CONFIG_DM_PCI
14 * and change pci-uclass.c.
21 #include <asm/processor.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 #define PCI_HOSE_OP(rw, size, type) \
28 int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
30 int offset, type value) \
32 return hose->rw##_##size(hose, dev, offset, value); \
35 PCI_HOSE_OP(read, byte, u8 *)
36 PCI_HOSE_OP(read, word, u16 *)
37 PCI_HOSE_OP(read, dword, u32 *)
38 PCI_HOSE_OP(write, byte, u8)
39 PCI_HOSE_OP(write, word, u16)
40 PCI_HOSE_OP(write, dword, u32)
42 #define PCI_OP(rw, size, type, error_code) \
43 int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
45 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
53 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
56 PCI_OP(read, byte, u8 *, *value = 0xff)
57 PCI_OP(read, word, u16 *, *value = 0xffff)
58 PCI_OP(read, dword, u32 *, *value = 0xffffffff)
59 PCI_OP(write, byte, u8, )
60 PCI_OP(write, word, u16, )
61 PCI_OP(write, dword, u32, )
63 #define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
64 int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
66 int offset, type val) \
70 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
75 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
80 #define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
81 int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
83 int offset, type val) \
85 u32 val32, mask, ldata, shift; \
87 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
90 shift = ((offset & (int)off_mask) * 8); \
91 ldata = (((unsigned long)val) & val_mask) << shift; \
92 mask = val_mask << shift; \
93 val32 = (val32 & ~mask) | ldata; \
95 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
101 PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
102 PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
103 PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
104 PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
110 static struct pci_controller* hose_head;
112 struct pci_controller *pci_get_hose_head(void)
120 void pci_register_hose(struct pci_controller* hose)
122 struct pci_controller **phose = &hose_head;
125 phose = &(*phose)->next;
132 struct pci_controller *pci_bus_to_hose(int bus)
134 struct pci_controller *hose;
136 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
137 if (bus >= hose->first_busno && bus <= hose->last_busno)
141 printf("pci_bus_to_hose() failed\n");
145 struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
147 struct pci_controller *hose;
149 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
150 if (hose->cfg_addr == cfg_addr)
157 int pci_last_busno(void)
159 struct pci_controller *hose = pci_get_hose_head();
167 return hose->last_busno;
170 pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
172 struct pci_controller * hose;
176 for (hose = pci_get_hose_head(); hose; hose = hose->next) {
177 for (bus = hose->first_busno; bus <= hose->last_busno; bus++) {
178 bdf = pci_hose_find_devices(hose, bus, ids, &index);
187 static int pci_hose_config_device(struct pci_controller *hose, pci_dev_t dev,
188 ulong io, pci_addr_t mem, ulong command)
191 unsigned int old_command;
192 pci_addr_t bar_value;
195 int bar, found_mem64;
197 debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io,
200 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
202 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
203 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
204 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
211 /* Check the BAR type and set our address mask */
212 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
213 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
214 /* round up region base address to a multiple of size */
215 io = ((io - 1) | (bar_size - 1)) + 1;
217 /* compute new region base address */
220 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
221 PCI_BASE_ADDRESS_MEM_TYPE_64) {
222 u32 bar_response_upper;
224 pci_hose_write_config_dword(hose, dev, bar + 4,
226 pci_hose_read_config_dword(hose, dev, bar + 4,
227 &bar_response_upper);
229 bar64 = ((u64)bar_response_upper << 32) | bar_response;
231 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
234 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
237 /* round up region base address to multiple of size */
238 mem = ((mem - 1) | (bar_size - 1)) + 1;
240 /* compute new region base address */
241 mem = mem + bar_size;
244 /* Write it out and update our limit */
245 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
249 #ifdef CONFIG_SYS_PCI_64BIT
250 pci_hose_write_config_dword(hose, dev, bar,
251 (u32)(bar_value >> 32));
253 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
258 /* Configure Cache Line Size Register */
259 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
261 /* Configure Latency Timer */
262 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
264 /* Disable interrupt line, if device says it wants to use interrupts */
265 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
267 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
268 PCI_INTERRUPT_LINE_DISABLE);
271 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
272 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
273 (old_command & 0xffff0000) | command);
282 struct pci_config_table *pci_find_config(struct pci_controller *hose,
283 unsigned short class,
290 struct pci_config_table *table;
292 for (table = hose->config_table; table && table->vendor; table++) {
293 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) &&
298 (table->func == PCI_ANY_ID || table->func == func)) {
306 void pci_cfgfunc_config_device(struct pci_controller *hose,
308 struct pci_config_table *entry)
310 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1],
314 void pci_cfgfunc_do_nothing(struct pci_controller *hose,
315 pci_dev_t dev, struct pci_config_table *entry)
320 * HJF: Changed this to return int. I think this is required
321 * to get the correct result when scanning bridges
323 extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
325 #ifdef CONFIG_PCI_SCAN_SHOW
326 __weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
328 if (dev == PCI_BDF(hose->first_busno, 0, 0))
333 #endif /* CONFIG_PCI_SCAN_SHOW */
335 int pci_hose_scan_bus(struct pci_controller *hose, int bus)
337 unsigned int sub_bus, found_multi = 0;
338 unsigned short vendor, device, class;
339 unsigned char header_type;
340 #ifndef CONFIG_PCI_PNP
341 struct pci_config_table *cfg;
344 #ifdef CONFIG_PCI_SCAN_SHOW
345 static int indent = 0;
350 for (dev = PCI_BDF(bus,0,0);
351 dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1,
352 PCI_MAX_PCI_FUNCTIONS - 1);
353 dev += PCI_BDF(0, 0, 1)) {
355 if (pci_skip_dev(hose, dev))
358 if (PCI_FUNC(dev) && !found_multi)
361 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
363 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
365 if (vendor == 0xffff || vendor == 0x0000)
369 found_multi = header_type & 0x80;
371 debug("PCI Scan: Found Bus %d, Device %d, Function %d\n",
372 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
374 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
375 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
377 #ifdef CONFIG_PCI_FIXUP_DEV
378 board_pci_fixup_dev(hose, dev, vendor, device, class);
381 #ifdef CONFIG_PCI_SCAN_SHOW
384 /* Print leading space, including bus indentation */
385 printf("%*c", indent + 1, ' ');
387 if (pci_print_dev(hose, dev)) {
388 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
389 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
390 vendor, device, pci_class_str(class >> 8));
394 #ifdef CONFIG_PCI_PNP
395 sub_bus = max((unsigned int)pciauto_config_device(hose, dev),
398 cfg = pci_find_config(hose, class, vendor, device,
399 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
401 cfg->config_device(hose, dev, cfg);
402 sub_bus = max(sub_bus,
403 (unsigned int)hose->current_busno);
407 #ifdef CONFIG_PCI_SCAN_SHOW
412 hose->fixup_irq(hose, dev);
418 int pci_hose_scan(struct pci_controller *hose)
420 #if defined(CONFIG_PCI_BOOTDELAY)
424 if (!gd->pcidelay_done) {
425 /* wait "pcidelay" ms (if defined)... */
426 s = env_get("pcidelay");
428 int val = simple_strtoul(s, NULL, 10);
429 for (i = 0; i < val; i++)
432 gd->pcidelay_done = 1;
434 #endif /* CONFIG_PCI_BOOTDELAY */
436 #ifdef CONFIG_PCI_SCAN_SHOW
441 * Start scan at current_busno.
442 * PCIe will start scan at first_busno+1.
444 /* For legacy support, ensure current >= first */
445 if (hose->first_busno > hose->current_busno)
446 hose->current_busno = hose->first_busno;
447 #ifdef CONFIG_PCI_PNP
448 pciauto_config_init(hose);
450 return pci_hose_scan_bus(hose, hose->current_busno);
457 /* allow env to disable pci init/enum */
458 if (env_get("pcidisable") != NULL)
461 /* now call board specific pci_init()... */
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
469 int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
475 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type);
477 pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F);
480 pos = pci_find_cap(hose, dev, pos, cap);
485 /* Find the header pointer to the Capabilities*/
486 int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
491 pci_hose_read_config_word(hose, dev, PCI_STATUS, &status);
493 if (!(status & PCI_STATUS_CAP_LIST))
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;
507 int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap)
509 int ttl = PCI_FIND_CAP_TTL;
514 pci_hose_read_config_byte(hose, dev, pos, &next_pos);
515 if (next_pos < CAP_START_POS)
518 pos = (int) next_pos;
519 pci_hose_read_config_byte(hose, dev,
520 pos + PCI_CAP_LIST_ID, &id);
525 pos += PCI_CAP_LIST_NEXT;
531 * pci_find_next_ext_capability - Find an extended capability
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.
538 int pci_find_next_ext_capability(struct pci_controller *hose, pci_dev_t dev,
542 int ttl, pos = PCI_CFG_SPACE_SIZE;
544 /* minimum 8 bytes per capability */
545 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
550 pci_hose_read_config_dword(hose, dev, pos, &header);
551 if (header == 0xffffffff || header == 0)
555 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
558 pos = PCI_EXT_CAP_NEXT(header);
559 if (pos < PCI_CFG_SPACE_SIZE)
562 pci_hose_read_config_dword(hose, dev, pos, &header);
563 if (header == 0xffffffff || header == 0)
571 * pci_hose_find_ext_capability - Find an extended capability
573 * Returns the address of the requested extended capability structure
574 * within the device's PCI configuration space or 0 if the device does
577 int pci_hose_find_ext_capability(struct pci_controller *hose, pci_dev_t dev,
580 return pci_find_next_ext_capability(hose, dev, 0, cap);