2005-04-16 18:20:36 -04:00
|
|
|
/* $Id: scatterlist.h,v 1.11 2001/12/17 07:05:15 davem Exp $ */
|
|
|
|
#ifndef _SPARC64_SCATTERLIST_H
|
|
|
|
#define _SPARC64_SCATTERLIST_H
|
|
|
|
|
|
|
|
#include <asm/page.h>
|
2007-03-06 05:45:12 -05:00
|
|
|
#include <asm/types.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
struct scatterlist {
|
2007-10-22 14:01:06 -04:00
|
|
|
#ifdef CONFIG_DEBUG_SG
|
|
|
|
unsigned long sg_magic;
|
|
|
|
#endif
|
2007-10-22 13:57:20 -04:00
|
|
|
unsigned long page_link;
|
2005-04-16 18:20:36 -04:00
|
|
|
unsigned int offset;
|
|
|
|
|
|
|
|
unsigned int length;
|
|
|
|
|
|
|
|
dma_addr_t dma_address;
|
|
|
|
__u32 dma_length;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define sg_dma_address(sg) ((sg)->dma_address)
|
|
|
|
#define sg_dma_len(sg) ((sg)->dma_length)
|
|
|
|
|
|
|
|
#define ISA_DMA_THRESHOLD (~0UL)
|
|
|
|
|
2007-08-07 03:37:10 -04:00
|
|
|
#define ARCH_HAS_SG_CHAIN
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#endif /* !(_SPARC64_SCATTERLIST_H) */
|