2 * Exercise /dev/mem mmap cases that have been troublesome in the past
4 * (c) Copyright 2007 Hewlett-Packard Development Company, L.P.
5 * Bjorn Helgaas <bjorn.helgaas@hp.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
14 #include <sys/types.h>
22 #include <linux/pci.h>
26 int map_mem(char *path, off_t offset, size_t length, int touch)
32 fd = open(path, O_RDWR);
38 if (fnmatch("/proc/bus/pci/*", path, 0) == 0) {
39 rc = ioctl(fd, PCIIOC_MMAP_IS_MEM);
41 perror("PCIIOC_MMAP_IS_MEM ioctl");
44 addr = mmap(NULL, length, PROT_READ|PROT_WRITE, MAP_SHARED, fd, offset);
45 if (addr == MAP_FAILED)
50 while (c < (int *) (addr + length))
54 rc = munmap(addr, length);
64 int scan_tree(char *path, char *file, off_t offset, size_t length, int touch)
66 struct dirent **namelist;
68 int i, n, r, rc, result = 0;
71 n = scandir(path, &namelist, 0, alphasort);
77 for (i = 0; i < n; i++) {
78 name = namelist[i]->d_name;
80 if (fnmatch(".", name, 0) == 0)
82 if (fnmatch("..", name, 0) == 0)
85 path2 = malloc(strlen(path) + strlen(name) + 3);
90 if (fnmatch(file, name, 0) == 0) {
91 rc = map_mem(path2, offset, length, touch);
93 fprintf(stderr, "PASS: %s 0x%lx-0x%lx is %s\n", path2, offset, offset + length, touch ? "readable" : "mappable");
95 fprintf(stderr, "PASS: %s 0x%lx-0x%lx not mappable\n", path2, offset, offset + length);
97 fprintf(stderr, "FAIL: %s 0x%lx-0x%lx not accessible\n", path2, offset, offset + length);
101 r = lstat(path2, &buf);
102 if (r == 0 && S_ISDIR(buf.st_mode)) {
103 rc = scan_tree(path2, file, offset, length, touch);
121 int read_rom(char *path)
126 fd = open(path, O_RDWR);
132 rc = write(fd, "1", 2);
139 rc = read(fd, buf, sizeof(buf));
148 int scan_rom(char *path, char *file)
150 struct dirent **namelist;
152 int i, n, r, rc, result = 0;
155 n = scandir(path, &namelist, 0, alphasort);
161 for (i = 0; i < n; i++) {
162 name = namelist[i]->d_name;
164 if (fnmatch(".", name, 0) == 0)
166 if (fnmatch("..", name, 0) == 0)
169 path2 = malloc(strlen(path) + strlen(name) + 3);
174 if (fnmatch(file, name, 0) == 0) {
175 rc = read_rom(path2);
178 * It's OK if the ROM is unreadable. Maybe there
179 * is no ROM, or some other error ocurred. The
180 * important thing is that no MCA happened.
183 fprintf(stderr, "PASS: %s read %ld bytes\n", path2, rc);
185 fprintf(stderr, "PASS: %s not readable\n", path2);
189 r = lstat(path2, &buf);
190 if (r == 0 && S_ISDIR(buf.st_mode)) {
191 rc = scan_rom(path2, file);
211 if (map_mem("/dev/mem", 0, 0xA0000, 1) == 0)
212 fprintf(stderr, "PASS: /dev/mem 0x0-0xa0000 is readable\n");
214 fprintf(stderr, "FAIL: /dev/mem 0x0-0xa0000 not accessible\n");
217 * It's not safe to blindly read the VGA frame buffer. If you know
218 * how to poke the card the right way, it should respond, but it's
219 * not safe in general. Many machines, e.g., Intel chipsets, cover
220 * up a non-responding card by just returning -1, but others will
221 * report the failure as a machine check.
223 if (map_mem("/dev/mem", 0xA0000, 0x20000, 0) == 0)
224 fprintf(stderr, "PASS: /dev/mem 0xa0000-0xc0000 is mappable\n");
226 fprintf(stderr, "FAIL: /dev/mem 0xa0000-0xc0000 not accessible\n");
228 if (map_mem("/dev/mem", 0xC0000, 0x40000, 1) == 0)
229 fprintf(stderr, "PASS: /dev/mem 0xc0000-0x100000 is readable\n");
231 fprintf(stderr, "FAIL: /dev/mem 0xc0000-0x100000 not accessible\n");
234 * Often you can map all the individual pieces above (0-0xA0000,
235 * 0xA0000-0xC0000, and 0xC0000-0x100000), but can't map the whole
236 * thing at once. This is because the individual pieces use different
237 * attributes, and there's no single attribute supported over the
240 rc = map_mem("/dev/mem", 0, 1024*1024, 0);
242 fprintf(stderr, "PASS: /dev/mem 0x0-0x100000 is mappable\n");
244 fprintf(stderr, "PASS: /dev/mem 0x0-0x100000 not mappable\n");
246 fprintf(stderr, "FAIL: /dev/mem 0x0-0x100000 not accessible\n");
248 scan_tree("/sys/class/pci_bus", "legacy_mem", 0, 0xA0000, 1);
249 scan_tree("/sys/class/pci_bus", "legacy_mem", 0xA0000, 0x20000, 0);
250 scan_tree("/sys/class/pci_bus", "legacy_mem", 0xC0000, 0x40000, 1);
251 scan_tree("/sys/class/pci_bus", "legacy_mem", 0, 1024*1024, 0);
253 scan_rom("/sys/devices", "rom");
255 scan_tree("/proc/bus/pci", "??.?", 0, 0xA0000, 1);
256 scan_tree("/proc/bus/pci", "??.?", 0xA0000, 0x20000, 0);
257 scan_tree("/proc/bus/pci", "??.?", 0xC0000, 0x40000, 1);
258 scan_tree("/proc/bus/pci", "??.?", 0, 1024*1024, 0);