2005-04-17 00:20:36 +02:00
|
|
|
/* $Id: scatterlist.h,v 1.8 2001/12/17 07:05:15 davem Exp $ */
|
|
|
|
#ifndef _SPARC_SCATTERLIST_H
|
|
|
|
#define _SPARC_SCATTERLIST_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
struct scatterlist {
|
2007-10-22 20:01:06 +02:00
|
|
|
#ifdef CONFIG_DEBUG_SG
|
|
|
|
unsigned long sg_magic;
|
|
|
|
#endif
|
2007-10-22 19:57:20 +02:00
|
|
|
unsigned long page_link;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned int offset;
|
|
|
|
|
|
|
|
unsigned int length;
|
|
|
|
|
|
|
|
__u32 dvma_address; /* A place to hang host-specific addresses at. */
|
|
|
|
__u32 dvma_length;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define sg_dma_address(sg) ((sg)->dvma_address)
|
|
|
|
#define sg_dma_len(sg) ((sg)->dvma_length)
|
|
|
|
|
|
|
|
#define ISA_DMA_THRESHOLD (~0UL)
|
|
|
|
|
2007-05-14 15:44:38 +02:00
|
|
|
#define ARCH_HAS_SG_CHAIN
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* !(_SPARC_SCATTERLIST_H) */
|