blob: 8742facd888caa4536a3c292749052d72e14e6c9 [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 *
5 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 * Wolfgang Grandegger, DENX Software Engineering, wg@denx.de.
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000010 */
11
12/*
13 * PCI routines
14 */
15
16#include <common.h>
Simon Glass0098e172014-04-10 20:01:30 -060017#include <bootretry.h>
Simon Glass18d66532014-04-10 20:01:25 -060018#include <cli.h>
wdenkc6097192002-11-03 00:24:07 +000019#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070020#include <console.h>
wdenkc6097192002-11-03 00:24:07 +000021#include <asm/processor.h>
22#include <asm/io.h>
wdenkc6097192002-11-03 00:24:07 +000023#include <pci.h>
24
Simon Glass07a58872015-11-26 19:51:20 -070025struct pci_reg_info {
26 const char *name;
27 enum pci_size_t size;
28 u8 offset;
29};
30
Simon Glass72ef5b62015-11-26 19:51:26 -070031static int pci_byte_size(enum pci_size_t size)
Simon Glass07a58872015-11-26 19:51:20 -070032{
33 switch (size) {
34 case PCI_SIZE_8:
Simon Glass72ef5b62015-11-26 19:51:26 -070035 return 1;
Simon Glass07a58872015-11-26 19:51:20 -070036 case PCI_SIZE_16:
Simon Glass72ef5b62015-11-26 19:51:26 -070037 return 2;
Simon Glass07a58872015-11-26 19:51:20 -070038 case PCI_SIZE_32:
39 default:
Simon Glass72ef5b62015-11-26 19:51:26 -070040 return 4;
Simon Glass07a58872015-11-26 19:51:20 -070041 }
42}
43
Simon Glass72ef5b62015-11-26 19:51:26 -070044static int pci_field_width(enum pci_size_t size)
45{
46 return pci_byte_size(size) * 2;
47}
48
Simon Glass07a58872015-11-26 19:51:20 -070049static unsigned long pci_read_config(pci_dev_t dev, int offset,
50 enum pci_size_t size)
51{
52 u32 val32;
53 u16 val16;
54 u8 val8;
55
56 switch (size) {
57 case PCI_SIZE_8:
58 pci_read_config_byte(dev, offset, &val8);
59 return val8;
60 case PCI_SIZE_16:
61 pci_read_config_word(dev, offset, &val16);
62 return val16;
63 case PCI_SIZE_32:
64 default:
65 pci_read_config_dword(dev, offset, &val32);
66 return val32;
67 }
68}
69
70static void pci_show_regs(pci_dev_t dev, struct pci_reg_info *regs)
71{
72 for (; regs->name; regs++) {
73 printf(" %s =%*s%#.*lx\n", regs->name,
74 (int)(28 - strlen(regs->name)), "",
75 pci_field_width(regs->size),
76 pci_read_config(dev, regs->offset, regs->size));
77 }
78}
79
80static struct pci_reg_info regs_start[] = {
81 { "vendor ID", PCI_SIZE_16, PCI_VENDOR_ID },
82 { "device ID", PCI_SIZE_16, PCI_DEVICE_ID },
83 { "command register ID", PCI_SIZE_16, PCI_COMMAND },
84 { "status register", PCI_SIZE_16, PCI_STATUS },
85 { "revision ID", PCI_SIZE_8, PCI_REVISION_ID },
86 {},
87};
88
89static struct pci_reg_info regs_rest[] = {
90 { "sub class code", PCI_SIZE_8, PCI_CLASS_SUB_CODE },
91 { "programming interface", PCI_SIZE_8, PCI_CLASS_PROG },
92 { "cache line", PCI_SIZE_8, PCI_CACHE_LINE_SIZE },
93 { "latency time", PCI_SIZE_8, PCI_LATENCY_TIMER },
94 { "header type", PCI_SIZE_8, PCI_HEADER_TYPE },
95 { "BIST", PCI_SIZE_8, PCI_BIST },
96 { "base address 0", PCI_SIZE_32, PCI_BASE_ADDRESS_0 },
97 {},
98};
99
100static struct pci_reg_info regs_normal[] = {
101 { "base address 1", PCI_SIZE_32, PCI_BASE_ADDRESS_1 },
102 { "base address 2", PCI_SIZE_32, PCI_BASE_ADDRESS_2 },
103 { "base address 3", PCI_SIZE_32, PCI_BASE_ADDRESS_3 },
104 { "base address 4", PCI_SIZE_32, PCI_BASE_ADDRESS_4 },
105 { "base address 5", PCI_SIZE_32, PCI_BASE_ADDRESS_5 },
106 { "cardBus CIS pointer", PCI_SIZE_32, PCI_CARDBUS_CIS },
107 { "sub system vendor ID", PCI_SIZE_16, PCI_SUBSYSTEM_VENDOR_ID },
108 { "sub system ID", PCI_SIZE_16, PCI_SUBSYSTEM_ID },
109 { "expansion ROM base address", PCI_SIZE_32, PCI_ROM_ADDRESS },
110 { "interrupt line", PCI_SIZE_8, PCI_INTERRUPT_LINE },
111 { "interrupt pin", PCI_SIZE_8, PCI_INTERRUPT_PIN },
112 { "min Grant", PCI_SIZE_8, PCI_MIN_GNT },
113 { "max Latency", PCI_SIZE_8, PCI_MAX_LAT },
114 {},
115};
116
117static struct pci_reg_info regs_bridge[] = {
118 { "base address 1", PCI_SIZE_32, PCI_BASE_ADDRESS_1 },
119 { "primary bus number", PCI_SIZE_8, PCI_PRIMARY_BUS },
120 { "secondary bus number", PCI_SIZE_8, PCI_SECONDARY_BUS },
121 { "subordinate bus number", PCI_SIZE_8, PCI_SUBORDINATE_BUS },
122 { "secondary latency timer", PCI_SIZE_8, PCI_SEC_LATENCY_TIMER },
123 { "IO base", PCI_SIZE_8, PCI_IO_BASE },
124 { "IO limit", PCI_SIZE_8, PCI_IO_LIMIT },
125 { "secondary status", PCI_SIZE_16, PCI_SEC_STATUS },
126 { "memory base", PCI_SIZE_16, PCI_MEMORY_BASE },
127 { "memory limit", PCI_SIZE_16, PCI_MEMORY_LIMIT },
128 { "prefetch memory base", PCI_SIZE_16, PCI_PREF_MEMORY_BASE },
129 { "prefetch memory limit", PCI_SIZE_16, PCI_PREF_MEMORY_LIMIT },
130 { "prefetch memory base upper", PCI_SIZE_32, PCI_PREF_BASE_UPPER32 },
131 { "prefetch memory limit upper", PCI_SIZE_32, PCI_PREF_LIMIT_UPPER32 },
132 { "IO base upper 16 bits", PCI_SIZE_16, PCI_IO_BASE_UPPER16 },
133 { "IO limit upper 16 bits", PCI_SIZE_16, PCI_IO_LIMIT_UPPER16 },
134 { "expansion ROM base address", PCI_SIZE_32, PCI_ROM_ADDRESS1 },
135 { "interrupt line", PCI_SIZE_8, PCI_INTERRUPT_LINE },
136 { "interrupt pin", PCI_SIZE_8, PCI_INTERRUPT_PIN },
137 { "bridge control", PCI_SIZE_16, PCI_BRIDGE_CONTROL },
138 {},
139};
140
141static struct pci_reg_info regs_cardbus[] = {
142 { "capabilities", PCI_SIZE_8, PCI_CB_CAPABILITY_LIST },
143 { "secondary status", PCI_SIZE_16, PCI_CB_SEC_STATUS },
144 { "primary bus number", PCI_SIZE_8, PCI_CB_PRIMARY_BUS },
145 { "CardBus number", PCI_SIZE_8, PCI_CB_CARD_BUS },
146 { "subordinate bus number", PCI_SIZE_8, PCI_CB_SUBORDINATE_BUS },
147 { "CardBus latency timer", PCI_SIZE_8, PCI_CB_LATENCY_TIMER },
148 { "CardBus memory base 0", PCI_SIZE_32, PCI_CB_MEMORY_BASE_0 },
149 { "CardBus memory limit 0", PCI_SIZE_32, PCI_CB_MEMORY_LIMIT_0 },
150 { "CardBus memory base 1", PCI_SIZE_32, PCI_CB_MEMORY_BASE_1 },
151 { "CardBus memory limit 1", PCI_SIZE_32, PCI_CB_MEMORY_LIMIT_1 },
152 { "CardBus IO base 0", PCI_SIZE_16, PCI_CB_IO_BASE_0 },
153 { "CardBus IO base high 0", PCI_SIZE_16, PCI_CB_IO_BASE_0_HI },
154 { "CardBus IO limit 0", PCI_SIZE_16, PCI_CB_IO_LIMIT_0 },
155 { "CardBus IO limit high 0", PCI_SIZE_16, PCI_CB_IO_LIMIT_0_HI },
156 { "CardBus IO base 1", PCI_SIZE_16, PCI_CB_IO_BASE_1 },
157 { "CardBus IO base high 1", PCI_SIZE_16, PCI_CB_IO_BASE_1_HI },
158 { "CardBus IO limit 1", PCI_SIZE_16, PCI_CB_IO_LIMIT_1 },
159 { "CardBus IO limit high 1", PCI_SIZE_16, PCI_CB_IO_LIMIT_1_HI },
160 { "interrupt line", PCI_SIZE_8, PCI_INTERRUPT_LINE },
161 { "interrupt pin", PCI_SIZE_8, PCI_INTERRUPT_PIN },
162 { "bridge control", PCI_SIZE_16, PCI_CB_BRIDGE_CONTROL },
163 { "subvendor ID", PCI_SIZE_16, PCI_CB_SUBSYSTEM_VENDOR_ID },
164 { "subdevice ID", PCI_SIZE_16, PCI_CB_SUBSYSTEM_ID },
165 { "PC Card 16bit base address", PCI_SIZE_32, PCI_CB_LEGACY_MODE_BASE },
166 {},
167};
168
Simon Glassc2be0702015-11-26 19:51:25 -0700169/**
170 * pci_header_show() - Show the header of the specified PCI device.
wdenkc6097192002-11-03 00:24:07 +0000171 *
Simon Glassc2be0702015-11-26 19:51:25 -0700172 * @dev: Bus+Device+Function number
wdenkc6097192002-11-03 00:24:07 +0000173 */
174void pci_header_show(pci_dev_t dev)
175{
Simon Glass07a58872015-11-26 19:51:20 -0700176 u8 class, header_type;
wdenkc6097192002-11-03 00:24:07 +0000177
Simon Glass49f835f2015-11-26 19:51:24 -0700178 pci_read_config_byte(dev, PCI_CLASS_CODE, &class);
wdenkc6097192002-11-03 00:24:07 +0000179 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
Simon Glass07a58872015-11-26 19:51:20 -0700180 pci_show_regs(dev, regs_start);
wdenkc6097192002-11-03 00:24:07 +0000181
Simon Glass07a58872015-11-26 19:51:20 -0700182 printf(" class code = 0x%.2x (%s)\n", class,
183 pci_class_str(class));
184 pci_show_regs(dev, regs_rest);
wdenkc6097192002-11-03 00:24:07 +0000185
wdenk7c7a23b2002-12-07 00:20:59 +0000186 switch (header_type & 0x03) {
187 case PCI_HEADER_TYPE_NORMAL: /* "normal" PCI device */
Simon Glass07a58872015-11-26 19:51:20 -0700188 pci_show_regs(dev, regs_normal);
wdenk7c7a23b2002-12-07 00:20:59 +0000189 break;
wdenk7c7a23b2002-12-07 00:20:59 +0000190 case PCI_HEADER_TYPE_BRIDGE: /* PCI-to-PCI bridge */
Simon Glass07a58872015-11-26 19:51:20 -0700191 pci_show_regs(dev, regs_bridge);
wdenk7c7a23b2002-12-07 00:20:59 +0000192 break;
wdenk7c7a23b2002-12-07 00:20:59 +0000193 case PCI_HEADER_TYPE_CARDBUS: /* PCI-to-CardBus bridge */
Simon Glass07a58872015-11-26 19:51:20 -0700194 pci_show_regs(dev, regs_cardbus);
wdenk7c7a23b2002-12-07 00:20:59 +0000195 break;
wdenk8bde7f72003-06-27 21:31:46 +0000196
wdenk7c7a23b2002-12-07 00:20:59 +0000197 default:
198 printf("unknown header\n");
wdenk8bde7f72003-06-27 21:31:46 +0000199 break;
wdenkc6097192002-11-03 00:24:07 +0000200 }
wdenkc6097192002-11-03 00:24:07 +0000201}
202
Simon Glassc4f32bb2015-11-26 19:51:28 -0700203void pciinfo_header(int busnum, bool short_listing)
204{
205 printf("Scanning PCI devices on bus %d\n", busnum);
206
207 if (short_listing) {
208 printf("BusDevFun VendorId DeviceId Device Class Sub-Class\n");
209 printf("_____________________________________________________________\n");
210 }
211}
212
Simon Glassc2be0702015-11-26 19:51:25 -0700213/**
214 * pci_header_show_brief() - Show the short-form PCI device header
Simon Glass49f835f2015-11-26 19:51:24 -0700215 *
Simon Glassc2be0702015-11-26 19:51:25 -0700216 * Reads and prints the header of the specified PCI device in short form.
Simon Glass49f835f2015-11-26 19:51:24 -0700217 *
Simon Glassc2be0702015-11-26 19:51:25 -0700218 * @dev: Bus+Device+Function number
Simon Glass49f835f2015-11-26 19:51:24 -0700219 */
220void pci_header_show_brief(pci_dev_t dev)
221{
222 u16 vendor, device;
223 u8 class, subclass;
224
225 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
226 pci_read_config_word(dev, PCI_DEVICE_ID, &device);
227 pci_read_config_byte(dev, PCI_CLASS_CODE, &class);
228 pci_read_config_byte(dev, PCI_CLASS_SUB_CODE, &subclass);
229
230 printf("0x%.4x 0x%.4x %-23s 0x%.2x\n",
231 vendor, device,
232 pci_class_str(class), subclass);
233}
234
Simon Glassc2be0702015-11-26 19:51:25 -0700235/**
236 * pciinfo() - Show a list of devices on the PCI bus
Simon Glass49f835f2015-11-26 19:51:24 -0700237 *
Simon Glassc2be0702015-11-26 19:51:25 -0700238 * Show information about devices on PCI bus. Depending on @short_pci_listing
239 * the output will be more or less exhaustive.
Simon Glass49f835f2015-11-26 19:51:24 -0700240 *
Simon Glassc2be0702015-11-26 19:51:25 -0700241 * @bus_num: The number of the bus to be scanned
242 * @short_pci_listing: true to use short form, showing only a brief header
243 * for each device
Simon Glass49f835f2015-11-26 19:51:24 -0700244 */
245void pciinfo(int bus_num, int short_pci_listing)
246{
247 struct pci_controller *hose = pci_bus_to_hose(bus_num);
Simon Glassc2be0702015-11-26 19:51:25 -0700248 int device;
249 int function;
250 unsigned char header_type;
251 unsigned short vendor_id;
Simon Glass49f835f2015-11-26 19:51:24 -0700252 pci_dev_t dev;
253 int ret;
254
255 if (!hose)
256 return;
257
Simon Glassc4f32bb2015-11-26 19:51:28 -0700258 pciinfo_header(bus_num, short_pci_listing);
Simon Glass49f835f2015-11-26 19:51:24 -0700259
Simon Glassc2be0702015-11-26 19:51:25 -0700260 for (device = 0; device < PCI_MAX_PCI_DEVICES; device++) {
261 header_type = 0;
262 vendor_id = 0;
263 for (function = 0; function < PCI_MAX_PCI_FUNCTIONS;
264 function++) {
Simon Glass49f835f2015-11-26 19:51:24 -0700265 /*
266 * If this is not a multi-function device, we skip
267 * the rest.
268 */
Simon Glassc2be0702015-11-26 19:51:25 -0700269 if (function && !(header_type & 0x80))
Simon Glass49f835f2015-11-26 19:51:24 -0700270 break;
271
Simon Glassc2be0702015-11-26 19:51:25 -0700272 dev = PCI_BDF(bus_num, device, function);
Simon Glass49f835f2015-11-26 19:51:24 -0700273
274 if (pci_skip_dev(hose, dev))
275 continue;
276
277 ret = pci_read_config_word(dev, PCI_VENDOR_ID,
Simon Glassc2be0702015-11-26 19:51:25 -0700278 &vendor_id);
Simon Glass49f835f2015-11-26 19:51:24 -0700279 if (ret)
280 goto error;
Simon Glassc2be0702015-11-26 19:51:25 -0700281 if ((vendor_id == 0xFFFF) || (vendor_id == 0x0000))
Simon Glass49f835f2015-11-26 19:51:24 -0700282 continue;
283
Simon Glassc2be0702015-11-26 19:51:25 -0700284 if (!function) {
Simon Glass49f835f2015-11-26 19:51:24 -0700285 pci_read_config_byte(dev, PCI_HEADER_TYPE,
Simon Glassc2be0702015-11-26 19:51:25 -0700286 &header_type);
Simon Glass49f835f2015-11-26 19:51:24 -0700287 }
288
289 if (short_pci_listing) {
Simon Glassc2be0702015-11-26 19:51:25 -0700290 printf("%02x.%02x.%02x ", bus_num, device,
291 function);
Simon Glass49f835f2015-11-26 19:51:24 -0700292 pci_header_show_brief(dev);
293 } else {
294 printf("\nFound PCI device %02x.%02x.%02x:\n",
Simon Glassc2be0702015-11-26 19:51:25 -0700295 bus_num, device, function);
Simon Glass49f835f2015-11-26 19:51:24 -0700296 pci_header_show(dev);
297 }
298 }
299 }
300
301 return;
302error:
303 printf("Cannot read bus configuration: %d\n", ret);
304}
305
306
Simon Glassc2be0702015-11-26 19:51:25 -0700307/**
308 * get_pci_dev() - Convert the "bus.device.function" identifier into a number
309 *
310 * @name: Device string in the form "bus.device.function" where each is in hex
311 * @return encoded pci_dev_t or -1 if the string was invalid
wdenkc6097192002-11-03 00:24:07 +0000312 */
Simon Glassc2be0702015-11-26 19:51:25 -0700313static pci_dev_t get_pci_dev(char *name)
wdenkc6097192002-11-03 00:24:07 +0000314{
315 char cnum[12];
316 int len, i, iold, n;
317 int bdfs[3] = {0,0,0};
318
319 len = strlen(name);
320 if (len > 8)
321 return -1;
322 for (i = 0, iold = 0, n = 0; i < len; i++) {
323 if (name[i] == '.') {
324 memcpy(cnum, &name[iold], i - iold);
325 cnum[i - iold] = '\0';
326 bdfs[n++] = simple_strtoul(cnum, NULL, 16);
327 iold = i + 1;
328 }
329 }
330 strcpy(cnum, &name[iold]);
331 if (n == 0)
332 n = 1;
333 bdfs[n] = simple_strtoul(cnum, NULL, 16);
Simon Glassc2be0702015-11-26 19:51:25 -0700334
wdenkc6097192002-11-03 00:24:07 +0000335 return PCI_BDF(bdfs[0], bdfs[1], bdfs[2]);
336}
337
Simon Glass72ef5b62015-11-26 19:51:26 -0700338static int pci_cfg_display(pci_dev_t bdf, ulong addr, enum pci_size_t size,
339 ulong length)
wdenkc6097192002-11-03 00:24:07 +0000340{
341#define DISP_LINE_LEN 16
342 ulong i, nbytes, linebytes;
Simon Glass72ef5b62015-11-26 19:51:26 -0700343 int byte_size;
wdenkc6097192002-11-03 00:24:07 +0000344 int rc = 0;
345
Simon Glass72ef5b62015-11-26 19:51:26 -0700346 byte_size = pci_byte_size(size);
wdenkc6097192002-11-03 00:24:07 +0000347 if (length == 0)
Simon Glass72ef5b62015-11-26 19:51:26 -0700348 length = 0x40 / byte_size; /* Standard PCI config space */
wdenkc6097192002-11-03 00:24:07 +0000349
350 /* Print the lines.
351 * once, and all accesses are with the specified bus width.
352 */
Simon Glass72ef5b62015-11-26 19:51:26 -0700353 nbytes = length * byte_size;
wdenkc6097192002-11-03 00:24:07 +0000354 do {
wdenkc6097192002-11-03 00:24:07 +0000355 printf("%08lx:", addr);
Simon Glass72ef5b62015-11-26 19:51:26 -0700356 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
357 for (i = 0; i < linebytes; i += byte_size) {
358 unsigned long val;
359
360 val = pci_read_config(bdf, addr, size);
361 printf(" %0*lx", pci_field_width(size), val);
362 addr += byte_size;
wdenkc6097192002-11-03 00:24:07 +0000363 }
364 printf("\n");
365 nbytes -= linebytes;
366 if (ctrlc()) {
367 rc = 1;
368 break;
369 }
370 } while (nbytes > 0);
371
372 return (rc);
373}
374
375static int pci_cfg_write (pci_dev_t bdf, ulong addr, ulong size, ulong value)
376{
377 if (size == 4) {
378 pci_write_config_dword(bdf, addr, value);
379 }
380 else if (size == 2) {
381 ushort val = value & 0xffff;
382 pci_write_config_word(bdf, addr, val);
383 }
384 else {
385 u_char val = value & 0xff;
386 pci_write_config_byte(bdf, addr, val);
387 }
388 return 0;
389}
390
Simon Glass72ef5b62015-11-26 19:51:26 -0700391static int pci_cfg_modify(pci_dev_t bdf, ulong addr, enum pci_size_t size,
392 ulong value, int incrflag)
wdenkc6097192002-11-03 00:24:07 +0000393{
394 ulong i;
395 int nbytes;
Simon Glass72ef5b62015-11-26 19:51:26 -0700396 ulong val;
wdenkc6097192002-11-03 00:24:07 +0000397
398 /* Print the address, followed by value. Then accept input for
399 * the next value. A non-converted value exits.
400 */
401 do {
402 printf("%08lx:", addr);
Simon Glass72ef5b62015-11-26 19:51:26 -0700403 val = pci_read_config(bdf, addr, size);
404 printf(" %0*lx", pci_field_width(size), val);
wdenkc6097192002-11-03 00:24:07 +0000405
Simon Glasse1bf8242014-04-10 20:01:27 -0600406 nbytes = cli_readline(" ? ");
wdenkc6097192002-11-03 00:24:07 +0000407 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
408 /* <CR> pressed as only input, don't modify current
409 * location and move to next. "-" pressed will go back.
410 */
411 if (incrflag)
412 addr += nbytes ? -size : size;
413 nbytes = 1;
Simon Glassb26440f2014-04-10 20:01:31 -0600414 /* good enough to not time out */
415 bootretry_reset_cmd_timeout();
wdenkc6097192002-11-03 00:24:07 +0000416 }
417#ifdef CONFIG_BOOT_RETRY_TIME
418 else if (nbytes == -2) {
419 break; /* timed out, exit the command */
420 }
421#endif
422 else {
423 char *endp;
424 i = simple_strtoul(console_buffer, &endp, 16);
425 nbytes = endp - console_buffer;
426 if (nbytes) {
wdenkc6097192002-11-03 00:24:07 +0000427 /* good enough to not time out
428 */
Simon Glassb26440f2014-04-10 20:01:31 -0600429 bootretry_reset_cmd_timeout();
wdenkc6097192002-11-03 00:24:07 +0000430 pci_cfg_write (bdf, addr, size, i);
431 if (incrflag)
432 addr += size;
433 }
434 }
435 } while (nbytes);
436
437 return 0;
438}
439
440/* PCI Configuration Space access commands
441 *
442 * Syntax:
443 * pci display[.b, .w, .l] bus.device.function} [addr] [len]
444 * pci next[.b, .w, .l] bus.device.function [addr]
445 * pci modify[.b, .w, .l] bus.device.function [addr]
446 * pci write[.b, .w, .l] bus.device.function addr value
447 */
Kim Phillips088f1b12012-10-29 13:34:31 +0000448static int do_pci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +0000449{
Simon Glass72ef5b62015-11-26 19:51:26 -0700450 ulong addr = 0, value = 0, cmd_size = 0;
451 enum pci_size_t size = PCI_SIZE_32;
Simon Glass32ec5b32015-11-26 19:51:27 -0700452 pci_dev_t dev;
Simon Glassca7de762015-11-26 19:51:19 -0700453 int busnum = 0;
wdenkc6097192002-11-03 00:24:07 +0000454 pci_dev_t bdf = 0;
455 char cmd = 's';
Simon Glassbfa41912015-11-26 19:51:18 -0700456 int ret = 0;
wdenkc6097192002-11-03 00:24:07 +0000457
458 if (argc > 1)
459 cmd = argv[1][0];
460
461 switch (cmd) {
462 case 'd': /* display */
463 case 'n': /* next */
464 case 'm': /* modify */
465 case 'w': /* write */
466 /* Check for a size specification. */
Simon Glass72ef5b62015-11-26 19:51:26 -0700467 cmd_size = cmd_get_data_size(argv[1], 4);
468 size = (cmd_size == 4) ? PCI_SIZE_32 : cmd_size - 1;
wdenkc6097192002-11-03 00:24:07 +0000469 if (argc > 3)
470 addr = simple_strtoul(argv[3], NULL, 16);
471 if (argc > 4)
472 value = simple_strtoul(argv[4], NULL, 16);
473 case 'h': /* header */
474 if (argc < 3)
475 goto usage;
476 if ((bdf = get_pci_dev(argv[2])) == -1)
477 return 1;
478 break;
John Schmoller96d61602010-10-22 00:20:23 -0500479#ifdef CONFIG_CMD_PCI_ENUM
480 case 'e':
481 break;
482#endif
wdenkc6097192002-11-03 00:24:07 +0000483 default: /* scan bus */
484 value = 1; /* short listing */
wdenkc6097192002-11-03 00:24:07 +0000485 if (argc > 1) {
486 if (argv[argc-1][0] == 'l') {
487 value = 0;
488 argc--;
489 }
490 if (argc > 1)
Simon Glassca7de762015-11-26 19:51:19 -0700491 busnum = simple_strtoul(argv[1], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000492 }
Simon Glassca7de762015-11-26 19:51:19 -0700493 pciinfo(busnum, value);
wdenkc6097192002-11-03 00:24:07 +0000494 return 0;
495 }
496
Simon Glass32ec5b32015-11-26 19:51:27 -0700497 dev = bdf;
498
wdenkc6097192002-11-03 00:24:07 +0000499 switch (argv[1][0]) {
500 case 'h': /* header */
Simon Glass32ec5b32015-11-26 19:51:27 -0700501 pci_header_show(dev);
Simon Glassbfa41912015-11-26 19:51:18 -0700502 break;
wdenkc6097192002-11-03 00:24:07 +0000503 case 'd': /* display */
Simon Glass32ec5b32015-11-26 19:51:27 -0700504 return pci_cfg_display(dev, addr, size, value);
John Schmoller96d61602010-10-22 00:20:23 -0500505#ifdef CONFIG_CMD_PCI_ENUM
506 case 'e':
Simon Glass871bc922015-11-19 20:26:56 -0700507# ifdef CONFIG_DM_PCI
508 printf("This command is not yet supported with driver model\n");
509# else
John Schmoller96d61602010-10-22 00:20:23 -0500510 pci_init();
Simon Glass871bc922015-11-19 20:26:56 -0700511# endif
Simon Glassbfa41912015-11-26 19:51:18 -0700512 break;
John Schmoller96d61602010-10-22 00:20:23 -0500513#endif
wdenkc6097192002-11-03 00:24:07 +0000514 case 'n': /* next */
515 if (argc < 4)
516 goto usage;
Simon Glass32ec5b32015-11-26 19:51:27 -0700517 ret = pci_cfg_modify(dev, addr, size, value, 0);
Simon Glassbfa41912015-11-26 19:51:18 -0700518 break;
wdenkc6097192002-11-03 00:24:07 +0000519 case 'm': /* modify */
520 if (argc < 4)
521 goto usage;
Simon Glass32ec5b32015-11-26 19:51:27 -0700522 ret = pci_cfg_modify(dev, addr, size, value, 1);
Simon Glassbfa41912015-11-26 19:51:18 -0700523 break;
wdenkc6097192002-11-03 00:24:07 +0000524 case 'w': /* write */
525 if (argc < 5)
526 goto usage;
Simon Glass32ec5b32015-11-26 19:51:27 -0700527 ret = pci_cfg_write(dev, addr, size, value);
Simon Glassbfa41912015-11-26 19:51:18 -0700528 break;
529 default:
530 ret = CMD_RET_USAGE;
531 break;
wdenkc6097192002-11-03 00:24:07 +0000532 }
533
Simon Glassbfa41912015-11-26 19:51:18 -0700534 return ret;
wdenkc6097192002-11-03 00:24:07 +0000535 usage:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000536 return CMD_RET_USAGE;
wdenkc6097192002-11-03 00:24:07 +0000537}
538
wdenk8bde7f72003-06-27 21:31:46 +0000539/***************************************************/
540
Kim Phillips088f1b12012-10-29 13:34:31 +0000541#ifdef CONFIG_SYS_LONGHELP
542static char pci_help_text[] =
wdenk8bde7f72003-06-27 21:31:46 +0000543 "[bus] [long]\n"
544 " - short or long list of PCI devices on bus 'bus'\n"
John Schmoller96d61602010-10-22 00:20:23 -0500545#ifdef CONFIG_CMD_PCI_ENUM
546 "pci enum\n"
547 " - re-enumerate PCI buses\n"
548#endif
wdenk8bde7f72003-06-27 21:31:46 +0000549 "pci header b.d.f\n"
550 " - show header of PCI device 'bus.device.function'\n"
551 "pci display[.b, .w, .l] b.d.f [address] [# of objects]\n"
552 " - display PCI configuration space (CFG)\n"
553 "pci next[.b, .w, .l] b.d.f address\n"
554 " - modify, read and keep CFG address\n"
555 "pci modify[.b, .w, .l] b.d.f address\n"
556 " - modify, auto increment CFG address\n"
557 "pci write[.b, .w, .l] b.d.f address value\n"
Kim Phillips088f1b12012-10-29 13:34:31 +0000558 " - write to CFG address";
559#endif
560
561U_BOOT_CMD(
562 pci, 5, 1, do_pci,
563 "list and access PCI Configuration Space", pci_help_text
wdenk8bde7f72003-06-27 21:31:46 +0000564);