Home
last modified time | relevance | path

Searched refs:phys (Results 126 – 150 of 1789) sorted by relevance

12345678910>>...72

/openbmc/u-boot/arch/arm/mach-mvebu/armada3700/
H A Dcpu.c31 .phys = 0x0UL,
39 .phys = 0xd0000000UL,
47 .phys = 0xe8000000UL,
/openbmc/linux/arch/s390/kernel/
H A Dabs_lowcore.c11 unsigned long phys = __pa(lc); in abs_lowcore_map() local
15 rc = __vmem_map_4k_page(addr, phys, PAGE_KERNEL, alloc); in abs_lowcore_map()
32 phys += PAGE_SIZE; in abs_lowcore_map()
/openbmc/linux/drivers/net/ethernet/hisilicon/
H A Dhip04_eth.c420 val = phys >> PPE_BUF_SIZE_SHIFT; in hip04_set_recv_desc()
512 dma_addr_t phys; in hip04_mac_start_xmit() local
528 priv->tx_phys[tx_head] = phys; in hip04_mac_start_xmit()
545 hip04_set_xmit_desc(priv, phys); in hip04_mac_start_xmit()
583 dma_addr_t phys; in hip04_rx_poll() local
629 phys = dma_map_single(priv->dev, buf, in hip04_rx_poll()
634 priv->rx_phys[priv->rx_head] = phys; in hip04_rx_poll()
635 hip04_set_recv_desc(priv, phys); in hip04_rx_poll()
735 dma_addr_t phys; in hip04_mac_open() local
742 priv->rx_phys[i] = phys; in hip04_mac_open()
[all …]
/openbmc/linux/drivers/iommu/
H A Ddma-iommu.c39 phys_addr_t phys; member
416 msi_page->phys = start; in cookie_init_hw_msi_region()
968 phys_addr_t phys; in iommu_dma_sync_single_for_cpu() local
977 if (is_swiotlb_buffer(dev, phys)) in iommu_dma_sync_single_for_cpu()
984 phys_addr_t phys; in iommu_dma_sync_single_for_device() local
1059 phys = swiotlb_tbl_map_single(dev, phys, size, aligned_size, in iommu_dma_map_page()
1062 if (phys == DMA_MAPPING_ERROR) in iommu_dma_map_page()
1091 phys_addr_t phys; in iommu_dma_unmap_page() local
1094 if (WARN_ON(!phys)) in iommu_dma_unmap_page()
1677 if (msi_page->phys == msi_addr) in iommu_dma_get_msi_page()
[all …]
/openbmc/u-boot/arch/arm/mach-zynqmp/
H A Dcpu.c42 .phys = 0x80000000UL,
49 .phys = 0xf8000000UL,
56 .phys = 0x400000000UL,
63 .phys = 0x1000000000UL,
77 zynqmp_mem_map[banks].phys = 0xffe00000UL; in mem_map_fill()
91 zynqmp_mem_map[banks].phys = gd->bd->bi_dram[i].start; in mem_map_fill()
/openbmc/linux/drivers/input/joystick/
H A Dfsia6b.c59 char phys[32]; member
152 snprintf(fsia6b->phys, sizeof(fsia6b->phys), "%s/input0", serio->phys); in fsia6b_serio_connect()
155 input_dev->phys = fsia6b->phys; in fsia6b_serio_connect()
H A Dcobra.c34 char phys[2][32]; member
161 " Contact vojtech@ucw.cz\n", i, gameport->phys, (data[i] >> 2) & 7); in cobra_connect()
183 snprintf(cobra->phys[i], sizeof(cobra->phys[i]), in cobra_connect()
184 "%s/input%d", gameport->phys, i); in cobra_connect()
187 input_dev->phys = cobra->phys[i]; in cobra_connect()
H A Dpxrc.c27 char phys[64]; member
175 usb_make_path(udev, pxrc->phys, sizeof(pxrc->phys)); in pxrc_probe()
176 strlcat(pxrc->phys, "/input0", sizeof(pxrc->phys)); in pxrc_probe()
177 pxrc->input->phys = pxrc->phys; in pxrc_probe()
H A Dinteract.c41 char phys[32]; member
224 gameport->phys, i, data[0], data[1], data[2]); in interact_connect()
232 snprintf(interact->phys, sizeof(interact->phys), "%s/input0", gameport->phys); in interact_connect()
238 input_dev->phys = interact->phys; in interact_connect()
/openbmc/linux/drivers/input/mouse/
H A Dlifebook.c24 char phys[32]; member
259 strcmp(psmouse->ps2dev.serio->phys, desired_serio_phys)) in lifebook_detect()
282 snprintf(priv->phys, sizeof(priv->phys), in lifebook_create_relative_device()
283 "%s/input1", psmouse->ps2dev.serio->phys); in lifebook_create_relative_device()
285 dev2->phys = priv->phys; in lifebook_create_relative_device()
/openbmc/linux/Documentation/devicetree/bindings/ata/
H A Dmarvell.txt10 - phys : List of phandles to sata phys
19 phys = <&sata_phy0>, <&sata_phy1>;
/openbmc/linux/arch/arm64/include/asm/
H A Dmmu.h66 extern void __iomem *early_io_map(phys_addr_t phys, unsigned long virt);
67 extern void create_mapping_noalloc(phys_addr_t phys, unsigned long virt,
69 extern void create_pgd_mapping(struct mm_struct *mm, phys_addr_t phys,
H A Dassembler.h615 .macro phys_to_ttbr, ttbr, phys
617 orr \ttbr, \phys, \phys, lsr #46
620 mov \ttbr, \phys
624 .macro phys_to_pte, pte, phys
630 orr \pte, \phys, \phys, lsr #36
633 mov \pte, \phys
637 .macro pte_to_phys, phys, pte
638 and \phys, \pte, #PTE_ADDR_MASK
640 orr \phys, \phys, \phys, lsl #PTE_ADDR_HIGH_SHIFT
641 and \phys, \phys, GENMASK_ULL(PHYS_MASK_SHIFT - 1, PAGE_SHIFT)
/openbmc/u-boot/drivers/phy/
H A Dphy-stm32-usbphyc.c61 } phys[MAX_PHYS]; member
125 if (usbphyc->phys[i].init) in stm32_usbphyc_is_init()
137 if (usbphyc->phys[i].powered) in stm32_usbphyc_is_powered()
147 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id; in stm32_usbphyc_phy_init()
186 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id; in stm32_usbphyc_phy_exit()
212 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id; in stm32_usbphyc_phy_power_on()
241 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id; in stm32_usbphyc_phy_power_off()
360 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + i; in stm32_usbphyc_probe()
/openbmc/linux/drivers/usb/mtu3/
H A Dmtu3_plat.c81 ret = phy_init(ssusb->phys[i]); in ssusb_phy_init()
89 phy_exit(ssusb->phys[i - 1]); in ssusb_phy_init()
99 phy_exit(ssusb->phys[i]); in ssusb_phy_exit()
110 ret = phy_power_on(ssusb->phys[i]); in ssusb_phy_power_on()
118 phy_power_off(ssusb->phys[i - 1]); in ssusb_phy_power_on()
128 phy_power_off(ssusb->phys[i]); in ssusb_phy_power_off()
246 ssusb->phys = devm_kcalloc(dev, ssusb->num_phys, in get_ssusb_rscs()
247 sizeof(*ssusb->phys), GFP_KERNEL); in get_ssusb_rscs()
248 if (!ssusb->phys) in get_ssusb_rscs()
256 if (IS_ERR(ssusb->phys[i])) { in get_ssusb_rscs()
[all …]
/openbmc/linux/arch/sh/mm/
H A Dpmb.c158 if ((phys < pmbe->ppn) || (phys >= (pmbe->ppn + pmbe->size))) in pmb_mapping_exists()
335 int pmb_bolt_mapping(unsigned long vaddr, phys_addr_t phys, in pmb_bolt_mapping() argument
347 if (pmb_mapping_exists(vaddr, phys, size)) in pmb_bolt_mapping()
363 pmbe = pmb_alloc(vaddr, phys, pmb_flags | in pmb_bolt_mapping()
376 phys += pmbe->size; in pmb_bolt_mapping()
435 last_addr = phys + size; in pmb_remap_caller()
437 offset = phys & ~align_mask; in pmb_remap_caller()
438 phys &= align_mask; in pmb_remap_caller()
439 aligned = ALIGN(last_addr, pmb_sizes[i].size) - phys; in pmb_remap_caller()
451 area->phys_addr = phys; in pmb_remap_caller()
[all …]
/openbmc/linux/drivers/scsi/aacraid/
H A Dcomminit.c63 dma_addr_t phys; in aac_alloc_comm() local
87 base = dma_alloc_coherent(&dev->pdev->dev, size, &phys, GFP_KERNEL); in aac_alloc_comm()
94 dev->comm_phys = phys; in aac_alloc_comm()
101 dev->host_rrq_pa = phys + fibsize; in aac_alloc_comm()
106 dev->init_pa = phys + fibsize + host_rrq_size; in aac_alloc_comm()
158 init->r7.adapter_fibs_physical_address = cpu_to_le32((u32)phys); in aac_alloc_comm()
227 phys = (dma_addr_t)((ulong)phys + fibsize + host_rrq_size + in aac_alloc_comm()
235 phys = phys + align; in aac_alloc_comm()
241 init->r7.comm_header_address = cpu_to_le32((u32)phys); in aac_alloc_comm()
246 phys = phys + commsize; in aac_alloc_comm()
[all …]
/openbmc/linux/kernel/
H A Dup.c58 int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys) in smp_call_on_cpu() argument
65 if (phys) in smp_call_on_cpu()
68 if (phys) in smp_call_on_cpu()
/openbmc/linux/arch/arm64/boot/dts/marvell/
H A Darmada-8040-mcbin.dtsi186 phys = <&cp0_comphy0 0>, <&cp0_comphy1 0>,
239 phys = <&cp0_comphy4 0>;
247 phys = <&cp0_comphy5 1>;
268 phys = <&cp0_utmi0>;
276 phys = <&cp0_utmi1>;
288 phys = <&cp1_comphy4 0>;
298 phys = <&cp1_comphy0 1>;
308 phys = <&cp1_comphy5 2>;
347 phys = <&cp1_comphy1 0>;
353 phys = <&cp1_comphy3 1>;
[all …]
/openbmc/linux/sound/soc/qcom/qdsp6/
H A Dq6apm.c246 buf[0].phys = phys; in q6apm_map_memory_regions()
251 buf[cnt].phys = buf[0].phys + (cnt * period_sz); in q6apm_map_memory_regions()
478 read_buffer->buf_addr_lsw = lower_32_bits(ab->phys); in q6apm_read()
479 read_buffer->buf_addr_msw = upper_32_bits(ab->phys); in q6apm_read()
507 phys_addr_t phys; in graph_callback() local
521 phys = graph->rx_data.buf[token].phys; in graph_callback()
524 if (lower_32_bits(phys) == done->buf_addr_lsw && in graph_callback()
525 upper_32_bits(phys) == done->buf_addr_msw) { in graph_callback()
554 phys = graph->tx_data.buf[hdr->token].phys; in graph_callback()
557 if (upper_32_bits(phys) == rd_done->buf_addr_msw && in graph_callback()
[all …]
/openbmc/linux/drivers/usb/dwc3/
H A Ddwc3-meson-g12a.c255 struct phy *phys[PHY_COUNT]; member
329 if (!priv->phys[i]) in dwc3_meson_g12a_usb2_init()
452 if (!priv->phys[i]) in dwc3_meson_g12a_get_phys()
455 if (IS_ERR(priv->phys[i])) in dwc3_meson_g12a_get_phys()
487 if (!priv->phys[USB2_OTG_PHY]) in dwc3_meson_g12a_otg_mode_set()
812 phy_power_off(priv->phys[i]); in dwc3_meson_g12a_probe()
816 phy_exit(priv->phys[i]); in dwc3_meson_g12a_probe()
843 phy_power_off(priv->phys[i]); in dwc3_meson_g12a_remove()
844 phy_exit(priv->phys[i]); in dwc3_meson_g12a_remove()
887 phy_power_off(priv->phys[i]); in dwc3_meson_g12a_suspend()
[all …]
/openbmc/linux/arch/mips/cavium-octeon/
H A Dflash_setup.c98 flash_map.phys = region_cfg.s.base << 16; in octeon_flash_probe()
99 flash_map.size = 0x1fc00000 - flash_map.phys; in octeon_flash_probe()
102 flash_map.virt = ioremap(flash_map.phys, flash_map.size); in octeon_flash_probe()
104 "0x%08llx\n", flash_map.size >> 20, flash_map.phys); in octeon_flash_probe()
/openbmc/linux/drivers/input/tablet/
H A Dacecad.c27 char phys[64]; member
163 usb_make_path(dev, acecad->phys, sizeof(acecad->phys)); in usb_acecad_probe()
164 strlcat(acecad->phys, "/input0", sizeof(acecad->phys)); in usb_acecad_probe()
167 input_dev->phys = acecad->phys; in usb_acecad_probe()
/openbmc/linux/drivers/phy/marvell/
H A Dphy-berlin-sata.c61 struct phy_berlin_desc **phys; member
167 if (priv->phys[i]->index == args->args[0]) in phy_berlin_sata_phy_xlate()
174 return priv->phys[i]->phy; in phy_berlin_sata_phy_xlate()
219 priv->phys = devm_kcalloc(dev, priv->nphys, sizeof(*priv->phys), in phy_berlin_sata_probe()
221 if (!priv->phys) in phy_berlin_sata_probe()
266 priv->phys[i++] = phy_desc; in phy_berlin_sata_probe()
/openbmc/linux/Documentation/devicetree/bindings/net/
H A Dmicrochip,sparx5-switch.yaml94 phys:
116 - phys
157 phys = <&serdes 13>;
166 phys = <&serdes 29>;
175 phys = <&serdes 30>;
184 phys = <&serdes 31>;
193 phys = <&serdes 32>;
203 phys = <&serdes 0>;

12345678910>>...72