scatterlist.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.scatterlist.h 1.9 10/15/01 22:51:33 paulus
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef _PPC_SCATTERLIST_H
  6. #define _PPC_SCATTERLIST_H
  7. #include <asm/dma.h>
  8. struct scatterlist {
  9. char *address; /* Location data is to be transferred to,
  10.  * or NULL for highmem page */
  11. struct page * page; /* Location for highmem page, if any */
  12. unsigned int offset; /* for highmem, page offset */
  13. dma_addr_t dma_address; /* phys/bus dma address  */
  14. unsigned int length; /* length  */
  15. };
  16. /*
  17.  * These macros should be used after a pci_map_sg call has been done
  18.  * to get bus addresses of each of the SG entries and their lengths.
  19.  * You should only work with the number of sg entries pci_map_sg
  20.  * returns, or alternatively stop on the first sg_dma_len(sg) which
  21.  * is 0.
  22.  */
  23. #define sg_dma_address(sg)      ((sg)->dma_address)
  24. #define sg_dma_len(sg)          ((sg)->length)
  25. #endif /* !(_PPC_SCATTERLIST_H) */
  26. #endif /* __KERNEL__ */