Sync pci_cfgreg.c with FreeBSD 5, rev. 1.101. This makes the PCI interrupt
[dragonfly.git] / usr.sbin / pccard / pccardc / rdattr.c
1 /*
2  * Copyright (c) 1995 Andrew McRae.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $DragonFly: src/usr.sbin/pccard/pccardc/Attic/rdattr.c,v 1.2 2003/08/08 04:18:46 dillon Exp $
27  */
28
29 #include <err.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <fcntl.h>
34 #include <sys/ioctl.h>
35
36 #include <bus/pccard/cardinfo.h>
37
38 int
39 rdattr_main(argc, argv)
40         int     argc;
41         char   *argv[];
42 {
43         int     i, reg, length;
44         char    name[64];
45         u_char *buf;
46         int     fd;
47         off_t   offs;
48
49         if (argc != 4)
50                 errx(1, "Usage: %s rdattr slot offs length", argv[0]);
51
52         sprintf(name, CARD_DEVICE, atoi(argv[1]));
53         fd = open(name, O_RDONLY);
54         if (fd < 0)
55                 err(1, "%s", name);
56
57         reg = MDF_ATTR;
58         if (ioctl(fd, PIOCRWFLAG, &reg))
59                 err(1, "ioctl (PIOCRWFLAG)");
60
61         if (sscanf(argv[2], "%x", &reg) != 1 ||
62             sscanf(argv[3], "%x", &length) != 1)
63                 errx(1, "arg error");
64
65         offs = reg;
66         if ((buf = malloc(length)) == 0)
67                 errx(1, "malloc failed");
68
69         lseek(fd, offs, SEEK_SET);
70         if (read(fd, buf, length) != length)
71                 err(1, "%s", name);
72
73         for (i = 0; i < length; i++) {
74                 if (i % 16 == 0) {
75                         printf("%04x: ", (int) offs + i);
76                 }
77                 printf("%02x ", buf[i]);
78                 if (i % 16 == 15) {
79                         printf("\n");
80                 }
81         }
82         if (i % 16 != 0) {
83                 printf("\n");
84         }
85         return 0;
86 }