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/isapnp/wdc_isapnp.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 /*      $NetBSD: wdc_isapnp.c,v 1.26 2004/01/03 22:56:53 thorpej Exp $  */
    2 
    3 /*-
    4  * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
    5  * All rights reserved.
    6  *
    7  * This code is derived from software contributed to The NetBSD Foundation
    8  * by Charles M. Hannum and by Onno van der Linden.
    9  *
   10  * Redistribution and use in source and binary forms, with or without
   11  * modification, are permitted provided that the following conditions
   12  * are met:
   13  * 1. Redistributions of source code must retain the above copyright
   14  *    notice, this list of conditions and the following disclaimer.
   15  * 2. Redistributions in binary form must reproduce the above copyright
   16  *    notice, this list of conditions and the following disclaimer in the
   17  *    documentation and/or other materials provided with the distribution.
   18  * 3. All advertising materials mentioning features or use of this software
   19  *    must display the following acknowledgement:
   20  *        This product includes software developed by the NetBSD
   21  *        Foundation, Inc. and its contributors.
   22  * 4. Neither the name of The NetBSD Foundation nor the names of its
   23  *    contributors may be used to endorse or promote products derived
   24  *    from this software without specific prior written permission.
   25  *
   26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
   27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
   28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
   30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   36  * POSSIBILITY OF SUCH DAMAGE.
   37  */
   38 
   39 #include <sys/cdefs.h>
   40 __KERNEL_RCSID(0, "$NetBSD: wdc_isapnp.c,v 1.26 2004/01/03 22:56:53 thorpej Exp $");
   41 
   42 #include <sys/param.h>
   43 #include <sys/systm.h>
   44 #include <sys/device.h>
   45 #include <sys/malloc.h>
   46 
   47 #include <machine/bus.h>
   48 #include <machine/intr.h>
   49 
   50 #include <dev/isa/isavar.h>
   51 #include <dev/isa/isadmavar.h>
   52 
   53 #include <dev/isapnp/isapnpreg.h>
   54 #include <dev/isapnp/isapnpvar.h>
   55 #include <dev/isapnp/isapnpdevs.h>
   56 
   57 #include <dev/ata/atavar.h>
   58 #include <dev/ic/wdcreg.h>
   59 #include <dev/ic/wdcvar.h>
   60 
   61 struct wdc_isapnp_softc {
   62         struct  wdc_softc sc_wdcdev;
   63         struct  wdc_channel *wdc_chanlist[1];
   64         struct  wdc_channel wdc_channel;
   65         struct  ata_queue wdc_chqueue;
   66         isa_chipset_tag_t sc_ic;
   67         void    *sc_ih;
   68         int     sc_drq;
   69 };
   70 
   71 int     wdc_isapnp_probe        __P((struct device *, struct cfdata *, void *));
   72 void    wdc_isapnp_attach       __P((struct device *, struct device *, void *));
   73 
   74 CFATTACH_DECL(wdc_isapnp, sizeof(struct wdc_isapnp_softc),
   75     wdc_isapnp_probe, wdc_isapnp_attach, NULL, NULL);
   76 
   77 #ifdef notyet
   78 static void     wdc_isapnp_dma_setup __P((struct wdc_isapnp_softc *));
   79 static void     wdc_isapnp_dma_start __P((void *, void *, size_t, int));
   80 static void     wdc_isapnp_dma_finish __P((void *));
   81 #endif
   82 
   83 int
   84 wdc_isapnp_probe(parent, match, aux)
   85         struct device *parent;
   86         struct cfdata *match;
   87         void *aux;
   88 {
   89         int pri, variant;
   90 
   91         pri = isapnp_devmatch(aux, &isapnp_wdc_devinfo, &variant);
   92         if (pri && variant > 0)
   93                 pri = 0;
   94         return (pri);
   95 }
   96 
   97 void
   98 wdc_isapnp_attach(parent, self, aux)
   99         struct device *parent, *self;
  100         void *aux;
  101 {
  102         struct wdc_isapnp_softc *sc = (void *)self;
  103         struct isapnp_attach_args *ipa = aux;
  104         int i;
  105 
  106         if (ipa->ipa_nio != 2 ||
  107             ipa->ipa_nmem != 0 ||
  108             ipa->ipa_nmem32 != 0 ||
  109             ipa->ipa_nirq != 1 ||
  110             ipa->ipa_ndrq > 1) {
  111                 printf(": unexpected configuration\n");
  112                 return;
  113         }
  114 
  115         if (isapnp_config(ipa->ipa_iot, ipa->ipa_memt, ipa)) {
  116                 printf(": couldn't map registers\n");
  117                 return;
  118         }
  119 
  120         printf(": %s %s\n", ipa->ipa_devident, ipa->ipa_devclass);
  121 
  122         sc->wdc_channel.cmd_iot = ipa->ipa_iot;
  123         sc->wdc_channel.ctl_iot = ipa->ipa_iot;
  124         /*
  125          * An IDE controller can feed us the regions in any order. Pass
  126          * them along with the 8-byte region in sc_ad.ioh, and the other
  127          * (2 byte) region in auxioh.
  128          */
  129         if (ipa->ipa_io[0].length == 8) {
  130                 sc->wdc_channel.cmd_baseioh = ipa->ipa_io[0].h;
  131                 sc->wdc_channel.ctl_ioh = ipa->ipa_io[1].h;
  132         } else {
  133                 sc->wdc_channel.cmd_baseioh = ipa->ipa_io[1].h;
  134                 sc->wdc_channel.ctl_ioh = ipa->ipa_io[0].h;
  135         }
  136 
  137         for (i = 0; i < WDC_NREG; i++) {
  138                 if (bus_space_subregion(sc->wdc_channel.cmd_iot,
  139                     sc->wdc_channel.cmd_baseioh, i, i == 0 ? 4 : 1,
  140                     &sc->wdc_channel.cmd_iohs[i]) != 0) {
  141                         printf(": couldn't subregion registers\n");
  142                         return;
  143                 }
  144         }
  145         sc->wdc_channel.data32iot = sc->wdc_channel.cmd_iot;
  146         sc->wdc_channel.data32ioh = sc->wdc_channel.cmd_iohs[0];
  147 
  148         sc->sc_ic = ipa->ipa_ic;
  149         sc->sc_ih = isa_intr_establish(ipa->ipa_ic, ipa->ipa_irq[0].num,
  150             ipa->ipa_irq[0].type, IPL_BIO, wdcintr, &sc->wdc_channel);
  151 
  152 #ifdef notyet
  153         if (ipa->ipa_ndrq > 0) {
  154                 sc->sc_drq = ipa->ipa_drq[0].num;
  155 
  156                 sc->sc_ad.cap |= WDC_CAPABILITY_DMA;
  157                 sc->sc_ad.dma_start = &wdc_isapnp_dma_start;
  158                 sc->sc_ad.dma_finish = &wdc_isapnp_dma_finish;
  159                 wdc_isapnp_dma_setup(sc);
  160         }
  161 #endif
  162         sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32;
  163         sc->sc_wdcdev.PIO_cap = 0;
  164         sc->wdc_chanlist[0] = &sc->wdc_channel;
  165         sc->sc_wdcdev.channels = sc->wdc_chanlist;
  166         sc->sc_wdcdev.nchannels = 1;
  167         sc->wdc_channel.ch_channel = 0;
  168         sc->wdc_channel.ch_wdc = &sc->sc_wdcdev;
  169         sc->wdc_channel.ch_queue = &sc->wdc_chqueue;
  170 
  171         wdcattach(&sc->wdc_channel);
  172 }
  173 
  174 #ifdef notyet
  175 static void
  176 wdc_isapnp_dma_setup(sc)
  177         struct wdc_isapnp_softc *sc;
  178 {
  179 
  180         if (isa_dmamap_create(sc->sc_ic, sc->sc_drq,
  181             MAXPHYS, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW)) {
  182                 printf("%s: can't create map for drq %d\n",
  183                     sc->sc_wdcdev.sc_dev.dv_xname, sc->sc_drq);
  184                 sc->sc_wdcdev.cap &= ~WDC_CAPABILITY_DMA;
  185         }
  186 }
  187 
  188 static void
  189 wdc_isapnp_dma_start(scv, buf, size, read)
  190         void *scv, *buf;
  191         size_t size;
  192         int read;
  193 {
  194         struct wdc_isapnp_softc *sc = scv;
  195 
  196         isa_dmastart(sc->sc_ic, sc->sc_drq, buf, size, NULL,
  197             (read ? DMAMODE_READ : DMAMODE_WRITE) | DMAMODE_DEMAND,
  198             BUS_DMA_NOWAIT);
  199 }
  200 
  201 static void
  202 wdc_isapnp_dma_finish(scv)
  203         void *scv;
  204 {
  205         struct wdc_isapnp_softc *sc = scv;
  206 
  207         isa_dmadone(sc->sc_ic, sc->sc_drq);
  208 }
  209 #endif

Cache object: b3eddadf33a9735abe95010abb870ac4


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