Home | History | Annotate | Line # | Download | only in sbus
qec.c revision 1.29
      1  1.29       pk /*	$NetBSD: qec.c,v 1.29 2004/06/27 18:28:26 pk Exp $ */
      2   1.1       pk 
      3   1.1       pk /*-
      4   1.1       pk  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5   1.1       pk  * All rights reserved.
      6   1.1       pk  *
      7   1.1       pk  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1       pk  * by Paul Kranenburg.
      9   1.1       pk  *
     10   1.1       pk  * Redistribution and use in source and binary forms, with or without
     11   1.1       pk  * modification, are permitted provided that the following conditions
     12   1.1       pk  * are met:
     13   1.1       pk  * 1. Redistributions of source code must retain the above copyright
     14   1.1       pk  *    notice, this list of conditions and the following disclaimer.
     15   1.1       pk  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       pk  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       pk  *    documentation and/or other materials provided with the distribution.
     18   1.1       pk  * 3. All advertising materials mentioning features or use of this software
     19   1.1       pk  *    must display the following acknowledgement:
     20   1.1       pk  *        This product includes software developed by the NetBSD
     21   1.1       pk  *        Foundation, Inc. and its contributors.
     22   1.1       pk  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1       pk  *    contributors may be used to endorse or promote products derived
     24   1.1       pk  *    from this software without specific prior written permission.
     25   1.1       pk  *
     26   1.1       pk  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1       pk  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1       pk  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1       pk  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1       pk  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1       pk  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1       pk  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1       pk  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1       pk  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1       pk  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1       pk  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1       pk  */
     38  1.14    lukem 
     39  1.14    lukem #include <sys/cdefs.h>
     40  1.29       pk __KERNEL_RCSID(0, "$NetBSD: qec.c,v 1.29 2004/06/27 18:28:26 pk Exp $");
     41   1.1       pk 
     42   1.1       pk #include <sys/param.h>
     43   1.1       pk #include <sys/systm.h>
     44   1.1       pk #include <sys/kernel.h>
     45   1.1       pk #include <sys/errno.h>
     46   1.1       pk #include <sys/device.h>
     47   1.1       pk #include <sys/malloc.h>
     48   1.1       pk 
     49   1.2       pk #include <machine/bus.h>
     50  1.11       pk #include <machine/intr.h>
     51   1.2       pk #include <machine/autoconf.h>
     52   1.1       pk 
     53   1.1       pk #include <dev/sbus/sbusvar.h>
     54   1.1       pk #include <dev/sbus/qecreg.h>
     55   1.1       pk #include <dev/sbus/qecvar.h>
     56   1.1       pk 
     57   1.1       pk static int	qecprint	__P((void *, const char *));
     58   1.1       pk static int	qecmatch	__P((struct device *, struct cfdata *, void *));
     59   1.1       pk static void	qecattach	__P((struct device *, struct device *, void *));
     60   1.7       pk void		qec_init	__P((struct qec_softc *));
     61   1.1       pk 
     62   1.8       pk static void *qec_intr_establish __P((
     63   1.8       pk 		bus_space_tag_t,
     64  1.11       pk 		int,			/*bus interrupt priority*/
     65  1.11       pk 		int,			/*`device class' interrupt level*/
     66   1.8       pk 		int (*) __P((void *)),	/*handler*/
     67  1.25       pk 		void *,			/*arg*/
     68  1.25       pk 		void (*) __P((void))));	/*optional fast trap handler*/
     69   1.1       pk 
     70  1.23  thorpej CFATTACH_DECL(qec, sizeof(struct qec_softc),
     71  1.24  thorpej     qecmatch, qecattach, NULL, NULL);
     72   1.1       pk 
     73   1.1       pk int
     74   1.1       pk qecprint(aux, busname)
     75   1.1       pk 	void *aux;
     76   1.1       pk 	const char *busname;
     77   1.1       pk {
     78   1.1       pk 	struct sbus_attach_args *sa = aux;
     79   1.1       pk 	bus_space_tag_t t = sa->sa_bustag;
     80   1.1       pk 	struct qec_softc *sc = t->cookie;
     81   1.1       pk 
     82   1.1       pk 	sa->sa_bustag = sc->sc_bustag;	/* XXX */
     83   1.1       pk 	sbus_print(aux, busname);	/* XXX */
     84   1.1       pk 	sa->sa_bustag = t;		/* XXX */
     85   1.1       pk 	return (UNCONF);
     86   1.1       pk }
     87   1.1       pk 
     88   1.1       pk int
     89   1.1       pk qecmatch(parent, cf, aux)
     90   1.1       pk 	struct device *parent;
     91   1.1       pk 	struct cfdata *cf;
     92   1.1       pk 	void *aux;
     93   1.1       pk {
     94   1.1       pk 	struct sbus_attach_args *sa = aux;
     95   1.1       pk 
     96  1.21  thorpej 	return (strcmp(cf->cf_name, sa->sa_name) == 0);
     97   1.1       pk }
     98   1.1       pk 
     99   1.1       pk /*
    100   1.1       pk  * Attach all the sub-devices we can find
    101   1.1       pk  */
    102   1.1       pk void
    103   1.1       pk qecattach(parent, self, aux)
    104   1.1       pk 	struct device *parent, *self;
    105   1.1       pk 	void *aux;
    106   1.1       pk {
    107   1.1       pk 	struct sbus_attach_args *sa = aux;
    108   1.1       pk 	struct qec_softc *sc = (void *)self;
    109   1.1       pk 	int node;
    110   1.1       pk 	int sbusburst;
    111   1.1       pk 	bus_space_tag_t sbt;
    112   1.1       pk 	bus_space_handle_t bh;
    113   1.1       pk 	int error;
    114   1.1       pk 
    115   1.1       pk 	sc->sc_bustag = sa->sa_bustag;
    116   1.1       pk 	sc->sc_dmatag = sa->sa_dmatag;
    117   1.1       pk 	node = sa->sa_node;
    118   1.1       pk 
    119   1.6       pk 	if (sa->sa_nreg < 2) {
    120   1.6       pk 		printf("%s: only %d register sets\n",
    121   1.6       pk 			self->dv_xname, sa->sa_nreg);
    122   1.1       pk 		return;
    123   1.1       pk 	}
    124   1.1       pk 
    125   1.1       pk 	if (sbus_bus_map(sa->sa_bustag,
    126  1.20  thorpej 			 sa->sa_reg[0].oa_space,
    127  1.20  thorpej 			 sa->sa_reg[0].oa_base,
    128  1.20  thorpej 			 sa->sa_reg[0].oa_size,
    129  1.19      eeh 			 0, &sc->sc_regs) != 0) {
    130   1.1       pk 		printf("%s: attach: cannot map registers\n", self->dv_xname);
    131   1.1       pk 		return;
    132   1.1       pk 	}
    133   1.1       pk 
    134   1.1       pk 	/*
    135   1.1       pk 	 * This device's "register space 1" is just a buffer where the
    136   1.1       pk 	 * Lance ring-buffers can be stored. Note the buffer's location
    137   1.1       pk 	 * and size, so the child driver can pick them up.
    138   1.1       pk 	 */
    139   1.1       pk 	if (sbus_bus_map(sa->sa_bustag,
    140  1.20  thorpej 			 sa->sa_reg[1].oa_space,
    141  1.20  thorpej 			 sa->sa_reg[1].oa_base,
    142  1.20  thorpej 			 sa->sa_reg[1].oa_size,
    143  1.18       pk 			 BUS_SPACE_MAP_LINEAR, &bh) != 0) {
    144   1.1       pk 		printf("%s: attach: cannot map registers\n", self->dv_xname);
    145   1.1       pk 		return;
    146   1.1       pk 	}
    147  1.19      eeh 	sc->sc_buffer = (caddr_t)bus_space_vaddr(sa->sa_bustag, bh);
    148  1.20  thorpej 	sc->sc_bufsiz = (bus_size_t)sa->sa_reg[1].oa_size;
    149   1.1       pk 
    150   1.7       pk 	/* Get number of on-board channels */
    151  1.28       pk 	sc->sc_nchannels = prom_getpropint(node, "#channels", -1);
    152   1.7       pk 	if (sc->sc_nchannels == -1) {
    153   1.7       pk 		printf(": no channels\n");
    154   1.7       pk 		return;
    155   1.7       pk 	}
    156   1.7       pk 
    157   1.1       pk 	/*
    158   1.1       pk 	 * Get transfer burst size from PROM
    159   1.1       pk 	 */
    160   1.1       pk 	sbusburst = ((struct sbus_softc *)parent)->sc_burst;
    161   1.1       pk 	if (sbusburst == 0)
    162   1.1       pk 		sbusburst = SBUS_BURST_32 - 1; /* 1->16 */
    163   1.1       pk 
    164  1.28       pk 	sc->sc_burst = prom_getpropint(node, "burst-sizes", -1);
    165   1.1       pk 	if (sc->sc_burst == -1)
    166   1.1       pk 		/* take SBus burst sizes */
    167   1.1       pk 		sc->sc_burst = sbusburst;
    168   1.1       pk 
    169   1.1       pk 	/* Clamp at parent's burst sizes */
    170   1.1       pk 	sc->sc_burst &= sbusburst;
    171   1.1       pk 
    172   1.1       pk 	sbus_establish(&sc->sc_sd, &sc->sc_dev);
    173   1.1       pk 
    174  1.29       pk 	/* Allocate a bus tag */
    175  1.29       pk 	sbt = (bus_space_tag_t) malloc(sizeof(*sbt), M_DEVBUF, M_NOWAIT);
    176  1.29       pk 	if (sbt == NULL) {
    177  1.29       pk 		printf("%s: attach: out of memory\n", self->dv_xname);
    178  1.29       pk 		return;
    179  1.29       pk 	}
    180  1.29       pk 
    181  1.29       pk 	memcpy(sbt, sc->sc_bustag, sizeof(*sbt));
    182  1.29       pk 	sbt->cookie = sc;
    183  1.29       pk 	sbt->parent = sc->sc_bustag;
    184  1.29       pk 	sbt->sparc_intr_establish = qec_intr_establish;
    185  1.29       pk 	sbt->ranges = NULL;
    186  1.29       pk 	sbt->nranges = 0;
    187  1.29       pk 
    188   1.1       pk 	/*
    189   1.1       pk 	 * Collect address translations from the OBP.
    190   1.1       pk 	 */
    191  1.28       pk 	error = prom_getprop(node, "ranges", sizeof(struct openprom_range),
    192  1.29       pk 			 &sbt->nranges, &sbt->ranges);
    193   1.1       pk 	switch (error) {
    194   1.1       pk 	case 0:
    195   1.1       pk 		break;
    196   1.1       pk 	case ENOENT:
    197   1.1       pk 	default:
    198   1.1       pk 		panic("%s: error getting ranges property", self->dv_xname);
    199   1.1       pk 	}
    200   1.1       pk 
    201   1.8       pk 	/*
    202   1.8       pk 	 * Save interrupt information for use in our qec_intr_establish()
    203   1.8       pk 	 * function below. Apparently, the intr level for the quad
    204  1.16      wiz 	 * ethernet board (qe) is stored in the QEC node rather than
    205   1.8       pk 	 * separately in each of the QE nodes.
    206   1.8       pk 	 *
    207   1.8       pk 	 * XXX - qe.c should call bus_intr_establish() with `level = 0'..
    208   1.8       pk 	 * XXX - maybe we should have our own attach args for all that.
    209   1.8       pk 	 */
    210   1.8       pk 	sc->sc_intr = sa->sa_intr;
    211   1.1       pk 
    212   1.1       pk 	printf(": %dK memory\n", sc->sc_bufsiz / 1024);
    213   1.1       pk 
    214   1.7       pk 	qec_init(sc);
    215   1.7       pk 
    216   1.1       pk 	/* search through children */
    217   1.1       pk 	for (node = firstchild(node); node; node = nextsibling(node)) {
    218   1.1       pk 		struct sbus_attach_args sa;
    219   1.1       pk 		sbus_setup_attach_args((struct sbus_softc *)parent,
    220  1.10       pk 				       sbt, sc->sc_dmatag, node, &sa);
    221   1.1       pk 		(void)config_found(&sc->sc_dev, (void *)&sa, qecprint);
    222   1.3       pk 		sbus_destroy_attach_args(&sa);
    223   1.1       pk 	}
    224   1.1       pk }
    225   1.1       pk 
    226   1.8       pk void *
    227  1.26       pk qec_intr_establish(t, pri, level, handler, arg, fastvec)
    228   1.8       pk 	bus_space_tag_t t;
    229  1.11       pk 	int pri;
    230  1.11       pk 	int level;
    231  1.11       pk 	int (*handler) __P((void *));
    232  1.11       pk 	void *arg;
    233  1.25       pk 	void (*fastvec) __P((void));	/* ignored */
    234   1.8       pk {
    235   1.8       pk 	struct qec_softc *sc = t->cookie;
    236   1.8       pk 
    237  1.11       pk 	if (pri == 0) {
    238   1.8       pk 		/*
    239  1.11       pk 		 * qe.c calls bus_intr_establish() with `pri == 0'
    240   1.8       pk 		 * XXX - see also comment in qec_attach().
    241   1.8       pk 		 */
    242   1.8       pk 		if (sc->sc_intr == NULL) {
    243   1.8       pk 			printf("%s: warning: no interrupts\n",
    244   1.8       pk 				sc->sc_dev.dv_xname);
    245   1.8       pk 			return (NULL);
    246   1.8       pk 		}
    247  1.20  thorpej 		pri = sc->sc_intr->oi_pri;
    248   1.8       pk 	}
    249   1.8       pk 
    250  1.26       pk 	return (bus_intr_establish(t->parent, pri, level, handler, arg));
    251   1.8       pk }
    252   1.8       pk 
    253   1.7       pk void
    254   1.7       pk qec_init(sc)
    255   1.7       pk 	struct qec_softc *sc;
    256   1.7       pk {
    257   1.7       pk 	bus_space_tag_t t = sc->sc_bustag;
    258   1.7       pk 	bus_space_handle_t qr = sc->sc_regs;
    259   1.9       pk 	u_int32_t v, burst = 0, psize;
    260   1.9       pk 	int i;
    261   1.9       pk 
    262   1.9       pk 	/* First, reset the controller */
    263   1.9       pk 	bus_space_write_4(t, qr, QEC_QRI_CTRL, QEC_CTRL_RESET);
    264   1.9       pk 	for (i = 0; i < 1000; i++) {
    265   1.9       pk 		DELAY(100);
    266   1.9       pk 		v = bus_space_read_4(t, qr, QEC_QRI_CTRL);
    267   1.9       pk 		if ((v & QEC_CTRL_RESET) == 0)
    268   1.9       pk 			break;
    269   1.9       pk 	}
    270   1.7       pk 
    271   1.7       pk 	/*
    272   1.7       pk 	 * Cut available buffer size into receive and transmit buffers.
    273   1.7       pk 	 * XXX - should probably be done in be & qe driver...
    274   1.7       pk 	 */
    275   1.7       pk 	v = sc->sc_msize = sc->sc_bufsiz / sc->sc_nchannels;
    276   1.7       pk 	bus_space_write_4(t, qr, QEC_QRI_MSIZE, v);
    277   1.7       pk 
    278   1.7       pk 	v = sc->sc_rsize = sc->sc_bufsiz / (sc->sc_nchannels * 2);
    279   1.7       pk 	bus_space_write_4(t, qr, QEC_QRI_RSIZE, v);
    280   1.7       pk 	bus_space_write_4(t, qr, QEC_QRI_TSIZE, v);
    281   1.7       pk 
    282   1.9       pk 	psize = sc->sc_nchannels == 1 ? QEC_PSIZE_2048 : 0;
    283   1.9       pk 	bus_space_write_4(t, qr, QEC_QRI_PSIZE, psize);
    284   1.7       pk 
    285   1.7       pk 	if (sc->sc_burst & SBUS_BURST_64)
    286   1.7       pk 		burst = QEC_CTRL_B64;
    287   1.7       pk 	else if (sc->sc_burst & SBUS_BURST_32)
    288   1.7       pk 		burst = QEC_CTRL_B32;
    289   1.7       pk 	else
    290   1.7       pk 		burst = QEC_CTRL_B16;
    291   1.7       pk 
    292   1.7       pk 	v = bus_space_read_4(t, qr, QEC_QRI_CTRL);
    293   1.7       pk 	v = (v & QEC_CTRL_MODEMASK) | burst;
    294   1.7       pk 	bus_space_write_4(t, qr, QEC_QRI_CTRL, v);
    295   1.8       pk }
    296   1.8       pk 
    297   1.8       pk /*
    298   1.8       pk  * Common routine to initialize the QEC packet ring buffer.
    299   1.8       pk  * Called from be & qe drivers.
    300   1.8       pk  */
    301   1.8       pk void
    302   1.8       pk qec_meminit(qr, pktbufsz)
    303   1.8       pk 	struct qec_ring *qr;
    304   1.8       pk 	unsigned int pktbufsz;
    305   1.8       pk {
    306   1.8       pk 	bus_addr_t txbufdma, rxbufdma;
    307   1.8       pk 	bus_addr_t dma;
    308   1.8       pk 	caddr_t p;
    309   1.8       pk 	unsigned int ntbuf, nrbuf, i;
    310   1.8       pk 
    311   1.8       pk 	p = qr->rb_membase;
    312   1.8       pk 	dma = qr->rb_dmabase;
    313   1.8       pk 
    314   1.8       pk 	ntbuf = qr->rb_ntbuf;
    315   1.8       pk 	nrbuf = qr->rb_nrbuf;
    316   1.8       pk 
    317   1.8       pk 	/*
    318   1.8       pk 	 * Allocate transmit descriptors
    319   1.8       pk 	 */
    320   1.8       pk 	qr->rb_txd = (struct qec_xd *)p;
    321   1.8       pk 	qr->rb_txddma = dma;
    322   1.8       pk 	p += QEC_XD_RING_MAXSIZE * sizeof(struct qec_xd);
    323   1.8       pk 	dma += QEC_XD_RING_MAXSIZE * sizeof(struct qec_xd);
    324   1.8       pk 
    325   1.8       pk 	/*
    326   1.8       pk 	 * Allocate receive descriptors
    327   1.8       pk 	 */
    328   1.8       pk 	qr->rb_rxd = (struct qec_xd *)p;
    329   1.8       pk 	qr->rb_rxddma = dma;
    330   1.8       pk 	p += QEC_XD_RING_MAXSIZE * sizeof(struct qec_xd);
    331   1.8       pk 	dma += QEC_XD_RING_MAXSIZE * sizeof(struct qec_xd);
    332   1.8       pk 
    333   1.8       pk 
    334   1.8       pk 	/*
    335   1.8       pk 	 * Allocate transmit buffers
    336   1.8       pk 	 */
    337   1.8       pk 	qr->rb_txbuf = p;
    338   1.8       pk 	txbufdma = dma;
    339   1.8       pk 	p += ntbuf * pktbufsz;
    340   1.8       pk 	dma += ntbuf * pktbufsz;
    341   1.8       pk 
    342   1.8       pk 	/*
    343   1.8       pk 	 * Allocate receive buffers
    344   1.8       pk 	 */
    345   1.8       pk 	qr->rb_rxbuf = p;
    346   1.8       pk 	rxbufdma = dma;
    347   1.8       pk 	p += nrbuf * pktbufsz;
    348   1.8       pk 	dma += nrbuf * pktbufsz;
    349   1.8       pk 
    350   1.8       pk 	/*
    351   1.8       pk 	 * Initialize transmit buffer descriptors
    352   1.8       pk 	 */
    353   1.8       pk 	for (i = 0; i < QEC_XD_RING_MAXSIZE; i++) {
    354   1.8       pk 		qr->rb_txd[i].xd_addr = (u_int32_t)
    355   1.8       pk 			(txbufdma + (i % ntbuf) * pktbufsz);
    356   1.8       pk 		qr->rb_txd[i].xd_flags = 0;
    357   1.8       pk 	}
    358   1.8       pk 
    359   1.8       pk 	/*
    360   1.8       pk 	 * Initialize receive buffer descriptors
    361   1.8       pk 	 */
    362   1.8       pk 	for (i = 0; i < QEC_XD_RING_MAXSIZE; i++) {
    363   1.8       pk 		qr->rb_rxd[i].xd_addr = (u_int32_t)
    364   1.8       pk 			(rxbufdma + (i % nrbuf) * pktbufsz);
    365   1.8       pk 		qr->rb_rxd[i].xd_flags = (i < nrbuf)
    366   1.8       pk 			? QEC_XD_OWN | (pktbufsz & QEC_XD_LENGTH)
    367   1.8       pk 			: 0;
    368   1.8       pk 	}
    369   1.8       pk 
    370   1.8       pk 	qr->rb_tdhead = qr->rb_tdtail = 0;
    371   1.8       pk 	qr->rb_td_nbusy = 0;
    372   1.8       pk 	qr->rb_rdtail = 0;
    373   1.1       pk }
    374