Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 4 | * Andreas Heppel <aheppel@sysgo.de> |
| 5 | * |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 6 | * (C) Copyright 2002, 2003 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 7 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* |
Simon Glass | 2b81e8a | 2015-11-29 13:17:46 -0700 | [diff] [blame] | 11 | * 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. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <common.h> |
Simon Glass | 2cf431c | 2019-11-14 12:57:47 -0700 | [diff] [blame] | 18 | #include <init.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 19 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 20 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 21 | #include <env.h> |
Simon Glass | 250e039 | 2015-01-27 22:13:27 -0700 | [diff] [blame] | 22 | #include <errno.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 23 | #include <asm/processor.h> |
| 24 | #include <asm/io.h> |
| 25 | #include <pci.h> |
| 26 | |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 29 | #define PCI_HOSE_OP(rw, size, type) \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 30 | int pci_hose_##rw##_config_##size(struct pci_controller *hose, \ |
| 31 | pci_dev_t dev, \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 32 | int offset, type value) \ |
| 33 | { \ |
| 34 | return hose->rw##_##size(hose, dev, offset, value); \ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | PCI_HOSE_OP(read, byte, u8 *) |
| 38 | PCI_HOSE_OP(read, word, u16 *) |
| 39 | PCI_HOSE_OP(read, dword, u32 *) |
| 40 | PCI_HOSE_OP(write, byte, u8) |
| 41 | PCI_HOSE_OP(write, word, u16) |
| 42 | PCI_HOSE_OP(write, dword, u32) |
| 43 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 44 | #define PCI_OP(rw, size, type, error_code) \ |
| 45 | int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \ |
| 46 | { \ |
| 47 | struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \ |
| 48 | \ |
| 49 | if (!hose) \ |
| 50 | { \ |
| 51 | error_code; \ |
| 52 | return -1; \ |
| 53 | } \ |
| 54 | \ |
| 55 | return pci_hose_##rw##_config_##size(hose, dev, offset, value); \ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | PCI_OP(read, byte, u8 *, *value = 0xff) |
| 59 | PCI_OP(read, word, u16 *, *value = 0xffff) |
| 60 | PCI_OP(read, dword, u32 *, *value = 0xffffffff) |
| 61 | PCI_OP(write, byte, u8, ) |
| 62 | PCI_OP(write, word, u16, ) |
| 63 | PCI_OP(write, dword, u32, ) |
| 64 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 65 | #define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \ |
| 66 | int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 67 | pci_dev_t dev, \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 68 | int offset, type val) \ |
| 69 | { \ |
| 70 | u32 val32; \ |
| 71 | \ |
Shinya Kuribayashi | 815b5bd | 2007-08-17 12:43:44 +0900 | [diff] [blame] | 72 | if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \ |
| 73 | *val = -1; \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 74 | return -1; \ |
Shinya Kuribayashi | 815b5bd | 2007-08-17 12:43:44 +0900 | [diff] [blame] | 75 | } \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 76 | \ |
| 77 | *val = (val32 >> ((offset & (int)off_mask) * 8)); \ |
| 78 | \ |
| 79 | return 0; \ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 80 | } |
| 81 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 82 | #define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \ |
| 83 | int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 84 | pci_dev_t dev, \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 85 | int offset, type val) \ |
| 86 | { \ |
wdenk | 498b8db | 2004-04-18 22:26:17 +0000 | [diff] [blame] | 87 | u32 val32, mask, ldata, shift; \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 88 | \ |
| 89 | if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\ |
| 90 | return -1; \ |
| 91 | \ |
wdenk | 498b8db | 2004-04-18 22:26:17 +0000 | [diff] [blame] | 92 | shift = ((offset & (int)off_mask) * 8); \ |
| 93 | ldata = (((unsigned long)val) & val_mask) << shift; \ |
| 94 | mask = val_mask << shift; \ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 95 | val32 = (val32 & ~mask) | ldata; \ |
| 96 | \ |
| 97 | if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\ |
| 98 | return -1; \ |
| 99 | \ |
| 100 | return 0; \ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03) |
| 104 | PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02) |
| 105 | PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff) |
| 106 | PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff) |
| 107 | |
| 108 | /* |
| 109 | * |
| 110 | */ |
| 111 | |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 112 | static struct pci_controller* hose_head; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 113 | |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 114 | struct pci_controller *pci_get_hose_head(void) |
| 115 | { |
| 116 | if (gd->hose) |
| 117 | return gd->hose; |
| 118 | |
| 119 | return hose_head; |
| 120 | } |
| 121 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 122 | void pci_register_hose(struct pci_controller* hose) |
| 123 | { |
| 124 | struct pci_controller **phose = &hose_head; |
| 125 | |
| 126 | while(*phose) |
| 127 | phose = &(*phose)->next; |
| 128 | |
| 129 | hose->next = NULL; |
| 130 | |
| 131 | *phose = hose; |
| 132 | } |
| 133 | |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 134 | struct pci_controller *pci_bus_to_hose(int bus) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 135 | { |
| 136 | struct pci_controller *hose; |
| 137 | |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 138 | for (hose = pci_get_hose_head(); hose; hose = hose->next) { |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 139 | if (bus >= hose->first_busno && bus <= hose->last_busno) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 140 | return hose; |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 141 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 142 | |
Rafal Jaworowski | 6902df5 | 2005-10-17 02:39:53 +0200 | [diff] [blame] | 143 | printf("pci_bus_to_hose() failed\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 144 | return NULL; |
| 145 | } |
| 146 | |
Kumar Gala | 3a0e3c2 | 2010-12-17 05:57:25 -0600 | [diff] [blame] | 147 | struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr) |
| 148 | { |
| 149 | struct pci_controller *hose; |
| 150 | |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 151 | for (hose = pci_get_hose_head(); hose; hose = hose->next) { |
Kumar Gala | 3a0e3c2 | 2010-12-17 05:57:25 -0600 | [diff] [blame] | 152 | if (hose->cfg_addr == cfg_addr) |
| 153 | return hose; |
| 154 | } |
| 155 | |
| 156 | return NULL; |
| 157 | } |
| 158 | |
Anton Vorontsov | cc2a8c7 | 2009-02-19 18:20:41 +0300 | [diff] [blame] | 159 | int pci_last_busno(void) |
| 160 | { |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 161 | struct pci_controller *hose = pci_get_hose_head(); |
Anton Vorontsov | cc2a8c7 | 2009-02-19 18:20:41 +0300 | [diff] [blame] | 162 | |
| 163 | if (!hose) |
| 164 | return -1; |
| 165 | |
| 166 | while (hose->next) |
| 167 | hose = hose->next; |
| 168 | |
| 169 | return hose->last_busno; |
| 170 | } |
| 171 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 172 | pci_dev_t pci_find_devices(struct pci_device_id *ids, int index) |
| 173 | { |
| 174 | struct pci_controller * hose; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 175 | pci_dev_t bdf; |
Simon Glass | aab6724 | 2015-03-05 12:25:24 -0700 | [diff] [blame] | 176 | int bus; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 177 | |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 178 | for (hose = pci_get_hose_head(); hose; hose = hose->next) { |
Simon Glass | aab6724 | 2015-03-05 12:25:24 -0700 | [diff] [blame] | 179 | for (bus = hose->first_busno; bus <= hose->last_busno; bus++) { |
Simon Glass | aab6724 | 2015-03-05 12:25:24 -0700 | [diff] [blame] | 180 | bdf = pci_hose_find_devices(hose, bus, ids, &index); |
| 181 | if (bdf != -1) |
Simon Glass | 250e039 | 2015-01-27 22:13:27 -0700 | [diff] [blame] | 182 | return bdf; |
Simon Glass | 250e039 | 2015-01-27 22:13:27 -0700 | [diff] [blame] | 183 | } |
| 184 | } |
| 185 | |
Simon Glass | aab6724 | 2015-03-05 12:25:24 -0700 | [diff] [blame] | 186 | return -1; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Simon Glass | 11503be | 2019-02-16 20:24:40 -0700 | [diff] [blame] | 189 | static int pci_hose_config_device(struct pci_controller *hose, pci_dev_t dev, |
| 190 | ulong io, pci_addr_t mem, ulong command) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 191 | { |
Kumar Gala | cf5787f | 2012-09-19 04:47:36 +0000 | [diff] [blame] | 192 | u32 bar_response; |
Andrew Sharp | af778c6 | 2012-08-01 12:27:16 +0000 | [diff] [blame] | 193 | unsigned int old_command; |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 194 | pci_addr_t bar_value; |
| 195 | pci_size_t bar_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 196 | unsigned char pin; |
| 197 | int bar, found_mem64; |
| 198 | |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 199 | debug("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n", io, |
| 200 | (u64)mem, command); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 201 | |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 202 | pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 203 | |
Wolfgang Denk | 252b404 | 2010-03-09 14:27:25 +0100 | [diff] [blame] | 204 | for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) { |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 205 | pci_hose_write_config_dword(hose, dev, bar, 0xffffffff); |
| 206 | pci_hose_read_config_dword(hose, dev, bar, &bar_response); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 207 | |
| 208 | if (!bar_response) |
| 209 | continue; |
| 210 | |
| 211 | found_mem64 = 0; |
| 212 | |
| 213 | /* Check the BAR type and set our address mask */ |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 214 | if (bar_response & PCI_BASE_ADDRESS_SPACE) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 215 | bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1; |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 216 | /* round up region base address to a multiple of size */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 217 | io = ((io - 1) | (bar_size - 1)) + 1; |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 218 | bar_value = io; |
| 219 | /* compute new region base address */ |
| 220 | io = io + bar_size; |
| 221 | } else { |
| 222 | if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) == |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 223 | PCI_BASE_ADDRESS_MEM_TYPE_64) { |
| 224 | u32 bar_response_upper; |
| 225 | u64 bar64; |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 226 | pci_hose_write_config_dword(hose, dev, bar + 4, |
| 227 | 0xffffffff); |
| 228 | pci_hose_read_config_dword(hose, dev, bar + 4, |
| 229 | &bar_response_upper); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 230 | |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 231 | bar64 = ((u64)bar_response_upper << 32) | bar_response; |
| 232 | |
| 233 | bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1; |
| 234 | found_mem64 = 1; |
| 235 | } else { |
| 236 | bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1); |
| 237 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 238 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 239 | /* round up region base address to multiple of size */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 240 | mem = ((mem - 1) | (bar_size - 1)) + 1; |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 241 | bar_value = mem; |
| 242 | /* compute new region base address */ |
| 243 | mem = mem + bar_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /* Write it out and update our limit */ |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 247 | pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 248 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 249 | if (found_mem64) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 250 | bar += 4; |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 251 | #ifdef CONFIG_SYS_PCI_64BIT |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 252 | pci_hose_write_config_dword(hose, dev, bar, |
| 253 | (u32)(bar_value >> 32)); |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 254 | #else |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 255 | pci_hose_write_config_dword(hose, dev, bar, 0x00000000); |
Kumar Gala | 30e76d5 | 2008-10-21 08:36:08 -0500 | [diff] [blame] | 256 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
| 260 | /* Configure Cache Line Size Register */ |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 261 | pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 262 | |
| 263 | /* Configure Latency Timer */ |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 264 | pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 265 | |
| 266 | /* Disable interrupt line, if device says it wants to use interrupts */ |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 267 | pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin); |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 268 | if (pin != 0) { |
Simon Glass | 5f48d79 | 2015-07-27 15:47:17 -0600 | [diff] [blame] | 269 | pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, |
| 270 | PCI_INTERRUPT_LINE_DISABLE); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 271 | } |
| 272 | |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 273 | pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command); |
| 274 | pci_hose_write_config_dword(hose, dev, PCI_COMMAND, |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 275 | (old_command & 0xffff0000) | command); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 276 | |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | /* |
| 281 | * |
| 282 | */ |
| 283 | |
| 284 | struct pci_config_table *pci_find_config(struct pci_controller *hose, |
| 285 | unsigned short class, |
| 286 | unsigned int vendor, |
| 287 | unsigned int device, |
| 288 | unsigned int bus, |
| 289 | unsigned int dev, |
| 290 | unsigned int func) |
| 291 | { |
| 292 | struct pci_config_table *table; |
| 293 | |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 294 | for (table = hose->config_table; table && table->vendor; table++) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 295 | if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) && |
| 296 | (table->device == PCI_ANY_ID || table->device == device) && |
| 297 | (table->class == PCI_ANY_ID || table->class == class) && |
| 298 | (table->bus == PCI_ANY_ID || table->bus == bus) && |
| 299 | (table->dev == PCI_ANY_ID || table->dev == dev) && |
wdenk | f07771c | 2003-05-28 08:06:31 +0000 | [diff] [blame] | 300 | (table->func == PCI_ANY_ID || table->func == func)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 301 | return table; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | return NULL; |
| 306 | } |
| 307 | |
| 308 | void pci_cfgfunc_config_device(struct pci_controller *hose, |
| 309 | pci_dev_t dev, |
| 310 | struct pci_config_table *entry) |
| 311 | { |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 312 | pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1], |
| 313 | entry->priv[2]); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | void pci_cfgfunc_do_nothing(struct pci_controller *hose, |
| 317 | pci_dev_t dev, struct pci_config_table *entry) |
| 318 | { |
| 319 | } |
| 320 | |
| 321 | /* |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 322 | * HJF: Changed this to return int. I think this is required |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 323 | * to get the correct result when scanning bridges |
| 324 | */ |
| 325 | extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 326 | |
Stefan Roese | dc1da42 | 2008-07-08 12:01:47 +0200 | [diff] [blame] | 327 | #ifdef CONFIG_PCI_SCAN_SHOW |
Jeroen Hofstee | 7b19fd6 | 2014-10-08 22:57:27 +0200 | [diff] [blame] | 328 | __weak int pci_print_dev(struct pci_controller *hose, pci_dev_t dev) |
Stefan Roese | dc1da42 | 2008-07-08 12:01:47 +0200 | [diff] [blame] | 329 | { |
| 330 | if (dev == PCI_BDF(hose->first_busno, 0, 0)) |
| 331 | return 0; |
| 332 | |
| 333 | return 1; |
| 334 | } |
Stefan Roese | dc1da42 | 2008-07-08 12:01:47 +0200 | [diff] [blame] | 335 | #endif /* CONFIG_PCI_SCAN_SHOW */ |
| 336 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 337 | int pci_hose_scan_bus(struct pci_controller *hose, int bus) |
| 338 | { |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 339 | unsigned int sub_bus, found_multi = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 340 | unsigned short vendor, device, class; |
| 341 | unsigned char header_type; |
Andrew Sharp | 03992ac | 2012-08-29 14:16:30 +0000 | [diff] [blame] | 342 | #ifndef CONFIG_PCI_PNP |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 343 | struct pci_config_table *cfg; |
Andrew Sharp | 03992ac | 2012-08-29 14:16:30 +0000 | [diff] [blame] | 344 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 345 | pci_dev_t dev; |
Peter Tyser | 009884a | 2010-10-29 17:59:29 -0500 | [diff] [blame] | 346 | #ifdef CONFIG_PCI_SCAN_SHOW |
| 347 | static int indent = 0; |
| 348 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 349 | |
| 350 | sub_bus = bus; |
| 351 | |
| 352 | for (dev = PCI_BDF(bus,0,0); |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 353 | dev < PCI_BDF(bus, PCI_MAX_PCI_DEVICES - 1, |
| 354 | PCI_MAX_PCI_FUNCTIONS - 1); |
| 355 | dev += PCI_BDF(0, 0, 1)) { |
Stefan Roese | dc1da42 | 2008-07-08 12:01:47 +0200 | [diff] [blame] | 356 | |
| 357 | if (pci_skip_dev(hose, dev)) |
| 358 | continue; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 359 | |
| 360 | if (PCI_FUNC(dev) && !found_multi) |
| 361 | continue; |
| 362 | |
| 363 | pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type); |
| 364 | |
| 365 | pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor); |
| 366 | |
Peter Tyser | 983eb9d | 2010-10-29 17:59:27 -0500 | [diff] [blame] | 367 | if (vendor == 0xffff || vendor == 0x0000) |
| 368 | continue; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 369 | |
Peter Tyser | 983eb9d | 2010-10-29 17:59:27 -0500 | [diff] [blame] | 370 | if (!PCI_FUNC(dev)) |
| 371 | found_multi = header_type & 0x80; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 372 | |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 373 | debug("PCI Scan: Found Bus %d, Device %d, Function %d\n", |
| 374 | PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 375 | |
Peter Tyser | 983eb9d | 2010-10-29 17:59:27 -0500 | [diff] [blame] | 376 | pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device); |
| 377 | pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 378 | |
Tim Harvey | 0991866 | 2014-08-07 22:49:56 -0700 | [diff] [blame] | 379 | #ifdef CONFIG_PCI_FIXUP_DEV |
| 380 | board_pci_fixup_dev(hose, dev, vendor, device, class); |
| 381 | #endif |
| 382 | |
Peter Tyser | a38d216 | 2010-10-29 17:59:28 -0500 | [diff] [blame] | 383 | #ifdef CONFIG_PCI_SCAN_SHOW |
Peter Tyser | 009884a | 2010-10-29 17:59:29 -0500 | [diff] [blame] | 384 | indent++; |
| 385 | |
| 386 | /* Print leading space, including bus indentation */ |
| 387 | printf("%*c", indent + 1, ' '); |
| 388 | |
Peter Tyser | a38d216 | 2010-10-29 17:59:28 -0500 | [diff] [blame] | 389 | if (pci_print_dev(hose, dev)) { |
Peter Tyser | 009884a | 2010-10-29 17:59:29 -0500 | [diff] [blame] | 390 | printf("%02x:%02x.%-*x - %04x:%04x - %s\n", |
| 391 | PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev), |
Peter Tyser | a38d216 | 2010-10-29 17:59:28 -0500 | [diff] [blame] | 392 | vendor, device, pci_class_str(class >> 8)); |
| 393 | } |
| 394 | #endif |
| 395 | |
Andrew Sharp | 03992ac | 2012-08-29 14:16:30 +0000 | [diff] [blame] | 396 | #ifdef CONFIG_PCI_PNP |
Masahiro Yamada | b414119 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 397 | sub_bus = max((unsigned int)pciauto_config_device(hose, dev), |
| 398 | sub_bus); |
Andrew Sharp | 03992ac | 2012-08-29 14:16:30 +0000 | [diff] [blame] | 399 | #else |
Peter Tyser | 983eb9d | 2010-10-29 17:59:27 -0500 | [diff] [blame] | 400 | cfg = pci_find_config(hose, class, vendor, device, |
| 401 | PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev)); |
| 402 | if (cfg) { |
| 403 | cfg->config_device(hose, dev, cfg); |
Masahiro Yamada | b414119 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 404 | sub_bus = max(sub_bus, |
| 405 | (unsigned int)hose->current_busno); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 406 | } |
Andrew Sharp | 03992ac | 2012-08-29 14:16:30 +0000 | [diff] [blame] | 407 | #endif |
Peter Tyser | a38d216 | 2010-10-29 17:59:28 -0500 | [diff] [blame] | 408 | |
Peter Tyser | 009884a | 2010-10-29 17:59:29 -0500 | [diff] [blame] | 409 | #ifdef CONFIG_PCI_SCAN_SHOW |
| 410 | indent--; |
| 411 | #endif |
| 412 | |
Peter Tyser | 983eb9d | 2010-10-29 17:59:27 -0500 | [diff] [blame] | 413 | if (hose->fixup_irq) |
| 414 | hose->fixup_irq(hose, dev); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | return sub_bus; |
| 418 | } |
| 419 | |
| 420 | int pci_hose_scan(struct pci_controller *hose) |
| 421 | { |
Anatolij Gustschin | 0da1fb0 | 2011-10-11 22:44:30 +0000 | [diff] [blame] | 422 | #if defined(CONFIG_PCI_BOOTDELAY) |
Anatolij Gustschin | 0da1fb0 | 2011-10-11 22:44:30 +0000 | [diff] [blame] | 423 | char *s; |
| 424 | int i; |
| 425 | |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 426 | if (!gd->pcidelay_done) { |
Anatolij Gustschin | 0da1fb0 | 2011-10-11 22:44:30 +0000 | [diff] [blame] | 427 | /* wait "pcidelay" ms (if defined)... */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 428 | s = env_get("pcidelay"); |
Anatolij Gustschin | 0da1fb0 | 2011-10-11 22:44:30 +0000 | [diff] [blame] | 429 | if (s) { |
| 430 | int val = simple_strtoul(s, NULL, 10); |
| 431 | for (i = 0; i < val; i++) |
| 432 | udelay(1000); |
| 433 | } |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 434 | gd->pcidelay_done = 1; |
Anatolij Gustschin | 0da1fb0 | 2011-10-11 22:44:30 +0000 | [diff] [blame] | 435 | } |
| 436 | #endif /* CONFIG_PCI_BOOTDELAY */ |
| 437 | |
Tim Harvey | 0373a7e | 2015-05-08 15:16:07 -0700 | [diff] [blame] | 438 | #ifdef CONFIG_PCI_SCAN_SHOW |
| 439 | puts("PCI:\n"); |
| 440 | #endif |
| 441 | |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 442 | /* |
| 443 | * Start scan at current_busno. |
Ed Swarthout | 40e81ad | 2007-07-11 14:51:35 -0500 | [diff] [blame] | 444 | * PCIe will start scan at first_busno+1. |
| 445 | */ |
Andrew Sharp | cb2bf93 | 2012-08-29 14:16:29 +0000 | [diff] [blame] | 446 | /* For legacy support, ensure current >= first */ |
Ed Swarthout | 40e81ad | 2007-07-11 14:51:35 -0500 | [diff] [blame] | 447 | if (hose->first_busno > hose->current_busno) |
| 448 | hose->current_busno = hose->first_busno; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 449 | #ifdef CONFIG_PCI_PNP |
| 450 | pciauto_config_init(hose); |
| 451 | #endif |
Ed Swarthout | 40e81ad | 2007-07-11 14:51:35 -0500 | [diff] [blame] | 452 | return pci_hose_scan_bus(hose, hose->current_busno); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 453 | } |
| 454 | |
stroese | ad10dd9 | 2003-02-14 11:21:23 +0000 | [diff] [blame] | 455 | void pci_init(void) |
| 456 | { |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 457 | hose_head = NULL; |
| 458 | |
Tim Harvey | ec21aee | 2016-06-17 06:20:25 -0700 | [diff] [blame] | 459 | /* allow env to disable pci init/enum */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 460 | if (env_get("pcidisable") != NULL) |
Tim Harvey | ec21aee | 2016-06-17 06:20:25 -0700 | [diff] [blame] | 461 | return; |
| 462 | |
stroese | ad10dd9 | 2003-02-14 11:21:23 +0000 | [diff] [blame] | 463 | /* now call board specific pci_init()... */ |
| 464 | pci_init_board(); |
| 465 | } |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 466 | |
| 467 | /* Returns the address of the requested capability structure within the |
| 468 | * device's PCI configuration space or 0 in case the device does not |
| 469 | * support it. |
| 470 | * */ |
| 471 | int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev, |
| 472 | int cap) |
| 473 | { |
| 474 | int pos; |
| 475 | u8 hdr_type; |
| 476 | |
| 477 | pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &hdr_type); |
| 478 | |
| 479 | pos = pci_hose_find_cap_start(hose, dev, hdr_type & 0x7F); |
| 480 | |
| 481 | if (pos) |
| 482 | pos = pci_find_cap(hose, dev, pos, cap); |
| 483 | |
| 484 | return pos; |
| 485 | } |
| 486 | |
| 487 | /* Find the header pointer to the Capabilities*/ |
| 488 | int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev, |
| 489 | u8 hdr_type) |
| 490 | { |
| 491 | u16 status; |
| 492 | |
| 493 | pci_hose_read_config_word(hose, dev, PCI_STATUS, &status); |
| 494 | |
| 495 | if (!(status & PCI_STATUS_CAP_LIST)) |
| 496 | return 0; |
| 497 | |
| 498 | switch (hdr_type) { |
| 499 | case PCI_HEADER_TYPE_NORMAL: |
| 500 | case PCI_HEADER_TYPE_BRIDGE: |
| 501 | return PCI_CAPABILITY_LIST; |
| 502 | case PCI_HEADER_TYPE_CARDBUS: |
| 503 | return PCI_CB_CAPABILITY_LIST; |
| 504 | default: |
| 505 | return 0; |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos, int cap) |
| 510 | { |
| 511 | int ttl = PCI_FIND_CAP_TTL; |
| 512 | u8 id; |
| 513 | u8 next_pos; |
| 514 | |
| 515 | while (ttl--) { |
| 516 | pci_hose_read_config_byte(hose, dev, pos, &next_pos); |
| 517 | if (next_pos < CAP_START_POS) |
| 518 | break; |
| 519 | next_pos &= ~3; |
| 520 | pos = (int) next_pos; |
| 521 | pci_hose_read_config_byte(hose, dev, |
| 522 | pos + PCI_CAP_LIST_ID, &id); |
| 523 | if (id == 0xff) |
| 524 | break; |
| 525 | if (id == cap) |
| 526 | return pos; |
| 527 | pos += PCI_CAP_LIST_NEXT; |
| 528 | } |
| 529 | return 0; |
| 530 | } |
Minghuan Lian | ed5b580 | 2015-07-10 11:35:08 +0800 | [diff] [blame] | 531 | |
| 532 | /** |
| 533 | * pci_find_next_ext_capability - Find an extended capability |
| 534 | * |
| 535 | * Returns the address of the next matching extended capability structure |
| 536 | * within the device's PCI configuration space or 0 if the device does |
| 537 | * not support it. Some capabilities can occur several times, e.g., the |
| 538 | * vendor-specific capability, and this provides a way to find them all. |
| 539 | */ |
| 540 | int pci_find_next_ext_capability(struct pci_controller *hose, pci_dev_t dev, |
| 541 | int start, int cap) |
| 542 | { |
| 543 | u32 header; |
| 544 | int ttl, pos = PCI_CFG_SPACE_SIZE; |
| 545 | |
| 546 | /* minimum 8 bytes per capability */ |
| 547 | ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8; |
| 548 | |
| 549 | if (start) |
| 550 | pos = start; |
| 551 | |
| 552 | pci_hose_read_config_dword(hose, dev, pos, &header); |
| 553 | if (header == 0xffffffff || header == 0) |
| 554 | return 0; |
| 555 | |
| 556 | while (ttl-- > 0) { |
| 557 | if (PCI_EXT_CAP_ID(header) == cap && pos != start) |
| 558 | return pos; |
| 559 | |
| 560 | pos = PCI_EXT_CAP_NEXT(header); |
| 561 | if (pos < PCI_CFG_SPACE_SIZE) |
| 562 | break; |
| 563 | |
| 564 | pci_hose_read_config_dword(hose, dev, pos, &header); |
| 565 | if (header == 0xffffffff || header == 0) |
| 566 | break; |
| 567 | } |
| 568 | |
| 569 | return 0; |
| 570 | } |
| 571 | |
| 572 | /** |
| 573 | * pci_hose_find_ext_capability - Find an extended capability |
| 574 | * |
| 575 | * Returns the address of the requested extended capability structure |
| 576 | * within the device's PCI configuration space or 0 if the device does |
| 577 | * not support it. |
| 578 | */ |
| 579 | int pci_hose_find_ext_capability(struct pci_controller *hose, pci_dev_t dev, |
| 580 | int cap) |
| 581 | { |
| 582 | return pci_find_next_ext_capability(hose, dev, 0, cap); |
| 583 | } |