File: [cvs.NetBSD.org] / src / sys / arch / hpcmips / hpcmips / mainbus.c (download)
Revision 1.5.4.1, Sun Aug 6 04:20:01 2000 UTC (20 years, 5 months ago) by takemura
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2 Changes since 1.5: +2 -2
lines
Pull up revision 1.7 (requested by takemura)
Add hpcapm.
|
/* $NetBSD: mainbus.c,v 1.5.4.1 2000/08/06 04:20:01 takemura Exp $ */
/*-
* Copyright (c) 1999
* Shin Takemura and PocketBSD Project. All rights reserved.
*
* 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, 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the PocketBSD project
* and its contributors.
* 4. Neither the name of the project nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
*
*/
#include "opt_vr41x1.h"
#include "opt_tx39xx.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/autoconf.h>
struct mainbus_softc {
struct device sc_dv;
};
/* Definition of the mainbus driver. */
static int mbmatch __P((struct device *, struct cfdata *, void *));
static void mbattach __P((struct device *, struct device *, void *));
static int mbprint __P((void *, const char *));
bus_space_tag_t mb_bus_space_init __P((void));
bus_space_tag_t mb_bus_space_init __P((void));
struct cfattach mainbus_ca = {
sizeof(struct mainbus_softc), mbmatch, mbattach
};
static int
mbmatch(parent, cf, aux)
struct device *parent;
struct cfdata *cf;
void *aux;
{
/*
* Only one mainbus, but some people are stupid...
*/
if (cf->cf_unit > 0)
return(0);
/*
* That one mainbus is always here.
*/
return(1);
}
int ncpus = 0; /* only support uniprocessors, for now */
bus_space_tag_t system_bus_iot; /* Serial console requires this */
bus_space_tag_t
mb_bus_space_init()
{
bus_space_tag_t iot;
iot = hpcmips_alloc_bus_space_tag();
strcpy(iot->t_name, "System internal");
iot->t_base = 0x0;
iot->t_size = 0xffffffff;
iot->t_extent = 0; /* No extent for bootstraping */
system_bus_iot = iot;
return iot;
}
static void
mbattach(parent, self, aux)
struct device *parent;
struct device *self;
void *aux;
{
int i;
register struct device *mb = self;
struct mainbus_attach_args ma;
char *devnames[] = {
"txsim", "vrip", "bivideo", "btnmgr", "hpcapm",
};
printf("\n");
/* Attach CPU */
ma.ma_name = "cpu";
config_found(mb, &ma, mbprint);
#if defined VR41X1 && defined TX39XX
#error misconfiguration
#elif defined VR41X1
if (!system_bus_iot)
mb_bus_space_init();
hpcmips_init_bus_space_extent(system_bus_iot); /* Now prepare extent */
ma.ma_iot = system_bus_iot;
#endif
/* Attach devices */
for (i = 0; i < sizeof(devnames)/sizeof(*devnames); i++) {
ma.ma_name = devnames[i];
config_found(mb, &ma, mbprint);
}
}
static int
mbprint(aux, pnp)
void *aux;
const char *pnp;
{
if (pnp)
return (QUIET);
return (UNCONF);
}