pci_usrreq.c revision 1.16.6.2 1 /* $NetBSD: pci_usrreq.c,v 1.16.6.2 2009/09/15 06:45:32 snj Exp $ */
2
3 /*
4 * Copyright 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed for the NetBSD Project by
20 * Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 * or promote products derived from this software without specific prior
23 * written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38 /*
39 * User -> kernel interface for PCI bus access.
40 */
41
42 #include <sys/cdefs.h>
43 __KERNEL_RCSID(0, "$NetBSD: pci_usrreq.c,v 1.16.6.2 2009/09/15 06:45:32 snj Exp $");
44
45 #include <sys/param.h>
46 #include <sys/conf.h>
47 #include <sys/device.h>
48 #include <sys/ioctl.h>
49 #include <sys/proc.h>
50 #include <sys/systm.h>
51 #include <sys/errno.h>
52 #include <sys/fcntl.h>
53
54 #include <dev/pci/pcireg.h>
55 #include <dev/pci/pcivar.h>
56 #include <dev/pci/pciio.h>
57
58 #include "opt_pci.h"
59 #include "opt_insecure.h"
60
61 static int
62 pciopen(dev_t dev, int flags, int mode, struct lwp *l)
63 {
64 device_t dv;
65
66 dv = device_lookup(&pci_cd, minor(dev));
67 if (dv == NULL)
68 return (ENXIO);
69
70 return (0);
71 }
72
73 static int
74 pciioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
75 {
76 struct pci_softc *sc =
77 device_lookup_private(&pci_cd, minor(dev));
78 struct pciio_bdf_cfgreg *bdfr = (void *) data;
79 struct pciio_businfo *binfo = (void *) data;
80 pcitag_t tag;
81
82 switch (cmd) {
83 case PCI_IOC_BDF_CFGREAD:
84 case PCI_IOC_BDF_CFGWRITE:
85 if (bdfr->bus > 255 || bdfr->device >= sc->sc_maxndevs ||
86 bdfr->function > 7)
87 return (EINVAL);
88 tag = pci_make_tag(sc->sc_pc, bdfr->bus, bdfr->device,
89 bdfr->function);
90 if (cmd == PCI_IOC_BDF_CFGREAD)
91 bdfr->cfgreg.val = pci_conf_read(sc->sc_pc, tag,
92 bdfr->cfgreg.reg);
93 else {
94 if ((flag & FWRITE) == 0)
95 return (EBADF);
96 pci_conf_write(sc->sc_pc, tag, bdfr->cfgreg.reg,
97 bdfr->cfgreg.val);
98 }
99 break;
100
101 case PCI_IOC_BUSINFO:
102 binfo->busno = sc->sc_bus;
103 binfo->maxdevs = sc->sc_maxndevs;
104 break;
105
106 default:
107 return (ENOTTY);
108 }
109
110 return (0);
111 }
112
113 static paddr_t
114 pcimmap(dev_t dev, off_t offset, int prot)
115 {
116 #ifdef INSECURE
117 struct pci_softc *sc = device_lookup_private(&pci_cd, minor(dev));
118
119 /*
120 * Since we allow mapping of the entire bus, we
121 * take the offset to be the address on the bus,
122 * and pass 0 as the offset into that range.
123 *
124 * XXX Need a way to deal with linear/prefetchable/etc.
125 *
126 * XXX we rely on MD mmap() methods to enforce limits since these
127 * are hidden in *_tag_t structs if they exist at all
128 */
129
130 #ifdef PCI_MAGIC_IO_RANGE
131 /*
132 * first, check if someone's trying to map the IO range
133 * XXX this assumes 64kB IO space even though some machines can have
134 * significantly more than that - macppc's bandit host bridge allows
135 * 8MB IO space and sparc64 may have the entire 4GB available. The
136 * firmware on both tries to use the lower 64kB first though and
137 * exausting it is pretty difficult so we should be safe
138 */
139 if ((offset >= PCI_MAGIC_IO_RANGE) &&
140 (offset < (PCI_MAGIC_IO_RANGE + 0x10000))) {
141 return bus_space_mmap(sc->sc_iot, offset - PCI_MAGIC_IO_RANGE,
142 0, prot, 0);
143 }
144 #endif /* PCI_MAGIC_IO_RANGE */
145 return (bus_space_mmap(sc->sc_memt, offset, 0, prot, 0));
146 #else /* INSECURE */
147 return (-1);
148 #endif /* INSECURE */
149 }
150
151 const struct cdevsw pci_cdevsw = {
152 pciopen, nullclose, noread, nowrite, pciioctl,
153 nostop, notty, nopoll, pcimmap, nokqfilter, D_OTHER,
154 };
155
156 /*
157 * pci_devioctl:
158 *
159 * PCI ioctls that can be performed on devices directly.
160 */
161 int
162 pci_devioctl(pci_chipset_tag_t pc, pcitag_t tag, u_long cmd, void *data,
163 int flag, struct lwp *l)
164 {
165 struct pciio_cfgreg *r = (void *) data;
166
167 switch (cmd) {
168 case PCI_IOC_CFGREAD:
169 case PCI_IOC_CFGWRITE:
170 if (cmd == PCI_IOC_CFGREAD)
171 r->val = pci_conf_read(pc, tag, r->reg);
172 else {
173 if ((flag & FWRITE) == 0)
174 return (EBADF);
175 pci_conf_write(pc, tag, r->reg, r->val);
176 }
177 break;
178
179 default:
180 return (EPASSTHROUGH);
181 }
182
183 return (0);
184 }
185