aachba.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:33k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Adaptec AAC series RAID controller driver
  3.  * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
  4.  *
  5.  * based on the old aacraid driver that is..
  6.  * Adaptec aacraid device driver for Linux.
  7.  * Copyright (c) 2000 Adaptec, Inc. (aacraid@adaptec.com)
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2, or (at your option)
  12.  * any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; see the file COPYING.  If not, write to
  21.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  *
  23.  */
  24. #include <linux/config.h>
  25. #include <linux/kernel.h>
  26. #include <linux/init.h>
  27. #include <linux/types.h>
  28. #include <linux/sched.h>
  29. #include <linux/pci.h>
  30. #include <linux/spinlock.h>
  31. #include <linux/slab.h>
  32. #include <linux/completion.h>
  33. #include <asm/semaphore.h>
  34. #include <asm/uaccess.h>
  35. #define MAJOR_NR SCSI_DISK0_MAJOR /* For DEVICE_NR() */
  36. #include <linux/blk.h>
  37. #include "scsi.h"
  38. #include "hosts.h"
  39. #include "sd.h"
  40. #include "aacraid.h"
  41. /* SCSI Commands */
  42. #define SS_TEST 0x00 /* Test unit ready */
  43. #define SS_REZERO 0x01 /* Rezero unit */
  44. #define SS_REQSEN 0x03 /* Request Sense */
  45. #define SS_REASGN 0x07 /* Reassign blocks */
  46. #define SS_READ 0x08 /* Read 6   */
  47. #define SS_WRITE 0x0A /* Write 6  */
  48. #define SS_INQUIR 0x12 /* inquiry */
  49. #define SS_ST_SP 0x1B /* Start/Stop unit */
  50. #define SS_LOCK 0x1E /* prevent/allow medium removal */
  51. #define SS_RESERV 0x16 /* Reserve */
  52. #define SS_RELES 0x17 /* Release */
  53. #define SS_MODESEN 0x1A /* Mode Sense 6 */
  54. #define SS_RDCAP 0x25 /* Read Capacity */
  55. #define SM_READ 0x28 /* Read 10  */
  56. #define SM_WRITE 0x2A /* Write 10 */
  57. #define SS_SEEK 0x2B /* Seek */
  58. /* values for inqd_pdt: Peripheral device type in plain English */
  59. #define INQD_PDT_DA 0x00 /* Direct-access (DISK) device */
  60. #define INQD_PDT_PROC 0x03 /* Processor device */
  61. #define INQD_PDT_CHNGR 0x08 /* Changer (jukebox, scsi2) */
  62. #define INQD_PDT_COMM 0x09 /* Communication device (scsi2) */
  63. #define INQD_PDT_NOLUN2 0x1f /* Unknown Device (scsi2) */
  64. #define INQD_PDT_NOLUN 0x7f /* Logical Unit Not Present */
  65. #define INQD_PDT_DMASK 0x1F /* Peripheral Device Type Mask */
  66. #define INQD_PDT_QMASK 0xE0 /* Peripheral Device Qualifer Mask */
  67. #define TARGET_LUN_TO_CONTAINER(target, lun) (((lun) << 4) | target)
  68. #define CONTAINER_TO_TARGET(cont) ((cont) & 0xf)
  69. #define CONTAINER_TO_LUN(cont) ((cont) >> 4)
  70. #define MAX_FIB_DATA (sizeof(struct hw_fib) - sizeof(FIB_HEADER))
  71. #define MAX_DRIVER_SG_SEGMENT_COUNT 17
  72. /*
  73.  * Sense keys
  74.  */
  75. #define SENKEY_NO_SENSE      0x00
  76. #define SENKEY_UNDEFINED     0x01
  77. #define SENKEY_NOT_READY     0x02
  78. #define SENKEY_MEDIUM_ERR    0x03
  79. #define SENKEY_HW_ERR        0x04
  80. #define SENKEY_ILLEGAL       0x05
  81. #define SENKEY_ATTENTION     0x06
  82. #define SENKEY_PROTECTED     0x07
  83. #define SENKEY_BLANK         0x08
  84. #define SENKEY_V_UNIQUE      0x09
  85. #define SENKEY_CPY_ABORT     0x0A
  86. #define SENKEY_ABORT         0x0B
  87. #define SENKEY_EQUAL         0x0C
  88. #define SENKEY_VOL_OVERFLOW  0x0D
  89. #define SENKEY_MISCOMP       0x0E
  90. #define SENKEY_RESERVED      0x0F
  91. /*
  92.  * Sense codes
  93.  */
  94.  
  95. #define SENCODE_NO_SENSE                        0x00
  96. #define SENCODE_END_OF_DATA                     0x00
  97. #define SENCODE_BECOMING_READY                  0x04
  98. #define SENCODE_INIT_CMD_REQUIRED               0x04
  99. #define SENCODE_PARAM_LIST_LENGTH_ERROR         0x1A
  100. #define SENCODE_INVALID_COMMAND                 0x20
  101. #define SENCODE_LBA_OUT_OF_RANGE                0x21
  102. #define SENCODE_INVALID_CDB_FIELD               0x24
  103. #define SENCODE_LUN_NOT_SUPPORTED               0x25
  104. #define SENCODE_INVALID_PARAM_FIELD             0x26
  105. #define SENCODE_PARAM_NOT_SUPPORTED             0x26
  106. #define SENCODE_PARAM_VALUE_INVALID             0x26
  107. #define SENCODE_RESET_OCCURRED                  0x29
  108. #define SENCODE_LUN_NOT_SELF_CONFIGURED_YET     0x3E
  109. #define SENCODE_INQUIRY_DATA_CHANGED            0x3F
  110. #define SENCODE_SAVING_PARAMS_NOT_SUPPORTED     0x39
  111. #define SENCODE_DIAGNOSTIC_FAILURE              0x40
  112. #define SENCODE_INTERNAL_TARGET_FAILURE         0x44
  113. #define SENCODE_INVALID_MESSAGE_ERROR           0x49
  114. #define SENCODE_LUN_FAILED_SELF_CONFIG          0x4c
  115. #define SENCODE_OVERLAPPED_COMMAND              0x4E
  116. /*
  117.  * Additional sense codes
  118.  */
  119.  
  120. #define ASENCODE_NO_SENSE                       0x00
  121. #define ASENCODE_END_OF_DATA                    0x05
  122. #define ASENCODE_BECOMING_READY                 0x01
  123. #define ASENCODE_INIT_CMD_REQUIRED              0x02
  124. #define ASENCODE_PARAM_LIST_LENGTH_ERROR        0x00
  125. #define ASENCODE_INVALID_COMMAND                0x00
  126. #define ASENCODE_LBA_OUT_OF_RANGE               0x00
  127. #define ASENCODE_INVALID_CDB_FIELD              0x00
  128. #define ASENCODE_LUN_NOT_SUPPORTED              0x00
  129. #define ASENCODE_INVALID_PARAM_FIELD            0x00
  130. #define ASENCODE_PARAM_NOT_SUPPORTED            0x01
  131. #define ASENCODE_PARAM_VALUE_INVALID            0x02
  132. #define ASENCODE_RESET_OCCURRED                 0x00
  133. #define ASENCODE_LUN_NOT_SELF_CONFIGURED_YET    0x00
  134. #define ASENCODE_INQUIRY_DATA_CHANGED           0x03
  135. #define ASENCODE_SAVING_PARAMS_NOT_SUPPORTED    0x00
  136. #define ASENCODE_DIAGNOSTIC_FAILURE             0x80
  137. #define ASENCODE_INTERNAL_TARGET_FAILURE        0x00
  138. #define ASENCODE_INVALID_MESSAGE_ERROR          0x00
  139. #define ASENCODE_LUN_FAILED_SELF_CONFIG         0x00
  140. #define ASENCODE_OVERLAPPED_COMMAND             0x00
  141. #define BYTE0(x) (unsigned char)(x)
  142. #define BYTE1(x) (unsigned char)((x) >> 8)
  143. #define BYTE2(x) (unsigned char)((x) >> 16)
  144. #define BYTE3(x) (unsigned char)((x) >> 24)
  145. /*------------------------------------------------------------------------------
  146.  *              S T R U C T S / T Y P E D E F S
  147.  *----------------------------------------------------------------------------*/
  148. /* SCSI inquiry data */
  149. struct inquiry_data {
  150. u8 inqd_pdt; /* Peripheral qualifier | Peripheral Device Type  */
  151. u8 inqd_dtq; /* RMB | Device Type Qualifier  */
  152. u8 inqd_ver; /* ISO version | ECMA version | ANSI-approved version */
  153. u8 inqd_rdf; /* AENC | TrmIOP | Response data format */
  154. u8 inqd_len; /* Additional length (n-4) */
  155. u8 inqd_pad1[2];/* Reserved - must be zero */
  156. u8 inqd_pad2; /* RelAdr | WBus32 | WBus16 |  Sync  | Linked |Reserved| CmdQue | SftRe */
  157. u8 inqd_vid[8]; /* Vendor ID */
  158. u8 inqd_pid[16];/* Product ID */
  159. u8 inqd_prl[4]; /* Product Revision Level */
  160. };
  161. struct sense_data {
  162. u8 error_code; /* 70h (current errors), 71h(deferred errors) */
  163. u8 valid:1; /* A valid bit of one indicates that the information  */
  164. /* field contains valid information as defined in the
  165.  * SCSI-2 Standard.
  166.  */
  167. u8 segment_number; /* Only used for COPY, COMPARE, or COPY AND VERIFY Commands */
  168. u8 sense_key:4; /* Sense Key */
  169. u8 reserved:1;
  170. u8 ILI:1; /* Incorrect Length Indicator */
  171. u8 EOM:1; /* End Of Medium - reserved for random access devices */
  172. u8 filemark:1; /* Filemark - reserved for random access devices */
  173. u8 information[4]; /* for direct-access devices, contains the unsigned 
  174.  * logical block address or residue associated with 
  175.  * the sense key 
  176.  */
  177. u8 add_sense_len; /* number of additional sense bytes to follow this field */
  178. u8 cmnd_info[4]; /* not used */
  179. u8 ASC; /* Additional Sense Code */
  180. u8 ASCQ; /* Additional Sense Code Qualifier */
  181. u8 FRUC; /* Field Replaceable Unit Code - not used */
  182. u8 bit_ptr:3; /* indicates which byte of the CDB or parameter data
  183.  * was in error
  184.  */
  185. u8 BPV:1; /* bit pointer valid (BPV): 1- indicates that 
  186.  * the bit_ptr field has valid value
  187.  */
  188. u8 reserved2:2;
  189. u8 CD:1; /* command data bit: 1- illegal parameter in CDB.
  190.  * 0- illegal parameter in data.
  191.  */
  192. u8 SKSV:1;
  193. u8 field_ptr[2]; /* byte of the CDB or parameter data in error */
  194. };
  195. /*
  196.  *              M O D U L E   G L O B A L S
  197.  */
  198.  
  199. static struct fsa_scsi_hba *fsa_dev[MAXIMUM_NUM_ADAPTERS]; /*  SCSI Device Instance Pointers */
  200. static struct sense_data sense_data[MAXIMUM_NUM_CONTAINERS];
  201. static void get_sd_devname(int disknum, char *buffer);
  202. /**
  203.  * aac_get_containers - list containers
  204.  * @common: adapter to probe
  205.  *
  206.  * Make a list of all containers on this controller
  207.  */
  208. int aac_get_containers(struct aac_dev *dev)
  209. {
  210. struct fsa_scsi_hba *fsa_dev_ptr;
  211. int index, status = 0;
  212. struct aac_query_mount *dinfo;
  213. struct aac_mount *dresp;
  214. struct fib * fibptr;
  215. unsigned instance;
  216. fsa_dev_ptr = &(dev->fsa_dev);
  217. instance = dev->scsi_host_ptr->unique_id;
  218. if (!(fibptr = fib_alloc(dev)))
  219. return -ENOMEM;
  220. for (index = 0; index < MAXIMUM_NUM_CONTAINERS; index++) {
  221. fib_init(fibptr);
  222. dinfo = (struct aac_query_mount *) fib_data(fibptr);
  223. dinfo->command = cpu_to_le32(VM_NameServe);
  224. dinfo->count = cpu_to_le32(index);
  225. dinfo->type = cpu_to_le32(FT_FILESYS);
  226. status = fib_send(ContainerCommand,
  227.     fibptr,
  228.     sizeof (struct aac_query_mount),
  229.     FsaNormal,
  230.     1, 1,
  231.     NULL, NULL);
  232. if (status < 0 ) {
  233. printk(KERN_WARNING "ProbeContainers: SendFIB failed.n");
  234. break;
  235. }
  236. dresp = (struct aac_mount *)fib_data(fibptr);
  237. if ((le32_to_cpu(dresp->status) == ST_OK) &&
  238.     (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE)) {
  239. fsa_dev_ptr->valid[index] = 1;
  240. fsa_dev_ptr->type[index] = le32_to_cpu(dresp->mnt[0].vol);
  241. fsa_dev_ptr->size[index] = le32_to_cpu(dresp->mnt[0].capacity);
  242. if (le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY)
  243.     fsa_dev_ptr->ro[index] = 1;
  244. }
  245. fib_complete(fibptr);
  246. /*
  247.  * If there are no more containers, then stop asking.
  248.  */
  249. if ((index + 1) >= le32_to_cpu(dresp->count))
  250. break;
  251. }
  252. fib_free(fibptr);
  253. fsa_dev[instance] = fsa_dev_ptr;
  254. return status;
  255. }
  256. /**
  257.  * probe_container - query a logical volume
  258.  * @dev: device to query
  259.  * @cid: container identifier
  260.  *
  261.  * Queries the controller about the given volume. The volume information
  262.  * is updated in the struct fsa_scsi_hba structure rather than returned.
  263.  */
  264.  
  265. static int probe_container(struct aac_dev *dev, int cid)
  266. {
  267. struct fsa_scsi_hba *fsa_dev_ptr;
  268. int status;
  269. struct aac_query_mount *dinfo;
  270. struct aac_mount *dresp;
  271. struct fib * fibptr;
  272. unsigned instance;
  273. fsa_dev_ptr = &(dev->fsa_dev);
  274. instance = dev->scsi_host_ptr->unique_id;
  275. if (!(fibptr = fib_alloc(dev)))
  276. return -ENOMEM;
  277. fib_init(fibptr);
  278. dinfo = (struct aac_query_mount *)fib_data(fibptr);
  279. dinfo->command = cpu_to_le32(VM_NameServe);
  280. dinfo->count = cpu_to_le32(cid);
  281. dinfo->type = cpu_to_le32(FT_FILESYS);
  282. status = fib_send(ContainerCommand,
  283.     fibptr,
  284.     sizeof(struct aac_query_mount),
  285.     FsaNormal,
  286.     1, 1,
  287.     NULL, NULL);
  288. if (status < 0) {
  289. printk(KERN_WARNING "aacraid: probe_containers query failed.n");
  290. goto error;
  291. }
  292. dresp = (struct aac_mount *) fib_data(fibptr);
  293. if ((le32_to_cpu(dresp->status) == ST_OK) &&
  294.     (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE)) {
  295. fsa_dev_ptr->valid[cid] = 1;
  296. fsa_dev_ptr->type[cid] = le32_to_cpu(dresp->mnt[0].vol);
  297. fsa_dev_ptr->size[cid] = le32_to_cpu(dresp->mnt[0].capacity);
  298. if (le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY)
  299. fsa_dev_ptr->ro[cid] = 1;
  300. }
  301. error:
  302. fib_complete(fibptr);
  303. fib_free(fibptr);
  304. return status;
  305. }
  306. /* Local Structure to set SCSI inquiry data strings */
  307. struct scsi_inq {
  308. char vid[8];         /* Vendor ID */
  309. char pid[16];        /* Product ID */
  310. char prl[4];         /* Product Revision Level */
  311. };
  312. /**
  313.  * InqStrCopy - string merge
  314.  * @a: string to copy from
  315.  * @b: string to copy to
  316.  *
  317.  *  Copy a String from one location to another
  318.  * without copying 
  319.  */
  320. static void inqstrcpy(char *a, char *b)
  321. {
  322. while(*a != (char)0) 
  323. *b++ = *a++;
  324. }
  325. static char *container_types[] = {
  326.         "None",
  327.         "Volume",
  328.         "Mirror",
  329.         "Stripe",
  330.         "RAID5",
  331.         "SSRW",
  332.         "SSRO",
  333.         "Morph",
  334.         "Legacy",
  335.         "RAID4",
  336.         "RAID10",             
  337.         "RAID00",             
  338.         "V-MIRRORS",          
  339.         "PSEUDO R4",          
  340. "RAID50",
  341.         "Unknown"
  342. };
  343. /* Function: setinqstr
  344.  *
  345.  * Arguments: [1] pointer to void [1] int
  346.  *
  347.  * Purpose: Sets SCSI inquiry data strings for vendor, product
  348.  * and revision level. Allows strings to be set in platform dependant
  349.  * files instead of in OS dependant driver source.
  350.  */
  351. static void setinqstr(int devtype, void *data, int tindex)
  352. {
  353. struct scsi_inq *str;
  354. char *findit;
  355. struct aac_driver_ident *mp;
  356. extern struct aac_driver_ident aac_drivers[]; /* HACK FIXME */
  357. mp = &aac_drivers[devtype];
  358.    
  359. str = (struct scsi_inq *)(data); /* cast data to scsi inq block */
  360. inqstrcpy (mp->vname, str->vid); 
  361. inqstrcpy (mp->model, str->pid); /* last six chars reserved for vol type */
  362. findit = str->pid;
  363. for ( ; *findit != ' '; findit++); /* walk till we find a space then incr by 1 */
  364. findit++;
  365. if (tindex < (sizeof(container_types)/sizeof(char *))){
  366. inqstrcpy (container_types[tindex], findit);
  367. }
  368. inqstrcpy ("0001", str->prl);
  369. }
  370. void set_sense(char *sense_buf, u8 sense_key, u8 sense_code,
  371.     u8 a_sense_code, u8 incorrect_length,
  372.     u8 bit_pointer, unsigned field_pointer,
  373.     unsigned long residue)
  374. {
  375. sense_buf[0] = 0xF0; /* Sense data valid, err code 70h (current error) */
  376. sense_buf[1] = 0; /* Segment number, always zero */
  377. if (incorrect_length) {
  378. sense_buf[2] = sense_key | 0x20; /* Set the ILI bit | sense key */
  379. sense_buf[3] = BYTE3(residue);
  380. sense_buf[4] = BYTE2(residue);
  381. sense_buf[5] = BYTE1(residue);
  382. sense_buf[6] = BYTE0(residue);
  383. } else
  384. sense_buf[2] = sense_key; /* Sense key */
  385. if (sense_key == SENKEY_ILLEGAL)
  386. sense_buf[7] = 10; /* Additional sense length */
  387. else
  388. sense_buf[7] = 6; /* Additional sense length */
  389. sense_buf[12] = sense_code; /* Additional sense code */
  390. sense_buf[13] = a_sense_code; /* Additional sense code qualifier */
  391. if (sense_key == SENKEY_ILLEGAL) {
  392. sense_buf[15] = 0;
  393. if (sense_code == SENCODE_INVALID_PARAM_FIELD)
  394. sense_buf[15] = 0x80; /* Std sense key specific field */
  395. /* Illegal parameter is in the parameter block */
  396. if (sense_code == SENCODE_INVALID_CDB_FIELD)
  397. sense_buf[15] = 0xc0; /* Std sense key specific field */
  398. /* Illegal parameter is in the CDB block */
  399. sense_buf[15] |= bit_pointer;
  400. sense_buf[16] = field_pointer >> 8; /* MSB */
  401. sense_buf[17] = field_pointer; /* LSB */
  402. }
  403. }
  404. static void aac_io_done(Scsi_Cmnd * scsicmd)
  405. {
  406. unsigned long cpu_flags;
  407. spin_lock_irqsave(&io_request_lock, cpu_flags);
  408. scsicmd->scsi_done(scsicmd);
  409. spin_unlock_irqrestore(&io_request_lock, cpu_flags);
  410. }
  411. static void __aac_io_done(Scsi_Cmnd * scsicmd)
  412. {
  413. scsicmd->scsi_done(scsicmd);
  414. }
  415. static void read_callback(void *context, struct fib * fibptr)
  416. {
  417. struct aac_dev *dev;
  418. struct aac_read_reply *readreply;
  419. Scsi_Cmnd *scsicmd;
  420. unsigned long lba;
  421. int cid;
  422. scsicmd = (Scsi_Cmnd *) context;
  423. dev = (struct aac_dev *)scsicmd->host->hostdata;
  424. cid =TARGET_LUN_TO_CONTAINER(scsicmd->target, scsicmd->lun);
  425. lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
  426. dprintk((KERN_DEBUG "read_callback[cpu %d]: lba = %ld, t = %ld.n", smp_processor_id(), lba, jiffies));
  427. if (fibptr == NULL)
  428. BUG();
  429. if(scsicmd->use_sg)
  430. pci_unmap_sg(dev->pdev, 
  431. (struct scatterlist *)scsicmd->buffer,
  432. scsicmd->use_sg,
  433. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  434. else if(scsicmd->request_bufflen)
  435. pci_unmap_single(dev->pdev, (u32)scsicmd->SCp.ptr, scsicmd->request_bufflen,
  436. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  437. readreply = (struct aac_read_reply *)fib_data(fibptr);
  438. if (le32_to_cpu(readreply->status) == ST_OK)
  439. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  440. else {
  441. printk(KERN_WARNING "read_callback: read failed, status = %dn", readreply->status);
  442. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | CHECK_CONDITION;
  443. set_sense((char *) &sense_data[cid],
  444.     SENKEY_HW_ERR,
  445.     SENCODE_INTERNAL_TARGET_FAILURE,
  446.     ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0,
  447.     0, 0);
  448. }
  449. fib_complete(fibptr);
  450. fib_free(fibptr);
  451. aac_io_done(scsicmd);
  452. }
  453. static void write_callback(void *context, struct fib * fibptr)
  454. {
  455. struct aac_dev *dev;
  456. struct aac_write_reply *writereply;
  457. Scsi_Cmnd *scsicmd;
  458. unsigned long lba;
  459. int cid;
  460. scsicmd = (Scsi_Cmnd *) context;
  461. dev = (struct aac_dev *)scsicmd->host->hostdata;
  462. cid = TARGET_LUN_TO_CONTAINER(scsicmd->target, scsicmd->lun);
  463. lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
  464. dprintk((KERN_DEBUG "write_callback[cpu %d]: lba = %ld, t = %ld.n", smp_processor_id(), lba, jiffies));
  465. if (fibptr == NULL)
  466. BUG();
  467. if(scsicmd->use_sg)
  468. pci_unmap_sg(dev->pdev, 
  469. (struct scatterlist *)scsicmd->buffer,
  470. scsicmd->use_sg,
  471. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  472. else if(scsicmd->request_bufflen)
  473. pci_unmap_single(dev->pdev, (u32)scsicmd->SCp.ptr, scsicmd->request_bufflen,
  474. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  475. writereply = (struct aac_write_reply *) fib_data(fibptr);
  476. if (le32_to_cpu(writereply->status) == ST_OK)
  477. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  478. else {
  479. printk(KERN_WARNING "write_callback: write failed, status = %dn", writereply->status);
  480. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | CHECK_CONDITION;
  481. set_sense((char *) &sense_data[cid],
  482.     SENKEY_HW_ERR,
  483.     SENCODE_INTERNAL_TARGET_FAILURE,
  484.     ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0,
  485.     0, 0);
  486. }
  487. fib_complete(fibptr);
  488. fib_free(fibptr);
  489. aac_io_done(scsicmd);
  490. }
  491. int aac_read(Scsi_Cmnd * scsicmd, int cid)
  492. {
  493. unsigned long lba;
  494. unsigned long count;
  495. unsigned long byte_count = 0;
  496. int status;
  497. struct aac_read *readcmd;
  498. u16 fibsize;
  499. struct aac_dev *dev;
  500. struct fib * cmd_fibcontext;
  501. dev = (struct aac_dev *)scsicmd->host->hostdata;
  502. /*
  503.  * Get block address and transfer length
  504.  */
  505. if (scsicmd->cmnd[0] == SS_READ) /* 6 byte command */
  506. {
  507. dprintk((KERN_DEBUG "aachba: received a read(6) command on target %d.n", cid));
  508. lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
  509. count = scsicmd->cmnd[4];
  510. if (count == 0)
  511. count = 256;
  512. } else {
  513. dprintk((KERN_DEBUG "aachba: received a read(10) command on target %d.n", cid));
  514. lba = (scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
  515. count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
  516. }
  517. dprintk((KERN_DEBUG "aac_read[cpu %d]: lba = %lu, t = %ld.n", smp_processor_id(), lba, jiffies));
  518. /*
  519.  * Alocate and initialize a Fib
  520.  */
  521. if (!(cmd_fibcontext = fib_alloc(dev))) {
  522. scsicmd->result = DID_ERROR << 16;
  523. aac_io_done(scsicmd);
  524. return (-1);
  525. }
  526. fib_init(cmd_fibcontext);
  527. readcmd = (struct aac_read *) fib_data(cmd_fibcontext);
  528. readcmd->command = cpu_to_le32(VM_CtBlockRead);
  529. readcmd->cid = cpu_to_le32(cid);
  530. readcmd->block = cpu_to_le32(lba);
  531. readcmd->count = cpu_to_le32(count * 512);
  532. readcmd->sg.count = cpu_to_le32(1);
  533. if (count * 512 > (64 * 1024))
  534. BUG();
  535. /*
  536.  * Build Scatter/Gather list
  537.  */
  538. if (scsicmd->use_sg) /* use scatter/gather list */
  539. {
  540. struct scatterlist *sg;
  541. int i;
  542. int sg_count;
  543. sg = (struct scatterlist *) scsicmd->request_buffer;
  544. sg_count = pci_map_sg(dev->pdev, sg, scsicmd->use_sg,
  545. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  546. byte_count = 0;
  547. for (i = 0; i < sg_count; i++) {
  548. readcmd->sg.sg[i].addr = cpu_to_le32(sg_dma_address(sg));
  549. readcmd->sg.sg[i].count = cpu_to_le32(sg_dma_len(sg));
  550. byte_count += sg->length;
  551. if (sg->length > (64 * 1024))
  552. BUG();
  553. sg++;
  554. }
  555. readcmd->sg.count = cpu_to_le32(sg_count);
  556. if (sg_count > MAX_DRIVER_SG_SEGMENT_COUNT)
  557. BUG();
  558. }
  559. else if(scsicmd->request_bufflen)
  560. {
  561. u32 addr;
  562. addr = pci_map_single(dev->pdev, scsicmd->request_buffer,
  563. scsicmd->request_bufflen, scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  564. scsicmd->SCp.ptr = (void *)addr;
  565. readcmd->sg.sg[0].addr = cpu_to_le32(addr);
  566. readcmd->sg.sg[0].count = cpu_to_le32(scsicmd->request_bufflen);
  567. byte_count = scsicmd->request_bufflen;
  568. if (byte_count > (64 * 1024))
  569. BUG();
  570. }
  571. if (byte_count != readcmd->count)
  572. BUG();
  573. /*
  574.  * Now send the Fib to the adapter
  575.  */
  576. fibsize = sizeof(struct aac_read) + ((readcmd->sg.count - 1) * sizeof (struct sgentry));
  577. status = fib_send(ContainerCommand, 
  578.   cmd_fibcontext, 
  579.   fibsize, 
  580.   FsaNormal, 
  581.   0, 1, 
  582.   (fib_callback) read_callback, 
  583.   (void *) scsicmd);
  584. /*
  585.  * Check that the command queued to the controller
  586.  */
  587. if (status == -EINPROGRESS) 
  588. return 0;
  589. printk(KERN_WARNING "aac_read: fib_send failed with status: %d.n", status);
  590. /*
  591.  * For some reason, the Fib didn't queue, return QUEUE_FULL
  592.  */
  593. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | QUEUE_FULL;
  594. aac_io_done(scsicmd);
  595. fib_complete(cmd_fibcontext);
  596. fib_free(cmd_fibcontext);
  597. return -1;
  598. }
  599. static int aac_write(Scsi_Cmnd * scsicmd, int cid)
  600. {
  601. unsigned long lba;
  602. unsigned long count;
  603. unsigned long byte_count = 0;
  604. int status;
  605. struct aac_write *writecmd;
  606. u16 fibsize;
  607. struct aac_dev *dev;
  608. struct fib * cmd_fibcontext;
  609. dev = (struct aac_dev *)scsicmd->host->hostdata;
  610. /*
  611.  * Get block address and transfer length
  612.  */
  613. if (scsicmd->cmnd[0] == SS_WRITE) /* 6 byte command */
  614. {
  615. lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
  616. count = scsicmd->cmnd[4];
  617. if (count == 0)
  618. count = 256;
  619. } else {
  620. dprintk((KERN_DEBUG "aachba: received a write(10) command on target %d.n", cid));
  621. lba = (scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
  622. count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
  623. }
  624. dprintk((KERN_DEBUG "aac_write[cpu %d]: lba = %lu, t = %ld.n", smp_processor_id(), lba, jiffies));
  625. /*
  626.  * Allocate and initialize a Fib then setup a BlockWrite command
  627.  */
  628. if (!(cmd_fibcontext = fib_alloc(dev))) {
  629. scsicmd->result = DID_ERROR << 16;
  630. aac_io_done(scsicmd);
  631. return -1;
  632. }
  633. fib_init(cmd_fibcontext);
  634. writecmd = (struct aac_write *) fib_data(cmd_fibcontext);
  635. writecmd->command = cpu_to_le32(VM_CtBlockWrite);
  636. writecmd->cid = cpu_to_le32(cid);
  637. writecmd->block = cpu_to_le32(lba);
  638. writecmd->count = cpu_to_le32(count * 512);
  639. writecmd->sg.count = cpu_to_le32(1);
  640. /* FIXME: why isnt ->stable setup */
  641. if (count * 512 > (64 * 1024)) {
  642. BUG();
  643. }
  644. /*
  645.  * Build Scatter/Gather list
  646.  */
  647. if (scsicmd->use_sg)
  648. {
  649. struct scatterlist *sg;
  650. int i;
  651. int sg_count;
  652. sg = (struct scatterlist *) scsicmd->request_buffer;
  653. sg_count = pci_map_sg(dev->pdev, sg, scsicmd->use_sg,
  654. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  655. byte_count = 0;
  656. for (i = 0; i < scsicmd->use_sg; i++) {
  657. writecmd->sg.sg[i].addr = cpu_to_le32(sg_dma_address(sg));
  658. writecmd->sg.sg[i].count = cpu_to_le32(sg_dma_len(sg));
  659. byte_count += sg->length;
  660. if (sg->length > (64 * 1024))
  661. BUG();
  662. sg++;
  663. }
  664. writecmd->sg.count = cpu_to_le32(sg_count);
  665. if (sg_count > MAX_DRIVER_SG_SEGMENT_COUNT)
  666. BUG();
  667. }
  668. else if(scsicmd->request_bufflen)
  669. {
  670. u32 addr; 
  671. addr = pci_map_single(dev->pdev,
  672. scsicmd->request_buffer,
  673. scsicmd->request_bufflen,
  674. scsi_to_pci_dma_dir(scsicmd->sc_data_direction));
  675. writecmd->sg.sg[0].addr = cpu_to_le32(addr);
  676. writecmd->sg.sg[0].count = cpu_to_le32(scsicmd->request_bufflen);  
  677. scsicmd->SCp.ptr = (void *)addr;
  678. byte_count = scsicmd->request_bufflen;
  679. if (byte_count > (64 * 1024))
  680. BUG();
  681. }
  682. if (byte_count != writecmd->count)
  683. BUG();
  684. /*
  685.  * Now send the Fib to the adapter
  686.  */
  687. fibsize = sizeof (struct aac_write) + ((writecmd->sg.count - 1) * sizeof (struct sgentry));
  688. status = fib_send(ContainerCommand, 
  689.   cmd_fibcontext,
  690.   fibsize, FsaNormal,
  691.   0, 1,
  692.   (fib_callback) write_callback,
  693.   (void *) scsicmd);
  694. /*
  695.  * Check that the command queued to the controller
  696.  */
  697. if (status == -EINPROGRESS)
  698. return 0;
  699. printk(KERN_WARNING "aac_write: fib_send failed with status: %dn", status);
  700. /*
  701.  * For some reason, the Fib didn't queue, return QUEUE_FULL
  702.  */
  703. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | QUEUE_FULL;
  704. aac_io_done(scsicmd);
  705. fib_complete(cmd_fibcontext);
  706. fib_free(cmd_fibcontext);
  707. return -1;
  708. }
  709. /**
  710.  * aac_scsi_cmd() - Process SCSI command
  711.  * @scsicmd: SCSI command block
  712.  * @wait: 1 if the user wants to await completion
  713.  *
  714.  * Emulate a SCSI command and queue the required request for the
  715.  * aacraid firmware.
  716.  */
  717.  
  718. int aac_scsi_cmd(Scsi_Cmnd * scsicmd)
  719. {
  720. int cid = 0;
  721. struct fsa_scsi_hba *fsa_dev_ptr;
  722. int cardtype;
  723. int ret;
  724. struct aac_dev *dev = (struct aac_dev *)scsicmd->host->hostdata;
  725. cardtype = dev->cardtype;
  726. fsa_dev_ptr = fsa_dev[scsicmd->host->unique_id];
  727. /*
  728.  * If the bus, target or lun is out of range, return fail
  729.  * Test does not apply to ID 16, the pseudo id for the controller
  730.  * itself.
  731.  */
  732. if (scsicmd->target != scsicmd->host->this_id) {
  733. if ((scsicmd->channel > 0) ||(scsicmd->target > 15) || (scsicmd->lun > 7)) 
  734. {
  735. dprintk((KERN_DEBUG "The bus, target or lun is out of range = %d, %d, %d.n", 
  736. scsicmd->channel, scsicmd->target, scsicmd->lun));
  737. scsicmd->result = DID_BAD_TARGET << 16;
  738. __aac_io_done(scsicmd);
  739. return -1;
  740. }
  741. cid = TARGET_LUN_TO_CONTAINER(scsicmd->target, scsicmd->lun);
  742. /*
  743.  * If the target container doesn't exist, it may have
  744.  * been newly created
  745.  */
  746. if (fsa_dev_ptr->valid[cid] == 0) {
  747. switch (scsicmd->cmnd[0]) {
  748. case SS_INQUIR:
  749. case SS_RDCAP:
  750. case SS_TEST:
  751. spin_unlock_irq(&io_request_lock);
  752. probe_container(dev, cid);
  753. spin_lock_irq(&io_request_lock);
  754. default:
  755. break;
  756. }
  757. }
  758. /*
  759.  * If the target container still doesn't exist, 
  760.  * return failure
  761.  */
  762. if (fsa_dev_ptr->valid[cid] == 0) {
  763. scsicmd->result = DID_BAD_TARGET << 16;
  764. __aac_io_done(scsicmd);
  765. return -1;
  766. }
  767. else if ((scsicmd->cmnd[0] != SS_INQUIR) && /* only INQUIRY & TUR cmnd supported for controller */
  768.     (scsicmd->cmnd[0] != SS_TEST)) 
  769. {
  770. /*
  771.  * Command aimed at the controller
  772.  */
  773. dprintk((KERN_WARNING "Only INQUIRY & TUR command supported for controller, rcvd = 0x%x.n", scsicmd->cmnd[0]));
  774. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | CHECK_CONDITION;
  775. set_sense((char *) &sense_data[cid],
  776.     SENKEY_ILLEGAL,
  777.     SENCODE_INVALID_COMMAND,
  778.     ASENCODE_INVALID_COMMAND, 0, 0, 0, 0);
  779. __aac_io_done(scsicmd);
  780. return -1;
  781. }
  782. /* Handle commands here that don't really require going out to the adapter */
  783. switch (scsicmd->cmnd[0]) 
  784. {
  785. case SS_INQUIR:
  786. {
  787. struct inquiry_data *inq_data_ptr;
  788. dprintk((KERN_DEBUG "INQUIRY command, ID: %d.n", scsicmd->target));
  789. inq_data_ptr = (struct inquiry_data *)scsicmd->request_buffer;
  790. memset(inq_data_ptr, 0, sizeof (struct inquiry_data));
  791. inq_data_ptr->inqd_ver = 2; /* claim compliance to SCSI-2 */
  792. inq_data_ptr->inqd_dtq = 0x80; /* set RMB bit to one indicating that the medium is removable */
  793. inq_data_ptr->inqd_rdf = 2; /* A response data format value of two indicates that the data shall be in the format specified in SCSI-2 */
  794. inq_data_ptr->inqd_len = 31;
  795. /*
  796.  * Set the Vendor, Product, and Revision Level
  797.  * see: <vendor>.c i.e. aac.c
  798.  */
  799. setinqstr(cardtype, (void *) (inq_data_ptr->inqd_vid), fsa_dev_ptr->type[cid]);
  800. if (scsicmd->target == scsicmd->host->this_id)
  801.      inq_data_ptr->inqd_pdt = INQD_PDT_PROC; /* Processor device */
  802. else
  803. inq_data_ptr->inqd_pdt = INQD_PDT_DA; /* Direct/random access device */
  804. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  805. __aac_io_done(scsicmd);
  806. return 0;
  807. }
  808. case SS_RDCAP:
  809. {
  810. int capacity;
  811. char *cp;
  812. dprintk((KERN_DEBUG "READ CAPACITY command.n"));
  813. capacity = fsa_dev_ptr->size[cid] - 1;
  814. cp = scsicmd->request_buffer;
  815. cp[0] = (capacity >> 24) & 0xff;
  816. cp[1] = (capacity >> 16) & 0xff;
  817. cp[2] = (capacity >> 8) & 0xff;
  818. cp[3] = (capacity >> 0) & 0xff;
  819. cp[4] = 0;
  820. cp[5] = 0;
  821. cp[6] = 2;
  822. cp[7] = 0;
  823. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  824. __aac_io_done(scsicmd);
  825. return 0;
  826. }
  827. case SS_MODESEN:
  828. {
  829. char *mode_buf;
  830. dprintk((KERN_DEBUG "MODE SENSE command.n"));
  831. mode_buf = scsicmd->request_buffer;
  832. mode_buf[0] = 0; /* Mode data length (MSB) */
  833. mode_buf[1] = 6; /* Mode data length (LSB) */
  834. mode_buf[2] = 0; /* Medium type - default */
  835. mode_buf[3] = 0; /* Device-specific param, bit 8: 0/1 = write enabled/protected */
  836. mode_buf[4] = 0; /* reserved */
  837. mode_buf[5] = 0; /* reserved */
  838. mode_buf[6] = 0; /* Block descriptor length (MSB) */
  839. mode_buf[7] = 0; /* Block descriptor length (LSB) */
  840. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  841. __aac_io_done(scsicmd);
  842. return 0;
  843. }
  844. case SS_REQSEN:
  845. dprintk((KERN_DEBUG "REQUEST SENSE command.n"));
  846. memcpy(scsicmd->sense_buffer, &sense_data[cid], sizeof (struct sense_data));
  847. memset(&sense_data[cid], 0, sizeof (struct sense_data));
  848. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  849. __aac_io_done(scsicmd);
  850. return (0);
  851. case SS_LOCK:
  852. dprintk((KERN_DEBUG "LOCK command.n"));
  853. if (scsicmd->cmnd[4])
  854. fsa_dev_ptr->locked[cid] = 1;
  855. else
  856. fsa_dev_ptr->locked[cid] = 0;
  857. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  858. __aac_io_done(scsicmd);
  859. return 0;
  860. /*
  861.  * These commands are all No-Ops
  862.  */
  863. case SS_TEST:
  864. case SS_RESERV:
  865. case SS_RELES:
  866. case SS_REZERO:
  867. case SS_REASGN:
  868. case SS_SEEK:
  869. case SS_ST_SP:
  870. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | GOOD;
  871. __aac_io_done(scsicmd);
  872. return (0);
  873. }
  874. switch (scsicmd->cmnd[0]) 
  875. {
  876. case SS_READ:
  877. case SM_READ:
  878. /*
  879.  * Hack to keep track of ordinal number of the device that
  880.  * corresponds to a container. Needed to convert
  881.  * containers to /dev/sd device names
  882.  */
  883.  
  884. spin_unlock_irq(&io_request_lock);
  885. fsa_dev_ptr->devno[cid] = DEVICE_NR(scsicmd->request.rq_dev);
  886. ret = aac_read(scsicmd, cid);
  887. spin_lock_irq(&io_request_lock);
  888. return ret;
  889. case SS_WRITE:
  890. case SM_WRITE:
  891. spin_unlock_irq(&io_request_lock);
  892. ret = aac_write(scsicmd, cid);
  893. spin_lock_irq(&io_request_lock);
  894. return ret;
  895. default:
  896. /*
  897.  * Unhandled commands
  898.  */
  899. printk(KERN_WARNING "Unhandled SCSI Command: 0x%x.n", scsicmd->cmnd[0]);
  900. scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | CHECK_CONDITION;
  901. set_sense((char *) &sense_data[cid],
  902. SENKEY_ILLEGAL, SENCODE_INVALID_COMMAND,
  903. ASENCODE_INVALID_COMMAND, 0, 0, 0, 0);
  904. __aac_io_done(scsicmd);
  905. return -1;
  906. }
  907. }
  908. static int query_disk(struct aac_dev *dev, void *arg)
  909. {
  910. struct aac_query_disk qd;
  911. struct fsa_scsi_hba *fsa_dev_ptr;
  912. fsa_dev_ptr = &(dev->fsa_dev);
  913. if (copy_from_user(&qd, arg, sizeof (struct aac_query_disk)))
  914. return -EFAULT;
  915. if (qd.cnum == -1)
  916. qd.cnum = TARGET_LUN_TO_CONTAINER(qd.target, qd.lun);
  917. else if ((qd.bus == -1) && (qd.target == -1) && (qd.lun == -1)) 
  918. {
  919. if (qd.cnum < 0 || qd.cnum > MAXIMUM_NUM_CONTAINERS)
  920. return -EINVAL;
  921. qd.instance = dev->scsi_host_ptr->host_no;
  922. qd.bus = 0;
  923. qd.target = CONTAINER_TO_TARGET(qd.cnum);
  924. qd.lun = CONTAINER_TO_LUN(qd.cnum);
  925. }
  926. else return -EINVAL;
  927. qd.valid = fsa_dev_ptr->valid[qd.cnum];
  928. qd.locked = fsa_dev_ptr->locked[qd.cnum];
  929. qd.deleted = fsa_dev_ptr->deleted[qd.cnum];
  930. if (fsa_dev_ptr->devno[qd.cnum] == -1)
  931. qd.unmapped = 1;
  932. else
  933. qd.unmapped = 0;
  934. get_sd_devname(fsa_dev_ptr->devno[qd.cnum], qd.name);
  935. if (copy_to_user(arg, &qd, sizeof (struct aac_query_disk)))
  936. return -EFAULT;
  937. return 0;
  938. }
  939. static void get_sd_devname(int disknum, char *buffer)
  940. {
  941. if (disknum < 0) {
  942. sprintf(buffer, "%s", "");
  943. return;
  944. }
  945. if (disknum < 26)
  946. sprintf(buffer, "sd%c", 'a' + disknum);
  947. else {
  948. unsigned int min1;
  949. unsigned int min2;
  950. /*
  951.  * For larger numbers of disks, we need to go to a new
  952.  * naming scheme.
  953.  */
  954. min1 = disknum / 26;
  955. min2 = disknum % 26;
  956. sprintf(buffer, "sd%c%c", 'a' + min1 - 1, 'a' + min2);
  957. }
  958. }
  959. static int force_delete_disk(struct aac_dev *dev, void *arg)
  960. {
  961. struct aac_delete_disk dd;
  962. struct fsa_scsi_hba *fsa_dev_ptr;
  963. fsa_dev_ptr = &(dev->fsa_dev);
  964. if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
  965. return -EFAULT;
  966. if (dd.cnum > MAXIMUM_NUM_CONTAINERS)
  967. return -EINVAL;
  968. /*
  969.  * Mark this container as being deleted.
  970.  */
  971. fsa_dev_ptr->deleted[dd.cnum] = 1;
  972. /*
  973.  * Mark the container as no longer valid
  974.  */
  975. fsa_dev_ptr->valid[dd.cnum] = 0;
  976. return 0;
  977. }
  978. static int delete_disk(struct aac_dev *dev, void *arg)
  979. {
  980. struct aac_delete_disk dd;
  981. struct fsa_scsi_hba *fsa_dev_ptr;
  982. fsa_dev_ptr = &(dev->fsa_dev);
  983. if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
  984. return -EFAULT;
  985. if (dd.cnum > MAXIMUM_NUM_CONTAINERS)
  986. return -EINVAL;
  987. /*
  988.  * If the container is locked, it can not be deleted by the API.
  989.  */
  990. if (fsa_dev_ptr->locked[dd.cnum])
  991. return -EBUSY;
  992. else {
  993. /*
  994.  * Mark the container as no longer being valid.
  995.  */
  996. fsa_dev_ptr->valid[dd.cnum] = 0;
  997. fsa_dev_ptr->devno[dd.cnum] = -1;
  998. return 0;
  999. }
  1000. }
  1001. int aac_dev_ioctl(struct aac_dev *dev, int cmd, void *arg)
  1002. {
  1003. switch (cmd) {
  1004. case FSACTL_QUERY_DISK:
  1005. return query_disk(dev, arg);
  1006. case FSACTL_DELETE_DISK:
  1007. return delete_disk(dev, arg);
  1008. case FSACTL_FORCE_DELETE_DISK:
  1009. return force_delete_disk(dev, arg);
  1010. case 2131:
  1011. return aac_get_containers(dev);
  1012. default:
  1013. return -ENOTTY;
  1014. }
  1015. }