The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/puc/puc_pccard.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2002 Poul-Henning Kamp.  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 unmodified, this list of conditions, and the following
    9  *    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  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   24  *
   25  */
   26 
   27 #include <sys/cdefs.h>
   28 __FBSDID("$FreeBSD$");
   29 
   30 #include <sys/param.h>
   31 #include <sys/systm.h>
   32 #include <sys/kernel.h>
   33 #include <sys/module.h>
   34 #include <sys/bus.h>
   35 #include <sys/conf.h>
   36 #include <sys/malloc.h>
   37 
   38 #include <machine/bus.h>
   39 #include <machine/resource.h>
   40 #include <sys/rman.h>
   41 
   42 #include <dev/pccard/pccardvar.h>
   43 
   44 #include <dev/puc/puc_cfg.h>
   45 #include <dev/puc/puc_bfe.h>
   46 
   47 /* http://www.argosy.com.tw/product/sp320.htm */
   48 const struct puc_cfg puc_pccard_rscom = {
   49         0, 0, 0, 0,
   50         "ARGOSY SP320 Dual port serial PCMCIA",
   51         DEFAULT_RCLK,
   52         PUC_PORT_2S, 0, 1, 0,
   53 };
   54 
   55 static int
   56 puc_pccard_probe(device_t dev)
   57 {
   58         const char *vendor, *product;
   59         int error;
   60 
   61         error = pccard_get_vendor_str(dev, &vendor);
   62         if (error)
   63                 return(error);
   64         error = pccard_get_product_str(dev, &product);
   65         if (error)
   66                 return(error);
   67         if (!strcmp(vendor, "PCMCIA") && !strcmp(product, "RS-COM 2P"))
   68                 return (puc_bfe_probe(dev, &puc_pccard_rscom));
   69 
   70         return (ENXIO);
   71 }
   72 
   73 static device_method_t puc_pccard_methods[] = {
   74     /* Device interface */
   75     DEVMETHOD(device_probe,             puc_pccard_probe),
   76     DEVMETHOD(device_attach,            puc_bfe_attach),
   77     DEVMETHOD(device_detach,            puc_bfe_detach),
   78 
   79     DEVMETHOD(bus_alloc_resource,       puc_bus_alloc_resource),
   80     DEVMETHOD(bus_release_resource,     puc_bus_release_resource),
   81     DEVMETHOD(bus_get_resource,         puc_bus_get_resource),
   82     DEVMETHOD(bus_read_ivar,            puc_bus_read_ivar),
   83     DEVMETHOD(bus_setup_intr,           puc_bus_setup_intr),
   84     DEVMETHOD(bus_teardown_intr,        puc_bus_teardown_intr),
   85     DEVMETHOD(bus_print_child,          bus_generic_print_child),
   86     DEVMETHOD(bus_driver_added,         bus_generic_driver_added),
   87     { 0, 0 }
   88 };
   89 
   90 static driver_t puc_pccard_driver = {
   91         puc_driver_name,
   92         puc_pccard_methods,
   93         sizeof(struct puc_softc),
   94 };
   95 
   96 DRIVER_MODULE(puc, pccard, puc_pccard_driver, puc_devclass, 0, 0);

Cache object: 2dac8909fc18369040998fd906238345


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.