Searched refs:dev_dmat (Results 1 – 4 of 4) sorted by relevance
/linux-2.4.37.9/drivers/scsi/sym53c8xx_2/ |
D | sym_malloc.c | 313 static __inline m_pool_p ___get_dma_pool(m_pool_ident_t dev_dmat) in ___get_dma_pool() argument 317 mp && !sym_m_pool_match(mp->dev_dmat, dev_dmat); in ___get_dma_pool() 323 static m_pool_p ___cre_dma_pool(m_pool_ident_t dev_dmat) in ___cre_dma_pool() argument 329 mp->dev_dmat = dev_dmat; in ___cre_dma_pool() 364 void *__sym_calloc_dma_unlocked(m_pool_ident_t dev_dmat, int size, char *name) in __sym_calloc_dma_unlocked() argument 369 mp = ___get_dma_pool(dev_dmat); in __sym_calloc_dma_unlocked() 371 mp = ___cre_dma_pool(dev_dmat); in __sym_calloc_dma_unlocked() 386 __sym_mfree_dma_unlocked(m_pool_ident_t dev_dmat, void *m, int size, char *name) in __sym_mfree_dma_unlocked() argument 390 mp = ___get_dma_pool(dev_dmat); in __sym_mfree_dma_unlocked() 403 u32 __vtobus_unlocked(m_pool_ident_t dev_dmat, void *m) in __vtobus_unlocked() argument [all …]
|
D | sym_glue.h | 582 vaddr = pci_alloc_consistent(mp->dev_dmat,SYM_MEM_CLUSTER_SIZE, &baddr); in sym_m_get_dma_mem_cluster() 592 pci_free_consistent(mp->dev_dmat, SYM_MEM_CLUSTER_SIZE, in sym_m_free_dma_mem_cluster() 600 void *__sym_calloc_dma(m_pool_ident_t dev_dmat, int size, char *name); 601 void __sym_mfree_dma(m_pool_ident_t dev_dmat, void *m, int size, char *name); 602 m_addr_t __vtobus(m_pool_ident_t dev_dmat, void *m);
|
D | sym_hipd.h | 1385 m_pool_ident_t dev_dmat; /* Identifies the pool (see above) */ member 1416 void *__sym_calloc_dma_unlocked(m_pool_ident_t dev_dmat, int size, char *name); 1418 __sym_mfree_dma_unlocked(m_pool_ident_t dev_dmat, void *m,int size, char *name); 1419 u32 __vtobus_unlocked(m_pool_ident_t dev_dmat, void *m);
|
D | sym_glue.c | 188 void *__sym_calloc_dma(m_pool_ident_t dev_dmat, int size, char *name) in __sym_calloc_dma() argument 193 m = __sym_calloc_dma_unlocked(dev_dmat, size, name); in __sym_calloc_dma() 198 void __sym_mfree_dma(m_pool_ident_t dev_dmat, void *m, int size, char *name) in __sym_mfree_dma() argument 202 __sym_mfree_dma_unlocked(dev_dmat, m, size, name); in __sym_mfree_dma() 206 m_addr_t __vtobus(m_pool_ident_t dev_dmat, void *m) in __vtobus() argument 211 b = __vtobus_unlocked(dev_dmat, m); in __vtobus()
|