wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 3 | * Andreas Heppel <aheppel@sysgo.de> |
| 4 | * |
| 5 | * (C) Copyright 2002 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 7 | * Wolfgang Grandegger, DENX Software Engineering, wg@denx.de. |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /* |
| 13 | * PCI routines |
| 14 | */ |
| 15 | |
| 16 | #include <common.h> |
Simon Glass | 0098e17 | 2014-04-10 20:01:30 -0600 | [diff] [blame] | 17 | #include <bootretry.h> |
Simon Glass | 18d6653 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 18 | #include <cli.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 19 | #include <command.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 20 | #include <console.h> |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 21 | #include <dm.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 22 | #include <asm/processor.h> |
| 23 | #include <asm/io.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 24 | #include <pci.h> |
| 25 | |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 26 | struct pci_reg_info { |
| 27 | const char *name; |
| 28 | enum pci_size_t size; |
| 29 | u8 offset; |
| 30 | }; |
| 31 | |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 32 | static int pci_byte_size(enum pci_size_t size) |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 33 | { |
| 34 | switch (size) { |
| 35 | case PCI_SIZE_8: |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 36 | return 1; |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 37 | case PCI_SIZE_16: |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 38 | return 2; |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 39 | case PCI_SIZE_32: |
| 40 | default: |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 41 | return 4; |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 42 | } |
| 43 | } |
| 44 | |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 45 | static int pci_field_width(enum pci_size_t size) |
| 46 | { |
| 47 | return pci_byte_size(size) * 2; |
| 48 | } |
| 49 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_DM_PCI |
| 51 | static void pci_show_regs(struct udevice *dev, struct pci_reg_info *regs) |
| 52 | { |
| 53 | for (; regs->name; regs++) { |
| 54 | unsigned long val; |
| 55 | |
| 56 | dm_pci_read_config(dev, regs->offset, &val, regs->size); |
| 57 | printf(" %s =%*s%#.*lx\n", regs->name, |
| 58 | (int)(28 - strlen(regs->name)), "", |
| 59 | pci_field_width(regs->size), val); |
| 60 | } |
| 61 | } |
| 62 | #else |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 63 | static unsigned long pci_read_config(pci_dev_t dev, int offset, |
| 64 | enum pci_size_t size) |
| 65 | { |
| 66 | u32 val32; |
| 67 | u16 val16; |
| 68 | u8 val8; |
| 69 | |
| 70 | switch (size) { |
| 71 | case PCI_SIZE_8: |
| 72 | pci_read_config_byte(dev, offset, &val8); |
| 73 | return val8; |
| 74 | case PCI_SIZE_16: |
| 75 | pci_read_config_word(dev, offset, &val16); |
| 76 | return val16; |
| 77 | case PCI_SIZE_32: |
| 78 | default: |
| 79 | pci_read_config_dword(dev, offset, &val32); |
| 80 | return val32; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | static void pci_show_regs(pci_dev_t dev, struct pci_reg_info *regs) |
| 85 | { |
| 86 | for (; regs->name; regs++) { |
| 87 | printf(" %s =%*s%#.*lx\n", regs->name, |
| 88 | (int)(28 - strlen(regs->name)), "", |
| 89 | pci_field_width(regs->size), |
| 90 | pci_read_config(dev, regs->offset, regs->size)); |
| 91 | } |
| 92 | } |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 93 | #endif |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 94 | |
| 95 | static struct pci_reg_info regs_start[] = { |
| 96 | { "vendor ID", PCI_SIZE_16, PCI_VENDOR_ID }, |
| 97 | { "device ID", PCI_SIZE_16, PCI_DEVICE_ID }, |
| 98 | { "command register ID", PCI_SIZE_16, PCI_COMMAND }, |
| 99 | { "status register", PCI_SIZE_16, PCI_STATUS }, |
| 100 | { "revision ID", PCI_SIZE_8, PCI_REVISION_ID }, |
| 101 | {}, |
| 102 | }; |
| 103 | |
| 104 | static struct pci_reg_info regs_rest[] = { |
| 105 | { "sub class code", PCI_SIZE_8, PCI_CLASS_SUB_CODE }, |
| 106 | { "programming interface", PCI_SIZE_8, PCI_CLASS_PROG }, |
| 107 | { "cache line", PCI_SIZE_8, PCI_CACHE_LINE_SIZE }, |
| 108 | { "latency time", PCI_SIZE_8, PCI_LATENCY_TIMER }, |
| 109 | { "header type", PCI_SIZE_8, PCI_HEADER_TYPE }, |
| 110 | { "BIST", PCI_SIZE_8, PCI_BIST }, |
| 111 | { "base address 0", PCI_SIZE_32, PCI_BASE_ADDRESS_0 }, |
| 112 | {}, |
| 113 | }; |
| 114 | |
| 115 | static struct pci_reg_info regs_normal[] = { |
| 116 | { "base address 1", PCI_SIZE_32, PCI_BASE_ADDRESS_1 }, |
| 117 | { "base address 2", PCI_SIZE_32, PCI_BASE_ADDRESS_2 }, |
| 118 | { "base address 3", PCI_SIZE_32, PCI_BASE_ADDRESS_3 }, |
| 119 | { "base address 4", PCI_SIZE_32, PCI_BASE_ADDRESS_4 }, |
| 120 | { "base address 5", PCI_SIZE_32, PCI_BASE_ADDRESS_5 }, |
| 121 | { "cardBus CIS pointer", PCI_SIZE_32, PCI_CARDBUS_CIS }, |
| 122 | { "sub system vendor ID", PCI_SIZE_16, PCI_SUBSYSTEM_VENDOR_ID }, |
| 123 | { "sub system ID", PCI_SIZE_16, PCI_SUBSYSTEM_ID }, |
| 124 | { "expansion ROM base address", PCI_SIZE_32, PCI_ROM_ADDRESS }, |
| 125 | { "interrupt line", PCI_SIZE_8, PCI_INTERRUPT_LINE }, |
| 126 | { "interrupt pin", PCI_SIZE_8, PCI_INTERRUPT_PIN }, |
| 127 | { "min Grant", PCI_SIZE_8, PCI_MIN_GNT }, |
| 128 | { "max Latency", PCI_SIZE_8, PCI_MAX_LAT }, |
| 129 | {}, |
| 130 | }; |
| 131 | |
| 132 | static struct pci_reg_info regs_bridge[] = { |
| 133 | { "base address 1", PCI_SIZE_32, PCI_BASE_ADDRESS_1 }, |
| 134 | { "primary bus number", PCI_SIZE_8, PCI_PRIMARY_BUS }, |
| 135 | { "secondary bus number", PCI_SIZE_8, PCI_SECONDARY_BUS }, |
| 136 | { "subordinate bus number", PCI_SIZE_8, PCI_SUBORDINATE_BUS }, |
| 137 | { "secondary latency timer", PCI_SIZE_8, PCI_SEC_LATENCY_TIMER }, |
| 138 | { "IO base", PCI_SIZE_8, PCI_IO_BASE }, |
| 139 | { "IO limit", PCI_SIZE_8, PCI_IO_LIMIT }, |
| 140 | { "secondary status", PCI_SIZE_16, PCI_SEC_STATUS }, |
| 141 | { "memory base", PCI_SIZE_16, PCI_MEMORY_BASE }, |
| 142 | { "memory limit", PCI_SIZE_16, PCI_MEMORY_LIMIT }, |
| 143 | { "prefetch memory base", PCI_SIZE_16, PCI_PREF_MEMORY_BASE }, |
| 144 | { "prefetch memory limit", PCI_SIZE_16, PCI_PREF_MEMORY_LIMIT }, |
| 145 | { "prefetch memory base upper", PCI_SIZE_32, PCI_PREF_BASE_UPPER32 }, |
| 146 | { "prefetch memory limit upper", PCI_SIZE_32, PCI_PREF_LIMIT_UPPER32 }, |
| 147 | { "IO base upper 16 bits", PCI_SIZE_16, PCI_IO_BASE_UPPER16 }, |
| 148 | { "IO limit upper 16 bits", PCI_SIZE_16, PCI_IO_LIMIT_UPPER16 }, |
| 149 | { "expansion ROM base address", PCI_SIZE_32, PCI_ROM_ADDRESS1 }, |
| 150 | { "interrupt line", PCI_SIZE_8, PCI_INTERRUPT_LINE }, |
| 151 | { "interrupt pin", PCI_SIZE_8, PCI_INTERRUPT_PIN }, |
| 152 | { "bridge control", PCI_SIZE_16, PCI_BRIDGE_CONTROL }, |
| 153 | {}, |
| 154 | }; |
| 155 | |
| 156 | static struct pci_reg_info regs_cardbus[] = { |
| 157 | { "capabilities", PCI_SIZE_8, PCI_CB_CAPABILITY_LIST }, |
| 158 | { "secondary status", PCI_SIZE_16, PCI_CB_SEC_STATUS }, |
| 159 | { "primary bus number", PCI_SIZE_8, PCI_CB_PRIMARY_BUS }, |
| 160 | { "CardBus number", PCI_SIZE_8, PCI_CB_CARD_BUS }, |
| 161 | { "subordinate bus number", PCI_SIZE_8, PCI_CB_SUBORDINATE_BUS }, |
| 162 | { "CardBus latency timer", PCI_SIZE_8, PCI_CB_LATENCY_TIMER }, |
| 163 | { "CardBus memory base 0", PCI_SIZE_32, PCI_CB_MEMORY_BASE_0 }, |
| 164 | { "CardBus memory limit 0", PCI_SIZE_32, PCI_CB_MEMORY_LIMIT_0 }, |
| 165 | { "CardBus memory base 1", PCI_SIZE_32, PCI_CB_MEMORY_BASE_1 }, |
| 166 | { "CardBus memory limit 1", PCI_SIZE_32, PCI_CB_MEMORY_LIMIT_1 }, |
| 167 | { "CardBus IO base 0", PCI_SIZE_16, PCI_CB_IO_BASE_0 }, |
| 168 | { "CardBus IO base high 0", PCI_SIZE_16, PCI_CB_IO_BASE_0_HI }, |
| 169 | { "CardBus IO limit 0", PCI_SIZE_16, PCI_CB_IO_LIMIT_0 }, |
| 170 | { "CardBus IO limit high 0", PCI_SIZE_16, PCI_CB_IO_LIMIT_0_HI }, |
| 171 | { "CardBus IO base 1", PCI_SIZE_16, PCI_CB_IO_BASE_1 }, |
| 172 | { "CardBus IO base high 1", PCI_SIZE_16, PCI_CB_IO_BASE_1_HI }, |
| 173 | { "CardBus IO limit 1", PCI_SIZE_16, PCI_CB_IO_LIMIT_1 }, |
| 174 | { "CardBus IO limit high 1", PCI_SIZE_16, PCI_CB_IO_LIMIT_1_HI }, |
| 175 | { "interrupt line", PCI_SIZE_8, PCI_INTERRUPT_LINE }, |
| 176 | { "interrupt pin", PCI_SIZE_8, PCI_INTERRUPT_PIN }, |
| 177 | { "bridge control", PCI_SIZE_16, PCI_CB_BRIDGE_CONTROL }, |
| 178 | { "subvendor ID", PCI_SIZE_16, PCI_CB_SUBSYSTEM_VENDOR_ID }, |
| 179 | { "subdevice ID", PCI_SIZE_16, PCI_CB_SUBSYSTEM_ID }, |
| 180 | { "PC Card 16bit base address", PCI_SIZE_32, PCI_CB_LEGACY_MODE_BASE }, |
| 181 | {}, |
| 182 | }; |
| 183 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 184 | /** |
| 185 | * pci_header_show() - Show the header of the specified PCI device. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 186 | * |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 187 | * @dev: Bus+Device+Function number |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 188 | */ |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 189 | #ifdef CONFIG_DM_PCI |
| 190 | void pci_header_show(struct udevice *dev) |
| 191 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 192 | void pci_header_show(pci_dev_t dev) |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 193 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 194 | { |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 195 | #ifdef CONFIG_DM_PCI |
| 196 | unsigned long class, header_type; |
| 197 | |
| 198 | dm_pci_read_config(dev, PCI_CLASS_CODE, &class, PCI_SIZE_8); |
| 199 | dm_pci_read_config(dev, PCI_HEADER_TYPE, &header_type, PCI_SIZE_8); |
| 200 | #else |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 201 | u8 class, header_type; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 202 | |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 203 | pci_read_config_byte(dev, PCI_CLASS_CODE, &class); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 204 | pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 205 | #endif |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 206 | pci_show_regs(dev, regs_start); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 207 | printf(" class code = 0x%.2x (%s)\n", (int)class, |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 208 | pci_class_str(class)); |
| 209 | pci_show_regs(dev, regs_rest); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 210 | |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 211 | switch (header_type & 0x03) { |
| 212 | case PCI_HEADER_TYPE_NORMAL: /* "normal" PCI device */ |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 213 | pci_show_regs(dev, regs_normal); |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 214 | break; |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 215 | case PCI_HEADER_TYPE_BRIDGE: /* PCI-to-PCI bridge */ |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 216 | pci_show_regs(dev, regs_bridge); |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 217 | break; |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 218 | case PCI_HEADER_TYPE_CARDBUS: /* PCI-to-CardBus bridge */ |
Simon Glass | 07a5887 | 2015-11-26 19:51:20 -0700 | [diff] [blame] | 219 | pci_show_regs(dev, regs_cardbus); |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 220 | break; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 221 | |
wdenk | 7c7a23b | 2002-12-07 00:20:59 +0000 | [diff] [blame] | 222 | default: |
| 223 | printf("unknown header\n"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 224 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 225 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Simon Glass | c4f32bb | 2015-11-26 19:51:28 -0700 | [diff] [blame] | 228 | void pciinfo_header(int busnum, bool short_listing) |
| 229 | { |
| 230 | printf("Scanning PCI devices on bus %d\n", busnum); |
| 231 | |
| 232 | if (short_listing) { |
| 233 | printf("BusDevFun VendorId DeviceId Device Class Sub-Class\n"); |
| 234 | printf("_____________________________________________________________\n"); |
| 235 | } |
| 236 | } |
| 237 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 238 | #ifdef CONFIG_DM_PCI |
| 239 | /** |
| 240 | * pci_header_show_brief() - Show the short-form PCI device header |
| 241 | * |
| 242 | * Reads and prints the header of the specified PCI device in short form. |
| 243 | * |
| 244 | * @dev: PCI device to show |
| 245 | */ |
| 246 | static void pci_header_show_brief(struct udevice *dev) |
| 247 | { |
| 248 | ulong vendor, device; |
| 249 | ulong class, subclass; |
| 250 | |
| 251 | dm_pci_read_config(dev, PCI_VENDOR_ID, &vendor, PCI_SIZE_16); |
| 252 | dm_pci_read_config(dev, PCI_DEVICE_ID, &device, PCI_SIZE_16); |
| 253 | dm_pci_read_config(dev, PCI_CLASS_CODE, &class, PCI_SIZE_8); |
| 254 | dm_pci_read_config(dev, PCI_CLASS_SUB_CODE, &subclass, PCI_SIZE_8); |
| 255 | |
| 256 | printf("0x%.4lx 0x%.4lx %-23s 0x%.2lx\n", |
| 257 | vendor, device, |
| 258 | pci_class_str(class), subclass); |
| 259 | } |
| 260 | |
| 261 | static void pciinfo(struct udevice *bus, bool short_listing) |
| 262 | { |
| 263 | struct udevice *dev; |
| 264 | |
| 265 | pciinfo_header(bus->seq, short_listing); |
| 266 | |
| 267 | for (device_find_first_child(bus, &dev); |
| 268 | dev; |
| 269 | device_find_next_child(&dev)) { |
| 270 | struct pci_child_platdata *pplat; |
| 271 | |
| 272 | pplat = dev_get_parent_platdata(dev); |
| 273 | if (short_listing) { |
| 274 | printf("%02x.%02x.%02x ", bus->seq, |
| 275 | PCI_DEV(pplat->devfn), PCI_FUNC(pplat->devfn)); |
| 276 | pci_header_show_brief(dev); |
| 277 | } else { |
| 278 | printf("\nFound PCI device %02x.%02x.%02x:\n", bus->seq, |
| 279 | PCI_DEV(pplat->devfn), PCI_FUNC(pplat->devfn)); |
| 280 | pci_header_show(dev); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | #else |
| 286 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 287 | /** |
| 288 | * pci_header_show_brief() - Show the short-form PCI device header |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 289 | * |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 290 | * Reads and prints the header of the specified PCI device in short form. |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 291 | * |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 292 | * @dev: Bus+Device+Function number |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 293 | */ |
| 294 | void pci_header_show_brief(pci_dev_t dev) |
| 295 | { |
| 296 | u16 vendor, device; |
| 297 | u8 class, subclass; |
| 298 | |
| 299 | pci_read_config_word(dev, PCI_VENDOR_ID, &vendor); |
| 300 | pci_read_config_word(dev, PCI_DEVICE_ID, &device); |
| 301 | pci_read_config_byte(dev, PCI_CLASS_CODE, &class); |
| 302 | pci_read_config_byte(dev, PCI_CLASS_SUB_CODE, &subclass); |
| 303 | |
| 304 | printf("0x%.4x 0x%.4x %-23s 0x%.2x\n", |
| 305 | vendor, device, |
| 306 | pci_class_str(class), subclass); |
| 307 | } |
| 308 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 309 | /** |
| 310 | * pciinfo() - Show a list of devices on the PCI bus |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 311 | * |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 312 | * Show information about devices on PCI bus. Depending on @short_pci_listing |
| 313 | * the output will be more or less exhaustive. |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 314 | * |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 315 | * @bus_num: The number of the bus to be scanned |
| 316 | * @short_pci_listing: true to use short form, showing only a brief header |
| 317 | * for each device |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 318 | */ |
| 319 | void pciinfo(int bus_num, int short_pci_listing) |
| 320 | { |
| 321 | struct pci_controller *hose = pci_bus_to_hose(bus_num); |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 322 | int device; |
| 323 | int function; |
| 324 | unsigned char header_type; |
| 325 | unsigned short vendor_id; |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 326 | pci_dev_t dev; |
| 327 | int ret; |
| 328 | |
| 329 | if (!hose) |
| 330 | return; |
| 331 | |
Simon Glass | c4f32bb | 2015-11-26 19:51:28 -0700 | [diff] [blame] | 332 | pciinfo_header(bus_num, short_pci_listing); |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 333 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 334 | for (device = 0; device < PCI_MAX_PCI_DEVICES; device++) { |
| 335 | header_type = 0; |
| 336 | vendor_id = 0; |
| 337 | for (function = 0; function < PCI_MAX_PCI_FUNCTIONS; |
| 338 | function++) { |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 339 | /* |
| 340 | * If this is not a multi-function device, we skip |
| 341 | * the rest. |
| 342 | */ |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 343 | if (function && !(header_type & 0x80)) |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 344 | break; |
| 345 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 346 | dev = PCI_BDF(bus_num, device, function); |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 347 | |
| 348 | if (pci_skip_dev(hose, dev)) |
| 349 | continue; |
| 350 | |
| 351 | ret = pci_read_config_word(dev, PCI_VENDOR_ID, |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 352 | &vendor_id); |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 353 | if (ret) |
| 354 | goto error; |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 355 | if ((vendor_id == 0xFFFF) || (vendor_id == 0x0000)) |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 356 | continue; |
| 357 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 358 | if (!function) { |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 359 | pci_read_config_byte(dev, PCI_HEADER_TYPE, |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 360 | &header_type); |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | if (short_pci_listing) { |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 364 | printf("%02x.%02x.%02x ", bus_num, device, |
| 365 | function); |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 366 | pci_header_show_brief(dev); |
| 367 | } else { |
| 368 | printf("\nFound PCI device %02x.%02x.%02x:\n", |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 369 | bus_num, device, function); |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 370 | pci_header_show(dev); |
| 371 | } |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | return; |
| 376 | error: |
| 377 | printf("Cannot read bus configuration: %d\n", ret); |
| 378 | } |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 379 | #endif |
Simon Glass | 49f835f | 2015-11-26 19:51:24 -0700 | [diff] [blame] | 380 | |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 381 | /** |
| 382 | * get_pci_dev() - Convert the "bus.device.function" identifier into a number |
| 383 | * |
| 384 | * @name: Device string in the form "bus.device.function" where each is in hex |
| 385 | * @return encoded pci_dev_t or -1 if the string was invalid |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 386 | */ |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 387 | static pci_dev_t get_pci_dev(char *name) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 388 | { |
| 389 | char cnum[12]; |
| 390 | int len, i, iold, n; |
| 391 | int bdfs[3] = {0,0,0}; |
| 392 | |
| 393 | len = strlen(name); |
| 394 | if (len > 8) |
| 395 | return -1; |
| 396 | for (i = 0, iold = 0, n = 0; i < len; i++) { |
| 397 | if (name[i] == '.') { |
| 398 | memcpy(cnum, &name[iold], i - iold); |
| 399 | cnum[i - iold] = '\0'; |
| 400 | bdfs[n++] = simple_strtoul(cnum, NULL, 16); |
| 401 | iold = i + 1; |
| 402 | } |
| 403 | } |
| 404 | strcpy(cnum, &name[iold]); |
| 405 | if (n == 0) |
| 406 | n = 1; |
| 407 | bdfs[n] = simple_strtoul(cnum, NULL, 16); |
Simon Glass | c2be070 | 2015-11-26 19:51:25 -0700 | [diff] [blame] | 408 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 409 | return PCI_BDF(bdfs[0], bdfs[1], bdfs[2]); |
| 410 | } |
| 411 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 412 | #ifdef CONFIG_DM_PCI |
| 413 | static int pci_cfg_display(struct udevice *dev, ulong addr, |
| 414 | enum pci_size_t size, ulong length) |
| 415 | #else |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 416 | static int pci_cfg_display(pci_dev_t bdf, ulong addr, enum pci_size_t size, |
| 417 | ulong length) |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 418 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 419 | { |
| 420 | #define DISP_LINE_LEN 16 |
| 421 | ulong i, nbytes, linebytes; |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 422 | int byte_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 423 | int rc = 0; |
| 424 | |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 425 | byte_size = pci_byte_size(size); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 426 | if (length == 0) |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 427 | length = 0x40 / byte_size; /* Standard PCI config space */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 428 | |
| 429 | /* Print the lines. |
| 430 | * once, and all accesses are with the specified bus width. |
| 431 | */ |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 432 | nbytes = length * byte_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 433 | do { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 434 | printf("%08lx:", addr); |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 435 | linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes; |
| 436 | for (i = 0; i < linebytes; i += byte_size) { |
| 437 | unsigned long val; |
| 438 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 439 | #ifdef CONFIG_DM_PCI |
| 440 | dm_pci_read_config(dev, addr, &val, size); |
| 441 | #else |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 442 | val = pci_read_config(bdf, addr, size); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 443 | #endif |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 444 | printf(" %0*lx", pci_field_width(size), val); |
| 445 | addr += byte_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 446 | } |
| 447 | printf("\n"); |
| 448 | nbytes -= linebytes; |
| 449 | if (ctrlc()) { |
| 450 | rc = 1; |
| 451 | break; |
| 452 | } |
| 453 | } while (nbytes > 0); |
| 454 | |
| 455 | return (rc); |
| 456 | } |
| 457 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 458 | #ifndef CONFIG_DM_PCI |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 459 | static int pci_cfg_write (pci_dev_t bdf, ulong addr, ulong size, ulong value) |
| 460 | { |
| 461 | if (size == 4) { |
| 462 | pci_write_config_dword(bdf, addr, value); |
| 463 | } |
| 464 | else if (size == 2) { |
| 465 | ushort val = value & 0xffff; |
| 466 | pci_write_config_word(bdf, addr, val); |
| 467 | } |
| 468 | else { |
| 469 | u_char val = value & 0xff; |
| 470 | pci_write_config_byte(bdf, addr, val); |
| 471 | } |
| 472 | return 0; |
| 473 | } |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 474 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 475 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 476 | #ifdef CONFIG_DM_PCI |
| 477 | static int pci_cfg_modify(struct udevice *dev, ulong addr, ulong size, |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 478 | ulong value, int incrflag) |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 479 | #else |
| 480 | static int pci_cfg_modify(pci_dev_t bdf, ulong addr, ulong size, ulong value, |
| 481 | int incrflag) |
| 482 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 483 | { |
| 484 | ulong i; |
| 485 | int nbytes; |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 486 | ulong val; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 487 | |
| 488 | /* Print the address, followed by value. Then accept input for |
| 489 | * the next value. A non-converted value exits. |
| 490 | */ |
| 491 | do { |
| 492 | printf("%08lx:", addr); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 493 | #ifdef CONFIG_DM_PCI |
| 494 | dm_pci_read_config(dev, addr, &val, size); |
| 495 | #else |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 496 | val = pci_read_config(bdf, addr, size); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 497 | #endif |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 498 | printf(" %0*lx", pci_field_width(size), val); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 499 | |
Simon Glass | e1bf824 | 2014-04-10 20:01:27 -0600 | [diff] [blame] | 500 | nbytes = cli_readline(" ? "); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 501 | if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) { |
| 502 | /* <CR> pressed as only input, don't modify current |
| 503 | * location and move to next. "-" pressed will go back. |
| 504 | */ |
| 505 | if (incrflag) |
| 506 | addr += nbytes ? -size : size; |
| 507 | nbytes = 1; |
Simon Glass | b26440f | 2014-04-10 20:01:31 -0600 | [diff] [blame] | 508 | /* good enough to not time out */ |
| 509 | bootretry_reset_cmd_timeout(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 510 | } |
| 511 | #ifdef CONFIG_BOOT_RETRY_TIME |
| 512 | else if (nbytes == -2) { |
| 513 | break; /* timed out, exit the command */ |
| 514 | } |
| 515 | #endif |
| 516 | else { |
| 517 | char *endp; |
| 518 | i = simple_strtoul(console_buffer, &endp, 16); |
| 519 | nbytes = endp - console_buffer; |
| 520 | if (nbytes) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 521 | /* good enough to not time out |
| 522 | */ |
Simon Glass | b26440f | 2014-04-10 20:01:31 -0600 | [diff] [blame] | 523 | bootretry_reset_cmd_timeout(); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 524 | #ifdef CONFIG_DM_PCI |
| 525 | dm_pci_write_config(dev, addr, i, size); |
| 526 | #else |
| 527 | pci_cfg_write(bdf, addr, size, i); |
| 528 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 529 | if (incrflag) |
| 530 | addr += size; |
| 531 | } |
| 532 | } |
| 533 | } while (nbytes); |
| 534 | |
| 535 | return 0; |
| 536 | } |
| 537 | |
| 538 | /* PCI Configuration Space access commands |
| 539 | * |
| 540 | * Syntax: |
| 541 | * pci display[.b, .w, .l] bus.device.function} [addr] [len] |
| 542 | * pci next[.b, .w, .l] bus.device.function [addr] |
| 543 | * pci modify[.b, .w, .l] bus.device.function [addr] |
| 544 | * pci write[.b, .w, .l] bus.device.function addr value |
| 545 | */ |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 546 | static int do_pci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 547 | { |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 548 | ulong addr = 0, value = 0, cmd_size = 0; |
| 549 | enum pci_size_t size = PCI_SIZE_32; |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 550 | #ifdef CONFIG_DM_PCI |
| 551 | struct udevice *dev, *bus; |
| 552 | #else |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 553 | pci_dev_t dev; |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 554 | #endif |
Simon Glass | ca7de76 | 2015-11-26 19:51:19 -0700 | [diff] [blame] | 555 | int busnum = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 556 | pci_dev_t bdf = 0; |
| 557 | char cmd = 's'; |
Simon Glass | bfa4191 | 2015-11-26 19:51:18 -0700 | [diff] [blame] | 558 | int ret = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 559 | |
| 560 | if (argc > 1) |
| 561 | cmd = argv[1][0]; |
| 562 | |
| 563 | switch (cmd) { |
| 564 | case 'd': /* display */ |
| 565 | case 'n': /* next */ |
| 566 | case 'm': /* modify */ |
| 567 | case 'w': /* write */ |
| 568 | /* Check for a size specification. */ |
Simon Glass | 72ef5b6 | 2015-11-26 19:51:26 -0700 | [diff] [blame] | 569 | cmd_size = cmd_get_data_size(argv[1], 4); |
| 570 | size = (cmd_size == 4) ? PCI_SIZE_32 : cmd_size - 1; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 571 | if (argc > 3) |
| 572 | addr = simple_strtoul(argv[3], NULL, 16); |
| 573 | if (argc > 4) |
| 574 | value = simple_strtoul(argv[4], NULL, 16); |
| 575 | case 'h': /* header */ |
| 576 | if (argc < 3) |
| 577 | goto usage; |
| 578 | if ((bdf = get_pci_dev(argv[2])) == -1) |
| 579 | return 1; |
| 580 | break; |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 581 | #if defined(CONFIG_CMD_PCI_ENUM) || defined(CONFIG_DM_PCI) |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 582 | case 'e': |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 583 | pci_init(); |
| 584 | return 0; |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 585 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 586 | default: /* scan bus */ |
| 587 | value = 1; /* short listing */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 588 | if (argc > 1) { |
| 589 | if (argv[argc-1][0] == 'l') { |
| 590 | value = 0; |
| 591 | argc--; |
| 592 | } |
| 593 | if (argc > 1) |
Simon Glass | ca7de76 | 2015-11-26 19:51:19 -0700 | [diff] [blame] | 594 | busnum = simple_strtoul(argv[1], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 595 | } |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 596 | #ifdef CONFIG_DM_PCI |
| 597 | ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, &bus); |
| 598 | if (ret) { |
| 599 | printf("No such bus\n"); |
| 600 | return CMD_RET_FAILURE; |
| 601 | } |
| 602 | pciinfo(bus, value); |
| 603 | #else |
Simon Glass | ca7de76 | 2015-11-26 19:51:19 -0700 | [diff] [blame] | 604 | pciinfo(busnum, value); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 605 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 606 | return 0; |
| 607 | } |
| 608 | |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 609 | #ifdef CONFIG_DM_PCI |
Simon Glass | f3f1fae | 2015-11-29 13:17:48 -0700 | [diff] [blame] | 610 | ret = dm_pci_bus_find_bdf(bdf, &dev); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 611 | if (ret) { |
| 612 | printf("No such device\n"); |
| 613 | return CMD_RET_FAILURE; |
| 614 | } |
| 615 | #else |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 616 | dev = bdf; |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 617 | #endif |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 618 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 619 | switch (argv[1][0]) { |
| 620 | case 'h': /* header */ |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 621 | pci_header_show(dev); |
Simon Glass | bfa4191 | 2015-11-26 19:51:18 -0700 | [diff] [blame] | 622 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 623 | case 'd': /* display */ |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 624 | return pci_cfg_display(dev, addr, size, value); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 625 | case 'n': /* next */ |
| 626 | if (argc < 4) |
| 627 | goto usage; |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 628 | ret = pci_cfg_modify(dev, addr, size, value, 0); |
Simon Glass | bfa4191 | 2015-11-26 19:51:18 -0700 | [diff] [blame] | 629 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 630 | case 'm': /* modify */ |
| 631 | if (argc < 4) |
| 632 | goto usage; |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 633 | ret = pci_cfg_modify(dev, addr, size, value, 1); |
Simon Glass | bfa4191 | 2015-11-26 19:51:18 -0700 | [diff] [blame] | 634 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 635 | case 'w': /* write */ |
| 636 | if (argc < 5) |
| 637 | goto usage; |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 638 | #ifdef CONFIG_DM_PCI |
| 639 | ret = dm_pci_write_config(dev, addr, value, size); |
| 640 | #else |
Simon Glass | 32ec5b3 | 2015-11-26 19:51:27 -0700 | [diff] [blame] | 641 | ret = pci_cfg_write(dev, addr, size, value); |
Simon Glass | cab24b3 | 2015-11-26 19:51:29 -0700 | [diff] [blame] | 642 | #endif |
Simon Glass | bfa4191 | 2015-11-26 19:51:18 -0700 | [diff] [blame] | 643 | break; |
| 644 | default: |
| 645 | ret = CMD_RET_USAGE; |
| 646 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Simon Glass | bfa4191 | 2015-11-26 19:51:18 -0700 | [diff] [blame] | 649 | return ret; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 650 | usage: |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 651 | return CMD_RET_USAGE; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 652 | } |
| 653 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 654 | /***************************************************/ |
| 655 | |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 656 | #ifdef CONFIG_SYS_LONGHELP |
| 657 | static char pci_help_text[] = |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 658 | "[bus] [long]\n" |
| 659 | " - short or long list of PCI devices on bus 'bus'\n" |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 660 | #if defined(CONFIG_CMD_PCI_ENUM) || defined(CONFIG_DM_PCI) |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 661 | "pci enum\n" |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 662 | " - Enumerate PCI buses\n" |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 663 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 664 | "pci header b.d.f\n" |
| 665 | " - show header of PCI device 'bus.device.function'\n" |
| 666 | "pci display[.b, .w, .l] b.d.f [address] [# of objects]\n" |
| 667 | " - display PCI configuration space (CFG)\n" |
| 668 | "pci next[.b, .w, .l] b.d.f address\n" |
| 669 | " - modify, read and keep CFG address\n" |
| 670 | "pci modify[.b, .w, .l] b.d.f address\n" |
| 671 | " - modify, auto increment CFG address\n" |
| 672 | "pci write[.b, .w, .l] b.d.f address value\n" |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 673 | " - write to CFG address"; |
| 674 | #endif |
| 675 | |
| 676 | U_BOOT_CMD( |
| 677 | pci, 5, 1, do_pci, |
| 678 | "list and access PCI Configuration Space", pci_help_text |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 679 | ); |