scatterlist.h 985 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef _ASM_IA64_SCATTERLIST_H
  2. #define _ASM_IA64_SCATTERLIST_H
  3. /*
  4. * Modified 1998-1999, 2001-2002, 2004
  5. * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
  6. */
  7. #include <asm/types.h>
  8. struct scatterlist {
  9. #ifdef CONFIG_DEBUG_SG
  10. unsigned long sg_magic;
  11. #endif
  12. unsigned long page_link;
  13. unsigned int offset;
  14. unsigned int length; /* buffer length */
  15. dma_addr_t dma_address;
  16. unsigned int dma_length;
  17. };
  18. /*
  19. * It used to be that ISA_DMA_THRESHOLD had something to do with the
  20. * DMA-limits of ISA-devices. Nowadays, its only remaining use (apart
  21. * from the aha1542.c driver, which isn't 64-bit clean anyhow) is to
  22. * tell the block-layer (via BLK_BOUNCE_ISA) what the max. physical
  23. * address of a page is that is allocated with GFP_DMA. On IA-64,
  24. * that's 4GB - 1.
  25. */
  26. #define ISA_DMA_THRESHOLD 0xffffffff
  27. #define sg_dma_len(sg) ((sg)->dma_length)
  28. #define sg_dma_address(sg) ((sg)->dma_address)
  29. #define ARCH_HAS_SG_CHAIN
  30. #endif /* _ASM_IA64_SCATTERLIST_H */