forked from clbr/radeontop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradeontop.c
157 lines (130 loc) · 3.43 KB
/
radeontop.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
/*
Copyright (C) 2012 Lauri Kasanen
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 <getopt.h>
const void *area;
int use_ioctl;
void die(const char * const why) {
puts(why);
exit(1);
}
static void version() {
printf("RadeonTop %s\n", VERSION);
exit(1);
}
static void help(const char * const me, const unsigned int ticks) {
printf(_("\n\tRadeonTop for R600 and above.\n\n"
"\tUsage: %s [-ch] [-b bus] [-d file] [-l limit] [-t ticks]\n\n"
"-b --bus 3 Pick card from this PCI bus\n"
"-c --color Enable colors\n"
"-d --dump file Dump data to this file, - for stdout\n"
"-l --limit 3 Quit after dumping N lines, default forever\n"
"-m --mem Force the /dev/mem path, for the proprietary driver\n"
"-t --ticks 50 Samples per second (default %u)\n"
"\n"
"-h --help Show this help\n"
"-v --version Show the version\n"),
me, ticks);
die("");
}
int get_drm_value(int fd, unsigned request, uint32_t *out) {
struct drm_radeon_info info;
int retval;
memset(&info, 0, sizeof(info));
info.value = (unsigned long)out;
info.request = request;
retval = drmCommandWriteRead(fd, DRM_RADEON_INFO, &info, sizeof(info));
return !retval;
}
unsigned int readgrbm() {
if (use_ioctl) {
uint32_t reg = 0x8010;
get_drm_value(drm_fd, RADEON_INFO_READ_REG, ®);
return reg;
} else {
const void *ptr = (const char *) area + 0x10;
const unsigned int *inta = ptr;
return *inta;
}
}
int main(int argc, char **argv) {
unsigned int ticks = 120;
unsigned char color = 0;
unsigned char bus = 0, forcemem = 0;
unsigned int limit = 0;
char *dump = NULL;
// Translations
#ifdef ENABLE_NLS
setlocale(LC_ALL, "");
bindtextdomain("radeontop", "/usr/share/locale");
textdomain("radeontop");
#endif
// opts
const struct option opts[] = {
{"bus", 1, 0, 'b'},
{"color", 0, 0, 'c'},
{"dump", 1, 0, 'd'},
{"help", 0, 0, 'h'},
{"limit", 1, 0, 'l'},
{"mem", 0, 0, 'm'},
{"ticks", 1, 0, 't'},
{"version", 0, 0, 'v'},
{0, 0, 0, 0}
};
while (1) {
int c = getopt_long(argc, argv, "b:cd:hl:mt:v", opts, NULL);
if (c == -1) break;
switch(c) {
case 'h':
case '?':
help(argv[0], ticks);
break;
case 't':
ticks = atoi(optarg);
break;
case 'c':
color = 1;
break;
case 'm':
forcemem = 1;
break;
case 'b':
bus = atoi(optarg);
break;
case 'v':
version();
break;
case 'l':
limit = atoi(optarg);
break;
case 'd':
dump = optarg;
break;
}
}
// init
const unsigned int pciaddr = init_pci(bus, forcemem);
const int family = getfamily(pciaddr);
if (!family)
puts(_("Unknown Radeon card. <= R500 won't work, new cards might."));
const char * const cardname = family_str[family];
initbits(family);
// runtime
collect(&ticks);
if (dump)
dumpdata(ticks, dump, limit);
else
present(ticks, cardname, color);
munmap((void *) area, MMAP_SIZE);
return 0;
}