BUS_SET_RESOURCE(9) | Kernel Developer's Manual | BUS_SET_RESOURCE(9) |
bus_set_resource
—
associate a definite resource with a given resource
ID
#include
<sys/param.h>
#include <sys/bus.h>
#include <machine/bus.h>
#include <sys/rman.h>
#include
<machine/resource.h>
int
bus_set_resource
(device_t dev,
int type, int rid,
rman_res_t start, rman_res_t
count);
The
bus_set_resource
()
function sets the start address of the resource type,
rid pair to be count long.
Typically, client drivers do not use this interface. Bus drivers, however,
often use it to set up the resources a client driver uses.
The arguments are as follows:
SYS_RES_IRQ
SYS_RES_DRQ
SYS_RES_IOPORT
SYS_RES_MEMORY
Zero is returned on success, otherwise an error is returned.
bus_alloc_resource(9), bus_get_resource(9), device(9), driver(9)
This manual page was written by Warner Losh <imp@FreeBSD.org>.
March 29, 2003 | Debian |