Home
last modified time | relevance | path

Searched refs:fmb (Results 1 – 4 of 4) sorted by relevance

/linux-5.19.10/drivers/net/phy/ !
Dfixed_phy.c50 struct fixed_mdio_bus *fmb = &platform_fmb; in fixed_phy_change_carrier() local
57 list_for_each_entry(fp, &fmb->phys, node) { in fixed_phy_change_carrier()
75 struct fixed_mdio_bus *fmb = bus->priv; in fixed_mdio_read() local
78 list_for_each_entry(fp, &fmb->phys, node) { in fixed_mdio_read()
115 struct fixed_mdio_bus *fmb = &platform_fmb; in fixed_phy_set_link_update() local
121 list_for_each_entry(fp, &fmb->phys, node) { in fixed_phy_set_link_update()
138 struct fixed_mdio_bus *fmb = &platform_fmb; in fixed_phy_add_gpiod() local
150 fmb->mii_bus->irq[phy_addr] = irq; in fixed_phy_add_gpiod()
158 list_add_tail(&fp->node, &fmb->phys); in fixed_phy_add_gpiod()
174 struct fixed_mdio_bus *fmb = &platform_fmb; in fixed_phy_del() local
[all …]
/linux-5.19.10/arch/s390/pci/ !
Dpci_debug.c89 if (!zdev->fmb) { in pci_perf_show()
97 seq_printf(m, "Samples: %u\n", zdev->fmb->samples); in pci_perf_show()
98 seq_printf(m, "Last update TOD: %Lx\n", zdev->fmb->last_update); in pci_perf_show()
101 &zdev->fmb->ld_ops); in pci_perf_show()
103 switch (zdev->fmb->format) { in pci_perf_show()
105 if (!(zdev->fmb->fmt_ind & ZPCI_FMB_DMA_COUNTER_VALID)) in pci_perf_show()
108 &zdev->fmb->fmt0.dma_rbytes); in pci_perf_show()
112 &zdev->fmb->fmt1.rx_bytes); in pci_perf_show()
116 &zdev->fmb->fmt2.consumed_work_units); in pci_perf_show()
120 &zdev->fmb->fmt3.tx_bytes); in pci_perf_show()
Dpci.c149 if (zdev->fmb || sizeof(*zdev->fmb) < zdev->fmb_length) in zpci_fmb_enable_device()
152 zdev->fmb = kmem_cache_zalloc(zdev_fmb_cache, GFP_KERNEL); in zpci_fmb_enable_device()
153 if (!zdev->fmb) in zpci_fmb_enable_device()
155 WARN_ON((u64) zdev->fmb & 0xf); in zpci_fmb_enable_device()
162 fib.fmb_addr = virt_to_phys(zdev->fmb); in zpci_fmb_enable_device()
165 kmem_cache_free(zdev_fmb_cache, zdev->fmb); in zpci_fmb_enable_device()
166 zdev->fmb = NULL; in zpci_fmb_enable_device()
178 if (!zdev->fmb) in zpci_fmb_disable_device()
187 kmem_cache_free(zdev_fmb_cache, zdev->fmb); in zpci_fmb_disable_device()
188 zdev->fmb = NULL; in zpci_fmb_disable_device()
/linux-5.19.10/arch/s390/include/asm/ !
Dpci.h176 struct zpci_fmb *fmb; member