hpsa: choose number of reply queues more intelligently.
[deliverable/linux.git] / drivers / scsi / hpsa.h
CommitLineData
edd16368
SC
1/*
2 * Disk Array driver for HP Smart Array SAS controllers
51c35139 3 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
edd16368
SC
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21#ifndef HPSA_H
22#define HPSA_H
23
24#include <scsi/scsicam.h>
25
26#define IO_OK 0
27#define IO_ERROR 1
28
29struct ctlr_info;
30
31struct access_method {
32 void (*submit_command)(struct ctlr_info *h,
33 struct CommandList *c);
34 void (*set_intr_mask)(struct ctlr_info *h, unsigned long val);
35 unsigned long (*fifo_full)(struct ctlr_info *h);
900c5440 36 bool (*intr_pending)(struct ctlr_info *h);
254f796b 37 unsigned long (*command_completed)(struct ctlr_info *h, u8 q);
edd16368
SC
38};
39
40struct hpsa_scsi_dev_t {
41 int devtype;
42 int bus, target, lun; /* as presented to the OS */
43 unsigned char scsi3addr[8]; /* as presented to the HW */
44#define RAID_CTLR_LUNID "\0\0\0\0\0\0\0\0"
45 unsigned char device_id[16]; /* from inquiry pg. 0x83 */
46 unsigned char vendor[8]; /* bytes 8-15 of inquiry data */
47 unsigned char model[16]; /* bytes 16-31 of inquiry data */
edd16368 48 unsigned char raid_level; /* from inquiry page 0xC1 */
9846590e 49 unsigned char volume_offline; /* discovered via TUR or VPD */
e1f7de0c 50 u32 ioaccel_handle;
283b4a9b
SC
51 int offload_config; /* I/O accel RAID offload configured */
52 int offload_enabled; /* I/O accel RAID offload enabled */
53 int offload_to_mirror; /* Send next I/O accelerator RAID
54 * offload request to mirror drive
55 */
56 struct raid_map_data raid_map; /* I/O accelerator RAID map */
57
edd16368
SC
58};
59
254f796b
MG
60struct reply_pool {
61 u64 *head;
62 size_t size;
63 u8 wraparound;
64 u32 current_entry;
65};
66
316b221a
SC
67#pragma pack(1)
68struct bmic_controller_parameters {
69 u8 led_flags;
70 u8 enable_command_list_verification;
71 u8 backed_out_write_drives;
72 u16 stripes_for_parity;
73 u8 parity_distribution_mode_flags;
74 u16 max_driver_requests;
75 u16 elevator_trend_count;
76 u8 disable_elevator;
77 u8 force_scan_complete;
78 u8 scsi_transfer_mode;
79 u8 force_narrow;
80 u8 rebuild_priority;
81 u8 expand_priority;
82 u8 host_sdb_asic_fix;
83 u8 pdpi_burst_from_host_disabled;
84 char software_name[64];
85 char hardware_name[32];
86 u8 bridge_revision;
87 u8 snapshot_priority;
88 u32 os_specific;
89 u8 post_prompt_timeout;
90 u8 automatic_drive_slamming;
91 u8 reserved1;
92 u8 nvram_flags;
6e8e8088 93#define HBA_MODE_ENABLED_FLAG (1 << 3)
316b221a
SC
94 u8 cache_nvram_flags;
95 u8 drive_config_flags;
96 u16 reserved2;
97 u8 temp_warning_level;
98 u8 temp_shutdown_level;
99 u8 temp_condition_reset;
100 u8 max_coalesce_commands;
101 u32 max_coalesce_delay;
102 u8 orca_password[4];
103 u8 access_id[16];
104 u8 reserved[356];
105};
106#pragma pack()
107
edd16368
SC
108struct ctlr_info {
109 int ctlr;
110 char devname[8];
111 char *product_name;
edd16368 112 struct pci_dev *pdev;
01a02ffc 113 u32 board_id;
edd16368
SC
114 void __iomem *vaddr;
115 unsigned long paddr;
116 int nr_cmds; /* Number of commands allowed on this controller */
117 struct CfgTable __iomem *cfgtable;
118 int interrupts_enabled;
edd16368
SC
119 int max_commands;
120 int commands_outstanding;
303932fd
DB
121# define PERF_MODE_INT 0
122# define DOORBELL_INT 1
edd16368
SC
123# define SIMPLE_MODE_INT 2
124# define MEMQ_MODE_INT 3
254f796b 125 unsigned int intr[MAX_REPLY_QUEUES];
edd16368
SC
126 unsigned int msix_vector;
127 unsigned int msi_vector;
a9a3a273 128 int intr_mode; /* either PERF_MODE_INT or SIMPLE_MODE_INT */
edd16368 129 struct access_method access;
316b221a 130 char hba_mode_enabled;
edd16368
SC
131
132 /* queue and queue Info */
9e0fc764
SC
133 struct list_head reqQ;
134 struct list_head cmpQ;
edd16368 135 unsigned int Qdepth;
edd16368
SC
136 unsigned int maxSG;
137 spinlock_t lock;
33a2ffce
SC
138 int maxsgentries;
139 u8 max_cmd_sg_entries;
140 int chainsize;
141 struct SGDescriptor **cmd_sg_list;
edd16368
SC
142
143 /* pointers to command and error info pool */
144 struct CommandList *cmd_pool;
145 dma_addr_t cmd_pool_dhandle;
e1f7de0c
MG
146 struct io_accel1_cmd *ioaccel_cmd_pool;
147 dma_addr_t ioaccel_cmd_pool_dhandle;
aca9012a
SC
148 struct io_accel2_cmd *ioaccel2_cmd_pool;
149 dma_addr_t ioaccel2_cmd_pool_dhandle;
edd16368
SC
150 struct ErrorInfo *errinfo_pool;
151 dma_addr_t errinfo_pool_dhandle;
152 unsigned long *cmd_pool_bits;
a08a8471
SC
153 int scan_finished;
154 spinlock_t scan_lock;
155 wait_queue_head_t scan_wait_queue;
edd16368
SC
156
157 struct Scsi_Host *scsi_host;
158 spinlock_t devlock; /* to protect hba[ctlr]->dev[]; */
159 int ndevices; /* number of used elements in .dev[] array. */
cfe5badc 160 struct hpsa_scsi_dev_t *dev[HPSA_MAX_DEVICES];
303932fd
DB
161 /*
162 * Performant mode tables.
163 */
164 u32 trans_support;
165 u32 trans_offset;
166 struct TransTable_struct *transtable;
167 unsigned long transMethod;
168
0390f0c0
SC
169 /* cap concurrent passthrus at some reasonable maximum */
170#define HPSA_MAX_CONCURRENT_PASSTHRUS (20)
171 spinlock_t passthru_count_lock; /* protects passthru_count */
172 int passthru_count;
173
303932fd 174 /*
254f796b 175 * Performant mode completion buffers
303932fd
DB
176 */
177 u64 *reply_pool;
303932fd 178 size_t reply_pool_size;
254f796b
MG
179 struct reply_pool reply_queue[MAX_REPLY_QUEUES];
180 u8 nreply_queues;
181 dma_addr_t reply_pool_dhandle;
303932fd 182 u32 *blockFetchTable;
e1f7de0c 183 u32 *ioaccel1_blockFetchTable;
aca9012a 184 u32 *ioaccel2_blockFetchTable;
b9af4937 185 u32 *ioaccel2_bft2_regs;
339b2b14 186 unsigned char *hba_inquiry_data;
283b4a9b
SC
187 u32 driver_support;
188 u32 fw_support;
189 int ioaccel_support;
190 int ioaccel_maxsg;
a0c12413
SC
191 u64 last_intr_timestamp;
192 u32 last_heartbeat;
193 u64 last_heartbeat_timestamp;
e85c5974
SC
194 u32 heartbeat_sample_interval;
195 atomic_t firmware_flash_in_progress;
a0c12413 196 u32 lockup_detected;
8a98db73
SC
197 struct delayed_work monitor_ctlr_work;
198 int remove_in_progress;
396883e2 199 u32 fifo_recently_full;
254f796b
MG
200 /* Address of h->q[x] is passed to intr handler to know which queue */
201 u8 q[MAX_REPLY_QUEUES];
75167d2c
SC
202 u32 TMFSupportFlags; /* cache what task mgmt funcs are supported. */
203#define HPSATMF_BITS_SUPPORTED (1 << 0)
204#define HPSATMF_PHYS_LUN_RESET (1 << 1)
205#define HPSATMF_PHYS_NEX_RESET (1 << 2)
206#define HPSATMF_PHYS_TASK_ABORT (1 << 3)
207#define HPSATMF_PHYS_TSET_ABORT (1 << 4)
208#define HPSATMF_PHYS_CLEAR_ACA (1 << 5)
209#define HPSATMF_PHYS_CLEAR_TSET (1 << 6)
210#define HPSATMF_PHYS_QRY_TASK (1 << 7)
211#define HPSATMF_PHYS_QRY_TSET (1 << 8)
212#define HPSATMF_PHYS_QRY_ASYNC (1 << 9)
213#define HPSATMF_MASK_SUPPORTED (1 << 16)
214#define HPSATMF_LOG_LUN_RESET (1 << 17)
215#define HPSATMF_LOG_NEX_RESET (1 << 18)
216#define HPSATMF_LOG_TASK_ABORT (1 << 19)
217#define HPSATMF_LOG_TSET_ABORT (1 << 20)
218#define HPSATMF_LOG_CLEAR_ACA (1 << 21)
219#define HPSATMF_LOG_CLEAR_TSET (1 << 22)
220#define HPSATMF_LOG_QRY_TASK (1 << 23)
221#define HPSATMF_LOG_QRY_TSET (1 << 24)
222#define HPSATMF_LOG_QRY_ASYNC (1 << 25)
76438d08 223 u32 events;
faff6ee0
SC
224#define CTLR_STATE_CHANGE_EVENT (1 << 0)
225#define CTLR_ENCLOSURE_HOT_PLUG_EVENT (1 << 1)
226#define CTLR_STATE_CHANGE_EVENT_PHYSICAL_DRV (1 << 4)
227#define CTLR_STATE_CHANGE_EVENT_LOGICAL_DRV (1 << 5)
228#define CTLR_STATE_CHANGE_EVENT_REDUNDANT_CNTRL (1 << 6)
229#define CTLR_STATE_CHANGE_EVENT_AIO_ENABLED_DISABLED (1 << 30)
230#define CTLR_STATE_CHANGE_EVENT_AIO_CONFIG_CHANGE (1 << 31)
231
232#define RESCAN_REQUIRED_EVENT_BITS \
233 (CTLR_STATE_CHANGE_EVENT | \
234 CTLR_ENCLOSURE_HOT_PLUG_EVENT | \
235 CTLR_STATE_CHANGE_EVENT_PHYSICAL_DRV | \
236 CTLR_STATE_CHANGE_EVENT_LOGICAL_DRV | \
237 CTLR_STATE_CHANGE_EVENT_REDUNDANT_CNTRL | \
238 CTLR_STATE_CHANGE_EVENT_AIO_ENABLED_DISABLED | \
239 CTLR_STATE_CHANGE_EVENT_AIO_CONFIG_CHANGE)
9846590e
SC
240 spinlock_t offline_device_lock;
241 struct list_head offline_device_list;
da0697bd 242 int acciopath_status;
e863d68e 243 int drv_req_rescan; /* flag for driver to request rescan event */
2ba8bfc8 244 int raid_offload_debug;
edd16368 245};
9846590e
SC
246
247struct offline_device_entry {
248 unsigned char scsi3addr[8];
249 struct list_head offline_list;
250};
251
edd16368
SC
252#define HPSA_ABORT_MSG 0
253#define HPSA_DEVICE_RESET_MSG 1
64670ac8
SC
254#define HPSA_RESET_TYPE_CONTROLLER 0x00
255#define HPSA_RESET_TYPE_BUS 0x01
256#define HPSA_RESET_TYPE_TARGET 0x03
257#define HPSA_RESET_TYPE_LUN 0x04
edd16368 258#define HPSA_MSG_SEND_RETRY_LIMIT 10
516fda49 259#define HPSA_MSG_SEND_RETRY_INTERVAL_MSECS (10000)
edd16368
SC
260
261/* Maximum time in seconds driver will wait for command completions
262 * when polling before giving up.
263 */
264#define HPSA_MAX_POLL_TIME_SECS (20)
265
266/* During SCSI error recovery, HPSA_TUR_RETRY_LIMIT defines
267 * how many times to retry TEST UNIT READY on a device
268 * while waiting for it to become ready before giving up.
269 * HPSA_MAX_WAIT_INTERVAL_SECS is the max wait interval
270 * between sending TURs while waiting for a device
271 * to become ready.
272 */
273#define HPSA_TUR_RETRY_LIMIT (20)
274#define HPSA_MAX_WAIT_INTERVAL_SECS (30)
275
276/* HPSA_BOARD_READY_WAIT_SECS is how long to wait for a board
277 * to become ready, in seconds, before giving up on it.
278 * HPSA_BOARD_READY_POLL_INTERVAL_MSECS * is how long to wait
279 * between polling the board to see if it is ready, in
280 * milliseconds. HPSA_BOARD_READY_POLL_INTERVAL and
281 * HPSA_BOARD_READY_ITERATIONS are derived from those.
282 */
283#define HPSA_BOARD_READY_WAIT_SECS (120)
2ed7127b 284#define HPSA_BOARD_NOT_READY_WAIT_SECS (100)
edd16368
SC
285#define HPSA_BOARD_READY_POLL_INTERVAL_MSECS (100)
286#define HPSA_BOARD_READY_POLL_INTERVAL \
287 ((HPSA_BOARD_READY_POLL_INTERVAL_MSECS * HZ) / 1000)
288#define HPSA_BOARD_READY_ITERATIONS \
289 ((HPSA_BOARD_READY_WAIT_SECS * 1000) / \
290 HPSA_BOARD_READY_POLL_INTERVAL_MSECS)
fe5389c8
SC
291#define HPSA_BOARD_NOT_READY_ITERATIONS \
292 ((HPSA_BOARD_NOT_READY_WAIT_SECS * 1000) / \
293 HPSA_BOARD_READY_POLL_INTERVAL_MSECS)
edd16368
SC
294#define HPSA_POST_RESET_PAUSE_MSECS (3000)
295#define HPSA_POST_RESET_NOOP_RETRIES (12)
296
297/* Defining the diffent access_menthods */
298/*
299 * Memory mapped FIFO interface (SMART 53xx cards)
300 */
301#define SA5_DOORBELL 0x20
302#define SA5_REQUEST_PORT_OFFSET 0x40
303#define SA5_REPLY_INTR_MASK_OFFSET 0x34
304#define SA5_REPLY_PORT_OFFSET 0x44
305#define SA5_INTR_STATUS 0x30
306#define SA5_SCRATCHPAD_OFFSET 0xB0
307
308#define SA5_CTCFG_OFFSET 0xB4
309#define SA5_CTMEM_OFFSET 0xB8
310
311#define SA5_INTR_OFF 0x08
312#define SA5B_INTR_OFF 0x04
313#define SA5_INTR_PENDING 0x08
314#define SA5B_INTR_PENDING 0x04
315#define FIFO_EMPTY 0xffffffff
316#define HPSA_FIRMWARE_READY 0xffff0000 /* value in scratchpad register */
317
318#define HPSA_ERROR_BIT 0x02
edd16368 319
303932fd
DB
320/* Performant mode flags */
321#define SA5_PERF_INTR_PENDING 0x04
322#define SA5_PERF_INTR_OFF 0x05
323#define SA5_OUTDB_STATUS_PERF_BIT 0x01
324#define SA5_OUTDB_CLEAR_PERF_BIT 0x01
325#define SA5_OUTDB_CLEAR 0xA0
326#define SA5_OUTDB_CLEAR_PERF_BIT 0x01
327#define SA5_OUTDB_STATUS 0x9C
328
329
edd16368
SC
330#define HPSA_INTR_ON 1
331#define HPSA_INTR_OFF 0
b66cc250
MM
332
333/*
334 * Inbound Post Queue offsets for IO Accelerator Mode 2
335 */
336#define IOACCEL2_INBOUND_POSTQ_32 0x48
337#define IOACCEL2_INBOUND_POSTQ_64_LOW 0xd0
338#define IOACCEL2_INBOUND_POSTQ_64_HI 0xd4
339
edd16368
SC
340/*
341 Send the command to the hardware
342*/
343static void SA5_submit_command(struct ctlr_info *h,
344 struct CommandList *c)
345{
edd16368 346 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
fec62c36 347 (void) readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
edd16368
SC
348}
349
c349775e
ST
350static void SA5_submit_command_ioaccel2(struct ctlr_info *h,
351 struct CommandList *c)
352{
c349775e
ST
353 if (c->cmd_type == CMD_IOACCEL2)
354 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
355 else
356 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
357 (void) readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
358}
359
edd16368
SC
360/*
361 * This card is the opposite of the other cards.
362 * 0 turns interrupts on...
363 * 0x08 turns them off...
364 */
365static void SA5_intr_mask(struct ctlr_info *h, unsigned long val)
366{
367 if (val) { /* Turn interrupts on */
368 h->interrupts_enabled = 1;
369 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
8cd21da7 370 (void) readl(h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
edd16368
SC
371 } else { /* Turn them off */
372 h->interrupts_enabled = 0;
373 writel(SA5_INTR_OFF,
374 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
8cd21da7 375 (void) readl(h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
edd16368
SC
376 }
377}
303932fd
DB
378
379static void SA5_performant_intr_mask(struct ctlr_info *h, unsigned long val)
380{
381 if (val) { /* turn on interrupts */
382 h->interrupts_enabled = 1;
383 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
8cd21da7 384 (void) readl(h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
303932fd
DB
385 } else {
386 h->interrupts_enabled = 0;
387 writel(SA5_PERF_INTR_OFF,
388 h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
8cd21da7 389 (void) readl(h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
303932fd
DB
390 }
391}
392
254f796b 393static unsigned long SA5_performant_completed(struct ctlr_info *h, u8 q)
303932fd 394{
254f796b 395 struct reply_pool *rq = &h->reply_queue[q];
e16a33ad 396 unsigned long flags, register_value = FIFO_EMPTY;
303932fd 397
303932fd
DB
398 /* msi auto clears the interrupt pending bit. */
399 if (!(h->msi_vector || h->msix_vector)) {
2c17d2da
SC
400 /* flush the controller write of the reply queue by reading
401 * outbound doorbell status register.
402 */
403 register_value = readl(h->vaddr + SA5_OUTDB_STATUS);
303932fd
DB
404 writel(SA5_OUTDB_CLEAR_PERF_BIT, h->vaddr + SA5_OUTDB_CLEAR);
405 /* Do a read in order to flush the write to the controller
406 * (as per spec.)
407 */
408 register_value = readl(h->vaddr + SA5_OUTDB_STATUS);
409 }
410
254f796b
MG
411 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
412 register_value = rq->head[rq->current_entry];
413 rq->current_entry++;
e16a33ad 414 spin_lock_irqsave(&h->lock, flags);
303932fd 415 h->commands_outstanding--;
e16a33ad 416 spin_unlock_irqrestore(&h->lock, flags);
303932fd
DB
417 } else {
418 register_value = FIFO_EMPTY;
419 }
420 /* Check for wraparound */
254f796b
MG
421 if (rq->current_entry == h->max_commands) {
422 rq->current_entry = 0;
423 rq->wraparound ^= 1;
303932fd 424 }
303932fd
DB
425 return register_value;
426}
427
edd16368
SC
428/*
429 * Returns true if fifo is full.
430 *
431 */
432static unsigned long SA5_fifo_full(struct ctlr_info *h)
433{
434 if (h->commands_outstanding >= h->max_commands)
435 return 1;
436 else
437 return 0;
438
439}
440/*
441 * returns value read from hardware.
442 * returns FIFO_EMPTY if there is nothing to read
443 */
254f796b
MG
444static unsigned long SA5_completed(struct ctlr_info *h,
445 __attribute__((unused)) u8 q)
edd16368
SC
446{
447 unsigned long register_value
448 = readl(h->vaddr + SA5_REPLY_PORT_OFFSET);
e16a33ad 449 unsigned long flags;
edd16368 450
e16a33ad
MG
451 if (register_value != FIFO_EMPTY) {
452 spin_lock_irqsave(&h->lock, flags);
edd16368 453 h->commands_outstanding--;
e16a33ad
MG
454 spin_unlock_irqrestore(&h->lock, flags);
455 }
edd16368
SC
456
457#ifdef HPSA_DEBUG
458 if (register_value != FIFO_EMPTY)
84ca0be2 459 dev_dbg(&h->pdev->dev, "Read %lx back from board\n",
edd16368
SC
460 register_value);
461 else
f79cfec6 462 dev_dbg(&h->pdev->dev, "FIFO Empty read\n");
edd16368
SC
463#endif
464
465 return register_value;
466}
467/*
468 * Returns true if an interrupt is pending..
469 */
900c5440 470static bool SA5_intr_pending(struct ctlr_info *h)
edd16368
SC
471{
472 unsigned long register_value =
473 readl(h->vaddr + SA5_INTR_STATUS);
900c5440 474 return register_value & SA5_INTR_PENDING;
edd16368
SC
475}
476
303932fd
DB
477static bool SA5_performant_intr_pending(struct ctlr_info *h)
478{
479 unsigned long register_value = readl(h->vaddr + SA5_INTR_STATUS);
480
481 if (!register_value)
482 return false;
483
484 if (h->msi_vector || h->msix_vector)
485 return true;
486
487 /* Read outbound doorbell to flush */
488 register_value = readl(h->vaddr + SA5_OUTDB_STATUS);
489 return register_value & SA5_OUTDB_STATUS_PERF_BIT;
490}
edd16368 491
e1f7de0c
MG
492#define SA5_IOACCEL_MODE1_INTR_STATUS_CMP_BIT 0x100
493
494static bool SA5_ioaccel_mode1_intr_pending(struct ctlr_info *h)
495{
496 unsigned long register_value = readl(h->vaddr + SA5_INTR_STATUS);
497
498 return (register_value & SA5_IOACCEL_MODE1_INTR_STATUS_CMP_BIT) ?
499 true : false;
500}
501
502#define IOACCEL_MODE1_REPLY_QUEUE_INDEX 0x1A0
503#define IOACCEL_MODE1_PRODUCER_INDEX 0x1B8
504#define IOACCEL_MODE1_CONSUMER_INDEX 0x1BC
505#define IOACCEL_MODE1_REPLY_UNUSED 0xFFFFFFFFFFFFFFFFULL
506
283b4a9b 507static unsigned long SA5_ioaccel_mode1_completed(struct ctlr_info *h, u8 q)
e1f7de0c
MG
508{
509 u64 register_value;
510 struct reply_pool *rq = &h->reply_queue[q];
511 unsigned long flags;
512
513 BUG_ON(q >= h->nreply_queues);
514
515 register_value = rq->head[rq->current_entry];
516 if (register_value != IOACCEL_MODE1_REPLY_UNUSED) {
517 rq->head[rq->current_entry] = IOACCEL_MODE1_REPLY_UNUSED;
518 if (++rq->current_entry == rq->size)
519 rq->current_entry = 0;
283b4a9b
SC
520 /*
521 * @todo
522 *
523 * Don't really need to write the new index after each command,
524 * but with current driver design this is easiest.
525 */
526 wmb();
527 writel((q << 24) | rq->current_entry, h->vaddr +
528 IOACCEL_MODE1_CONSUMER_INDEX);
e1f7de0c
MG
529 spin_lock_irqsave(&h->lock, flags);
530 h->commands_outstanding--;
531 spin_unlock_irqrestore(&h->lock, flags);
e1f7de0c
MG
532 }
533 return (unsigned long) register_value;
534}
535
edd16368
SC
536static struct access_method SA5_access = {
537 SA5_submit_command,
538 SA5_intr_mask,
539 SA5_fifo_full,
540 SA5_intr_pending,
541 SA5_completed,
542};
543
e1f7de0c
MG
544static struct access_method SA5_ioaccel_mode1_access = {
545 SA5_submit_command,
546 SA5_performant_intr_mask,
547 SA5_fifo_full,
548 SA5_ioaccel_mode1_intr_pending,
549 SA5_ioaccel_mode1_completed,
550};
551
c349775e
ST
552static struct access_method SA5_ioaccel_mode2_access = {
553 SA5_submit_command_ioaccel2,
554 SA5_performant_intr_mask,
555 SA5_fifo_full,
556 SA5_performant_intr_pending,
557 SA5_performant_completed,
558};
559
303932fd
DB
560static struct access_method SA5_performant_access = {
561 SA5_submit_command,
562 SA5_performant_intr_mask,
563 SA5_fifo_full,
564 SA5_performant_intr_pending,
565 SA5_performant_completed,
566};
567
edd16368 568struct board_type {
01a02ffc 569 u32 board_id;
edd16368
SC
570 char *product_name;
571 struct access_method *access;
572};
573
edd16368
SC
574#endif /* HPSA_H */
575
This page took 0.490471 seconds and 5 git commands to generate.