Searched refs:bus (Results 51 - 75 of 2478) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/arm/altera/socfpga/
H A Dsocfpga_machdep.c39 #include <sys/bus.h>
45 #include <machine/bus.h>
/freebsd-11-stable/sys/arm/freescale/vybrid/
H A Dvf_machdep.c35 #include <sys/bus.h>
41 #include <machine/bus.h>
/freebsd-11-stable/sys/arm/rockchip/
H A Drk30xx_common.c32 #include <sys/bus.h>
38 #include <machine/bus.h>
/freebsd-11-stable/sys/arm/samsung/exynos/
H A Dexynos5_machdep.c35 #include <sys/bus.h>
41 #include <machine/bus.h>
/freebsd-11-stable/sys/x86/pci/
H A Dpci_bus.c34 #include <sys/bus.h>
63 legacy_pcib_read_config(device_t dev, u_int bus, u_int slot, u_int func, argument
66 return(pci_cfgregread(bus, slot, func, reg, bytes));
72 legacy_pcib_write_config(device_t dev, u_int bus, u_int slot, u_int func, argument
75 pci_cfgregwrite(bus, slot, func, reg, data, bytes);
99 device_t bus; local
101 bus = device_get_parent(pcib);
102 return (PCIB_ALLOC_MSI(device_get_parent(bus), dev, count, maxcount,
109 device_t bus; local
111 bus
119 device_t bus, hostb; local
139 legacy_pcib_is_host_bridge(int bus, int slot, int func, uint32_t id, uint8_t class, uint8_t subclass, uint8_t *busnum) argument
378 int bus, slot, func; local
513 int bus; local
751 int bus; local
[all...]
/freebsd-11-stable/usr.sbin/bhyve/
H A Dmptbl.c201 int bus, count; local
204 for (bus = 0; bus <= PCI_BUSMAX; bus++)
205 count += pci_count_lintr(bus);
215 mpt_generate_pci_int(int bus, int slot, int pin, int pirq_pin, int ioapic_irq, argument
230 mpie->src_bus_id = bus;
241 int pin, bus; local
257 * All default configs route IRQs from bus 0 to the first 16
288 for (bus
309 int ioints, bus; local
[all...]
/freebsd-11-stable/sys/arm/include/
H A Dofw_machdep.h36 #include <sys/bus.h>
/freebsd-11-stable/sys/dev/bhnd/bcma/
H A Dbcma.h36 #include <sys/bus.h>
/freebsd-11-stable/sys/dev/bhnd/
H A Dbhnd_nexusvar.h37 #include <sys/bus.h>
/freebsd-11-stable/sys/dev/bhnd/bhndb/
H A Dbhndb_pci_sprom.c42 #include <sys/bus.h>
63 device_t bridge, bus; local
66 /* Our parent must be a PCI-BHND bridge with an attached bhnd bus */
71 bus = device_find_child(bridge, devclass_get_name(bhnd_devclass), 0);
72 if (bus == NULL)
/freebsd-11-stable/sys/dev/bhnd/siba/
H A Dsiba.h36 #include <sys/bus.h>
/freebsd-11-stable/sys/powerpc/ofw/
H A Dofw_pcibus.h32 #include <sys/bus.h>
/freebsd-11-stable/sys/mips/include/
H A Dofw_machdep.h34 #include <sys/bus.h>
/freebsd-11-stable/tools/bus_space/Python/
H A DMakefile3 SHLIB_NAME= bus.so
/freebsd-11-stable/sys/i386/include/
H A Dsmp.h24 #include <sys/bus.h>
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pcie.h89 uint64_t bus : 8; /* Target bus number sent in the ID in the request. */ member in struct:__anon8663::__anon8664
161 * Initialize a PCIe port for use in host(RC) mode. It doesn't enumerate the bus.
182 * @param bus Sub bus
189 uint8_t cvmx_pcie_config_read8(int pcie_port, int bus, int dev, int fn, int reg);
195 * @param bus Sub bus
202 uint16_t cvmx_pcie_config_read16(int pcie_port, int bus, int dev, int fn, int reg);
208 * @param bus Su
[all...]
/freebsd-11-stable/sys/arm/at91/
H A Dat91_pinctrl.c30 #include <sys/bus.h>
37 #include <machine/bus.h>
51 uint64_t bus; member in struct:pinctrl_range
78 device_set_desc(dev, "pincontrol bus");
191 sc->ranges[i].bus = 0;
193 sc->ranges[i].bus <<= 32;
194 sc->ranges[i].bus |= base_ranges[j++];
260 pinctrl_get_devinfo(device_t bus __unused, device_t child)
269 pinctrl_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
277 sc = device_get_softc(bus);
339 pinctrl_probe_nomatch(device_t bus, device_t child) argument
362 pinctrl_print_child(device_t bus, device_t child) argument
384 pinctrl_configure_pins(device_t bus, phandle_t cfgxref) argument
437 pinctrl_new_pass(device_t bus) argument
[all...]
/freebsd-11-stable/sys/dev/usb/
H A Dusb_controller.h47 typedef void (usb_bus_mem_sub_cb_t)(struct usb_bus *bus, struct usb_page_cache *pc, struct usb_page *pg, usb_size_t size, usb_size_t align);
48 typedef void (usb_bus_mem_cb_t)(struct usb_bus *bus, usb_bus_mem_sub_cb_t *scb);
91 * are present on the given USB bus:
190 void usb_bus_mem_flush_all(struct usb_bus *bus, usb_bus_mem_cb_t *cb);
191 uint8_t usb_bus_mem_alloc_all(struct usb_bus *bus, bus_dma_tag_t dmat, usb_bus_mem_cb_t *cb);
192 void usb_bus_mem_free_all(struct usb_bus *bus, usb_bus_mem_cb_t *cb);
193 uint16_t usb_isoc_time_expand(struct usb_bus *bus, uint16_t isoc_time_curr);
194 void usb_bus_reset_async_locked(struct usb_bus *bus);
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dwpas-dbus-new.py31 if_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
41 net_obj = bus.get_object(WPAS_DBUS_SERVICE, bss)
98 global bus
99 bus = dbus.SystemBus()
100 wpas_obj = bus.get_object(WPAS_DBUS_SERVICE, WPAS_DBUS_OPATH)
107 bus.add_signal_receiver(scanDone,
110 bus.add_signal_receiver(bssAdded,
113 bus.add_signal_receiver(bssRemoved,
116 bus.add_signal_receiver(propertiesChanged,
138 if_obj = bus
[all...]
/freebsd-11-stable/tools/bus_space/examples/
H A Dam79c900_diag.py56 import bus
122 pcicfg = bus.map(dev, 'pcicfg')
125 vendor = bus.read_2(pcicfg, 0)
126 device = bus.read_2(pcicfg, 2)
132 command = bus.read_2(pcicfg, 4)
136 bus.write_2(pcicfg, 4, command)
139 logging.info('enabling bus mastering')
141 bus.write_2(pcicfg, 4, command)
143 bus.unmap(pcicfg)
145 io = bus
[all...]
/freebsd-11-stable/sys/xen/interface/
H A Dphysdev.h168 int bus; member in struct:physdev_map_pirq
193 uint8_t bus; member in struct:physdev_manage_pci
203 uint8_t bus; member in struct:physdev_restore_msi
212 uint8_t bus; member in struct:physdev_manage_pci_ext
217 uint8_t bus; member in struct:physdev_manage_pci_ext::__anon13572
291 uint8_t bus; member in struct:physdev_pci_device_add
295 uint8_t bus; member in struct:physdev_pci_device_add::__anon13574
323 uint8_t bus; member in struct:physdev_pci_device
339 uint8_t bus; member in struct:physdev_dbgp_op
/freebsd-11-stable/sys/dev/vnic/
H A Dmrml_bridge.c35 #include <sys/bus.h>
47 #include <machine/bus.h>
119 /* OFW bus interface */
126 mrmlb_ofw_get_devinfo(device_t bus __unused, device_t child)
135 mrmlb_ofw_bus_alloc_res(device_t bus, device_t child, int type, int *rid, argument
159 sc = device_get_softc(bus);
164 if (start >= sc->ranges[i].bus && end <
165 sc->ranges[i].bus + sc->ranges[i].size) {
166 start -= sc->ranges[i].bus;
168 end -= sc->ranges[i].bus;
[all...]
/freebsd-11-stable/sys/mips/atheros/
H A Dar71xx_pci.c36 #include <sys/bus.h>
49 #include <machine/bus.h>
161 printf("PCI bus error %d at addr 0x%08x\n", error, addr);
173 printf("AHB bus error %d at addr 0x%08x\n", error, addr);
183 ar71xx_pci_make_addr(int bus, int slot, int func, int reg) argument
185 if (bus == 0) {
188 return ((bus << 16) | (slot << 11) | (func << 8)
194 ar71xx_pci_conf_setup(int bus, int slot, int func, int reg, int bytes, argument
197 uint32_t addr = ar71xx_pci_make_addr(bus, slot, func, (reg & ~3));
206 bus, slo
212 ar71xx_pci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, int bytes) argument
265 ar71xx_pci_write_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, uint32_t data, int bytes) argument
289 ar71xx_pci_fixup(device_t dev, u_int bus, u_int slot, u_int func, long flash_addr, int len) argument
331 ar71xx_pci_slot_fixup(device_t dev, u_int bus, u_int slot, u_int func) argument
501 ar71xx_pci_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) argument
537 ar71xx_pci_activate_resource(device_t bus, device_t child, int type, int rid, struct resource *r) argument
555 ar71xx_pci_setup_intr(device_t bus, device_t child, struct resource *ires, int flags, driver_filter_t *filt, driver_intr_t *handler, void *arg, void **cookiep) argument
[all...]
/freebsd-11-stable/sys/arm/mv/orion/
H A Ddb88f5xxx.c37 #include <sys/bus.h>
43 #include <machine/bus.h>
73 int platform_pci_get_irq(u_int bus, u_int slot, u_int func, u_int pin);
/freebsd-11-stable/sys/dev/fdt/
H A Dsimplebus.c32 #include <sys/bus.h>
50 static void simplebus_probe_nomatch(device_t bus, device_t child);
51 static int simplebus_print_child(device_t bus, device_t child);
54 static struct resource_list *simplebus_get_resource_list(device_t bus,
59 static const struct ofw_bus_devinfo *simplebus_get_devinfo(device_t bus,
127 * FDT data puts a "simple-bus" compatible string on many things that
131 if (!(ofw_bus_is_compatible(dev, "simple-bus") &&
137 device_set_desc(dev, "Flattened device tree simple bus");
213 sc->ranges[i].bus = 0;
215 sc->ranges[i].bus <<
324 simplebus_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) argument
396 simplebus_probe_nomatch(device_t bus, device_t child) argument
419 simplebus_print_child(device_t bus, device_t child) argument
[all...]

Completed in 294 milliseconds

1234567891011>>