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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* soc.c: Sparc SUNW,soc (Serial Optical Channel) Fibre Channel Sbus adapter support.
  2.  *
  3.  * Copyright (C) 1996,1997,1999 Jakub Jelinek (jj@ultra.linux.cz)
  4.  * Copyright (C) 1997,1998 Jirka Hanika (geo@ff.cuni.cz)
  5.  *
  6.  * Sources:
  7.  * Fibre Channel Physical & Signaling Interface (FC-PH), dpANS, 1994
  8.  * dpANS Fibre Channel Protocol for SCSI (X3.269-199X), Rev. 012, 1995
  9.  *
  10.  * Supported hardware:
  11.  *      Tested on SOC sbus card bought with SS1000 in Linux running on SS5 and Ultra1. 
  12.  *      For SOC sbus cards, you have to make sure your FCode is 1.52 or later.
  13.  *      If you have older FCode, you should try to upgrade or get SOC microcode from Sun
  14.  *      (the microcode is present in Solaris soc driver as well). In that case you need
  15.  *      to #define HAVE_SOC_UCODE and format the microcode into soc_asm.c. For the exact
  16.  *      format mail me and I will tell you. I cannot offer you the actual microcode though,
  17.  *      unless Sun confirms they don't mind.
  18.  */
  19. static char *version =
  20.         "soc.c:v1.3 9/Feb/99 Jakub Jelinek (jj@ultra.linux.cz), Jirka Hanika (geo@ff.cuni.cz)n";
  21. #include <linux/module.h>
  22. #include <linux/kernel.h>
  23. #include <linux/sched.h>
  24. #include <linux/types.h>
  25. #include <linux/fcntl.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/ptrace.h>
  28. #include <linux/ioport.h>
  29. #include <linux/in.h>
  30. #include <linux/slab.h>
  31. #include <linux/string.h>
  32. #include <linux/init.h>
  33. #include <asm/bitops.h>
  34. #include <asm/io.h>
  35. #include <asm/dma.h>
  36. #include <linux/errno.h>
  37. #include <asm/byteorder.h>
  38. #include <asm/openprom.h>
  39. #include <asm/oplib.h>
  40. #include <asm/auxio.h>
  41. #include <asm/pgtable.h>
  42. #include <asm/irq.h>
  43. /* #define SOCDEBUG */
  44. /* #define HAVE_SOC_UCODE */
  45. #include "fcp_impl.h"
  46. #include "soc.h"
  47. #ifdef HAVE_SOC_UCODE
  48. #include "soc_asm.h"
  49. #endif
  50. #define soc_printk printk ("soc%d: ", s->soc_no); printk 
  51. #ifdef SOCDEBUG
  52. #define SOD(x)  soc_printk x;
  53. #else
  54. #define SOD(x)
  55. #endif
  56. #define for_each_soc(s) for (s = socs; s; s = s->next)
  57. struct soc *socs = NULL;
  58. static inline void soc_disable(struct soc *s)
  59. {
  60. sbus_writel(0, s->regs + IMASK);
  61. sbus_writel(SOC_CMD_SOFT_RESET, s->regs + CMD);
  62. }
  63. static inline void soc_enable(struct soc *s)
  64. {
  65. SOD(("enable %08xn", s->cfg))
  66. sbus_writel(0, s->regs + SAE);
  67. sbus_writel(s->cfg, s->regs + CFG);
  68. sbus_writel(SOC_CMD_RSP_QALL, s->regs + CMD);
  69. SOC_SETIMASK(s, SOC_IMASK_RSP_QALL | SOC_IMASK_SAE);
  70. SOD(("imask %08lx %08lxn", s->imask, sbus_readl(s->regs + IMAK)));
  71. }
  72. static void soc_reset(fc_channel *fc)
  73. {
  74. soc_port *port = (soc_port *)fc;
  75. struct soc *s = port->s;
  76. /* FIXME */
  77. soc_disable(s);
  78. s->req[0].seqno = 1;
  79. s->req[1].seqno = 1;
  80. s->rsp[0].seqno = 1;
  81. s->rsp[1].seqno = 1;
  82. s->req[0].in = 0;
  83. s->req[1].in = 0;
  84. s->rsp[0].in = 0;
  85. s->rsp[1].in = 0;
  86. s->req[0].out = 0;
  87. s->req[1].out = 0;
  88. s->rsp[0].out = 0;
  89. s->rsp[1].out = 0;
  90. /* FIXME */
  91. soc_enable(s);
  92. }
  93. static void inline soc_solicited (struct soc *s)
  94. {
  95. fc_hdr fchdr;
  96. soc_rsp *hwrsp;
  97. soc_cq *sw_cq;
  98. int token;
  99. int status;
  100. fc_channel *fc;
  101. sw_cq = &s->rsp[SOC_SOLICITED_RSP_Q];
  102. if (sw_cq->pool == NULL)
  103. sw_cq->pool = (soc_req *)
  104. (s->xram + xram_get_32low ((xram_p)&sw_cq->hw_cq->address));
  105. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  106. SOD (("soc_solicited, %d pkts arrivedn", (sw_cq->in-sw_cq->out) & sw_cq->last))
  107. for (;;) {
  108. hwrsp = (soc_rsp *)sw_cq->pool + sw_cq->out;
  109. token = xram_get_32low ((xram_p)&hwrsp->shdr.token);
  110. status = xram_get_32low ((xram_p)&hwrsp->status);
  111. fc = (fc_channel *)(&s->port[(token >> 11) & 1]);
  112. if (status == SOC_OK) {
  113. fcp_receive_solicited(fc, token >> 12,
  114.       token & ((1 << 11) - 1),
  115.       FC_STATUS_OK, NULL);
  116. } else {
  117. xram_copy_from(&fchdr, (xram_p)&hwrsp->fchdr, sizeof(fchdr));
  118. /* We have intentionally defined FC_STATUS_* constants
  119.  * to match SOC_* constants, otherwise we'd have to
  120.  * translate status.
  121.  */
  122. fcp_receive_solicited(fc, token >> 12,
  123.       token & ((1 << 11) - 1),
  124.       status, &fchdr);
  125. }
  126. if (++sw_cq->out > sw_cq->last) {
  127. sw_cq->seqno++;
  128. sw_cq->out = 0;
  129. }
  130. if (sw_cq->out == sw_cq->in) {
  131. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  132. if (sw_cq->out == sw_cq->in) {
  133. /* Tell the hardware about it */
  134. sbus_writel((sw_cq->out << 24) |
  135.     (SOC_CMD_RSP_QALL &
  136.      ~(SOC_CMD_RSP_Q0 << SOC_SOLICITED_RSP_Q)),
  137.     s->regs + CMD);
  138. /* Read it, so that we're sure it has been updated */
  139. sbus_readl(s->regs + CMD);
  140. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  141. if (sw_cq->out == sw_cq->in)
  142. break;
  143. }
  144. }
  145. }
  146. }
  147. static void inline soc_request (struct soc *s, u32 cmd)
  148. {
  149. SOC_SETIMASK(s, s->imask & ~(cmd & SOC_CMD_REQ_QALL));
  150. SOD(("imask %08lx %08lxn", s->imask, sbus_readl(s->regs + IMASK)));
  151. SOD(("Queues available %08x OUT %X %Xn", cmd,
  152.      xram_get_8((xram_p)&s->req[0].hw_cq->out),
  153.      xram_get_8((xram_p)&s->req[0].hw_cq->out)))
  154. if (s->port[s->curr_port].fc.state != FC_STATE_OFFLINE) {
  155. fcp_queue_empty ((fc_channel *)&(s->port[s->curr_port]));
  156. if (((s->req[1].in + 1) & s->req[1].last) != (s->req[1].out))
  157. fcp_queue_empty ((fc_channel *)&(s->port[1 - s->curr_port]));
  158. } else {
  159. fcp_queue_empty ((fc_channel *)&(s->port[1 - s->curr_port]));
  160. }
  161. if (s->port[1 - s->curr_port].fc.state != FC_STATE_OFFLINE)
  162. s->curr_port ^= 1;
  163. }
  164. static void inline soc_unsolicited (struct soc *s)
  165. {
  166. soc_rsp *hwrsp, *hwrspc;
  167. soc_cq *sw_cq;
  168. int count;
  169. int status;
  170. int flags;
  171. fc_channel *fc;
  172. sw_cq = &s->rsp[SOC_UNSOLICITED_RSP_Q];
  173. if (sw_cq->pool == NULL)
  174. sw_cq->pool = (soc_req *)
  175. (s->xram + (xram_get_32low ((xram_p)&sw_cq->hw_cq->address)));
  176. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  177. SOD (("soc_unsolicited, %d packets arrivedn", (sw_cq->in - sw_cq->out) & sw_cq->last))
  178. while (sw_cq->in != sw_cq->out) {
  179. /* ...real work per entry here... */
  180. hwrsp = (soc_rsp *)sw_cq->pool + sw_cq->out;
  181. hwrspc = NULL;
  182. flags = xram_get_16 ((xram_p)&hwrsp->shdr.flags);
  183. count = xram_get_8 ((xram_p)&hwrsp->count);
  184. fc = (fc_channel *)&s->port[flags & SOC_PORT_B];
  185. SOD(("FC %08lx fcp_state_change %08lxn",
  186.      (long)fc, (long)fc->fcp_state_change))
  187. if (count != 1) {
  188. /* Ugh, continuation entries */
  189. u8 in;
  190. if (count != 2) {
  191. printk("%s: Too many continuations entries %dn",
  192.        fc->name, count);
  193. goto update_out;
  194. }
  195. in = sw_cq->in;
  196. if (in < sw_cq->out) in += sw_cq->last + 1;
  197. if (in < sw_cq->out + 2) {
  198. /* Ask the hardware if they haven't arrived yet. */
  199. sbus_writel((sw_cq->out << 24) |
  200.     (SOC_CMD_RSP_QALL &
  201.      ~(SOC_CMD_RSP_Q0 << SOC_UNSOLICITED_RSP_Q)),
  202.     s->regs + CMD);
  203. /* Read it, so that we're sure it has been updated */
  204. sbus_readl(s->regs + CMD);
  205. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  206. in = sw_cq->in;
  207. if (in < sw_cq->out)
  208. in += sw_cq->last + 1;
  209. if (in < sw_cq->out + 2) /* Nothing came, let us wait */
  210. return;
  211. }
  212. if (sw_cq->out == sw_cq->last)
  213. hwrspc = (soc_rsp *)sw_cq->pool;
  214. else
  215. hwrspc = hwrsp + 1;
  216. }
  217. switch (flags & ~SOC_PORT_B) {
  218. case SOC_STATUS:
  219. status = xram_get_32low ((xram_p)&hwrsp->status);
  220. switch (status) {
  221. case SOC_ONLINE:
  222. SOD(("State change to ONLINEn"));
  223. fcp_state_change(fc, FC_STATE_ONLINE);
  224. break;
  225. case SOC_OFFLINE:
  226. SOD(("State change to OFFLINEn"));
  227. fcp_state_change(fc, FC_STATE_OFFLINE);
  228. break;
  229. default:
  230. printk ("%s: Unknown STATUS no %dn",
  231. fc->name, status);
  232. break;
  233. }
  234. break;
  235. case (SOC_UNSOLICITED|SOC_FC_HDR):
  236. {
  237. int r_ctl = xram_get_8 ((xram_p)&hwrsp->fchdr);
  238. unsigned len;
  239. char buf[64];
  240. if ((r_ctl & 0xf0) == R_CTL_EXTENDED_SVC) {
  241. len = xram_get_32 ((xram_p)&hwrsp->shdr.bytecnt);
  242. if (len < 4 || !hwrspc) {
  243. printk ("%s: Invalid R_CTL %02x "
  244. "continuation entriesn",
  245. fc->name, r_ctl);
  246. } else {
  247. if (len > 60)
  248. len = 60;
  249. xram_copy_from (buf, (xram_p)hwrspc,
  250. (len + 3) & ~3);
  251. if (*(u32 *)buf == LS_DISPLAY) {
  252. int i;
  253. for (i = 4; i < len; i++)
  254. if (buf[i] == 'n')
  255. buf[i] = ' ';
  256. buf[len] = 0;
  257. printk ("%s message: %sn",
  258. fc->name, buf + 4);
  259. } else {
  260. printk ("%s: Unknown LS_CMD "
  261. "%02xn", fc->name,
  262. buf[0]);
  263. }
  264. }
  265. } else {
  266. printk ("%s: Unsolicited R_CTL %02x "
  267. "not handledn", fc->name, r_ctl);
  268. }
  269. }
  270. break;
  271. default:
  272. printk ("%s: Unexpected flags %08xn", fc->name, flags);
  273. break;
  274. };
  275. update_out:
  276. if (++sw_cq->out > sw_cq->last) {
  277. sw_cq->seqno++;
  278. sw_cq->out = 0;
  279. }
  280. if (hwrspc) {
  281. if (++sw_cq->out > sw_cq->last) {
  282. sw_cq->seqno++;
  283. sw_cq->out = 0;
  284. }
  285. }
  286. if (sw_cq->out == sw_cq->in) {
  287. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  288. if (sw_cq->out == sw_cq->in) {
  289. /* Tell the hardware about it */
  290. sbus_writel((sw_cq->out << 24) |
  291.     (SOC_CMD_RSP_QALL &
  292.      ~(SOC_CMD_RSP_Q0 << SOC_UNSOLICITED_RSP_Q)),
  293.     s->regs + CMD);
  294. /* Read it, so that we're sure it has been updated */
  295. sbus_readl(s->regs + CMD);
  296. sw_cq->in = xram_get_8 ((xram_p)&sw_cq->hw_cq->in);
  297. }
  298. }
  299. }
  300. }
  301. static void soc_intr(int irq, void *dev_id, struct pt_regs *regs)
  302. {
  303. u32 cmd;
  304. unsigned long flags;
  305. register struct soc *s = (struct soc *)dev_id;
  306. spin_lock_irqsave(&io_request_lock, flags);
  307. cmd = sbus_readl(s->regs + CMD);
  308. for (; (cmd = SOC_INTR (s, cmd)); cmd = sbus_readl(s->regs + CMD)) {
  309. if (cmd & SOC_CMD_RSP_Q1) soc_unsolicited (s);
  310. if (cmd & SOC_CMD_RSP_Q0) soc_solicited (s);
  311. if (cmd & SOC_CMD_REQ_QALL) soc_request (s, cmd);
  312. }
  313. spin_unlock_irqrestore(&io_request_lock, flags);
  314. }
  315. #define TOKEN(proto, port, token) (((proto)<<12)|(token)|(port))
  316. static int soc_hw_enque (fc_channel *fc, fcp_cmnd *fcmd)
  317. {
  318. soc_port *port = (soc_port *)fc;
  319. struct soc *s = port->s;
  320. int qno;
  321. soc_cq *sw_cq;
  322. int cq_next_in;
  323. soc_req *request;
  324. fc_hdr *fch;
  325. int i;
  326. if (fcmd->proto == TYPE_SCSI_FCP)
  327. qno = 1;
  328. else
  329. qno = 0;
  330. SOD(("Putting a FCP packet type %d into hw queue %dn", fcmd->proto, qno))
  331. if (s->imask & (SOC_IMASK_REQ_Q0 << qno)) {
  332. SOD(("EIO %08xn", s->imask))
  333. return -EIO;
  334. }
  335. sw_cq = s->req + qno;
  336. cq_next_in = (sw_cq->in + 1) & sw_cq->last;
  337. if (cq_next_in == sw_cq->out &&
  338.     cq_next_in == (sw_cq->out = xram_get_8((xram_p)&sw_cq->hw_cq->out))) {
  339. SOD(("%d IN %d OUT %d LAST %dn", qno, sw_cq->in, sw_cq->out, sw_cq->last))
  340. SOC_SETIMASK(s, s->imask | (SOC_IMASK_REQ_Q0 << qno));
  341. SOD(("imask %08lx %08lxn", s->imask, sbus_readl(s->regs + IMASK)));
  342. /* If queue is full, just say NO */
  343. return -EBUSY;
  344. }
  345. request = sw_cq->pool + sw_cq->in;
  346. fch = &request->fchdr;
  347. switch (fcmd->proto) {
  348. case TYPE_SCSI_FCP:
  349. request->shdr.token = TOKEN(TYPE_SCSI_FCP, port->mask, fcmd->token); 
  350. request->data[0].base = fc->dma_scsi_cmd + fcmd->token * sizeof(fcp_cmd);
  351. request->data[0].count = sizeof(fcp_cmd);
  352. request->data[1].base = fc->dma_scsi_rsp + fcmd->token * fc->rsp_size;
  353. request->data[1].count = fc->rsp_size;
  354. if (fcmd->data) {
  355. request->shdr.segcnt = 3;
  356. i = fc->scsi_cmd_pool[fcmd->token].fcp_data_len;
  357. request->shdr.bytecnt = i;
  358. request->data[2].base = fcmd->data;
  359. request->data[2].count = i;
  360. request->type =
  361.     (fc->scsi_cmd_pool[fcmd->token].fcp_cntl & FCP_CNTL_WRITE) ?
  362. SOC_CQTYPE_IO_WRITE : SOC_CQTYPE_IO_READ;
  363. } else {
  364. request->shdr.segcnt = 2;
  365. request->shdr.bytecnt = 0;
  366. request->data[2].base = 0;
  367. request->data[2].count = 0;
  368. request->type = SOC_CQTYPE_SIMPLE;
  369. }
  370. FILL_FCHDR_RCTL_DID(fch, R_CTL_COMMAND, fc->did);
  371. FILL_FCHDR_SID(fch, fc->sid);
  372. FILL_FCHDR_TYPE_FCTL(fch, TYPE_SCSI_FCP,
  373.      F_CTL_FIRST_SEQ | F_CTL_SEQ_INITIATIVE);
  374. FILL_FCHDR_SEQ_DF_SEQ(fch, 0, 0, 0);
  375. FILL_FCHDR_OXRX(fch, 0xffff, 0xffff);
  376. fch->param = 0;
  377. request->shdr.flags = port->flags;
  378. request->shdr.class = 2;
  379. break;
  380. case PROTO_OFFLINE:
  381. memset (request, 0, sizeof(*request));
  382. request->shdr.token = TOKEN(PROTO_OFFLINE, port->mask, fcmd->token); 
  383. request->type = SOC_CQTYPE_OFFLINE;
  384. FILL_FCHDR_RCTL_DID(fch, R_CTL_COMMAND, fc->did);
  385. FILL_FCHDR_SID(fch, fc->sid);
  386. FILL_FCHDR_TYPE_FCTL(fch, TYPE_SCSI_FCP,
  387.      F_CTL_FIRST_SEQ | F_CTL_SEQ_INITIATIVE);
  388. FILL_FCHDR_SEQ_DF_SEQ(fch, 0, 0, 0);
  389. FILL_FCHDR_OXRX(fch, 0xffff, 0xffff);
  390. request->shdr.flags = port->flags;
  391. break;
  392. case PROTO_REPORT_AL_MAP:
  393. /* SOC only supports Point-to-Point topology, no FC-AL, sorry... */
  394. return -ENOSYS;
  395. default: 
  396. request->shdr.token = TOKEN(fcmd->proto, port->mask, fcmd->token);
  397. request->shdr.class = 2;
  398. request->shdr.flags = port->flags;
  399. memcpy (fch, &fcmd->fch, sizeof(fc_hdr));
  400. request->data[0].count = fcmd->cmdlen;
  401. request->data[1].count = fcmd->rsplen;
  402. request->type = fcmd->class;
  403. switch (fcmd->class) {
  404. case FC_CLASS_OUTBOUND:
  405. request->data[0].base = fcmd->cmd;
  406. request->data[0].count = fcmd->cmdlen;
  407. request->type = SOC_CQTYPE_OUTBOUND;
  408. request->shdr.bytecnt = fcmd->cmdlen;
  409. request->shdr.segcnt = 1;
  410. break;
  411. case FC_CLASS_INBOUND:
  412. request->data[0].base = fcmd->rsp;
  413. request->data[0].count = fcmd->rsplen;
  414. request->type = SOC_CQTYPE_INBOUND;
  415. request->shdr.bytecnt = 0;
  416. request->shdr.segcnt = 1;
  417. break;
  418. case FC_CLASS_SIMPLE:
  419. request->data[0].base = fcmd->cmd;
  420. request->data[1].base = fcmd->rsp;
  421. request->data[0].count = fcmd->cmdlen;
  422. request->data[1].count = fcmd->rsplen;
  423. request->type = SOC_CQTYPE_SIMPLE;
  424. request->shdr.bytecnt = fcmd->cmdlen;
  425. request->shdr.segcnt = 2;
  426. break;
  427. case FC_CLASS_IO_READ:
  428. case FC_CLASS_IO_WRITE:
  429. request->data[0].base = fcmd->cmd;
  430. request->data[1].base = fcmd->rsp;
  431. request->data[0].count = fcmd->cmdlen;
  432. request->data[1].count = fcmd->rsplen;
  433. request->type =
  434.       (fcmd->class == FC_CLASS_IO_READ) ?
  435. SOC_CQTYPE_IO_READ : SOC_CQTYPE_IO_WRITE;
  436. if (fcmd->data) {
  437. request->data[2].base = fcmd->data;
  438. request->data[2].count = fcmd->datalen;
  439. request->shdr.bytecnt = fcmd->datalen;
  440. request->shdr.segcnt = 3;
  441. } else {
  442. request->shdr.bytecnt = 0;
  443. request->shdr.segcnt = 2;
  444. }
  445. break;
  446. };
  447. break;
  448. };
  449. request->count = 1;
  450. request->flags = 0;
  451. request->seqno = sw_cq->seqno;
  452. /* And now tell the SOC about it */
  453. if (++sw_cq->in > sw_cq->last) {
  454. sw_cq->in = 0;
  455. sw_cq->seqno++;
  456. }
  457. SOD(("Putting %08x into cmdn",
  458.      SOC_CMD_RSP_QALL | (sw_cq->in << 24) | (SOC_CMD_REQ_Q0 << qno)))
  459. sbus_writel(SOC_CMD_RSP_QALL | (sw_cq->in << 24) | (SOC_CMD_REQ_Q0 << qno),
  460.     s->regs + CMD);
  461. /* Read so that command is completed. */
  462. sbus_readl(s->regs + CMD);
  463. return 0;
  464. }
  465. static inline void soc_download_fw(struct soc *s)
  466. {
  467. #ifdef HAVE_SOC_UCODE
  468. xram_copy_to (s->xram, soc_ucode, sizeof(soc_ucode));
  469. xram_bzero (s->xram + sizeof(soc_ucode), 32768 - sizeof(soc_ucode));
  470. #endif
  471. }
  472. /* Check for what the best SBUS burst we can use happens
  473.  * to be on this machine.
  474.  */
  475. static inline void soc_init_bursts(struct soc *s, struct sbus_dev *sdev)
  476. {
  477. int bsizes, bsizes_more;
  478. bsizes = (prom_getintdefault(sdev->prom_node,"burst-sizes",0xff) & 0xff);
  479. bsizes_more = (prom_getintdefault(sdev->bus->prom_node, "burst-sizes", 0xff) & 0xff);
  480. bsizes &= bsizes_more;
  481. if ((bsizes & 0x7f) == 0x7f)
  482. s->cfg = SOC_CFG_BURST_64;
  483. else if ((bsizes & 0x3f) == 0x3f) 
  484. s->cfg = SOC_CFG_BURST_32;
  485. else if ((bsizes & 0x1f) == 0x1f)
  486. s->cfg = SOC_CFG_BURST_16;
  487. else
  488. s->cfg = SOC_CFG_BURST_4;
  489. }
  490. static inline void soc_init(struct sbus_dev *sdev, int no)
  491. {
  492. unsigned char tmp[60];
  493. int propl;
  494. struct soc *s;
  495. static int version_printed = 0;
  496. soc_hw_cq cq[8];
  497. int size, i;
  498. int irq;
  499. s = kmalloc (sizeof (struct soc), GFP_KERNEL);
  500. if (s == NULL)
  501. return;
  502. memset (s, 0, sizeof(struct soc));
  503. s->soc_no = no;
  504. SOD(("socs %08lx soc_intr %08lx soc_hw_enque %08xn",
  505.      (long)socs, (long)soc_intr, (long)soc_hw_enque))
  506. if (version_printed++ == 0)
  507. printk (version);
  508. s->port[0].fc.module = THIS_MODULE;
  509. s->port[1].fc.module = THIS_MODULE;
  510. s->next = socs;
  511. socs = s;
  512. s->port[0].fc.dev = sdev;
  513. s->port[1].fc.dev = sdev;
  514. s->port[0].s = s;
  515. s->port[1].s = s;
  516. s->port[0].fc.next = &s->port[1].fc;
  517. /* World Wide Name of SOC */
  518. propl = prom_getproperty (sdev->prom_node, "soc-wwn", tmp, sizeof(tmp));
  519. if (propl != sizeof (fc_wwn)) {
  520. s->wwn.naaid = NAAID_IEEE;
  521. s->wwn.lo = 0x12345678;
  522. } else
  523. memcpy (&s->wwn, tmp, sizeof (fc_wwn));
  524. propl = prom_getproperty (sdev->prom_node, "port-wwns", tmp, sizeof(tmp));
  525. if (propl != 2 * sizeof (fc_wwn)) {
  526. s->port[0].fc.wwn_nport.naaid = NAAID_IEEE_EXT;
  527. s->port[0].fc.wwn_nport.hi = s->wwn.hi;
  528. s->port[0].fc.wwn_nport.lo = s->wwn.lo;
  529. s->port[1].fc.wwn_nport.naaid = NAAID_IEEE_EXT;
  530. s->port[1].fc.wwn_nport.nportid = 1;
  531. s->port[1].fc.wwn_nport.hi = s->wwn.hi;
  532. s->port[1].fc.wwn_nport.lo = s->wwn.lo;
  533. } else {
  534. memcpy (&s->port[0].fc.wwn_nport, tmp, sizeof (fc_wwn));
  535. memcpy (&s->port[1].fc.wwn_nport, tmp + sizeof (fc_wwn), sizeof (fc_wwn));
  536. }
  537. memcpy (&s->port[0].fc.wwn_node, &s->wwn, sizeof (fc_wwn));
  538. memcpy (&s->port[1].fc.wwn_node, &s->wwn, sizeof (fc_wwn));
  539. SOD(("Got wwns %08x%08x ports %08x%08x and %08x%08xn", 
  540.      *(u32 *)&s->port[0].fc.wwn_nport, s->port[0].fc.wwn_nport.lo,
  541.      *(u32 *)&s->port[0].fc.wwn_nport, s->port[0].fc.wwn_nport.lo,
  542.      *(u32 *)&s->port[1].fc.wwn_nport, s->port[1].fc.wwn_nport.lo))
  543. s->port[0].fc.sid = 1;
  544. s->port[1].fc.sid = 17;
  545. s->port[0].fc.did = 2;
  546. s->port[1].fc.did = 18;
  547. s->port[0].fc.reset = soc_reset;
  548. s->port[1].fc.reset = soc_reset;
  549. if (sdev->num_registers == 1) {
  550. /* Probably SunFire onboard SOC */
  551. s->xram = sbus_ioremap(&sdev->resource[0], 0,
  552.        0x10000UL, "soc xram");
  553. s->regs = sbus_ioremap(&sdev->resource[0], 0x10000UL,
  554.        0x10UL, "soc regs");
  555. } else {
  556. /* Probably SOC sbus card */
  557. s->xram = sbus_ioremap(&sdev->resource[1], 0,
  558.        sdev->reg_addrs[1].reg_size, "soc xram");
  559. s->regs = sbus_ioremap(&sdev->resource[2], 0,
  560.        sdev->reg_addrs[2].reg_size, "soc regs");
  561. }
  562. soc_init_bursts(s, sdev);
  563. SOD(("Disabling SOCn"))
  564. soc_disable (s);
  565. irq = sdev->irqs[0];
  566. if (request_irq (irq, soc_intr, SA_SHIRQ, "SOC", (void *)s)) {
  567. soc_printk ("Cannot order irq %d to gon", irq);
  568. socs = s->next;
  569. return;
  570. }
  571. SOD(("SOC uses IRQ%sn", __irq_itoa(irq)))
  572. s->port[0].fc.irq = irq;
  573. s->port[1].fc.irq = irq;
  574. sprintf (s->port[0].fc.name, "soc%d port A", no);
  575. sprintf (s->port[1].fc.name, "soc%d port B", no);
  576. s->port[0].flags = SOC_FC_HDR | SOC_PORT_A;
  577. s->port[1].flags = SOC_FC_HDR | SOC_PORT_B;
  578. s->port[1].mask = (1 << 11);
  579. s->port[0].fc.hw_enque = soc_hw_enque;
  580. s->port[1].fc.hw_enque = soc_hw_enque;
  581. soc_download_fw (s);
  582. SOD(("Downloaded firmwaren"))
  583. /* Now setup xram circular queues */
  584. memset (cq, 0, sizeof(cq));
  585. size = (SOC_CQ_REQ0_SIZE + SOC_CQ_REQ1_SIZE) * sizeof(soc_req);
  586. s->req_cpu = sbus_alloc_consistent(sdev, size, &s->req_dvma);
  587. s->req[0].pool = s->req_cpu;
  588. cq[0].address = s->req_dvma;
  589. s->req[1].pool = s->req[0].pool + SOC_CQ_REQ0_SIZE;
  590. s->req[0].hw_cq = (soc_hw_cq *)(s->xram + SOC_CQ_REQ_OFFSET);
  591. s->req[1].hw_cq = (soc_hw_cq *)(s->xram + SOC_CQ_REQ_OFFSET + sizeof(soc_hw_cq));
  592. s->rsp[0].hw_cq = (soc_hw_cq *)(s->xram + SOC_CQ_RSP_OFFSET);
  593. s->rsp[1].hw_cq = (soc_hw_cq *)(s->xram + SOC_CQ_RSP_OFFSET + sizeof(soc_hw_cq));
  594. cq[1].address = cq[0].address + (SOC_CQ_REQ0_SIZE * sizeof(soc_req));
  595. cq[4].address = 1;
  596. cq[5].address = 1;
  597. cq[0].last = SOC_CQ_REQ0_SIZE - 1;
  598. cq[1].last = SOC_CQ_REQ1_SIZE - 1;
  599. cq[4].last = SOC_CQ_RSP0_SIZE - 1;
  600. cq[5].last = SOC_CQ_RSP1_SIZE - 1;
  601. for (i = 0; i < 8; i++)
  602. cq[i].seqno = 1;
  603. s->req[0].last = SOC_CQ_REQ0_SIZE - 1;
  604. s->req[1].last = SOC_CQ_REQ1_SIZE - 1;
  605. s->rsp[0].last = SOC_CQ_RSP0_SIZE - 1;
  606. s->rsp[1].last = SOC_CQ_RSP1_SIZE - 1;
  607. s->req[0].seqno = 1;
  608. s->req[1].seqno = 1;
  609. s->rsp[0].seqno = 1;
  610. s->rsp[1].seqno = 1;
  611. xram_copy_to (s->xram + SOC_CQ_REQ_OFFSET, cq, sizeof(cq));
  612. /* Make our sw copy of SOC service parameters */
  613. xram_copy_from (s->serv_params, s->xram + 0x140, sizeof (s->serv_params));
  614. s->port[0].fc.common_svc = (common_svc_parm *)s->serv_params;
  615. s->port[0].fc.class_svcs = (svc_parm *)(s->serv_params + 0x20);
  616. s->port[1].fc.common_svc = (common_svc_parm *)&s->serv_params;
  617. s->port[1].fc.class_svcs = (svc_parm *)(s->serv_params + 0x20);
  618. soc_enable (s);
  619. SOD(("Enabled SOCn"))
  620. }
  621. static int __init soc_probe(void)
  622. {
  623. struct sbus_bus *sbus;
  624. struct sbus_dev *sdev = 0;
  625. struct soc *s;
  626. int cards = 0;
  627. for_each_sbus(sbus) {
  628. for_each_sbusdev(sdev, sbus) {
  629. if(!strcmp(sdev->prom_name, "SUNW,soc")) {
  630. soc_init(sdev, cards);
  631. cards++;
  632. }
  633. }
  634. }
  635. if (!cards) return -EIO;
  636. for_each_soc(s)
  637. if (s->next)
  638. s->port[1].fc.next = &s->next->port[0].fc;
  639. fcp_init (&socs->port[0].fc);
  640. return 0;
  641. }
  642. static void __exit soc_cleanup(void)
  643. {
  644. struct soc *s;
  645. int irq;
  646. struct sbus_dev *sdev;
  647. for_each_soc(s) {
  648. irq = s->port[0].fc.irq;
  649. free_irq (irq, s);
  650. fcp_release(&(s->port[0].fc), 2);
  651. sdev = s->port[0].fc.dev;
  652. if (sdev->num_registers == 1) {
  653. sbus_iounmap(s->xram, 0x10000UL);
  654. sbus_iounmap(s->regs, 0x10UL);
  655. } else {
  656. sbus_iounmap(s->xram, sdev->reg_addrs[1].reg_size);
  657. sbus_iounmap(s->regs, sdev->reg_addrs[2].reg_size);
  658. }
  659. sbus_free_consistent(sdev,
  660.      (SOC_CQ_REQ0_SIZE+SOC_CQ_REQ1_SIZE)*sizeof(soc_req),
  661.      s->req_cpu, s->req_dvma);
  662. }
  663. }
  664. EXPORT_NO_SYMBOLS;
  665. module_init(soc_probe);
  666. module_exit(soc_cleanup);
  667. MODULE_LICENSE("GPL");