Lines Matching full:bus
29 # properties of a device on an Open Firmware assisted bus for use
32 # as they are expected to be only of interest in the respective bus
35 #include <sys/bus.h>
62 ofw_bus_default_get_devinfo(device_t bus, device_t dev)
69 ofw_bus_default_get_compat(device_t bus, device_t dev)
76 ofw_bus_default_get_model(device_t bus, device_t dev)
83 ofw_bus_default_get_name(device_t bus, device_t dev)
90 ofw_bus_default_get_node(device_t bus, device_t dev)
97 ofw_bus_default_get_type(device_t bus, device_t dev)
104 ofw_bus_default_map_intr(device_t bus, device_t dev, phandle_t iparent,
107 /* Propagate up the bus hierarchy until someone handles it. */
108 if (device_get_parent(bus) != NULL)
109 return OFW_BUS_MAP_INTR(device_get_parent(bus), dev,
117 # Get the ofw_bus_devinfo struct for the device dev on the bus. Used for bus
122 device_t bus;
126 # Get the alternate firmware name for the device dev on the bus. The default
129 device_t bus;
133 # Get the firmware model name for the device dev on the bus. The default method
136 device_t bus;
140 # Get the firmware name for the device dev on the bus. The default method will
143 device_t bus;
147 # Get the firmware node for the device dev on the bus. The default method will
150 device_t bus;
154 # Get the firmware device type for the device dev on the bus. The default
157 device_t bus;
165 device_t bus;