blob: 554bbd907d144500817a615702ab6155cb7f7243 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef CCISS_H
2#define CCISS_H
3
4#include <linux/genhd.h>
Andrew Pattersonb368c9d2009-09-17 13:46:58 -05005#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7#include "cciss_cmd.h"
8
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#define NWD_SHIFT 4
11#define MAX_PART (1 << NWD_SHIFT)
12
13#define IO_OK 0
14#define IO_ERROR 1
scameron@beardog.cca.cpqcorp.net789a4242009-06-08 16:05:56 -050015#define IO_NEEDS_RETRY 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Andrew Patterson7fe06322009-06-02 14:48:39 +020017#define VENDOR_LEN 8
18#define MODEL_LEN 16
19#define REV_LEN 4
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct ctlr_info;
22typedef struct ctlr_info ctlr_info_t;
23
24struct 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);
Mike Miller1d141442010-06-02 12:58:04 -070028 bool (*intr_pending)(ctlr_info_t *h);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 unsigned long (*command_completed)(ctlr_info_t *h);
30};
31typedef struct _drive_info_struct
32{
Stephen M. Cameron39ccf9a2009-09-17 13:48:00 -050033 unsigned char LunID[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 int usage_count;
Mike Millerad2b9312005-07-28 01:07:31 -070035 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 sector_t nr_blocks;
37 int block_size;
38 int heads;
39 int sectors;
40 int cylinders;
Mike Millerddd47442005-09-13 01:25:22 -070041 int raid_level; /* set to -1 to indicate that
42 * the drive is not in use/configured
Andrew Patterson7fe06322009-06-02 14:48:39 +020043 */
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.
47 */
Stephen M. Cameron9cef0d22009-09-17 13:48:31 -050048 struct device dev;
Andrew Patterson7fe06322009-06-02 14:48:39 +020049 __u8 serial_no[16]; /* from inquiry page 0x83,
50 * not necc. null terminated.
51 */
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 */
Stephen M. Cameron9cef0d22009-09-17 13:48:31 -050055 char device_initialized; /* indicates whether dev is initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056} drive_info_struct;
57
Don Brace5c07a312009-11-12 12:50:01 -060058struct ctlr_info
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int ctlr;
61 char devname[8];
62 char *product_name;
dann frazierb0284612010-02-17 16:53:31 -070063 char firm_ver[4]; /* Firmware version */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 struct pci_dev *pdev;
65 __u32 board_id;
66 void __iomem *vaddr;
67 unsigned long paddr;
Mike Millerf8806322006-12-06 20:35:01 -080068 int nr_cmds; /* Number of commands allowed on this controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 CfgTable_struct __iomem *cfgtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 int interrupts_enabled;
71 int major;
72 int max_commands;
73 int commands_outstanding;
74 int max_outstanding; /* Debug */
75 int num_luns;
76 int highest_lun;
77 int usage_count; /* number of opens all all minor devices */
Don Brace5c07a312009-11-12 12:50:01 -060078 /* Need space for temp sg list
79 * number of scatter/gathers supported
80 * number of scatter/gathers in chained block
81 */
82 struct scatterlist **scatter_list;
83 int maxsgentries;
84 int chainsize;
85 int max_cmd_sgentries;
Stephen M. Camerondccc9b52010-02-26 16:01:27 -060086 SGDescriptor_struct **cmd_sg_list;
Don Brace5c07a312009-11-12 12:50:01 -060087
Mike Miller5e216152010-06-02 12:58:06 -070088# define PERF_MODE_INT 0
89# define DOORBELL_INT 1
Mike Millerfb86a352006-01-08 01:03:50 -080090# define SIMPLE_MODE_INT 2
91# define MEMQ_MODE_INT 3
92 unsigned int intr[4];
93 unsigned int msix_vector;
94 unsigned int msi_vector;
Mike Miller92c4231a2006-12-06 20:35:06 -080095 int cciss_max_sectors;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -070096 BYTE cciss_read;
97 BYTE cciss_write;
98 BYTE cciss_read_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
dann frazierb0284612010-02-17 16:53:31 -0700100 /* information about each logical volume */
Stephen M. Cameron9cef0d22009-09-17 13:48:31 -0500101 drive_info_struct *drv[CISS_MAX_LUN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 struct access_method access;
104
105 /* queue and queue Info */
Jens Axboee6e1ee92011-01-10 21:50:33 +0100106 struct list_head reqQ;
107 struct list_head cmpQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned int Qdepth;
109 unsigned int maxQsinceinit;
110 unsigned int maxSG;
111 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
dann frazierb0284612010-02-17 16:53:31 -0700113 /* pointers to command and error info pool */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 CommandList_struct *cmd_pool;
115 dma_addr_t cmd_pool_dhandle;
116 ErrorInfo_struct *errinfo_pool;
117 dma_addr_t errinfo_pool_dhandle;
118 unsigned long *cmd_pool_bits;
119 int nr_allocs;
120 int nr_frees;
121 int busy_configuring;
Mike Miller1f8ef382005-09-13 01:25:21 -0700122 int busy_initializing;
Andrew Pattersonb368c9d2009-09-17 13:46:58 -0500123 int busy_scanning;
124 struct mutex busy_shutting_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* This element holds the zero based queue number of the last
127 * queue to be started. It is used for fairness.
128 */
129 int next_to_run;
130
dann frazierb0284612010-02-17 16:53:31 -0700131 /* Disk structures we need to pass back */
Mike Miller799202c2006-12-06 20:35:12 -0800132 struct gendisk *gendisk[CISS_MAX_LUN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#ifdef CONFIG_CISS_SCSI_TAPE
Stephen M. Cameronaad9fb62010-02-26 16:01:42 -0600134 struct cciss_scsi_adapter_data_t *scsi_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#endif
Mike Miller33079b22005-09-13 01:25:22 -0700136 unsigned char alive;
Andrew Pattersonb368c9d2009-09-17 13:46:58 -0500137 struct list_head scan_list;
138 struct completion scan_wait;
Andrew Patterson7fe06322009-06-02 14:48:39 +0200139 struct device dev;
Mike Miller5e216152010-06-02 12:58:06 -0700140 /*
141 * Performant mode tables.
142 */
143 u32 trans_support;
144 u32 trans_offset;
145 struct TransTable_struct *transtable;
146 unsigned long transMethod;
147
148 /*
149 * Performant mode completion buffer
150 */
151 u64 *reply_pool;
152 dma_addr_t reply_pool_dhandle;
153 u64 *reply_pool_head;
154 size_t reply_pool_size;
155 unsigned char reply_pool_wraparound;
156 u32 *blockFetchTable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
Mike Miller5e216152010-06-02 12:58:06 -0700159/* Defining the diffent access_methods
160 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * Memory mapped FIFO interface (SMART 53xx cards)
162 */
163#define SA5_DOORBELL 0x20
164#define SA5_REQUEST_PORT_OFFSET 0x40
165#define SA5_REPLY_INTR_MASK_OFFSET 0x34
166#define SA5_REPLY_PORT_OFFSET 0x44
167#define SA5_INTR_STATUS 0x30
168#define SA5_SCRATCHPAD_OFFSET 0xB0
169
170#define SA5_CTCFG_OFFSET 0xB4
171#define SA5_CTMEM_OFFSET 0xB8
172
173#define SA5_INTR_OFF 0x08
174#define SA5B_INTR_OFF 0x04
175#define SA5_INTR_PENDING 0x08
176#define SA5B_INTR_PENDING 0x04
177#define FIFO_EMPTY 0xffffffff
178#define CCISS_FIRMWARE_READY 0xffff0000 /* value in scratchpad register */
Mike Miller5e216152010-06-02 12:58:06 -0700179/* Perf. mode flags */
180#define SA5_PERF_INTR_PENDING 0x04
181#define SA5_PERF_INTR_OFF 0x05
182#define SA5_OUTDB_STATUS_PERF_BIT 0x01
183#define SA5_OUTDB_CLEAR_PERF_BIT 0x01
184#define SA5_OUTDB_CLEAR 0xA0
185#define SA5_OUTDB_CLEAR_PERF_BIT 0x01
186#define SA5_OUTDB_STATUS 0x9C
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189#define CISS_ERROR_BIT 0x02
190
191#define CCISS_INTR_ON 1
192#define CCISS_INTR_OFF 0
Stephen M. Camerone99ba132010-07-19 13:45:15 -0500193
194
195/* CCISS_BOARD_READY_WAIT_SECS is how long to wait for a board
196 * to become ready, in seconds, before giving up on it.
197 * CCISS_BOARD_READY_POLL_INTERVAL_MSECS * is how long to wait
198 * between polling the board to see if it is ready, in
199 * milliseconds. CCISS_BOARD_READY_ITERATIONS is derived
200 * the above.
201 */
202#define CCISS_BOARD_READY_WAIT_SECS (120)
Stephen M. Cameronafa842f2010-10-22 14:21:07 -0500203#define CCISS_BOARD_NOT_READY_WAIT_SECS (10)
Stephen M. Camerone99ba132010-07-19 13:45:15 -0500204#define CCISS_BOARD_READY_POLL_INTERVAL_MSECS (100)
205#define CCISS_BOARD_READY_ITERATIONS \
206 ((CCISS_BOARD_READY_WAIT_SECS * 1000) / \
207 CCISS_BOARD_READY_POLL_INTERVAL_MSECS)
Stephen M. Cameronafa842f2010-10-22 14:21:07 -0500208#define CCISS_BOARD_NOT_READY_ITERATIONS \
209 ((CCISS_BOARD_NOT_READY_WAIT_SECS * 1000) / \
210 CCISS_BOARD_READY_POLL_INTERVAL_MSECS)
Stephen M. Cameron83123cb2010-07-19 13:46:17 -0500211#define CCISS_POST_RESET_PAUSE_MSECS (3000)
212#define CCISS_POST_RESET_NOOP_INTERVAL_MSECS (1000)
213#define CCISS_POST_RESET_NOOP_RETRIES (12)
Stephen M. Camerone99ba132010-07-19 13:45:15 -0500214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
216 Send the command to the hardware
217*/
218static void SA5_submit_command( ctlr_info_t *h, CommandList_struct *c)
219{
220#ifdef CCISS_DEBUG
Mike Miller5e216152010-06-02 12:58:06 -0700221 printk(KERN_WARNING "cciss%d: Sending %08x - down to controller\n",
222 h->ctlr, c->busaddr);
223#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Bud Brown1ddd5042011-03-23 20:47:11 +0100225 readl(h->vaddr + SA5_REQUEST_PORT_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 h->commands_outstanding++;
227 if ( h->commands_outstanding > h->max_outstanding)
228 h->max_outstanding = h->commands_outstanding;
229}
230
231/*
232 * This card is the opposite of the other cards.
233 * 0 turns interrupts on...
234 * 0x08 turns them off...
235 */
236static void SA5_intr_mask(ctlr_info_t *h, unsigned long val)
237{
238 if (val)
239 { /* Turn interrupts on */
240 h->interrupts_enabled = 1;
241 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
242 } else /* Turn them off */
243 {
244 h->interrupts_enabled = 0;
245 writel( SA5_INTR_OFF,
246 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
247 }
248}
249/*
250 * This card is the opposite of the other cards.
251 * 0 turns interrupts on...
252 * 0x04 turns them off...
253 */
254static void SA5B_intr_mask(ctlr_info_t *h, unsigned long val)
255{
256 if (val)
257 { /* Turn interrupts on */
258 h->interrupts_enabled = 1;
259 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
260 } else /* Turn them off */
261 {
262 h->interrupts_enabled = 0;
263 writel( SA5B_INTR_OFF,
264 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
265 }
266}
Mike Miller5e216152010-06-02 12:58:06 -0700267
268/* Performant mode intr_mask */
269static void SA5_performant_intr_mask(ctlr_info_t *h, unsigned long val)
270{
271 if (val) { /* turn on interrupts */
272 h->interrupts_enabled = 1;
273 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
274 } else {
275 h->interrupts_enabled = 0;
276 writel(SA5_PERF_INTR_OFF,
277 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
278 }
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/*
282 * Returns true if fifo is full.
283 *
284 */
285static unsigned long SA5_fifo_full(ctlr_info_t *h)
286{
287 if( h->commands_outstanding >= h->max_commands)
288 return(1);
289 else
290 return(0);
291
292}
293/*
294 * returns value read from hardware.
295 * returns FIFO_EMPTY if there is nothing to read
296 */
297static unsigned long SA5_completed(ctlr_info_t *h)
298{
299 unsigned long register_value
300 = readl(h->vaddr + SA5_REPLY_PORT_OFFSET);
301 if(register_value != FIFO_EMPTY)
302 {
303 h->commands_outstanding--;
304#ifdef CCISS_DEBUG
305 printk("cciss: Read %lx back from board\n", register_value);
306#endif /* CCISS_DEBUG */
307 }
308#ifdef CCISS_DEBUG
309 else
310 {
311 printk("cciss: FIFO Empty read\n");
312 }
313#endif
314 return ( register_value);
315
316}
Mike Miller5e216152010-06-02 12:58:06 -0700317
318/* Performant mode command completed */
319static unsigned long SA5_performant_completed(ctlr_info_t *h)
320{
321 unsigned long register_value = FIFO_EMPTY;
322
323 /* flush the controller write of the reply queue by reading
324 * outbound doorbell status register.
325 */
326 register_value = readl(h->vaddr + SA5_OUTDB_STATUS);
327 /* msi auto clears the interrupt pending bit. */
328 if (!(h->msi_vector || h->msix_vector)) {
329 writel(SA5_OUTDB_CLEAR_PERF_BIT, h->vaddr + SA5_OUTDB_CLEAR);
330 /* Do a read in order to flush the write to the controller
331 * (as per spec.)
332 */
333 register_value = readl(h->vaddr + SA5_OUTDB_STATUS);
334 }
335
336 if ((*(h->reply_pool_head) & 1) == (h->reply_pool_wraparound)) {
337 register_value = *(h->reply_pool_head);
338 (h->reply_pool_head)++;
339 h->commands_outstanding--;
340 } else {
341 register_value = FIFO_EMPTY;
342 }
343 /* Check for wraparound */
344 if (h->reply_pool_head == (h->reply_pool + h->max_commands)) {
345 h->reply_pool_head = h->reply_pool;
346 h->reply_pool_wraparound ^= 1;
347 }
348
349 return register_value;
350}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351/*
352 * Returns true if an interrupt is pending..
353 */
Mike Miller1d141442010-06-02 12:58:04 -0700354static bool SA5_intr_pending(ctlr_info_t *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 unsigned long register_value =
357 readl(h->vaddr + SA5_INTR_STATUS);
358#ifdef CCISS_DEBUG
359 printk("cciss: intr_pending %lx\n", register_value);
360#endif /* CCISS_DEBUG */
361 if( register_value & SA5_INTR_PENDING)
362 return 1;
363 return 0 ;
364}
365
366/*
367 * Returns true if an interrupt is pending..
368 */
Mike Miller1d141442010-06-02 12:58:04 -0700369static bool SA5B_intr_pending(ctlr_info_t *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 unsigned long register_value =
372 readl(h->vaddr + SA5_INTR_STATUS);
373#ifdef CCISS_DEBUG
374 printk("cciss: intr_pending %lx\n", register_value);
375#endif /* CCISS_DEBUG */
376 if( register_value & SA5B_INTR_PENDING)
377 return 1;
378 return 0 ;
379}
380
Mike Miller5e216152010-06-02 12:58:06 -0700381static bool SA5_performant_intr_pending(ctlr_info_t *h)
382{
383 unsigned long register_value = readl(h->vaddr + SA5_INTR_STATUS);
384
385 if (!register_value)
386 return false;
387
388 if (h->msi_vector || h->msix_vector)
389 return true;
390
391 /* Read outbound doorbell to flush */
392 register_value = readl(h->vaddr + SA5_OUTDB_STATUS);
393 return register_value & SA5_OUTDB_STATUS_PERF_BIT;
394}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396static struct access_method SA5_access = {
397 SA5_submit_command,
398 SA5_intr_mask,
399 SA5_fifo_full,
400 SA5_intr_pending,
401 SA5_completed,
402};
403
404static struct access_method SA5B_access = {
405 SA5_submit_command,
406 SA5B_intr_mask,
407 SA5_fifo_full,
408 SA5B_intr_pending,
409 SA5_completed,
410};
411
Mike Miller5e216152010-06-02 12:58:06 -0700412static struct access_method SA5_performant_access = {
413 SA5_submit_command,
414 SA5_performant_intr_mask,
415 SA5_fifo_full,
416 SA5_performant_intr_pending,
417 SA5_performant_completed,
418};
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420struct board_type {
421 __u32 board_id;
422 char *product_name;
423 struct access_method *access;
Mike Millerf8806322006-12-06 20:35:01 -0800424 int nr_cmds; /* Max cmds this kind of ctlr can handle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425};
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#endif /* CCISS_H */