2 * The PCI Utilities -- Manipulate PCI Configuration Registers
4 * Copyright (c) 1998--2003 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
17 static int force; /* Don't complain if no devices match */
18 static int verbose; /* Verbosity level */
19 static int demo_mode; /* Only show */
21 static struct pci_access *pacc;
30 struct pci_dev **dev_vector;
32 unsigned int width; /* Byte width of the access */
33 int num_values; /* Number of values to write; <0=read */
34 struct value values[0];
37 static struct op *first_op, **last_op = &first_op;
38 static unsigned int max_values[] = { 0, 0xff, 0xffff, 0, 0xffffffff };
40 static struct pci_dev **
41 select_devices(struct pci_filter *filt)
43 struct pci_dev *z, **a, **b;
46 for(z=pacc->devices; z; z=z->next)
47 if (pci_filter_match(filt, z))
49 a = b = xmalloc(sizeof(struct device *) * cnt);
50 for(z=pacc->devices; z; z=z->next)
51 if (pci_filter_match(filt, z))
58 exec_op(struct op *op, struct pci_dev *dev)
60 char *formats[] = { NULL, "%02x", "%04x", NULL, "%08x" };
61 char *mask_formats[] = { NULL, "%02x->(%02x:%02x)->%02x", "%04x->(%04x:%04x)->%04x", NULL, "%08x->(%08x:%08x)->%08x" };
64 int width = op->width;
67 printf("%02x:%02x.%x:%02x", dev->bus, dev->dev, dev->func, op->addr);
69 if (op->num_values >= 0)
71 for(i=0; i<op->num_values; i++)
73 if ((op->values[i].mask & max_values[width]) == max_values[width])
75 x = op->values[i].value;
79 printf(formats[width], op->values[i].value);
87 y = pci_read_byte(dev, addr);
90 y = pci_read_word(dev, addr);
93 y = pci_read_long(dev, addr);
96 x = (y & ~op->values[i].mask) | op->values[i].value;
100 printf(mask_formats[width], y, op->values[i].value, op->values[i].mask, x);
108 pci_write_byte(dev, addr, x);
111 pci_write_word(dev, addr, x);
114 pci_write_long(dev, addr, x);
130 x = pci_read_byte(dev, addr);
133 x = pci_read_word(dev, addr);
136 x = pci_read_long(dev, addr);
139 printf(formats[width], x);
145 execute(struct op *op)
147 struct pci_dev **vec = NULL;
148 struct pci_dev **pdev, *dev;
153 pdev = vec = op->dev_vector;
154 while (dev = *pdev++)
155 for(oops=op; oops && oops->dev_vector == vec; oops=oops->next)
157 while (op && op->dev_vector == vec)
163 scan_ops(struct op *op)
167 if (op->num_values >= 0)
179 static const struct reg_name pci_reg_names[] = {
180 { 0x00, 2, "VENDOR_ID", },
181 { 0x02, 2, "DEVICE_ID", },
182 { 0x04, 2, "COMMAND", },
183 { 0x06, 2, "STATUS", },
184 { 0x08, 1, "REVISION", },
185 { 0x09, 1, "CLASS_PROG", },
186 { 0x0a, 2, "CLASS_DEVICE", },
187 { 0x0c, 1, "CACHE_LINE_SIZE", },
188 { 0x0d, 1, "LATENCY_TIMER", },
189 { 0x0e, 1, "HEADER_TYPE", },
190 { 0x0f, 1, "BIST", },
191 { 0x10, 4, "BASE_ADDRESS_0", },
192 { 0x14, 4, "BASE_ADDRESS_1", },
193 { 0x18, 4, "BASE_ADDRESS_2", },
194 { 0x1c, 4, "BASE_ADDRESS_3", },
195 { 0x20, 4, "BASE_ADDRESS_4", },
196 { 0x24, 4, "BASE_ADDRESS_5", },
197 { 0x28, 4, "CARDBUS_CIS", },
198 { 0x2c, 4, "SUBSYSTEM_VENDOR_ID", },
199 { 0x2e, 2, "SUBSYSTEM_ID", },
200 { 0x30, 4, "ROM_ADDRESS", },
201 { 0x3c, 1, "INTERRUPT_LINE", },
202 { 0x3d, 1, "INTERRUPT_PIN", },
203 { 0x3e, 1, "MIN_GNT", },
204 { 0x3f, 1, "MAX_LAT", },
205 { 0x18, 1, "PRIMARY_BUS", },
206 { 0x19, 1, "SECONDARY_BUS", },
207 { 0x1a, 1, "SUBORDINATE_BUS", },
208 { 0x1b, 1, "SEC_LATENCY_TIMER", },
209 { 0x1c, 1, "IO_BASE", },
210 { 0x1d, 1, "IO_LIMIT", },
211 { 0x1e, 2, "SEC_STATUS", },
212 { 0x20, 2, "MEMORY_BASE", },
213 { 0x22, 2, "MEMORY_LIMIT", },
214 { 0x24, 2, "PREF_MEMORY_BASE", },
215 { 0x26, 2, "PREF_MEMORY_LIMIT", },
216 { 0x28, 4, "PREF_BASE_UPPER32", },
217 { 0x2c, 4, "PREF_LIMIT_UPPER32", },
218 { 0x30, 2, "IO_BASE_UPPER16", },
219 { 0x32, 2, "IO_LIMIT_UPPER16", },
220 { 0x38, 4, "BRIDGE_ROM_ADDRESS", },
221 { 0x3e, 2, "BRIDGE_CONTROL", },
222 { 0x10, 4, "CB_CARDBUS_BASE", },
223 { 0x14, 2, "CB_CAPABILITIES", },
224 { 0x16, 2, "CB_SEC_STATUS", },
225 { 0x18, 1, "CB_BUS_NUMBER", },
226 { 0x19, 1, "CB_CARDBUS_NUMBER", },
227 { 0x1a, 1, "CB_SUBORDINATE_BUS", },
228 { 0x1b, 1, "CB_CARDBUS_LATENCY", },
229 { 0x1c, 4, "CB_MEMORY_BASE_0", },
230 { 0x20, 4, "CB_MEMORY_LIMIT_0", },
231 { 0x24, 4, "CB_MEMORY_BASE_1", },
232 { 0x28, 4, "CB_MEMORY_LIMIT_1", },
233 { 0x2c, 2, "CB_IO_BASE_0", },
234 { 0x2e, 2, "CB_IO_BASE_0_HI", },
235 { 0x30, 2, "CB_IO_LIMIT_0", },
236 { 0x32, 2, "CB_IO_LIMIT_0_HI", },
237 { 0x34, 2, "CB_IO_BASE_1", },
238 { 0x36, 2, "CB_IO_BASE_1_HI", },
239 { 0x38, 2, "CB_IO_LIMIT_1", },
240 { 0x3a, 2, "CB_IO_LIMIT_1_HI", },
241 { 0x40, 2, "CB_SUBSYSTEM_VENDOR_ID", },
242 { 0x42, 2, "CB_SUBSYSTEM_ID", },
243 { 0x44, 4, "CB_LEGACY_MODE_BASE", },
248 usage(char *msg, ...)
254 fprintf(stderr, "setpci: ");
255 vfprintf(stderr, msg, args);
256 fprintf(stderr, "\n\n");
259 "Usage: setpci [<options>] (<device>+ <reg>[=<values>]*)*\n\
260 -f\t\tDon't complain if there's nothing to do\n\
262 -D\t\tList changes, don't commit them\n"
264 "<device>:\t-s [[[<domain>]:][<bus>]:][<slot>][.[<func>]]\n"
265 "\t|\t-d [<vendor>]:[<device>]\n"
266 "<reg>:\t\t<number>[.(B|W|L)]\n"
268 "<values>:\t<value>[,<value>...]\n"
270 " |\t<hex>:<mask>\n");
275 main(int argc, char **argv)
277 enum { STATE_INIT, STATE_GOT_FILTER, STATE_GOT_OP } state = STATE_INIT;
278 struct pci_filter filter;
279 struct pci_dev **selected_devices = NULL;
280 char *opts = GENERIC_OPTIONS ;
282 if (argc == 2 && !strcmp(argv[1], "--version"))
284 puts("setpci version " PCIUTILS_VERSION);
293 while (argc && argv[0][0] == '-')
316 if (e = strchr(opts, *c))
335 if (!parse_generic_option(*e, pacc, arg))
364 if (!c[1] || !strchr("sd", c[1]))
367 d = (c[2] == '=') ? c+3 : c+2;
376 if (state != STATE_GOT_FILTER)
378 pci_filter_init(pacc, &filter);
379 state = STATE_GOT_FILTER;
384 if (d = pci_filter_parse_slot(&filter, d))
388 if (d = pci_filter_parse_id(&filter, d))
395 else if (state == STATE_INIT)
399 if (state == STATE_GOT_FILTER)
400 selected_devices = select_devices(&filter);
401 if (!selected_devices[0] && !force)
402 fprintf(stderr, "setpci: Warning: No devices selected for `%s'.\n", c);
403 state = STATE_GOT_OP;
404 /* look for setting of values and count how many */
410 usage("Missing value");
411 for(e=d, n=1; *e; e++)
414 op = xmalloc(sizeof(struct op) + n*sizeof(struct value));
419 op = xmalloc(sizeof(struct op));
421 op->dev_vector = selected_devices;
428 usage("Missing width");
432 op->width = 1; break;
434 op->width = 2; break;
436 op->width = 4; break;
438 usage("Invalid width \"%s\"", *e);
443 ll = strtol(c, &f, 16);
446 const struct reg_name *r;
447 for(r = pci_reg_names; r->name; r++)
448 if (!strcasecmp(r->name, c))
451 usage("Unknown register \"%s\"", c);
452 if (e && op->width != r->width)
453 usage("Explicit width doesn't correspond with the named register \"%s\"", c);
455 op->width = r->width;
457 if (ll > 0x100 || ll + op->width*((n < 0) ? 1 : n) > 0x100)
458 die("Register number out of range!");
459 if (ll & (op->width - 1))
460 die("Unaligned register address!");
462 /* read in all the values to be set */
468 ll = strtoul(d, &f, 16);
469 lim = max_values[op->width];
470 if (f && *f && *f != ':')
471 usage("Invalid value \"%s\"", d);
472 if (ll > lim && ll < ~0UL - lim)
473 usage("Value \"%s\" is out of range", d);
474 op->values[i].value = ll;
478 ll = strtoul(d, &f, 16);
480 usage("Invalid mask \"%s\"", d);
481 if (ll > lim && ll < ~0UL - lim)
482 usage("Mask \"%s\" is out of range", d);
483 op->values[i].mask = ll;
484 op->values[i].value &= ll;
487 op->values[i].mask = ~0U;
497 if (state == STATE_INIT)
498 usage("No operation specified");