blob: e08d3d775b08aff2fa7029aa592744cc78ed5ad4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: scatterlist.h,v 1.8 2001/12/17 07:05:15 davem Exp $ */
2#ifndef _SPARC_SCATTERLIST_H
3#define _SPARC_SCATTERLIST_H
4
5#include <linux/types.h>
6
7struct scatterlist {
Jens Axboed6ec0842007-10-22 20:01:06 +02008#ifdef CONFIG_DEBUG_SG
9 unsigned long sg_magic;
10#endif
Jens Axboe18dabf42007-10-22 19:57:20 +020011 unsigned long page_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 unsigned int offset;
13
14 unsigned int length;
15
16 __u32 dvma_address; /* A place to hang host-specific addresses at. */
17 __u32 dvma_length;
18};
19
20#define sg_dma_address(sg) ((sg)->dvma_address)
21#define sg_dma_len(sg) ((sg)->dvma_length)
22
23#define ISA_DMA_THRESHOLD (~0UL)
24
Jens Axboe0912a5d2007-05-14 15:44:38 +020025#define ARCH_HAS_SG_CHAIN
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif /* !(_SPARC_SCATTERLIST_H) */