Home | History | Annotate | Line # | Download | only in tc
tcbus.c revision 1.13.4.1
      1  1.13.4.1   thorpej /*	$NetBSD: tcbus.c,v 1.13.4.1 2002/01/10 19:47:58 thorpej Exp $	*/
      2       1.1  nisimura 
      3       1.1  nisimura /*
      4       1.8  nisimura  * Copyright (c) 1999, 2000 Tohru Nishimura.  All rights reserved.
      5       1.1  nisimura  *
      6       1.1  nisimura  * Redistribution and use in source and binary forms, with or without
      7       1.1  nisimura  * modification, are permitted provided that the following conditions
      8       1.1  nisimura  * are met:
      9       1.1  nisimura  * 1. Redistributions of source code must retain the above copyright
     10       1.1  nisimura  *    notice, this list of conditions and the following disclaimer.
     11       1.1  nisimura  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1  nisimura  *    notice, this list of conditions and the following disclaimer in the
     13       1.1  nisimura  *    documentation and/or other materials provided with the distribution.
     14       1.1  nisimura  * 3. All advertising materials mentioning features or use of this software
     15       1.1  nisimura  *    must display the following acknowledgement:
     16       1.1  nisimura  *      This product includes software developed by Tohru Nishimura
     17       1.1  nisimura  *	for the NetBSD Project.
     18       1.1  nisimura  * 4. The name of the author may not be used to endorse or promote products
     19       1.1  nisimura  *    derived from this software without specific prior written permission
     20       1.1  nisimura  *
     21       1.1  nisimura  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1  nisimura  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1  nisimura  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1  nisimura  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1  nisimura  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1  nisimura  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1  nisimura  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1  nisimura  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1  nisimura  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1  nisimura  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1  nisimura  */
     32       1.1  nisimura 
     33       1.1  nisimura #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     34  1.13.4.1   thorpej __KERNEL_RCSID(0, "$NetBSD: tcbus.c,v 1.13.4.1 2002/01/10 19:47:58 thorpej Exp $");
     35      1.10  nisimura 
     36      1.10  nisimura /*
     37      1.10  nisimura  * Which system models were configured?
     38      1.10  nisimura  */
     39      1.10  nisimura #include "opt_dec_3max.h"
     40      1.10  nisimura #include "opt_dec_3min.h"
     41      1.10  nisimura #include "opt_dec_maxine.h"
     42      1.10  nisimura #include "opt_dec_3maxplus.h"
     43       1.1  nisimura 
     44       1.1  nisimura #include <sys/param.h>
     45       1.1  nisimura #include <sys/systm.h>
     46       1.1  nisimura #include <sys/device.h>
     47       1.1  nisimura 
     48       1.1  nisimura #include <machine/autoconf.h>
     49       1.7    simonb #include <machine/sysconf.h>
     50       1.1  nisimura 
     51       1.1  nisimura #define	_PMAX_BUS_DMA_PRIVATE
     52       1.1  nisimura #include <machine/bus.h>
     53       1.1  nisimura 
     54       1.1  nisimura #include <dev/tc/tcvar.h>
     55       1.1  nisimura #include <pmax/pmax/pmaxtype.h>
     56       1.1  nisimura 
     57      1.12  nisimura static const struct evcnt *tc_ds_intr_evcnt __P((struct device *, void *));
     58       1.5    simonb static void	tc_ds_intr_establish __P((struct device *, void *,
     59       1.1  nisimura 				int, int (*)(void *), void *));
     60       1.5    simonb static void	tc_ds_intr_disestablish __P((struct device *, void *));
     61       1.5    simonb static bus_dma_tag_t tc_ds_get_dma_tag __P((int));
     62       1.1  nisimura 
     63       1.5    simonb extern struct tcbus_attach_args kn02_tc_desc[];	/* XXX */
     64       1.5    simonb extern struct tcbus_attach_args kmin_tc_desc[];	/* XXX */
     65       1.5    simonb extern struct tcbus_attach_args xine_tc_desc[];	/* XXX */
     66       1.5    simonb extern struct tcbus_attach_args kn03_tc_desc[];	/* XXX */
     67       1.1  nisimura 
     68       1.5    simonb static int	tcbus_match __P((struct device *, struct cfdata *, void *));
     69       1.5    simonb static void	tcbus_attach __P((struct device *, struct device *, void *));
     70       1.1  nisimura 
     71       1.1  nisimura struct cfattach tcbus_ca = {
     72       1.1  nisimura 	sizeof(struct tc_softc), tcbus_match, tcbus_attach,
     73       1.1  nisimura };
     74       1.1  nisimura 
     75       1.1  nisimura static int tcbus_found;
     76       1.1  nisimura 
     77      1.10  nisimura static int
     78       1.1  nisimura tcbus_match(parent, cfdata, aux)
     79       1.1  nisimura 	struct device *parent;
     80       1.1  nisimura 	struct cfdata *cfdata;
     81       1.1  nisimura 	void *aux;
     82       1.1  nisimura {
     83       1.1  nisimura 	struct mainbus_attach_args *ma = aux;
     84       1.1  nisimura 
     85       1.1  nisimura 	if (tcbus_found || strcmp(ma->ma_name, "tcbus"))
     86       1.1  nisimura 		return 0;
     87       1.1  nisimura 
     88       1.1  nisimura 	return 1;
     89       1.1  nisimura }
     90       1.1  nisimura 
     91      1.10  nisimura static void
     92       1.1  nisimura tcbus_attach(parent, self, aux)
     93       1.1  nisimura 	struct device *parent, *self;
     94       1.1  nisimura 	void *aux;
     95       1.1  nisimura {
     96       1.1  nisimura 	struct tcbus_attach_args *tba;
     97       1.1  nisimura 
     98       1.1  nisimura 	tcbus_found = 1;
     99       1.1  nisimura 
    100       1.1  nisimura 	switch (systype) {
    101       1.1  nisimura #ifdef DEC_3MAX
    102       1.1  nisimura 	case DS_3MAX:
    103       1.1  nisimura 		tba = &kn02_tc_desc[0]; break;
    104       1.1  nisimura #endif
    105       1.1  nisimura #ifdef DEC_3MIN
    106       1.1  nisimura 	case DS_3MIN:
    107       1.1  nisimura 		tba = &kmin_tc_desc[0]; break;
    108       1.1  nisimura #endif
    109       1.1  nisimura #ifdef DEC_MAXINE
    110       1.1  nisimura 	case DS_MAXINE:
    111       1.1  nisimura 		tba = &xine_tc_desc[0]; break;
    112       1.1  nisimura #endif
    113       1.1  nisimura #ifdef DEC_3MAXPLUS
    114       1.1  nisimura 	case DS_3MAXPLUS:
    115       1.1  nisimura 		tba = &kn03_tc_desc[0]; break;
    116       1.1  nisimura #endif
    117       1.1  nisimura 	default:
    118       1.3  nisimura 		panic("tcbus_attach: no TURBOchannel configured for systype = %d", systype);
    119       1.1  nisimura 	}
    120       1.1  nisimura 
    121       1.1  nisimura 	tba->tba_busname = "tc";
    122       1.1  nisimura 	tba->tba_memt = 0;
    123      1.11       cgd 	tba->tba_intr_evcnt = tc_ds_intr_evcnt;
    124       1.1  nisimura 	tba->tba_intr_establish = tc_ds_intr_establish;
    125       1.1  nisimura 	tba->tba_intr_disestablish = tc_ds_intr_disestablish;
    126       1.1  nisimura 	tba->tba_get_dma_tag = tc_ds_get_dma_tag;
    127       1.1  nisimura 
    128       1.1  nisimura 	tcattach(parent, self, tba);
    129      1.11       cgd }
    130      1.11       cgd 
    131      1.11       cgd /*
    132      1.11       cgd  * Dispatch to model specific interrupt line evcnt fetch rontine
    133      1.11       cgd  */
    134      1.12  nisimura static const struct evcnt *
    135      1.11       cgd tc_ds_intr_evcnt(dev, cookie)
    136      1.11       cgd 	struct device *dev;
    137      1.11       cgd 	void *cookie;
    138      1.11       cgd {
    139      1.11       cgd 
    140      1.11       cgd 	/* XXX for now, no evcnt parent reported */
    141      1.11       cgd 	return NULL;
    142       1.1  nisimura }
    143       1.1  nisimura 
    144       1.1  nisimura /*
    145      1.10  nisimura  * Dispatch to model specific interrupt establishing routine
    146       1.1  nisimura  */
    147       1.5    simonb static void
    148       1.1  nisimura tc_ds_intr_establish(dev, cookie, level, handler, val)
    149       1.1  nisimura 	struct device *dev;
    150       1.1  nisimura 	void *cookie;
    151       1.1  nisimura 	int level;
    152      1.13   tsutsui 	int (*handler) __P((void *));
    153       1.1  nisimura 	void *val;
    154       1.1  nisimura {
    155      1.10  nisimura 
    156      1.13   tsutsui 	(*platform.intr_establish)(dev, cookie, level, handler, val);
    157       1.1  nisimura }
    158       1.1  nisimura 
    159       1.5    simonb static void
    160       1.1  nisimura tc_ds_intr_disestablish(dev, arg)
    161       1.1  nisimura 	struct device *dev;
    162       1.1  nisimura 	void *arg;
    163       1.1  nisimura {
    164      1.10  nisimura 
    165      1.13   tsutsui 	printf("cannot disestablish TC interrupts\n");
    166      1.10  nisimura }
    167      1.10  nisimura 
    168      1.10  nisimura /*
    169      1.10  nisimura  * Return the DMA tag for use by the specified TURBOchannel slot.
    170      1.10  nisimura  */
    171      1.10  nisimura static bus_dma_tag_t
    172      1.10  nisimura tc_ds_get_dma_tag(slot)
    173      1.10  nisimura 	int slot;
    174      1.10  nisimura {
    175      1.10  nisimura 	/*
    176      1.10  nisimura 	 * All DECstations use the default DMA tag.
    177      1.10  nisimura 	 */
    178      1.10  nisimura 	return (&pmax_default_bus_dma_tag);
    179       1.1  nisimura }
    180       1.1  nisimura 
    181       1.1  nisimura #include "rasterconsole.h"
    182       1.1  nisimura 
    183       1.1  nisimura #if NRASTERCONSOLE > 0
    184       1.1  nisimura 
    185       1.1  nisimura #include "mfb.h"
    186       1.1  nisimura #include "cfb.h"
    187       1.1  nisimura #include "sfb.h"
    188       1.1  nisimura #include "px.h"
    189       1.1  nisimura 
    190       1.8  nisimura #include <machine/pmioctl.h>	/* XXX */
    191  1.13.4.1   thorpej #include <dev/sun/fbio.h>	/* XXX */
    192       1.8  nisimura #include <machine/fbvar.h>	/* XXX */
    193       1.8  nisimura #include <pmax/dev/fbreg.h>	/* XXX */
    194       1.1  nisimura #include <pmax/dev/cfbvar.h>
    195       1.1  nisimura #include <pmax/dev/mfbvar.h>
    196       1.8  nisimura #include <pmax/dev/sfbvar.h>
    197       1.8  nisimura #include <pmax/dev/pxreg.h>
    198       1.5    simonb #include <pmax/dev/pxvar.h>
    199       1.1  nisimura 
    200       1.1  nisimura #include <machine/dec_prom.h>
    201       1.1  nisimura 
    202       1.1  nisimura int
    203       1.1  nisimura tcfb_cnattach(slotno)
    204       1.1  nisimura 	int slotno;
    205       1.1  nisimura {
    206       1.8  nisimura 	paddr_t tcaddr;
    207       1.1  nisimura 	char tcname[TC_ROM_LLEN];
    208       1.1  nisimura 
    209       1.1  nisimura 	tcaddr = (*callv->_slot_address)(slotno);
    210       1.1  nisimura 	if (tc_badaddr(tcaddr) || tc_checkslot(tcaddr, tcname) == 0)
    211       1.1  nisimura 		panic("TC console designated by PROM does not exist!?");
    212       1.1  nisimura 
    213       1.1  nisimura #if NSFB > 0
    214       1.1  nisimura 	if (strncmp("PMAGB-BA", tcname, TC_ROM_LLEN) == 0) {
    215       1.8  nisimura 		return sfb_cnattach(tcaddr);
    216       1.1  nisimura 	}
    217       1.1  nisimura #endif
    218       1.1  nisimura #if NCFB > 0
    219       1.1  nisimura 	if (strncmp("PMAG-BA ", tcname, TC_ROM_LLEN) == 0) {
    220       1.8  nisimura 		return cfb_cnattach(tcaddr);
    221       1.1  nisimura 	}
    222       1.1  nisimura #endif
    223       1.1  nisimura #if NMFB > 0
    224       1.1  nisimura 	if (strncmp("PMAG-AA ", tcname, TC_ROM_LLEN) == 0) {
    225       1.8  nisimura 		return mfb_cnattach(tcaddr);
    226       1.1  nisimura 	}
    227       1.1  nisimura #endif
    228       1.1  nisimura #if NPX > 0
    229       1.1  nisimura 	if (strncmp("PMAG-CA ", tcname, TC_ROM_LLEN) == 0
    230       1.2  nisimura 	    || strncmp("PMAG-DA ", tcname, TC_ROM_LLEN) == 0
    231       1.1  nisimura 	    || strncmp("PMAG-FA ", tcname, TC_ROM_LLEN) == 0) {
    232       1.8  nisimura 		int px_cnattach __P((paddr_t)); /* XXX much simpler XXX */
    233       1.8  nisimura 
    234       1.8  nisimura 		return px_cnattach(tcaddr);
    235       1.1  nisimura 	}
    236       1.1  nisimura #endif
    237       1.1  nisimura 	return 0;
    238       1.1  nisimura }
    239       1.1  nisimura 
    240       1.1  nisimura #endif
    241