2 * Copyright (c) 2015 Emil Velikov <emil.l.velikov@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
36 print_device_info(drmDevicePtr device
, int i
, bool print_revision
)
38 printf("device[%i]\n", i
);
39 printf("+-> available_nodes %#04x\n", device
->available_nodes
);
40 printf("+-> nodes\n");
41 for (int j
= 0; j
< DRM_NODE_MAX
; j
++)
42 if (device
->available_nodes
& 1 << j
)
43 printf("| +-> nodes[%d] %s\n", j
, device
->nodes
[j
]);
45 printf("+-> bustype %04x\n", device
->bustype
);
46 if (device
->bustype
== DRM_BUS_PCI
) {
47 printf("| +-> pci\n");
48 printf("| +-> domain %04x\n",device
->businfo
.pci
->domain
);
49 printf("| +-> bus %02x\n", device
->businfo
.pci
->bus
);
50 printf("| +-> dev %02x\n", device
->businfo
.pci
->dev
);
51 printf("| +-> func %1u\n", device
->businfo
.pci
->func
);
53 printf("+-> deviceinfo\n");
55 printf(" +-> vendor_id %04x\n", device
->deviceinfo
.pci
->vendor_id
);
56 printf(" +-> device_id %04x\n", device
->deviceinfo
.pci
->device_id
);
57 printf(" +-> subvendor_id %04x\n", device
->deviceinfo
.pci
->subvendor_id
);
58 printf(" +-> subdevice_id %04x\n", device
->deviceinfo
.pci
->subdevice_id
);
60 printf(" +-> revision_id %02x\n", device
->deviceinfo
.pci
->revision_id
);
62 printf(" +-> revision_id IGNORED\n");
64 } else if (device
->bustype
== DRM_BUS_USB
) {
65 printf("| +-> usb\n");
66 printf("| +-> bus %03u\n", device
->businfo
.usb
->bus
);
67 printf("| +-> dev %03u\n", device
->businfo
.usb
->dev
);
69 printf("+-> deviceinfo\n");
71 printf(" +-> vendor %04x\n", device
->deviceinfo
.usb
->vendor
);
72 printf(" +-> product %04x\n", device
->deviceinfo
.usb
->product
);
73 } else if (device
->bustype
== DRM_BUS_PLATFORM
) {
74 char **compatible
= device
->deviceinfo
.platform
->compatible
;
76 printf("| +-> platform\n");
77 printf("| +-> fullname\t%s\n", device
->businfo
.platform
->fullname
);
79 printf("+-> deviceinfo\n");
80 printf(" +-> platform\n");
81 printf(" +-> compatible\n");
84 printf(" %s\n", *compatible
);
87 } else if (device
->bustype
== DRM_BUS_HOST1X
) {
88 char **compatible
= device
->deviceinfo
.host1x
->compatible
;
90 printf("| +-> host1x\n");
91 printf("| +-> fullname\t%s\n", device
->businfo
.host1x
->fullname
);
93 printf("+-> deviceinfo\n");
94 printf(" +-> host1x\n");
95 printf(" +-> compatible\n");
98 printf(" %s\n", *compatible
);
102 printf("Unknown/unhandled bustype\n");
110 drmDevicePtr
*devices
;
112 int fd
, ret
, max_devices
;
114 printf("--- Checking the number of DRM device available ---\n");
115 max_devices
= drmGetDevices2(0, NULL
, 0);
117 if (max_devices
<= 0) {
118 printf("drmGetDevices2() has not found any devices (errno=%d)\n",
122 printf("--- Devices reported %d ---\n", max_devices
);
125 devices
= calloc(max_devices
, sizeof(drmDevicePtr
));
126 if (devices
== NULL
) {
127 printf("Failed to allocate memory for the drmDevicePtr array\n");
131 printf("--- Retrieving devices information (PCI device revision is ignored) ---\n");
132 ret
= drmGetDevices2(0, devices
, max_devices
);
134 printf("drmGetDevices2() returned an error %d\n", ret
);
139 for (int i
= 0; i
< ret
; i
++) {
140 print_device_info(devices
[i
], i
, false);
142 for (int j
= 0; j
< DRM_NODE_MAX
; j
++) {
143 if (devices
[i
]->available_nodes
& 1 << j
) {
144 printf("--- Opening device node %s ---\n", devices
[i
]->nodes
[j
]);
145 fd
= open(devices
[i
]->nodes
[j
], O_RDONLY
| O_CLOEXEC
, 0);
147 printf("Failed - %s (%d)\n", strerror(errno
), errno
);
151 printf("--- Retrieving device info, for node %s ---\n", devices
[i
]->nodes
[j
]);
152 if (drmGetDevice2(fd
, DRM_DEVICE_GET_PCI_REVISION
, &device
) == 0) {
153 print_device_info(device
, i
, true);
154 drmFreeDevice(&device
);
161 drmFreeDevices(devices
, ret
);