HomeSort by: relevance | last modified time | path
    Searched refs:newtag (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/mips/fdt/
fdt_dma_machdep.c 54 bus_dma_tag_t newtag; local in function:fdtbus_dma_tag_create
67 &newtag, 0);
70 return newtag;
  /src/sys/arch/mips/mips/
bus_dma.c 1335 bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags)
1345 *newtag = tag;
1352 if ((*newtag = kmem_alloc(sizeof(struct mips_bus_dma_tag),
1356 **newtag = *tag;
1357 (*newtag)->_tag_needs_free = 1;
1360 (*newtag)->_bounce_thresh = max_addr;
1362 (*newtag)->_bounce_alloc_hi = max_addr;
1364 (*newtag)->_bounce_alloc_lo = min_addr;
1365 (*newtag)->_wbase +=
1366 (*newtag)->_bounce_alloc_lo - tag->_bounce_alloc_lo
    [all...]
  /src/sys/arch/x86/x86/
bus_dma.c 172 bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags);
1329 bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags)
1335 *newtag = tag;
1342 if ((*newtag = malloc(sizeof(struct x86_bus_dma_tag), M_DMAMAP,
1346 **newtag = *tag;
1347 (*newtag)->_tag_needs_free = 1;
1350 (*newtag)->_bounce_thresh = max_addr;
1352 (*newtag)->_bounce_alloc_hi = max_addr;
1354 (*newtag)->_bounce_alloc_lo = min_addr;
1628 bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags
    [all...]
  /src/sys/arch/arm/arm32/
bus_dma.c 1956 bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags)
1987 *newtag = tag;
1995 if ((*newtag = kmem_intr_zalloc(tagsize,
1999 dr = (void *)(*newtag + 1);
2000 **newtag = *tag;
2001 (*newtag)->_tag_needs_free = 1;
2002 (*newtag)->_ranges = dr;
2003 (*newtag)->_nranges = nranges;
  /src/sys/arch/riscv/riscv/
bus_dma.c 1856 bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags)
1887 *newtag = tag;
1895 if ((*newtag = kmem_intr_zalloc(tagsize,
1899 dr = (void *)(*newtag + 1);
1900 **newtag = *tag;
1901 (*newtag)->_tag_needs_free = 1;
1902 (*newtag)->_ranges = dr;
1903 (*newtag)->_nranges = nranges;

Completed in 17 milliseconds