Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F107056568
D43441.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
9 KB
Referenced Files
None
Subscribers
None
D43441.diff
View Options
diff --git a/sys/dev/ofw/ofw_pcib.c b/sys/dev/ofw/ofw_pcib.c
--- a/sys/dev/ofw/ofw_pcib.c
+++ b/sys/dev/ofw/ofw_pcib.c
@@ -64,6 +64,7 @@
/*
* bus interface.
*/
+static struct rman *ofw_pcib_get_rman(device_t, int, u_int);
static struct resource * ofw_pcib_alloc_resource(device_t, device_t,
int, int *, rman_res_t, rman_res_t, rman_res_t, u_int);
static int ofw_pcib_release_resource(device_t, device_t, int, int,
@@ -74,6 +75,10 @@
struct resource *);
static int ofw_pcib_adjust_resource(device_t, device_t, int,
struct resource *, rman_res_t, rman_res_t);
+static int ofw_pcib_map_resource(device_t, device_t, int, struct resource *,
+ struct resource_map_request *, struct resource_map *);
+static int ofw_pcib_unmap_resource(device_t, device_t, int, struct resource *,
+ struct resource_map *);
static int ofw_pcib_translate_resource(device_t bus, int type,
rman_res_t start, rman_res_t *newstart);
@@ -95,7 +100,6 @@
* local methods
*/
static int ofw_pcib_fill_ranges(phandle_t, struct ofw_pci_range *);
-static struct rman *ofw_pcib_get_rman(struct ofw_pci_softc *, int, u_int);
/*
* Driver methods.
@@ -110,11 +114,14 @@
DEVMETHOD(bus_write_ivar, ofw_pcib_write_ivar),
DEVMETHOD(bus_setup_intr, bus_generic_setup_intr),
DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr),
+ DEVMETHOD(bus_get_rman, ofw_pcib_get_rman),
DEVMETHOD(bus_alloc_resource, ofw_pcib_alloc_resource),
DEVMETHOD(bus_release_resource, ofw_pcib_release_resource),
DEVMETHOD(bus_activate_resource, ofw_pcib_activate_resource),
DEVMETHOD(bus_deactivate_resource, ofw_pcib_deactivate_resource),
DEVMETHOD(bus_adjust_resource, ofw_pcib_adjust_resource),
+ DEVMETHOD(bus_map_resource, ofw_pcib_map_resource),
+ DEVMETHOD(bus_unmap_resource, ofw_pcib_unmap_resource),
DEVMETHOD(bus_translate_resource, ofw_pcib_translate_resource),
#ifdef __powerpc__
DEVMETHOD(bus_get_bus_tag, ofw_pcib_bus_get_bus_tag),
@@ -417,80 +424,50 @@
ofw_pcib_alloc_resource(device_t bus, device_t child, int type, int *rid,
rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
{
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
struct ofw_pci_softc *sc;
- struct resource *rv;
- struct rman *rm;
- int needactivate;
-
- needactivate = flags & RF_ACTIVE;
- flags &= ~RF_ACTIVE;
sc = device_get_softc(bus);
-
+#endif
+ switch (type) {
#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
- if (type == PCI_RES_BUS) {
- return (pci_domain_alloc_bus(sc->sc_pci_domain, child, rid,
- start, end, count, flags | needactivate));
- }
+ case PCI_RES_BUS:
+ return (pci_domain_alloc_bus(sc->sc_pci_domain, child, rid,
+ start, end, count, flags));
#endif
-
- rm = ofw_pcib_get_rman(sc, type, flags);
- if (rm == NULL) {
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ return (bus_generic_rman_alloc_resource(bus, child, type, rid,
+ start, end, count, flags));
+ default:
return (bus_generic_alloc_resource(bus, child, type, rid,
- start, end, count, flags | needactivate));
- }
-
- rv = rman_reserve_resource(rm, start, end, count, flags, child);
- if (rv == NULL) {
- device_printf(bus, "failed to reserve resource for %s\n",
- device_get_nameunit(child));
- return (NULL);
+ start, end, count, flags));
}
-
- rman_set_rid(rv, *rid);
-
- if (needactivate) {
- if (bus_activate_resource(child, type, *rid, rv) != 0) {
- device_printf(bus,
- "failed to activate resource for %s\n",
- device_get_nameunit(child));
- rman_release_resource(rv);
- return (NULL);
- }
- }
-
- return (rv);
}
static int
ofw_pcib_release_resource(device_t bus, device_t child, int type, int rid,
struct resource *res)
{
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
struct ofw_pci_softc *sc;
- struct rman *rm;
- int error;
sc = device_get_softc(bus);
-
+#endif
+ switch (type) {
#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
- if (type == PCI_RES_BUS)
+ case PCI_RES_BUS:
return (pci_domain_release_bus(sc->sc_pci_domain, child, rid,
res));
#endif
-
- rm = ofw_pcib_get_rman(sc, type, rman_get_flags(res));
- if (rm == NULL) {
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ return (bus_generic_rman_release_resource(bus, child, type, rid,
+ res));
+ default:
return (bus_generic_release_resource(bus, child, type, rid,
res));
}
- KASSERT(rman_is_region_manager(res, rm), ("rman mismatch"));
-
- if (rman_get_flags(res) & RF_ACTIVE) {
- error = bus_deactivate_resource(child, type, rid, res);
- if (error != 0)
- return (error);
- }
- return (rman_release_resource(res));
}
static int
@@ -536,26 +513,59 @@
ofw_pcib_activate_resource(device_t bus, device_t child, int type, int rid,
struct resource *res)
{
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
struct ofw_pci_softc *sc;
- bus_space_handle_t handle;
- bus_space_tag_t tag;
- struct ofw_pci_range *rp;
- vm_paddr_t start;
- int space;
- int rv;
sc = device_get_softc(bus);
-
- if (type != SYS_RES_IOPORT && type != SYS_RES_MEMORY) {
+#endif
+ switch (type) {
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
+ case PCI_RES_BUS:
+ return (pci_domain_activate_bus(sc->sc_pci_domain, child, rid,
+ res));
+#endif
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ return (bus_generic_rman_activate_resource(bus, child, type, rid,
+ res));
+ default:
return (bus_generic_activate_resource(bus, child, type, rid,
res));
}
+}
+
+static int
+ofw_pcib_map_resource(device_t dev, device_t child, int type,
+ struct resource *r, struct resource_map_request *argsp,
+ struct resource_map *map)
+{
+ struct resource_map_request args;
+ struct ofw_pci_softc *sc;
+ struct ofw_pci_range *rp;
+ rman_res_t length, start;
+ int error, space;
+
+ /* Resources must be active to be mapped. */
+ if (!(rman_get_flags(r) & RF_ACTIVE))
+ return (ENXIO);
+
+ switch (type) {
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ break;
+ default:
+ return (EINVAL);
+ }
- start = (vm_paddr_t)rman_get_start(res);
+ resource_init_map_request(&args);
+ error = resource_validate_map_request(r, argsp, &args, &start, &length);
+ if (error)
+ return (error);
/*
* Map this through the ranges list
*/
+ sc = device_get_softc(dev);
for (rp = sc->sc_range; rp < sc->sc_range + sc->sc_nrange &&
rp->pci_hi != 0; rp++) {
if (start < rp->pci || start >= rp->pci + rp->size)
@@ -571,7 +581,7 @@
break;
default:
space = -1;
- }
+ }
if (type == space) {
start += (rp->host - rp->pci);
@@ -580,23 +590,35 @@
}
if (bootverbose)
- printf("ofw_pci mapdev: start %jx, len %jd\n",
- (rman_res_t)start, rman_get_size(res));
+ printf("ofw_pci mapdev: start %jx, len %jd\n", start, length);
- tag = BUS_GET_BUS_TAG(child, child);
- if (tag == NULL)
+ map->r_bustag = BUS_GET_BUS_TAG(child, child);
+ if (map->r_bustag == NULL)
return (ENOMEM);
- rman_set_bustag(res, tag);
- rv = bus_space_map(tag, start,
- rman_get_size(res), 0, &handle);
- if (rv != 0)
- return (ENOMEM);
+ error = bus_space_map(map->r_bustag, start, length, 0,
+ &map->r_bushandle);
+ if (error != 0)
+ return (error);
- rman_set_bushandle(res, handle);
- rman_set_virtual(res, (void *)handle); /* XXX for powerpc only ? */
+ /* XXX for powerpc only? */
+ map->r_vaddr = (void *)map->r_bushandle;
+ map->r_size = length;
+ return (0);
+}
- return (rman_activate_resource(res));
+static int
+ofw_pcib_unmap_resource(device_t dev, device_t child, int type,
+ struct resource *r, struct resource_map *map)
+{
+ switch (type) {
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ bus_space_unmap(map->r_bustag, map->r_bushandle, map->r_size);
+ return (0);
+ default:
+ return (EINVAL);
+ }
}
#ifdef __powerpc__
@@ -612,43 +634,50 @@
ofw_pcib_deactivate_resource(device_t bus, device_t child, int type, int rid,
struct resource *res)
{
- vm_size_t psize;
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
+ struct ofw_pci_softc *sc;
- if (type != SYS_RES_IOPORT && type != SYS_RES_MEMORY) {
+ sc = device_get_softc(bus);
+#endif
+ switch (type) {
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
+ case PCI_RES_BUS:
+ return (pci_domain_deactivate_bus(sc->sc_pci_domain, child, rid,
+ res));
+#endif
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ return (bus_generic_rman_deactivate_resource(bus, child, type,
+ rid, res));
+ default:
return (bus_generic_deactivate_resource(bus, child, type, rid,
res));
}
-
- psize = rman_get_size(res);
- pmap_unmapdev(rman_get_virtual(res), psize);
-
- return (rman_deactivate_resource(res));
}
static int
ofw_pcib_adjust_resource(device_t bus, device_t child, int type,
struct resource *res, rman_res_t start, rman_res_t end)
{
- struct rman *rm;
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
struct ofw_pci_softc *sc;
sc = device_get_softc(bus);
+#endif
+ switch (type) {
#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
- if (type == PCI_RES_BUS)
+ case PCI_RES_BUS:
return (pci_domain_adjust_bus(sc->sc_pci_domain, child, res,
start, end));
#endif
-
- rm = ofw_pcib_get_rman(sc, type, rman_get_flags(res));
- if (rm == NULL) {
+ case SYS_RES_MEMORY:
+ case SYS_RES_IOPORT:
+ return (bus_generic_rman_adjust_resource(bus, child, type, res,
+ start, end));
+ default:
return (bus_generic_adjust_resource(bus, child, type, res,
start, end));
}
- KASSERT(rman_is_region_manager(res, rm), ("rman mismatch"));
- KASSERT(!(rman_get_flags(res) & RF_ACTIVE),
- ("active resources cannot be adjusted"));
-
- return (rman_adjust_resource(res, start, end));
}
static phandle_t
@@ -710,9 +739,11 @@
}
static struct rman *
-ofw_pcib_get_rman(struct ofw_pci_softc *sc, int type, u_int flags)
+ofw_pcib_get_rman(device_t bus, int type, u_int flags)
{
+ struct ofw_pci_softc *sc;
+ sc = device_get_softc(bus);
switch (type) {
case SYS_RES_IOPORT:
return (&sc->sc_io_rman);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jan 10, 11:14 AM (5 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15742055
Default Alt Text
D43441.diff (9 KB)
Attached To
Mode
D43441: ofw_pcib: Use bus_generic_rman_*
Attached
Detach File
Event Timeline
Log In to Comment