i2o_block.h 3.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/*
 *	Block OSM structures/API
 *
 * 	Copyright (C) 1999-2002	Red Hat Software
 *
 *	Written by Alan Cox, Building Number Three Ltd
 *
 *	This program is free software; you can redistribute it and/or modify it
 *	under the terms of the GNU General Public License as published by the
 *	Free Software Foundation; either version 2 of the License, or (at your
 *	option) any later version.
 *
 *	This program is distributed in the hope that it will be useful, but
 *	WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *	General Public License for more details.
 *
 *	For the purpose of avoiding doubt the preferred form of the work
 *	for making modifications shall be a standards compliant form such
 *	gzipped tar and not one requiring a proprietary or patent encumbered
 *	tool to unpack.
 *
 *	Fixes/additions:
 *		Steve Ralston:
 *			Multiple device handling error fixes,
 *			Added a queue depth.
 *		Alan Cox:
 *			FC920 has an rmw bug. Dont or in the end marker.
 *			Removed queue walk, fixed for 64bitness.
 *			Rewrote much of the code over time
 *			Added indirect block lists
 *			Handle 64K limits on many controllers
 *			Don't use indirects on the Promise (breaks)
 *			Heavily chop down the queue depths
 *		Deepak Saxena:
 *			Independent queues per IOP
 *			Support for dynamic device creation/deletion
 *			Code cleanup
 *	    		Support for larger I/Os through merge* functions
 *			(taken from DAC960 driver)
 *		Boji T Kannanthanam:
 *			Set the I2O Block devices to be detected in increasing
 *			order of TIDs during boot.
 *			Search and set the I2O block device that we boot off
 *			from as the first device to be claimed (as /dev/i2o/hda)
 *			Properly attach/detach I2O gendisk structure from the
 *			system gendisk list. The I2O block devices now appear in
 *			/proc/partitions.
 *		Markus Lidel <Markus.Lidel@shadowconnect.com>:
 *			Minor bugfixes for 2.6.
 */

#ifndef I2O_BLOCK_OSM_H
#define I2O_BLOCK_OSM_H

#define I2O_BLOCK_RETRY_TIME HZ/4
#define I2O_BLOCK_MAX_OPEN_REQUESTS 50

59 60 61 62 63 64
/* request queue sizes */
#define I2O_BLOCK_REQ_MEMPOOL_SIZE		32

#define KERNEL_SECTOR_SHIFT 9
#define KERNEL_SECTOR_SIZE (1 << KERNEL_SECTOR_SHIFT)

L
Linus Torvalds 已提交
65 66
/* I2O Block OSM mempool struct */
struct i2o_block_mempool {
67
	struct kmem_cache *slab;
68
	mempool_t *pool;
L
Linus Torvalds 已提交
69 70 71 72 73 74
};

/* I2O Block device descriptor */
struct i2o_block_device {
	struct i2o_device *i2o_dev;	/* pointer to I2O device */
	struct gendisk *gd;
75
	spinlock_t lock;	/* queue lock */
L
Lucas De Marchi 已提交
76
	struct list_head open_queue;	/* list of transferred, but unfinished
L
Linus Torvalds 已提交
77 78 79
					   requests */
	unsigned int open_queue_depth;	/* number of requests in the queue */

80 81
	int rcache;		/* read cache flags */
	int wcache;		/* write cache flags */
L
Linus Torvalds 已提交
82
	int flags;
83 84
	u16 power;		/* power state */
	int media_change_flag;	/* media changed flag */
L
Linus Torvalds 已提交
85 86 87
};

/* I2O Block device request */
88
struct i2o_block_request {
L
Linus Torvalds 已提交
89
	struct list_head queue;
90
	struct request *req;	/* corresponding request */
L
Linus Torvalds 已提交
91
	struct i2o_block_device *i2o_blk_dev;	/* I2O block device */
92 93 94
	struct device *dev;	/* device used for DMA */
	int sg_nents;		/* number of SG elements */
	struct scatterlist sg_table[I2O_MAX_PHYS_SEGMENTS];	/* SG table */
L
Linus Torvalds 已提交
95 96 97
};

/* I2O Block device delayed request */
98
struct i2o_block_delayed_request {
D
David Howells 已提交
99
	struct delayed_work work;
L
Linus Torvalds 已提交
100 101 102 103
	struct request_queue *queue;
};

#endif