-
Notifications
You must be signed in to change notification settings - Fork 71
/
detect.c
380 lines (308 loc) · 9.16 KB
/
detect.c
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
Copyright (C) 2012 Lauri Kasanen
Copyright (C) 2018 Genesis Cloud Ltd.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "radeontop.h"
#include <pciaccess.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <xf86drm.h>
#include <errno.h>
struct bits_t bits;
uint64_t vramsize;
uint64_t gttsize;
unsigned int sclk_max = 0; // kilohertz
unsigned int mclk_max = 0; // kilohertz
const void *area;
static const void *srbm_area;
// function pointers to the right backend
int (*getgrbm)(uint32_t *out);
int (*getsrbm)(uint32_t *out);
int (*getsrbm2)(uint32_t *out);
int (*getvram)(uint64_t *out);
int (*getgtt)(uint64_t *out);
int (*getsclk)(uint32_t *out);
int (*getmclk)(uint32_t *out);
static int find_pci(short bus, struct pci_device *pci_dev) {
int ret = pci_system_init();
if (ret)
die(_("Failed to init pciaccess"));
struct pci_device *dev;
struct pci_id_match match;
match.vendor_id = VENDOR_AMD;
match.device_id = PCI_MATCH_ANY;
match.subvendor_id = PCI_MATCH_ANY;
match.subdevice_id = PCI_MATCH_ANY;
match.device_class = 0;
match.device_class_mask = 0;
match.match_data = 0;
struct pci_device_iterator *iter = pci_id_match_iterator_create(&match);
while ((dev = pci_device_next(iter))) {
pci_device_probe(dev);
if ((dev->device_class & 0x00ffff00) != 0x00030000 &&
(dev->device_class & 0x00ffff00) != 0x00038000)
continue;
if (bus < 0 || bus == dev->bus) {
*pci_dev = *dev;
break;
}
}
pci_iterator_destroy(iter);
pci_system_cleanup();
return (dev == NULL);
}
static int getgrbm_pci(uint32_t *out) {
*out = *(uint32_t *)((const char *) area + 0x10);
return 0;
}
static int getsrbm_pci(uint32_t *out) {
*out = *(uint32_t *)((const char *) srbm_area + SRBM_STATUS);
return 0;
}
static int getsrbm2_pci(uint32_t *out) {
*out = *(uint32_t *)((const char *) srbm_area + SRBM_STATUS2);
return 0;
}
static void open_pci(struct pci_device *gpu_device) {
// Warning: gpu_device is a copy of a freed struct. Do not access any pointers!
int reg = 2;
if (getfamily(gpu_device->device_id) >= BONAIRE)
reg = 5;
if (!gpu_device->regions[reg].size) die(_("Can't get the register area size"));
// printf("Found area %p, size %lu\n", area, dev->regions[reg].size);
int mem = open("/dev/mem", O_RDONLY);
if (mem < 0) die(_("Cannot access GPU registers, are you root?"));
area = mmap(NULL, MMAP_SIZE, PROT_READ, MAP_PRIVATE, mem,
gpu_device->regions[reg].base_addr + 0x8000);
if (area == MAP_FAILED) die(_("mmap failed"));
srbm_area = mmap(NULL, SRBM_MMAP_SIZE, PROT_READ, MAP_PRIVATE, mem,
gpu_device->regions[reg].base_addr);
if (srbm_area == MAP_FAILED) die(_("mmap failed"));
getgrbm = getgrbm_pci;
getsrbm = getsrbm_pci;
getsrbm2 = getsrbm2_pci;
}
static void cleanup_pci() {
munmap((void *) area, MMAP_SIZE);
munmap((void *) srbm_area, SRBM_MMAP_SIZE);
}
static int init_drm(int drm_fd) {
drmVersionPtr ver = drmGetVersion(drm_fd);
if (!ver) {
perror(_("Failed to query driver version"));
close(drm_fd);
return -1;
}
authenticate_drm(drm_fd);
if (strcmp(ver->name, "radeon") == 0)
init_radeon(drm_fd, ver->version_major, ver->version_minor);
else if (strcmp(ver->name, "amdgpu") == 0)
#ifdef ENABLE_AMDGPU
init_amdgpu(drm_fd);
#else
fprintf(stderr, _("amdgpu support is not compiled in (libdrm 2.4.63 required)\n"));
#endif
else {
fprintf(stderr, _("Unsupported driver %s\n"), ver->name);
close(drm_fd);
drm_fd = -1;
}
/* printf("Version %u.%u.%u, name %s\n",
ver->version_major,
ver->version_minor,
ver->version_patchlevel,
ver->name);*/
drmFreeVersion(ver);
return drm_fd;
}
static void open_drm_bus(const struct pci_device *dev) {
char busid[32];
snprintf(busid, sizeof(busid), "pci:%04x:%02x:%02x.%u",
dev->domain, dev->bus, dev->dev, dev->func);
int fd = drmOpen(NULL, busid);
if (fd >= 0)
init_drm(fd);
else
printf(_("Failed to open DRM node, no VRAM support.\n"));
}
static int open_drm_path(const char *path) {
int fd = open(path, O_RDWR);
if (fd >= 0)
fd = init_drm(fd);
else
fprintf(stderr, _("Failed to open %s: %s\n"),
path, strerror(errno));
return fd;
}
#ifdef DRM_DEVICE_GET_PCI_REVISION
#define DRMGETDEVICE(fd, dev) drmGetDevice2(fd, 0, dev)
#define DRMGETDEVICES(dev, max) drmGetDevices2(0, dev, max)
#else
#define DRMGETDEVICE(fd, dev) drmGetDevice(fd, dev)
#define DRMGETDEVICES(dev, max) drmGetDevices(dev, max)
#endif
#ifdef DRM_BUS_PCI
static int find_drm(short bus, short *device_bus, unsigned int *device_id) {
drmDevicePtr *devs;
int count, i, j, fd = -1;
count = DRMGETDEVICES(NULL, 0);
if (count <= 0) {
if (count < 0)
drmError(-count, _("Failed to find DRM devices"));
return 1;
}
if (!(devs = calloc(count, sizeof(drmDevicePtr))))
die(_("Failed to allocate memory for DRM\n"));
if ((count = DRMGETDEVICES(devs, count)) < 0) {
drmError(-count, _("Failed to get DRM devices"));
return 1;
}
for (i = 0; i < count; i++) {
if (devs[i]->bustype != DRM_BUS_PCI ||
devs[i]->deviceinfo.pci->vendor_id != VENDOR_AMD ||
(bus >= 0 && bus != devs[i]->businfo.pci->bus))
continue;
// try render node first, as it does not require to drop master
for (j = DRM_NODE_MAX - 1; j >= 0; j--) {
if (!(1 << j & devs[i]->available_nodes))
continue;
if ((fd = open_drm_path(devs[i]->nodes[j])) < 0)
continue;
*device_bus = devs[i]->businfo.pci->bus;
*device_id = devs[i]->deviceinfo.pci->device_id;
break;
}
if (fd >= 0)
break;
}
drmFreeDevices(devs, count);
free(devs);
return (fd < 0);
}
#endif
#ifdef HAS_DRMGETDEVICE
static void device_info_drm(int fd, short *bus, unsigned int *device_id) {
drmDevicePtr dev;
int err;
if ((err = DRMGETDEVICE(fd, &dev))) {
drmError(err, _("Failed to get device info"));
return;
}
if (dev->bustype != DRM_BUS_PCI) {
fprintf(stderr, _("Unsupported bus type %d\n"),
dev->bustype);
return;
}
*bus = dev->businfo.pci->bus;
*device_id = dev->deviceinfo.pci->device_id;
drmFreeDevice(&dev);
}
#endif
// do-nothing backend used as fallback
#define UNUSED(v) (void) v
static int getuint32_null(uint32_t *out) { UNUSED(out); return -1; }
static int getuint64_null(uint64_t *out) { UNUSED(out); return -1; }
void init_pci(const char *path, short *bus, unsigned int *device_id, const unsigned char forcemem) {
short device_bus = -1;
int err = 1;
getgrbm = getsclk = getmclk = getuint32_null;
getsrbm = getsrbm2 = getuint32_null;
getvram = getgtt = getuint64_null;
if (path) {
int fd = open_drm_path(path);
if (fd < 0 || getgrbm == getuint32_null)
exit(1);
#ifdef HAS_DRMGETDEVICE
device_info_drm(fd, &device_bus, device_id);
#else
fprintf(stderr, _("DRM device detection is not compiled in (libdrm 2.4.66 required)\n"));
#endif
err = 0;
}
// If a path was not specified, search and open the first AMD
// video card, picking the correct PCI bus if provided.
#ifdef DRM_BUS_PCI
if (!forcemem && err)
err = find_drm(*bus, &device_bus, device_id);
#endif
// This is the fallback method for older libdrm that doesn't
// have drmGetDevices, operating systems where drmGetDevices
// is not implemented, older radeon kernel driver without GRBM
// readings, AMD Catalyst driver or when no driver is loaded
if (getgrbm == getuint32_null) {
struct pci_device pci_dev;
memset(&pci_dev, 0, sizeof(struct pci_device));
err = find_pci(*bus, &pci_dev);
if (!err) {
// DRM support for VRAM
open_drm_bus(&pci_dev);
if (forcemem)
printf(_("Forcing the /dev/mem path.\n"));
if (forcemem || getgrbm == getuint32_null)
open_pci(&pci_dev);
device_bus = pci_dev.bus;
*device_id = pci_dev.device_id;
}
}
if (err)
die(_("Can't find Radeon cards"));
bits.vram = (getvram != getuint64_null);
bits.gtt = (getgtt != getuint64_null);
*bus = device_bus;
}
void cleanup() {
cleanup_pci();
#ifdef ENABLE_AMDGPU
cleanup_amdgpu();
#endif
}
int getfamily(unsigned int id) {
switch(id) {
#define CHIPSET(a,b,c) case a: return c;
#include "r600_pci_ids.h"
#undef CHIPSET
}
return 0;
}
void initbits(int fam) {
// The majority of these is the same from R600 to Southern Islands.
bits.ee = (1U << 10);
bits.vgt = (1U << 16) | (1U << 17);
bits.ta = (1U << 14);
bits.tc = (1U << 19);
bits.sx = (1U << 20);
bits.sh = (1U << 21);
bits.spi = (1U << 22);
bits.smx = (1U << 23);
bits.sc = (1U << 24);
bits.pa = (1U << 25);
bits.db = (1U << 26);
bits.cr = (1U << 27);
bits.cb = (1U << 30);
bits.gui = (1U << 31);
bits.uvd = 0;
bits.vce0 = 0;
// R600 has a different texture bit, and only R600 has the TC, CR, SMX bits
if (fam < RV770) {
bits.ta = (1U << 18);
} else {
bits.tc = 0;
bits.cr = 0;
bits.smx = 0;
}
if (fam >= RV610 && fam < VEGAM) {
bits.uvd = (1U << 19);
if (fam >= CAYMAN) {
bits.vce0 = (1U << 7);
}
}
}