Linux 2.6.33.13
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / block / cciss.h
blobb8901fff9f8c788fa72f5e4cd49297f6563b11d0
1 #ifndef CCISS_H
2 #define CCISS_H
4 #include <linux/genhd.h>
5 #include <linux/mutex.h>
7 #include "cciss_cmd.h"
10 #define NWD_SHIFT 4
11 #define MAX_PART (1 << NWD_SHIFT)
13 #define IO_OK 0
14 #define IO_ERROR 1
15 #define IO_NEEDS_RETRY 3
17 #define VENDOR_LEN 8
18 #define MODEL_LEN 16
19 #define REV_LEN 4
21 struct ctlr_info;
22 typedef struct ctlr_info ctlr_info_t;
24 struct access_method {
25 void (*submit_command)(ctlr_info_t *h, CommandList_struct *c);
26 void (*set_intr_mask)(ctlr_info_t *h, unsigned long val);
27 unsigned long (*fifo_full)(ctlr_info_t *h);
28 unsigned long (*intr_pending)(ctlr_info_t *h);
29 unsigned long (*command_completed)(ctlr_info_t *h);
31 typedef struct _drive_info_struct
33 unsigned char LunID[8];
34 int usage_count;
35 struct request_queue *queue;
36 sector_t nr_blocks;
37 int block_size;
38 int heads;
39 int sectors;
40 int cylinders;
41 int raid_level; /* set to -1 to indicate that
42 * the drive is not in use/configured
44 int busy_configuring; /* This is set when a drive is being removed
45 * to prevent it from being opened or it's
46 * queue from being started.
48 struct device dev;
49 __u8 serial_no[16]; /* from inquiry page 0x83,
50 * not necc. null terminated.
52 char vendor[VENDOR_LEN + 1]; /* SCSI vendor string */
53 char model[MODEL_LEN + 1]; /* SCSI model string */
54 char rev[REV_LEN + 1]; /* SCSI revision string */
55 char device_initialized; /* indicates whether dev is initialized */
56 } drive_info_struct;
58 struct Cmd_sg_list {
59 SGDescriptor_struct *sgchain;
60 dma_addr_t sg_chain_dma;
61 int chain_block_size;
64 struct ctlr_info
66 int ctlr;
67 char devname[8];
68 char *product_name;
69 char firm_ver[4]; // Firmware version
70 struct pci_dev *pdev;
71 __u32 board_id;
72 void __iomem *vaddr;
73 unsigned long paddr;
74 int nr_cmds; /* Number of commands allowed on this controller */
75 CfgTable_struct __iomem *cfgtable;
76 int interrupts_enabled;
77 int major;
78 int max_commands;
79 int commands_outstanding;
80 int max_outstanding; /* Debug */
81 int num_luns;
82 int highest_lun;
83 int usage_count; /* number of opens all all minor devices */
84 /* Need space for temp sg list
85 * number of scatter/gathers supported
86 * number of scatter/gathers in chained block
88 struct scatterlist **scatter_list;
89 int maxsgentries;
90 int chainsize;
91 int max_cmd_sgentries;
92 struct Cmd_sg_list **cmd_sg_list;
94 # define DOORBELL_INT 0
95 # define PERF_MODE_INT 1
96 # define SIMPLE_MODE_INT 2
97 # define MEMQ_MODE_INT 3
98 unsigned int intr[4];
99 unsigned int msix_vector;
100 unsigned int msi_vector;
101 int cciss_max_sectors;
102 BYTE cciss_read;
103 BYTE cciss_write;
104 BYTE cciss_read_capacity;
106 // information about each logical volume
107 drive_info_struct *drv[CISS_MAX_LUN];
109 struct access_method access;
111 /* queue and queue Info */
112 struct hlist_head reqQ;
113 struct hlist_head cmpQ;
114 unsigned int Qdepth;
115 unsigned int maxQsinceinit;
116 unsigned int maxSG;
117 spinlock_t lock;
119 //* pointers to command and error info pool */
120 CommandList_struct *cmd_pool;
121 dma_addr_t cmd_pool_dhandle;
122 ErrorInfo_struct *errinfo_pool;
123 dma_addr_t errinfo_pool_dhandle;
124 unsigned long *cmd_pool_bits;
125 int nr_allocs;
126 int nr_frees;
127 int busy_configuring;
128 int busy_initializing;
129 int busy_scanning;
130 struct mutex busy_shutting_down;
132 /* This element holds the zero based queue number of the last
133 * queue to be started. It is used for fairness.
135 int next_to_run;
137 // Disk structures we need to pass back
138 struct gendisk *gendisk[CISS_MAX_LUN];
139 #ifdef CONFIG_CISS_SCSI_TAPE
140 void *scsi_ctlr; /* ptr to structure containing scsi related stuff */
141 /* list of block side commands the scsi error handling sucked up */
142 /* and saved for later processing */
143 #endif
144 unsigned char alive;
145 struct list_head scan_list;
146 struct completion scan_wait;
147 struct device dev;
150 /* Defining the diffent access_menthods */
152 * Memory mapped FIFO interface (SMART 53xx cards)
154 #define SA5_DOORBELL 0x20
155 #define SA5_REQUEST_PORT_OFFSET 0x40
156 #define SA5_REPLY_INTR_MASK_OFFSET 0x34
157 #define SA5_REPLY_PORT_OFFSET 0x44
158 #define SA5_INTR_STATUS 0x30
159 #define SA5_SCRATCHPAD_OFFSET 0xB0
161 #define SA5_CTCFG_OFFSET 0xB4
162 #define SA5_CTMEM_OFFSET 0xB8
164 #define SA5_INTR_OFF 0x08
165 #define SA5B_INTR_OFF 0x04
166 #define SA5_INTR_PENDING 0x08
167 #define SA5B_INTR_PENDING 0x04
168 #define FIFO_EMPTY 0xffffffff
169 #define CCISS_FIRMWARE_READY 0xffff0000 /* value in scratchpad register */
171 #define CISS_ERROR_BIT 0x02
173 #define CCISS_INTR_ON 1
174 #define CCISS_INTR_OFF 0
176 Send the command to the hardware
178 static void SA5_submit_command( ctlr_info_t *h, CommandList_struct *c)
180 #ifdef CCISS_DEBUG
181 printk("Sending %x - down to controller\n", c->busaddr );
182 #endif /* CCISS_DEBUG */
183 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
184 readl(h->vaddr + SA5_REQUEST_PORT_OFFSET);
185 h->commands_outstanding++;
186 if ( h->commands_outstanding > h->max_outstanding)
187 h->max_outstanding = h->commands_outstanding;
191 * This card is the opposite of the other cards.
192 * 0 turns interrupts on...
193 * 0x08 turns them off...
195 static void SA5_intr_mask(ctlr_info_t *h, unsigned long val)
197 if (val)
198 { /* Turn interrupts on */
199 h->interrupts_enabled = 1;
200 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
201 } else /* Turn them off */
203 h->interrupts_enabled = 0;
204 writel( SA5_INTR_OFF,
205 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
209 * This card is the opposite of the other cards.
210 * 0 turns interrupts on...
211 * 0x04 turns them off...
213 static void SA5B_intr_mask(ctlr_info_t *h, unsigned long val)
215 if (val)
216 { /* Turn interrupts on */
217 h->interrupts_enabled = 1;
218 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
219 } else /* Turn them off */
221 h->interrupts_enabled = 0;
222 writel( SA5B_INTR_OFF,
223 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
227 * Returns true if fifo is full.
230 static unsigned long SA5_fifo_full(ctlr_info_t *h)
232 if( h->commands_outstanding >= h->max_commands)
233 return(1);
234 else
235 return(0);
239 * returns value read from hardware.
240 * returns FIFO_EMPTY if there is nothing to read
242 static unsigned long SA5_completed(ctlr_info_t *h)
244 unsigned long register_value
245 = readl(h->vaddr + SA5_REPLY_PORT_OFFSET);
246 if(register_value != FIFO_EMPTY)
248 h->commands_outstanding--;
249 #ifdef CCISS_DEBUG
250 printk("cciss: Read %lx back from board\n", register_value);
251 #endif /* CCISS_DEBUG */
253 #ifdef CCISS_DEBUG
254 else
256 printk("cciss: FIFO Empty read\n");
258 #endif
259 return ( register_value);
263 * Returns true if an interrupt is pending..
265 static unsigned long SA5_intr_pending(ctlr_info_t *h)
267 unsigned long register_value =
268 readl(h->vaddr + SA5_INTR_STATUS);
269 #ifdef CCISS_DEBUG
270 printk("cciss: intr_pending %lx\n", register_value);
271 #endif /* CCISS_DEBUG */
272 if( register_value & SA5_INTR_PENDING)
273 return 1;
274 return 0 ;
278 * Returns true if an interrupt is pending..
280 static unsigned long SA5B_intr_pending(ctlr_info_t *h)
282 unsigned long register_value =
283 readl(h->vaddr + SA5_INTR_STATUS);
284 #ifdef CCISS_DEBUG
285 printk("cciss: intr_pending %lx\n", register_value);
286 #endif /* CCISS_DEBUG */
287 if( register_value & SA5B_INTR_PENDING)
288 return 1;
289 return 0 ;
293 static struct access_method SA5_access = {
294 SA5_submit_command,
295 SA5_intr_mask,
296 SA5_fifo_full,
297 SA5_intr_pending,
298 SA5_completed,
301 static struct access_method SA5B_access = {
302 SA5_submit_command,
303 SA5B_intr_mask,
304 SA5_fifo_full,
305 SA5B_intr_pending,
306 SA5_completed,
309 struct board_type {
310 __u32 board_id;
311 char *product_name;
312 struct access_method *access;
313 int nr_cmds; /* Max cmds this kind of ctlr can handle. */
316 #define CCISS_LOCK(i) (&hba[i]->lock)
318 #endif /* CCISS_H */