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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * SCSI low-level driver for the MESH (Macintosh Enhanced SCSI Hardware)
  3.  * bus adaptor found on Power Macintosh computers.
  4.  * We assume the MESH is connected to a DBDMA (descriptor-based DMA)
  5.  * controller.
  6.  *
  7.  * Paul Mackerras, August 1996.
  8.  * Copyright (C) 1996 Paul Mackerras.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/kernel.h>
  12. #include <linux/delay.h>
  13. #include <linux/types.h>
  14. #include <linux/string.h>
  15. #include <linux/slab.h>
  16. #include <linux/blk.h>
  17. #include <linux/proc_fs.h>
  18. #include <linux/stat.h>
  19. #include <linux/tqueue.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/reboot.h>
  22. #include <linux/spinlock.h>
  23. #include <asm/dbdma.h>
  24. #include <asm/io.h>
  25. #include <asm/pgtable.h>
  26. #include <asm/prom.h>
  27. #include <asm/system.h>
  28. #include <asm/irq.h>
  29. #include <asm/hydra.h>
  30. #include <asm/processor.h>
  31. #include <asm/machdep.h>
  32. #include <asm/pmac_feature.h>
  33. #ifdef CONFIG_PMAC_PBOOK
  34. #include <linux/adb.h>
  35. #include <linux/pmu.h>
  36. #endif
  37. #include "scsi.h"
  38. #include "hosts.h"
  39. #include "mesh.h"
  40. /*
  41.  * To do:
  42.  * - handle aborts correctly
  43.  * - retry arbitration if lost (unless higher levels do this for us)
  44.  */
  45. #define MESH_NEW_STYLE_EH
  46. #if 1
  47. #undef KERN_DEBUG
  48. #define KERN_DEBUG KERN_WARNING
  49. #endif
  50. #if CONFIG_SCSI_MESH_SYNC_RATE == 0
  51. int mesh_sync_period = 100;
  52. int mesh_sync_offset = 0;
  53. #else
  54. int mesh_sync_period = 1000 / CONFIG_SCSI_MESH_SYNC_RATE; /* ns */
  55. int mesh_sync_offset = 15;
  56. #endif
  57. int mesh_sync_targets = 0xff; /* targets to set synchronous (bitmap) */
  58. int mesh_resel_targets = 0xff; /* targets that we let disconnect (bitmap) */
  59. int mesh_debug_targets = 0; /* print debug for these targets */
  60. unsigned char use_active_neg = 0;  /* bit mask for SEQ_ACTIVE_NEG if used */
  61. #define ALLOW_SYNC(tgt) ((mesh_sync_targets >> (tgt)) & 1)
  62. #define ALLOW_RESEL(tgt) ((mesh_resel_targets >> (tgt)) & 1)
  63. #define ALLOW_DEBUG(tgt) ((mesh_debug_targets >> (tgt)) & 1)
  64. #define DEBUG_TARGET(cmd) ((cmd) && ALLOW_DEBUG((cmd)->target))
  65. #undef MESH_DBG
  66. #define N_DBG_LOG 50
  67. #define N_DBG_SLOG 20
  68. #define NUM_DBG_EVENTS 13
  69. #undef DBG_USE_TB /* bombs on 601 */
  70. struct dbglog {
  71. char *fmt;
  72. u32 tb;
  73. u8 phase;
  74. u8 bs0;
  75. u8 bs1;
  76. u8 tgt;
  77. int d;
  78. };
  79. enum mesh_phase {
  80. idle,
  81. arbitrating,
  82. selecting,
  83. commanding,
  84. dataing,
  85. statusing,
  86. busfreeing,
  87. disconnecting,
  88. reselecting
  89. };
  90. enum msg_phase {
  91. msg_none,
  92. msg_out,
  93. msg_out_xxx,
  94. msg_out_last,
  95. msg_in,
  96. msg_in_bad,
  97. };
  98. enum sdtr_phase {
  99. do_sdtr,
  100. sdtr_sent,
  101. sdtr_done
  102. };
  103. struct mesh_target {
  104. enum sdtr_phase sdtr_state;
  105. int sync_params;
  106. int data_goes_out; /* guess as to data direction */
  107. Scsi_Cmnd *current_req;
  108. u32 saved_ptr;
  109. int want_abort;
  110. #ifdef MESH_DBG
  111. int log_ix;
  112. int n_log;
  113. struct dbglog log[N_DBG_LOG];
  114. #endif
  115. };
  116. struct mesh_state {
  117. volatile struct mesh_regs *mesh;
  118. int meshintr;
  119. volatile struct dbdma_regs *dma;
  120. int dmaintr;
  121. struct Scsi_Host *host;
  122. struct mesh_state *next;
  123. Scsi_Cmnd *request_q;
  124. Scsi_Cmnd *request_qtail;
  125. enum mesh_phase phase; /* what we're currently trying to do */
  126. enum msg_phase msgphase;
  127. int conn_tgt; /* target we're connected to */
  128. Scsi_Cmnd *current_req; /* req we're currently working on */
  129. int data_ptr;
  130. int dma_started;
  131. int dma_count;
  132. int stat;
  133. int aborting;
  134. int expect_reply;
  135. int n_msgin;
  136. u8 msgin[16];
  137. int n_msgout;
  138. int last_n_msgout;
  139. u8 msgout[16];
  140. struct dbdma_cmd *dma_cmds; /* space for dbdma commands, aligned */
  141. int clk_freq;
  142. struct mesh_target tgts[8];
  143. void *dma_cmd_space;
  144. struct device_node *ofnode;
  145. #ifndef MESH_NEW_STYLE_EH
  146. Scsi_Cmnd *completed_q;
  147. Scsi_Cmnd *completed_qtail;
  148. struct tq_struct tqueue;
  149. #endif
  150. #ifdef MESH_DBG
  151. int log_ix;
  152. int n_log;
  153. struct dbglog log[N_DBG_SLOG];
  154. #endif
  155. };
  156. #ifdef MESH_DBG
  157. static void dlog(struct mesh_state *ms, char *fmt, int a);
  158. static void dumplog(struct mesh_state *ms, int tgt);
  159. static void dumpslog(struct mesh_state *ms);
  160. #else
  161. static inline void dlog(struct mesh_state *ms, char *fmt, int a)
  162. {}
  163. static inline void dumplog(struct mesh_state *ms, int tgt)
  164. {}
  165. static inline void dumpslog(struct mesh_state *ms)
  166. {}
  167. #endif /* MESH_DBG */
  168. #define MKWORD(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + (d))
  169. static struct mesh_state *all_meshes;
  170. static void mesh_init(struct mesh_state *);
  171. static int mesh_notify_reboot(struct notifier_block *, unsigned long, void *);
  172. static void mesh_dump_regs(struct mesh_state *);
  173. static void mesh_start(struct mesh_state *);
  174. static void mesh_start_cmd(struct mesh_state *, Scsi_Cmnd *);
  175. #ifndef MESH_NEW_STYLE_EH
  176. static void finish_cmds(void *);
  177. #endif
  178. static void add_sdtr_msg(struct mesh_state *);
  179. static void set_sdtr(struct mesh_state *, int, int);
  180. static void start_phase(struct mesh_state *);
  181. static void get_msgin(struct mesh_state *);
  182. static int msgin_length(struct mesh_state *);
  183. static void cmd_complete(struct mesh_state *);
  184. static void phase_mismatch(struct mesh_state *);
  185. static void reselected(struct mesh_state *);
  186. static void handle_reset(struct mesh_state *);
  187. static void handle_error(struct mesh_state *);
  188. static void handle_exception(struct mesh_state *);
  189. static void mesh_interrupt(int, void *, struct pt_regs *);
  190. static void do_mesh_interrupt(int, void *, struct pt_regs *);
  191. static void handle_msgin(struct mesh_state *);
  192. static void mesh_done(struct mesh_state *, int);
  193. static void mesh_completed(struct mesh_state *, Scsi_Cmnd *);
  194. static void set_dma_cmds(struct mesh_state *, Scsi_Cmnd *);
  195. static void halt_dma(struct mesh_state *);
  196. static int data_goes_out(Scsi_Cmnd *);
  197. static void do_abort(struct mesh_state *ms);
  198. static void set_mesh_power(struct mesh_state *ms, int state);
  199. #ifdef CONFIG_PMAC_PBOOK
  200. static int mesh_notify_sleep(struct pmu_sleep_notifier *self, int when);
  201. static struct pmu_sleep_notifier mesh_sleep_notifier = {
  202. mesh_notify_sleep,
  203. SLEEP_LEVEL_BLOCK,
  204. };
  205. #endif
  206. static struct notifier_block mesh_notifier = {
  207. mesh_notify_reboot,
  208. NULL,
  209. 0
  210. };
  211. int
  212. mesh_detect(Scsi_Host_Template *tp)
  213. {
  214. struct device_node *mesh;
  215. int nmeshes, tgt, *cfp, minper;
  216. struct mesh_state *ms, **prev_statep;
  217. struct Scsi_Host *mesh_host;
  218. void *dma_cmd_space;
  219. if (_machine == _MACH_Pmac) {
  220.     use_active_neg = (find_devices("mac-io") ? 0 : SEQ_ACTIVE_NEG);
  221. } else {
  222.     /* CHRP mac-io */
  223.     use_active_neg = SEQ_ACTIVE_NEG;
  224. }
  225. nmeshes = 0;
  226. prev_statep = &all_meshes;
  227. /*
  228.  * On powermacs, the MESH node has device_type "mesh".
  229.  * On chrp machines, its device_type is "scsi" with
  230.  * "chrp,mesh0" as its `compatible' property.
  231.  */
  232. mesh = find_devices("mesh");
  233. if (mesh == 0)
  234. mesh = find_compatible_devices("scsi", "chrp,mesh0");
  235. for (; mesh != 0; mesh = mesh->next) {
  236. if (mesh->n_addrs != 2 || mesh->n_intrs != 2) {
  237. printk(KERN_ERR "mesh: expected 2 addrs and 2 intrs"
  238.        " (got %d,%d)", mesh->n_addrs, mesh->n_intrs);
  239. continue;
  240. }
  241. mesh_host = scsi_register(tp, sizeof(struct mesh_state));
  242. if (mesh_host == 0) {
  243. printk(KERN_ERR "mesh: couldn't register host");
  244. continue;
  245. }
  246. mesh_host->unique_id = nmeshes;
  247. #if !defined(MODULE)
  248. note_scsi_host(mesh, mesh_host);
  249. #endif
  250. ms = (struct mesh_state *) mesh_host->hostdata;
  251. if (ms == 0)
  252. panic("no mesh state");
  253. memset(ms, 0, sizeof(*ms));
  254. ms->host = mesh_host;
  255. ms->ofnode = mesh;
  256. ms->mesh = (volatile struct mesh_regs *)
  257. ioremap(mesh->addrs[0].address, 0x1000);
  258. ms->dma = (volatile struct dbdma_regs *)
  259. ioremap(mesh->addrs[1].address, 0x1000);
  260. ms->meshintr = mesh->intrs[0].line;
  261. ms->dmaintr = mesh->intrs[1].line;
  262. /* Space for dma command list: +1 for stop command,
  263.    +1 to allow for aligning. */
  264. dma_cmd_space = kmalloc((mesh_host->sg_tablesize + 2) *
  265. sizeof(struct dbdma_cmd), GFP_KERNEL);
  266. if (dma_cmd_space == 0)
  267. panic("mesh: couldn't allocate dma command space");
  268. ms->dma_cmds = (struct dbdma_cmd *) DBDMA_ALIGN(dma_cmd_space);
  269. memset(ms->dma_cmds, 0, (mesh_host->sg_tablesize + 1)
  270.        * sizeof(struct dbdma_cmd));
  271. ms->dma_cmd_space = dma_cmd_space;
  272. ms->current_req = 0;
  273. for (tgt = 0; tgt < 8; ++tgt) {
  274. ms->tgts[tgt].sdtr_state = do_sdtr;
  275. ms->tgts[tgt].sync_params = ASYNC_PARAMS;
  276. ms->tgts[tgt].current_req = 0;
  277. }
  278. #ifndef MESH_NEW_STYLE_EH
  279. ms->tqueue.routine = finish_cmds;
  280. ms->tqueue.data = ms;
  281. #endif
  282. *prev_statep = ms;
  283. prev_statep = &ms->next;
  284. if ((cfp = (int *) get_property(mesh, "clock-frequency",
  285. NULL))) {
  286. ms->clk_freq = *cfp;
  287. } else {
  288. printk(KERN_INFO "mesh: assuming 50MHz clock frequencyn");
  289. ms->clk_freq = 50000000;
  290. }
  291. /* The maximum sync rate is clock / 5; increase
  292.    mesh_sync_period if necessary. */
  293. minper = 1000000000 / (ms->clk_freq / 5); /* ns */
  294. if (mesh_sync_period < minper)
  295. mesh_sync_period = minper;
  296. set_mesh_power(ms, 1);
  297. mesh_init(ms);
  298. if (request_irq(ms->meshintr, do_mesh_interrupt, 0, "MESH", ms)) {
  299. printk(KERN_ERR "MESH: can't get irq %dn", ms->meshintr);
  300. }
  301. ++nmeshes;
  302. }
  303. if ((_machine == _MACH_Pmac) && (nmeshes > 0)) {
  304. #ifdef CONFIG_PMAC_PBOOK
  305. pmu_register_sleep_notifier(&mesh_sleep_notifier);
  306. #endif /* CONFIG_PMAC_PBOOK */
  307. register_reboot_notifier(&mesh_notifier);
  308. }
  309. return nmeshes;
  310. }
  311. int
  312. mesh_release(struct Scsi_Host *host)
  313. {
  314. struct mesh_state *ms = (struct mesh_state *) host->hostdata;
  315. if (ms == 0)
  316. return 0;
  317. if (ms->mesh)
  318. iounmap((void *) ms->mesh);
  319. if (ms->dma)
  320. iounmap((void *) ms->dma);
  321. kfree(ms->dma_cmd_space);
  322. free_irq(ms->meshintr, ms);
  323. pmac_call_feature(PMAC_FTR_MESH_ENABLE, ms->ofnode, 0, 0);
  324. return 0;
  325. }
  326. static void
  327. set_mesh_power(struct mesh_state *ms, int state)
  328. {
  329. if (_machine != _MACH_Pmac)
  330. return;
  331. if (state) {
  332. pmac_call_feature(PMAC_FTR_MESH_ENABLE, ms->ofnode, 0, 1);
  333. mdelay(200);
  334. } else {
  335. pmac_call_feature(PMAC_FTR_MESH_ENABLE, ms->ofnode, 0, 0);
  336. mdelay(10);
  337. }
  338. }
  339. #ifdef CONFIG_PMAC_PBOOK
  340. /*
  341.  * notify clients before sleep and reset bus afterwards
  342.  */
  343. int
  344. mesh_notify_sleep(struct pmu_sleep_notifier *self, int when)
  345. {
  346. struct mesh_state *ms;
  347. switch (when) {
  348. case PBOOK_SLEEP_REQUEST:
  349. /* XXX We should wait for current transactions and queue
  350.  * new ones that would be posted beyond this point 
  351.  */ 
  352. break;
  353. case PBOOK_SLEEP_REJECT:
  354. break;
  355. case PBOOK_SLEEP_NOW:
  356. for (ms = all_meshes; ms != 0; ms = ms->next) {
  357. disable_irq(ms->meshintr);
  358. set_mesh_power(ms, 0);
  359. }
  360. break;
  361. case PBOOK_WAKE:
  362. for (ms = all_meshes; ms != 0; ms = ms->next) {
  363. set_mesh_power(ms, 1);
  364. mesh_init(ms);
  365. enable_irq(ms->meshintr);
  366. }
  367. break;
  368. }
  369. return PBOOK_SLEEP_OK;
  370. }
  371. #endif /* CONFIG_PMAC_PBOOK */
  372. int
  373. mesh_queue(Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *))
  374. {
  375. unsigned long flags;
  376. struct mesh_state *ms;
  377. cmd->scsi_done = done;
  378. cmd->host_scribble = NULL;
  379. ms = (struct mesh_state *) cmd->host->hostdata;
  380. save_flags(flags);
  381. cli();
  382. if (ms->request_q == NULL)
  383. ms->request_q = cmd;
  384. else
  385. ms->request_qtail->host_scribble = (void *) cmd;
  386. ms->request_qtail = cmd;
  387. if (ms->phase == idle)
  388. mesh_start(ms);
  389. restore_flags(flags);
  390. return 0;
  391. }
  392. int
  393. mesh_abort(Scsi_Cmnd *cmd)
  394. {
  395. struct mesh_state *ms = (struct mesh_state *) cmd->host->hostdata;
  396. printk(KERN_DEBUG "mesh_abort(%p)n", cmd);
  397. mesh_dump_regs(ms);
  398. dumplog(ms, cmd->target);
  399. dumpslog(ms);
  400. return SCSI_ABORT_SNOOZE;
  401. }
  402. static void
  403. mesh_dump_regs(struct mesh_state *ms)
  404. {
  405. volatile struct mesh_regs *mr = ms->mesh;
  406. volatile struct dbdma_regs *md = ms->dma;
  407. int t;
  408. struct mesh_target *tp;
  409. printk(KERN_DEBUG "mesh: state at %p, regs at %p, dma at %pn",
  410.        ms, mr, md);
  411. printk(KERN_DEBUG "    ct=%4x seq=%2x bs=%4x fc=%2x "
  412.        "exc=%2x err=%2x im=%2x int=%2x sp=%2xn",
  413.        (mr->count_hi << 8) + mr->count_lo, mr->sequence,
  414.        (mr->bus_status1 << 8) + mr->bus_status0, mr->fifo_count,
  415.        mr->exception, mr->error, mr->intr_mask, mr->interrupt,
  416.        mr->sync_params);
  417. while(in_8(&mr->fifo_count))
  418. printk(KERN_DEBUG " fifo data=%.2xn",in_8(&mr->fifo));
  419. printk(KERN_DEBUG "    dma stat=%x cmdptr=%xn",
  420.        in_le32(&md->status), in_le32(&md->cmdptr));
  421. printk(KERN_DEBUG "    phase=%d msgphase=%d conn_tgt=%d data_ptr=%dn",
  422.        ms->phase, ms->msgphase, ms->conn_tgt, ms->data_ptr);
  423. printk(KERN_DEBUG "    dma_st=%d dma_ct=%d n_msgout=%dn",
  424.        ms->dma_started, ms->dma_count, ms->n_msgout);
  425. for (t = 0; t < 8; ++t) {
  426. tp = &ms->tgts[t];
  427. if (tp->current_req == NULL)
  428. continue;
  429. printk(KERN_DEBUG "    target %d: req=%p goes_out=%d saved_ptr=%dn",
  430.        t, tp->current_req, tp->data_goes_out, tp->saved_ptr);
  431. }
  432. }
  433. int
  434. mesh_reset(Scsi_Cmnd *cmd, unsigned how)
  435. {
  436. struct mesh_state *ms = (struct mesh_state *) cmd->host->hostdata;
  437. volatile struct mesh_regs *mr = ms->mesh;
  438. volatile struct dbdma_regs *md = ms->dma;
  439. unsigned long flags;
  440. int ret;
  441. printk(KERN_DEBUG "mesh_reset %xn", how);
  442. ret = SCSI_RESET_BUS_RESET;
  443. save_flags(flags);
  444. cli();
  445. out_le32(&md->control, (RUN|PAUSE|FLUSH|WAKE) << 16); /* stop dma */
  446. out_8(&mr->exception, 0xff); /* clear all exception bits */
  447. out_8(&mr->error, 0xff); /* clear all error bits */
  448. if (how & SCSI_RESET_SUGGEST_HOST_RESET) {
  449. out_8(&mr->sequence, SEQ_RESETMESH);
  450. ret |= SCSI_RESET_HOST_RESET;
  451. udelay(1);
  452. out_8(&mr->intr_mask, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  453. out_8(&mr->source_id, ms->host->this_id);
  454. out_8(&mr->sel_timeout, 25); /* 250ms */
  455. out_8(&mr->sync_params, ASYNC_PARAMS);
  456. }
  457. out_8(&mr->bus_status1, BS1_RST); /* assert RST */
  458. udelay(30); /* leave it on for >= 25us */
  459. out_8(&mr->bus_status1, 0); /* negate RST */
  460. #ifdef DO_ASYNC_RESET
  461. if (how & SCSI_RESET_ASYNCHRONOUS) {
  462. restore_flags(flags);
  463. ret |= SCSI_RESET_PENDING;
  464. } else
  465. #endif
  466. {
  467. handle_reset(ms);
  468. restore_flags(flags);
  469. #ifndef MESH_NEW_STYLE_EH
  470. finish_cmds(ms);
  471. #endif
  472. ret |= SCSI_RESET_SUCCESS;
  473. }
  474. return ret;
  475. }
  476. /*
  477.  * If we leave drives set for synchronous transfers (especially
  478.  * CDROMs), and reboot to MacOS, it gets confused, poor thing.
  479.  * So, on reboot we reset the SCSI bus.
  480.  */
  481. static int
  482. mesh_notify_reboot(struct notifier_block *this, unsigned long code, void *x)
  483. {
  484. struct mesh_state *ms;
  485. volatile struct mesh_regs *mr;
  486. if (code == SYS_DOWN) {
  487. printk(KERN_INFO "resetting MESH scsi bus(es)n");
  488. for (ms = all_meshes; ms != 0; ms = ms->next) {
  489. mr = ms->mesh;
  490. out_8(&mr->intr_mask, 0);
  491. out_8(&mr->interrupt,
  492.       INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  493. out_8(&mr->bus_status1, BS1_RST);
  494. udelay(30);
  495. out_8(&mr->bus_status1, 0);
  496. }
  497. }
  498. return NOTIFY_DONE;
  499. }
  500. int
  501. mesh_command(Scsi_Cmnd *cmd)
  502. {
  503. printk(KERN_WARNING "whoops... mesh_command calledn");
  504. return -1;
  505. }
  506. static void
  507. mesh_init(struct mesh_state *ms)
  508. {
  509. volatile struct mesh_regs *mr = ms->mesh;
  510. volatile struct dbdma_regs *md = ms->dma;
  511. udelay(100);
  512. out_le32(&md->control, (RUN|PAUSE|FLUSH|WAKE) << 16); /* stop dma */
  513. out_8(&mr->exception, 0xff); /* clear all exception bits */
  514. out_8(&mr->error, 0xff); /* clear all error bits */
  515. out_8(&mr->sequence, SEQ_RESETMESH);
  516. udelay(10);
  517. out_8(&mr->intr_mask, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  518. out_8(&mr->source_id, ms->host->this_id);
  519. out_8(&mr->sel_timeout, 25); /* 250ms */
  520. out_8(&mr->sync_params, ASYNC_PARAMS);
  521. out_8(&mr->bus_status1, BS1_RST); /* assert RST */
  522. udelay(30); /* leave it on for >= 25us */
  523. out_8(&mr->bus_status1, 0); /* negate RST */
  524. out_8(&mr->sequence, SEQ_FLUSHFIFO);
  525. udelay(1);
  526. out_8(&mr->sync_params, ASYNC_PARAMS);
  527. out_8(&mr->sequence, SEQ_ENBRESEL);
  528. out_8(&mr->interrupt, 0xff); /* clear all interrupt bits */
  529. }
  530. /*
  531.  * Start the next command for a MESH.
  532.  * Should be called with interrupts disabled.
  533.  */
  534. static void
  535. mesh_start(struct mesh_state *ms)
  536. {
  537. Scsi_Cmnd *cmd, *prev, *next;
  538. if (ms->phase != idle || ms->current_req != NULL) {
  539. printk(KERN_ERR "inappropriate mesh_start (phase=%d, ms=%p)",
  540.        ms->phase, ms);
  541. return;
  542. }
  543. while (ms->phase == idle) {
  544. prev = NULL;
  545. for (cmd = ms->request_q; ; cmd = (Scsi_Cmnd *) cmd->host_scribble) {
  546. if (cmd == NULL)
  547. return;
  548. if (ms->tgts[cmd->target].current_req == NULL)
  549. break;
  550. prev = cmd;
  551. }
  552. next = (Scsi_Cmnd *) cmd->host_scribble;
  553. if (prev == NULL)
  554. ms->request_q = next;
  555. else
  556. prev->host_scribble = (void *) next;
  557. if (next == NULL)
  558. ms->request_qtail = prev;
  559. mesh_start_cmd(ms, cmd);
  560. }
  561. }
  562. static void
  563. mesh_start_cmd(struct mesh_state *ms, Scsi_Cmnd *cmd)
  564. {
  565. volatile struct mesh_regs *mr = ms->mesh;
  566. int t;
  567. ms->current_req = cmd;
  568. ms->tgts[cmd->target].data_goes_out = data_goes_out(cmd);
  569. ms->tgts[cmd->target].current_req = cmd;
  570. #if 1
  571. if (DEBUG_TARGET(cmd)) {
  572. int i;
  573. printk(KERN_DEBUG "mesh_start: %p ser=%lu tgt=%d cmd=",
  574.        cmd, cmd->serial_number, cmd->target);
  575. for (i = 0; i < cmd->cmd_len; ++i)
  576. printk(" %x", cmd->cmnd[i]);
  577. printk(" use_sg=%d buffer=%p bufflen=%un",
  578.        cmd->use_sg, cmd->request_buffer, cmd->request_bufflen);
  579. }
  580. #endif
  581. ms->phase = arbitrating;
  582. ms->msgphase = msg_none;
  583. ms->data_ptr = 0;
  584. ms->dma_started = 0;
  585. ms->n_msgout = 0;
  586. ms->last_n_msgout = 0;
  587. ms->expect_reply = 0;
  588. ms->conn_tgt = cmd->target;
  589. ms->tgts[cmd->target].saved_ptr = 0;
  590. ms->stat = DID_OK;
  591. ms->aborting = 0;
  592. #ifdef MESH_DBG
  593. ms->tgts[cmd->target].n_log = 0;
  594. dlog(ms, "start cmd=%x", (int) cmd);
  595. #endif
  596. /* Off we go */
  597. dlog(ms, "about to arb, intr/exc/err/fc=%.8x",
  598.      MKWORD(mr->interrupt, mr->exception, mr->error, mr->fifo_count));
  599. out_8(&mr->interrupt, INT_CMDDONE);
  600. out_8(&mr->sequence, SEQ_ENBRESEL);
  601. udelay(1);
  602. if (mr->bus_status1 & (BS1_BSY | BS1_SEL)) {
  603. /*
  604.  * Some other device has the bus or is arbitrating for it -
  605.  * probably a target which is about to reselect us.
  606.  */
  607. dlog(ms, "busy b4 arb, intr/exc/err/fc=%.8x",
  608.      MKWORD(mr->interrupt, mr->exception,
  609.     mr->error, mr->fifo_count));
  610. for (t = 100; t > 0; --t) {
  611. if ((mr->bus_status1 & (BS1_BSY | BS1_SEL)) == 0)
  612. break;
  613. if (in_8(&mr->interrupt) != 0) {
  614. dlog(ms, "intr b4 arb, intr/exc/err/fc=%.8x",
  615.      MKWORD(mr->interrupt, mr->exception,
  616.     mr->error, mr->fifo_count));
  617. mesh_interrupt(0, (void *)ms, 0);
  618. if (ms->phase != arbitrating)
  619. return;
  620. }
  621. udelay(1);
  622. }
  623. if (mr->bus_status1 & (BS1_BSY | BS1_SEL)) {
  624. /* XXX should try again in a little while */
  625. ms->stat = DID_BUS_BUSY;
  626. ms->phase = idle;
  627. mesh_done(ms, 0);
  628. return;
  629. }
  630. }
  631. /*
  632.  * Apparently the mesh has a bug where it will assert both its
  633.  * own bit and the target's bit on the bus during arbitration.
  634.  */
  635. out_8(&mr->dest_id, mr->source_id);
  636. /*
  637.  * There appears to be a race with reselection sometimes,
  638.  * where a target reselects us just as we issue the
  639.  * arbitrate command.  It seems that then the arbitrate
  640.  * command just hangs waiting for the bus to be free
  641.  * without giving us a reselection exception.
  642.  * The only way I have found to get it to respond correctly
  643.  * is this: disable reselection before issuing the arbitrate
  644.  * command, then after issuing it, if it looks like a target
  645.  * is trying to reselect us, reset the mesh and then enable
  646.  * reselection.
  647.  */
  648. out_8(&mr->sequence, SEQ_DISRESEL);
  649. if (in_8(&mr->interrupt) != 0) {
  650. dlog(ms, "intr after disresel, intr/exc/err/fc=%.8x",
  651.      MKWORD(mr->interrupt, mr->exception,
  652.     mr->error, mr->fifo_count));
  653. mesh_interrupt(0, (void *)ms, 0);
  654. if (ms->phase != arbitrating)
  655. return;
  656. dlog(ms, "after intr after disresel, intr/exc/err/fc=%.8x",
  657.      MKWORD(mr->interrupt, mr->exception,
  658.     mr->error, mr->fifo_count));
  659. }
  660. out_8(&mr->sequence, SEQ_ARBITRATE);
  661. for (t = 230; t > 0; --t) {
  662. if (in_8(&mr->interrupt) != 0)
  663. break;
  664. udelay(1);
  665. }
  666. dlog(ms, "after arb, intr/exc/err/fc=%.8x",
  667.      MKWORD(mr->interrupt, mr->exception, mr->error, mr->fifo_count));
  668. if (mr->interrupt == 0 && (mr->bus_status1 & BS1_SEL)
  669.     && (mr->bus_status0 & BS0_IO)) {
  670. /* looks like a reselection - try resetting the mesh */
  671. dlog(ms, "resel? after arb, intr/exc/err/fc=%.8x",
  672.      MKWORD(mr->interrupt, mr->exception, mr->error, mr->fifo_count));
  673. out_8(&mr->sequence, SEQ_RESETMESH);
  674. udelay(10);
  675. out_8(&mr->interrupt, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  676. out_8(&mr->intr_mask, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  677. out_8(&mr->sequence, SEQ_ENBRESEL);
  678. for (t = 10; t > 0 && mr->interrupt == 0; --t)
  679. udelay(1);
  680. dlog(ms, "tried reset after arb, intr/exc/err/fc=%.8x",
  681.      MKWORD(mr->interrupt, mr->exception, mr->error, mr->fifo_count));
  682. #ifndef MESH_MULTIPLE_HOSTS
  683. if (mr->interrupt == 0 && (mr->bus_status1 & BS1_SEL)
  684.     && (mr->bus_status0 & BS0_IO)) {
  685. printk(KERN_ERR "mesh: controller not responding"
  686.        " to reselection!n");
  687. /*
  688.  * If this is a target reselecting us, and the
  689.  * mesh isn't responding, the higher levels of
  690.  * the scsi code will eventually time out and
  691.  * reset the bus.
  692.  */
  693. }
  694. #endif
  695. }
  696. }
  697. #ifndef MESH_NEW_STYLE_EH
  698. static void
  699. finish_cmds(void *data)
  700. {
  701. struct mesh_state *ms = data;
  702. Scsi_Cmnd *cmd;
  703. unsigned long flags;
  704. for (;;) {
  705. spin_lock_irqsave(&io_request_lock, flags);
  706. cmd = ms->completed_q;
  707. if (cmd == NULL) {
  708. spin_unlock_irqrestore(&io_request_lock, flags);
  709. break;
  710. }
  711. ms->completed_q = (Scsi_Cmnd *) cmd->host_scribble;
  712. (*cmd->scsi_done)(cmd);
  713. spin_unlock_irqrestore(&io_request_lock, flags);
  714. }
  715. }
  716. #endif /* MESH_NEW_STYLE_EH */
  717. static inline void
  718. add_sdtr_msg(struct mesh_state *ms)
  719. {
  720. int i = ms->n_msgout;
  721. ms->msgout[i] = EXTENDED_MESSAGE;
  722. ms->msgout[i+1] = 3;
  723. ms->msgout[i+2] = EXTENDED_SDTR;
  724. ms->msgout[i+3] = mesh_sync_period/4;
  725. ms->msgout[i+4] = (ALLOW_SYNC(ms->conn_tgt)? mesh_sync_offset: 0);
  726. ms->n_msgout = i + 5;
  727. }
  728. static void
  729. set_sdtr(struct mesh_state *ms, int period, int offset)
  730. {
  731. struct mesh_target *tp = &ms->tgts[ms->conn_tgt];
  732. volatile struct mesh_regs *mr = ms->mesh;
  733. int v, tr;
  734. tp->sdtr_state = sdtr_done;
  735. if (offset == 0) {
  736. /* asynchronous */
  737. if (SYNC_OFF(tp->sync_params))
  738. printk(KERN_INFO "mesh: target %d now asynchronousn",
  739.        ms->conn_tgt);
  740. tp->sync_params = ASYNC_PARAMS;
  741. out_8(&mr->sync_params, ASYNC_PARAMS);
  742. return;
  743. }
  744. /*
  745.  * We need to compute ceil(clk_freq * period / 500e6) - 2
  746.  * without incurring overflow.
  747.  */
  748. v = (ms->clk_freq / 5000) * period;
  749. if (v <= 250000) {
  750. /* special case: sync_period == 5 * clk_period */
  751. v = 0;
  752. /* units of tr are 100kB/s */
  753. tr = (ms->clk_freq + 250000) / 500000;
  754. } else {
  755. /* sync_period == (v + 2) * 2 * clk_period */
  756. v = (v + 99999) / 100000 - 2;
  757. if (v > 15)
  758. v = 15; /* oops */
  759. tr = ((ms->clk_freq / (v + 2)) + 199999) / 200000;
  760. }
  761. if (offset > 15)
  762. offset = 15; /* can't happen */
  763. tp->sync_params = SYNC_PARAMS(offset, v);
  764. out_8(&mr->sync_params, tp->sync_params);
  765. printk(KERN_INFO "mesh: target %d synchronous at %d.%d MB/sn",
  766.        ms->conn_tgt, tr/10, tr%10);
  767. }
  768. static void
  769. start_phase(struct mesh_state *ms)
  770. {
  771. int i, seq, nb;
  772. volatile struct mesh_regs *mr = ms->mesh;
  773. volatile struct dbdma_regs *md = ms->dma;
  774. Scsi_Cmnd *cmd = ms->current_req;
  775. struct mesh_target *tp = &ms->tgts[ms->conn_tgt];
  776. dlog(ms, "start_phase nmo/exc/fc/seq = %.8x",
  777.      MKWORD(ms->n_msgout, mr->exception, mr->fifo_count, mr->sequence));
  778. out_8(&mr->interrupt, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  779. seq = use_active_neg + (ms->n_msgout? SEQ_ATN: 0);
  780. switch (ms->msgphase) {
  781. case msg_none:
  782. break;
  783. case msg_in:
  784. out_8(&mr->count_hi, 0);
  785. out_8(&mr->count_lo, 1);
  786. out_8(&mr->sequence, SEQ_MSGIN + seq);
  787. ms->n_msgin = 0;
  788. return;
  789. case msg_out:
  790. /*
  791.  * To make sure ATN drops before we assert ACK for
  792.  * the last byte of the message, we have to do the
  793.  * last byte specially.
  794.  */
  795. if (ms->n_msgout <= 0) {
  796. printk(KERN_ERR "mesh: msg_out but n_msgout=%dn",
  797.        ms->n_msgout);
  798. mesh_dump_regs(ms);
  799. ms->msgphase = msg_none;
  800. break;
  801. }
  802. if (ALLOW_DEBUG(ms->conn_tgt)) {
  803. printk(KERN_DEBUG "mesh: sending %d msg bytes:",
  804.        ms->n_msgout);
  805. for (i = 0; i < ms->n_msgout; ++i)
  806. printk(" %x", ms->msgout[i]);
  807. printk("n");
  808. }
  809. dlog(ms, "msgout msg=%.8x", MKWORD(ms->n_msgout, ms->msgout[0],
  810. ms->msgout[1], ms->msgout[2]));
  811. out_8(&mr->count_hi, 0);
  812. out_8(&mr->sequence, SEQ_FLUSHFIFO);
  813. udelay(1);
  814. /*
  815.  * If ATN is not already asserted, we assert it, then
  816.  * issue a SEQ_MSGOUT to get the mesh to drop ACK.
  817.  */
  818. if ((mr->bus_status0 & BS0_ATN) == 0) {
  819. dlog(ms, "bus0 was %.2x explictly asserting ATN", mr->bus_status0);
  820. out_8(&mr->bus_status0, BS0_ATN); /* explicit ATN */
  821. udelay(1);
  822. out_8(&mr->count_lo, 1);
  823. out_8(&mr->sequence, SEQ_MSGOUT + seq);
  824. out_8(&mr->bus_status0, 0); /* release explicit ATN */
  825. dlog(ms,"hace: after explicit ATN bus0=%.2x",mr->bus_status0);
  826. }
  827. if (ms->n_msgout == 1) {
  828. /*
  829.  * We can't issue the SEQ_MSGOUT without ATN
  830.  * until the target has asserted REQ.  The logic
  831.  * in cmd_complete handles both situations:
  832.  * REQ already asserted or not.
  833.  */
  834. cmd_complete(ms);
  835. } else {
  836. out_8(&mr->count_lo, ms->n_msgout - 1);
  837. out_8(&mr->sequence, SEQ_MSGOUT + seq);
  838. for (i = 0; i < ms->n_msgout - 1; ++i)
  839. out_8(&mr->fifo, ms->msgout[i]);
  840. }
  841. return;
  842. default:
  843. printk(KERN_ERR "mesh bug: start_phase msgphase=%dn",
  844.        ms->msgphase);
  845. }
  846. switch (ms->phase) {
  847. case selecting:
  848. out_8(&mr->dest_id, ms->conn_tgt);
  849. out_8(&mr->sequence, SEQ_SELECT + SEQ_ATN);
  850. break;
  851. case commanding:
  852. out_8(&mr->sync_params, tp->sync_params);
  853. out_8(&mr->count_hi, 0);
  854. if (cmd) {
  855. out_8(&mr->count_lo, cmd->cmd_len);
  856. out_8(&mr->sequence, SEQ_COMMAND + seq);
  857. for (i = 0; i < cmd->cmd_len; ++i)
  858. out_8(&mr->fifo, cmd->cmnd[i]);
  859. } else {
  860. out_8(&mr->count_lo, 6);
  861. out_8(&mr->sequence, SEQ_COMMAND + seq);
  862. for (i = 0; i < 6; ++i)
  863. out_8(&mr->fifo, 0);
  864. }
  865. break;
  866. case dataing:
  867. /* transfer data, if any */
  868. if (!ms->dma_started) {
  869. set_dma_cmds(ms, cmd);
  870. out_le32(&md->cmdptr, virt_to_phys(ms->dma_cmds));
  871. out_le32(&md->control, (RUN << 16) | RUN);
  872. ms->dma_started = 1;
  873. }
  874. nb = ms->dma_count;
  875. if (nb > 0xfff0)
  876. nb = 0xfff0;
  877. ms->dma_count -= nb;
  878. ms->data_ptr += nb;
  879. out_8(&mr->count_lo, nb);
  880. out_8(&mr->count_hi, nb >> 8);
  881. out_8(&mr->sequence, (tp->data_goes_out?
  882. SEQ_DATAOUT: SEQ_DATAIN) + SEQ_DMA_MODE + seq);
  883. break;
  884. case statusing:
  885. out_8(&mr->count_hi, 0);
  886. out_8(&mr->count_lo, 1);
  887. out_8(&mr->sequence, SEQ_STATUS + seq);
  888. break;
  889. case busfreeing:
  890. case disconnecting:
  891. out_8(&mr->sequence, SEQ_ENBRESEL);
  892. udelay(1);
  893. dlog(ms, "enbresel intr/exc/err/fc=%.8x",
  894.      MKWORD(mr->interrupt, mr->exception, mr->error,
  895.     mr->fifo_count));
  896. out_8(&mr->sequence, SEQ_BUSFREE);
  897. break;
  898. default:
  899. printk(KERN_ERR "mesh: start_phase called with phase=%dn",
  900.        ms->phase);
  901. dumpslog(ms);
  902. }
  903. }
  904. static inline void
  905. get_msgin(struct mesh_state *ms)
  906. {
  907. volatile struct mesh_regs *mr = ms->mesh;
  908. int i, n;
  909. n = mr->fifo_count;
  910. if (n != 0) {
  911. i = ms->n_msgin;
  912. ms->n_msgin = i + n;
  913. for (; n > 0; --n)
  914. ms->msgin[i++] = in_8(&mr->fifo);
  915. }
  916. }
  917. static inline int
  918. msgin_length(struct mesh_state *ms)
  919. {
  920. int b, n;
  921. n = 1;
  922. if (ms->n_msgin > 0) {
  923. b = ms->msgin[0];
  924. if (b == 1) {
  925. /* extended message */
  926. n = ms->n_msgin < 2? 2: ms->msgin[1] + 2;
  927. } else if (0x20 <= b && b <= 0x2f) {
  928. /* 2-byte message */
  929. n = 2;
  930. }
  931. }
  932. return n;
  933. }
  934. static void
  935. cmd_complete(struct mesh_state *ms)
  936. {
  937. volatile struct mesh_regs *mr = ms->mesh;
  938. Scsi_Cmnd *cmd = ms->current_req;
  939. struct mesh_target *tp = &ms->tgts[ms->conn_tgt];
  940. int seq, n, t;
  941. dlog(ms, "cmd_complete fc=%x", mr->fifo_count);
  942. seq = use_active_neg + (ms->n_msgout? SEQ_ATN: 0);
  943. switch (ms->msgphase) {
  944. case msg_out_xxx:
  945. /* huh?  we expected a phase mismatch */
  946. ms->n_msgin = 0;
  947. ms->msgphase = msg_in;
  948. /* fall through */
  949. case msg_in:
  950. /* should have some message bytes in fifo */
  951. get_msgin(ms);
  952. n = msgin_length(ms);
  953. if (ms->n_msgin < n) {
  954. out_8(&mr->count_lo, n - ms->n_msgin);
  955. out_8(&mr->sequence, SEQ_MSGIN + seq);
  956. } else {
  957. ms->msgphase = msg_none;
  958. handle_msgin(ms);
  959. start_phase(ms);
  960. }
  961. break;
  962. case msg_in_bad:
  963. out_8(&mr->sequence, SEQ_FLUSHFIFO);
  964. udelay(1);
  965. out_8(&mr->count_lo, 1);
  966. out_8(&mr->sequence, SEQ_MSGIN + SEQ_ATN + use_active_neg);
  967. break;
  968. case msg_out:
  969. /*
  970.  * To get the right timing on ATN wrt ACK, we have
  971.  * to get the MESH to drop ACK, wait until REQ gets
  972.  * asserted, then drop ATN.  To do this we first
  973.  * issue a SEQ_MSGOUT with ATN and wait for REQ,
  974.  * then change the command to a SEQ_MSGOUT w/o ATN.
  975.  * If we don't see REQ in a reasonable time, we
  976.  * change the command to SEQ_MSGIN with ATN,
  977.  * wait for the phase mismatch interrupt, then
  978.  * issue the SEQ_MSGOUT without ATN.
  979.  */
  980. out_8(&mr->count_lo, 1);
  981. out_8(&mr->sequence, SEQ_MSGOUT + use_active_neg + SEQ_ATN);
  982. t = 30; /* wait up to 30us */
  983. while ((mr->bus_status0 & BS0_REQ) == 0 && --t >= 0)
  984. udelay(1);
  985. dlog(ms, "last_mbyte err/exc/fc/cl=%.8x",
  986.      MKWORD(mr->error, mr->exception,
  987.     mr->fifo_count, mr->count_lo));
  988. if (in_8(&mr->interrupt) & (INT_ERROR | INT_EXCEPTION)) {
  989. /* whoops, target didn't do what we expected */
  990. ms->last_n_msgout = ms->n_msgout;
  991. ms->n_msgout = 0;
  992. if (in_8(&mr->interrupt) & INT_ERROR) {
  993. printk(KERN_ERR "mesh: error %x in msg_outn",
  994.        in_8(&mr->error));
  995. handle_error(ms);
  996. return;
  997. }
  998. if (in_8(&mr->exception) != EXC_PHASEMM)
  999. printk(KERN_ERR "mesh: exc %x in msg_outn",
  1000.        in_8(&mr->exception));
  1001. else
  1002. printk(KERN_DEBUG "mesh: bs0=%x in msg_outn",
  1003.        in_8(&mr->bus_status0));
  1004. handle_exception(ms);
  1005. return;
  1006. }
  1007. if (mr->bus_status0 & BS0_REQ) {
  1008. out_8(&mr->sequence, SEQ_MSGOUT + use_active_neg);
  1009. udelay(1);
  1010. out_8(&mr->fifo, ms->msgout[ms->n_msgout-1]);
  1011. ms->msgphase = msg_out_last;
  1012. } else {
  1013. out_8(&mr->sequence, SEQ_MSGIN + use_active_neg + SEQ_ATN);
  1014. ms->msgphase = msg_out_xxx;
  1015. }
  1016. break;
  1017. case msg_out_last:
  1018. ms->last_n_msgout = ms->n_msgout;
  1019. ms->n_msgout = 0;
  1020. ms->msgphase = ms->expect_reply? msg_in: msg_none;
  1021. start_phase(ms);
  1022. break;
  1023. case msg_none:
  1024. switch (ms->phase) {
  1025. case idle:
  1026. printk(KERN_ERR "mesh: interrupt in idle phase?n");
  1027. dumpslog(ms);
  1028. return;
  1029. case selecting:
  1030. dlog(ms, "Selecting phase at command completion",0);
  1031. ms->msgout[0] = IDENTIFY(ALLOW_RESEL(ms->conn_tgt),
  1032.  (cmd? cmd->lun: 0));
  1033. ms->n_msgout = 1;
  1034. ms->expect_reply = 0;
  1035. if (ms->aborting) {
  1036. ms->msgout[0] = ABORT;
  1037. ms->n_msgout++;
  1038. } else if (tp->sdtr_state == do_sdtr) {
  1039. /* add SDTR message */
  1040. add_sdtr_msg(ms);
  1041. ms->expect_reply = 1;
  1042. tp->sdtr_state = sdtr_sent;
  1043. }
  1044. ms->msgphase = msg_out;
  1045. /*
  1046.  * We need to wait for REQ before dropping ATN.
  1047.  * We wait for at most 30us, then fall back to
  1048.  * a scheme where we issue a SEQ_COMMAND with ATN,
  1049.  * which will give us a phase mismatch interrupt
  1050.  * when REQ does come, and then we send the message.
  1051.  */
  1052. t = 230; /* wait up to 230us */
  1053. while ((mr->bus_status0 & BS0_REQ) == 0) {
  1054. if (--t < 0) {
  1055. dlog(ms, "impatient for req", ms->n_msgout);
  1056. ms->msgphase = msg_none;
  1057. break;
  1058. }
  1059. udelay(1);
  1060. }
  1061. break;
  1062. case dataing:
  1063. if (ms->dma_count != 0) {
  1064. start_phase(ms);
  1065. return;
  1066. }
  1067. /*
  1068.  * We can get a phase mismatch here if the target
  1069.  * changes to the status phase, even though we have
  1070.  * had a command complete interrupt.  Then, if we
  1071.  * issue the SEQ_STATUS command, we'll get a sequence
  1072.  * error interrupt.  Which isn't so bad except that
  1073.  * occasionally the mesh actually executes the
  1074.  * SEQ_STATUS *as well as* giving us the sequence
  1075.  * error and phase mismatch exception.
  1076.  */
  1077. out_8(&mr->sequence, 0);
  1078. out_8(&mr->interrupt,
  1079.       INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  1080. halt_dma(ms);
  1081. break;
  1082. case statusing:
  1083. if (cmd) {
  1084. cmd->SCp.Status = mr->fifo;
  1085. if (DEBUG_TARGET(cmd))
  1086. printk(KERN_DEBUG "mesh: status is %xn",
  1087.        cmd->SCp.Status);
  1088. }
  1089. ms->msgphase = msg_in;
  1090. break;
  1091. case busfreeing:
  1092. mesh_done(ms, 1);
  1093. return;
  1094. case disconnecting:
  1095. ms->current_req = 0;
  1096. ms->phase = idle;
  1097. mesh_start(ms);
  1098. return;
  1099. default:
  1100. break;
  1101. }
  1102. ++ms->phase;
  1103. start_phase(ms);
  1104. break;
  1105. }
  1106. }
  1107. static void phase_mismatch(struct mesh_state *ms)
  1108. {
  1109. volatile struct mesh_regs *mr = ms->mesh;
  1110. int phase;
  1111. dlog(ms, "phasemm ch/cl/seq/fc=%.8x",
  1112.      MKWORD(mr->count_hi, mr->count_lo, mr->sequence, mr->fifo_count));
  1113. phase = mr->bus_status0 & BS0_PHASE;
  1114. if (ms->msgphase == msg_out_xxx && phase == BP_MSGOUT) {
  1115. /* output the last byte of the message, without ATN */
  1116. out_8(&mr->count_lo, 1);
  1117. out_8(&mr->sequence, SEQ_MSGOUT + use_active_neg);
  1118. udelay(1);
  1119. out_8(&mr->fifo, ms->msgout[ms->n_msgout-1]);
  1120. ms->msgphase = msg_out_last;
  1121. return;
  1122. }
  1123. if (ms->msgphase == msg_in) {
  1124. get_msgin(ms);
  1125. if (ms->n_msgin)
  1126. handle_msgin(ms);
  1127. }
  1128. if (ms->dma_started)
  1129. halt_dma(ms);
  1130. if (mr->fifo_count) {
  1131. out_8(&mr->sequence, SEQ_FLUSHFIFO);
  1132. udelay(1);
  1133. }
  1134. ms->msgphase = msg_none;
  1135. switch (phase) {
  1136. case BP_DATAIN:
  1137. ms->tgts[ms->conn_tgt].data_goes_out = 0;
  1138. ms->phase = dataing;
  1139. break;
  1140. case BP_DATAOUT:
  1141. ms->tgts[ms->conn_tgt].data_goes_out = 1;
  1142. ms->phase = dataing;
  1143. break;
  1144. case BP_COMMAND:
  1145. ms->phase = commanding;
  1146. break;
  1147. case BP_STATUS:
  1148. ms->phase = statusing;
  1149. break;
  1150. case BP_MSGIN:
  1151. ms->msgphase = msg_in;
  1152. ms->n_msgin = 0;
  1153. break;
  1154. case BP_MSGOUT:
  1155. ms->msgphase = msg_out;
  1156. if (ms->n_msgout == 0) {
  1157. if (ms->aborting) {
  1158. do_abort(ms);
  1159. } else {
  1160. if (ms->last_n_msgout == 0) {
  1161. printk(KERN_DEBUG
  1162.        "mesh: no msg to repeatn");
  1163. ms->msgout[0] = NOP;
  1164. ms->last_n_msgout = 1;
  1165. }
  1166. ms->n_msgout = ms->last_n_msgout;
  1167. }
  1168. }
  1169. break;
  1170. default:
  1171. printk(KERN_DEBUG "mesh: unknown scsi phase %xn", phase);
  1172. ms->stat = DID_ERROR;
  1173. mesh_done(ms, 1);
  1174. return;
  1175. }
  1176. start_phase(ms);
  1177. }
  1178. static void
  1179. reselected(struct mesh_state *ms)
  1180. {
  1181. volatile struct mesh_regs *mr = ms->mesh;
  1182. Scsi_Cmnd *cmd;
  1183. struct mesh_target *tp;
  1184. int b, t, prev;
  1185. switch (ms->phase) {
  1186. case idle:
  1187. break;
  1188. case arbitrating:
  1189. if ((cmd = ms->current_req) != NULL) {
  1190. /* put the command back on the queue */
  1191. cmd->host_scribble = (void *) ms->request_q;
  1192. if (ms->request_q == NULL)
  1193. ms->request_qtail = cmd;
  1194. ms->request_q = cmd;
  1195. tp = &ms->tgts[cmd->target];
  1196. tp->current_req = NULL;
  1197. }
  1198. break;
  1199. case busfreeing:
  1200. ms->phase = reselecting;
  1201. mesh_done(ms, 0);
  1202. break;
  1203. case disconnecting:
  1204. break;
  1205. default:
  1206. printk(KERN_ERR "mesh: reselected in phase %d/%d tgt %dn",
  1207.        ms->msgphase, ms->phase, ms->conn_tgt);
  1208. dumplog(ms, ms->conn_tgt);
  1209. dumpslog(ms);
  1210. }
  1211. ms->current_req = NULL;
  1212. ms->phase = dataing;
  1213. ms->msgphase = msg_in;
  1214. ms->dma_started = 0;
  1215. ms->n_msgout = 0;
  1216. ms->last_n_msgout = 0;
  1217. prev = ms->conn_tgt;
  1218. /*
  1219.  * We seem to get abortive reselections sometimes.
  1220.  */
  1221. while ((mr->bus_status1 & BS1_BSY) == 0) {
  1222. static int mesh_aborted_resels;
  1223. mesh_aborted_resels++;
  1224. out_8(&mr->interrupt, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  1225. udelay(1);
  1226. out_8(&mr->sequence, SEQ_ENBRESEL);
  1227. udelay(5);
  1228. dlog(ms, "extra resel err/exc/fc = %.6x",
  1229.      MKWORD(0, mr->error, mr->exception, mr->fifo_count));
  1230. }
  1231. out_8(&mr->interrupt, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  1232. udelay(1);
  1233. out_8(&mr->sequence, SEQ_ENBRESEL);
  1234. udelay(1);
  1235. out_8(&mr->sync_params, ASYNC_PARAMS);
  1236. /*
  1237.  * Find out who reselected us.
  1238.  */
  1239. if (mr->fifo_count == 0) {
  1240. printk(KERN_ERR "mesh: reselection but nothing in fifo?n");
  1241. ms->conn_tgt = ms->host->this_id;
  1242. goto bogus;
  1243. }
  1244. /* get the last byte in the fifo */
  1245. do {
  1246. b = in_8(&mr->fifo);
  1247. dlog(ms, "reseldata %x", b);
  1248. } while (in_8(&mr->fifo_count));
  1249. for (t = 0; t < 8; ++t)
  1250. if ((b & (1 << t)) != 0 && t != ms->host->this_id)
  1251. break;
  1252. if (b != (1 << t) + (1 << ms->host->this_id)) {
  1253. printk(KERN_ERR "mesh: bad reselection data %xn", b);
  1254. ms->conn_tgt = ms->host->this_id;
  1255. goto bogus;
  1256. }
  1257. /*
  1258.  * Set up to continue with that target's transfer.
  1259.  */
  1260. ms->conn_tgt = t;
  1261. tp = &ms->tgts[t];
  1262. out_8(&mr->sync_params, tp->sync_params);
  1263. if (ALLOW_DEBUG(t)) {
  1264. printk(KERN_DEBUG "mesh: reselected by target %dn", t);
  1265. printk(KERN_DEBUG "mesh: saved_ptr=%x goes_out=%d cmd=%pn",
  1266.        tp->saved_ptr, tp->data_goes_out, tp->current_req);
  1267. }
  1268. ms->current_req = tp->current_req;
  1269. if (tp->current_req == NULL) {
  1270. printk(KERN_ERR "mesh: reselected by tgt %d but no cmd!n", t);
  1271. goto bogus;
  1272. }
  1273. ms->data_ptr = tp->saved_ptr;
  1274. dlog(ms, "resel prev tgt=%d", prev);
  1275. dlog(ms, "resel err/exc=%.4x", MKWORD(0, 0, mr->error, mr->exception));
  1276. start_phase(ms);
  1277. return;
  1278. bogus:
  1279. dumplog(ms, ms->conn_tgt);
  1280. dumpslog(ms);
  1281. ms->data_ptr = 0;
  1282. ms->aborting = 1;
  1283. start_phase(ms);
  1284. }
  1285. static void do_abort(struct mesh_state *ms)
  1286. {
  1287. ms->msgout[0] = ABORT;
  1288. ms->n_msgout = 1;
  1289. ms->aborting = 1;
  1290. ms->stat = DID_ABORT;
  1291. dlog(ms, "abort", 0);
  1292. }
  1293. static void
  1294. handle_reset(struct mesh_state *ms)
  1295. {
  1296. int tgt;
  1297. struct mesh_target *tp;
  1298. Scsi_Cmnd *cmd;
  1299. volatile struct mesh_regs *mr = ms->mesh;
  1300. for (tgt = 0; tgt < 8; ++tgt) {
  1301. tp = &ms->tgts[tgt];
  1302. if ((cmd = tp->current_req) != NULL) {
  1303. cmd->result = DID_RESET << 16;
  1304. tp->current_req = NULL;
  1305. mesh_completed(ms, cmd);
  1306. }
  1307. ms->tgts[tgt].sdtr_state = do_sdtr;
  1308. ms->tgts[tgt].sync_params = ASYNC_PARAMS;
  1309. }
  1310. ms->current_req = NULL;
  1311. while ((cmd = ms->request_q) != NULL) {
  1312. ms->request_q = (Scsi_Cmnd *) cmd->host_scribble;
  1313. cmd->result = DID_RESET << 16;
  1314. mesh_completed(ms, cmd);
  1315. }
  1316. ms->phase = idle;
  1317. ms->msgphase = msg_none;
  1318. out_8(&mr->interrupt, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  1319. out_8(&mr->sequence, SEQ_FLUSHFIFO);
  1320. udelay(1);
  1321. out_8(&mr->sync_params, ASYNC_PARAMS);
  1322. out_8(&mr->sequence, SEQ_ENBRESEL);
  1323. }
  1324. static void
  1325. do_mesh_interrupt(int irq, void *dev_id, struct pt_regs *ptregs)
  1326. {
  1327. unsigned long flags;
  1328. spin_lock_irqsave(&io_request_lock, flags);
  1329. mesh_interrupt(irq, dev_id, ptregs);
  1330. spin_unlock_irqrestore(&io_request_lock, flags);
  1331. }
  1332. static void handle_error(struct mesh_state *ms)
  1333. {
  1334. int err, exc, count;
  1335. volatile struct mesh_regs *mr = ms->mesh;
  1336. err = in_8(&mr->error);
  1337. exc = in_8(&mr->exception);
  1338. out_8(&mr->interrupt, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);
  1339. dlog(ms, "error err/exc/fc/cl=%.8x",
  1340.      MKWORD(err, exc, mr->fifo_count, mr->count_lo));
  1341. if (err & ERR_SCSIRESET) {
  1342. /* SCSI bus was reset */
  1343. printk(KERN_INFO "mesh: SCSI bus reset detected: "
  1344.        "waiting for end...");
  1345. while ((mr->bus_status1 & BS1_RST) != 0)
  1346. udelay(1);
  1347. printk("donen");
  1348. handle_reset(ms);
  1349. /* request_q is empty, no point in mesh_start() */
  1350. return;
  1351. }
  1352. if (err & ERR_UNEXPDISC) {
  1353. /* Unexpected disconnect */
  1354. if (exc & EXC_RESELECTED) {
  1355. reselected(ms);
  1356. return;
  1357. }
  1358. if (!ms->aborting) {
  1359. printk(KERN_WARNING "mesh: target %d abortedn",
  1360.        ms->conn_tgt);
  1361. dumplog(ms, ms->conn_tgt);
  1362. dumpslog(ms);
  1363. }
  1364. out_8(&mr->interrupt, INT_CMDDONE);
  1365. ms->stat = DID_ABORT;
  1366. mesh_done(ms, 1);
  1367. return;
  1368. }
  1369. if (err & ERR_PARITY) {
  1370. if (ms->msgphase == msg_in) {
  1371. printk(KERN_ERR "mesh: msg parity error, target %dn",
  1372.        ms->conn_tgt);
  1373. ms->msgout[0] = MSG_PARITY_ERROR;
  1374. ms->n_msgout = 1;
  1375. ms->msgphase = msg_in_bad;
  1376. cmd_complete(ms);
  1377. return;
  1378. }
  1379. if (ms->stat == DID_OK) {
  1380. printk(KERN_ERR "mesh: parity error, target %dn",
  1381.        ms->conn_tgt);
  1382. ms->stat = DID_PARITY;
  1383. }
  1384. count = (mr->count_hi << 8) + mr->count_lo;
  1385. if (count == 0) {
  1386. cmd_complete(ms);
  1387. } else {
  1388. /* reissue the data transfer command */
  1389. out_8(&mr->sequence, mr->sequence);
  1390. }
  1391. return;
  1392. }
  1393. if (err & ERR_SEQERR) {
  1394. if (exc & EXC_RESELECTED) {
  1395. /* This can happen if we issue a command to
  1396.    get the bus just after the target reselects us. */
  1397. static int mesh_resel_seqerr;
  1398. mesh_resel_seqerr++;
  1399. reselected(ms);
  1400. return;
  1401. }
  1402. if (exc == EXC_PHASEMM) {
  1403. static int mesh_phasemm_seqerr;
  1404. mesh_phasemm_seqerr++;
  1405. phase_mismatch(ms);
  1406. return;
  1407. }
  1408. printk(KERN_ERR "mesh: sequence error (err=%x exc=%x)n",
  1409.        err, exc);
  1410. } else {
  1411. printk(KERN_ERR "mesh: unknown error %x (exc=%x)n", err, exc);
  1412. }
  1413. mesh_dump_regs(ms);
  1414. dumplog(ms, ms->conn_tgt);
  1415. if (ms->phase > selecting && (mr->bus_status1 & BS1_BSY)) {
  1416. /* try to do what the target wants */
  1417. do_abort(ms);
  1418. phase_mismatch(ms);
  1419. return;
  1420. }
  1421. ms->stat = DID_ERROR;
  1422. mesh_done(ms, 1);
  1423. }
  1424. static void handle_exception(struct mesh_state *ms)
  1425. {
  1426. int exc;
  1427. volatile struct mesh_regs *mr = ms->mesh;
  1428. exc = in_8(&mr->exception);
  1429. out_8(&mr->interrupt, INT_EXCEPTION | INT_CMDDONE);
  1430. if (exc & EXC_RESELECTED) {
  1431. static int mesh_resel_exc;
  1432. mesh_resel_exc++;
  1433. reselected(ms);
  1434. } else if (exc == EXC_ARBLOST) {
  1435. printk(KERN_DEBUG "mesh: lost arbitrationn");
  1436. ms->stat = DID_BUS_BUSY;
  1437. mesh_done(ms, 1);
  1438. } else if (exc == EXC_SELTO) {
  1439. /* selection timed out */
  1440. ms->stat = DID_BAD_TARGET;
  1441. mesh_done(ms, 1);
  1442. } else if (exc == EXC_PHASEMM) {
  1443. /* target wants to do something different:
  1444.    find out what it wants and do it. */
  1445. phase_mismatch(ms);
  1446. } else {
  1447. printk(KERN_ERR "mesh: can't cope with exception %xn", exc);
  1448. mesh_dump_regs(ms);
  1449. dumplog(ms, ms->conn_tgt);
  1450. do_abort(ms);
  1451. phase_mismatch(ms);
  1452. }
  1453. }
  1454. static void
  1455. mesh_interrupt(int irq, void *dev_id, struct pt_regs *ptregs)
  1456. {
  1457. struct mesh_state *ms = (struct mesh_state *) dev_id;
  1458. volatile struct mesh_regs *mr = ms->mesh;
  1459. int intr;
  1460. #if 0
  1461. if (ALLOW_DEBUG(ms->conn_tgt))
  1462. printk(KERN_DEBUG "mesh_intr, bs0=%x int=%x exc=%x err=%x "
  1463.        "phase=%d msgphase=%dn", mr->bus_status0,
  1464.        mr->interrupt, mr->exception, mr->error,
  1465.        ms->phase, ms->msgphase);
  1466. #endif
  1467. while ((intr = in_8(&mr->interrupt)) != 0) {
  1468. dlog(ms, "interrupt intr/err/exc/seq=%.8x", 
  1469.      MKWORD(intr, mr->error, mr->exception, mr->sequence));
  1470. if (intr & INT_ERROR) {
  1471. handle_error(ms);
  1472. } else if (intr & INT_EXCEPTION) {
  1473. handle_exception(ms);
  1474. } else if (intr & INT_CMDDONE) {
  1475. out_8(&mr->interrupt, INT_CMDDONE);
  1476. cmd_complete(ms);
  1477. }
  1478. }
  1479. }
  1480. static void
  1481. handle_msgin(struct mesh_state *ms)
  1482. {
  1483. int i, code;
  1484. Scsi_Cmnd *cmd = ms->current_req;
  1485. struct mesh_target *tp = &ms->tgts[ms->conn_tgt];
  1486. if (ms->n_msgin == 0)
  1487. return;
  1488. code = ms->msgin[0];
  1489. if (ALLOW_DEBUG(ms->conn_tgt)) {
  1490. printk(KERN_DEBUG "got %d message bytes:", ms->n_msgin);
  1491. for (i = 0; i < ms->n_msgin; ++i)
  1492. printk(" %x", ms->msgin[i]);
  1493. printk("n");
  1494. }
  1495. dlog(ms, "msgin msg=%.8x",
  1496.      MKWORD(ms->n_msgin, code, ms->msgin[1], ms->msgin[2]));
  1497. ms->expect_reply = 0;
  1498. ms->n_msgout = 0;
  1499. if (ms->n_msgin < msgin_length(ms))
  1500. goto reject;
  1501. if (cmd)
  1502. cmd->SCp.Message = code;
  1503. switch (code) {
  1504. case COMMAND_COMPLETE:
  1505. break;
  1506. case EXTENDED_MESSAGE:
  1507. switch (ms->msgin[2]) {
  1508. case EXTENDED_MODIFY_DATA_POINTER:
  1509. ms->data_ptr += (ms->msgin[3] << 24) + ms->msgin[6]
  1510. + (ms->msgin[4] << 16) + (ms->msgin[5] << 8);
  1511. break;
  1512. case EXTENDED_SDTR:
  1513. if (tp->sdtr_state != sdtr_sent) {
  1514. /* reply with an SDTR */
  1515. add_sdtr_msg(ms);
  1516. /* limit period to at least his value,
  1517.    offset to no more than his */
  1518. if (ms->msgout[3] < ms->msgin[3])
  1519. ms->msgout[3] = ms->msgin[3];
  1520. if (ms->msgout[4] > ms->msgin[4])
  1521. ms->msgout[4] = ms->msgin[4];
  1522. set_sdtr(ms, ms->msgout[3], ms->msgout[4]);
  1523. ms->msgphase = msg_out;
  1524. } else {
  1525. set_sdtr(ms, ms->msgin[3], ms->msgin[4]);
  1526. }
  1527. break;
  1528. default:
  1529. goto reject;
  1530. }
  1531. break;
  1532. case SAVE_POINTERS:
  1533. tp->saved_ptr = ms->data_ptr;
  1534. break;
  1535. case RESTORE_POINTERS:
  1536. ms->data_ptr = tp->saved_ptr;
  1537. break;
  1538. case DISCONNECT:
  1539. ms->phase = disconnecting;
  1540. break;
  1541. case ABORT:
  1542. break;
  1543. case MESSAGE_REJECT:
  1544. if (tp->sdtr_state == sdtr_sent)
  1545. set_sdtr(ms, 0, 0);
  1546. break;
  1547. case NOP:
  1548. break;
  1549. default:
  1550. if (IDENTIFY_BASE <= code && code <= IDENTIFY_BASE + 7) {
  1551. if (cmd == NULL) {
  1552. do_abort(ms);
  1553. ms->msgphase = msg_out;
  1554. } else if (code != cmd->lun + IDENTIFY_BASE) {
  1555. printk(KERN_WARNING "mesh: lun mismatch "
  1556.        "(%d != %d) on reselection from "
  1557.        "target %dn", i, cmd->lun,
  1558.        ms->conn_tgt);
  1559. }
  1560. break;
  1561. }
  1562. goto reject;
  1563. }
  1564. return;
  1565.  reject:
  1566. printk(KERN_WARNING "mesh: rejecting message from target %d:",
  1567.        ms->conn_tgt);
  1568. for (i = 0; i < ms->n_msgin; ++i)
  1569. printk(" %x", ms->msgin[i]);
  1570. printk("n");
  1571. ms->msgout[0] = MESSAGE_REJECT;
  1572. ms->n_msgout = 1;
  1573. ms->msgphase = msg_out;
  1574. }
  1575. static void
  1576. mesh_done(struct mesh_state *ms, int start_next)
  1577. {
  1578. Scsi_Cmnd *cmd;
  1579. struct mesh_target *tp = &ms->tgts[ms->conn_tgt];
  1580. cmd = ms->current_req;
  1581. ms->current_req = 0;
  1582. tp->current_req = 0;
  1583. if (cmd) {
  1584. cmd->result = (ms->stat << 16) + cmd->SCp.Status;
  1585. if (ms->stat == DID_OK)
  1586. cmd->result += (cmd->SCp.Message << 8);
  1587. if (DEBUG_TARGET(cmd)) {
  1588. printk(KERN_DEBUG "mesh_done: result = %x, data_ptr=%d, buflen=%dn",
  1589.        cmd->result, ms->data_ptr, cmd->request_bufflen);
  1590. if ((cmd->cmnd[0] == 0 || cmd->cmnd[0] == 0x12 || cmd->cmnd[0] == 3)
  1591.     && cmd->request_buffer != 0) {
  1592. unsigned char *b = cmd->request_buffer;
  1593. printk(KERN_DEBUG "buffer = %x %x %x %x %x %x %x %xn",
  1594.        b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7]);
  1595. }
  1596. }
  1597. cmd->SCp.this_residual -= ms->data_ptr;
  1598. mesh_completed(ms, cmd);
  1599. }
  1600. if (start_next) {
  1601. out_8(&ms->mesh->sequence, SEQ_ENBRESEL);
  1602. udelay(1);
  1603. ms->phase = idle;
  1604. mesh_start(ms);
  1605. }
  1606. }
  1607. static void
  1608. mesh_completed(struct mesh_state *ms, Scsi_Cmnd *cmd)
  1609. {
  1610. #ifdef MESH_NEW_STYLE_EH
  1611. (*cmd->scsi_done)(cmd);
  1612. #else
  1613. if (ms->completed_q == NULL)
  1614. ms->completed_q = cmd;
  1615. else
  1616. ms->completed_qtail->host_scribble = (void *) cmd;
  1617. ms->completed_qtail = cmd;
  1618. cmd->host_scribble = NULL;
  1619. queue_task(&ms->tqueue, &tq_immediate);
  1620. mark_bh(IMMEDIATE_BH);
  1621. #endif /* MESH_NEW_STYLE_EH */
  1622. }
  1623. /*
  1624.  * Set up DMA commands for transferring data.
  1625.  */
  1626. static void
  1627. set_dma_cmds(struct mesh_state *ms, Scsi_Cmnd *cmd)
  1628. {
  1629. int i, dma_cmd, total, off, dtot;
  1630. struct scatterlist *scl;
  1631. struct dbdma_cmd *dcmds;
  1632. dma_cmd = ms->tgts[ms->conn_tgt].data_goes_out?
  1633. OUTPUT_MORE: INPUT_MORE;
  1634. dcmds = ms->dma_cmds;
  1635. dtot = 0;
  1636. if (cmd) {
  1637. cmd->SCp.this_residual = cmd->request_bufflen;
  1638. if (cmd->use_sg > 0) {
  1639. total = 0;
  1640. scl = (struct scatterlist *) cmd->buffer;
  1641. off = ms->data_ptr;
  1642. for (i = 0; i < cmd->use_sg; ++i, ++scl) {
  1643. total += scl->length;
  1644. if (off >= scl->length) {
  1645. off -= scl->length;
  1646. continue;
  1647. }
  1648. if (scl->length > 0xffff)
  1649. panic("mesh: scatterlist element >= 64k");
  1650. st_le16(&dcmds->req_count, scl->length - off);
  1651. st_le16(&dcmds->command, dma_cmd);
  1652. st_le32(&dcmds->phy_addr,
  1653. virt_to_phys(scl->address) + off);
  1654. dcmds->xfer_status = 0;
  1655. ++dcmds;
  1656. dtot += scl->length - off;
  1657. off = 0;
  1658. }
  1659. } else if (ms->data_ptr < cmd->request_bufflen) {
  1660. dtot = cmd->request_bufflen - ms->data_ptr;
  1661. if (dtot > 0xffff)
  1662. panic("mesh: transfer size >= 64k");
  1663. st_le16(&dcmds->req_count, dtot);
  1664. st_le32(&dcmds->phy_addr,
  1665. virt_to_phys(cmd->request_buffer) + ms->data_ptr);
  1666. dcmds->xfer_status = 0;
  1667. ++dcmds;
  1668. }
  1669. }
  1670. if (dtot == 0) {
  1671. /* Either the target has overrun our buffer,
  1672.    or the caller didn't provide a buffer. */
  1673. static char mesh_extra_buf[64];
  1674. dtot = sizeof(mesh_extra_buf);
  1675. st_le16(&dcmds->req_count, dtot);
  1676. st_le32(&dcmds->phy_addr, virt_to_phys(mesh_extra_buf));
  1677. dcmds->xfer_status = 0;
  1678. ++dcmds;
  1679. }
  1680. dma_cmd += OUTPUT_LAST - OUTPUT_MORE;
  1681. st_le16(&dcmds[-1].command, dma_cmd);
  1682. memset(dcmds, 0, sizeof(*dcmds));
  1683. st_le16(&dcmds->command, DBDMA_STOP);
  1684. ms->dma_count = dtot;
  1685. }
  1686. static void
  1687. halt_dma(struct mesh_state *ms)
  1688. {
  1689. volatile struct dbdma_regs *md = ms->dma;
  1690. volatile struct mesh_regs *mr = ms->mesh;
  1691. Scsi_Cmnd *cmd = ms->current_req;
  1692. int t, nb;
  1693. if (!ms->tgts[ms->conn_tgt].data_goes_out) {
  1694. /* wait a little while until the fifo drains */
  1695. t = 50;
  1696. while (t > 0 && mr->fifo_count != 0
  1697.        && (in_le32(&md->status) & ACTIVE) != 0) {
  1698. --t;
  1699. udelay(1);
  1700. }
  1701. }
  1702. out_le32(&md->control, RUN << 16); /* turn off RUN bit */
  1703. nb = (mr->count_hi << 8) + mr->count_lo;
  1704. dlog(ms, "halt_dma fc/count=%.6x",
  1705.      MKWORD(0, mr->fifo_count, 0, nb));
  1706. if (ms->tgts[ms->conn_tgt].data_goes_out)
  1707. nb += mr->fifo_count;
  1708. /* nb is the number of bytes not yet transferred
  1709.    to/from the target. */
  1710. ms->data_ptr -= nb;
  1711. dlog(ms, "data_ptr %x", ms->data_ptr);
  1712. if (ms->data_ptr < 0) {
  1713. printk(KERN_ERR "mesh: halt_dma: data_ptr=%d (nb=%d, ms=%p)n",
  1714.        ms->data_ptr, nb, ms);
  1715. ms->data_ptr = 0;
  1716. #ifdef MESH_DBG
  1717. dumplog(ms, ms->conn_tgt);
  1718. dumpslog(ms);
  1719. #endif /* MESH_DBG */
  1720. } else if (cmd && cmd->request_bufflen != 0 &&
  1721.    ms->data_ptr > cmd->request_bufflen) {
  1722. printk(KERN_DEBUG "mesh: target %d overrun, "
  1723.        "data_ptr=%x total=%x goes_out=%dn",
  1724.        ms->conn_tgt, ms->data_ptr, cmd->request_bufflen,
  1725.        ms->tgts[ms->conn_tgt].data_goes_out);
  1726. }
  1727. ms->dma_started = 0;
  1728. }
  1729. /*
  1730.  * Work out whether we expect data to go out from the host adaptor or into it.
  1731.  * (If this information is available from somewhere else in the scsi
  1732.  * code, somebody please let me know :-)
  1733.  */
  1734. static int
  1735. data_goes_out(Scsi_Cmnd *cmd)
  1736. {
  1737. switch (cmd->cmnd[0]) {
  1738. case CHANGE_DEFINITION: 
  1739. case COMPARE:   
  1740. case COPY:
  1741. case COPY_VERIFY:     
  1742. case FORMAT_UNIT:  
  1743. case LOG_SELECT:
  1744. case MEDIUM_SCAN:   
  1745. case MODE_SELECT:
  1746. case MODE_SELECT_10:
  1747. case REASSIGN_BLOCKS: 
  1748. case RESERVE:
  1749. case SEARCH_EQUAL:   
  1750. case SEARCH_EQUAL_12: 
  1751. case SEARCH_HIGH:  
  1752. case SEARCH_HIGH_12:  
  1753. case SEARCH_LOW:
  1754. case SEARCH_LOW_12:
  1755. case SEND_DIAGNOSTIC: 
  1756. case SEND_VOLUME_TAG:      
  1757. case SET_WINDOW: 
  1758. case UPDATE_BLOCK:
  1759. case WRITE_BUFFER:
  1760.   case WRITE_6:
  1761. case WRITE_10:
  1762. case WRITE_12:   
  1763. case WRITE_LONG:
  1764. case WRITE_LONG_2:      /* alternate code for WRITE_LONG */
  1765. case WRITE_SAME:
  1766. case WRITE_VERIFY:
  1767. case WRITE_VERIFY_12:
  1768. return 1;
  1769. default:
  1770. return 0;
  1771. }
  1772. }
  1773. #ifdef MESH_DBG
  1774. static inline u32 readtb(void)
  1775. {
  1776. u32 tb;
  1777. #ifdef DBG_USE_TB
  1778. /* Beware: if you enable this, it will crash on 601s. */
  1779. asm ("mftb %0" : "=r" (tb) : );
  1780. #else
  1781. tb = 0;
  1782. #endif
  1783. return tb;
  1784. }
  1785. static void dlog(struct mesh_state *ms, char *fmt, int a)
  1786. {
  1787. struct mesh_target *tp = &ms->tgts[ms->conn_tgt];
  1788. struct dbglog *tlp, *slp;
  1789. tlp = &tp->log[tp->log_ix];
  1790. slp = &ms->log[ms->log_ix];
  1791. tlp->fmt = fmt;
  1792. tlp->tb = readtb();
  1793. tlp->phase = (ms->msgphase << 4) + ms->phase;
  1794. tlp->bs0 = ms->mesh->bus_status0;
  1795. tlp->bs1 = ms->mesh->bus_status1;
  1796. tlp->tgt = ms->conn_tgt;
  1797. tlp->d = a;
  1798. *slp = *tlp;
  1799. if (++tp->log_ix >= N_DBG_LOG)
  1800. tp->log_ix = 0;
  1801. if (tp->n_log < N_DBG_LOG)
  1802. ++tp->n_log;
  1803. if (++ms->log_ix >= N_DBG_SLOG)
  1804. ms->log_ix = 0;
  1805. if (ms->n_log < N_DBG_SLOG)
  1806. ++ms->n_log;
  1807. }
  1808. static void dumplog(struct mesh_state *ms, int t)
  1809. {
  1810. struct mesh_target *tp = &ms->tgts[t];
  1811. struct dbglog *lp;
  1812. int i;
  1813. if (tp->n_log == 0)
  1814. return;
  1815. i = tp->log_ix - tp->n_log;
  1816. if (i < 0)
  1817. i += N_DBG_LOG;
  1818. tp->n_log = 0;
  1819. do {
  1820. lp = &tp->log[i];
  1821. printk(KERN_DEBUG "mesh log %d: bs=%.2x%.2x ph=%.2x ",
  1822.        t, lp->bs1, lp->bs0, lp->phase);
  1823. #ifdef DBG_USE_TB
  1824. printk("tb=%10u ", lp->tb);
  1825. #endif
  1826. printk(lp->fmt, lp->d);
  1827. printk("n");
  1828. if (++i >= N_DBG_LOG)
  1829. i = 0;
  1830. } while (i != tp->log_ix);
  1831. }
  1832. static void dumpslog(struct mesh_state *ms)
  1833. {
  1834. struct dbglog *lp;
  1835. int i;
  1836. if (ms->n_log == 0)
  1837. return;
  1838. i = ms->log_ix - ms->n_log;
  1839. if (i < 0)
  1840. i += N_DBG_SLOG;
  1841. ms->n_log = 0;
  1842. do {
  1843. lp = &ms->log[i];
  1844. printk(KERN_DEBUG "mesh log: bs=%.2x%.2x ph=%.2x t%d ",
  1845.        lp->bs1, lp->bs0, lp->phase, lp->tgt);
  1846. #ifdef DBG_USE_TB
  1847. printk("tb=%10u ", lp->tb);
  1848. #endif
  1849. printk(lp->fmt, lp->d);
  1850. printk("n");
  1851. if (++i >= N_DBG_SLOG)
  1852. i = 0;
  1853. } while (i != ms->log_ix);
  1854. }
  1855. #endif /* MESH_DBG */
  1856. static Scsi_Host_Template driver_template = SCSI_MESH;
  1857. #include "scsi_module.c"