blob: 45b16f1072be2ac530087d4ce30336378239833c [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 Axboe18dabf42007-10-22 19:57:20 +02008 unsigned long page_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 unsigned int offset;
10
11 unsigned int length;
12
13 __u32 dvma_address; /* A place to hang host-specific addresses at. */
14 __u32 dvma_length;
15};
16
17#define sg_dma_address(sg) ((sg)->dvma_address)
18#define sg_dma_len(sg) ((sg)->dvma_length)
19
20#define ISA_DMA_THRESHOLD (~0UL)
21
Jens Axboe0912a5d2007-05-14 15:44:38 +020022#define ARCH_HAS_SG_CHAIN
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#endif /* !(_SPARC_SCATTERLIST_H) */