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