2005-01-06 23:35:40 +00:00
|
|
|
#-
|
2004-08-12 17:26:22 +00:00
|
|
|
# Copyright (c) 1998-2004 Doug Rabson
|
1998-06-14 13:53:12 +00:00
|
|
|
# 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.
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
#
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1998-06-14 13:53:12 +00:00
|
|
|
#
|
|
|
|
|
2010-09-13 08:34:20 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/systm.h>
|
2000-04-08 14:17:18 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @defgroup BUS bus - KObj methods for drivers of devices with children
|
|
|
|
* @brief A set of methods required device drivers that support
|
|
|
|
* child devices.
|
|
|
|
* @{
|
|
|
|
*/
|
1998-11-08 18:51:38 +00:00
|
|
|
INTERFACE bus;
|
1998-06-14 13:53:12 +00:00
|
|
|
|
1999-05-10 17:06:14 +00:00
|
|
|
#
|
|
|
|
# Default implementations of some methods.
|
|
|
|
#
|
|
|
|
CODE {
|
|
|
|
static struct resource *
|
|
|
|
null_alloc_resource(device_t dev, device_t child,
|
2002-07-21 03:28:43 +00:00
|
|
|
int type, int *rid, u_long start, u_long end,
|
|
|
|
u_long count, u_int flags)
|
1999-05-10 17:06:14 +00:00
|
|
|
{
|
2002-07-21 03:28:43 +00:00
|
|
|
return (0);
|
1999-05-10 17:06:14 +00:00
|
|
|
}
|
2010-06-14 07:10:37 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
null_remap_intr(device_t bus, device_t dev, u_int irq)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (dev != NULL)
|
|
|
|
return (BUS_REMAP_INTR(dev, NULL, irq));
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
2010-09-13 08:34:20 +00:00
|
|
|
|
|
|
|
static device_t
|
|
|
|
null_add_child(device_t bus, int order, const char *name,
|
|
|
|
int unit)
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("bus_add_child is not implemented");
|
|
|
|
}
|
1999-05-10 17:06:14 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Print a description of a child device
|
|
|
|
*
|
|
|
|
* This is called from system code which prints out a description of a
|
|
|
|
* device. It should describe the attachment that the child has with
|
|
|
|
* the parent. For instance the TurboLaser bus prints which node the
|
|
|
|
* device is attached to. See bus_generic_print_child() for more
|
|
|
|
* information.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose child is being printed
|
|
|
|
* @param _child the child device to describe
|
|
|
|
*
|
|
|
|
* @returns the number of characters output.
|
|
|
|
*/
|
1999-07-29 01:03:04 +00:00
|
|
|
METHOD int print_child {
|
2004-07-18 16:30:31 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
2003-03-25 04:32:52 +00:00
|
|
|
} DEFAULT bus_generic_print_child;
|
1998-06-14 13:53:12 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Print a notification about an unprobed child device.
|
|
|
|
*
|
|
|
|
* Called for each child device that did not succeed in probing for a
|
|
|
|
* driver.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose child was being probed
|
|
|
|
* @param _child the child device which failed to probe
|
|
|
|
*/
|
1999-07-11 13:42:37 +00:00
|
|
|
METHOD void probe_nomatch {
|
2004-07-18 16:30:31 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
1999-07-11 13:42:37 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Read the value of a bus-specific attribute of a device
|
|
|
|
*
|
|
|
|
* This method, along with BUS_WRITE_IVAR() manages a bus-specific set
|
|
|
|
* of instance variables of a child device. The intention is that
|
|
|
|
* each different type of bus defines a set of appropriate instance
|
|
|
|
* variables (such as ports and irqs for ISA bus etc.)
|
|
|
|
*
|
|
|
|
* This information could be given to the child device as a struct but
|
|
|
|
* that makes it hard for a bus to add or remove variables without
|
|
|
|
* forcing an edit and recompile for all drivers which may not be
|
|
|
|
* possible for vendor supplied binary drivers.
|
|
|
|
*
|
|
|
|
* This method copies the value of an instance variable to the
|
|
|
|
* location specified by @p *_result.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose child was being examined
|
|
|
|
* @param _child the child device whose instance variable is
|
|
|
|
* being read
|
|
|
|
* @param _index the instance variable to read
|
|
|
|
* @param _result a loction to recieve the instance variable
|
|
|
|
* value
|
|
|
|
*
|
|
|
|
* @retval 0 success
|
|
|
|
* @retval ENOENT no such instance variable is supported by @p
|
|
|
|
* _dev
|
|
|
|
*/
|
1998-06-14 13:53:12 +00:00
|
|
|
METHOD int read_ivar {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
2004-07-18 16:30:31 +00:00
|
|
|
int _index;
|
2002-04-21 11:16:10 +00:00
|
|
|
uintptr_t *_result;
|
1998-06-14 13:53:12 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Write the value of a bus-specific attribute of a device
|
|
|
|
*
|
|
|
|
* This method sets the value of an instance variable to @p _value.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose child was being updated
|
|
|
|
* @param _child the child device whose instance variable is
|
|
|
|
* being written
|
|
|
|
* @param _index the instance variable to write
|
|
|
|
* @param _value the value to write to that instance variable
|
|
|
|
*
|
|
|
|
* @retval 0 success
|
|
|
|
* @retval ENOENT no such instance variable is supported by @p
|
|
|
|
* _dev
|
|
|
|
* @retval EINVAL the instance variable was recognised but
|
|
|
|
* contains a read-only value
|
|
|
|
*/
|
1998-06-14 13:53:12 +00:00
|
|
|
METHOD int write_ivar {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _indx;
|
|
|
|
uintptr_t _value;
|
1998-06-14 13:53:12 +00:00
|
|
|
};
|
|
|
|
|
2012-08-21 18:13:09 +00:00
|
|
|
/**
|
|
|
|
* @brief Notify a bus that a child was deleted
|
|
|
|
*
|
|
|
|
* Called at the beginning of device_delete_child() to allow the parent
|
|
|
|
* to teardown any bus-specific state for the child.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose child is being deleted
|
|
|
|
* @param _child the child device which is being deleted
|
|
|
|
*/
|
|
|
|
METHOD void child_deleted {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Notify a bus that a child was detached
|
|
|
|
*
|
|
|
|
* Called after the child's DEVICE_DETACH() method to allow the parent
|
|
|
|
* to reclaim any resources allocated on behalf of the child.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose child changed state
|
|
|
|
* @param _child the child device which changed state
|
|
|
|
*/
|
1999-03-29 08:54:20 +00:00
|
|
|
METHOD void child_detached {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
1999-03-29 08:54:20 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Notify a bus that a new driver was added
|
|
|
|
*
|
|
|
|
* Called when a new driver is added to the devclass which owns this
|
|
|
|
* bus. The generic implementation of this method attempts to probe and
|
|
|
|
* attach any un-matched children of the bus.
|
|
|
|
*
|
|
|
|
* @param _dev the device whose devclass had a new driver
|
|
|
|
* added to it
|
|
|
|
* @param _driver the new driver which was added
|
|
|
|
*/
|
1999-04-16 21:22:55 +00:00
|
|
|
METHOD void driver_added {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
driver_t *_driver;
|
1999-10-09 03:48:18 +00:00
|
|
|
} DEFAULT bus_generic_driver_added;
|
1999-04-16 21:22:55 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Create a new child device
|
|
|
|
*
|
|
|
|
* For busses which use use drivers supporting DEVICE_IDENTIFY() to
|
|
|
|
* enumerate their devices, this method is used to create new
|
|
|
|
* device instances. The new device will be added after the last
|
|
|
|
* existing child with the same order.
|
|
|
|
*
|
|
|
|
* @param _dev the bus device which will be the parent of the
|
|
|
|
* new child device
|
|
|
|
* @param _order a value which is used to partially sort the
|
|
|
|
* children of @p _dev - devices created using
|
|
|
|
* lower values of @p _order appear first in @p
|
|
|
|
* _dev's list of children
|
|
|
|
* @param _name devclass name for new device or @c NULL if not
|
|
|
|
* specified
|
|
|
|
* @param _unit unit number for new device or @c -1 if not
|
|
|
|
* specified
|
|
|
|
*/
|
1999-05-14 11:22:47 +00:00
|
|
|
METHOD device_t add_child {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
2010-09-10 11:19:03 +00:00
|
|
|
u_int _order;
|
2002-04-21 11:16:10 +00:00
|
|
|
const char *_name;
|
|
|
|
int _unit;
|
2010-09-13 08:34:20 +00:00
|
|
|
} DEFAULT null_add_child;
|
1999-05-14 11:22:47 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Allocate a system resource
|
|
|
|
*
|
|
|
|
* This method is called by child devices of a bus to allocate resources.
|
|
|
|
* The types are defined in <machine/resource.h>; the meaning of the
|
|
|
|
* resource-ID field varies from bus to bus (but @p *rid == 0 is always
|
|
|
|
* valid if the resource type is). If a resource was allocated and the
|
|
|
|
* caller did not use the RF_ACTIVE to specify that it should be
|
|
|
|
* activated immediately, the caller is responsible for calling
|
|
|
|
* BUS_ACTIVATE_RESOURCE() when it actually uses the resource.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which is requesting an allocation
|
|
|
|
* @param _type the type of resource to allocate
|
|
|
|
* @param _rid a pointer to the resource identifier
|
|
|
|
* @param _start hint at the start of the resource range - pass
|
|
|
|
* @c 0UL for any start address
|
|
|
|
* @param _end hint at the end of the resource range - pass
|
|
|
|
* @c ~0UL for any end address
|
|
|
|
* @param _count hint at the size of range required - pass @c 1
|
|
|
|
* for any size
|
|
|
|
* @param _flags any extra flags to control the resource
|
|
|
|
* allocation - see @c RF_XXX flags in
|
|
|
|
* <sys/rman.h> for details
|
|
|
|
*
|
|
|
|
* @returns the resource which was allocated or @c NULL if no
|
|
|
|
* resource could be allocated
|
|
|
|
*/
|
1998-11-14 21:58:51 +00:00
|
|
|
METHOD struct resource * alloc_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int *_rid;
|
|
|
|
u_long _start;
|
|
|
|
u_long _end;
|
|
|
|
u_long _count;
|
|
|
|
u_int _flags;
|
1999-05-10 17:06:14 +00:00
|
|
|
} DEFAULT null_alloc_resource;
|
1998-11-14 21:58:51 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Activate a resource
|
|
|
|
*
|
|
|
|
* Activate a resource previously allocated with
|
|
|
|
* BUS_ALLOC_RESOURCE(). This may for instance map a memory region
|
|
|
|
* into the kernel's virtual address space.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _rid the resource identifier
|
|
|
|
* @param _r the resource to activate
|
|
|
|
*/
|
1998-11-14 21:58:51 +00:00
|
|
|
METHOD int activate_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int _rid;
|
|
|
|
struct resource *_r;
|
1998-11-14 21:58:51 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Deactivate a resource
|
|
|
|
*
|
|
|
|
* Deactivate a resource previously allocated with
|
|
|
|
* BUS_ALLOC_RESOURCE(). This may for instance unmap a memory region
|
|
|
|
* from the kernel's virtual address space.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _rid the resource identifier
|
|
|
|
* @param _r the resource to deactivate
|
|
|
|
*/
|
1998-11-14 21:58:51 +00:00
|
|
|
METHOD int deactivate_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int _rid;
|
|
|
|
struct resource *_r;
|
1998-06-14 13:53:12 +00:00
|
|
|
};
|
1998-07-12 16:20:52 +00:00
|
|
|
|
2011-04-29 21:36:45 +00:00
|
|
|
/**
|
|
|
|
* @brief Adjust a resource
|
|
|
|
*
|
|
|
|
* Adjust the start and/or end of a resource allocated by
|
|
|
|
* BUS_ALLOC_RESOURCE. At least part of the new address range must overlap
|
|
|
|
* with the existing address range. If the successful, the resource's range
|
|
|
|
* will be adjusted to [start, end] on return.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _res the resource to adjust
|
|
|
|
* @param _start the new starting address of the resource range
|
|
|
|
* @param _end the new ending address of the resource range
|
|
|
|
*/
|
|
|
|
METHOD int adjust_resource {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
struct resource *_res;
|
|
|
|
u_long _start;
|
|
|
|
u_long _end;
|
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Release a resource
|
|
|
|
*
|
|
|
|
* Free a resource allocated by the BUS_ALLOC_RESOURCE. The @p _rid
|
|
|
|
* value must be the same as the one returned by BUS_ALLOC_RESOURCE()
|
|
|
|
* (which is not necessarily the same as the one the client passed).
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _rid the resource identifier
|
|
|
|
* @param _r the resource to release
|
|
|
|
*/
|
1998-11-14 21:58:51 +00:00
|
|
|
METHOD int release_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int _rid;
|
|
|
|
struct resource *_res;
|
1998-11-14 21:58:51 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Install an interrupt handler
|
|
|
|
*
|
|
|
|
* This method is used to associate an interrupt handler function with
|
|
|
|
* an irq resource. When the interrupt triggers, the function @p _intr
|
|
|
|
* will be called with the value of @p _arg as its single
|
|
|
|
* argument. The value returned in @p *_cookiep is used to cancel the
|
|
|
|
* interrupt handler - the caller should save this value to use in a
|
|
|
|
* future call to BUS_TEARDOWN_INTR().
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _irq the resource representing the interrupt
|
|
|
|
* @param _flags a set of bits from enum intr_type specifying
|
|
|
|
* the class of interrupt
|
|
|
|
* @param _intr the function to call when the interrupt
|
|
|
|
* triggers
|
|
|
|
* @param _arg a value to use as the single argument in calls
|
|
|
|
* to @p _intr
|
|
|
|
* @param _cookiep a pointer to a location to recieve a cookie
|
|
|
|
* value that may be used to remove the interrupt
|
|
|
|
* handler
|
|
|
|
*/
|
1998-11-14 21:58:51 +00:00
|
|
|
METHOD int setup_intr {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
struct resource *_irq;
|
|
|
|
int _flags;
|
2007-02-23 12:19:07 +00:00
|
|
|
driver_filter_t *_filter;
|
2002-04-21 11:16:10 +00:00
|
|
|
driver_intr_t *_intr;
|
|
|
|
void *_arg;
|
|
|
|
void **_cookiep;
|
1998-11-14 21:58:51 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Uninstall an interrupt handler
|
|
|
|
*
|
|
|
|
* This method is used to disassociate an interrupt handler function
|
|
|
|
* with an irq resource. The value of @p _cookie must be the value
|
|
|
|
* returned from a previous call to BUS_SETUP_INTR().
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _irq the resource representing the interrupt
|
|
|
|
* @param _cookie the cookie value returned when the interrupt
|
|
|
|
* was originally registered
|
|
|
|
*/
|
1998-11-14 21:58:51 +00:00
|
|
|
METHOD int teardown_intr {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
struct resource *_irq;
|
|
|
|
void *_cookie;
|
1998-07-12 16:20:52 +00:00
|
|
|
};
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Define a resource which can be allocated with
|
|
|
|
* BUS_ALLOC_RESOURCE().
|
|
|
|
*
|
|
|
|
* This method is used by some busses (typically ISA) to allow a
|
|
|
|
* driver to describe a resource range that it would like to
|
|
|
|
* allocate. The resource defined by @p _type and @p _rid is defined
|
|
|
|
* to start at @p _start and to include @p _count indices in its
|
|
|
|
* range.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which owns the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _rid the resource identifier
|
|
|
|
* @param _start the start of the resource range
|
|
|
|
* @param _count the size of the resource range
|
|
|
|
*/
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
METHOD int set_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int _rid;
|
|
|
|
u_long _start;
|
|
|
|
u_long _count;
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Describe a resource
|
|
|
|
*
|
|
|
|
* This method allows a driver to examine the range used for a given
|
|
|
|
* resource without actually allocating it.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which owns the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _rid the resource identifier
|
|
|
|
* @param _start the address of a location to recieve the start
|
|
|
|
* index of the resource range
|
|
|
|
* @param _count the address of a location to recieve the size
|
|
|
|
* of the resource range
|
|
|
|
*/
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
METHOD int get_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int _rid;
|
|
|
|
u_long *_startp;
|
|
|
|
u_long *_countp;
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Delete a resource.
|
|
|
|
*
|
|
|
|
* Use this to delete a resource (possibly one previously added with
|
|
|
|
* BUS_SET_RESOURCE()).
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which owns the resource
|
|
|
|
* @param _type the type of resource
|
|
|
|
* @param _rid the resource identifier
|
|
|
|
*/
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
METHOD void delete_resource {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int _type;
|
|
|
|
int _rid;
|
* Add struct resource_list* argument to resource_list_alloc and
resource_list_release. This removes the dependancy on the
layout of ivars.
* Move set_resource, get_resource and delete_resource from
isa_if.m to bus_if.m.
* Simplify driver code by providing wrappers to those methods:
bus_set_resource(dev, type, rid, start, count);
bus_get_resource(dev, type, rid, startp, countp);
bus_get_resource_start(dev, type, rid);
bus_get_resource_count(dev, type, rid);
bus_delete_resource(dev, type, rid);
* Delete isa_get_rsrc and use bus_get_resource_start instead.
* Fix a stupid typo in isa_alloc_resource reported by Takahashi
Yoshihiro <nyan@FreeBSD.org>.
* Print a diagnostic message if we can't assign resources to a PnP
device.
* Change device_print_prettyname() so that it doesn't print
"(no driver assigned)-1" for anonymous devices.
1999-10-12 21:35:51 +00:00
|
|
|
};
|
2000-10-18 05:15:40 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Return a struct resource_list.
|
|
|
|
*
|
|
|
|
* Used by drivers which use bus_generic_rl_alloc_resource() etc. to
|
|
|
|
* implement their resource handling. It should return the resource
|
|
|
|
* list of the given child device.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which owns the resource list
|
|
|
|
*/
|
2000-11-28 06:49:15 +00:00
|
|
|
METHOD struct resource_list * get_resource_list {
|
2002-04-21 11:16:10 +00:00
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
2000-10-18 05:15:40 +00:00
|
|
|
} DEFAULT bus_generic_get_resource_list;
|
2002-07-21 03:28:43 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Is the hardware described by @p _child still attached to the
|
|
|
|
* system?
|
|
|
|
*
|
2004-08-12 17:26:22 +00:00
|
|
|
* This method should return 0 if the device is not present. It
|
|
|
|
* should return -1 if it is present. Any errors in determining
|
|
|
|
* should be returned as a normal errno value. Client drivers are to
|
|
|
|
* assume that the device is present, even if there is an error
|
|
|
|
* determining if it is there. Busses are to try to avoid returning
|
|
|
|
* errors, but newcard will return an error if the device fails to
|
|
|
|
* implement this method.
|
2004-07-18 16:30:31 +00:00
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which is being examined
|
|
|
|
*/
|
2002-07-21 03:28:43 +00:00
|
|
|
METHOD int child_present {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
} DEFAULT bus_generic_child_present;
|
2002-10-07 05:06:38 +00:00
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns the pnp info for this device.
|
|
|
|
*
|
|
|
|
* Return it as a string. If the string is insufficient for the
|
|
|
|
* storage, then return EOVERFLOW.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which is being examined
|
|
|
|
* @param _buf the address of a buffer to receive the pnp
|
|
|
|
* string
|
|
|
|
* @param _buflen the size of the buffer pointed to by @p _buf
|
|
|
|
*/
|
2002-10-07 05:06:38 +00:00
|
|
|
METHOD int child_pnpinfo_str {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
char *_buf;
|
|
|
|
size_t _buflen;
|
|
|
|
};
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns the location for this device.
|
|
|
|
*
|
|
|
|
* Return it as a string. If the string is insufficient for the
|
|
|
|
* storage, then return EOVERFLOW.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which is being examined
|
|
|
|
* @param _buf the address of a buffer to receive the location
|
|
|
|
* string
|
|
|
|
* @param _buflen the size of the buffer pointed to by @p _buf
|
|
|
|
*/
|
2002-10-07 05:06:38 +00:00
|
|
|
METHOD int child_location_str {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
char *_buf;
|
|
|
|
size_t _buflen;
|
|
|
|
};
|
2003-09-10 21:37:10 +00:00
|
|
|
|
2008-03-20 21:24:32 +00:00
|
|
|
/**
|
|
|
|
* @brief Allow drivers to request that an interrupt be bound to a specific
|
|
|
|
* CPU.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _irq the resource representing the interrupt
|
|
|
|
* @param _cpu the CPU to bind the interrupt to
|
|
|
|
*/
|
|
|
|
METHOD int bind_intr {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
struct resource *_irq;
|
|
|
|
int _cpu;
|
|
|
|
} DEFAULT bus_generic_bind_intr;
|
|
|
|
|
2004-07-18 16:30:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Allow (bus) drivers to specify the trigger mode and polarity
|
|
|
|
* of the specified interrupt.
|
|
|
|
*
|
|
|
|
* @param _dev the bus device
|
|
|
|
* @param _irq the interrupt number to modify
|
|
|
|
* @param _trig the trigger mode required
|
|
|
|
* @param _pol the interrupt polarity required
|
|
|
|
*/
|
2003-09-10 21:37:10 +00:00
|
|
|
METHOD int config_intr {
|
|
|
|
device_t _dev;
|
|
|
|
int _irq;
|
|
|
|
enum intr_trigger _trig;
|
|
|
|
enum intr_polarity _pol;
|
|
|
|
} DEFAULT bus_generic_config_intr;
|
2006-07-08 17:06:15 +00:00
|
|
|
|
2009-10-15 14:54:35 +00:00
|
|
|
/**
|
|
|
|
* @brief Allow drivers to associate a description with an active
|
|
|
|
* interrupt handler.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device which allocated the resource
|
|
|
|
* @param _irq the resource representing the interrupt
|
|
|
|
* @param _cookie the cookie value returned when the interrupt
|
|
|
|
* was originally registered
|
|
|
|
* @param _descr the description to associate with the interrupt
|
|
|
|
*/
|
|
|
|
METHOD int describe_intr {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
struct resource *_irq;
|
|
|
|
void *_cookie;
|
|
|
|
const char *_descr;
|
|
|
|
} DEFAULT bus_generic_describe_intr;
|
|
|
|
|
2006-07-08 17:06:15 +00:00
|
|
|
/**
|
|
|
|
* @brief Notify a (bus) driver about a child that the hints mechanism
|
|
|
|
* believes it has discovered.
|
|
|
|
*
|
|
|
|
* The bus is responsible for then adding the child in the right order
|
|
|
|
* and discovering other things about the child. The bus driver is
|
|
|
|
* free to ignore this hint, to do special things, etc. It is all up
|
|
|
|
* to the bus driver to interpret.
|
|
|
|
*
|
|
|
|
* This method is only called in response to the parent bus asking for
|
|
|
|
* hinted devices to be enumerated.
|
|
|
|
*
|
|
|
|
* @param _dev the bus device
|
|
|
|
* @param _dname the name of the device w/o unit numbers
|
|
|
|
* @param _dunit the unit number of the device
|
|
|
|
*/
|
|
|
|
METHOD void hinted_child {
|
|
|
|
device_t _dev;
|
2008-11-18 21:01:54 +00:00
|
|
|
const char *_dname;
|
2006-07-08 17:06:15 +00:00
|
|
|
int _dunit;
|
|
|
|
};
|
2006-09-03 00:27:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns bus_dma_tag_t for use w/ devices on the bus.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device to which the tag will belong
|
|
|
|
*/
|
|
|
|
METHOD bus_dma_tag_t get_dma_tag {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
} DEFAULT bus_generic_get_dma_tag;
|
2008-11-18 21:01:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Allow the bus to determine the unit number of a device.
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device whose unit is to be wired
|
|
|
|
* @param _name the name of the device's new devclass
|
|
|
|
* @param _unitp a pointer to the device's new unit value
|
|
|
|
*/
|
|
|
|
METHOD void hint_device_unit {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
const char *_name;
|
|
|
|
int *_unitp;
|
|
|
|
};
|
|
|
|
|
2009-06-09 14:26:23 +00:00
|
|
|
/**
|
|
|
|
* @brief Notify a bus that the bus pass level has been changed
|
|
|
|
*
|
|
|
|
* @param _dev the bus device
|
|
|
|
*/
|
|
|
|
METHOD void new_pass {
|
|
|
|
device_t _dev;
|
|
|
|
} DEFAULT bus_generic_new_pass;
|
2010-06-14 07:10:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Notify a bus that specified child's IRQ should be remapped.
|
|
|
|
*
|
|
|
|
* @param _dev the bus device
|
|
|
|
* @param _child the child device
|
|
|
|
* @param _irq the irq number
|
|
|
|
*/
|
|
|
|
METHOD int remap_intr {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
u_int _irq;
|
|
|
|
} DEFAULT null_remap_intr;
|
2014-09-23 02:56:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Suspend a given child
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device to suspend
|
|
|
|
*/
|
|
|
|
METHOD int suspend_child {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
} DEFAULT bus_generic_suspend_child;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Resume a given child
|
|
|
|
*
|
|
|
|
* @param _dev the parent device of @p _child
|
|
|
|
* @param _child the device to resume
|
|
|
|
*/
|
|
|
|
METHOD int resume_child {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
} DEFAULT bus_generic_resume_child;
|
2014-10-09 05:33:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the VM domain handle for the given bus and child.
|
|
|
|
*
|
|
|
|
* @param _dev the bus device
|
|
|
|
* @param _child the child device
|
|
|
|
* @param _domain a pointer to the bus's domain handle identifier
|
|
|
|
*/
|
|
|
|
METHOD int get_domain {
|
|
|
|
device_t _dev;
|
|
|
|
device_t _child;
|
|
|
|
int *_domain;
|
|
|
|
} DEFAULT bus_generic_get_domain;
|