/drivers/pci/pcie/ |
D | aer_inject.c | 115 struct pci_bus_ops *bus_ops; in __find_pci_bus_ops() local 117 list_for_each_entry(bus_ops, &pci_bus_ops_list, list) { in __find_pci_bus_ops() 118 if (bus_ops->bus == bus) in __find_pci_bus_ops() 119 return bus_ops->ops; in __find_pci_bus_ops() 127 struct pci_bus_ops *bus_ops; in pci_bus_ops_pop() local 130 bus_ops = list_first_entry_or_null(&pci_bus_ops_list, in pci_bus_ops_pop() 132 if (bus_ops) in pci_bus_ops_pop() 133 list_del(&bus_ops->list); in pci_bus_ops_pop() 135 return bus_ops; in pci_bus_ops_pop() 288 static void pci_bus_ops_init(struct pci_bus_ops *bus_ops, in pci_bus_ops_init() argument [all …]
|
/drivers/net/wireless/quantenna/qtnfmac/ |
D | bus.h | 57 struct qtnf_bus_ops *bus_ops; member 104 if (!bus->bus_ops->preinit) in qtnf_bus_preinit() 106 return bus->bus_ops->preinit(bus); in qtnf_bus_preinit() 111 if (!bus->bus_ops->stop) in qtnf_bus_stop() 113 bus->bus_ops->stop(bus); in qtnf_bus_stop() 119 return bus->bus_ops->data_tx(bus, skb, macid, vifid); in qtnf_bus_data_tx() 125 return bus->bus_ops->data_tx_timeout(bus, ndev); in qtnf_bus_data_tx_timeout() 130 return bus->bus_ops->control_tx(bus, skb); in qtnf_bus_control_tx() 135 return bus->bus_ops->data_rx_start(bus); in qtnf_bus_data_rx_start() 140 return bus->bus_ops->data_rx_stop(bus); in qtnf_bus_data_rx_stop()
|
/drivers/net/wireless/mediatek/mt76/mt7615/ |
D | mmio.c | 165 return dev->bus_ops->rr(mdev, addr); in mt7615_rr() 173 dev->bus_ops->wr(mdev, addr, val); in mt7615_wr() 181 return dev->bus_ops->rmw(mdev, addr, mask, val); in mt7615_rmw() 205 struct mt76_bus_ops *bus_ops; in mt7615_mmio_probe() local 229 dev->bus_ops = dev->mt76.bus; in mt7615_mmio_probe() 230 bus_ops = devm_kmemdup(dev->mt76.dev, dev->bus_ops, sizeof(*bus_ops), in mt7615_mmio_probe() 232 if (!bus_ops) { in mt7615_mmio_probe() 237 bus_ops->rr = mt7615_rr; in mt7615_mmio_probe() 238 bus_ops->wr = mt7615_wr; in mt7615_mmio_probe() 239 bus_ops->rmw = mt7615_rmw; in mt7615_mmio_probe() [all …]
|
D | usb.c | 128 static struct mt76_bus_ops bus_ops = { in mt7663u_probe() local 162 ret = __mt76u_init(mdev, usb_intf, &bus_ops); in mt7663u_probe()
|
/drivers/net/wireless/mediatek/mt76/mt7915/ |
D | mmio.c | 365 dev->bus_ops->rmw(&dev->mt76, l1_remap, in mt7915_reg_map_l1() 369 dev->bus_ops->rr(&dev->mt76, l1_remap); in mt7915_reg_map_l1() 382 dev->bus_ops->rmw(&dev->mt76, MT_HIF_REMAP_L2, in mt7915_reg_map_l2() 387 dev->bus_ops->rr(&dev->mt76, MT_HIF_REMAP_L2); in mt7915_reg_map_l2() 394 dev->bus_ops->rmw(&dev->mt76, MT_HIF_REMAP_L2_MT7916 + ofs, in mt7915_reg_map_l2() 399 dev->bus_ops->rr(&dev->mt76, MT_HIF_REMAP_L2_MT7916 + ofs); in mt7915_reg_map_l2() 456 return dev->bus_ops->rr(mdev, addr); in mt7915_rr() 464 dev->bus_ops->wr(mdev, addr, val); in mt7915_wr() 472 return dev->bus_ops->rmw(mdev, addr, mask, val); in mt7915_rmw() 479 struct mt76_bus_ops *bus_ops; in mt7915_mmio_init() local [all …]
|
/drivers/net/wireless/mediatek/mt76/mt7921/ |
D | pci.c | 207 return dev->bus_ops->rr(mdev, addr); in mt7921_rr() 215 dev->bus_ops->wr(mdev, addr, val); in mt7921_wr() 223 return dev->bus_ops->rmw(mdev, addr, mask, val); in mt7921_rmw() 256 struct mt76_bus_ops *bus_ops; in mt7921_pci_probe() local 306 dev->bus_ops = dev->mt76.bus; in mt7921_pci_probe() 307 bus_ops = devm_kmemdup(dev->mt76.dev, dev->bus_ops, sizeof(*bus_ops), in mt7921_pci_probe() 309 if (!bus_ops) { in mt7921_pci_probe() 314 bus_ops->rr = mt7921_rr; in mt7921_pci_probe() 315 bus_ops->wr = mt7921_wr; in mt7921_pci_probe() 316 bus_ops->rmw = mt7921_rmw; in mt7921_pci_probe() [all …]
|
D | usb.c | 193 static struct mt76_bus_ops bus_ops = { in mt7921u_probe() local 227 ret = __mt76u_init(mdev, usb_intf, &bus_ops); in mt7921u_probe()
|
/drivers/net/wireless/mediatek/mt76/mt7603/ |
D | init.c | 397 return dev->bus_ops->rr(mdev, addr); in mt7603_rr() 405 dev->bus_ops->wr(mdev, addr, val); in mt7603_wr() 413 return dev->bus_ops->rmw(mdev, addr, mask, val); in mt7603_rmw() 487 struct mt76_bus_ops *bus_ops; in mt7603_register_device() local 492 dev->bus_ops = dev->mt76.bus; in mt7603_register_device() 493 bus_ops = devm_kmemdup(dev->mt76.dev, dev->bus_ops, sizeof(*bus_ops), in mt7603_register_device() 495 if (!bus_ops) in mt7603_register_device() 498 bus_ops->rr = mt7603_rr; in mt7603_register_device() 499 bus_ops->wr = mt7603_wr; in mt7603_register_device() 500 bus_ops->rmw = mt7603_rmw; in mt7603_register_device() [all …]
|
D | core.c | 64 dev->bus_ops->wr(&dev->mt76, MT_MCU_PCIE_REMAP_2, base); in mt7603_reg_map()
|
D | mt7603.h | 109 const struct mt76_bus_ops *bus_ops; member
|
/drivers/mmc/core/ |
D | bus.c | 152 if (host->bus_ops->shutdown) { in mmc_bus_shutdown() 153 ret = host->bus_ops->shutdown(host); in mmc_bus_shutdown() 171 ret = host->bus_ops->suspend(host); in mmc_bus_suspend() 184 ret = host->bus_ops->resume(host); in mmc_bus_resume() 200 return host->bus_ops->runtime_suspend(host); in mmc_runtime_suspend() 208 return host->bus_ops->runtime_resume(host); in mmc_runtime_resume()
|
D | core.h | 173 if (host->bus_ops->cache_enabled) in mmc_cache_enabled() 174 return host->bus_ops->cache_enabled(host); in mmc_cache_enabled() 181 if (host->bus_ops->flush_cache) in mmc_flush_cache() 182 return host->bus_ops->flush_cache(host); in mmc_flush_cache()
|
D | core.c | 1409 host->bus_ops = ops; in mmc_attach_bus() 1417 host->bus_ops = NULL; in mmc_detach_bus() 2035 ret = host->bus_ops->hw_reset(host); in mmc_hw_reset() 2049 if (!host->bus_ops->sw_reset) in mmc_sw_reset() 2052 ret = host->bus_ops->sw_reset(host); in mmc_sw_reset() 2119 ret = host->bus_ops->alive(host); in _mmc_detect_card_removed() 2236 if (host->bus_ops) in mmc_rescan() 2237 host->bus_ops->detect(host); in mmc_rescan() 2242 if (host->bus_ops != NULL) in mmc_rescan() 2317 if (host->bus_ops) { in mmc_stop_host() [all …]
|
D | host.c | 47 if (!host->bus_ops) in mmc_host_class_prepare() 51 if (host->bus_ops->pre_suspend) in mmc_host_class_prepare() 52 return host->bus_ops->pre_suspend(host); in mmc_host_class_prepare()
|
/drivers/input/misc/ |
D | cma3000_d0x.c | 56 const struct cma3000_bus_ops *bus_ops; member 74 (data->bus_ops->read(data->dev, reg, msg)) 76 ((data)->bus_ops->write(data->dev, reg, val, msg)) 189 ctrl |= data->bus_ops->ctrl_mod; in cma3000_poweron() 304 data->bus_ops = bops; in cma3000_init()
|
/drivers/input/touchscreen/ |
D | cyttsp_core.c | 85 error = ts->bus_ops->read(ts->dev, ts->xfer_buf, command, in ttsp_read_block_data() 103 error = ts->bus_ops->write(ts->dev, ts->xfer_buf, command, in ttsp_write_block_data() 627 struct cyttsp *cyttsp_probe(const struct cyttsp_bus_ops *bus_ops, in cyttsp_probe() argument 644 ts->bus_ops = bus_ops; in cyttsp_probe() 687 input_dev->id.bustype = bus_ops->bustype; in cyttsp_probe()
|
D | cyttsp_core.h | 117 const struct cyttsp_bus_ops *bus_ops; member 137 struct cyttsp *cyttsp_probe(const struct cyttsp_bus_ops *bus_ops,
|
D | cyttsp4_core.h | 339 const struct cyttsp4_bus_ops *bus_ops; member 430 return ts->bus_ops->read(ts->dev, ts->xfer_buf, addr, size, buf); in cyttsp4_adap_read() 436 return ts->bus_ops->write(ts->dev, ts->xfer_buf, addr, size, buf); in cyttsp4_adap_write()
|
/drivers/net/wireless/ath/ath9k/ |
D | init.c | 458 if (common->bus_ops->ath_bus_type != ATH_PCI) in ath9k_init_pcoem_platform() 671 enum ath_bus_type bus_type = common->bus_ops->ath_bus_type; in ath9k_of_init() 700 const struct ath_bus_ops *bus_ops) in ath9k_init_softc() argument 737 common->bus_ops = bus_ops; in ath9k_init_softc() 827 if (common->bus_ops->aspm_init) in ath9k_init_softc() 828 common->bus_ops->aspm_init(common); in ath9k_init_softc() 1053 const struct ath_bus_ops *bus_ops) in ath9k_init_device() argument 1062 error = ath9k_init_softc(devid, sc, bus_ops); in ath9k_init_device()
|
/drivers/net/wireless/ath/ath10k/ |
D | ce.h | 150 const struct ath10k_bus_ops *bus_ops; member 381 ce->bus_ops->read32((ar), CE_WRAPPER_BASE_ADDRESS + in ath10k_ce_interrupt_summary()
|
/drivers/net/wireless/ath/ath5k/ |
D | base.h | 112 int ath5k_init_ah(struct ath5k_hw *ah, const struct ath_bus_ops *bus_ops);
|
D | ath5k.h | 1688 return ath5k_hw_common(ah)->bus_ops->ath_bus_type; in ath5k_get_bus_type() 1693 common->bus_ops->read_cachesize(common, csz); in ath5k_read_cachesize() 1699 return common->bus_ops->eeprom_read(common, off, data); in ath5k_hw_nvram_read()
|
/drivers/net/wireless/ath/ |
D | ath.h | 180 const struct ath_bus_ops *bus_ops; member
|
/drivers/net/wireless/mediatek/mt76/ |
D | sdio.c | 631 const struct mt76_bus_ops *bus_ops) in mt76s_init() argument 657 dev->bus = bus_ops; in mt76s_init()
|
/drivers/net/wireless/quantenna/qtnfmac/pcie/ |
D | pearl_pcie.c | 834 bus->bus_ops->data_tx = qtnf_pcie_data_tx_meta; in qtnf_pearl_tx_use_meta_info_set() 836 bus->bus_ops->data_tx = qtnf_pcie_data_tx; in qtnf_pearl_tx_use_meta_info_set() 1119 bus->bus_ops = &qtnf_pcie_pearl_bus_ops; in qtnf_pcie_pearl_probe()
|