Home
last modified time | relevance | path

Searched refs:mapped_addr (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/net/ethernet/cavium/liquidio/
H A Docteon_mem_ops.c44 octeon_pci_fastwrite(struct octeon_device *oct, u8 __iomem *mapped_addr, in octeon_pci_fastwrite() argument
47 while ((len) && ((unsigned long)mapped_addr) & 7) { in octeon_pci_fastwrite()
48 writeb(*(hostbuf++), mapped_addr++); in octeon_pci_fastwrite()
55 writeq(*((u64 *)hostbuf), mapped_addr); in octeon_pci_fastwrite()
56 mapped_addr += 8; in octeon_pci_fastwrite()
64 writeb(*(hostbuf++), mapped_addr++); in octeon_pci_fastwrite()
68 octeon_pci_fastread(struct octeon_device *oct, u8 __iomem *mapped_addr, in octeon_pci_fastread() argument
71 while ((len) && ((unsigned long)mapped_addr) & 7) { in octeon_pci_fastread()
72 *(hostbuf++) = readb(mapped_addr++); in octeon_pci_fastread()
79 *((u64 *)hostbuf) = readq(mapped_addr); in octeon_pci_fastread()
[all …]
/linux/arch/x86/kernel/
H A Dshstk.c105 unsigned long mapped_addr, unused; in alloc_shstk() local
111 mapped_addr = do_mmap(NULL, addr, size, PROT_READ, flags, in alloc_shstk()
115 if (!set_res_tok || IS_ERR_VALUE(mapped_addr)) in alloc_shstk()
118 if (create_rstor_token(mapped_addr + token_offset, NULL)) { in alloc_shstk()
119 vm_munmap(mapped_addr, size); in alloc_shstk()
124 return mapped_addr; in alloc_shstk()
/linux/include/rdma/
H A Diw_portmap.h59 struct sockaddr_storage *mapped_addr, u8 nl_client,
62 struct sockaddr_storage *mapped_addr);
/linux/mm/
H A Dmmap.c105 unsigned long mapped_addr; in check_brk_limits() local
107 mapped_addr = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED); in check_brk_limits()
108 if (IS_ERR_VALUE(mapped_addr)) in check_brk_limits()
109 return mapped_addr; in check_brk_limits()
/linux/drivers/net/ethernet/mediatek/
H A Dmtk_eth_soc.c1284 struct mtk_tx_dma *txd, dma_addr_t mapped_addr, in setup_tx_buf() argument
1288 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr); in setup_tx_buf()
1292 txd->txd3 = mapped_addr; in setup_tx_buf()
1294 dma_unmap_addr_set(tx_buf, dma_addr1, mapped_addr); in setup_tx_buf()
1298 txd->txd1 = mapped_addr; in setup_tx_buf()
1300 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr); in setup_tx_buf()