1 /*- 2 * Copyright (c) 1997-2000 Nicolas Souchu 3 * Copyright (c) 2001 Alcove - Nicolas Souchu 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 * 27 * $FreeBSD$ 28 * 29 */ 30 31 #include <sys/param.h> 32 #include <sys/kernel.h> 33 #include <sys/bus.h> 34 35 #include <machine/bus.h> 36 37 #include <dev/ppbus/ppbconf.h> 38 #include <dev/ppbus/ppb_msq.h> 39 #include <dev/ppc/ppcvar.h> 40 #include <dev/ppc/ppcreg.h> 41 42 #include "ppbus_if.h" 43 44 static int ppc_puc_probe(device_t dev); 45 46 static device_method_t ppc_puc_methods[] = { 47 /* device interface */ 48 DEVMETHOD(device_probe, ppc_puc_probe), 49 DEVMETHOD(device_attach, ppc_attach), 50 51 /* bus interface */ 52 DEVMETHOD(bus_read_ivar, ppc_read_ivar), 53 DEVMETHOD(bus_setup_intr, ppc_setup_intr), 54 DEVMETHOD(bus_teardown_intr, ppc_teardown_intr), 55 DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource), 56 57 /* ppbus interface */ 58 DEVMETHOD(ppbus_io, ppc_io), 59 DEVMETHOD(ppbus_exec_microseq, ppc_exec_microseq), 60 DEVMETHOD(ppbus_reset_epp, ppc_reset_epp), 61 DEVMETHOD(ppbus_setmode, ppc_setmode), 62 DEVMETHOD(ppbus_ecp_sync, ppc_ecp_sync), 63 DEVMETHOD(ppbus_read, ppc_read), 64 DEVMETHOD(ppbus_write, ppc_write), 65 66 { 0, 0 } 67 }; 68 69 static driver_t ppc_puc_driver = { 70 "ppc", 71 ppc_puc_methods, 72 sizeof(struct ppc_data), 73 }; 74 75 static int 76 ppc_puc_probe(dev) 77 device_t dev; 78 { 79 device_set_desc(dev, "Parallel port"); 80 return (ppc_probe(dev)); 81 } 82 83 DRIVER_MODULE(ppc, puc, ppc_puc_driver, ppc_devclass, 0, 0); 84