scatterlist_32.h 681 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _I386_SCATTERLIST_H
#define _I386_SCATTERLIST_H

J
Jean Delvare 已提交
4 5
#include <asm/types.h>

L
Linus Torvalds 已提交
6
struct scatterlist {
J
Jens Axboe 已提交
7 8 9
#ifdef CONFIG_DEBUG_SG
    unsigned long	sg_magic;
#endif
J
Jens Axboe 已提交
10
    unsigned long	page_link;
L
Linus Torvalds 已提交
11 12 13 14 15
    unsigned int	offset;
    dma_addr_t		dma_address;
    unsigned int	length;
};

J
Jens Axboe 已提交
16 17
#define ARCH_HAS_SG_CHAIN

L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28
/* These macros should be used after a pci_map_sg call has been done
 * to get bus addresses of each of the SG entries and their lengths.
 * You should only work with the number of sg entries pci_map_sg
 * returns.
 */
#define sg_dma_address(sg)	((sg)->dma_address)
#define sg_dma_len(sg)		((sg)->length)

#define ISA_DMA_THRESHOLD (0x00ffffff)

#endif /* !(_I386_SCATTERLIST_H) */