NetBSD/sys/arch/sun2/sun2/obmem.c
fredette 74e4ac42de Be sure to mark in the prototype attach args
that a physical address is required for each
device on this bus.
2001-12-15 22:13:11 +00:00

176 lines
5.2 KiB
C

/* $NetBSD: obmem.c,v 1.6 2001/12/15 22:13:11 fredette Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Adam Glass, Gordon W. Ross, and Matthew Fredette.
*
* 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 NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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 <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <uvm/uvm_extern.h>
#include <machine/autoconf.h>
#include <machine/pmap.h>
#include <sun2/sun2/control.h>
#include <sun2/sun2/machdep.h>
static int obmem_match __P((struct device *, struct cfdata *, void *));
static void obmem_attach __P((struct device *, struct device *, void *));
struct obmem_softc {
struct device sc_dev; /* base device */
bus_space_tag_t sc_bustag; /* parent bus tag */
bus_dma_tag_t sc_dmatag; /* parent bus dma tag */
};
struct cfattach obmem_ca = {
sizeof(struct obmem_softc), obmem_match, obmem_attach
};
static paddr_t obmem_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
off_t, int, int));
static int _obmem_bus_map __P((bus_space_tag_t, bus_type_t, bus_addr_t,
bus_size_t, int,
vaddr_t, bus_space_handle_t *));
static struct sun68k_bus_space_tag obmem_space_tag = {
NULL, /* cookie */
NULL, /* parent bus tag */
_obmem_bus_map, /* bus_space_map */
NULL, /* bus_space_unmap */
NULL, /* bus_space_subregion */
NULL, /* bus_space_barrier */
obmem_bus_mmap, /* bus_space_mmap */
NULL, /* bus_intr_establish */
NULL, /* bus_space_peek_N */
NULL /* bus_space_poke_N */
};
static int
obmem_match(parent, cf, aux)
struct device *parent;
struct cfdata *cf;
void *aux;
{
struct mainbus_attach_args *ma = aux;
return (ma->ma_name == NULL || strcmp(cf->cf_driver->cd_name, ma->ma_name) == 0);
}
static void
obmem_attach(parent, self, aux)
struct device *parent;
struct device *self;
void *aux;
{
struct mainbus_attach_args *ma = aux;
struct obmem_softc *sc = (struct obmem_softc *)self;
struct obmem_attach_args obma;
const char *const *cpp;
static const char *const special[] = {
/* find these first */
NULL
};
/*
* There is only one obmem bus
*/
if (self->dv_unit > 0) {
printf(" unsupported\n");
return;
}
printf("\n");
sc->sc_bustag = ma->ma_bustag;
sc->sc_dmatag = ma->ma_dmatag;
obmem_space_tag.cookie = sc;
obmem_space_tag.parent = sc->sc_bustag;
/*
* Prepare the skeleton attach arguments for our devices.
* The values we give in the locators are indications to
* sun68k_bus_search about which locators must and must not
* be defined.
*/
obma = *ma;
obma.obma_bustag = &obmem_space_tag;
obma.obma_paddr = LOCATOR_REQUIRED;
obma.obma_pri = LOCATOR_OPTIONAL;
/* Find all `early' obmem devices */
for (cpp = special; *cpp != NULL; cpp++) {
obma.obma_name = *cpp;
(void)config_search(sun68k_bus_search, self, &obma);
}
/* Find all other obmem devices */
obma.obma_name = NULL;
(void)config_search(sun68k_bus_search, self, &obma);
}
int
_obmem_bus_map(t, btype, paddr, size, flags, vaddr, hp)
bus_space_tag_t t;
bus_type_t btype;
bus_addr_t paddr;
bus_size_t size;
int flags;
vaddr_t vaddr;
bus_space_handle_t *hp;
{
struct obmem_softc *sc = t->cookie;
return (bus_space_map2(sc->sc_bustag, PMAP_OBMEM, paddr,
size, flags, vaddr, hp));
}
paddr_t
obmem_bus_mmap(t, btype, paddr, off, prot, flags)
bus_space_tag_t t;
bus_type_t btype;
bus_addr_t paddr;
off_t off;
int prot;
int flags;
{
struct obmem_softc *sc = t->cookie;
return (bus_space_mmap2(sc->sc_bustag, PMAP_OBMEM, paddr, off,
prot, flags));
}