Home | History | Annotate | Line # | Download | only in tc
tcasic.c revision 1.34.4.2
      1  1.34.4.2   thorpej /* $NetBSD: tcasic.c,v 1.34.4.2 2001/08/25 06:15:03 thorpej Exp $ */
      2       1.1       cgd 
      3       1.1       cgd /*
      4       1.4       cgd  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
      5       1.1       cgd  * All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * Author: Chris G. Demetriou
      8       1.1       cgd  *
      9       1.1       cgd  * Permission to use, copy, modify and distribute this software and
     10       1.1       cgd  * its documentation is hereby granted, provided that both the copyright
     11       1.1       cgd  * notice and this permission notice appear in all copies of the
     12       1.1       cgd  * software, derivative works or modified versions, and any portions
     13       1.1       cgd  * thereof, and that both notices appear in supporting documentation.
     14       1.1       cgd  *
     15       1.1       cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16       1.1       cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17       1.1       cgd  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18       1.1       cgd  *
     19       1.1       cgd  * Carnegie Mellon requests users of this software to return to
     20       1.1       cgd  *
     21       1.1       cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22       1.1       cgd  *  School of Computer Science
     23       1.1       cgd  *  Carnegie Mellon University
     24       1.1       cgd  *  Pittsburgh PA 15213-3890
     25       1.1       cgd  *
     26       1.1       cgd  * any improvements or extensions that they make and grant Carnegie the
     27       1.1       cgd  * rights to redistribute these changes.
     28       1.1       cgd  */
     29      1.16       cgd 
     30      1.20   thorpej #include "opt_dec_3000_300.h"
     31      1.20   thorpej #include "opt_dec_3000_500.h"
     32      1.20   thorpej 
     33      1.17       cgd #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     34      1.17       cgd 
     35  1.34.4.2   thorpej __KERNEL_RCSID(0, "$NetBSD: tcasic.c,v 1.34.4.2 2001/08/25 06:15:03 thorpej Exp $");
     36       1.1       cgd 
     37       1.1       cgd #include <sys/param.h>
     38       1.6       cgd #include <sys/systm.h>
     39       1.1       cgd #include <sys/device.h>
     40       1.1       cgd 
     41       1.1       cgd #include <machine/autoconf.h>
     42       1.1       cgd #include <machine/rpb.h>
     43      1.25      ross #include <machine/alpha.h>
     44       1.1       cgd 
     45       1.1       cgd #include <dev/tc/tcvar.h>
     46       1.1       cgd #include <alpha/tc/tc_conf.h>
     47       1.1       cgd 
     48       1.1       cgd /* Definition of the driver for autoconfig. */
     49      1.14       cgd int	tcasicmatch(struct device *, struct cfdata *, void *);
     50       1.1       cgd void	tcasicattach(struct device *, struct device *, void *);
     51       1.2   thorpej 
     52       1.2   thorpej struct cfattach tcasic_ca = {
     53       1.3       cgd 	sizeof (struct device), tcasicmatch, tcasicattach,
     54       1.2   thorpej };
     55       1.2   thorpej 
     56      1.21   thorpej extern struct cfdriver tcasic_cd;
     57       1.1       cgd 
     58       1.8       cgd int	tcasicprint __P((void *, const char *));
     59       1.1       cgd 
     60       1.1       cgd /* There can be only one. */
     61       1.1       cgd int	tcasicfound;
     62       1.1       cgd 
     63       1.1       cgd int
     64       1.1       cgd tcasicmatch(parent, cfdata, aux)
     65       1.1       cgd 	struct device *parent;
     66      1.14       cgd 	struct cfdata *cfdata;
     67       1.1       cgd 	void *aux;
     68       1.1       cgd {
     69      1.23   thorpej 	struct mainbus_attach_args *ma = aux;
     70       1.1       cgd 
     71       1.1       cgd         /* Make sure that we're looking for a TurboChannel ASIC. */
     72      1.23   thorpej         if (strcmp(ma->ma_name, tcasic_cd.cd_name))
     73       1.1       cgd                 return (0);
     74       1.1       cgd 
     75       1.1       cgd         /* Make sure that the system supports a TurboChannel ASIC. */
     76       1.1       cgd 	if ((cputype != ST_DEC_3000_500) && (cputype != ST_DEC_3000_300))
     77       1.1       cgd 		return (0);
     78       1.1       cgd 
     79       1.1       cgd 	if (tcasicfound)
     80       1.1       cgd 		return (0);
     81       1.1       cgd 
     82       1.1       cgd 	return (1);
     83       1.1       cgd }
     84       1.1       cgd 
     85       1.1       cgd void
     86       1.1       cgd tcasicattach(parent, self, aux)
     87       1.1       cgd 	struct device *parent;
     88       1.1       cgd 	struct device *self;
     89       1.1       cgd 	void *aux;
     90       1.1       cgd {
     91       1.3       cgd 	struct tcbus_attach_args tba;
     92       1.1       cgd 	void (*intr_setup) __P((void));
     93       1.7       cgd 	void (*iointr) __P((void *, unsigned long));
     94       1.1       cgd 
     95      1.10  christos 	printf("\n");
     96       1.1       cgd 	tcasicfound = 1;
     97       1.1       cgd 
     98       1.1       cgd 	switch (cputype) {
     99       1.1       cgd #ifdef DEC_3000_500
    100       1.1       cgd 	case ST_DEC_3000_500:
    101       1.1       cgd 
    102       1.1       cgd 		intr_setup = tc_3000_500_intr_setup;
    103       1.1       cgd 		iointr = tc_3000_500_iointr;
    104       1.1       cgd 
    105       1.3       cgd 		tba.tba_speed = TC_SPEED_25_MHZ;
    106       1.3       cgd 		tba.tba_nslots = tc_3000_500_nslots;
    107       1.3       cgd 		tba.tba_slots = tc_3000_500_slots;
    108      1.13       cgd 		if (hwrpb->rpb_variation & SV_GRAPHICS) {
    109      1.13       cgd 			tba.tba_nbuiltins = tc_3000_500_graphics_nbuiltins;
    110      1.13       cgd 			tba.tba_builtins = tc_3000_500_graphics_builtins;
    111      1.13       cgd 		} else {
    112      1.13       cgd 			tba.tba_nbuiltins = tc_3000_500_nographics_nbuiltins;
    113      1.13       cgd 			tba.tba_builtins = tc_3000_500_nographics_builtins;
    114      1.13       cgd 		}
    115      1.29       cgd 		tba.tba_intr_evcnt = tc_3000_500_intr_evcnt;
    116       1.3       cgd 		tba.tba_intr_establish = tc_3000_500_intr_establish;
    117       1.3       cgd 		tba.tba_intr_disestablish = tc_3000_500_intr_disestablish;
    118      1.22   thorpej 		tba.tba_get_dma_tag = tc_dma_get_tag_3000_500;
    119      1.18   thorpej 
    120      1.18   thorpej 		/* Do 3000/500-specific DMA setup now. */
    121      1.18   thorpej 		tc_dma_init_3000_500(tc_3000_500_nslots);
    122       1.1       cgd 		break;
    123       1.1       cgd #endif /* DEC_3000_500 */
    124       1.1       cgd 
    125       1.1       cgd #ifdef DEC_3000_300
    126       1.1       cgd 	case ST_DEC_3000_300:
    127       1.1       cgd 
    128       1.1       cgd 		intr_setup = tc_3000_300_intr_setup;
    129       1.1       cgd 		iointr = tc_3000_300_iointr;
    130       1.1       cgd 
    131       1.3       cgd 		tba.tba_speed = TC_SPEED_12_5_MHZ;
    132       1.3       cgd 		tba.tba_nslots = tc_3000_300_nslots;
    133       1.3       cgd 		tba.tba_slots = tc_3000_300_slots;
    134       1.3       cgd 		tba.tba_nbuiltins = tc_3000_300_nbuiltins;
    135       1.3       cgd 		tba.tba_builtins = tc_3000_300_builtins;
    136      1.29       cgd 		tba.tba_intr_evcnt = tc_3000_300_intr_evcnt;
    137       1.3       cgd 		tba.tba_intr_establish = tc_3000_300_intr_establish;
    138       1.3       cgd 		tba.tba_intr_disestablish = tc_3000_300_intr_disestablish;
    139      1.22   thorpej 		tba.tba_get_dma_tag = tc_dma_get_tag_3000_300;
    140       1.1       cgd 		break;
    141       1.1       cgd #endif /* DEC_3000_300 */
    142       1.1       cgd 
    143       1.1       cgd 	default:
    144       1.1       cgd 		panic("tcasicattach: bad cputype");
    145       1.1       cgd 	}
    146       1.5       cgd 
    147      1.22   thorpej 	tba.tba_busname = "tc";
    148      1.11       cgd 	tba.tba_memt = tc_bus_mem_init(NULL);
    149      1.18   thorpej 
    150      1.18   thorpej 	tc_dma_init();
    151       1.1       cgd 
    152       1.1       cgd 	(*intr_setup)();
    153  1.34.4.1     lukem 
    154  1.34.4.1     lukem 	/* They all come in at 0x800. */
    155  1.34.4.1     lukem 	scb_set(0x800, iointr, NULL);
    156       1.1       cgd 
    157       1.3       cgd 	config_found(self, &tba, tcasicprint);
    158       1.1       cgd }
    159       1.1       cgd 
    160       1.1       cgd int
    161       1.1       cgd tcasicprint(aux, pnp)
    162       1.1       cgd 	void *aux;
    163       1.8       cgd 	const char *pnp;
    164       1.1       cgd {
    165       1.1       cgd 
    166       1.1       cgd 	/* only TCs can attach to tcasics; easy. */
    167       1.1       cgd 	if (pnp)
    168      1.10  christos 		printf("tc at %s", pnp);
    169       1.1       cgd 	return (UNCONF);
    170       1.1       cgd }
    171      1.24    briggs 
    172      1.24    briggs #include "wsdisplay.h"
    173      1.24    briggs 
    174      1.24    briggs #if NWSDISPLAY > 0
    175      1.24    briggs 
    176      1.24    briggs #include "sfb.h"
    177      1.33  nisimura #include "sfbp.h"
    178  1.34.4.2   thorpej #include "cfb.h"
    179  1.34.4.2   thorpej #include "mfb.h"
    180  1.34.4.2   thorpej #include "tfb.h"
    181      1.31        ad #include "px.h"
    182      1.31        ad #include "pxg.h"
    183      1.24    briggs 
    184      1.31        ad extern void	sfb_cnattach __P((tc_addr_t));
    185      1.33  nisimura extern void	sfbp_cnattach __P((tc_addr_t));
    186  1.34.4.2   thorpej extern void	cfb_cnattach __P((tc_addr_t));
    187  1.34.4.2   thorpej extern void	mfb_cnattach __P((tc_addr_t));
    188  1.34.4.2   thorpej extern void	tfb_cnattach __P((tc_addr_t));
    189      1.31        ad extern void	px_cnattach __P((tc_addr_t));
    190      1.31        ad extern void	pxg_cnattach __P((tc_addr_t));
    191      1.24    briggs extern int	tc_checkslot __P((tc_addr_t, char *));
    192      1.24    briggs 
    193      1.31        ad struct cnboards {
    194      1.31        ad 	const char	*cb_tcname;
    195      1.32      tron 	void	(*cb_cnattach)(tc_addr_t);
    196      1.34        ad } static const cnboards[] = {
    197      1.31        ad #if NSFB > 0
    198      1.31        ad 	{ "PMAGB-BA", sfb_cnattach },
    199      1.31        ad #endif
    200  1.34.4.2   thorpej #if NSFBP > 0
    201  1.34.4.2   thorpej 	{ "PMAGD   ", sfbp_cnattach },
    202  1.34.4.2   thorpej #endif
    203      1.31        ad #if NCFB > 0
    204      1.31        ad 	{ "PMAG-BA ", cfb_cnattach },
    205      1.33  nisimura #endif
    206  1.34.4.2   thorpej #if NMFB > 0
    207  1.34.4.2   thorpej 	{ "PMAG-AA ", mfb_cnattach },
    208  1.34.4.2   thorpej #endif
    209  1.34.4.2   thorpej #if NTFB > 0
    210  1.34.4.2   thorpej 	{ "PMAG-JA ", tfb_cnattach },
    211      1.31        ad #endif
    212      1.31        ad #if NPX > 0
    213      1.31        ad 	{ "PMAG-CA ", px_cnattach },
    214      1.31        ad #endif
    215      1.31        ad #if NPXG > 0
    216      1.31        ad 	{ "PMAG-DA ", pxg_cnattach },
    217      1.31        ad 	{ "PMAG-FA ", pxg_cnattach },
    218      1.31        ad 	{ "PMAG-FB ", pxg_cnattach },
    219      1.31        ad 	{ "PMAGB-FA", pxg_cnattach },
    220      1.31        ad 	{ "PMAGB-FB", pxg_cnattach },
    221      1.31        ad #endif
    222      1.31        ad };
    223      1.31        ad 
    224      1.24    briggs /*
    225      1.24    briggs  * tc_fb_cnattach --
    226      1.24    briggs  *	Attempt to attach the appropriate display driver to the
    227      1.24    briggs  * output console.
    228      1.24    briggs  */
    229      1.24    briggs int
    230      1.24    briggs tc_fb_cnattach(tcaddr)
    231      1.24    briggs 	tc_addr_t tcaddr;
    232      1.24    briggs {
    233      1.24    briggs 	char tcname[TC_ROM_LLEN];
    234      1.31        ad 	int i;
    235      1.24    briggs 
    236      1.31        ad 	if (tc_badaddr(tcaddr) || (tc_checkslot(tcaddr, tcname) == 0))
    237      1.31        ad 		return (EINVAL);
    238      1.31        ad 
    239      1.31        ad 	for (i = 0; i < sizeof(cnboards) / sizeof(cnboards[0]); i++)
    240      1.31        ad 		if (strncmp(tcname, cnboards[i].cb_tcname, TC_ROM_LLEN) == 0)
    241      1.31        ad 			break;
    242      1.31        ad 
    243      1.31        ad 	if (i == sizeof(cnboards) / sizeof(cnboards[0]))
    244      1.31        ad 		return (ENXIO);
    245      1.24    briggs 
    246      1.31        ad 	(cnboards[i].cb_cnattach)(tcaddr);
    247      1.31        ad 	return (0);
    248      1.24    briggs }
    249      1.24    briggs #endif /* if NWSDISPLAY > 0 */
    250