]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/dev/pci/vga_pci.c
MFC: r227309 (partial)
[FreeBSD/stable/9.git] / sys / dev / pci / vga_pci.c
1 /*-
2  * Copyright (c) 2005 John Baldwin <jhb@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 /*
34  * Simple driver for PCI VGA display devices.  Drivers such as agp(4) and
35  * drm(4) should attach as children of this device.
36  *
37  * XXX: The vgapci name is a hack until we somehow merge the isa vga driver
38  * in or rename it.
39  */
40
41 #include <sys/param.h>
42 #include <sys/bus.h>
43 #include <sys/kernel.h>
44 #include <sys/module.h>
45 #include <sys/rman.h>
46 #include <sys/sysctl.h>
47 #include <sys/systm.h>
48
49 #include <dev/pci/pcireg.h>
50 #include <dev/pci/pcivar.h>
51
52 struct vga_resource {
53         struct resource *vr_res;
54         int     vr_refs;
55 };
56
57 struct vga_pci_softc {
58         device_t        vga_msi_child;  /* Child driver using MSI. */
59         struct vga_resource vga_res[PCIR_MAX_BAR_0 + 1];
60 };
61
62 SYSCTL_DECL(_hw_pci);
63
64 int vga_pci_default_unit = -1;
65 TUNABLE_INT("hw.pci.default_vgapci_unit", &vga_pci_default_unit);
66 SYSCTL_INT(_hw_pci, OID_AUTO, default_vgapci_unit, CTLFLAG_RDTUN,
67     &vga_pci_default_unit, -1, "Default VGA-compatible display");
68
69 static int
70 vga_pci_probe(device_t dev)
71 {
72         device_t bdev;
73         int unit;
74         uint16_t bctl;
75
76         switch (pci_get_class(dev)) {
77         case PCIC_DISPLAY:
78                 break;
79         case PCIC_OLD:
80                 if (pci_get_subclass(dev) != PCIS_OLD_VGA)
81                         return (ENXIO);
82                 break;
83         default:
84                 return (ENXIO);
85         }
86
87         /* Probe default display. */
88         unit = device_get_unit(dev);
89         bdev = device_get_parent(device_get_parent(dev));
90         bctl = pci_read_config(bdev, PCIR_BRIDGECTL_1, 2);
91         if (vga_pci_default_unit < 0 && (bctl & PCIB_BCR_VGA_ENABLE) != 0)
92                 vga_pci_default_unit = unit;
93         if (vga_pci_default_unit == unit)
94                 device_set_flags(dev, 1);
95
96         device_set_desc(dev, "VGA-compatible display");
97         return (BUS_PROBE_GENERIC);
98 }
99
100 static int
101 vga_pci_attach(device_t dev)
102 {
103
104         bus_generic_probe(dev);
105
106         /* Always create a drm child for now to make it easier on drm. */
107         device_add_child(dev, "drm", -1);
108         device_add_child(dev, "drmn", -1);
109         bus_generic_attach(dev);
110         return (0);
111 }
112
113 static int
114 vga_pci_suspend(device_t dev)
115 {
116
117         return (bus_generic_suspend(dev));
118 }
119
120 static int
121 vga_pci_resume(device_t dev)
122 {
123
124         return (bus_generic_resume(dev));
125 }
126
127 /* Bus interface. */
128
129 static int
130 vga_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
131 {
132
133         return (BUS_READ_IVAR(device_get_parent(dev), dev, which, result));
134 }
135
136 static int
137 vga_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
138 {
139
140         return (EINVAL);
141 }
142
143 static int
144 vga_pci_setup_intr(device_t dev, device_t child, struct resource *irq,
145     int flags, driver_filter_t *filter, driver_intr_t *intr, void *arg,
146     void **cookiep)
147 {
148         return (BUS_SETUP_INTR(device_get_parent(dev), dev, irq, flags,
149             filter, intr, arg, cookiep));
150 }
151
152 static int
153 vga_pci_teardown_intr(device_t dev, device_t child, struct resource *irq,
154     void *cookie)
155 {
156         return (BUS_TEARDOWN_INTR(device_get_parent(dev), dev, irq, cookie));
157 }
158
159 static struct resource *
160 vga_pci_alloc_resource(device_t dev, device_t child, int type, int *rid,
161     u_long start, u_long end, u_long count, u_int flags)
162 {
163         struct vga_pci_softc *sc;
164         int bar;
165
166         switch (type) {
167         case SYS_RES_MEMORY:
168         case SYS_RES_IOPORT:
169                 /*
170                  * For BARs, we cache the resource so that we only allocate it
171                  * from the PCI bus once.
172                  */
173                 bar = PCI_RID2BAR(*rid);
174                 if (bar < 0 || bar > PCIR_MAX_BAR_0)
175                         return (NULL);
176                 sc = device_get_softc(dev);
177                 if (sc->vga_res[bar].vr_res == NULL)
178                         sc->vga_res[bar].vr_res = bus_alloc_resource(dev, type,
179                             rid, start, end, count, flags);
180                 if (sc->vga_res[bar].vr_res != NULL)
181                         sc->vga_res[bar].vr_refs++;
182                 return (sc->vga_res[bar].vr_res);
183         }
184         return (bus_alloc_resource(dev, type, rid, start, end, count, flags));
185 }
186
187 static int
188 vga_pci_release_resource(device_t dev, device_t child, int type, int rid,
189     struct resource *r)
190 {
191         struct vga_pci_softc *sc;
192         int bar, error;
193
194         switch (type) {
195         case SYS_RES_MEMORY:
196         case SYS_RES_IOPORT:
197                 /*
198                  * For BARs, we release the resource from the PCI bus
199                  * when the last child reference goes away.
200                  */
201                 bar = PCI_RID2BAR(rid);
202                 if (bar < 0 || bar > PCIR_MAX_BAR_0)
203                         return (EINVAL);
204                 sc = device_get_softc(dev);
205                 if (sc->vga_res[bar].vr_res == NULL)
206                         return (EINVAL);
207                 KASSERT(sc->vga_res[bar].vr_res == r,
208                     ("vga_pci resource mismatch"));
209                 if (sc->vga_res[bar].vr_refs > 1) {
210                         sc->vga_res[bar].vr_refs--;
211                         return (0);
212                 }
213                 KASSERT(sc->vga_res[bar].vr_refs > 0,
214                     ("vga_pci resource reference count underflow"));
215                 error = bus_release_resource(dev, type, rid, r);
216                 if (error == 0) {
217                         sc->vga_res[bar].vr_res = NULL;
218                         sc->vga_res[bar].vr_refs = 0;
219                 }
220                 return (error);
221         }
222
223         return (bus_release_resource(dev, type, rid, r));
224 }
225
226 /* PCI interface. */
227
228 static uint32_t
229 vga_pci_read_config(device_t dev, device_t child, int reg, int width)
230 {
231
232         return (pci_read_config(dev, reg, width));
233 }
234
235 static void
236 vga_pci_write_config(device_t dev, device_t child, int reg,
237     uint32_t val, int width)
238 {
239
240         pci_write_config(dev, reg, val, width);
241 }
242
243 static int
244 vga_pci_enable_busmaster(device_t dev, device_t child)
245 {
246
247         return (pci_enable_busmaster(dev));
248 }
249
250 static int
251 vga_pci_disable_busmaster(device_t dev, device_t child)
252 {
253
254         return (pci_disable_busmaster(dev));
255 }
256
257 static int
258 vga_pci_enable_io(device_t dev, device_t child, int space)
259 {
260
261         device_printf(dev, "child %s requested pci_enable_io\n",
262             device_get_nameunit(child));
263         return (pci_enable_io(dev, space));
264 }
265
266 static int
267 vga_pci_disable_io(device_t dev, device_t child, int space)
268 {
269
270         device_printf(dev, "child %s requested pci_disable_io\n",
271             device_get_nameunit(child));
272         return (pci_disable_io(dev, space));
273 }
274
275 static int
276 vga_pci_get_vpd_ident(device_t dev, device_t child, const char **identptr)
277 {
278
279         return (pci_get_vpd_ident(dev, identptr));
280 }
281
282 static int
283 vga_pci_get_vpd_readonly(device_t dev, device_t child, const char *kw,
284     const char **vptr)
285 {
286
287         return (pci_get_vpd_readonly(dev, kw, vptr));
288 }
289
290 static int
291 vga_pci_set_powerstate(device_t dev, device_t child, int state)
292 {
293
294         device_printf(dev, "child %s requested pci_set_powerstate\n",
295             device_get_nameunit(child));
296         return (pci_set_powerstate(dev, state));
297 }
298
299 static int
300 vga_pci_get_powerstate(device_t dev, device_t child)
301 {
302
303         device_printf(dev, "child %s requested pci_get_powerstate\n",
304             device_get_nameunit(child));
305         return (pci_get_powerstate(dev));
306 }
307
308 static int
309 vga_pci_assign_interrupt(device_t dev, device_t child)
310 {
311
312         device_printf(dev, "child %s requested pci_assign_interrupt\n",
313             device_get_nameunit(child));
314         return (PCI_ASSIGN_INTERRUPT(device_get_parent(dev), dev));
315 }
316
317 static int
318 vga_pci_find_extcap(device_t dev, device_t child, int capability,
319     int *capreg)
320 {
321
322         return (pci_find_extcap(dev, capability, capreg));
323 }
324
325 static int
326 vga_pci_alloc_msi(device_t dev, device_t child, int *count)
327 {
328         struct vga_pci_softc *sc;
329         int error;
330
331         sc = device_get_softc(dev);
332         if (sc->vga_msi_child != NULL)
333                 return (EBUSY);
334         error = pci_alloc_msi(dev, count);
335         if (error == 0)
336                 sc->vga_msi_child = child;
337         return (error);
338 }
339
340 static int
341 vga_pci_alloc_msix(device_t dev, device_t child, int *count)
342 {
343         struct vga_pci_softc *sc;
344         int error;
345
346         sc = device_get_softc(dev);
347         if (sc->vga_msi_child != NULL)
348                 return (EBUSY);
349         error = pci_alloc_msix(dev, count);
350         if (error == 0)
351                 sc->vga_msi_child = child;
352         return (error);
353 }
354
355 static int
356 vga_pci_remap_msix(device_t dev, device_t child, int count,
357     const u_int *vectors)
358 {
359         struct vga_pci_softc *sc;
360
361         sc = device_get_softc(dev);
362         if (sc->vga_msi_child != child)
363                 return (ENXIO);
364         return (pci_remap_msix(dev, count, vectors));
365 }
366
367 static int
368 vga_pci_release_msi(device_t dev, device_t child)
369 {
370         struct vga_pci_softc *sc;
371         int error;
372
373         sc = device_get_softc(dev);
374         if (sc->vga_msi_child != child)
375                 return (ENXIO);
376         error = pci_release_msi(dev);
377         if (error == 0)
378                 sc->vga_msi_child = NULL;
379         return (error);
380 }
381
382 static int
383 vga_pci_msi_count(device_t dev, device_t child)
384 {
385
386         return (pci_msi_count(dev));
387 }
388
389 static int
390 vga_pci_msix_count(device_t dev, device_t child)
391 {
392
393         return (pci_msix_count(dev));
394 }
395
396 static device_method_t vga_pci_methods[] = {
397         /* Device interface */
398         DEVMETHOD(device_probe,         vga_pci_probe),
399         DEVMETHOD(device_attach,        vga_pci_attach),
400         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
401         DEVMETHOD(device_suspend,       vga_pci_suspend),
402         DEVMETHOD(device_resume,        vga_pci_resume),
403
404         /* Bus interface */
405         DEVMETHOD(bus_read_ivar,        vga_pci_read_ivar),
406         DEVMETHOD(bus_write_ivar,       vga_pci_write_ivar),
407         DEVMETHOD(bus_setup_intr,       vga_pci_setup_intr),
408         DEVMETHOD(bus_teardown_intr,    vga_pci_teardown_intr),
409         DEVMETHOD(bus_alloc_resource,   vga_pci_alloc_resource),
410         DEVMETHOD(bus_release_resource, vga_pci_release_resource),
411         DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
412         DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
413
414         /* PCI interface */
415         DEVMETHOD(pci_read_config,      vga_pci_read_config),
416         DEVMETHOD(pci_write_config,     vga_pci_write_config),
417         DEVMETHOD(pci_enable_busmaster, vga_pci_enable_busmaster),
418         DEVMETHOD(pci_disable_busmaster, vga_pci_disable_busmaster),
419         DEVMETHOD(pci_enable_io,        vga_pci_enable_io),
420         DEVMETHOD(pci_disable_io,       vga_pci_disable_io),
421         DEVMETHOD(pci_get_vpd_ident,    vga_pci_get_vpd_ident),
422         DEVMETHOD(pci_get_vpd_readonly, vga_pci_get_vpd_readonly),
423         DEVMETHOD(pci_get_powerstate,   vga_pci_get_powerstate),
424         DEVMETHOD(pci_set_powerstate,   vga_pci_set_powerstate),
425         DEVMETHOD(pci_assign_interrupt, vga_pci_assign_interrupt),
426         DEVMETHOD(pci_find_extcap,      vga_pci_find_extcap),
427         DEVMETHOD(pci_alloc_msi,        vga_pci_alloc_msi),
428         DEVMETHOD(pci_alloc_msix,       vga_pci_alloc_msix),
429         DEVMETHOD(pci_remap_msix,       vga_pci_remap_msix),
430         DEVMETHOD(pci_release_msi,      vga_pci_release_msi),
431         DEVMETHOD(pci_msi_count,        vga_pci_msi_count),
432         DEVMETHOD(pci_msix_count,       vga_pci_msix_count),
433
434         { 0, 0 }
435 };
436
437 static driver_t vga_pci_driver = {
438         "vgapci",
439         vga_pci_methods,
440         sizeof(struct vga_pci_softc),
441 };
442
443 static devclass_t vga_devclass;
444
445 DRIVER_MODULE(vgapci, pci, vga_pci_driver, vga_devclass, 0, 0);