- Update Xen patches to 3.3-rc5 and c/s 1157.
[linux-flexiantxendom0-3.2.10.git] / drivers / xen / blkfront / block.h
1 /******************************************************************************
2  * block.h
3  * 
4  * Shared definitions between all levels of XenLinux Virtual block devices.
5  * 
6  * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7  * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8  * Copyright (c) 2004-2005, Christian Limpach
9  * 
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License version 2
12  * as published by the Free Software Foundation; or, when distributed
13  * separately from the Linux kernel or incorporated into other
14  * software packages, subject to the following license:
15  * 
16  * Permission is hereby granted, free of charge, to any person obtaining a copy
17  * of this source file (the "Software"), to deal in the Software without
18  * restriction, including without limitation the rights to use, copy, modify,
19  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
20  * and to permit persons to whom the Software is furnished to do so, subject to
21  * the following conditions:
22  * 
23  * The above copyright notice and this permission notice shall be included in
24  * all copies or substantial portions of the Software.
25  * 
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32  * IN THE SOFTWARE.
33  */
34
35 #ifndef __XEN_DRIVERS_BLOCK_H__
36 #define __XEN_DRIVERS_BLOCK_H__
37
38 #include <linux/version.h>
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/sched.h>
42 #include <linux/slab.h>
43 #include <linux/string.h>
44 #include <linux/atomic.h>
45 #include <linux/errno.h>
46 #include <linux/fs.h>
47 #include <linux/hdreg.h>
48 #include <linux/blkdev.h>
49 #include <linux/major.h>
50 #include <asm/hypervisor.h>
51 #include <xen/xenbus.h>
52 #include <xen/gnttab.h>
53 #include <xen/interface/xen.h>
54 #include <xen/interface/io/blkif.h>
55 #include <xen/interface/io/ring.h>
56 #include <asm/io.h>
57 #include <asm/uaccess.h>
58
59 #define DPRINTK(_f, _a...) pr_debug(_f, ## _a)
60
61 #if 0
62 #define DPRINTK_IOCTL(_f, _a...) pr_alert(_f, ## _a)
63 #else
64 #define DPRINTK_IOCTL(_f, _a...) ((void)0)
65 #endif
66
67 struct xlbd_type_info
68 {
69         int partn_shift;
70         int disks_per_major;
71         char *devname;
72         char *diskname;
73 };
74
75 struct xlbd_major_info
76 {
77         int major;
78         int index;
79         int usage;
80         struct xlbd_type_info *type;
81         struct xlbd_minor_state *minors;
82 };
83
84 struct blk_shadow {
85         blkif_request_t req;
86         struct request *request;
87         unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST];
88 };
89
90 #define BLK_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE)
91
92 /*
93  * We have one of these per vbd, whether ide, scsi or 'other'.  They
94  * hang in private_data off the gendisk structure. We may end up
95  * putting all kinds of interesting stuff here :-)
96  */
97 struct blkfront_info
98 {
99         struct xenbus_device *xbdev;
100         struct gendisk *gd;
101         int vdevice;
102         blkif_vdev_t handle;
103         int connected;
104         int ring_ref;
105         blkif_front_ring_t ring;
106         spinlock_t io_lock;
107         struct scatterlist sg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
108         unsigned int irq;
109         struct xlbd_major_info *mi;
110         struct request_queue *rq;
111         struct work_struct work;
112         struct gnttab_free_callback callback;
113         struct blk_shadow shadow[BLK_RING_SIZE];
114         unsigned long shadow_free;
115         unsigned int feature_flush;
116         unsigned int flush_op;
117         bool feature_discard;
118         bool feature_secdiscard;
119         unsigned int discard_granularity;
120         unsigned int discard_alignment;
121         int is_ready;
122
123         /**
124          * The number of people holding this device open.  We won't allow a
125          * hot-unplug unless this is 0.
126          */
127         int users;
128 };
129
130 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
131 extern int blkif_open(struct inode *inode, struct file *filep);
132 extern int blkif_release(struct inode *inode, struct file *filep);
133 extern int blkif_ioctl(struct inode *inode, struct file *filep,
134                        unsigned command, unsigned long argument);
135 #else
136 extern int blkif_open(struct block_device *bdev, fmode_t mode);
137 extern int blkif_release(struct gendisk *disk, fmode_t mode);
138 extern int blkif_ioctl(struct block_device *bdev, fmode_t mode,
139                        unsigned command, unsigned long argument);
140 #endif
141 extern int blkif_getgeo(struct block_device *, struct hd_geometry *);
142 extern int blkif_check(dev_t dev);
143 extern int blkif_revalidate(dev_t dev);
144 extern void do_blkif_request (struct request_queue *rq);
145
146 /* Virtual block-device subsystem. */
147 /* Note that xlvbd_add doesn't call add_disk for you: you're expected
148    to call add_disk on info->gd once the disk is properly connected
149    up. */
150 int xlvbd_add(blkif_sector_t capacity, int device,
151               u16 vdisk_info, u16 sector_size, struct blkfront_info *info);
152 void xlvbd_del(struct blkfront_info *info);
153 void xlvbd_flush(struct blkfront_info *info);
154
155 #ifdef CONFIG_SYSFS
156 int xlvbd_sysfs_addif(struct blkfront_info *info);
157 void xlvbd_sysfs_delif(struct blkfront_info *info);
158 #else
159 static inline int xlvbd_sysfs_addif(struct blkfront_info *info)
160 {
161         return 0;
162 }
163
164 static inline void xlvbd_sysfs_delif(struct blkfront_info *info)
165 {
166         ;
167 }
168 #endif
169
170 /* Virtual cdrom block-device */
171 extern void register_vcd(struct blkfront_info *info);
172 extern void unregister_vcd(struct blkfront_info *info);
173
174 #endif /* __XEN_DRIVERS_BLOCK_H__ */