blob: e5c63e579ffcf528a5d543cdcdfafb18fbf1a40a [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);
28 unsigned long (*intr_pending)(ctlr_info_t *h);
29 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 Cmd_sg_list {
59 SGDescriptor_struct *sgchain;
60 dma64_addr_t sg_chain_dma;
61 int chain_block_size;
62};
63
64struct ctlr_info
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
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;
Mike Millerf8806322006-12-06 20:35:01 -080074 int nr_cmds; /* Number of commands allowed on this controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 CfgTable_struct __iomem *cfgtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 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 */
Don Brace5c07a312009-11-12 12:50:01 -060084 /* Need space for temp sg list
85 * number of scatter/gathers supported
86 * number of scatter/gathers in chained block
87 */
88 struct scatterlist **scatter_list;
89 int maxsgentries;
90 int chainsize;
91 int max_cmd_sgentries;
92 struct Cmd_sg_list **cmd_sg_list;
93
Mike Millerfb86a352006-01-08 01:03:50 -080094# 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;
Mike Miller92c4231a2006-12-06 20:35:06 -0800101 int cciss_max_sectors;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -0700102 BYTE cciss_read;
103 BYTE cciss_write;
104 BYTE cciss_read_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 // information about each logical volume
Stephen M. Cameron9cef0d22009-09-17 13:48:31 -0500107 drive_info_struct *drv[CISS_MAX_LUN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 struct access_method access;
110
111 /* queue and queue Info */
Jens Axboe8a3173d2008-11-20 09:46:09 +0100112 struct hlist_head reqQ;
113 struct hlist_head cmpQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 unsigned int Qdepth;
115 unsigned int maxQsinceinit;
116 unsigned int maxSG;
117 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
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;
Mike Miller1f8ef382005-09-13 01:25:21 -0700128 int busy_initializing;
Andrew Pattersonb368c9d2009-09-17 13:46:58 -0500129 int busy_scanning;
130 struct mutex busy_shutting_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* This element holds the zero based queue number of the last
133 * queue to be started. It is used for fairness.
134 */
135 int next_to_run;
136
137 // Disk structures we need to pass back
Mike Miller799202c2006-12-06 20:35:12 -0800138 struct gendisk *gendisk[CISS_MAX_LUN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#ifdef CONFIG_CISS_SCSI_TAPE
140 void *scsi_ctlr; /* ptr to structure containing scsi related stuff */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -0600141 /* list of block side commands the scsi error handling sucked up */
142 /* and saved for later processing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif
Mike Miller33079b22005-09-13 01:25:22 -0700144 unsigned char alive;
Andrew Pattersonb368c9d2009-09-17 13:46:58 -0500145 struct list_head scan_list;
146 struct completion scan_wait;
Andrew Patterson7fe06322009-06-02 14:48:39 +0200147 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
150/* Defining the diffent access_menthods */
151/*
152 * Memory mapped FIFO interface (SMART 53xx cards)
153 */
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
160
161#define SA5_CTCFG_OFFSET 0xB4
162#define SA5_CTMEM_OFFSET 0xB8
163
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 */
170
171#define CISS_ERROR_BIT 0x02
172
173#define CCISS_INTR_ON 1
174#define CCISS_INTR_OFF 0
175/*
176 Send the command to the hardware
177*/
178static void SA5_submit_command( ctlr_info_t *h, CommandList_struct *c)
179{
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 h->commands_outstanding++;
185 if ( h->commands_outstanding > h->max_outstanding)
186 h->max_outstanding = h->commands_outstanding;
187}
188
189/*
190 * This card is the opposite of the other cards.
191 * 0 turns interrupts on...
192 * 0x08 turns them off...
193 */
194static void SA5_intr_mask(ctlr_info_t *h, unsigned long val)
195{
196 if (val)
197 { /* Turn interrupts on */
198 h->interrupts_enabled = 1;
199 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
200 } else /* Turn them off */
201 {
202 h->interrupts_enabled = 0;
203 writel( SA5_INTR_OFF,
204 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
205 }
206}
207/*
208 * This card is the opposite of the other cards.
209 * 0 turns interrupts on...
210 * 0x04 turns them off...
211 */
212static void SA5B_intr_mask(ctlr_info_t *h, unsigned long val)
213{
214 if (val)
215 { /* Turn interrupts on */
216 h->interrupts_enabled = 1;
217 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
218 } else /* Turn them off */
219 {
220 h->interrupts_enabled = 0;
221 writel( SA5B_INTR_OFF,
222 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
223 }
224}
225/*
226 * Returns true if fifo is full.
227 *
228 */
229static unsigned long SA5_fifo_full(ctlr_info_t *h)
230{
231 if( h->commands_outstanding >= h->max_commands)
232 return(1);
233 else
234 return(0);
235
236}
237/*
238 * returns value read from hardware.
239 * returns FIFO_EMPTY if there is nothing to read
240 */
241static unsigned long SA5_completed(ctlr_info_t *h)
242{
243 unsigned long register_value
244 = readl(h->vaddr + SA5_REPLY_PORT_OFFSET);
245 if(register_value != FIFO_EMPTY)
246 {
247 h->commands_outstanding--;
248#ifdef CCISS_DEBUG
249 printk("cciss: Read %lx back from board\n", register_value);
250#endif /* CCISS_DEBUG */
251 }
252#ifdef CCISS_DEBUG
253 else
254 {
255 printk("cciss: FIFO Empty read\n");
256 }
257#endif
258 return ( register_value);
259
260}
261/*
262 * Returns true if an interrupt is pending..
263 */
264static unsigned long SA5_intr_pending(ctlr_info_t *h)
265{
266 unsigned long register_value =
267 readl(h->vaddr + SA5_INTR_STATUS);
268#ifdef CCISS_DEBUG
269 printk("cciss: intr_pending %lx\n", register_value);
270#endif /* CCISS_DEBUG */
271 if( register_value & SA5_INTR_PENDING)
272 return 1;
273 return 0 ;
274}
275
276/*
277 * Returns true if an interrupt is pending..
278 */
279static unsigned long SA5B_intr_pending(ctlr_info_t *h)
280{
281 unsigned long register_value =
282 readl(h->vaddr + SA5_INTR_STATUS);
283#ifdef CCISS_DEBUG
284 printk("cciss: intr_pending %lx\n", register_value);
285#endif /* CCISS_DEBUG */
286 if( register_value & SA5B_INTR_PENDING)
287 return 1;
288 return 0 ;
289}
290
291
292static struct access_method SA5_access = {
293 SA5_submit_command,
294 SA5_intr_mask,
295 SA5_fifo_full,
296 SA5_intr_pending,
297 SA5_completed,
298};
299
300static struct access_method SA5B_access = {
301 SA5_submit_command,
302 SA5B_intr_mask,
303 SA5_fifo_full,
304 SA5B_intr_pending,
305 SA5_completed,
306};
307
308struct board_type {
309 __u32 board_id;
310 char *product_name;
311 struct access_method *access;
Mike Millerf8806322006-12-06 20:35:01 -0800312 int nr_cmds; /* Max cmds this kind of ctlr can handle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313};
314
Mike Millerad2b9312005-07-28 01:07:31 -0700315#define CCISS_LOCK(i) (&hba[i]->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317#endif /* CCISS_H */
318