Home | History | Annotate | Line # | Download | only in tc
tc.c revision 1.13
      1  1.13  jonathan /*	$NetBSD: tc.c,v 1.13 1996/04/09 20:50:06 jonathan Exp $	*/
      2   1.1       cgd 
      3   1.1       cgd /*
      4   1.1       cgd  * Copyright (c) 1994, 1995 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.1       cgd 
     30   1.1       cgd #include <sys/param.h>
     31  1.13  jonathan #include <sys/systm.h>
     32   1.1       cgd #include <sys/device.h>
     33   1.1       cgd 
     34   1.1       cgd #include <dev/tc/tcreg.h>
     35   1.1       cgd #include <dev/tc/tcvar.h>
     36   1.8       cgd #include <dev/tc/tcdevs.h>
     37   1.1       cgd 
     38  1.13  jonathan #include <machine/autoconf.h>
     39  1.13  jonathan 
     40   1.1       cgd struct tc_softc {
     41   1.1       cgd 	struct	device sc_dv;
     42   1.1       cgd 
     43   1.2       cgd 	int	sc_speed;
     44   1.1       cgd 	int	sc_nslots;
     45   1.1       cgd 	struct tc_slotdesc *sc_slots;
     46   1.1       cgd 
     47   1.1       cgd 	void	(*sc_intr_establish) __P((struct device *, void *,
     48   1.1       cgd 		    tc_intrlevel_t, int (*)(void *), void *));
     49   1.1       cgd 	void	(*sc_intr_disestablish) __P((struct device *, void *));
     50   1.1       cgd };
     51   1.1       cgd 
     52   1.1       cgd /* Definition of the driver for autoconfig. */
     53   1.1       cgd int	tcmatch __P((struct device *, void *, void *));
     54   1.1       cgd void	tcattach __P((struct device *, struct device *, void *));
     55  1.11   thorpej 
     56  1.11   thorpej struct cfattach tc_ca = {
     57  1.11   thorpej 	sizeof(struct tc_softc), tcmatch, tcattach
     58  1.11   thorpej };
     59  1.11   thorpej 
     60  1.11   thorpej struct cfdriver tc_cd = {
     61  1.11   thorpej 	NULL, "tc", DV_DULL
     62  1.11   thorpej };
     63   1.1       cgd 
     64   1.1       cgd int	tcprint __P((void *, char *));
     65   1.2       cgd int	tcsubmatch __P((struct device *, void *, void *));
     66   1.1       cgd int	tc_checkslot __P((tc_addr_t, char *));
     67   1.8       cgd void	tc_devinfo __P((const char *, char *));
     68   1.1       cgd 
     69   1.1       cgd int
     70   1.1       cgd tcmatch(parent, cfdata, aux)
     71   1.1       cgd 	struct device *parent;
     72   1.1       cgd 	void *cfdata;
     73   1.1       cgd 	void *aux;
     74   1.1       cgd {
     75   1.2       cgd 	struct cfdata *cf = cfdata;
     76   1.2       cgd 	struct tcbus_attach_args *tba = aux;
     77   1.2       cgd 
     78   1.2       cgd 	if (strcmp(tba->tba_busname, cf->cf_driver->cd_name))
     79   1.2       cgd 		return (0);
     80   1.2       cgd 
     81   1.2       cgd 	/* XXX check other indicators */
     82   1.1       cgd 
     83   1.1       cgd 	return (1);
     84   1.1       cgd }
     85   1.1       cgd 
     86   1.1       cgd void
     87   1.1       cgd tcattach(parent, self, aux)
     88   1.1       cgd 	struct device *parent;
     89   1.1       cgd 	struct device *self;
     90   1.1       cgd 	void *aux;
     91   1.1       cgd {
     92   1.1       cgd 	struct tc_softc *sc = (struct tc_softc *)self;
     93   1.2       cgd 	struct tcbus_attach_args *tba = aux;
     94   1.2       cgd 	struct tc_attach_args ta;
     95   1.1       cgd 	const struct tc_builtin *builtin;
     96   1.1       cgd 	struct tc_slotdesc *slot;
     97   1.1       cgd 	tc_addr_t tcaddr;
     98   1.1       cgd 	int i;
     99   1.1       cgd 
    100   1.3       cgd 	printf("%s MHz clock\n",
    101   1.3       cgd 	    tba->tba_speed == TC_SPEED_25_MHZ ? "25" : "12.5");
    102   1.1       cgd 
    103   1.1       cgd 	/*
    104   1.1       cgd 	 * Save important CPU/chipset information.
    105   1.1       cgd 	 */
    106   1.2       cgd 	sc->sc_speed = tba->tba_speed;
    107   1.2       cgd 	sc->sc_nslots = tba->tba_nslots;
    108   1.2       cgd 	sc->sc_slots = tba->tba_slots;
    109   1.2       cgd 	sc->sc_intr_establish = tba->tba_intr_establish;
    110   1.2       cgd 	sc->sc_intr_disestablish = tba->tba_intr_disestablish;
    111   1.1       cgd 
    112   1.1       cgd 	/*
    113   1.1       cgd 	 * Try to configure each built-in device
    114   1.1       cgd 	 */
    115   1.2       cgd 	for (i = 0; i < tba->tba_nbuiltins; i++) {
    116   1.2       cgd 		builtin = &tba->tba_builtins[i];
    117   1.1       cgd 
    118   1.1       cgd 		/* sanity check! */
    119   1.1       cgd 		if (builtin->tcb_slot > sc->sc_nslots)
    120   1.1       cgd 			panic("tcattach: builtin %d slot > nslots", i);
    121   1.1       cgd 
    122   1.1       cgd 		/*
    123   1.1       cgd 		 * Make sure device is really there, because some
    124   1.1       cgd 		 * built-in devices are really optional.
    125   1.1       cgd 		 */
    126   1.1       cgd 		tcaddr = sc->sc_slots[builtin->tcb_slot].tcs_addr +
    127   1.1       cgd 		    builtin->tcb_offset;
    128   1.1       cgd 		if (tc_badaddr(tcaddr))
    129   1.1       cgd 			continue;
    130   1.1       cgd 
    131   1.1       cgd 		/*
    132   1.1       cgd 		 * Set up the device attachment information.
    133   1.1       cgd 		 */
    134   1.2       cgd 		strncpy(ta.ta_modname, builtin->tcb_modname, TC_ROM_LLEN);
    135   1.2       cgd 		ta.ta_modname[TC_ROM_LLEN] = '\0';
    136   1.2       cgd 		ta.ta_slot = builtin->tcb_slot;
    137   1.2       cgd 		ta.ta_offset = builtin->tcb_offset;
    138   1.2       cgd 		ta.ta_addr = tcaddr;
    139   1.2       cgd 		ta.ta_cookie = builtin->tcb_cookie;
    140   1.2       cgd 		ta.ta_busspeed = sc->sc_speed;
    141   1.1       cgd 
    142   1.1       cgd 		/*
    143   1.1       cgd 		 * Mark the slot as used, so we don't check it later.
    144   1.1       cgd 		 */
    145   1.1       cgd 		sc->sc_slots[builtin->tcb_slot].tcs_used = 1;
    146   1.1       cgd 
    147   1.1       cgd 		/*
    148   1.7       cgd 		 * Attach the device.
    149   1.1       cgd 		 */
    150   1.7       cgd 		config_found_sm(self, &ta, tcprint, tcsubmatch);
    151   1.1       cgd 	}
    152   1.1       cgd 
    153   1.1       cgd 	/*
    154   1.1       cgd 	 * Try to configure each unused slot, last to first.
    155   1.1       cgd 	 */
    156   1.1       cgd 	for (i = sc->sc_nslots - 1; i >= 0; i--) {
    157   1.1       cgd 		slot = &sc->sc_slots[i];
    158   1.1       cgd 
    159   1.1       cgd 		/* If already checked above, don't look again now. */
    160   1.1       cgd 		if (slot->tcs_used)
    161   1.1       cgd 			continue;
    162   1.1       cgd 
    163   1.1       cgd 		/*
    164   1.1       cgd 		 * Make sure something is there, and find out what it is.
    165   1.1       cgd 		 */
    166   1.1       cgd 		tcaddr = slot->tcs_addr;
    167   1.1       cgd 		if (tc_badaddr(tcaddr))
    168   1.1       cgd 			continue;
    169   1.2       cgd 		if (tc_checkslot(tcaddr, ta.ta_modname) == 0)
    170   1.1       cgd 			continue;
    171   1.1       cgd 
    172   1.1       cgd 		/*
    173   1.1       cgd 		 * Set up the rest of the attachment information.
    174   1.1       cgd 		 */
    175   1.2       cgd 		ta.ta_slot = i;
    176   1.2       cgd 		ta.ta_offset = 0;
    177   1.2       cgd 		ta.ta_addr = tcaddr;
    178   1.2       cgd 		ta.ta_cookie = slot->tcs_cookie;
    179   1.1       cgd 
    180   1.1       cgd 		/*
    181   1.1       cgd 		 * Mark the slot as used.
    182   1.1       cgd 		 */
    183   1.1       cgd 		slot->tcs_used = 1;
    184   1.1       cgd 
    185   1.1       cgd 		/*
    186   1.7       cgd 		 * Attach the device.
    187   1.1       cgd 		 */
    188   1.7       cgd 		config_found_sm(self, &ta, tcprint, tcsubmatch);
    189   1.1       cgd 	}
    190   1.1       cgd }
    191   1.1       cgd 
    192   1.1       cgd int
    193   1.1       cgd tcprint(aux, pnp)
    194   1.1       cgd 	void *aux;
    195   1.1       cgd 	char *pnp;
    196   1.1       cgd {
    197   1.2       cgd 	struct tc_attach_args *ta = aux;
    198   1.8       cgd 	char devinfo[256];
    199   1.1       cgd 
    200   1.8       cgd 	if (pnp) {
    201   1.8       cgd 		tc_devinfo(ta->ta_modname, devinfo);
    202   1.8       cgd 		printf("%s at %s", devinfo, pnp);
    203   1.8       cgd 	}
    204   1.8       cgd 	printf(" slot %d offset 0x%lx", ta->ta_slot,
    205   1.2       cgd 	    (long)ta->ta_offset);
    206   1.8       cgd 	return (UNCONF);
    207   1.1       cgd }
    208   1.1       cgd 
    209   1.2       cgd int
    210   1.2       cgd tcsubmatch(parent, match, aux)
    211   1.2       cgd         struct device *parent;
    212   1.2       cgd         void *match, *aux;
    213   1.1       cgd {
    214   1.2       cgd 	struct cfdata *cf = match;
    215   1.2       cgd 	struct tc_attach_args *d = aux;
    216   1.2       cgd 
    217   1.2       cgd 	if ((cf->tccf_slot != TCCF_SLOT_UNKNOWN) &&
    218   1.2       cgd 	    (cf->tccf_slot != d->ta_slot))
    219   1.2       cgd 		return 0;
    220   1.2       cgd 	if ((cf->tccf_offset != TCCF_SLOT_UNKNOWN) &&
    221   1.2       cgd 	    (cf->tccf_offset != d->ta_offset))
    222   1.2       cgd 		return 0;
    223   1.1       cgd 
    224  1.12  jonathan 	return ((*cf->cf_attach->ca_match)(parent, match, aux));
    225   1.1       cgd }
    226   1.1       cgd 
    227   1.1       cgd 
    228   1.1       cgd #define	NTC_ROMOFFS	2
    229   1.1       cgd static tc_offset_t tc_slot_romoffs[NTC_ROMOFFS] = {
    230   1.1       cgd 	TC_SLOT_ROM,
    231   1.1       cgd 	TC_SLOT_PROTOROM,
    232   1.1       cgd };
    233   1.1       cgd 
    234   1.1       cgd int
    235   1.1       cgd tc_checkslot(slotbase, namep)
    236   1.1       cgd 	tc_addr_t slotbase;
    237   1.1       cgd 	char *namep;
    238   1.1       cgd {
    239   1.1       cgd 	struct tc_rommap *romp;
    240   1.1       cgd 	int i, j;
    241   1.1       cgd 
    242   1.1       cgd 	for (i = 0; i < NTC_ROMOFFS; i++) {
    243   1.1       cgd 		romp = (struct tc_rommap *)
    244   1.1       cgd 		    (slotbase + tc_slot_romoffs[i]);
    245   1.1       cgd 
    246   1.1       cgd 		switch (romp->tcr_width.v) {
    247   1.1       cgd 		case 1:
    248   1.1       cgd 		case 2:
    249   1.1       cgd 		case 4:
    250   1.1       cgd 			break;
    251   1.1       cgd 
    252   1.1       cgd 		default:
    253   1.1       cgd 			continue;
    254   1.1       cgd 		}
    255   1.1       cgd 
    256   1.1       cgd 		if (romp->tcr_stride.v != 4)
    257   1.1       cgd 			continue;
    258   1.1       cgd 
    259   1.1       cgd 		for (j = 0; j < 4; j++)
    260   1.1       cgd 			if (romp->tcr_test[j+0*romp->tcr_stride.v] != 0x55 ||
    261   1.1       cgd 			    romp->tcr_test[j+1*romp->tcr_stride.v] != 0x00 ||
    262   1.1       cgd 			    romp->tcr_test[j+2*romp->tcr_stride.v] != 0xaa ||
    263   1.1       cgd 			    romp->tcr_test[j+3*romp->tcr_stride.v] != 0xff)
    264   1.1       cgd 				continue;
    265   1.1       cgd 
    266   1.1       cgd 		for (j = 0; j < TC_ROM_LLEN; j++)
    267   1.1       cgd 			namep[j] = romp->tcr_modname[j].v;
    268   1.1       cgd 		namep[j] = '\0';
    269   1.1       cgd 		return (1);
    270   1.1       cgd 	}
    271   1.1       cgd 	return (0);
    272   1.1       cgd }
    273   1.1       cgd 
    274   1.1       cgd void
    275   1.1       cgd tc_intr_establish(dev, cookie, level, handler, arg)
    276   1.1       cgd 	struct device *dev;
    277   1.1       cgd 	void *cookie, *arg;
    278   1.1       cgd 	tc_intrlevel_t level;
    279   1.1       cgd 	int (*handler) __P((void *));
    280   1.1       cgd {
    281   1.1       cgd 	struct tc_softc *sc = (struct tc_softc *)dev;
    282   1.1       cgd 
    283   1.1       cgd 	(*sc->sc_intr_establish)(sc->sc_dv.dv_parent, cookie, level,
    284   1.1       cgd 	    handler, arg);
    285   1.1       cgd }
    286   1.1       cgd 
    287   1.1       cgd void
    288   1.1       cgd tc_intr_disestablish(dev, cookie)
    289   1.1       cgd 	struct device *dev;
    290   1.1       cgd 	void *cookie;
    291   1.1       cgd {
    292   1.1       cgd 	struct tc_softc *sc = (struct tc_softc *)dev;
    293   1.1       cgd 
    294   1.1       cgd 	(*sc->sc_intr_disestablish)(sc->sc_dv.dv_parent, cookie);
    295   1.8       cgd }
    296   1.8       cgd 
    297   1.8       cgd #ifdef TCVERBOSE
    298   1.8       cgd /*
    299   1.8       cgd  * Descriptions of of known devices.
    300   1.8       cgd  */
    301   1.8       cgd struct tc_knowndev {
    302  1.10       cgd 	const char *id, *driver, *description;
    303   1.8       cgd };
    304   1.8       cgd 
    305   1.8       cgd #include <dev/tc/tcdevs_data.h>
    306   1.8       cgd #endif /* TCVERBOSE */
    307   1.8       cgd 
    308   1.8       cgd void
    309   1.8       cgd tc_devinfo(id, cp)
    310   1.8       cgd 	const char *id;
    311   1.8       cgd 	char *cp;
    312   1.8       cgd {
    313  1.10       cgd 	const char *driver, *description;
    314   1.8       cgd #ifdef TCVERBOSE
    315   1.8       cgd 	struct tc_knowndev *tdp;
    316   1.8       cgd 	int match;
    317   1.9       cgd 	const char *unmatched = "unknown ";
    318   1.8       cgd #else
    319   1.8       cgd 	const char *unmatched = "";
    320   1.8       cgd #endif
    321   1.8       cgd 
    322  1.10       cgd 	driver = NULL;
    323  1.10       cgd 	description = id;
    324   1.8       cgd 
    325   1.8       cgd #ifdef TCVERBOSE
    326   1.8       cgd 	/* find the device in the table, if possible. */
    327   1.8       cgd 	tdp = tc_knowndevs;
    328   1.8       cgd 	while (tdp->id != NULL) {
    329   1.8       cgd 		/* check this entry for a match */
    330   1.8       cgd 		match = !strcmp(tdp->id, id);
    331   1.8       cgd 		if (match) {
    332  1.10       cgd 			driver = tdp->driver;
    333  1.10       cgd 			description = tdp->description;
    334   1.8       cgd 			break;
    335   1.8       cgd 		}
    336   1.8       cgd 		tdp++;
    337   1.8       cgd 	}
    338   1.8       cgd #endif
    339   1.8       cgd 
    340  1.10       cgd 	if (driver == NULL)
    341   1.9       cgd 		cp += sprintf(cp, "%sdevice %s", unmatched, id);
    342   1.8       cgd 	else
    343  1.10       cgd 		cp += sprintf(cp, "%s (%s)", driver, description);
    344   1.1       cgd }
    345