4 #include <linux/genhd.h>
10 #define MAX_PART (1 << NWD_SHIFT)
14 #define IO_NEEDS_RETRY 3
21 typedef struct ctlr_info ctlr_info_t
;
23 struct access_method
{
24 void (*submit_command
)(ctlr_info_t
*h
, CommandList_struct
*c
);
25 void (*set_intr_mask
)(ctlr_info_t
*h
, unsigned long val
);
26 unsigned long (*fifo_full
)(ctlr_info_t
*h
);
27 unsigned long (*intr_pending
)(ctlr_info_t
*h
);
28 unsigned long (*command_completed
)(ctlr_info_t
*h
);
30 typedef struct _drive_info_struct
34 struct request_queue
*queue
;
40 int raid_level
; /* set to -1 to indicate that
41 * the drive is not in use/configured
43 int busy_configuring
; /* This is set when a drive is being removed
44 * to prevent it from being opened or it's
45 * queue from being started.
48 __u8 serial_no
[16]; /* from inquiry page 0x83,
49 * not necc. null terminated.
51 char vendor
[VENDOR_LEN
+ 1]; /* SCSI vendor string */
52 char model
[MODEL_LEN
+ 1]; /* SCSI model string */
53 char rev
[REV_LEN
+ 1]; /* SCSI revision string */
61 char firm_ver
[4]; // Firmware version
66 int nr_cmds
; /* Number of commands allowed on this controller */
67 CfgTable_struct __iomem
*cfgtable
;
68 int interrupts_enabled
;
71 int commands_outstanding
;
72 int max_outstanding
; /* Debug */
75 int usage_count
; /* number of opens all all minor devices */
76 # define DOORBELL_INT 0
77 # define PERF_MODE_INT 1
78 # define SIMPLE_MODE_INT 2
79 # define MEMQ_MODE_INT 3
81 unsigned int msix_vector
;
82 unsigned int msi_vector
;
83 int cciss_max_sectors
;
86 BYTE cciss_read_capacity
;
88 // information about each logical volume
89 drive_info_struct drv
[CISS_MAX_LUN
];
91 struct access_method access
;
93 /* queue and queue Info */
94 struct hlist_head reqQ
;
95 struct hlist_head cmpQ
;
97 unsigned int maxQsinceinit
;
101 //* pointers to command and error info pool */
102 CommandList_struct
*cmd_pool
;
103 dma_addr_t cmd_pool_dhandle
;
104 ErrorInfo_struct
*errinfo_pool
;
105 dma_addr_t errinfo_pool_dhandle
;
106 unsigned long *cmd_pool_bits
;
109 int busy_configuring
;
110 int busy_initializing
;
112 /* This element holds the zero based queue number of the last
113 * queue to be started. It is used for fairness.
117 // Disk structures we need to pass back
118 struct gendisk
*gendisk
[CISS_MAX_LUN
];
119 #ifdef CONFIG_CISS_SCSI_TAPE
120 void *scsi_ctlr
; /* ptr to structure containing scsi related stuff */
121 /* list of block side commands the scsi error handling sucked up */
122 /* and saved for later processing */
125 struct completion
*rescan_wait
;
126 struct task_struct
*cciss_scan_thread
;
130 /* Defining the diffent access_menthods */
132 * Memory mapped FIFO interface (SMART 53xx cards)
134 #define SA5_DOORBELL 0x20
135 #define SA5_REQUEST_PORT_OFFSET 0x40
136 #define SA5_REPLY_INTR_MASK_OFFSET 0x34
137 #define SA5_REPLY_PORT_OFFSET 0x44
138 #define SA5_INTR_STATUS 0x30
139 #define SA5_SCRATCHPAD_OFFSET 0xB0
141 #define SA5_CTCFG_OFFSET 0xB4
142 #define SA5_CTMEM_OFFSET 0xB8
144 #define SA5_INTR_OFF 0x08
145 #define SA5B_INTR_OFF 0x04
146 #define SA5_INTR_PENDING 0x08
147 #define SA5B_INTR_PENDING 0x04
148 #define FIFO_EMPTY 0xffffffff
149 #define CCISS_FIRMWARE_READY 0xffff0000 /* value in scratchpad register */
151 #define CISS_ERROR_BIT 0x02
153 #define CCISS_INTR_ON 1
154 #define CCISS_INTR_OFF 0
156 Send the command to the hardware
158 static void SA5_submit_command( ctlr_info_t
*h
, CommandList_struct
*c
)
161 printk("Sending %x - down to controller\n", c
->busaddr
);
162 #endif /* CCISS_DEBUG */
163 writel(c
->busaddr
, h
->vaddr
+ SA5_REQUEST_PORT_OFFSET
);
164 h
->commands_outstanding
++;
165 if ( h
->commands_outstanding
> h
->max_outstanding
)
166 h
->max_outstanding
= h
->commands_outstanding
;
170 * This card is the opposite of the other cards.
171 * 0 turns interrupts on...
172 * 0x08 turns them off...
174 static void SA5_intr_mask(ctlr_info_t
*h
, unsigned long val
)
177 { /* Turn interrupts on */
178 h
->interrupts_enabled
= 1;
179 writel(0, h
->vaddr
+ SA5_REPLY_INTR_MASK_OFFSET
);
180 } else /* Turn them off */
182 h
->interrupts_enabled
= 0;
183 writel( SA5_INTR_OFF
,
184 h
->vaddr
+ SA5_REPLY_INTR_MASK_OFFSET
);
188 * This card is the opposite of the other cards.
189 * 0 turns interrupts on...
190 * 0x04 turns them off...
192 static void SA5B_intr_mask(ctlr_info_t
*h
, unsigned long val
)
195 { /* Turn interrupts on */
196 h
->interrupts_enabled
= 1;
197 writel(0, h
->vaddr
+ SA5_REPLY_INTR_MASK_OFFSET
);
198 } else /* Turn them off */
200 h
->interrupts_enabled
= 0;
201 writel( SA5B_INTR_OFF
,
202 h
->vaddr
+ SA5_REPLY_INTR_MASK_OFFSET
);
206 * Returns true if fifo is full.
209 static unsigned long SA5_fifo_full(ctlr_info_t
*h
)
211 if( h
->commands_outstanding
>= h
->max_commands
)
218 * returns value read from hardware.
219 * returns FIFO_EMPTY if there is nothing to read
221 static unsigned long SA5_completed(ctlr_info_t
*h
)
223 unsigned long register_value
224 = readl(h
->vaddr
+ SA5_REPLY_PORT_OFFSET
);
225 if(register_value
!= FIFO_EMPTY
)
227 h
->commands_outstanding
--;
229 printk("cciss: Read %lx back from board\n", register_value
);
230 #endif /* CCISS_DEBUG */
235 printk("cciss: FIFO Empty read\n");
238 return ( register_value
);
242 * Returns true if an interrupt is pending..
244 static unsigned long SA5_intr_pending(ctlr_info_t
*h
)
246 unsigned long register_value
=
247 readl(h
->vaddr
+ SA5_INTR_STATUS
);
249 printk("cciss: intr_pending %lx\n", register_value
);
250 #endif /* CCISS_DEBUG */
251 if( register_value
& SA5_INTR_PENDING
)
257 * Returns true if an interrupt is pending..
259 static unsigned long SA5B_intr_pending(ctlr_info_t
*h
)
261 unsigned long register_value
=
262 readl(h
->vaddr
+ SA5_INTR_STATUS
);
264 printk("cciss: intr_pending %lx\n", register_value
);
265 #endif /* CCISS_DEBUG */
266 if( register_value
& SA5B_INTR_PENDING
)
272 static struct access_method SA5_access
= {
280 static struct access_method SA5B_access
= {
291 struct access_method
*access
;
292 int nr_cmds
; /* Max cmds this kind of ctlr can handle. */
295 #define CCISS_LOCK(i) (&hba[i]->lock)