1998-05-14 03:23:23 +04:00
|
|
|
/* $NetBSD: tlsb.c,v 1.9 1998/05/13 23:23:23 thorpej Exp $ */
|
1997-03-12 22:19:54 +03:00
|
|
|
|
|
|
|
/*
|
1997-03-13 00:09:43 +03:00
|
|
|
* Copyright (c) 1997 by Matthew Jacob
|
1997-03-12 22:19:54 +03:00
|
|
|
* NASA AMES Research Center.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Based in part upon a prototype version by Jason Thorpe
|
|
|
|
* Copyright (c) 1996 by Jason Thorpe.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice immediately at the beginning of the file, without modification,
|
|
|
|
* this list of conditions, and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Autoconfiguration and support routines for the TurboLaser System Bus
|
|
|
|
* found on AlphaServer 8200 and 8400 systems.
|
|
|
|
*/
|
|
|
|
|
1997-04-08 03:39:37 +04:00
|
|
|
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
|
|
|
|
1998-05-14 03:23:23 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: tlsb.c,v 1.9 1998/05/13 23:23:23 thorpej Exp $");
|
1997-04-07 00:09:04 +04:00
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
|
|
|
|
#include <machine/autoconf.h>
|
|
|
|
#include <machine/rpb.h>
|
|
|
|
#include <machine/pte.h>
|
|
|
|
|
|
|
|
#include <alpha/tlsb/tlsbreg.h>
|
|
|
|
#include <alpha/tlsb/tlsbvar.h>
|
|
|
|
|
1997-07-17 05:17:45 +04:00
|
|
|
#include "locators.h"
|
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
extern int cputype;
|
|
|
|
|
|
|
|
#define KV(_addr) ((caddr_t)ALPHA_PHYS_TO_K0SEG((_addr)))
|
|
|
|
|
|
|
|
static int tlsbmatch __P((struct device *, struct cfdata *, void *));
|
|
|
|
static void tlsbattach __P((struct device *, struct device *, void *));
|
1998-01-12 13:21:02 +03:00
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
struct cfattach tlsb_ca = {
|
|
|
|
sizeof (struct device), tlsbmatch, tlsbattach
|
|
|
|
};
|
|
|
|
|
1998-01-12 13:21:02 +03:00
|
|
|
extern struct cfdriver tlsb_cd;
|
1997-03-12 22:19:54 +03:00
|
|
|
|
|
|
|
static int tlsbprint __P((void *, const char *));
|
|
|
|
static int tlsbsubmatch __P((struct device *, struct cfdata *, void *));
|
|
|
|
static char *tlsb_node_type_str __P((u_int32_t));
|
|
|
|
|
1998-05-14 03:23:23 +04:00
|
|
|
/* There can be only one. */
|
|
|
|
int tlsb_found;
|
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
static int
|
1998-05-14 03:23:23 +04:00
|
|
|
tlsbprint(aux, pnp)
|
1997-03-12 22:19:54 +03:00
|
|
|
void *aux;
|
1998-05-14 03:23:23 +04:00
|
|
|
const char *pnp;
|
1997-03-12 22:19:54 +03:00
|
|
|
{
|
|
|
|
struct tlsb_dev_attach_args *tap = aux;
|
1998-05-14 03:23:23 +04:00
|
|
|
|
|
|
|
if (pnp)
|
|
|
|
printf("%s at %s node %d", tlsb_node_type_str(tap->ta_dtype),
|
|
|
|
pnp, tap->ta_node);
|
|
|
|
else
|
|
|
|
printf(" node %d: %s", tap->ta_node,
|
|
|
|
tlsb_node_type_str(tap->ta_dtype));
|
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tlsbsubmatch(parent, cf, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *cf;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct tlsb_dev_attach_args *tap = aux;
|
1998-05-14 03:23:23 +04:00
|
|
|
|
1997-07-17 05:17:45 +04:00
|
|
|
if (cf->cf_loc[TLSBCF_NODE] != TLSBCF_NODE_DEFAULT &&
|
|
|
|
cf->cf_loc[TLSBCF_NODE] != tap->ta_node)
|
1997-03-12 22:19:54 +03:00
|
|
|
return (0);
|
1998-05-14 03:23:23 +04:00
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tlsbmatch(parent, cf, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *cf;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct confargs *ca = aux;
|
|
|
|
|
|
|
|
/* Make sure we're looking for a TurboLaser. */
|
|
|
|
if (strcmp(ca->ca_name, tlsb_cd.cd_name) != 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only one instance of TurboLaser allowed,
|
|
|
|
* and only available on 21000 processor type
|
|
|
|
* platforms.
|
|
|
|
*/
|
1998-05-14 03:23:23 +04:00
|
|
|
if ((cputype != ST_DEC_21000) || tlsb_found)
|
1997-03-12 22:19:54 +03:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tlsbattach(parent, self, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct device *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
1998-01-12 13:21:02 +03:00
|
|
|
extern struct cfdriver cpu_cd;
|
1997-03-12 22:19:54 +03:00
|
|
|
struct tlsb_dev_attach_args ta;
|
|
|
|
u_int32_t tldev;
|
|
|
|
u_int8_t vid;
|
|
|
|
int node;
|
|
|
|
struct cfdriver *cfd = &cpu_cd;
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
|
1998-05-14 03:23:23 +04:00
|
|
|
tlsb_found = 1;
|
|
|
|
|
1997-03-12 22:19:54 +03:00
|
|
|
/*
|
|
|
|
* Attempt to find all devices on the bus, including
|
|
|
|
* CPUs, memory modules, and I/O modules.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sigh. I would like to just start off nicely,
|
|
|
|
* but I need to treat I/O modules differently-
|
|
|
|
* The highest priority I/O node has to be in
|
|
|
|
* node #8, and I want to find it *first*, since
|
|
|
|
* it will have the primary disks (most likely)
|
|
|
|
* on it.
|
|
|
|
*/
|
|
|
|
for (node = 0; node <= TLSB_NODE_MAX; ++node) {
|
|
|
|
/*
|
|
|
|
* Check for invalid address. This may not really
|
|
|
|
* be necessary, but what the heck...
|
|
|
|
*/
|
|
|
|
if (badaddr(TLSB_NODE_REG_ADDR(node, TLDEV), sizeof(u_int32_t)))
|
|
|
|
continue;
|
|
|
|
tldev = TLSB_GET_NODEREG(node, TLDEV);
|
|
|
|
if (tldev == 0) {
|
|
|
|
/* Nothing at this node. */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (TLDEV_ISIOPORT(tldev))
|
|
|
|
continue; /* not interested right now */
|
|
|
|
ta.ta_node = node;
|
|
|
|
ta.ta_dtype = TLDEV_DTYPE(tldev);
|
|
|
|
ta.ta_swrev = TLDEV_SWREV(tldev);
|
|
|
|
ta.ta_hwrev = TLDEV_HWREV(tldev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deal with hooking CPU instances to TurboLaser nodes.
|
|
|
|
*/
|
|
|
|
if (TLDEV_ISCPU(tldev)) {
|
|
|
|
printf("%s node %d: %s", self->dv_xname,
|
|
|
|
node, tlsb_node_type_str(tldev));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hook in the first CPU unit.
|
|
|
|
*/
|
|
|
|
vid = (TLSB_GET_NODEREG(node, TLVID) &
|
|
|
|
TLVID_VIDA_MASK) >> TLVID_VIDA_SHIFT;
|
1998-04-15 04:51:00 +04:00
|
|
|
printf(", VID %d -> %s", vid, cfd->cd_name);
|
1997-03-12 22:19:54 +03:00
|
|
|
printf("\n");
|
|
|
|
TLSB_PUT_NODEREG(node, TLCPUMASK, (1<<vid));
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Attach any children nodes, including a CPU's GBus
|
|
|
|
*/
|
|
|
|
config_found_sm(self, &ta, tlsbprint, tlsbsubmatch);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* *Now* search for I/O nodes (in descending order)
|
|
|
|
*/
|
|
|
|
while (--node > 0) {
|
|
|
|
if (badaddr(TLSB_NODE_REG_ADDR(node, TLDEV), sizeof(u_int32_t)))
|
|
|
|
continue;
|
|
|
|
tldev = TLSB_GET_NODEREG(node, TLDEV);
|
|
|
|
if (tldev == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (TLDEV_ISIOPORT(tldev)) {
|
|
|
|
ta.ta_node = node;
|
|
|
|
ta.ta_dtype = TLDEV_DTYPE(tldev);
|
|
|
|
ta.ta_swrev = TLDEV_SWREV(tldev);
|
|
|
|
ta.ta_hwrev = TLDEV_HWREV(tldev);
|
|
|
|
config_found_sm(self, &ta, tlsbprint, tlsbsubmatch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
tlsb_node_type_str(dtype)
|
|
|
|
u_int32_t dtype;
|
|
|
|
{
|
|
|
|
static char tlsb_line[64];
|
|
|
|
|
|
|
|
switch (dtype & TLDEV_DTYPE_MASK) {
|
|
|
|
case TLDEV_DTYPE_KFTHA:
|
|
|
|
return ("KFTHA I/O interface");
|
|
|
|
|
|
|
|
case TLDEV_DTYPE_KFTIA:
|
|
|
|
return ("KFTIA I/O interface");
|
|
|
|
|
|
|
|
case TLDEV_DTYPE_MS7CC:
|
|
|
|
return ("MS7CC Memory Module");
|
|
|
|
|
|
|
|
case TLDEV_DTYPE_SCPU4:
|
|
|
|
return ("Single CPU, 4MB cache");
|
|
|
|
|
|
|
|
case TLDEV_DTYPE_SCPU16:
|
|
|
|
return ("Single CPU, 16MB cache");
|
|
|
|
|
|
|
|
case TLDEV_DTYPE_DCPU4:
|
|
|
|
return ("Dual CPU, 4MB cache");
|
|
|
|
|
|
|
|
case TLDEV_DTYPE_DCPU16:
|
|
|
|
return ("Dual CPU, 16MB cache");
|
|
|
|
|
|
|
|
default:
|
|
|
|
bzero(tlsb_line, sizeof(tlsb_line));
|
|
|
|
sprintf(tlsb_line, "unknown, dtype 0x%x", dtype);
|
|
|
|
return (tlsb_line);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|