/linux/drivers/net/mdio/ |
H A D | Kconfig | 79 tristate "Bitbanged MDIO buses" 109 tristate "GPIO lib-based bitbanged MDIO buses" 160 tristate "Octeon and some ThunderX SOCs MDIO buses" 167 buses. It is required by the Octeon and ThunderX ethernet device 200 tristate "ThunderX SOCs MDIO buses" 251 child MDIO bus to a parent bus. Buses could be internal as well as 262 child MDIO bus to a parent bus. Buses could be internal as well as
|
/linux/drivers/pci/ |
H A D | probe.c | 505 u32 buses; in pci_read_bridge_windows() local 510 pci_read_config_dword(bridge, PCI_PRIMARY_BUS, &buses); in pci_read_bridge_windows() 512 res.start = (buses >> 8) & 0xff; in pci_read_bridge_windows() 513 res.end = (buses >> 16) & 0xff; in pci_read_bridge_windows() 1305 * pci_scan_bridge_extend() - Scan buses behind a bridge 1308 * @max: Starting subordinate number of buses behind this bridge 1309 * @available_buses: Total number of buses available for this bridge and 1311 * been allocated the remaining buses will be 1322 * them, we proceed to assigning numbers to the remaining buses in 1325 * Return: New subordinate number covering all buses behind this bridge. [all …]
|
H A D | pci-bridge-emul.h | 144 * requests between primary and secondary buses. 150 * primary and secondary buses.
|
/linux/sound/i2c/ |
H A D | i2c.c | 46 list_del(&bus->buses); in snd_i2c_bus_free() 48 while (!list_empty(&bus->buses)) { in snd_i2c_bus_free() 49 slave = snd_i2c_slave_bus(bus->buses.next); in snd_i2c_bus_free() 80 INIT_LIST_HEAD(&bus->buses); in snd_i2c_bus_create() 84 list_add_tail(&bus->buses, &master->buses); in snd_i2c_bus_create()
|
/linux/Documentation/devicetree/bindings/interconnect/ |
H A D | fsl,imx8m-noc.yaml | 13 The i.MX SoC family has multiple buses for which clock frequency (and 16 Some of those buses expose register areas mentioned in the memory maps as GPV 20 The buses are based on externally licensed IPs such as ARM NIC-301 and
|
H A D | samsung,exynos-bus.yaml | 14 The Samsung Exynos SoC has many buses for data transfer between DRAM and 15 sub-blocks in SoC. Most Exynos SoCs share the common architecture for buses. 182 Devfreq-event device to monitor the current utilization of buses. Valid
|
/linux/include/sound/ |
H A D | i2c.h | 45 struct list_head buses; /* master: slave buses sharing SCK/SCL, slave: link list */ member 60 #define snd_i2c_slave_bus(n) list_entry(n, struct snd_i2c_bus, buses)
|
/linux/include/linux/amba/ |
H A D | pl08x.h | 54 * these buses (use PL08X_AHB1 | PL08X_AHB2). 101 * @lli_buses: buses which LLIs can be fetched from: PL08X_AHB1 | PL08X_AHB2 102 * @mem_buses: buses which memory can be accessed from: PL08X_AHB1 | PL08X_AHB2
|
/linux/Documentation/devicetree/bindings/i2c/ |
H A D | i2c-mux-pca954x.yaml | 16 The devices usually have 4 or 8 child buses, which are 82 description: Send a flush-out sequence to stuck auxiliary buses 87 description: Send a STOP condition to the auxiliary buses when the switch
|
/linux/drivers/net/can/softing/ |
H A D | Kconfig | 8 Softing Gmbh CAN cards come with 1 or 2 physical buses. 15 controls the 2 buses on the card together.
|
/linux/Documentation/mhi/ |
H A D | mhi.rst | 14 speed peripheral buses or shared memory. Even though MHI can be easily adapted 15 to any peripheral buses, it is primarily used with PCIe based devices. MHI 16 provides logical channels over the physical buses and allows transporting the 29 which are mapped to the host memory space by the peripheral buses like PCIe.
|
/linux/Documentation/devicetree/bindings/gnss/ |
H A D | sirfstar.yaml | 20 SiRF chips can be used over UART, I2C or SPI buses. 39 The I2C Address, SPI chip select address. Not required on UART buses.
|
/linux/Documentation/devicetree/bindings/net/ |
H A D | cavium-mdio.txt | 35 Several mdio buses may be gathered as children of a single PCI 36 device, this PCI device is the nexus of the buses.
|
H A D | fsl-tsec-phy.txt | 40 This PHY is accessed through the local MDIO bus. These buses are defined 41 similarly to the mdio buses, except they are compatible with "fsl,gianfar-tbi".
|
/linux/Documentation/driver-api/media/ |
H A D | v4l2-intro.rst | 14 more I2C buses, but other buses can also be used. Such devices are
|
/linux/drivers/pci/hotplug/ |
H A D | ibmphp_ebda.c | 67 struct ebda_hpc_bus *buses; in alloc_ebda_hpc() local 78 buses = kcalloc(bus_count, sizeof(struct ebda_hpc_bus), GFP_KERNEL); in alloc_ebda_hpc() 79 if (!buses) in alloc_ebda_hpc() 81 controller->buses = buses; in alloc_ebda_hpc() 95 kfree(controller->buses); in free_ebda_hpc() 205 …debug("%s - bus# of each bus controlled by this ctlr: %x\n", __func__, hpc_ptr->buses[index].bus_n… in print_ebda_hpc() 727 debug("count of buses controlled by this ctlr: %x\n", bus_num); in ebda_rsrc_controller() 772 bus_ptr = hpc_ptr->buses; in ebda_rsrc_controller()
|
H A D | acpiphp_glue.c | 193 u32 buses; in acpiphp_post_dock_fixup() local 205 pci_read_config_dword(bus->self, PCI_PRIMARY_BUS, &buses); in acpiphp_post_dock_fixup() 207 if (((buses >> 8) & 0xff) != bus->busn_res.start) { in acpiphp_post_dock_fixup() 208 buses = (buses & 0xff000000) in acpiphp_post_dock_fixup() 212 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses); in acpiphp_post_dock_fixup()
|
/linux/drivers/ssb/ |
H A D | main.c | 33 /* Temporary list of yet-to-be-attached buses */ 35 /* List if running buses */ 36 static LIST_HEAD(buses); 63 list_for_each_entry(bus, &buses, list) { in ssb_pci_dev_to_bus() 82 list_for_each_entry(bus, &buses, list) { in ssb_pcmcia_dev_to_bus() 102 list_for_each_entry(bus, &buses, list) { in ssb_for_each_bus_call() 596 list_move_tail(&bus->list, &buses); in ssb_attach_queued_buses() 1160 /* On buses where more than one core may be working in ssb_bus_may_powerdown() 1298 /* Maybe we already registered some buses at early boot. in ssb_modinit()
|
/linux/drivers/cdx/controller/ |
H A D | mcdi_functions.h | 15 * cdx_mcdi_get_num_buses - Get the total number of buses on 19 * Return: total number of buses available on the controller,
|
/linux/Documentation/driver-api/hte/ |
H A D | hte.rst | 13 monitor sets of system signals, lines, buses etc... in realtime for state 67 lines, GPIO, chip signals, buses etc...
|
/linux/drivers/devfreq/ |
H A D | imx-bus.c | 101 * or off and some peripheral side-buses might be off unless enabled by in imx_bus_probe() 102 * drivers for devices on those specific buses. in imx_bus_probe()
|
/linux/Documentation/userspace-api/media/ |
H A D | glossary.rst | 30 Unit of data transported by a bus. On parallel buses, the data unit 31 consists of one or more related samples while on serial buses the data
|
/linux/Documentation/i2c/ |
H A D | instantiating-devices.rst | 198 * Only buses which are likely to have a supported device and agree to be 218 * I2C buses must now explicitly say which I2C driver classes can probe 219 them (by the means of the class bitfield), while all I2C buses were
|
/linux/drivers/ipack/ |
H A D | Kconfig | 13 hosted on these buses. While IndustryPack modules can provide a
|
/linux/drivers/net/wireless/silabs/wfx/ |
H A D | Kconfig | 9 chipsets. This chip can be found on SPI or SDIO buses.
|