]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Add new bus methods for mapping resources.
authorjhb <jhb@FreeBSD.org>
Fri, 20 May 2016 17:57:47 +0000 (17:57 +0000)
committerjhb <jhb@FreeBSD.org>
Fri, 20 May 2016 17:57:47 +0000 (17:57 +0000)
commitb4b2ae565200af6f37fec26de490a48783880ce4
tree3aa16fa17a986984dd375052ea627ea43a7d21dd
parent6f2769857a743d51ed1025cabba5e6b4c769fcfe
Add new bus methods for mapping resources.

Add a pair of bus methods that can be used to "map" resources for direct
CPU access using bus_space(9).  bus_map_resource() creates a mapping and
bus_unmap_resource() releases a previously created mapping.  Mappings are
described by 'struct resource_map' object.  Pointers to these objects can
be passed as the first argument to the bus_space wrapper API used for bus
resources.

Drivers that wish to map all of a resource using default settings
(for example, using uncacheable memory attributes) do not need to change.
However, drivers that wish to use non-default settings can now do so
without jumping through hoops.

First, an RF_UNMAPPED flag is added to request that a resource is not
implicitly mapped with the default settings when it is activated.  This
permits other activation steps (such as enabling I/O or memory decoding
in a device's PCI command register) to be taken without creating a
mapping.  Right now the AGP drivers don't set RF_ACTIVE to avoid using
up a large amount of KVA to map the AGP aperture on 32-bit platforms.
Once RF_UNMAPPED is supported on all platforms that support AGP this
can be changed to using RF_UNMAPPED with RF_ACTIVE instead.

Second, bus_map_resource accepts an optional structure that defines
additional settings for a given mapping.

For example, a driver can now request to map only a subset of a resource
instead of the entire range.  The AGP driver could also use this to only
map the first page of the aperture (IIRC, it calls pmap_mapdev() directly
to map the first page currently).  I will also eventually change the
PCI-PCI bridge driver to request mappings of the subset of the I/O window
resource on its parent side to create mappings for child devices rather
than passing child resources directly up to nexus to be mapped.  This
also permits bridges that do address translation to request suitable
mappings from a resource on the "upper" side of the bus when mapping
resources on the "lower" side of the bus.

Another attribute that can be specified is an alternate memory attribute
for memory-mapped resources.  This can be used to request a
Write-Combining mapping of a PCI BAR in an MI fashion.  (Currently the
drivers that do this call pmap_change_attr() directly for x86 only.)

Note that this commit only adds the MI framework.  Each platform needs
to add support for handling RF_UNMAPPED and thew new
bus_map/unmap_resource methods.  Generally speaking, any drivers that
are calling rman_set_bustag() and rman_set_bushandle() need to be
updated.

Discussed on: arch
Reviewed by: cem
Differential Revision: https://reviews.freebsd.org/D5237
12 files changed:
share/man/man9/Makefile
share/man/man9/bus_activate_resource.9
share/man/man9/bus_alloc_resource.9
share/man/man9/bus_map_resource.9 [new file with mode: 0644]
share/man/man9/rman.9
sys/kern/bus_if.m
sys/kern/subr_bus.c
sys/kern/subr_rman.c
sys/sparc64/include/vm.h
sys/sys/bus.h
sys/sys/rman.h
sys/vm/vm.h