pluto.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* pluto.c: SparcSTORAGE Array SCSI host adapter driver.
  2.  *
  3.  * Copyright (C) 1997,1998,1999 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  4.  *
  5.  */
  6. #include <linux/kernel.h>
  7. #include <linux/delay.h>
  8. #include <linux/types.h>
  9. #include <linux/string.h>
  10. #include <linux/slab.h>
  11. #include <linux/blk.h>
  12. #include <linux/proc_fs.h>
  13. #include <linux/stat.h>
  14. #include <linux/init.h>
  15. #include <linux/config.h>
  16. #ifdef CONFIG_KMOD
  17. #include <linux/kmod.h>
  18. #endif
  19. #include <asm/irq.h>
  20. #include "scsi.h"
  21. #include "hosts.h"
  22. #include "../fc4/fcp_impl.h"
  23. #include "pluto.h"
  24. #include <linux/module.h>
  25. /* #define PLUTO_DEBUG */
  26. #define pluto_printk printk ("PLUTO %s: ", fc->name); printk
  27. #ifdef PLUTO_DEBUG
  28. #define PLD(x)  pluto_printk x;
  29. #define PLND(x) printk ("PLUTO: "); printk x;
  30. #else
  31. #define PLD(x)
  32. #define PLND(x)
  33. #endif
  34. static struct ctrl_inquiry {
  35. struct Scsi_Host host;
  36. struct pluto pluto;
  37. Scsi_Cmnd cmd;
  38. char inquiry[256];
  39. fc_channel *fc;
  40. } *fcs __initdata = { 0 };
  41. static int fcscount __initdata = 0;
  42. static atomic_t fcss __initdata = ATOMIC_INIT(0);
  43. DECLARE_MUTEX_LOCKED(fc_sem);
  44. static int pluto_encode_addr(Scsi_Cmnd *SCpnt, u16 *addr, fc_channel *fc, fcp_cmnd *fcmd);
  45. static void __init pluto_detect_timeout(unsigned long data)
  46. {
  47. PLND(("Timeoutn"))
  48. up(&fc_sem);
  49. }
  50. static void __init pluto_detect_done(Scsi_Cmnd *SCpnt)
  51. {
  52. /* Do nothing */
  53. }
  54. static void __init pluto_detect_scsi_done(Scsi_Cmnd *SCpnt)
  55. {
  56. SCpnt->request.rq_status = RQ_SCSI_DONE;
  57. PLND(("Detect done %08lxn", (long)SCpnt))
  58. if (atomic_dec_and_test (&fcss))
  59. up(&fc_sem);
  60. }
  61. static void pluto_select_queue_depths(struct Scsi_Host *host, Scsi_Device *devlist)
  62. {
  63. Scsi_Device *device;
  64. for (device = devlist; device; device = device->next) {
  65. if (device->host != host) continue;
  66. if (device->tagged_supported)
  67. device->queue_depth = /* 254 */ 8;
  68. else
  69. device->queue_depth = 2;
  70. }
  71. }
  72. /* Detect all SSAs attached to the machine.
  73.    To be fast, do it on all online FC channels at the same time. */
  74. int __init pluto_detect(Scsi_Host_Template *tpnt)
  75. {
  76. int i, retry, nplutos;
  77. fc_channel *fc;
  78. Scsi_Device dev;
  79. struct timer_list fc_timer = { function: pluto_detect_timeout };
  80. tpnt->proc_name = "pluto";
  81. fcscount = 0;
  82. for_each_online_fc_channel(fc) {
  83. if (!fc->posmap)
  84. fcscount++;
  85. }
  86. PLND(("%d channels onlinen", fcscount))
  87. if (!fcscount) {
  88. #if defined(MODULE) && defined(CONFIG_FC4_SOC_MODULE) && defined(CONFIG_KMOD)
  89. request_module("soc");
  90. for_each_online_fc_channel(fc) {
  91. if (!fc->posmap)
  92. fcscount++;
  93. }
  94. if (!fcscount)
  95. #endif
  96. return 0;
  97. }
  98. fcs = (struct ctrl_inquiry *) kmalloc (sizeof (struct ctrl_inquiry) * fcscount, GFP_DMA);
  99. if (!fcs) {
  100. printk ("PLUTO: Not enough memory to proben");
  101. return 0;
  102. }
  103. memset (fcs, 0, sizeof (struct ctrl_inquiry) * fcscount);
  104. memset (&dev, 0, sizeof(dev));
  105. atomic_set (&fcss, fcscount);
  106. i = 0;
  107. for_each_online_fc_channel(fc) {
  108. Scsi_Cmnd *SCpnt;
  109. struct Scsi_Host *host;
  110. struct pluto *pluto;
  111. if (i == fcscount) break;
  112. if (fc->posmap) continue;
  113. PLD(("trying to find SSAn"))
  114. /* If this is already registered to some other SCSI host, then it cannot be pluto */
  115. if (fc->scsi_name[0]) continue;
  116. memcpy (fc->scsi_name, "SSA", 4);
  117. fcs[i].fc = fc;
  118. fc->can_queue = PLUTO_CAN_QUEUE;
  119. fc->rsp_size = 64;
  120. fc->encode_addr = pluto_encode_addr;
  121. fc->fcp_register(fc, TYPE_SCSI_FCP, 0);
  122. SCpnt = &(fcs[i].cmd);
  123. host = &(fcs[i].host);
  124. pluto = (struct pluto *)host->hostdata;
  125. pluto->fc = fc;
  126. SCpnt->host = host;
  127. SCpnt->cmnd[0] = INQUIRY;
  128. SCpnt->cmnd[4] = 255;
  129. /* FC layer requires this, so that SCpnt->device->tagged_supported is initially 0 */
  130. SCpnt->device = &dev;
  131. SCpnt->cmd_len = COMMAND_SIZE(INQUIRY);
  132. SCpnt->request.rq_status = RQ_SCSI_BUSY;
  133. SCpnt->done = pluto_detect_done;
  134. SCpnt->bufflen = 256;
  135. SCpnt->buffer = fcs[i].inquiry;
  136. SCpnt->request_bufflen = 256;
  137. SCpnt->request_buffer = fcs[i].inquiry;
  138. PLD(("set up %d %08lxn", i, (long)SCpnt))
  139. i++;
  140. }
  141. for (retry = 0; retry < 5; retry++) {
  142. for (i = 0; i < fcscount; i++) {
  143. if (!fcs[i].fc) break;
  144. if (fcs[i].cmd.request.rq_status != RQ_SCSI_DONE) {
  145. disable_irq(fcs[i].fc->irq);
  146. PLND(("queuecommand %d %dn", retry, i))
  147. fcp_scsi_queuecommand (&(fcs[i].cmd), 
  148. pluto_detect_scsi_done);
  149. enable_irq(fcs[i].fc->irq);
  150. }
  151. }
  152.     
  153. fc_timer.expires = jiffies + 10 * HZ;
  154. add_timer(&fc_timer);
  155. down(&fc_sem);
  156. PLND(("Woken upn"))
  157. if (!atomic_read(&fcss))
  158. break; /* All fc channels have answered us */
  159. }
  160. del_timer_sync(&fc_timer);
  161. PLND(("Finished searchn"))
  162. for (i = 0, nplutos = 0; i < fcscount; i++) {
  163. Scsi_Cmnd *SCpnt;
  164. if (!(fc = fcs[i].fc)) break;
  165. SCpnt = &(fcs[i].cmd);
  166. /* Let FC mid-level free allocated resources */
  167. SCpnt->done (SCpnt);
  168. if (!SCpnt->result) {
  169. struct pluto_inquiry *inq;
  170. struct pluto *pluto;
  171. struct Scsi_Host *host;
  172. inq = (struct pluto_inquiry *)fcs[i].inquiry;
  173. if ((inq->dtype & 0x1f) == TYPE_PROCESSOR &&
  174.     !strncmp (inq->vendor_id, "SUN", 3) &&
  175.     !strncmp (inq->product_id, "SSA", 3)) {
  176. char *p;
  177. long *ages;
  178. ages = kmalloc (((inq->channels + 1) * inq->targets) * sizeof(long), GFP_KERNEL);
  179. if (!ages) continue;
  180. host = scsi_register (tpnt, sizeof (struct pluto));
  181. if(!host)
  182. {
  183. kfree(ages);
  184. continue;
  185. }
  186. nplutos++;
  187. if (fc->module) __MOD_INC_USE_COUNT(fc->module);
  188. pluto = (struct pluto *)host->hostdata;
  189. host->max_id = inq->targets;
  190. host->max_channel = inq->channels;
  191. host->irq = fc->irq;
  192. #ifdef __sparc_v9__
  193. host->unchecked_isa_dma = 1;
  194. #endif
  195. host->select_queue_depths = pluto_select_queue_depths;
  196. fc->channels = inq->channels + 1;
  197. fc->targets = inq->targets;
  198. fc->ages = ages;
  199. memset (ages, 0, ((inq->channels + 1) * inq->targets) * sizeof(long));
  200. pluto->fc = fc;
  201. memcpy (pluto->rev_str, inq->revision, 4);
  202. pluto->rev_str[4] = 0;
  203. p = strchr (pluto->rev_str, ' ');
  204. if (p) *p = 0;
  205. memcpy (pluto->fw_rev_str, inq->fw_revision, 4);
  206. pluto->fw_rev_str[4] = 0;
  207. p = strchr (pluto->fw_rev_str, ' ');
  208. if (p) *p = 0;
  209. memcpy (pluto->serial_str, inq->serial, 12);
  210. pluto->serial_str[12] = 0;
  211. p = strchr (pluto->serial_str, ' ');
  212. if (p) *p = 0;
  213. PLD(("Found SSA rev %s fw rev %s serial %s %dx%dn", pluto->rev_str, pluto->fw_rev_str, pluto->serial_str, host->max_channel, host->max_id))
  214. } else
  215. fc->fcp_register(fc, TYPE_SCSI_FCP, 1);
  216. } else
  217. fc->fcp_register(fc, TYPE_SCSI_FCP, 1);
  218. }
  219. kfree((char *)fcs);
  220. if (nplutos)
  221. printk ("PLUTO: Total of %d SparcSTORAGE Arrays foundn", nplutos);
  222. return nplutos;
  223. }
  224. int pluto_release(struct Scsi_Host *host)
  225. {
  226. struct pluto *pluto = (struct pluto *)host->hostdata;
  227. fc_channel *fc = pluto->fc;
  228. if (fc->module) __MOD_DEC_USE_COUNT(fc->module);
  229. fc->fcp_register(fc, TYPE_SCSI_FCP, 1);
  230. PLND((" releasing pluto.n"));
  231. kfree (fc->ages);
  232. PLND(("released pluto!n"));
  233. return 0;
  234. }
  235. const char *pluto_info(struct Scsi_Host *host)
  236. {
  237. static char buf[128], *p;
  238. struct pluto *pluto = (struct pluto *) host->hostdata;
  239. sprintf(buf, "SUN SparcSTORAGE Array %s fw %s serial %s %dx%d on %s",
  240. pluto->rev_str, pluto->fw_rev_str, pluto->serial_str,
  241. host->max_channel, host->max_id, pluto->fc->name);
  242. #ifdef __sparc__
  243. p = strchr(buf, 0);
  244. sprintf(p, " PROM node %x", pluto->fc->dev->prom_node);
  245. #endif
  246. return buf;
  247. }
  248. /* SSA uses this FC4S addressing:
  249.    switch (addr[0])
  250.    {
  251.    case 0: CONTROLLER - All of addr[1]..addr[3] has to be 0
  252.    case 1: SINGLE DISK - addr[1] channel, addr[2] id, addr[3] 0
  253.    case 2: DISK GROUP - ???
  254.    }
  255.    
  256.    So that SCSI mid-layer can access to these, we reserve
  257.    channel 0 id 0 lun 0 for CONTROLLER
  258.    and channels 1 .. max_channel are normal single disks.
  259.  */
  260. static int pluto_encode_addr(Scsi_Cmnd *SCpnt, u16 *addr, fc_channel *fc, fcp_cmnd *fcmd)
  261. {
  262. PLND(("encode addr %d %d %dn", SCpnt->channel, SCpnt->target, SCpnt->cmnd[1] & 0xe0))
  263. /* We don't support LUNs - neither does SSA :) */
  264. if (SCpnt->cmnd[1] & 0xe0) return -EINVAL;
  265. if (!SCpnt->channel) {
  266. if (SCpnt->target) return -EINVAL;
  267. memset (addr, 0, 4 * sizeof(u16));
  268. } else {
  269. addr[0] = 1;
  270. addr[1] = SCpnt->channel - 1;
  271. addr[2] = SCpnt->target;
  272. addr[3] = 0;
  273. }
  274. /* We're Point-to-Point, so target it to the default DID */
  275. fcmd->did = fc->did;
  276. PLND(("trying %04x%04x%04x%04xn", addr[0], addr[1], addr[2], addr[3]))
  277. return 0;
  278. }
  279. static Scsi_Host_Template driver_template = PLUTO;
  280. #include "scsi_module.c"
  281. EXPORT_NO_SYMBOLS;