summaryrefslogtreecommitdiff
path: root/ls-caps-vendor.c
blob: 4cdfe227b4f8fdfc7ac2a813cc8ce519a0cf5109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 *	The PCI Utilities -- Show Vendor-specific Capabilities
 *
 *	Copyright (c) 2014 Gerd Hoffmann <kraxel@redhat.com>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#include <stdio.h>
#include <string.h>

#include "lspci.h"

static void
show_vendor_caps_virtio(struct device *d, int where, int cap)
{
  int length = BITS(cap, 0, 8);
  int type = BITS(cap, 8, 8);
  char *tname;

  if (length < 16)
    return;
  if (!config_fetch(d, where, length))
    return;

  switch (type)
    {
    case 1:
      tname = "CommonCfg";
      break;
    case 2:
      tname = "Notify";
      break;
    case 3:
      tname = "ISR";
      break;
    case 4:
      tname = "DeviceCfg";
      break;
    default:
      tname = "<unknown>";
      break;
    }

  printf("VirtIO: %s\n", tname);

  if (verbose < 2)
    return;

  printf("\t\tBAR=%d offset=%08x size=%08x\n",
	 get_conf_byte(d, where +  4),
	 get_conf_long(d, where +  8),
	 get_conf_long(d, where + 12));

  if (type != 2 || length < 20)
    return;

  printf("\t\tmultiplier=%08x\n",
	 get_conf_long(d, where+16));
}

void
show_vendor_caps(struct device *d, int where, int cap)
{
  switch (get_conf_word(d, PCI_VENDOR_ID))
    {
    case 0x1af4: /* Red Hat */
      if (get_conf_word(d, PCI_DEVICE_ID) >= 0x1000 &&
	  get_conf_word(d, PCI_DEVICE_ID) <= 0x107f)
	show_vendor_caps_virtio(d, where, cap);
      break;
    default:
      printf("Vendor Specific Information: Len=%02x <?>\n", BITS(cap, 0, 8));
      break;
    }
}