6bbb5a106c
instead of per IOMMU, so we no longer need to program all of them identically in systems having multiple IOMMUs. This continues the rototilling of the nexus(4) done about 5 months ago, which amongst others changed nexus(4) and the drivers for host-to-foo bridges to provide bus_get_dma_tag methods, allowing to handle DMA tags in a hierarchical way and to link them with devices. This still doesn't move the silicon bug workarounds for Sabre (and in the uncommitted schizo(4) for Tomatillo) bridges into special bus_dma_tag_create() and bus_dmamap_sync() methods though, as w/o fully newbus'ified bus_dma_tag_create() and bus_dma_tag_destroy() this still requires too much hackery, i.e. per-child parent DMA tags in the parent driver. - Let the host-to-foo drivers supply the maximum physical address of the IOMMU accompanying the bridges. Previously iommu(4) hard- coded an upper limit of 16GB, which actually only applies to the IOMMUs of the Hummingbird and Sabre bridges. The Psycho variants as well as the U2S in fact can can translate to up to 2TB, i.e. translate to 41-bit physical addresses. According to the recently available Tomatillo documentation these bridges even translate to 43-bit physical addresses and hints at the Schizo bridges doing 43 bits as well. This fixes the issue the FreeBSD 6.0 todo list item "Max RAM on sparc64" was refering to and pretty much obsoletes the lack of support for bounce buffers on sparc64. Thanks to Nathan Whitehorn for pointing me at the Tomatillo manual. Approved by: re (kensmith)
976 lines
29 KiB
C
976 lines
29 KiB
C
/*-
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Paul Kranenburg.
|
|
*
|
|
* 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.
|
|
*/
|
|
/*-
|
|
* Copyright (c) 1992, 1993
|
|
* The Regents of the University of California. All rights reserved.
|
|
*
|
|
* This software was developed by the Computer Systems Engineering group
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
* contributed to Berkeley.
|
|
*
|
|
* All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the University of
|
|
* California, Lawrence Berkeley Laboratory.
|
|
*
|
|
* 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.
|
|
* 4. Neither the name of the University 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.
|
|
*/
|
|
/*-
|
|
* Copyright (c) 1999 Eduardo Horvath
|
|
* Copyright (c) 2002 by Thomas Moestl <tmm@FreeBSD.org>.
|
|
* Copyright (c) 2005 Marius Strobl <marius@FreeBSD.org>
|
|
* 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.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
|
|
*
|
|
* from: @(#)sbus.c 8.1 (Berkeley) 6/11/93
|
|
* from: NetBSD: sbus.c,v 1.46 2001/10/07 20:30:41 eeh Exp
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
/*
|
|
* SBus support.
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/bus.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/module.h>
|
|
#include <sys/pcpu.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/reboot.h>
|
|
#include <sys/rman.h>
|
|
|
|
#include <dev/ofw/ofw_bus.h>
|
|
#include <dev/ofw/ofw_bus_subr.h>
|
|
#include <dev/ofw/openfirm.h>
|
|
|
|
#include <machine/bus.h>
|
|
#include <machine/bus_common.h>
|
|
#include <machine/bus_private.h>
|
|
#include <machine/iommureg.h>
|
|
#include <machine/iommuvar.h>
|
|
#include <machine/resource.h>
|
|
|
|
#include <sparc64/sbus/ofw_sbus.h>
|
|
#include <sparc64/sbus/sbusreg.h>
|
|
#include <sparc64/sbus/sbusvar.h>
|
|
|
|
struct sbus_devinfo {
|
|
int sdi_burstsz;
|
|
int sdi_clockfreq;
|
|
int sdi_slot;
|
|
|
|
struct ofw_bus_devinfo sdi_obdinfo;
|
|
struct resource_list sdi_rl;
|
|
};
|
|
|
|
/* Range descriptor, allocated for each sc_range. */
|
|
struct sbus_rd {
|
|
bus_addr_t rd_poffset;
|
|
bus_addr_t rd_pend;
|
|
int rd_slot;
|
|
bus_addr_t rd_coffset;
|
|
bus_addr_t rd_cend;
|
|
struct rman rd_rman;
|
|
bus_space_handle_t rd_bushandle;
|
|
struct resource *rd_res;
|
|
};
|
|
|
|
struct sbus_softc {
|
|
bus_dma_tag_t sc_cdmatag;
|
|
bus_space_tag_t sc_cbustag;
|
|
int sc_clockfreq; /* clock frequency (in Hz) */
|
|
int sc_nrange;
|
|
struct sbus_rd *sc_rd;
|
|
int sc_burst; /* burst transfer sizes supp. */
|
|
|
|
struct resource *sc_sysio_res;
|
|
int sc_ign; /* IGN for this sysio */
|
|
struct iommu_state sc_is; /* IOMMU state (iommuvar.h) */
|
|
|
|
struct resource *sc_ot_ires;
|
|
void *sc_ot_ihand;
|
|
struct resource *sc_pf_ires;
|
|
void *sc_pf_ihand;
|
|
};
|
|
|
|
struct sbus_clr {
|
|
struct sbus_softc *scl_sc;
|
|
bus_addr_t scl_clr; /* clear register */
|
|
driver_filter_t *scl_filter; /* filter to call */
|
|
driver_intr_t *scl_handler; /* handler to call */
|
|
void *scl_arg; /* argument for the handler */
|
|
void *scl_cookie; /* parent bus int. cookie */
|
|
};
|
|
|
|
#define SYSIO_READ8(sc, off) \
|
|
bus_read_8((sc)->sc_sysio_res, (off))
|
|
#define SYSIO_WRITE8(sc, off, v) \
|
|
bus_write_8((sc)->sc_sysio_res, (off), (v))
|
|
|
|
static device_probe_t sbus_probe;
|
|
static device_attach_t sbus_attach;
|
|
static bus_print_child_t sbus_print_child;
|
|
static bus_probe_nomatch_t sbus_probe_nomatch;
|
|
static bus_read_ivar_t sbus_read_ivar;
|
|
static bus_get_resource_list_t sbus_get_resource_list;
|
|
static bus_setup_intr_t sbus_setup_intr;
|
|
static bus_teardown_intr_t sbus_teardown_intr;
|
|
static bus_alloc_resource_t sbus_alloc_resource;
|
|
static bus_release_resource_t sbus_release_resource;
|
|
static bus_activate_resource_t sbus_activate_resource;
|
|
static bus_deactivate_resource_t sbus_deactivate_resource;
|
|
static bus_get_dma_tag_t sbus_get_dma_tag;
|
|
static ofw_bus_get_devinfo_t sbus_get_devinfo;
|
|
|
|
static int sbus_inlist(const char *, const char **);
|
|
static struct sbus_devinfo * sbus_setup_dinfo(device_t, struct sbus_softc *,
|
|
phandle_t);
|
|
static void sbus_destroy_dinfo(struct sbus_devinfo *);
|
|
static driver_filter_t sbus_filter_stub;
|
|
static driver_intr_t sbus_intr_stub;
|
|
static bus_space_tag_t sbus_alloc_bustag(struct sbus_softc *);
|
|
static driver_intr_t sbus_overtemp;
|
|
static driver_intr_t sbus_pwrfail;
|
|
static int sbus_print_res(struct sbus_devinfo *);
|
|
|
|
static device_method_t sbus_methods[] = {
|
|
/* Device interface */
|
|
DEVMETHOD(device_probe, sbus_probe),
|
|
DEVMETHOD(device_attach, sbus_attach),
|
|
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
|
DEVMETHOD(device_suspend, bus_generic_suspend),
|
|
DEVMETHOD(device_resume, bus_generic_resume),
|
|
|
|
/* Bus interface */
|
|
DEVMETHOD(bus_print_child, sbus_print_child),
|
|
DEVMETHOD(bus_probe_nomatch, sbus_probe_nomatch),
|
|
DEVMETHOD(bus_read_ivar, sbus_read_ivar),
|
|
DEVMETHOD(bus_setup_intr, sbus_setup_intr),
|
|
DEVMETHOD(bus_teardown_intr, sbus_teardown_intr),
|
|
DEVMETHOD(bus_alloc_resource, sbus_alloc_resource),
|
|
DEVMETHOD(bus_activate_resource, sbus_activate_resource),
|
|
DEVMETHOD(bus_deactivate_resource, sbus_deactivate_resource),
|
|
DEVMETHOD(bus_release_resource, sbus_release_resource),
|
|
DEVMETHOD(bus_get_resource_list, sbus_get_resource_list),
|
|
DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource),
|
|
DEVMETHOD(bus_get_dma_tag, sbus_get_dma_tag),
|
|
|
|
/* ofw_bus interface */
|
|
DEVMETHOD(ofw_bus_get_devinfo, sbus_get_devinfo),
|
|
DEVMETHOD(ofw_bus_get_compat, ofw_bus_gen_get_compat),
|
|
DEVMETHOD(ofw_bus_get_model, ofw_bus_gen_get_model),
|
|
DEVMETHOD(ofw_bus_get_name, ofw_bus_gen_get_name),
|
|
DEVMETHOD(ofw_bus_get_node, ofw_bus_gen_get_node),
|
|
DEVMETHOD(ofw_bus_get_type, ofw_bus_gen_get_type),
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|
|
static driver_t sbus_driver = {
|
|
"sbus",
|
|
sbus_methods,
|
|
sizeof(struct sbus_softc),
|
|
};
|
|
|
|
static devclass_t sbus_devclass;
|
|
|
|
DRIVER_MODULE(sbus, nexus, sbus_driver, sbus_devclass, 0, 0);
|
|
|
|
#define OFW_SBUS_TYPE "sbus"
|
|
#define OFW_SBUS_NAME "sbus"
|
|
|
|
static const char *sbus_order_first[] = {
|
|
"auxio",
|
|
"dma",
|
|
NULL
|
|
};
|
|
|
|
static int
|
|
sbus_inlist(const char *name, const char **list)
|
|
{
|
|
int i;
|
|
|
|
if (name == NULL)
|
|
return (0);
|
|
for (i = 0; list[i] != NULL; i++) {
|
|
if (strcmp(name, list[i]) == 0)
|
|
return (1);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
sbus_probe(device_t dev)
|
|
{
|
|
const char *t;
|
|
|
|
t = ofw_bus_get_type(dev);
|
|
if (((t == NULL || strcmp(t, OFW_SBUS_TYPE) != 0)) &&
|
|
strcmp(ofw_bus_get_name(dev), OFW_SBUS_NAME) != 0)
|
|
return (ENXIO);
|
|
device_set_desc(dev, "U2S UPA-SBus bridge");
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
sbus_attach(device_t dev)
|
|
{
|
|
struct sbus_softc *sc;
|
|
struct sbus_devinfo *sdi;
|
|
struct sbus_ranges *range;
|
|
struct resource *res;
|
|
struct resource_list *rl;
|
|
device_t cdev;
|
|
bus_addr_t phys;
|
|
bus_size_t size;
|
|
char *name;
|
|
phandle_t child, node;
|
|
u_int64_t mr;
|
|
int clock, i, intr, rid;
|
|
|
|
sc = device_get_softc(dev);
|
|
node = ofw_bus_get_node(dev);
|
|
|
|
rid = 0;
|
|
sc->sc_sysio_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
|
|
RF_ACTIVE);
|
|
if (sc->sc_sysio_res == NULL)
|
|
panic("%s: cannot allocate device memory", __func__);
|
|
|
|
if (OF_getprop(node, "interrupts", &intr, sizeof(intr)) == -1)
|
|
panic("%s: cannot get IGN", __func__);
|
|
sc->sc_ign = (intr & INTMAP_IGN_MASK) >> INTMAP_IGN_SHIFT;
|
|
sc->sc_cbustag = sbus_alloc_bustag(sc);
|
|
|
|
/*
|
|
* Record clock frequency for synchronous SCSI.
|
|
* IS THIS THE CORRECT DEFAULT??
|
|
*/
|
|
if (OF_getprop(node, "clock-frequency", &clock, sizeof(clock)) == -1)
|
|
clock = 25000000;
|
|
sc->sc_clockfreq = clock;
|
|
clock /= 1000;
|
|
device_printf(dev, "clock %d.%03d MHz\n", clock / 1000, clock % 1000);
|
|
|
|
/*
|
|
* Collect address translations from the OBP.
|
|
*/
|
|
if ((sc->sc_nrange = OF_getprop_alloc(node, "ranges",
|
|
sizeof(*range), (void **)&range)) == -1) {
|
|
panic("%s: error getting ranges property", __func__);
|
|
}
|
|
sc->sc_rd = (struct sbus_rd *)malloc(sizeof(*sc->sc_rd) * sc->sc_nrange,
|
|
M_DEVBUF, M_NOWAIT);
|
|
if (sc->sc_rd == NULL)
|
|
panic("%s: cannot allocate rmans", __func__);
|
|
/*
|
|
* Preallocate all space that the SBus bridge decodes, so that nothing
|
|
* else gets in the way; set up rmans etc.
|
|
*/
|
|
rl = BUS_GET_RESOURCE_LIST(device_get_parent(dev), dev);
|
|
for (i = 0; i < sc->sc_nrange; i++) {
|
|
phys = range[i].poffset | ((bus_addr_t)range[i].pspace << 32);
|
|
size = range[i].size;
|
|
sc->sc_rd[i].rd_slot = range[i].cspace;
|
|
sc->sc_rd[i].rd_coffset = range[i].coffset;
|
|
sc->sc_rd[i].rd_cend = sc->sc_rd[i].rd_coffset + size;
|
|
rid = resource_list_add_next(rl, SYS_RES_MEMORY, phys,
|
|
phys + size - 1, size);
|
|
if ((res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
|
|
RF_ACTIVE)) == NULL)
|
|
panic("%s: cannot allocate decoded range", __func__);
|
|
sc->sc_rd[i].rd_bushandle = rman_get_bushandle(res);
|
|
sc->sc_rd[i].rd_rman.rm_type = RMAN_ARRAY;
|
|
sc->sc_rd[i].rd_rman.rm_descr = "SBus Device Memory";
|
|
if (rman_init(&sc->sc_rd[i].rd_rman) != 0 ||
|
|
rman_manage_region(&sc->sc_rd[i].rd_rman, 0, size) != 0)
|
|
panic("%s: failed to set up memory rman", __func__);
|
|
sc->sc_rd[i].rd_poffset = phys;
|
|
sc->sc_rd[i].rd_pend = phys + size;
|
|
sc->sc_rd[i].rd_res = res;
|
|
}
|
|
free(range, M_OFWPROP);
|
|
|
|
/*
|
|
* Get the SBus burst transfer size if burst transfers are supported.
|
|
* XXX: is the default correct?
|
|
*/
|
|
if (OF_getprop(node, "burst-sizes", &sc->sc_burst,
|
|
sizeof(sc->sc_burst)) == -1 || sc->sc_burst == 0)
|
|
sc->sc_burst = SBUS_BURST_DEF;
|
|
|
|
/* initalise the IOMMU */
|
|
|
|
/* punch in our copies */
|
|
sc->sc_is.is_pmaxaddr = IOMMU_MAXADDR(SBUS_IOMMU_BITS);
|
|
sc->sc_is.is_bustag = rman_get_bustag(sc->sc_sysio_res);
|
|
sc->sc_is.is_bushandle = rman_get_bushandle(sc->sc_sysio_res);
|
|
sc->sc_is.is_iommu = SBR_IOMMU;
|
|
sc->sc_is.is_dtag = SBR_IOMMU_TLB_TAG_DIAG;
|
|
sc->sc_is.is_ddram = SBR_IOMMU_TLB_DATA_DIAG;
|
|
sc->sc_is.is_dqueue = SBR_IOMMU_QUEUE_DIAG;
|
|
sc->sc_is.is_dva = SBR_IOMMU_SVADIAG;
|
|
sc->sc_is.is_dtcmp = 0;
|
|
sc->sc_is.is_sb[0] = SBR_STRBUF;
|
|
sc->sc_is.is_sb[1] = 0;
|
|
|
|
/* give us a nice name.. */
|
|
name = (char *)malloc(32, M_DEVBUF, M_NOWAIT);
|
|
if (name == NULL)
|
|
panic("%s: cannot malloc iommu name", __func__);
|
|
snprintf(name, 32, "%s dvma", device_get_name(dev));
|
|
|
|
/*
|
|
* Note: the SBus IOMMU ignores the high bits of an address, so a NULL
|
|
* DMA pointer will be translated by the first page of the IOTSB.
|
|
* To detect bugs we'll allocate and ignore the first entry.
|
|
*/
|
|
iommu_init(name, &sc->sc_is, 3, -1, 1);
|
|
|
|
/* Create the DMA tag. */
|
|
if (bus_dma_tag_create(bus_get_dma_tag(dev), 8, 0,
|
|
sc->sc_is.is_pmaxaddr, ~0, NULL, NULL, sc->sc_is.is_pmaxaddr,
|
|
0xff, 0xffffffff, 0, NULL, NULL, &sc->sc_cdmatag) != 0)
|
|
panic("%s: bus_dma_tag_create failed", __func__);
|
|
/* Customize the tag. */
|
|
sc->sc_cdmatag->dt_cookie = &sc->sc_is;
|
|
sc->sc_cdmatag->dt_mt = &iommu_dma_methods;
|
|
|
|
/* Enable the over-temperature and power-fail interrupts. */
|
|
rid = 4;
|
|
mr = SYSIO_READ8(sc, SBR_THERM_INT_MAP);
|
|
sc->sc_ot_ires = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
|
|
RF_ACTIVE);
|
|
if (sc->sc_ot_ires == NULL ||
|
|
rman_get_start(sc->sc_ot_ires) != INTVEC(mr) ||
|
|
bus_setup_intr(dev, sc->sc_ot_ires, INTR_TYPE_MISC,
|
|
NULL, sbus_overtemp, sc, &sc->sc_ot_ihand) != 0)
|
|
panic("%s: failed to set up temperature interrupt", __func__);
|
|
SYSIO_WRITE8(sc, SBR_THERM_INT_MAP, INTMAP_ENABLE(mr, PCPU_GET(mid)));
|
|
rid = 3;
|
|
mr = SYSIO_READ8(sc, SBR_POWER_INT_MAP);
|
|
sc->sc_pf_ires = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
|
|
RF_ACTIVE);
|
|
if (sc->sc_pf_ires == NULL ||
|
|
rman_get_start(sc->sc_pf_ires) != INTVEC(mr) ||
|
|
bus_setup_intr(dev, sc->sc_pf_ires, INTR_TYPE_MISC,
|
|
NULL, sbus_pwrfail, sc, &sc->sc_pf_ihand) != 0)
|
|
panic("%s: failed to set up power fail interrupt", __func__);
|
|
SYSIO_WRITE8(sc, SBR_POWER_INT_MAP, INTMAP_ENABLE(mr, PCPU_GET(mid)));
|
|
|
|
/* Initialize the counter-timer. */
|
|
sparc64_counter_init(rman_get_bustag(sc->sc_sysio_res),
|
|
rman_get_bushandle(sc->sc_sysio_res), SBR_TC0);
|
|
|
|
/*
|
|
* Loop through ROM children, fixing any relative addresses
|
|
* and then configuring each device.
|
|
*/
|
|
for (child = OF_child(node); child != 0; child = OF_peer(child)) {
|
|
if ((sdi = sbus_setup_dinfo(dev, sc, child)) == NULL)
|
|
continue;
|
|
/*
|
|
* For devices where there are variants that are actually
|
|
* split into two SBus devices (as opposed to the first
|
|
* half of the device being a SBus device and the second
|
|
* half hanging off of the first one) like 'auxio' and
|
|
* 'SUNW,fdtwo' or 'dma' and 'esp' probe the SBus device
|
|
* which is a prerequisite to the driver attaching to the
|
|
* second one with a lower order. Saves us from dealing
|
|
* with different probe orders in the respective device
|
|
* drivers which generally is more hackish.
|
|
*/
|
|
cdev = device_add_child_ordered(dev, (OF_child(child) == 0 &&
|
|
sbus_inlist(sdi->sdi_obdinfo.obd_name, sbus_order_first)) ?
|
|
SBUS_ORDER_FIRST : SBUS_ORDER_NORMAL, NULL, -1);
|
|
if (cdev == NULL) {
|
|
device_printf(dev,
|
|
"<%s>: device_add_child_ordered failed\n",
|
|
sdi->sdi_obdinfo.obd_name);
|
|
sbus_destroy_dinfo(sdi);
|
|
continue;
|
|
}
|
|
device_set_ivars(cdev, sdi);
|
|
}
|
|
return (bus_generic_attach(dev));
|
|
}
|
|
|
|
static struct sbus_devinfo *
|
|
sbus_setup_dinfo(device_t dev, struct sbus_softc *sc, phandle_t node)
|
|
{
|
|
struct sbus_devinfo *sdi;
|
|
struct sbus_regs *reg;
|
|
u_int32_t base, iv, *intr;
|
|
int i, nreg, nintr, slot, rslot;
|
|
|
|
sdi = malloc(sizeof(*sdi), M_DEVBUF, M_ZERO | M_WAITOK);
|
|
if (ofw_bus_gen_setup_devinfo(&sdi->sdi_obdinfo, node) != 0) {
|
|
free(sdi, M_DEVBUF);
|
|
return (NULL);
|
|
}
|
|
resource_list_init(&sdi->sdi_rl);
|
|
slot = -1;
|
|
nreg = OF_getprop_alloc(node, "reg", sizeof(*reg), (void **)®);
|
|
if (nreg == -1) {
|
|
if (sdi->sdi_obdinfo.obd_type == NULL ||
|
|
strcmp(sdi->sdi_obdinfo.obd_type, "hierarchical") != 0) {
|
|
device_printf(dev, "<%s>: incomplete\n",
|
|
sdi->sdi_obdinfo.obd_name);
|
|
goto fail;
|
|
}
|
|
} else {
|
|
for (i = 0; i < nreg; i++) {
|
|
base = reg[i].sbr_offset;
|
|
if (SBUS_ABS(base)) {
|
|
rslot = SBUS_ABS_TO_SLOT(base);
|
|
base = SBUS_ABS_TO_OFFSET(base);
|
|
} else
|
|
rslot = reg[i].sbr_slot;
|
|
if (slot != -1 && slot != rslot) {
|
|
device_printf(dev, "<%s>: multiple slots\n",
|
|
sdi->sdi_obdinfo.obd_name);
|
|
free(reg, M_OFWPROP);
|
|
goto fail;
|
|
}
|
|
slot = rslot;
|
|
|
|
resource_list_add(&sdi->sdi_rl, SYS_RES_MEMORY, i,
|
|
base, base + reg[i].sbr_size, reg[i].sbr_size);
|
|
}
|
|
free(reg, M_OFWPROP);
|
|
}
|
|
sdi->sdi_slot = slot;
|
|
|
|
/*
|
|
* The `interrupts' property contains the SBus interrupt level.
|
|
*/
|
|
nintr = OF_getprop_alloc(node, "interrupts", sizeof(*intr),
|
|
(void **)&intr);
|
|
if (nintr != -1) {
|
|
for (i = 0; i < nintr; i++) {
|
|
iv = intr[i];
|
|
/*
|
|
* SBus card devices need the slot number encoded into
|
|
* the vector as this is generally not done.
|
|
*/
|
|
if ((iv & INTMAP_OBIO_MASK) == 0)
|
|
iv |= slot << 3;
|
|
/* Set the ign as appropriate. */
|
|
iv |= sc->sc_ign << INTMAP_IGN_SHIFT;
|
|
resource_list_add(&sdi->sdi_rl, SYS_RES_IRQ, i,
|
|
iv, iv, 1);
|
|
}
|
|
free(intr, M_OFWPROP);
|
|
}
|
|
if (OF_getprop(node, "burst-sizes", &sdi->sdi_burstsz,
|
|
sizeof(sdi->sdi_burstsz)) == -1)
|
|
sdi->sdi_burstsz = sc->sc_burst;
|
|
else
|
|
sdi->sdi_burstsz &= sc->sc_burst;
|
|
if (OF_getprop(node, "clock-frequency", &sdi->sdi_clockfreq,
|
|
sizeof(sdi->sdi_clockfreq)) == -1)
|
|
sdi->sdi_clockfreq = sc->sc_clockfreq;
|
|
|
|
return (sdi);
|
|
|
|
fail:
|
|
sbus_destroy_dinfo(sdi);
|
|
return (NULL);
|
|
}
|
|
|
|
static void
|
|
sbus_destroy_dinfo(struct sbus_devinfo *dinfo)
|
|
{
|
|
|
|
resource_list_free(&dinfo->sdi_rl);
|
|
ofw_bus_gen_destroy_devinfo(&dinfo->sdi_obdinfo);
|
|
free(dinfo, M_DEVBUF);
|
|
}
|
|
|
|
static int
|
|
sbus_print_child(device_t dev, device_t child)
|
|
{
|
|
int rv;
|
|
|
|
rv = bus_print_child_header(dev, child);
|
|
rv += sbus_print_res(device_get_ivars(child));
|
|
rv += bus_print_child_footer(dev, child);
|
|
return (rv);
|
|
}
|
|
|
|
static void
|
|
sbus_probe_nomatch(device_t dev, device_t child)
|
|
{
|
|
const char *type;
|
|
|
|
device_printf(dev, "<%s>", ofw_bus_get_name(child));
|
|
sbus_print_res(device_get_ivars(child));
|
|
type = ofw_bus_get_type(child);
|
|
printf(" type %s (no driver attached)\n",
|
|
type != NULL ? type : "unknown");
|
|
}
|
|
|
|
static int
|
|
sbus_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
|
|
{
|
|
struct sbus_softc *sc;
|
|
struct sbus_devinfo *dinfo;
|
|
|
|
sc = device_get_softc(dev);
|
|
if ((dinfo = device_get_ivars(child)) == NULL)
|
|
return (ENOENT);
|
|
switch (which) {
|
|
case SBUS_IVAR_BURSTSZ:
|
|
*result = dinfo->sdi_burstsz;
|
|
break;
|
|
case SBUS_IVAR_CLOCKFREQ:
|
|
*result = dinfo->sdi_clockfreq;
|
|
break;
|
|
case SBUS_IVAR_IGN:
|
|
*result = sc->sc_ign;
|
|
break;
|
|
case SBUS_IVAR_SLOT:
|
|
*result = dinfo->sdi_slot;
|
|
break;
|
|
default:
|
|
return (ENOENT);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
static struct resource_list *
|
|
sbus_get_resource_list(device_t dev, device_t child)
|
|
{
|
|
struct sbus_devinfo *sdi;
|
|
|
|
sdi = device_get_ivars(child);
|
|
return (&sdi->sdi_rl);
|
|
}
|
|
|
|
static int
|
|
sbus_filter_stub(void *arg)
|
|
{
|
|
struct sbus_clr *scl;
|
|
int res;
|
|
|
|
scl = (struct sbus_clr *)arg;
|
|
if (scl->scl_filter != NULL) {
|
|
res = scl->scl_filter(scl->scl_arg);
|
|
SYSIO_WRITE8(scl->scl_sc, scl->scl_clr, 0);
|
|
} else
|
|
res = FILTER_SCHEDULE_THREAD;
|
|
return (res);
|
|
}
|
|
|
|
static void
|
|
sbus_intr_stub(void *arg)
|
|
{
|
|
struct sbus_clr *scl;
|
|
|
|
scl = (struct sbus_clr *)arg;
|
|
scl->scl_handler(scl->scl_arg);
|
|
if (scl->scl_filter == NULL)
|
|
SYSIO_WRITE8(scl->scl_sc, scl->scl_clr, 0);
|
|
}
|
|
|
|
static int
|
|
sbus_setup_intr(device_t dev, device_t child, struct resource *ires, int flags,
|
|
driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
|
|
{
|
|
struct sbus_softc *sc;
|
|
struct sbus_clr *scl;
|
|
bus_addr_t intrmapptr, intrclrptr, intrptr;
|
|
u_int64_t intrmap;
|
|
u_int32_t inr, slot;
|
|
int error, i;
|
|
long vec;
|
|
|
|
if (filt != NULL && intr != NULL)
|
|
return (EINVAL);
|
|
sc = device_get_softc(dev);
|
|
scl = (struct sbus_clr *)malloc(sizeof(*scl), M_DEVBUF, M_NOWAIT);
|
|
if (scl == NULL)
|
|
return (ENOMEM);
|
|
intrptr = intrmapptr = intrclrptr = 0;
|
|
intrmap = 0;
|
|
vec = rman_get_start(ires);
|
|
inr = INTVEC(vec);
|
|
if ((inr & INTMAP_OBIO_MASK) == 0) {
|
|
/*
|
|
* We're in an SBus slot, register the map and clear
|
|
* intr registers.
|
|
*/
|
|
slot = INTSLOT(vec);
|
|
intrmapptr = SBR_SLOT0_INT_MAP + slot * 8;
|
|
intrclrptr = SBR_SLOT0_INT_CLR +
|
|
(slot * 8 * 8) + (INTPRI(vec) * 8);
|
|
/* Enable the interrupt, insert IGN. */
|
|
intrmap = inr | (sc->sc_ign << INTMAP_IGN_SHIFT);
|
|
} else {
|
|
intrptr = SBR_SCSI_INT_MAP;
|
|
/* Insert IGN */
|
|
inr |= sc->sc_ign << INTMAP_IGN_SHIFT;
|
|
for (i = 0; intrptr <= SBR_RESERVED_INT_MAP &&
|
|
INTVEC(intrmap = SYSIO_READ8(sc, intrptr)) != inr;
|
|
intrptr += 8, i++)
|
|
;
|
|
if (INTVEC(intrmap) == inr) {
|
|
/* Register the map and clear intr registers */
|
|
intrmapptr = intrptr;
|
|
intrclrptr = SBR_SCSI_INT_CLR + i * 8;
|
|
/* Enable the interrupt */
|
|
} else
|
|
panic("%s: IRQ not found!", __func__);
|
|
}
|
|
|
|
scl->scl_sc = sc;
|
|
scl->scl_arg = arg;
|
|
scl->scl_filter = filt;
|
|
scl->scl_handler = intr;
|
|
scl->scl_clr = intrclrptr;
|
|
/* Disable the interrupt while we fiddle with it */
|
|
SYSIO_WRITE8(sc, intrmapptr, intrmap & ~INTMAP_V);
|
|
error = BUS_SETUP_INTR(device_get_parent(dev), child, ires, flags,
|
|
sbus_filter_stub, sbus_intr_stub, scl, cookiep);
|
|
if (error != 0) {
|
|
free(scl, M_DEVBUF);
|
|
return (error);
|
|
}
|
|
scl->scl_cookie = *cookiep;
|
|
*cookiep = scl;
|
|
|
|
/*
|
|
* Clear the interrupt, it might have been triggered before it was
|
|
* set up.
|
|
*/
|
|
SYSIO_WRITE8(sc, intrclrptr, 0);
|
|
/*
|
|
* Enable the interrupt and program the target module now we have the
|
|
* handler installed.
|
|
*/
|
|
SYSIO_WRITE8(sc, intrmapptr, INTMAP_ENABLE(intrmap, PCPU_GET(mid)));
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
sbus_teardown_intr(device_t dev, device_t child, struct resource *vec,
|
|
void *cookie)
|
|
{
|
|
struct sbus_clr *scl;
|
|
int error;
|
|
|
|
scl = (struct sbus_clr *)cookie;
|
|
error = BUS_TEARDOWN_INTR(device_get_parent(dev), child, vec,
|
|
scl->scl_cookie);
|
|
/*
|
|
* Don't disable the interrupt for now, so that stray interrupts get
|
|
* detected...
|
|
*/
|
|
if (error != 0)
|
|
free(scl, M_DEVBUF);
|
|
return (error);
|
|
}
|
|
|
|
static struct resource *
|
|
sbus_alloc_resource(device_t bus, device_t child, int type, int *rid,
|
|
u_long start, u_long end, u_long count, u_int flags)
|
|
{
|
|
struct sbus_softc *sc;
|
|
struct rman *rm;
|
|
struct resource *rv;
|
|
struct resource_list *rl;
|
|
struct resource_list_entry *rle;
|
|
device_t schild;
|
|
bus_space_handle_t bh;
|
|
bus_addr_t toffs;
|
|
bus_size_t tend;
|
|
int i, slot;
|
|
int isdefault, needactivate, passthrough;
|
|
|
|
isdefault = (start == 0UL && end == ~0UL);
|
|
needactivate = flags & RF_ACTIVE;
|
|
passthrough = (device_get_parent(child) != bus);
|
|
rle = NULL;
|
|
sc = device_get_softc(bus);
|
|
rl = BUS_GET_RESOURCE_LIST(bus, child);
|
|
switch (type) {
|
|
case SYS_RES_IRQ:
|
|
return (resource_list_alloc(rl, bus, child, type, rid, start,
|
|
end, count, flags));
|
|
case SYS_RES_MEMORY:
|
|
if (!passthrough) {
|
|
rle = resource_list_find(rl, type, *rid);
|
|
if (rle == NULL)
|
|
return (NULL);
|
|
if (rle->res != NULL)
|
|
panic("%s: resource entry is busy", __func__);
|
|
if (isdefault) {
|
|
start = rle->start;
|
|
count = ulmax(count, rle->count);
|
|
end = ulmax(rle->end, start + count - 1);
|
|
}
|
|
}
|
|
rm = NULL;
|
|
bh = toffs = tend = 0;
|
|
schild = child;
|
|
while (device_get_parent(schild) != bus)
|
|
schild = device_get_parent(child);
|
|
slot = sbus_get_slot(schild);
|
|
for (i = 0; i < sc->sc_nrange; i++) {
|
|
if (sc->sc_rd[i].rd_slot != slot ||
|
|
start < sc->sc_rd[i].rd_coffset ||
|
|
start > sc->sc_rd[i].rd_cend)
|
|
continue;
|
|
/* Disallow cross-range allocations. */
|
|
if (end > sc->sc_rd[i].rd_cend)
|
|
return (NULL);
|
|
/* We've found the connection to the parent bus */
|
|
toffs = start - sc->sc_rd[i].rd_coffset;
|
|
tend = end - sc->sc_rd[i].rd_coffset;
|
|
rm = &sc->sc_rd[i].rd_rman;
|
|
bh = sc->sc_rd[i].rd_bushandle;
|
|
break;
|
|
}
|
|
if (rm == NULL)
|
|
return (NULL);
|
|
flags &= ~RF_ACTIVE;
|
|
rv = rman_reserve_resource(rm, toffs, tend, count, flags,
|
|
child);
|
|
if (rv == NULL)
|
|
return (NULL);
|
|
rman_set_rid(rv, *rid);
|
|
rman_set_bustag(rv, sc->sc_cbustag);
|
|
rman_set_bushandle(rv, bh + rman_get_start(rv));
|
|
if (needactivate) {
|
|
if (bus_activate_resource(child, type, *rid, rv)) {
|
|
rman_release_resource(rv);
|
|
return (NULL);
|
|
}
|
|
}
|
|
if (!passthrough)
|
|
rle->res = rv;
|
|
return (rv);
|
|
default:
|
|
return (NULL);
|
|
}
|
|
}
|
|
|
|
static int
|
|
sbus_activate_resource(device_t bus, device_t child, int type, int rid,
|
|
struct resource *r)
|
|
{
|
|
void *p;
|
|
int error;
|
|
|
|
if (type == SYS_RES_IRQ) {
|
|
return (BUS_ACTIVATE_RESOURCE(device_get_parent(bus),
|
|
child, type, rid, r));
|
|
}
|
|
if (type == SYS_RES_MEMORY) {
|
|
/*
|
|
* Need to memory-map the device space, as some drivers depend
|
|
* on the virtual address being set and useable.
|
|
*/
|
|
error = sparc64_bus_mem_map(rman_get_bustag(r),
|
|
rman_get_bushandle(r), rman_get_size(r), 0, 0, &p);
|
|
if (error != 0)
|
|
return (error);
|
|
rman_set_virtual(r, p);
|
|
}
|
|
return (rman_activate_resource(r));
|
|
}
|
|
|
|
static int
|
|
sbus_deactivate_resource(device_t bus, device_t child, int type, int rid,
|
|
struct resource *r)
|
|
{
|
|
|
|
if (type == SYS_RES_IRQ) {
|
|
return (BUS_DEACTIVATE_RESOURCE(device_get_parent(bus),
|
|
child, type, rid, r));
|
|
}
|
|
if (type == SYS_RES_MEMORY) {
|
|
sparc64_bus_mem_unmap(rman_get_virtual(r), rman_get_size(r));
|
|
rman_set_virtual(r, NULL);
|
|
}
|
|
return (rman_deactivate_resource(r));
|
|
}
|
|
|
|
static int
|
|
sbus_release_resource(device_t bus, device_t child, int type, int rid,
|
|
struct resource *r)
|
|
{
|
|
struct resource_list *rl;
|
|
struct resource_list_entry *rle;
|
|
int error, passthrough;
|
|
|
|
passthrough = (device_get_parent(child) != bus);
|
|
rl = BUS_GET_RESOURCE_LIST(bus, child);
|
|
if (type == SYS_RES_IRQ)
|
|
return (resource_list_release(rl, bus, child, type, rid, r));
|
|
if ((rman_get_flags(r) & RF_ACTIVE) != 0) {
|
|
error = bus_deactivate_resource(child, type, rid, r);
|
|
if (error != 0)
|
|
return (error);
|
|
}
|
|
error = rman_release_resource(r);
|
|
if (error != 0 || passthrough)
|
|
return (error);
|
|
rle = resource_list_find(rl, type, rid);
|
|
if (rle == NULL)
|
|
panic("%s: cannot find resource", __func__);
|
|
if (rle->res == NULL)
|
|
panic("%s: resource entry is not busy", __func__);
|
|
rle->res = NULL;
|
|
return (0);
|
|
}
|
|
|
|
static bus_dma_tag_t
|
|
sbus_get_dma_tag(device_t bus, device_t child)
|
|
{
|
|
struct sbus_softc *sc;
|
|
|
|
sc = device_get_softc(bus);
|
|
return (sc->sc_cdmatag);
|
|
}
|
|
|
|
static const struct ofw_bus_devinfo *
|
|
sbus_get_devinfo(device_t bus, device_t child)
|
|
{
|
|
struct sbus_devinfo *sdi;
|
|
|
|
sdi = device_get_ivars(child);
|
|
return (&sdi->sdi_obdinfo);
|
|
}
|
|
|
|
/*
|
|
* Handle an overtemp situation.
|
|
*
|
|
* SPARCs have temperature sensors which generate interrupts
|
|
* if the machine's temperature exceeds a certain threshold.
|
|
* This handles the interrupt and powers off the machine.
|
|
* The same needs to be done to PCI controller drivers.
|
|
*/
|
|
static void
|
|
sbus_overtemp(void *arg)
|
|
{
|
|
|
|
printf("DANGER: OVER TEMPERATURE detected\nShutting down NOW.\n");
|
|
shutdown_nice(RB_POWEROFF);
|
|
}
|
|
|
|
/* Try to shut down in time in case of power failure. */
|
|
static void
|
|
sbus_pwrfail(void *arg)
|
|
{
|
|
|
|
printf("Power failure detected\nShutting down NOW.\n");
|
|
shutdown_nice(0);
|
|
}
|
|
|
|
static bus_space_tag_t
|
|
sbus_alloc_bustag(struct sbus_softc *sc)
|
|
{
|
|
bus_space_tag_t sbt;
|
|
|
|
sbt = (bus_space_tag_t)malloc(sizeof(struct bus_space_tag), M_DEVBUF,
|
|
M_NOWAIT | M_ZERO);
|
|
if (sbt == NULL)
|
|
panic("%s: out of memory", __func__);
|
|
|
|
sbt->bst_cookie = sc;
|
|
sbt->bst_parent = rman_get_bustag(sc->sc_sysio_res);
|
|
sbt->bst_type = SBUS_BUS_SPACE;
|
|
return (sbt);
|
|
}
|
|
|
|
static int
|
|
sbus_print_res(struct sbus_devinfo *sdi)
|
|
{
|
|
int rv;
|
|
|
|
rv = 0;
|
|
rv += resource_list_print_type(&sdi->sdi_rl, "mem", SYS_RES_MEMORY,
|
|
"%#lx");
|
|
rv += resource_list_print_type(&sdi->sdi_rl, "irq", SYS_RES_IRQ,
|
|
"%ld");
|
|
return (rv);
|
|
}
|