Home | History | Annotate | Line # | Download | only in mcbus
mcbus.c revision 1.15
      1  1.15  drochner /* $NetBSD: mcbus.c,v 1.15 2005/06/02 13:17:45 drochner Exp $ */
      2   1.1    mjacob 
      3   1.1    mjacob /*
      4   1.1    mjacob  * Copyright (c) 1998 by Matthew Jacob
      5   1.1    mjacob  * NASA AMES Research Center.
      6   1.1    mjacob  * All rights reserved.
      7   1.1    mjacob  *
      8   1.1    mjacob  * Redistribution and use in source and binary forms, with or without
      9   1.1    mjacob  * modification, are permitted provided that the following conditions
     10   1.1    mjacob  * are met:
     11   1.1    mjacob  * 1. Redistributions of source code must retain the above copyright
     12   1.1    mjacob  *    notice immediately at the beginning of the file, without modification,
     13   1.1    mjacob  *    this list of conditions, and the following disclaimer.
     14   1.1    mjacob  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1    mjacob  *    notice, this list of conditions and the following disclaimer in the
     16   1.1    mjacob  *    documentation and/or other materials provided with the distribution.
     17   1.1    mjacob  * 3. The name of the author may not be used to endorse or promote products
     18   1.1    mjacob  *    derived from this software without specific prior written permission.
     19   1.1    mjacob  *
     20   1.1    mjacob  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     21   1.1    mjacob  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22   1.1    mjacob  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23   1.1    mjacob  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     24   1.1    mjacob  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25   1.1    mjacob  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26   1.1    mjacob  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27   1.1    mjacob  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28   1.1    mjacob  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29   1.1    mjacob  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30   1.1    mjacob  * SUCH DAMAGE.
     31   1.1    mjacob  */
     32   1.1    mjacob 
     33   1.1    mjacob /*
     34   1.2    mjacob  * Autoconfiguration routines for the MCBUS system
     35   1.2    mjacob  * bus found on AlphaServer 4100 systems.
     36   1.1    mjacob  */
     37   1.1    mjacob 
     38   1.1    mjacob #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     39   1.1    mjacob 
     40  1.15  drochner __KERNEL_RCSID(0, "$NetBSD: mcbus.c,v 1.15 2005/06/02 13:17:45 drochner Exp $");
     41   1.1    mjacob 
     42   1.1    mjacob #include <sys/param.h>
     43   1.1    mjacob #include <sys/systm.h>
     44   1.1    mjacob #include <sys/device.h>
     45   1.1    mjacob #include <sys/malloc.h>
     46   1.1    mjacob 
     47   1.1    mjacob #include <machine/autoconf.h>
     48   1.1    mjacob #include <machine/rpb.h>
     49   1.1    mjacob #include <machine/pte.h>
     50   1.1    mjacob 
     51   1.1    mjacob #include <alpha/mcbus/mcbusreg.h>
     52   1.1    mjacob #include <alpha/mcbus/mcbusvar.h>
     53   1.1    mjacob 
     54   1.8   thorpej #include <alpha/pci/mcpciareg.h>
     55   1.8   thorpej 
     56   1.1    mjacob #include "locators.h"
     57   1.1    mjacob 
     58   1.1    mjacob #define KV(_addr)	((caddr_t)ALPHA_PHYS_TO_K0SEG((_addr)))
     59   1.7    mjacob #define	MCPCIA_EXISTS(mid, gid)	\
     60   1.7    mjacob 	(!badaddr((void *)KV(MCPCIA_BRIDGE_ADDR(gid, mid)), sizeof (u_int32_t)))
     61   1.1    mjacob 
     62   1.1    mjacob extern struct cfdriver mcbus_cd;
     63   1.1    mjacob 
     64   1.1    mjacob struct mcbus_cpu_busdep mcbus_primary;
     65   1.1    mjacob 
     66   1.1    mjacob static int	mcbusmatch __P((struct device *, struct cfdata *, void *));
     67   1.1    mjacob static void	mcbusattach __P((struct device *, struct device *, void *));
     68   1.1    mjacob static int	mcbusprint __P((void *, const char *));
     69  1.14  drochner static int	mcbussbm __P((struct device *, struct cfdata *,
     70  1.14  drochner 			      const locdesc_t *, void *));
     71  1.15  drochner static const char *mcbus_node_type_str __P((u_int8_t));
     72   1.1    mjacob 
     73   1.1    mjacob typedef struct {
     74   1.1    mjacob 	struct device	mcbus_dev;
     75   1.1    mjacob 	u_int8_t	mcbus_types[MCBUS_MID_MAX];
     76   1.1    mjacob } mcbus_softc_t;
     77   1.1    mjacob 
     78  1.12   thorpej CFATTACH_DECL(mcbus, sizeof (mcbus_softc_t),
     79  1.12   thorpej     mcbusmatch, mcbusattach, NULL, NULL);
     80   1.1    mjacob 
     81   1.6   thorpej /*
     82   1.6   thorpej  * Tru64 UNIX (formerly Digital UNIX (formerly DEC OSF/1)) probes for MCPCIAs
     83   1.6   thorpej  * in the following order:
     84   1.6   thorpej  *
     85   1.6   thorpej  *	5, 4, 7, 6
     86   1.6   thorpej  *
     87   1.6   thorpej  * This is so that the built-in CD-ROM on the internal 53c810 is always
     88   1.6   thorpej  * dka500.  We probe them in the same order, for consistency.
     89   1.6   thorpej  */
     90   1.6   thorpej const int mcbus_mcpcia_probe_order[] = { 5, 4, 7, 6 };
     91   1.6   thorpej 
     92   1.1    mjacob extern void mcpcia_config_cleanup __P((void));
     93   1.1    mjacob 
     94   1.1    mjacob static int
     95   1.1    mjacob mcbusprint(aux, cp)
     96   1.1    mjacob 	void *aux;
     97   1.1    mjacob 	const char *cp;
     98   1.1    mjacob {
     99   1.1    mjacob 	struct mcbus_dev_attach_args *tap = aux;
    100  1.13   thorpej 	aprint_normal(" mid %d: %s", tap->ma_mid,
    101  1.13   thorpej 	    mcbus_node_type_str(tap->ma_type));
    102   1.1    mjacob 	return (UNCONF);
    103   1.1    mjacob }
    104   1.1    mjacob 
    105   1.1    mjacob static int
    106  1.14  drochner mcbussbm(parent, cf, ldesc, aux)
    107   1.1    mjacob 	struct device *parent;
    108   1.1    mjacob 	struct cfdata *cf;
    109  1.14  drochner 	const locdesc_t *ldesc;
    110   1.1    mjacob 	void *aux;
    111   1.1    mjacob {
    112  1.14  drochner 
    113   1.1    mjacob 	if (cf->cf_loc[MCBUSCF_MID] != MCBUSCF_MID_DEFAULT &&
    114  1.14  drochner 	    cf->cf_loc[MCBUSCF_MID] != ldesc->locs[MCBUSCF_MID])
    115   1.1    mjacob 		return (0);
    116  1.14  drochner 
    117  1.10   thorpej 	return (config_match(parent, cf, aux));
    118   1.1    mjacob }
    119   1.1    mjacob 
    120   1.1    mjacob static int
    121   1.1    mjacob mcbusmatch(parent, cf, aux)
    122   1.1    mjacob 	struct device *parent;
    123   1.1    mjacob 	struct cfdata *cf;
    124   1.1    mjacob 	void *aux;
    125   1.1    mjacob {
    126   1.3   thorpej 	struct mainbus_attach_args *ma = aux;
    127   1.1    mjacob 
    128   1.1    mjacob 	/* Make sure we're looking for a MCBUS. */
    129   1.3   thorpej 	if (strcmp(ma->ma_name, mcbus_cd.cd_name) != 0)
    130   1.1    mjacob 		return (0);
    131   1.1    mjacob 
    132   1.1    mjacob 	/*
    133   1.1    mjacob 	 * Only available on 4100 processor type platforms.
    134   1.1    mjacob 	 */
    135   1.1    mjacob 	if (cputype != ST_DEC_4100)
    136   1.1    mjacob 		return (0);
    137   1.1    mjacob 	return (1);
    138   1.1    mjacob }
    139   1.1    mjacob 
    140   1.1    mjacob static void
    141   1.1    mjacob mcbusattach(parent, self, aux)
    142   1.1    mjacob 	struct device *parent;
    143   1.1    mjacob 	struct device *self;
    144   1.1    mjacob 	void *aux;
    145   1.1    mjacob {
    146   1.9   thorpej 	static const char * const bcs[CPU_BCacheMask + 1] = {
    147   1.8   thorpej 		"No", "1MB", "2MB", "4MB",
    148   1.1    mjacob 	};
    149   1.1    mjacob 	struct mcbus_dev_attach_args ta;
    150   1.1    mjacob 	mcbus_softc_t *mbp = (mcbus_softc_t *)self;
    151   1.6   thorpej 	int i, mid;
    152  1.14  drochner 	int help[2];
    153  1.14  drochner 	locdesc_t *ldesc = (void *)help; /* XXX */
    154   1.1    mjacob 
    155   1.8   thorpej 	printf(": %s BCache\n", mcbus_primary.mcbus_valid ?
    156   1.8   thorpej 	    bcs[mcbus_primary.mcbus_bcache] : "Unknown");
    157   1.1    mjacob 
    158   1.1    mjacob 	mbp->mcbus_types[0] = MCBUS_TYPE_RES;
    159   1.8   thorpej 	for (mid = 1; mid <= MCBUS_MID_MAX; ++mid)
    160   1.1    mjacob 		mbp->mcbus_types[mid] = MCBUS_TYPE_UNK;
    161   1.1    mjacob 
    162   1.1    mjacob 	/*
    163   1.1    mjacob 	 * Find and "configure" memory.
    164   1.1    mjacob 	 */
    165   1.8   thorpej 
    166   1.6   thorpej 	/*
    167   1.6   thorpej 	 * XXX If we ever support more than one MCBUS, we'll
    168   1.6   thorpej 	 * XXX have to probe for them, and map them to unit
    169   1.6   thorpej 	 * XXX numbers.
    170   1.6   thorpej 	 */
    171   1.6   thorpej 	ta.ma_gid = MCBUS_GID_FROM_INSTANCE(0);
    172   1.1    mjacob 	ta.ma_mid = 1;
    173   1.1    mjacob 	ta.ma_type = MCBUS_TYPE_MEM;
    174   1.1    mjacob 	mbp->mcbus_types[1] = MCBUS_TYPE_MEM;
    175  1.14  drochner 	ldesc->len = 1;
    176  1.14  drochner 	ldesc->locs[MCBUSCF_MID] = 1;
    177  1.14  drochner 	(void) config_found_sm_loc(self, "mcbus", ldesc, &ta,
    178  1.14  drochner 				   mcbusprint, mcbussbm);
    179   1.1    mjacob 
    180   1.1    mjacob 	/*
    181   1.6   thorpej 	 * Now find PCI busses.
    182   1.1    mjacob 	 */
    183   1.1    mjacob 	for (i = 0; i < MCPCIA_PER_MCBUS; i++) {
    184   1.6   thorpej 		mid = mcbus_mcpcia_probe_order[i];
    185   1.6   thorpej 		/*
    186   1.6   thorpej 		 * XXX If we ever support more than one MCBUS, we'll
    187   1.6   thorpej 		 * XXX have to probe for them, and map them to unit
    188   1.6   thorpej 		 * XXX numbers.
    189   1.6   thorpej 		 */
    190   1.6   thorpej 		ta.ma_gid = MCBUS_GID_FROM_INSTANCE(0);
    191   1.1    mjacob 		ta.ma_mid = mid;
    192   1.1    mjacob 		ta.ma_type = MCBUS_TYPE_PCI;
    193  1.14  drochner 		ldesc->len = 1;
    194  1.14  drochner 		ldesc->locs[MCBUSCF_MID] = mid;
    195   1.8   thorpej 		if (MCPCIA_EXISTS(ta.ma_mid, ta.ma_gid))
    196  1.14  drochner 			(void) config_found_sm_loc(self, "mcbus", ldesc, &ta,
    197  1.14  drochner 						   mcbusprint, mcbussbm);
    198   1.1    mjacob 	}
    199   1.1    mjacob 
    200   1.8   thorpej #if 0
    201   1.1    mjacob 	/*
    202   1.1    mjacob 	 * Deal with hooking CPU instances to MCBUS module ids.
    203   1.1    mjacob 	 *
    204   1.1    mjacob 	 * Note that we do this here because it's the read of
    205   1.1    mjacob 	 * stupid MCPCIA WHOAMI register that can get us the
    206   1.1    mjacob 	 * module ID and type of the configuring CPU.
    207   1.1    mjacob 	 */
    208   1.1    mjacob 
    209   1.1    mjacob 	if (mcbus_primary.mcbus_valid) {
    210   1.1    mjacob 		mid = mcbus_primary.mcbus_cpu_mid;
    211   1.1    mjacob 		printf("%s mid %d: %s %s\n", self->dv_xname,
    212   1.1    mjacob 		    mid, mcbus_node_type_str(MCBUS_TYPE_CPU),
    213   1.4    mjacob 		    bcs[mcbus_primary.mcbus_bcache & 0x7]);
    214   1.6   thorpej 		/*
    215   1.6   thorpej 		 * XXX If we ever support more than one MCBUS, we'll
    216   1.6   thorpej 		 * XXX have to probe for them, and map them to unit
    217   1.6   thorpej 		 * XXX numbers.
    218   1.6   thorpej 		 */
    219   1.6   thorpej 		ta.ma_gid = MCBUS_GID_FROM_INSTANCE(0);
    220   1.1    mjacob 		ta.ma_mid = mid;
    221   1.1    mjacob 		ta.ma_type = MCBUS_TYPE_CPU;
    222   1.1    mjacob 		mbp->mcbus_types[mid] = MCBUS_TYPE_CPU;
    223  1.14  drochner 		ldesc->len = 1;
    224  1.14  drochner 		ldesc->locs[MCBUSCF_MID] = mid;
    225  1.14  drochner 		(void) config_found_sm_loc(self, "mcbus", ldesc, &ta,
    226  1.14  drochner 					   mcbusprint, mcbussbm);
    227   1.8   thorpej 	}
    228   1.1    mjacob #endif
    229   1.1    mjacob 
    230   1.1    mjacob 	/*
    231   1.1    mjacob 	 * Now clean up after configuring everything.
    232   1.1    mjacob 	 *
    233   1.1    mjacob 	 * This is an unfortunate layering violation- but
    234   1.1    mjacob 	 * we can't enable interrupts until *all* probing
    235   1.1    mjacob 	 * is done, but the code and knowledge to clean
    236   1.1    mjacob 	 * up after probing and to enable interrupts is
    237   1.1    mjacob 	 * down in the MCPCIA layer.
    238   1.1    mjacob 	 */
    239   1.1    mjacob 	mcpcia_config_cleanup();
    240   1.1    mjacob }
    241   1.1    mjacob 
    242  1.15  drochner static const char *
    243   1.1    mjacob mcbus_node_type_str(type)
    244   1.1    mjacob 	u_int8_t type;
    245   1.1    mjacob {
    246   1.1    mjacob 	switch (type) {
    247   1.1    mjacob 	case MCBUS_TYPE_RES:
    248   1.1    mjacob 		panic ("RESERVED TYPE IN MCBUS_NODE_TYPE_STR");
    249   1.1    mjacob 		break;
    250   1.1    mjacob 	case MCBUS_TYPE_UNK:
    251   1.1    mjacob 		panic ("UNKNOWN TYPE IN MCBUS_NODE_TYPE_STR");
    252   1.1    mjacob 		break;
    253   1.1    mjacob 	case MCBUS_TYPE_MEM:
    254   1.1    mjacob 		return ("Memory");
    255   1.1    mjacob 	case MCBUS_TYPE_CPU:
    256   1.1    mjacob 		return ("CPU");
    257   1.1    mjacob 	case MCBUS_TYPE_PCI:
    258   1.1    mjacob 		return ("PCI Bridge");
    259   1.1    mjacob 	default:
    260   1.1    mjacob 		panic("REALLY UNKNWON (%x) TYPE IN MCBUS_NODE_TYPE_STR", type);
    261   1.1    mjacob 		break;
    262   1.1    mjacob 	}
    263   1.1    mjacob }
    264