Home | History | Annotate | Line # | Download | only in tc
tcbus.c revision 1.18.4.1
      1  1.18.4.1    rpaulo /*	$NetBSD: tcbus.c,v 1.18.4.1 2006/09/09 02:42:22 rpaulo 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.18.4.1    rpaulo __KERNEL_RCSID(0, "$NetBSD: tcbus.c,v 1.18.4.1 2006/09/09 02:42:22 rpaulo 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.16   thorpej CFATTACH_DECL(tcbus, sizeof(struct tc_softc),
     72      1.16   thorpej     tcbus_match, tcbus_attach, NULL, NULL);
     73       1.1  nisimura 
     74       1.1  nisimura static int tcbus_found;
     75       1.1  nisimura 
     76      1.10  nisimura static int
     77       1.1  nisimura tcbus_match(parent, cfdata, aux)
     78       1.1  nisimura 	struct device *parent;
     79       1.1  nisimura 	struct cfdata *cfdata;
     80       1.1  nisimura 	void *aux;
     81       1.1  nisimura {
     82       1.1  nisimura 	struct mainbus_attach_args *ma = aux;
     83       1.1  nisimura 
     84       1.1  nisimura 	if (tcbus_found || strcmp(ma->ma_name, "tcbus"))
     85       1.1  nisimura 		return 0;
     86       1.1  nisimura 
     87       1.1  nisimura 	return 1;
     88       1.1  nisimura }
     89       1.1  nisimura 
     90      1.10  nisimura static void
     91       1.1  nisimura tcbus_attach(parent, self, aux)
     92       1.1  nisimura 	struct device *parent, *self;
     93       1.1  nisimura 	void *aux;
     94       1.1  nisimura {
     95       1.1  nisimura 	struct tcbus_attach_args *tba;
     96       1.1  nisimura 
     97       1.1  nisimura 	tcbus_found = 1;
     98       1.1  nisimura 
     99       1.1  nisimura 	switch (systype) {
    100       1.1  nisimura #ifdef DEC_3MAX
    101       1.1  nisimura 	case DS_3MAX:
    102       1.1  nisimura 		tba = &kn02_tc_desc[0]; break;
    103       1.1  nisimura #endif
    104       1.1  nisimura #ifdef DEC_3MIN
    105       1.1  nisimura 	case DS_3MIN:
    106       1.1  nisimura 		tba = &kmin_tc_desc[0]; break;
    107       1.1  nisimura #endif
    108       1.1  nisimura #ifdef DEC_MAXINE
    109       1.1  nisimura 	case DS_MAXINE:
    110       1.1  nisimura 		tba = &xine_tc_desc[0]; break;
    111       1.1  nisimura #endif
    112       1.1  nisimura #ifdef DEC_3MAXPLUS
    113       1.1  nisimura 	case DS_3MAXPLUS:
    114       1.1  nisimura 		tba = &kn03_tc_desc[0]; break;
    115       1.1  nisimura #endif
    116       1.1  nisimura 	default:
    117       1.3  nisimura 		panic("tcbus_attach: no TURBOchannel configured for systype = %d", systype);
    118       1.1  nisimura 	}
    119       1.1  nisimura 
    120       1.1  nisimura 	tba->tba_busname = "tc";
    121       1.1  nisimura 	tba->tba_memt = 0;
    122      1.11       cgd 	tba->tba_intr_evcnt = tc_ds_intr_evcnt;
    123       1.1  nisimura 	tba->tba_intr_establish = tc_ds_intr_establish;
    124       1.1  nisimura 	tba->tba_intr_disestablish = tc_ds_intr_disestablish;
    125       1.1  nisimura 	tba->tba_get_dma_tag = tc_ds_get_dma_tag;
    126       1.1  nisimura 
    127       1.1  nisimura 	tcattach(parent, self, tba);
    128      1.11       cgd }
    129      1.11       cgd 
    130      1.11       cgd /*
    131      1.11       cgd  * Dispatch to model specific interrupt line evcnt fetch rontine
    132      1.11       cgd  */
    133      1.12  nisimura static const struct evcnt *
    134      1.11       cgd tc_ds_intr_evcnt(dev, cookie)
    135      1.11       cgd 	struct device *dev;
    136      1.11       cgd 	void *cookie;
    137      1.11       cgd {
    138      1.11       cgd 
    139      1.11       cgd 	/* XXX for now, no evcnt parent reported */
    140      1.11       cgd 	return NULL;
    141       1.1  nisimura }
    142       1.1  nisimura 
    143       1.1  nisimura /*
    144      1.10  nisimura  * Dispatch to model specific interrupt establishing routine
    145       1.1  nisimura  */
    146       1.5    simonb static void
    147       1.1  nisimura tc_ds_intr_establish(dev, cookie, level, handler, val)
    148       1.1  nisimura 	struct device *dev;
    149       1.1  nisimura 	void *cookie;
    150       1.1  nisimura 	int level;
    151      1.13   tsutsui 	int (*handler) __P((void *));
    152       1.1  nisimura 	void *val;
    153       1.1  nisimura {
    154      1.10  nisimura 
    155      1.13   tsutsui 	(*platform.intr_establish)(dev, cookie, level, handler, val);
    156       1.1  nisimura }
    157       1.1  nisimura 
    158       1.5    simonb static void
    159       1.1  nisimura tc_ds_intr_disestablish(dev, arg)
    160       1.1  nisimura 	struct device *dev;
    161       1.1  nisimura 	void *arg;
    162       1.1  nisimura {
    163      1.10  nisimura 
    164      1.13   tsutsui 	printf("cannot disestablish TC interrupts\n");
    165      1.10  nisimura }
    166      1.10  nisimura 
    167      1.10  nisimura /*
    168      1.10  nisimura  * Return the DMA tag for use by the specified TURBOchannel slot.
    169      1.10  nisimura  */
    170      1.10  nisimura static bus_dma_tag_t
    171      1.10  nisimura tc_ds_get_dma_tag(slot)
    172      1.10  nisimura 	int slot;
    173      1.10  nisimura {
    174      1.10  nisimura 	/*
    175      1.10  nisimura 	 * All DECstations use the default DMA tag.
    176      1.10  nisimura 	 */
    177      1.10  nisimura 	return (&pmax_default_bus_dma_tag);
    178       1.1  nisimura }
    179       1.1  nisimura 
    180      1.17        ad #include "wsdisplay.h"
    181      1.17        ad 
    182      1.17        ad #if NWSDISPLAY > 0
    183      1.17        ad 
    184      1.17        ad #include "sfb.h"
    185      1.17        ad /* #include "sfbp.h" */
    186      1.17        ad #include "cfb.h"
    187      1.17        ad #include "mfb.h"
    188      1.17        ad #include "tfb.h"
    189      1.17        ad #include "xcfb.h"
    190      1.17        ad #include "px.h"
    191      1.17        ad #include "pxg.h"
    192      1.17        ad 
    193      1.17        ad #include <pmax/pmax/cons.h>
    194      1.17        ad #include <machine/dec_prom.h>
    195      1.17        ad 
    196      1.17        ad int	tc_checkslot __P((tc_addr_t, char *));
    197      1.17        ad 
    198      1.17        ad struct cnboards {
    199      1.17        ad 	const char	*cb_tcname;
    200      1.17        ad 	void	(*cb_cnattach)(tc_addr_t);
    201      1.17        ad } static const cnboards[] = {
    202      1.17        ad #if NXCFB > 0
    203      1.17        ad 	{ "PMAG-DV ", xcfb_cnattach },
    204      1.17        ad #endif
    205      1.17        ad #if NSFB > 0
    206      1.17        ad 	{ "PMAGB-BA", sfb_cnattach },
    207      1.17        ad #endif
    208      1.17        ad #if NSFBP > 0
    209      1.17        ad 	{ "PMAGD   ", sfbp_cnattach },
    210      1.17        ad #endif
    211      1.17        ad #if NCFB > 0
    212      1.17        ad 	{ "PMAG-BA ", cfb_cnattach },
    213      1.17        ad #endif
    214      1.17        ad #if NMFB > 0
    215      1.17        ad 	{ "PMAG-AA ", mfb_cnattach },
    216      1.17        ad #endif
    217      1.17        ad #if NTFB > 0
    218      1.17        ad 	{ "PMAG-JA ", tfb_cnattach },
    219      1.17        ad #endif
    220      1.17        ad #if NPX > 0
    221      1.17        ad 	{ "PMAG-CA ", px_cnattach },
    222      1.17        ad #endif
    223      1.17        ad #if NPXG > 0
    224      1.17        ad 	{ "PMAG-DA ", pxg_cnattach },
    225      1.17        ad 	{ "PMAG-FA ", pxg_cnattach },
    226      1.17        ad 	{ "PMAG-FB ", pxg_cnattach },
    227      1.17        ad 	{ "PMAGB-FA", pxg_cnattach },
    228      1.17        ad 	{ "PMAGB-FB", pxg_cnattach },
    229      1.17        ad #endif
    230      1.17        ad };
    231      1.17        ad 
    232      1.17        ad int
    233      1.17        ad tcfb_cnattach(slotno)
    234      1.17        ad 	int slotno;
    235      1.17        ad {
    236      1.17        ad 	paddr_t tcaddr;
    237      1.17        ad 	char tcname[TC_ROM_LLEN];
    238      1.17        ad 	int i;
    239      1.17        ad 
    240      1.17        ad 	tcaddr = (*callv->_slot_address)(slotno);
    241      1.17        ad 	if (tc_badaddr(tcaddr) || tc_checkslot(tcaddr, tcname) == 0)
    242      1.17        ad 		panic("TC console designated by PROM does not exist!?");
    243      1.17        ad 
    244      1.17        ad 	for (i = 0; i < sizeof(cnboards) / sizeof(cnboards[0]); i++)
    245      1.17        ad 		if (strncmp(tcname, cnboards[i].cb_tcname, TC_ROM_LLEN) == 0)
    246      1.17        ad 			break;
    247      1.17        ad 
    248      1.17        ad 	if (i == sizeof(cnboards) / sizeof(cnboards[0]))
    249      1.17        ad 		return (0);
    250      1.17        ad 
    251  1.18.4.1    rpaulo 	(cnboards[i].cb_cnattach)((tc_addr_t)TC_PHYS_TO_UNCACHED(tcaddr));
    252      1.17        ad 	return (1);
    253      1.17        ad }
    254      1.17        ad 
    255      1.17        ad #endif	/* NWSDISPLAY */
    256