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