]> git.ipfire.org Git - thirdparty/pciutils.git/commitdiff
Let setpci support capabilities.
authorMartin Mares <mj@ucw.cz>
Mon, 10 Nov 2008 23:11:14 +0000 (00:11 +0100)
committerMartin Mares <mj@ucw.cz>
Mon, 10 Nov 2008 23:11:14 +0000 (00:11 +0100)
Changed syntax of register addresses. They now consist of a base and an offset,
where the base is either a fixed address or a name/ID of a capability.

Needs lots of polish (see TODO).

TODO
setpci.c

diff --git a/TODO b/TODO
index f9370ae99c49b1617eef54ade403c75722cd1bec..e4cc448d6a1561880494a4320934c3cb2112cf76 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,5 +1,13 @@
 - review class names
 
+Setpci:
+- error messages
+- parse errors: die vs. usage
+- auto-width
+- man page
+- update library ABI
+- extend the register table
+
 Capabilities with partial decoding:
 - PCIe 2nd set of control/status registers (have spec)
 - HyperTransport caps (have spec)
index e36a82af077885cf54a7b826211c59a2320f8c85..56ecb2b54a18531e6ae0af1592a972d854b724b2 100644 (file)
--- a/setpci.c
+++ b/setpci.c
@@ -11,6 +11,7 @@
 #include <stdlib.h>
 #include <stdarg.h>
 #include <unistd.h>
+#include <errno.h>
 
 #define PCIUTILS_SETPCI
 #include "pciutils.h"
@@ -31,9 +32,10 @@ struct value {
 struct op {
   struct op *next;
   struct pci_dev **dev_vector;
+  unsigned int cap;                    /* Capability: 0=none, 10000-100ff=normal, 20000-2ffff=extended */
   unsigned int addr;
   unsigned int width;                  /* Byte width of the access */
-  int num_values;                      /* Number of values to write; 0=read */
+  unsigned int num_values;             /* Number of values to write; 0=read */
   struct value values[0];
 };
 
@@ -62,17 +64,44 @@ exec_op(struct op *op, struct pci_dev *dev)
 {
   char *formats[] = { NULL, "%02x", "%04x", NULL, "%08x" };
   char *mask_formats[] = { NULL, "%02x->(%02x:%02x)->%02x", "%04x->(%04x:%04x)->%04x", NULL, "%08x->(%08x:%08x)->%08x" };
-  unsigned int x, y;
-  int i, addr;
+  unsigned int i, x, y;
+  int addr = 0;
   int width = op->width;
 
   if (verbose)
-    printf("%02x:%02x.%x:%02x", dev->bus, dev->dev, dev->func, op->addr);
-  addr = op->addr;
-  if (op->num_values > 0)
+    printf("%02x:%02x.%x", dev->bus, dev->dev, dev->func);
+  if (op->cap)
+    {
+      struct pci_cap *cap;
+      if (op->cap < 0x20000)
+       {
+         if (verbose)
+           printf("(cap %02x)", op->cap - 0x10000);
+         cap = pci_find_cap(dev, op->cap - 0x10000, PCI_CAP_NORMAL);
+       }
+      else
+       {
+         if (verbose)
+           printf("(ecap %04x)", op->cap - 0x20000);
+         cap = pci_find_cap(dev, op->cap - 0x20000, PCI_CAP_EXTENDED);
+       }
+      if (cap)
+       addr = cap->addr;
+      else
+       {
+         /* FIXME: Report the error properly */
+         die("Capability %08x not found", op->cap);
+       }
+    }
+  addr += op->addr;
+  if (verbose)
+    printf(":%02x", addr);
+  if (op->num_values)
     {
       for (i=0; i<op->num_values; i++)
        {
+         if (addr + width > 0x1000)
+           die("Out of range");        /* FIXME */
          if ((op->values[i].mask & max_values[width]) == max_values[width])
            {
              x = op->values[i].value;
@@ -127,6 +156,8 @@ exec_op(struct op *op, struct pci_dev *dev)
     {
       if (verbose)
        printf(" = ");
+      if (addr + width > 0x1000)
+       die("Out of range");    /* FIXME */
       switch (width)
        {
        case 1:
@@ -167,84 +198,118 @@ scan_ops(struct op *op)
 {
   while (op)
     {
-      if (op->num_values >= 0)
+      if (op->num_values)
        pacc->writeable = 1;
       op = op->next;
     }
 }
 
 struct reg_name {
+  unsigned int cap;
   unsigned int offset;
   unsigned int width;
   const char *name;
 };
 
 static const struct reg_name pci_reg_names[] = {
-  { 0x00, 2, "VENDOR_ID", },
-  { 0x02, 2, "DEVICE_ID", },
-  { 0x04, 2, "COMMAND", },
-  { 0x06, 2, "STATUS", },
-  { 0x08, 1, "REVISION", },
-  { 0x09, 1, "CLASS_PROG", },
-  { 0x0a, 2, "CLASS_DEVICE", },
-  { 0x0c, 1, "CACHE_LINE_SIZE", },
-  { 0x0d, 1, "LATENCY_TIMER", },
-  { 0x0e, 1, "HEADER_TYPE", },
-  { 0x0f, 1, "BIST", },
-  { 0x10, 4, "BASE_ADDRESS_0", },
-  { 0x14, 4, "BASE_ADDRESS_1", },
-  { 0x18, 4, "BASE_ADDRESS_2", },
-  { 0x1c, 4, "BASE_ADDRESS_3", },
-  { 0x20, 4, "BASE_ADDRESS_4", },
-  { 0x24, 4, "BASE_ADDRESS_5", },
-  { 0x28, 4, "CARDBUS_CIS", },
-  { 0x2c, 4, "SUBSYSTEM_VENDOR_ID", },
-  { 0x2e, 2, "SUBSYSTEM_ID", },
-  { 0x30, 4, "ROM_ADDRESS", },
-  { 0x3c, 1, "INTERRUPT_LINE", },
-  { 0x3d, 1, "INTERRUPT_PIN", },
-  { 0x3e, 1, "MIN_GNT", },
-  { 0x3f, 1, "MAX_LAT", },
-  { 0x18, 1, "PRIMARY_BUS", },
-  { 0x19, 1, "SECONDARY_BUS", },
-  { 0x1a, 1, "SUBORDINATE_BUS", },
-  { 0x1b, 1, "SEC_LATENCY_TIMER", },
-  { 0x1c, 1, "IO_BASE", },
-  { 0x1d, 1, "IO_LIMIT", },
-  { 0x1e, 2, "SEC_STATUS", },
-  { 0x20, 2, "MEMORY_BASE", },
-  { 0x22, 2, "MEMORY_LIMIT", },
-  { 0x24, 2, "PREF_MEMORY_BASE", },
-  { 0x26, 2, "PREF_MEMORY_LIMIT", },
-  { 0x28, 4, "PREF_BASE_UPPER32", },
-  { 0x2c, 4, "PREF_LIMIT_UPPER32", },
-  { 0x30, 2, "IO_BASE_UPPER16", },
-  { 0x32, 2, "IO_LIMIT_UPPER16", },
-  { 0x38, 4, "BRIDGE_ROM_ADDRESS", },
-  { 0x3e, 2, "BRIDGE_CONTROL", },
-  { 0x10, 4, "CB_CARDBUS_BASE", },
-  { 0x14, 2, "CB_CAPABILITIES", },
-  { 0x16, 2, "CB_SEC_STATUS", },
-  { 0x18, 1, "CB_BUS_NUMBER", },
-  { 0x19, 1, "CB_CARDBUS_NUMBER", },
-  { 0x1a, 1, "CB_SUBORDINATE_BUS", },
-  { 0x1b, 1, "CB_CARDBUS_LATENCY", },
-  { 0x1c, 4, "CB_MEMORY_BASE_0", },
-  { 0x20, 4, "CB_MEMORY_LIMIT_0", },
-  { 0x24, 4, "CB_MEMORY_BASE_1", },
-  { 0x28, 4, "CB_MEMORY_LIMIT_1", },
-  { 0x2c, 2, "CB_IO_BASE_0", },
-  { 0x2e, 2, "CB_IO_BASE_0_HI", },
-  { 0x30, 2, "CB_IO_LIMIT_0", },
-  { 0x32, 2, "CB_IO_LIMIT_0_HI", },
-  { 0x34, 2, "CB_IO_BASE_1", },
-  { 0x36, 2, "CB_IO_BASE_1_HI", },
-  { 0x38, 2, "CB_IO_LIMIT_1", },
-  { 0x3a, 2, "CB_IO_LIMIT_1_HI", },
-  { 0x40, 2, "CB_SUBSYSTEM_VENDOR_ID", },
-  { 0x42, 2, "CB_SUBSYSTEM_ID", },
-  { 0x44, 4, "CB_LEGACY_MODE_BASE", },
-  { 0x00, 0, NULL }
+  {       0, 0x00, 2, "VENDOR_ID" },
+  {       0, 0x02, 2, "DEVICE_ID" },
+  {       0, 0x04, 2, "COMMAND" },
+  {       0, 0x06, 2, "STATUS" },
+  {       0, 0x08, 1, "REVISION" },
+  {       0, 0x09, 1, "CLASS_PROG" },
+  {       0, 0x0a, 2, "CLASS_DEVICE" },
+  {       0, 0x0c, 1, "CACHE_LINE_SIZE" },
+  {       0, 0x0d, 1, "LATENCY_TIMER" },
+  {       0, 0x0e, 1, "HEADER_TYPE" },
+  {       0, 0x0f, 1, "BIST" },
+  {       0, 0x10, 4, "BASE_ADDRESS_0" },
+  {       0, 0x14, 4, "BASE_ADDRESS_1" },
+  {       0, 0x18, 4, "BASE_ADDRESS_2" },
+  {       0, 0x1c, 4, "BASE_ADDRESS_3" },
+  {       0, 0x20, 4, "BASE_ADDRESS_4" },
+  {       0, 0x24, 4, "BASE_ADDRESS_5" },
+  {       0, 0x28, 4, "CARDBUS_CIS" },
+  {       0, 0x2c, 4, "SUBSYSTEM_VENDOR_ID" },
+  {       0, 0x2e, 2, "SUBSYSTEM_ID" },
+  {       0, 0x30, 4, "ROM_ADDRESS" },
+  {       0, 0x3c, 1, "INTERRUPT_LINE" },
+  {       0, 0x3d, 1, "INTERRUPT_PIN" },
+  {       0, 0x3e, 1, "MIN_GNT" },
+  {       0, 0x3f, 1, "MAX_LAT" },
+  {       0, 0x18, 1, "PRIMARY_BUS" },
+  {       0, 0x19, 1, "SECONDARY_BUS" },
+  {       0, 0x1a, 1, "SUBORDINATE_BUS" },
+  {       0, 0x1b, 1, "SEC_LATENCY_TIMER" },
+  {       0, 0x1c, 1, "IO_BASE" },
+  {       0, 0x1d, 1, "IO_LIMIT" },
+  {       0, 0x1e, 2, "SEC_STATUS" },
+  {       0, 0x20, 2, "MEMORY_BASE" },
+  {       0, 0x22, 2, "MEMORY_LIMIT" },
+  {       0, 0x24, 2, "PREF_MEMORY_BASE" },
+  {       0, 0x26, 2, "PREF_MEMORY_LIMIT" },
+  {       0, 0x28, 4, "PREF_BASE_UPPER32" },
+  {       0, 0x2c, 4, "PREF_LIMIT_UPPER32" },
+  {       0, 0x30, 2, "IO_BASE_UPPER16" },
+  {       0, 0x32, 2, "IO_LIMIT_UPPER16" },
+  {       0, 0x38, 4, "BRIDGE_ROM_ADDRESS" },
+  {       0, 0x3e, 2, "BRIDGE_CONTROL" },
+  {       0, 0x10, 4, "CB_CARDBUS_BASE" },
+  {       0, 0x14, 2, "CB_CAPABILITIES" },
+  {       0, 0x16, 2, "CB_SEC_STATUS" },
+  {       0, 0x18, 1, "CB_BUS_NUMBER" },
+  {       0, 0x19, 1, "CB_CARDBUS_NUMBER" },
+  {       0, 0x1a, 1, "CB_SUBORDINATE_BUS" },
+  {       0, 0x1b, 1, "CB_CARDBUS_LATENCY" },
+  {       0, 0x1c, 4, "CB_MEMORY_BASE_0" },
+  {       0, 0x20, 4, "CB_MEMORY_LIMIT_0" },
+  {       0, 0x24, 4, "CB_MEMORY_BASE_1" },
+  {       0, 0x28, 4, "CB_MEMORY_LIMIT_1" },
+  {       0, 0x2c, 2, "CB_IO_BASE_0" },
+  {       0, 0x2e, 2, "CB_IO_BASE_0_HI" },
+  {       0, 0x30, 2, "CB_IO_LIMIT_0" },
+  {       0, 0x32, 2, "CB_IO_LIMIT_0_HI" },
+  {       0, 0x34, 2, "CB_IO_BASE_1" },
+  {       0, 0x36, 2, "CB_IO_BASE_1_HI" },
+  {       0, 0x38, 2, "CB_IO_LIMIT_1" },
+  {       0, 0x3a, 2, "CB_IO_LIMIT_1_HI" },
+  {       0, 0x40, 2, "CB_SUBSYSTEM_VENDOR_ID" },
+  {       0, 0x42, 2, "CB_SUBSYSTEM_ID" },
+  {       0, 0x44, 4, "CB_LEGACY_MODE_BASE" },
+  { 0x10001,    0, 0, "CAP_PM" },
+  { 0x10002,    0, 0, "CAP_AGP" },
+  { 0x10003,    0, 0, "CAP_VPD" },
+  { 0x10004,    0, 0, "CAP_SLOTID" },
+  { 0x10005,    0, 0, "CAP_MSI" },
+  { 0x10006,    0, 0, "CAP_CHSWP" },
+  { 0x10007,    0, 0, "CAP_PCIX" },
+  { 0x10008,    0, 0, "CAP_HT" },
+  { 0x10009,    0, 0, "CAP_VNDR" },
+  { 0x1000a,    0, 0, "CAP_DBG" },
+  { 0x1000b,    0, 0, "CAP_CCRC" },
+  { 0x1000c,    0, 0, "CAP_HOTPLUG" },
+  { 0x1000d,    0, 0, "CAP_SSVID" },
+  { 0x1000e,    0, 0, "CAP_AGP3" },
+  { 0x1000f,    0, 0, "CAP_SECURE" },
+  { 0x10010,    0, 0, "CAP_EXP" },
+  { 0x10011,    0, 0, "CAP_MSIX" },
+  { 0x10012,    0, 0, "CAP_SATA" },
+  { 0x10013,    0, 0, "CAP_AF" },
+  { 0x20001,   0, 0, "ECAP_AER" },
+  { 0x20002,   0, 0, "ECAP_VC" },
+  { 0x20003,   0, 0, "ECAP_DSN" },
+  { 0x20004,   0, 0, "ECAP_PB" },
+  { 0x20005,   0, 0, "ECAP_RCLINK" },
+  { 0x20006,   0, 0, "ECAP_RCILINK" },
+  { 0x20007,   0, 0, "ECAP_RCECOLL" },
+  { 0x20008,   0, 0, "ECAP_MFVC" },
+  { 0x2000a,   0, 0, "ECAP_RBCB" },
+  { 0x2000b,   0, 0, "ECAP_VNDR" },
+  { 0x2000d,   0, 0, "ECAP_ACS" },
+  { 0x2000e,   0, 0, "ECAP_ARI" },
+  { 0x2000f,   0, 0, "ECAP_ATS" },
+  { 0x20010,   0, 0, "ECAP_SRIOV" },
+  {       0,    0, 0, NULL }
 };
 
 static void NONRET PCI_PRINTF(1,2)
@@ -271,12 +336,15 @@ GENERIC_HELP
 "\n"
 "Setting commands:\n"
 "<device>:\t-s [[[<domain>]:][<bus>]:][<slot>][.[<func>]]\n"
-"\t|\t-d [<vendor>]:[<device>]\n"
-"<reg>:\t\t<number>[.(B|W|L)]\n"
-"     |\t\t<name>\n"
+"\t\t-d [<vendor>]:[<device>]\n"
+"<reg>:\t\t<base>[+<offset>][.(B|W|L)]\n"
+"<base>:\t\t<address>\n"
+"\t\t<named-register>\n"
+"\t\t[E]CAP_<capability-name>\n"
+"\t\t[E]CAP<capability-number>\n"
 "<values>:\t<value>[,<value>...]\n"
 "<value>:\t<hex>\n"
-"       |\t<hex>:<mask>\n");
+"\t\t<hex>:<mask>\n");
   exit(1);
 }
 
@@ -376,24 +444,101 @@ static int parse_filter(int argc, char **argv, int i, struct pci_filter *filter)
   return i;
 }
 
+static const struct reg_name *parse_reg_name(char *name)
+{
+  const struct reg_name *r;
+
+  for (r = pci_reg_names; r->name; r++)
+    if (!strcasecmp(r->name, name))
+      return r;
+  return NULL;
+}
+
+static int parse_x32(char *c, char **stopp, unsigned int *resp)
+{
+  char *stop;
+
+  if (!*c)
+    return -1;
+  errno = 0;
+  unsigned long int l = strtoul(c, &stop, 16);
+  if (errno)
+    return -1;
+  if ((l & ~0U) != l)
+    return -1;
+  *resp = l;
+  if (*stop)
+    {
+      if (stopp)
+       *stopp = stop;
+      return 0;
+    }
+  else
+    return 1;
+}
+
+static void parse_register(struct op *op, char *base)
+{
+  const struct reg_name *r;
+
+  if (parse_x32(base, NULL, &op->addr) > 0)
+    {
+      op->cap = 0;
+      return;
+    }
+  else if (r = parse_reg_name(base))
+    {
+      op->cap = r->cap;
+      op->addr = r->offset;
+      if (r->width && !op->width)
+       op->width = r->width;
+      return;
+    }
+  else if (!strncasecmp(base, "CAP", 3))
+    {
+      if (parse_x32(base+3, NULL, &op->cap) > 0 && op->cap < 0x100)
+       {
+         op->cap += 0x10000;
+         op->addr = 0;
+         return;
+       }
+    }
+  else if (!strncasecmp(base, "ECAP", 4))
+    {
+      if (parse_x32(base+4, NULL, &op->cap) > 0 && op->cap < 0x1000)
+       {
+         op->cap += 0x20000;
+         op->addr = 0;
+         return;
+       }
+    }
+  usage("Unknown register \"%s\"", base);
+}
+
 static void parse_op(char *c, struct pci_dev **selected_devices)
 {
-  char *d, *e, *f;
+  char *base, *offset, *width, *value;
+  char *e, *f;
   int n, j;
   struct op *op;
-  unsigned long ll;
-  unsigned int lim;
+
+  /* Split the argument */
+  base = xstrdup(c);
+  if (value = strchr(base, '='))
+    *value++ = 0;
+  if (width = strchr(base, '.'))
+    *width++ = 0;
+  if (offset = strchr(base, '+'))
+    *offset++ = 0;
 
   /* Look for setting of values and count how many */
-  d = strchr(c, '=');
   n = 0;
-  if (d)
+  if (value)
     {
-      *d++ = 0;
-      if (!*d)
+      if (!*value)
        usage("Missing value");
       n++;
-      for (e=d; *e; e++)
+      for (e=value; *e; e++)
        if (*e == ',')
          n++;
     }
@@ -403,13 +548,12 @@ static void parse_op(char *c, struct pci_dev **selected_devices)
   op->dev_vector = selected_devices;
   op->num_values = n;
 
-  e = strchr(c, '.');
-  if (e)
+  /* What is the width suffix? */
+  if (width)
     {
-      *e++ = 0;
-      if (e[1])
-       usage("Missing width");
-      switch (*e & 0xdf)
+      if (width[1])
+       usage("Invalid width \"%s\"", width);
+      switch (*width & 0xdf)
        {
        case 'B':
          op->width = 1; break;
@@ -418,58 +562,59 @@ static void parse_op(char *c, struct pci_dev **selected_devices)
        case 'L':
          op->width = 4; break;
        default:
-         usage("Invalid width \"%c\"", *e);
+         usage("Invalid width \"%c\"", *width);
        }
     }
   else
-    op->width = 1;
-  ll = strtol(c, &f, 16);
-  if (f && *f)
+    op->width = 0;
+
+  /* Find the register */
+  parse_register(op, base);
+  if (!op->width)
+    usage("Missing width");
+
+  /* Add offset */
+  if (offset)
     {
-      const struct reg_name *r;
-      for (r = pci_reg_names; r->name; r++)
-       if (!strcasecmp(r->name, c))
-         break;
-      if (!r->name)
-       usage("Unknown register \"%s\"", c);
-      if (e && op->width != r->width)
-       usage("Explicit width doesn't correspond with the named register \"%s\"", c);
-      ll = r->offset;
-      op->width = r->width;
+      unsigned int off;
+      if (parse_x32(offset, NULL, &off) <= 0 || off >= 0x1000)
+       die("Invalid offset \"%s\"", offset);
+      op->addr += off;
     }
-  if (ll > 0x1000 || ll + op->width*((n < 0) ? 1 : n) > 0x1000)
+
+  /* Check range */
+  if (op->addr >= 0x1000 || op->addr + op->width*(n ? n : 1) > 0x1000)
     die("Register number out of range!");
-  if (ll & (op->width - 1))
+  if (op->addr & (op->width - 1))
     die("Unaligned register address!");
-  op->addr = ll;
-  /* read in all the values to be set */
+
+  /* Parse the values */
   for (j=0; j<n; j++)
     {
-      e = strchr(d, ',');
+      unsigned int ll, lim;
+      e = strchr(value, ',');
       if (e)
        *e++ = 0;
-      ll = strtoul(d, &f, 16);
+      if (parse_x32(value, &f, &ll) < 0 || *f && *f != ':')
+       usage("Invalid value \"%s\"", value);
       lim = max_values[op->width];
-      if (f && *f && *f != ':')
-       usage("Invalid value \"%s\"", d);
       if (ll > lim && ll < ~0UL - lim)
-       usage("Value \"%s\" is out of range", d);
+       usage("Value \"%s\" is out of range", value);
       op->values[j].value = ll;
-      if (f && *f == ':')
+      if (*f == ':')
        {
-         d = ++f;
-         ll = strtoul(d, &f, 16);
-         if (f && *f)
-           usage("Invalid mask \"%s\"", d);
+         if (parse_x32(f+1, NULL, &ll) <= 0)
+           usage("Invalid mask \"%s\"", f+1);
          if (ll > lim && ll < ~0UL - lim)
-           usage("Mask \"%s\" is out of range", d);
+           usage("Mask \"%s\" is out of range", f+1);
          op->values[j].mask = ll;
          op->values[j].value &= ll;
        }
       else
        op->values[j].mask = ~0U;
-      d = e;
+      value = e;
     }
+
   *last_op = op;
   last_op = &op->next;
   op->next = NULL;