2013-10-23 20:00:14 +00:00
|
|
|
/*-
|
|
|
|
* Copyright 1998 Massachusetts Institute of Technology
|
|
|
|
* Copyright 2001 by Thomas Moestl <tmm@FreeBSD.org>.
|
|
|
|
* Copyright 2006 by Marius Strobl <marius@FreeBSD.org>.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
|
|
* its documentation for any purpose and without fee is hereby
|
|
|
|
* granted, provided that both the above copyright notice and this
|
|
|
|
* permission notice appear in all copies, that both the above
|
|
|
|
* copyright notice and this permission notice appear in all
|
|
|
|
* supporting documentation, and that the name of M.I.T. not be used
|
|
|
|
* in advertising or publicity pertaining to distribution of the
|
|
|
|
* software without specific, written prior permission. M.I.T. makes
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied
|
|
|
|
* warranty.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
|
|
|
|
* ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
|
|
|
|
* SHALL M.I.T. 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: FreeBSD: src/sys/i386/i386/nexus.c,v 1.43 2001/02/09
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#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/rman.h>
|
2016-06-05 16:20:12 +00:00
|
|
|
#ifdef INTRNG
|
|
|
|
#include <sys/intr.h>
|
|
|
|
#endif
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/pmap.h>
|
|
|
|
|
|
|
|
#include <dev/ofw/ofw_bus.h>
|
|
|
|
#include <dev/ofw/ofw_bus_subr.h>
|
|
|
|
#include <dev/ofw/openfirm.h>
|
2015-03-27 23:10:15 +00:00
|
|
|
#include <dev/fdt/simplebus.h>
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/resource.h>
|
|
|
|
|
|
|
|
/*
|
2014-02-05 14:44:22 +00:00
|
|
|
* The ofwbus (which is a pseudo-bus actually) iterates over the nodes that
|
2013-10-23 20:00:14 +00:00
|
|
|
* hang from the Open Firmware root node and adds them as devices to this bus
|
|
|
|
* (except some special nodes which are excluded) so that drivers can be
|
|
|
|
* attached to them.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-02-05 14:44:22 +00:00
|
|
|
struct ofwbus_softc {
|
2015-03-27 23:10:15 +00:00
|
|
|
struct simplebus_softc simplebus_sc;
|
2014-02-05 14:44:22 +00:00
|
|
|
struct rman sc_intr_rman;
|
|
|
|
struct rman sc_mem_rman;
|
|
|
|
};
|
|
|
|
|
2015-05-05 11:13:16 +00:00
|
|
|
#ifndef __aarch64__
|
2014-02-05 14:44:22 +00:00
|
|
|
static device_identify_t ofwbus_identify;
|
2015-05-05 11:13:16 +00:00
|
|
|
#endif
|
2014-02-05 14:44:22 +00:00
|
|
|
static device_probe_t ofwbus_probe;
|
|
|
|
static device_attach_t ofwbus_attach;
|
|
|
|
static bus_alloc_resource_t ofwbus_alloc_resource;
|
|
|
|
static bus_adjust_resource_t ofwbus_adjust_resource;
|
|
|
|
static bus_release_resource_t ofwbus_release_resource;
|
|
|
|
|
|
|
|
static device_method_t ofwbus_methods[] = {
|
2013-10-23 20:00:14 +00:00
|
|
|
/* Device interface */
|
2015-05-05 11:13:16 +00:00
|
|
|
#ifndef __aarch64__
|
2014-02-05 14:44:22 +00:00
|
|
|
DEVMETHOD(device_identify, ofwbus_identify),
|
2015-05-05 11:13:16 +00:00
|
|
|
#endif
|
2014-02-05 14:44:22 +00:00
|
|
|
DEVMETHOD(device_probe, ofwbus_probe),
|
|
|
|
DEVMETHOD(device_attach, ofwbus_attach),
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
/* Bus interface */
|
2014-02-05 14:44:22 +00:00
|
|
|
DEVMETHOD(bus_alloc_resource, ofwbus_alloc_resource),
|
|
|
|
DEVMETHOD(bus_adjust_resource, ofwbus_adjust_resource),
|
|
|
|
DEVMETHOD(bus_release_resource, ofwbus_release_resource),
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
DEVMETHOD_END
|
|
|
|
};
|
|
|
|
|
2015-03-27 23:10:15 +00:00
|
|
|
DEFINE_CLASS_1(ofwbus, ofwbus_driver, ofwbus_methods,
|
|
|
|
sizeof(struct ofwbus_softc), simplebus_driver);
|
2014-02-05 14:44:22 +00:00
|
|
|
static devclass_t ofwbus_devclass;
|
2014-08-05 16:31:03 +00:00
|
|
|
EARLY_DRIVER_MODULE(ofwbus, nexus, ofwbus_driver, ofwbus_devclass, 0, 0,
|
2014-08-05 17:32:47 +00:00
|
|
|
BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
|
2014-02-05 14:44:22 +00:00
|
|
|
MODULE_VERSION(ofwbus, 1);
|
2013-10-23 20:00:14 +00:00
|
|
|
|
2015-05-05 11:13:16 +00:00
|
|
|
#ifndef __aarch64__
|
2014-02-05 14:44:22 +00:00
|
|
|
static void
|
|
|
|
ofwbus_identify(driver_t *driver, device_t parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Check if Open Firmware has been instantiated */
|
2014-05-11 18:22:05 +00:00
|
|
|
if (OF_peer(0) == 0)
|
2014-02-05 14:44:22 +00:00
|
|
|
return;
|
2015-03-27 23:10:15 +00:00
|
|
|
|
2014-02-05 14:44:22 +00:00
|
|
|
if (device_find_child(parent, "ofwbus", -1) == NULL)
|
|
|
|
BUS_ADD_CHILD(parent, 0, "ofwbus", -1);
|
|
|
|
}
|
2015-05-05 11:13:16 +00:00
|
|
|
#endif
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
static int
|
2014-02-05 14:44:22 +00:00
|
|
|
ofwbus_probe(device_t dev)
|
2013-10-23 20:00:14 +00:00
|
|
|
{
|
|
|
|
|
2015-05-05 11:13:16 +00:00
|
|
|
#ifdef __aarch64__
|
|
|
|
if (OF_peer(0) == 0)
|
|
|
|
return (ENXIO);
|
|
|
|
#endif
|
|
|
|
|
2014-02-05 14:44:22 +00:00
|
|
|
device_set_desc(dev, "Open Firmware Device Tree");
|
|
|
|
return (BUS_PROBE_NOWILDCARD);
|
2013-10-23 20:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-02-05 14:44:22 +00:00
|
|
|
ofwbus_attach(device_t dev)
|
2013-10-23 20:00:14 +00:00
|
|
|
{
|
2014-02-05 14:44:22 +00:00
|
|
|
struct ofwbus_softc *sc;
|
2013-10-23 20:00:14 +00:00
|
|
|
phandle_t node;
|
2015-03-27 23:10:15 +00:00
|
|
|
struct ofw_bus_devinfo obd;
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2013-10-24 21:49:23 +00:00
|
|
|
node = OF_peer(0);
|
|
|
|
|
2014-02-05 14:44:22 +00:00
|
|
|
/*
|
|
|
|
* If no Open Firmware, bail early
|
|
|
|
*/
|
|
|
|
if (node == -1)
|
|
|
|
return (ENXIO);
|
|
|
|
|
2015-03-27 23:10:15 +00:00
|
|
|
/*
|
|
|
|
* ofwbus bus starts on unamed node in FDT, so we cannot make
|
|
|
|
* ofw_bus_devinfo from it. Pass node to simplebus_init directly.
|
|
|
|
*/
|
|
|
|
simplebus_init(dev, node);
|
2013-10-24 21:49:23 +00:00
|
|
|
sc->sc_intr_rman.rm_type = RMAN_ARRAY;
|
|
|
|
sc->sc_intr_rman.rm_descr = "Interrupts";
|
|
|
|
sc->sc_mem_rman.rm_type = RMAN_ARRAY;
|
|
|
|
sc->sc_mem_rman.rm_descr = "Device Memory";
|
|
|
|
if (rman_init(&sc->sc_intr_rman) != 0 ||
|
|
|
|
rman_init(&sc->sc_mem_rman) != 0 ||
|
|
|
|
rman_manage_region(&sc->sc_intr_rman, 0, ~0) != 0 ||
|
|
|
|
rman_manage_region(&sc->sc_mem_rman, 0, BUS_SPACE_MAXADDR) != 0)
|
|
|
|
panic("%s: failed to set up rmans.", __func__);
|
2013-10-23 20:00:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow devices to identify.
|
|
|
|
*/
|
|
|
|
bus_generic_probe(dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now walk the OFW tree and attach top-level devices.
|
|
|
|
*/
|
|
|
|
for (node = OF_child(node); node > 0; node = OF_peer(node)) {
|
2015-03-27 23:10:15 +00:00
|
|
|
if (ofw_bus_gen_setup_devinfo(&obd, node) != 0)
|
2013-10-23 20:00:14 +00:00
|
|
|
continue;
|
2015-03-27 23:10:15 +00:00
|
|
|
simplebus_add_device(dev, node, 0, NULL, -1, NULL);
|
2013-10-23 20:00:14 +00:00
|
|
|
}
|
|
|
|
return (bus_generic_attach(dev));
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct resource *
|
2014-02-05 14:44:22 +00:00
|
|
|
ofwbus_alloc_resource(device_t bus, device_t child, int type, int *rid,
|
2016-01-27 02:23:54 +00:00
|
|
|
rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
|
2013-10-23 20:00:14 +00:00
|
|
|
{
|
2014-02-05 14:44:22 +00:00
|
|
|
struct ofwbus_softc *sc;
|
2013-10-23 20:00:14 +00:00
|
|
|
struct rman *rm;
|
|
|
|
struct resource *rv;
|
|
|
|
struct resource_list_entry *rle;
|
|
|
|
int isdefault, passthrough;
|
|
|
|
|
2016-02-20 01:32:58 +00:00
|
|
|
isdefault = RMAN_IS_DEFAULT_RANGE(start, end);
|
2013-10-23 20:00:14 +00:00
|
|
|
passthrough = (device_get_parent(child) != bus);
|
2013-10-24 21:49:23 +00:00
|
|
|
sc = device_get_softc(bus);
|
2013-10-23 20:00:14 +00:00
|
|
|
rle = NULL;
|
|
|
|
if (!passthrough && isdefault) {
|
|
|
|
rle = resource_list_find(BUS_GET_RESOURCE_LIST(bus, child),
|
|
|
|
type, *rid);
|
2015-03-27 23:10:15 +00:00
|
|
|
if (rle == NULL) {
|
|
|
|
if (bootverbose)
|
|
|
|
device_printf(bus, "no default resources for "
|
|
|
|
"rid = %d, type = %d\n", *rid, type);
|
2013-10-23 20:00:14 +00:00
|
|
|
return (NULL);
|
2015-03-27 23:10:15 +00:00
|
|
|
}
|
2013-10-23 20:00:14 +00:00
|
|
|
start = rle->start;
|
Use uintmax_t (typedef'd to rman_res_t type) for rman ranges.
On some architectures, u_long isn't large enough for resource definitions.
Particularly, powerpc and arm allow 36-bit (or larger) physical addresses, but
type `long' is only 32-bit. This extends rman's resources to uintmax_t. With
this change, any resource can feasibly be placed anywhere in physical memory
(within the constraints of the driver).
Why uintmax_t and not something machine dependent, or uint64_t? Though it's
possible for uintmax_t to grow, it's highly unlikely it will become 128-bit on
32-bit architectures. 64-bit architectures should have plenty of RAM to absorb
the increase on resource sizes if and when this occurs, and the number of
resources on memory-constrained systems should be sufficiently small as to not
pose a drastic overhead. That being said, uintmax_t was chosen for source
clarity. If it's specified as uint64_t, all printf()-like calls would either
need casts to uintmax_t, or be littered with PRI*64 macros. Casts to uintmax_t
aren't horrible, but it would also bake into the API for
resource_list_print_type() either a hidden assumption that entries get cast to
uintmax_t for printing, or these calls would need the PRI*64 macros. Since
source code is meant to be read more often than written, I chose the clearest
path of simply using uintmax_t.
Tested on a PowerPC p5020-based board, which places all device resources in
0xfxxxxxxxx, and has 8GB RAM.
Regression tested on qemu-system-i386
Regression tested on qemu-system-mips (malta profile)
Tested PAE and devinfo on virtualbox (live CD)
Special thanks to bz for his testing on ARM.
Reviewed By: bz, jhb (previous)
Relnotes: Yes
Sponsored by: Alex Perez/Inertial Computing
Differential Revision: https://reviews.freebsd.org/D4544
2016-03-18 01:28:41 +00:00
|
|
|
count = ummax(count, rle->count);
|
|
|
|
end = ummax(rle->end, start + count - 1);
|
2013-10-23 20:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case SYS_RES_IRQ:
|
|
|
|
rm = &sc->sc_intr_rman;
|
|
|
|
break;
|
|
|
|
case SYS_RES_MEMORY:
|
|
|
|
rm = &sc->sc_mem_rman;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = rman_reserve_resource(rm, start, end, count, flags & ~RF_ACTIVE,
|
|
|
|
child);
|
|
|
|
if (rv == NULL)
|
|
|
|
return (NULL);
|
|
|
|
rman_set_rid(rv, *rid);
|
|
|
|
|
|
|
|
if ((flags & RF_ACTIVE) != 0 && bus_activate_resource(child, type,
|
|
|
|
*rid, rv) != 0) {
|
|
|
|
rman_release_resource(rv);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!passthrough && rle != NULL) {
|
|
|
|
rle->res = rv;
|
|
|
|
rle->start = rman_get_start(rv);
|
|
|
|
rle->end = rman_get_end(rv);
|
|
|
|
rle->count = rle->end - rle->start + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-02-05 14:44:22 +00:00
|
|
|
ofwbus_adjust_resource(device_t bus, device_t child __unused, int type,
|
2016-01-27 02:23:54 +00:00
|
|
|
struct resource *r, rman_res_t start, rman_res_t end)
|
2013-10-23 20:00:14 +00:00
|
|
|
{
|
2014-02-05 14:44:22 +00:00
|
|
|
struct ofwbus_softc *sc;
|
2013-10-23 20:00:14 +00:00
|
|
|
struct rman *rm;
|
2014-02-05 14:44:22 +00:00
|
|
|
device_t ofwbus;
|
2013-10-23 20:00:14 +00:00
|
|
|
|
2014-02-05 14:44:22 +00:00
|
|
|
ofwbus = bus;
|
|
|
|
while (strcmp(device_get_name(device_get_parent(ofwbus)), "root") != 0)
|
|
|
|
ofwbus = device_get_parent(ofwbus);
|
|
|
|
sc = device_get_softc(ofwbus);
|
2013-10-23 20:00:14 +00:00
|
|
|
switch (type) {
|
|
|
|
case SYS_RES_IRQ:
|
|
|
|
rm = &sc->sc_intr_rman;
|
|
|
|
break;
|
|
|
|
case SYS_RES_MEMORY:
|
|
|
|
rm = &sc->sc_mem_rman;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
if (rm == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
if (rman_is_region_manager(r, rm) == 0)
|
|
|
|
return (EINVAL);
|
|
|
|
return (rman_adjust_resource(r, start, end));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-11-07 19:34:10 +00:00
|
|
|
ofwbus_release_resource(device_t bus, device_t child, int type,
|
2013-10-23 20:00:14 +00:00
|
|
|
int rid, struct resource *r)
|
|
|
|
{
|
2014-11-07 19:34:10 +00:00
|
|
|
struct resource_list_entry *rle;
|
2016-02-18 11:53:57 +00:00
|
|
|
int passthrough;
|
2013-10-23 20:00:14 +00:00
|
|
|
int error;
|
|
|
|
|
2016-02-18 11:53:57 +00:00
|
|
|
passthrough = (device_get_parent(child) != bus);
|
|
|
|
if (!passthrough) {
|
|
|
|
/* Clean resource list entry */
|
|
|
|
rle = resource_list_find(BUS_GET_RESOURCE_LIST(bus, child),
|
|
|
|
type, rid);
|
|
|
|
if (rle != NULL)
|
|
|
|
rle->res = NULL;
|
|
|
|
}
|
2014-11-07 19:34:10 +00:00
|
|
|
|
2013-10-23 20:00:14 +00:00
|
|
|
if ((rman_get_flags(r) & RF_ACTIVE) != 0) {
|
|
|
|
error = bus_deactivate_resource(child, type, rid, r);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
return (rman_release_resource(r));
|
|
|
|
}
|