1 /* 2 * Copyright (c) 2014 Google, Inc 3 * 4 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> 5 * Andreas Heppel <aheppel@sysgo.de> 6 * 7 * (C) Copyright 2002, 2003 8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 9 * 10 * SPDX-License-Identifier: GPL-2.0+ 11 */ 12 13 #include <common.h> 14 #include <dm.h> 15 #include <errno.h> 16 #include <pci.h> 17 #include <asm/io.h> 18 19 const char *pci_class_str(u8 class) 20 { 21 switch (class) { 22 case PCI_CLASS_NOT_DEFINED: 23 return "Build before PCI Rev2.0"; 24 break; 25 case PCI_BASE_CLASS_STORAGE: 26 return "Mass storage controller"; 27 break; 28 case PCI_BASE_CLASS_NETWORK: 29 return "Network controller"; 30 break; 31 case PCI_BASE_CLASS_DISPLAY: 32 return "Display controller"; 33 break; 34 case PCI_BASE_CLASS_MULTIMEDIA: 35 return "Multimedia device"; 36 break; 37 case PCI_BASE_CLASS_MEMORY: 38 return "Memory controller"; 39 break; 40 case PCI_BASE_CLASS_BRIDGE: 41 return "Bridge device"; 42 break; 43 case PCI_BASE_CLASS_COMMUNICATION: 44 return "Simple comm. controller"; 45 break; 46 case PCI_BASE_CLASS_SYSTEM: 47 return "Base system peripheral"; 48 break; 49 case PCI_BASE_CLASS_INPUT: 50 return "Input device"; 51 break; 52 case PCI_BASE_CLASS_DOCKING: 53 return "Docking station"; 54 break; 55 case PCI_BASE_CLASS_PROCESSOR: 56 return "Processor"; 57 break; 58 case PCI_BASE_CLASS_SERIAL: 59 return "Serial bus controller"; 60 break; 61 case PCI_BASE_CLASS_INTELLIGENT: 62 return "Intelligent controller"; 63 break; 64 case PCI_BASE_CLASS_SATELLITE: 65 return "Satellite controller"; 66 break; 67 case PCI_BASE_CLASS_CRYPT: 68 return "Cryptographic device"; 69 break; 70 case PCI_BASE_CLASS_SIGNAL_PROCESSING: 71 return "DSP"; 72 break; 73 case PCI_CLASS_OTHERS: 74 return "Does not fit any class"; 75 break; 76 default: 77 return "???"; 78 break; 79 }; 80 } 81 82 __weak int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev) 83 { 84 /* 85 * Check if pci device should be skipped in configuration 86 */ 87 if (dev == PCI_BDF(hose->first_busno, 0, 0)) { 88 #if defined(CONFIG_PCI_CONFIG_HOST_BRIDGE) /* don't skip host bridge */ 89 /* 90 * Only skip configuration if "pciconfighost" is not set 91 */ 92 if (getenv("pciconfighost") == NULL) 93 return 1; 94 #else 95 return 1; 96 #endif 97 } 98 99 return 0; 100 } 101 102 /* Get a virtual address associated with a BAR region */ 103 void *pci_map_bar(pci_dev_t pdev, int bar, int flags) 104 { 105 pci_addr_t pci_bus_addr; 106 u32 bar_response; 107 108 /* read BAR address */ 109 pci_read_config_dword(pdev, bar, &bar_response); 110 pci_bus_addr = (pci_addr_t)(bar_response & ~0xf); 111 112 /* 113 * Pass "0" as the length argument to pci_bus_to_virt. The arg 114 * isn't actualy used on any platform because u-boot assumes a static 115 * linear mapping. In the future, this could read the BAR size 116 * and pass that as the size if needed. 117 */ 118 return pci_bus_to_virt(pdev, pci_bus_addr, flags, 0, MAP_NOCACHE); 119 } 120 121 void pci_write_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum, 122 u32 addr_and_ctrl) 123 { 124 int bar; 125 126 bar = PCI_BASE_ADDRESS_0 + barnum * 4; 127 pci_hose_write_config_dword(hose, dev, bar, addr_and_ctrl); 128 } 129 130 u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum) 131 { 132 u32 addr; 133 int bar; 134 135 bar = PCI_BASE_ADDRESS_0 + barnum * 4; 136 pci_hose_read_config_dword(hose, dev, bar, &addr); 137 if (addr & PCI_BASE_ADDRESS_SPACE_IO) 138 return addr & PCI_BASE_ADDRESS_IO_MASK; 139 else 140 return addr & PCI_BASE_ADDRESS_MEM_MASK; 141 } 142 143 int __pci_hose_bus_to_phys(struct pci_controller *hose, 144 pci_addr_t bus_addr, 145 unsigned long flags, 146 unsigned long skip_mask, 147 phys_addr_t *pa) 148 { 149 struct pci_region *res; 150 int i; 151 152 for (i = 0; i < hose->region_count; i++) { 153 res = &hose->regions[i]; 154 155 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0) 156 continue; 157 158 if (res->flags & skip_mask) 159 continue; 160 161 if (bus_addr >= res->bus_start && 162 (bus_addr - res->bus_start) < res->size) { 163 *pa = (bus_addr - res->bus_start + res->phys_start); 164 return 0; 165 } 166 } 167 168 return 1; 169 } 170 171 phys_addr_t pci_hose_bus_to_phys(struct pci_controller *hose, 172 pci_addr_t bus_addr, 173 unsigned long flags) 174 { 175 phys_addr_t phys_addr = 0; 176 int ret; 177 178 if (!hose) { 179 puts("pci_hose_bus_to_phys: invalid hose\n"); 180 return phys_addr; 181 } 182 183 #ifdef CONFIG_DM_PCI 184 /* The root controller has the region information */ 185 hose = pci_bus_to_hose(0); 186 #endif 187 188 /* 189 * if PCI_REGION_MEM is set we do a two pass search with preference 190 * on matches that don't have PCI_REGION_SYS_MEMORY set 191 */ 192 if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) { 193 ret = __pci_hose_bus_to_phys(hose, bus_addr, 194 flags, PCI_REGION_SYS_MEMORY, &phys_addr); 195 if (!ret) 196 return phys_addr; 197 } 198 199 ret = __pci_hose_bus_to_phys(hose, bus_addr, flags, 0, &phys_addr); 200 201 if (ret) 202 puts("pci_hose_bus_to_phys: invalid physical address\n"); 203 204 return phys_addr; 205 } 206 207 int __pci_hose_phys_to_bus(struct pci_controller *hose, 208 phys_addr_t phys_addr, 209 unsigned long flags, 210 unsigned long skip_mask, 211 pci_addr_t *ba) 212 { 213 struct pci_region *res; 214 pci_addr_t bus_addr; 215 int i; 216 217 for (i = 0; i < hose->region_count; i++) { 218 res = &hose->regions[i]; 219 220 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0) 221 continue; 222 223 if (res->flags & skip_mask) 224 continue; 225 226 bus_addr = phys_addr - res->phys_start + res->bus_start; 227 228 if (bus_addr >= res->bus_start && 229 (bus_addr - res->bus_start) < res->size) { 230 *ba = bus_addr; 231 return 0; 232 } 233 } 234 235 return 1; 236 } 237 238 pci_addr_t pci_hose_phys_to_bus(struct pci_controller *hose, 239 phys_addr_t phys_addr, 240 unsigned long flags) 241 { 242 pci_addr_t bus_addr = 0; 243 int ret; 244 245 if (!hose) { 246 puts("pci_hose_phys_to_bus: invalid hose\n"); 247 return bus_addr; 248 } 249 250 #ifdef CONFIG_DM_PCI 251 /* The root controller has the region information */ 252 hose = pci_bus_to_hose(0); 253 #endif 254 255 /* 256 * if PCI_REGION_MEM is set we do a two pass search with preference 257 * on matches that don't have PCI_REGION_SYS_MEMORY set 258 */ 259 if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) { 260 ret = __pci_hose_phys_to_bus(hose, phys_addr, 261 flags, PCI_REGION_SYS_MEMORY, &bus_addr); 262 if (!ret) 263 return bus_addr; 264 } 265 266 ret = __pci_hose_phys_to_bus(hose, phys_addr, flags, 0, &bus_addr); 267 268 if (ret) 269 puts("pci_hose_phys_to_bus: invalid physical address\n"); 270 271 return bus_addr; 272 } 273 274 #if !defined(CONFIG_DM_PCI) || defined(CONFIG_DM_PCI_COMPAT) 275 pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index) 276 { 277 struct pci_device_id ids[2] = { {}, {0, 0} }; 278 279 ids[0].vendor = vendor; 280 ids[0].device = device; 281 282 return pci_find_devices(ids, index); 283 } 284 285 pci_dev_t pci_hose_find_devices(struct pci_controller *hose, int busnum, 286 struct pci_device_id *ids, int *indexp) 287 { 288 int found_multi = 0; 289 u16 vendor, device; 290 u8 header_type; 291 pci_dev_t bdf; 292 int i; 293 294 for (bdf = PCI_BDF(busnum, 0, 0); 295 bdf < PCI_BDF(busnum + 1, 0, 0); 296 bdf += PCI_BDF(0, 0, 1)) { 297 if (pci_skip_dev(hose, bdf)) 298 continue; 299 300 if (!PCI_FUNC(bdf)) { 301 pci_read_config_byte(bdf, PCI_HEADER_TYPE, 302 &header_type); 303 found_multi = header_type & 0x80; 304 } else { 305 if (!found_multi) 306 continue; 307 } 308 309 pci_read_config_word(bdf, PCI_VENDOR_ID, &vendor); 310 pci_read_config_word(bdf, PCI_DEVICE_ID, &device); 311 312 for (i = 0; ids[i].vendor != 0; i++) { 313 if (vendor == ids[i].vendor && 314 device == ids[i].device) { 315 if ((*indexp) <= 0) 316 return bdf; 317 318 (*indexp)--; 319 } 320 } 321 } 322 323 return -1; 324 } 325 326 pci_dev_t pci_find_class(uint find_class, int index) 327 { 328 int bus; 329 int devnum; 330 pci_dev_t bdf; 331 uint32_t class; 332 333 for (bus = 0; bus <= pci_last_busno(); bus++) { 334 for (devnum = 0; devnum < PCI_MAX_PCI_DEVICES - 1; devnum++) { 335 pci_read_config_dword(PCI_BDF(bus, devnum, 0), 336 PCI_CLASS_REVISION, &class); 337 if (class >> 16 == 0xffff) 338 continue; 339 340 for (bdf = PCI_BDF(bus, devnum, 0); 341 bdf <= PCI_BDF(bus, devnum, 342 PCI_MAX_PCI_FUNCTIONS - 1); 343 bdf += PCI_BDF(0, 0, 1)) { 344 pci_read_config_dword(bdf, PCI_CLASS_REVISION, 345 &class); 346 class >>= 8; 347 348 if (class != find_class) 349 continue; 350 /* 351 * Decrement the index. We want to return the 352 * correct device, so index is 0 for the first 353 * matching device, 1 for the second, etc. 354 */ 355 if (index) { 356 index--; 357 continue; 358 } 359 /* Return index'th controller. */ 360 return bdf; 361 } 362 } 363 } 364 365 return -ENODEV; 366 } 367 #endif /* !CONFIG_DM_PCI || CONFIG_DM_PCI_COMPAT */ 368