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/qbus/dz_uba.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: dz_uba.c,v 1.28 2008/03/15 00:57:15 matt Exp $ */
    2 /*
    3  * Copyright (c) 1998 Ludd, University of Lule}, Sweden. All rights reserved.
    4  * Copyright (c) 1996  Ken C. Wellsch.  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  * 3. All advertising materials mentioning features or use of this software
   15  *    must display the following acknowledgement:
   16  *      This product includes software developed at Ludd, University of
   17  *      Lule}, Sweden and its contributors.
   18  * 4. The name of the author may not be used to endorse or promote products
   19  *    derived from this software without specific prior written permission
   20  *
   21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   31  */
   32 
   33 #include <sys/cdefs.h>
   34 __KERNEL_RCSID(0, "$NetBSD: dz_uba.c,v 1.28 2008/03/15 00:57:15 matt Exp $");
   35 
   36 #include <sys/param.h>
   37 #include <sys/systm.h>
   38 #include <sys/ioctl.h>
   39 #include <sys/tty.h>
   40 #include <sys/proc.h>
   41 #include <sys/buf.h>
   42 #include <sys/conf.h>
   43 #include <sys/file.h>
   44 #include <sys/uio.h>
   45 #include <sys/kernel.h>
   46 #include <sys/syslog.h>
   47 #include <sys/device.h>
   48 
   49 #include <sys/bus.h>
   50 #include <machine/pte.h>
   51 #include <machine/trap.h>
   52 #include <machine/scb.h>
   53 
   54 #include <dev/qbus/ubavar.h>
   55 
   56 #include <dev/dec/dzreg.h>
   57 #include <dev/dec/dzvar.h>
   58 
   59 #include "ioconf.h"
   60 
   61 static  int     dz_uba_match(device_t, cfdata_t, void *);
   62 static  void    dz_uba_attach(device_t, device_t, void *);
   63 
   64 CFATTACH_DECL_NEW(dz_uba, sizeof(struct dz_softc),
   65     dz_uba_match, dz_uba_attach, NULL, NULL);
   66 
   67 /* Autoconfig handles: setup the controller to interrupt, */
   68 /* then complete the housecleaning for full operation */
   69 
   70 static int
   71 dz_uba_match(device_t parent, cfdata_t cf, void *aux)
   72 {
   73         struct uba_attach_args *ua = aux;
   74         bus_space_tag_t iot = ua->ua_iot;
   75         bus_space_handle_t ioh = ua->ua_ioh;
   76         int n;
   77 
   78         iot = iot; /* Silly GCC */
   79         /* Reset controller to initialize, enable TX interrupts */
   80         /* to catch floating vector info elsewhere when completed */
   81 
   82         bus_space_write_2(iot, ioh, DZ_UBA_CSR, DZ_CSR_MSE | DZ_CSR_TXIE);
   83         bus_space_write_1(iot, ioh, DZ_UBA_TCR, 1);
   84 
   85         DELAY(100000);  /* delay 1/10 second */
   86 
   87         bus_space_write_2(iot, ioh, DZ_UBA_CSR, DZ_CSR_RESET);
   88 
   89         /* Now wait up to 3 seconds for reset/clear to complete. */
   90 
   91         for (n = 0; n < 300; n++) {
   92                 DELAY(10000);
   93                 if ((bus_space_read_2(iot, ioh, DZ_UBA_CSR)&DZ_CSR_RESET) == 0)
   94                         break;
   95         }
   96 
   97         /* If the RESET did not clear after 3 seconds, */
   98         /* the controller must be broken. */
   99 
  100         if (n >= 300)
  101                 return (0);
  102 
  103         /* Register the TX interrupt handler */
  104 
  105 
  106         return (1);
  107 }
  108 
  109 static void
  110 dz_uba_attach(device_t parent, device_t self, void *aux)
  111 {
  112         struct dz_softc *sc = device_private(self);
  113         struct uba_attach_args *ua = aux;
  114 
  115         sc->sc_dev = self;
  116         sc->sc_iot = ua->ua_iot;
  117         sc->sc_ioh = ua->ua_ioh;
  118 
  119         sc->sc_dr.dr_csr = DZ_UBA_CSR;
  120         sc->sc_dr.dr_rbuf = DZ_UBA_RBUF;
  121         sc->sc_dr.dr_dtr = DZ_UBA_DTR;
  122         sc->sc_dr.dr_break = DZ_UBA_BREAK;
  123         sc->sc_dr.dr_tbuf = DZ_UBA_TBUF;
  124         sc->sc_dr.dr_tcr = DZ_UBA_TCR;
  125         sc->sc_dr.dr_dcd = DZ_UBA_DCD;
  126         sc->sc_dr.dr_ring = DZ_UBA_RING;
  127 
  128         sc->sc_dr.dr_firstreg = DZ_UBA_FIRSTREG;
  129         sc->sc_dr.dr_winsize = DZ_UBA_WINSIZE;
  130 
  131         sc->sc_type = DZ_DZ;
  132 
  133         /* Now register the TX & RX interrupt handlers */
  134         uba_intr_establish(ua->ua_icookie, ua->ua_cvec,
  135                 dzxint, sc, &sc->sc_tintrcnt);
  136         uba_intr_establish(ua->ua_icookie, ua->ua_cvec - 4,
  137                 dzrint, sc, &sc->sc_rintrcnt);
  138         uba_reset_establish(dzreset, self);
  139 
  140         dzattach(sc, ua->ua_evcnt, -1);
  141 }

Cache object: 85e515831da982789bb069ae61d1ce31


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