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/vx/if_vx_eisa.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) 1996 Naoki Hamada <nao@tom-yam.or.jp>
    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 
   31 #include <sys/cdefs.h>
   32 __FBSDID("$FreeBSD: releng/6.0/sys/dev/vx/if_vx_eisa.c 139749 2005-01-06 01:43:34Z imp $");
   33 
   34 #include <sys/param.h>
   35 #include <sys/systm.h>
   36 #include <sys/kernel.h>
   37 #include <sys/socket.h>
   38 #include <sys/module.h>
   39 #include <sys/bus.h>
   40 
   41 #include <machine/bus.h>
   42 #include <machine/resource.h>
   43 #include <sys/rman.h>
   44 
   45 #include <net/if.h>
   46 #include <net/if_arp.h>
   47 
   48 #include <dev/eisa/eisaconf.h>
   49 
   50 #include <dev/vx/if_vxreg.h>
   51 #include <dev/vx/if_vxvar.h>
   52 
   53 #define EISA_DEVICE_ID_3COM_3C592       0x506d5920
   54 #define EISA_DEVICE_ID_3COM_3C597_TX    0x506d5970
   55 #define EISA_DEVICE_ID_3COM_3C597_T4    0x506d5971
   56 #define EISA_DEVICE_ID_3COM_3C597_MII   0x506d5972
   57 
   58 
   59 #define VX_EISA_SLOT_OFFSET             0x0c80
   60 #define VX_EISA_IOSIZE                  0x000a
   61 #define VX_RESOURCE_CONFIG              0x0008
   62 
   63 
   64 static const char *vx_match(eisa_id_t type);
   65 
   66 static const char *
   67 vx_match(eisa_id_t type)
   68 {
   69         switch (type) {
   70         case EISA_DEVICE_ID_3COM_3C592:
   71                 return "3Com 3C592 Network Adapter";
   72         case EISA_DEVICE_ID_3COM_3C597_TX:
   73                 return "3Com 3C597-TX Network Adapter";
   74         case EISA_DEVICE_ID_3COM_3C597_T4:
   75                 return "3Com 3C597-T4 Network Adapter";
   76         case EISA_DEVICE_ID_3COM_3C597_MII:
   77                 return "3Com 3C597-MII Network Adapter";
   78         default:
   79                 break;
   80         }
   81         return (NULL);
   82 }
   83 
   84 static int
   85 vx_eisa_probe(device_t dev)
   86 {
   87         const char *desc;
   88         u_long iobase;
   89         u_long port;
   90 
   91         desc = vx_match(eisa_get_id(dev));
   92         if (!desc)
   93                 return (ENXIO);
   94         device_set_desc(dev, desc);
   95 
   96         port = eisa_get_slot(dev) * EISA_SLOT_SIZE;
   97         iobase = port + VX_EISA_SLOT_OFFSET;
   98 
   99         eisa_add_iospace(dev, iobase, VX_EISA_IOSIZE, RESVADDR_NONE);
  100         eisa_add_iospace(dev, port, VX_IOSIZE, RESVADDR_NONE);
  101 
  102         /* Set irq */
  103         eisa_add_intr(dev, inw(iobase + VX_RESOURCE_CONFIG) >> 12,
  104             EISA_TRIGGER_EDGE);
  105 
  106         return (0);
  107 }
  108 
  109 static int
  110 vx_eisa_attach(device_t dev)
  111 {
  112         struct vx_softc *sc;
  113         struct resource *io = 0;
  114         struct resource *eisa_io = 0;
  115         struct resource *irq = 0;
  116         int rid;
  117         void *ih;
  118 
  119         /*
  120          * The addresses are sorted in increasing order
  121          * so we know the port to pass to the core ep
  122          * driver comes first.
  123          */
  124         rid = 0;
  125         io = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid, RF_ACTIVE);
  126         if (!io) {
  127                 device_printf(dev, "No I/O space?!\n");
  128                 goto bad;
  129         }
  130         rid = 1;
  131         eisa_io = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid, RF_ACTIVE);
  132         if (!eisa_io) {
  133                 device_printf(dev, "No I/O space?!\n");
  134                 goto bad;
  135         }
  136         sc = device_get_softc(dev);
  137 
  138         sc->vx_res = io;
  139         sc->bst = rman_get_bustag(io);
  140         sc->bsh = rman_get_bushandle(io);
  141 
  142         rid = 0;
  143         irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
  144         if (!irq) {
  145                 device_printf(dev, "No irq?!\n");
  146                 goto bad;
  147         }
  148         sc->vx_irq = irq;
  149 
  150         /* Now the registers are availible through the lower ioport */
  151 
  152         vxattach(dev);
  153 
  154         if (bus_setup_intr(dev, irq, INTR_TYPE_NET, vxintr, sc, &ih))
  155                 goto bad;
  156 
  157         sc->vx_intrhand = ih;
  158 
  159         return 0;
  160 
  161 bad:
  162         if (io)
  163                 bus_release_resource(dev, SYS_RES_IOPORT, 0, io);
  164         if (eisa_io)
  165                 bus_release_resource(dev, SYS_RES_IOPORT, 0, eisa_io);
  166         if (irq)
  167                 bus_release_resource(dev, SYS_RES_IRQ, 0, irq);
  168         return -1;
  169 }
  170 
  171 static device_method_t vx_eisa_methods[] = {
  172         /* Device interface */
  173         DEVMETHOD(device_probe, vx_eisa_probe),
  174         DEVMETHOD(device_attach, vx_eisa_attach),
  175 
  176         {0, 0}
  177 };
  178 
  179 static driver_t vx_eisa_driver = {
  180         "vx",
  181         vx_eisa_methods,
  182         sizeof(struct vx_softc)
  183 };
  184 
  185 static devclass_t vx_devclass;
  186 
  187 DRIVER_MODULE(vx, eisa, vx_eisa_driver, vx_devclass, 0, 0);

Cache object: 850431f07cf65b480b3b3861b4615af4


[ 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.