blob: a68d6257bc681c46c4a3ff37756fd319e630d6bc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * atari_scsi.c -- Device dependent functions for the Atari generic SCSI port
3 *
4 * Copyright 1994 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
5 *
6 * Loosely based on the work of Robert De Vries' team and added:
7 * - working real DMA
8 * - Falcon support (untested yet!) ++bjoern fixed and now it works
9 * - lots of extensions and bug fixes.
10 *
11 * This file is subject to the terms and conditions of the GNU General Public
12 * License. See the file COPYING in the main directory of this archive
13 * for more details.
14 *
15 */
16
17
18/**************************************************************************/
19/* */
20/* Notes for Falcon SCSI: */
21/* ---------------------- */
22/* */
23/* Since the Falcon SCSI uses the ST-DMA chip, that is shared among */
24/* several device drivers, locking and unlocking the access to this */
25/* chip is required. But locking is not possible from an interrupt, */
26/* since it puts the process to sleep if the lock is not available. */
27/* This prevents "late" locking of the DMA chip, i.e. locking it just */
28/* before using it, since in case of disconnection-reconnection */
29/* commands, the DMA is started from the reselection interrupt. */
30/* */
31/* Two possible schemes for ST-DMA-locking would be: */
32/* 1) The lock is taken for each command separately and disconnecting */
33/* is forbidden (i.e. can_queue = 1). */
34/* 2) The DMA chip is locked when the first command comes in and */
35/* released when the last command is finished and all queues are */
36/* empty. */
37/* The first alternative would result in bad performance, since the */
38/* interleaving of commands would not be used. The second is unfair to */
39/* other drivers using the ST-DMA, because the queues will seldom be */
40/* totally empty if there is a lot of disk traffic. */
41/* */
42/* For this reasons I decided to employ a more elaborate scheme: */
43/* - First, we give up the lock every time we can (for fairness), this */
44/* means every time a command finishes and there are no other commands */
45/* on the disconnected queue. */
46/* - If there are others waiting to lock the DMA chip, we stop */
47/* issuing commands, i.e. moving them onto the issue queue. */
48/* Because of that, the disconnected queue will run empty in a */
49/* while. Instead we go to sleep on a 'fairness_queue'. */
50/* - If the lock is released, all processes waiting on the fairness */
51/* queue will be woken. The first of them tries to re-lock the DMA, */
52/* the others wait for the first to finish this task. After that, */
53/* they can all run on and do their commands... */
54/* This sounds complicated (and it is it :-(), but it seems to be a */
55/* good compromise between fairness and performance: As long as no one */
56/* else wants to work with the ST-DMA chip, SCSI can go along as */
57/* usual. If now someone else comes, this behaviour is changed to a */
58/* "fairness mode": just already initiated commands are finished and */
59/* then the lock is released. The other one waiting will probably win */
60/* the race for locking the DMA, since it was waiting for longer. And */
61/* after it has finished, SCSI can go ahead again. Finally: I hope I */
62/* have not produced any deadlock possibilities! */
63/* */
64/**************************************************************************/
65
66
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/module.h>
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define AUTOSENSE
71/* For the Atari version, use only polled IO or REAL_DMA */
72#define REAL_DMA
73/* Support tagged queuing? (on devices that are able to... :-) */
74#define SUPPORT_TAGS
75#define MAX_TAGS 32
76
77#include <linux/types.h>
78#include <linux/stddef.h>
79#include <linux/ctype.h>
80#include <linux/delay.h>
81#include <linux/mm.h>
82#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/interrupt.h>
84#include <linux/init.h>
85#include <linux/nvram.h>
86#include <linux/bitops.h>
Arnd Bergmanneff9cf82014-03-01 20:51:03 +130087#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#include <asm/setup.h>
90#include <asm/atarihw.h>
91#include <asm/atariints.h>
92#include <asm/page.h>
93#include <asm/pgtable.h>
94#include <asm/irq.h>
95#include <asm/traps.h>
96
97#include "scsi.h"
98#include <scsi/scsi_host.h>
99#include "atari_scsi.h"
100#include "NCR5380.h"
101#include <asm/atari_stdma.h>
102#include <asm/atari_stram.h>
103#include <asm/io.h>
104
105#include <linux/stat.h>
106
107#define IS_A_TT() ATARIHW_PRESENT(TT_SCSI)
108
109#define SCSI_DMA_WRITE_P(elt,val) \
110 do { \
111 unsigned long v = val; \
112 tt_scsi_dma.elt##_lo = v & 0xff; \
113 v >>= 8; \
114 tt_scsi_dma.elt##_lmd = v & 0xff; \
115 v >>= 8; \
116 tt_scsi_dma.elt##_hmd = v & 0xff; \
117 v >>= 8; \
118 tt_scsi_dma.elt##_hi = v & 0xff; \
119 } while(0)
120
121#define SCSI_DMA_READ_P(elt) \
122 (((((((unsigned long)tt_scsi_dma.elt##_hi << 8) | \
123 (unsigned long)tt_scsi_dma.elt##_hmd) << 8) | \
124 (unsigned long)tt_scsi_dma.elt##_lmd) << 8) | \
125 (unsigned long)tt_scsi_dma.elt##_lo)
126
127
128static inline void SCSI_DMA_SETADR(unsigned long adr)
129{
130 st_dma.dma_lo = (unsigned char)adr;
131 MFPDELAY();
132 adr >>= 8;
133 st_dma.dma_md = (unsigned char)adr;
134 MFPDELAY();
135 adr >>= 8;
136 st_dma.dma_hi = (unsigned char)adr;
137 MFPDELAY();
138}
139
140static inline unsigned long SCSI_DMA_GETADR(void)
141{
142 unsigned long adr;
143 adr = st_dma.dma_lo;
144 MFPDELAY();
145 adr |= (st_dma.dma_md & 0xff) << 8;
146 MFPDELAY();
147 adr |= (st_dma.dma_hi & 0xff) << 16;
148 MFPDELAY();
149 return adr;
150}
151
152static inline void ENABLE_IRQ(void)
153{
154 if (IS_A_TT())
155 atari_enable_irq(IRQ_TT_MFP_SCSI);
156 else
157 atari_enable_irq(IRQ_MFP_FSCSI);
158}
159
160static inline void DISABLE_IRQ(void)
161{
162 if (IS_A_TT())
163 atari_disable_irq(IRQ_TT_MFP_SCSI);
164 else
165 atari_disable_irq(IRQ_MFP_FSCSI);
166}
167
168
169#define HOSTDATA_DMALEN (((struct NCR5380_hostdata *) \
170 (atari_scsi_host->hostdata))->dma_len)
171
172/* Time (in jiffies) to wait after a reset; the SCSI standard calls for 250ms,
173 * we usually do 0.5s to be on the safe side. But Toshiba CD-ROMs once more
174 * need ten times the standard value... */
175#ifndef CONFIG_ATARI_SCSI_TOSHIBA_DELAY
176#define AFTER_RESET_DELAY (HZ/2)
177#else
178#define AFTER_RESET_DELAY (5*HZ/2)
179#endif
180
181/***************************** Prototypes *****************************/
182
183#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +0200184static void atari_scsi_fetch_restbytes(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200186static irqreturn_t scsi_tt_intr(int irq, void *dummy);
187static irqreturn_t scsi_falcon_intr(int irq, void *dummy);
188static void falcon_release_lock_if_possible(struct NCR5380_hostdata *hostdata);
189static void falcon_get_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#ifdef CONFIG_ATARI_SCSI_RESET_BOOT
Roman Zippelc28bda22007-05-01 22:32:36 +0200191static void atari_scsi_reset_boot(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200193static unsigned char atari_scsi_tt_reg_read(unsigned char reg);
194static void atari_scsi_tt_reg_write(unsigned char reg, unsigned char value);
195static unsigned char atari_scsi_falcon_reg_read(unsigned char reg);
196static void atari_scsi_falcon_reg_write(unsigned char reg, unsigned char value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/************************* End of Prototypes **************************/
199
200
Roman Zippelc28bda22007-05-01 22:32:36 +0200201static struct Scsi_Host *atari_scsi_host;
202static unsigned char (*atari_scsi_reg_read)(unsigned char reg);
203static void (*atari_scsi_reg_write)(unsigned char reg, unsigned char value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205#ifdef REAL_DMA
206static unsigned long atari_dma_residual, atari_dma_startaddr;
207static short atari_dma_active;
208/* pointer to the dribble buffer */
Roman Zippelc28bda22007-05-01 22:32:36 +0200209static char *atari_dma_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/* precalculated physical address of the dribble buffer */
211static unsigned long atari_dma_phys_buffer;
212/* != 0 tells the Falcon int handler to copy data from the dribble buffer */
213static char *atari_dma_orig_addr;
214/* size of the dribble buffer; 4k seems enough, since the Falcon cannot use
215 * scatter-gather anyway, so most transfers are 1024 byte only. In the rare
216 * cases where requests to physical contiguous buffers have been merged, this
217 * request is <= 4k (one page). So I don't think we have to split transfers
218 * just due to this buffer size...
219 */
220#define STRAM_BUFFER_SIZE (4096)
221/* mask for address bits that can't be used with the ST-DMA */
222static unsigned long atari_dma_stram_mask;
223#define STRAM_ADDR(a) (((a) & atari_dma_stram_mask) == 0)
224/* number of bytes to cut from a transfer to handle NCR overruns */
Roman Zippelc28bda22007-05-01 22:32:36 +0200225static int atari_read_overruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#endif
227
228static int setup_can_queue = -1;
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800229module_param(setup_can_queue, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int setup_cmd_per_lun = -1;
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800231module_param(setup_cmd_per_lun, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static int setup_sg_tablesize = -1;
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800233module_param(setup_sg_tablesize, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#ifdef SUPPORT_TAGS
235static int setup_use_tagged_queuing = -1;
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800236module_param(setup_use_tagged_queuing, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237#endif
238static int setup_hostid = -1;
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800239module_param(setup_hostid, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#if defined(REAL_DMA)
243
Roman Zippelc28bda22007-05-01 22:32:36 +0200244static int scsi_dma_is_ignored_buserr(unsigned char dma_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 int i;
Roman Zippelc28bda22007-05-01 22:32:36 +0200247 unsigned long addr = SCSI_DMA_READ_P(dma_addr), end_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (dma_stat & 0x01) {
250
251 /* A bus error happens when DMA-ing from the last page of a
252 * physical memory chunk (DMA prefetch!), but that doesn't hurt.
253 * Check for this case:
254 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200255
256 for (i = 0; i < m68k_num_memory; ++i) {
257 end_addr = m68k_memory[i].addr + m68k_memory[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (end_addr <= addr && addr <= end_addr + 4)
Roman Zippelc28bda22007-05-01 22:32:36 +0200259 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261 }
Roman Zippelc28bda22007-05-01 22:32:36 +0200262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265
266#if 0
267/* Dead code... wasn't called anyway :-) and causes some trouble, because at
268 * end-of-DMA, both SCSI ints are triggered simultaneously, so the NCR int has
269 * to clear the DMA int pending bit before it allows other level 6 interrupts.
270 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200271static void scsi_dma_buserr(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Roman Zippelc28bda22007-05-01 22:32:36 +0200273 unsigned char dma_stat = tt_scsi_dma.dma_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* Don't do anything if a NCR interrupt is pending. Probably it's just
276 * masked... */
Roman Zippelc28bda22007-05-01 22:32:36 +0200277 if (atari_irq_pending(IRQ_TT_MFP_SCSI))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return;
Roman Zippelc28bda22007-05-01 22:32:36 +0200279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 printk("Bad SCSI DMA interrupt! dma_addr=0x%08lx dma_stat=%02x dma_cnt=%08lx\n",
281 SCSI_DMA_READ_P(dma_addr), dma_stat, SCSI_DMA_READ_P(dma_cnt));
282 if (dma_stat & 0x80) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200283 if (!scsi_dma_is_ignored_buserr(dma_stat))
284 printk("SCSI DMA bus error -- bad DMA programming!\n");
285 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* Under normal circumstances we never should get to this point,
287 * since both interrupts are triggered simultaneously and the 5380
288 * int has higher priority. When this irq is handled, that DMA
289 * interrupt is cleared. So a warning message is printed here.
290 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200291 printk("SCSI DMA intr ?? -- this shouldn't happen!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293}
294#endif
295
296#endif
297
298
Roman Zippelc28bda22007-05-01 22:32:36 +0200299static irqreturn_t scsi_tt_intr(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301#ifdef REAL_DMA
302 int dma_stat;
303
304 dma_stat = tt_scsi_dma.dma_ctrl;
305
Finn Thaind65e6342014-03-18 11:42:20 +1100306 dprintk(NDEBUG_INTR, "scsi%d: NCR5380 interrupt, DMA status = %02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 atari_scsi_host->host_no, dma_stat & 0xff);
308
309 /* Look if it was the DMA that has interrupted: First possibility
310 * is that a bus error occurred...
311 */
312 if (dma_stat & 0x80) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200313 if (!scsi_dma_is_ignored_buserr(dma_stat)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 printk(KERN_ERR "SCSI DMA caused bus error near 0x%08lx\n",
315 SCSI_DMA_READ_P(dma_addr));
316 printk(KERN_CRIT "SCSI DMA bus error -- bad DMA programming!");
317 }
318 }
319
320 /* If the DMA is active but not finished, we have the case
321 * that some other 5380 interrupt occurred within the DMA transfer.
322 * This means we have residual bytes, if the desired end address
323 * is not yet reached. Maybe we have to fetch some bytes from the
324 * rest data register, too. The residual must be calculated from
325 * the address pointer, not the counter register, because only the
326 * addr reg counts bytes not yet written and pending in the rest
327 * data reg!
328 */
329 if ((dma_stat & 0x02) && !(dma_stat & 0x40)) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200330 atari_dma_residual = HOSTDATA_DMALEN - (SCSI_DMA_READ_P(dma_addr) - atari_dma_startaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Finn Thaind65e6342014-03-18 11:42:20 +1100332 dprintk(NDEBUG_DMA, "SCSI DMA: There are %ld residual bytes.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 atari_dma_residual);
334
335 if ((signed int)atari_dma_residual < 0)
336 atari_dma_residual = 0;
337 if ((dma_stat & 1) == 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200338 /*
339 * After read operations, we maybe have to
340 * transport some rest bytes
341 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 atari_scsi_fetch_restbytes();
Roman Zippelc28bda22007-05-01 22:32:36 +0200343 } else {
344 /*
345 * There seems to be a nasty bug in some SCSI-DMA/NCR
346 * combinations: If a target disconnects while a write
347 * operation is going on, the address register of the
348 * DMA may be a few bytes farer than it actually read.
349 * This is probably due to DMA prefetching and a delay
350 * between DMA and NCR. Experiments showed that the
351 * dma_addr is 9 bytes to high, but this could vary.
352 * The problem is, that the residual is thus calculated
353 * wrong and the next transfer will start behind where
354 * it should. So we round up the residual to the next
355 * multiple of a sector size, if it isn't already a
356 * multiple and the originally expected transfer size
357 * was. The latter condition is there to ensure that
358 * the correction is taken only for "real" data
359 * transfers and not for, e.g., the parameters of some
360 * other command. These shouldn't disconnect anyway.
361 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (atari_dma_residual & 0x1ff) {
Finn Thaind65e6342014-03-18 11:42:20 +1100363 dprintk(NDEBUG_DMA, "SCSI DMA: DMA bug corrected, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 "difference %ld bytes\n",
365 512 - (atari_dma_residual & 0x1ff));
366 atari_dma_residual = (atari_dma_residual + 511) & ~0x1ff;
367 }
368 }
369 tt_scsi_dma.dma_ctrl = 0;
370 }
371
372 /* If the DMA is finished, fetch the rest bytes and turn it off */
373 if (dma_stat & 0x40) {
374 atari_dma_residual = 0;
375 if ((dma_stat & 1) == 0)
376 atari_scsi_fetch_restbytes();
377 tt_scsi_dma.dma_ctrl = 0;
378 }
379
380#endif /* REAL_DMA */
Roman Zippelc28bda22007-05-01 22:32:36 +0200381
Jeff Garzik1e641662007-11-11 19:52:05 -0500382 NCR5380_intr(irq, dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384#if 0
385 /* To be sure the int is not masked */
Roman Zippelc28bda22007-05-01 22:32:36 +0200386 atari_enable_irq(IRQ_TT_MFP_SCSI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#endif
388 return IRQ_HANDLED;
389}
390
391
Roman Zippelc28bda22007-05-01 22:32:36 +0200392static irqreturn_t scsi_falcon_intr(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394#ifdef REAL_DMA
395 int dma_stat;
396
397 /* Turn off DMA and select sector counter register before
398 * accessing the status register (Atari recommendation!)
399 */
400 st_dma.dma_mode_status = 0x90;
401 dma_stat = st_dma.dma_mode_status;
402
403 /* Bit 0 indicates some error in the DMA process... don't know
404 * what happened exactly (no further docu).
405 */
406 if (!(dma_stat & 0x01)) {
407 /* DMA error */
408 printk(KERN_CRIT "SCSI DMA error near 0x%08lx!\n", SCSI_DMA_GETADR());
409 }
410
411 /* If the DMA was active, but now bit 1 is not clear, it is some
412 * other 5380 interrupt that finishes the DMA transfer. We have to
413 * calculate the number of residual bytes and give a warning if
414 * bytes are stuck in the ST-DMA fifo (there's no way to reach them!)
415 */
416 if (atari_dma_active && (dma_stat & 0x02)) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200417 unsigned long transferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 transferred = SCSI_DMA_GETADR() - atari_dma_startaddr;
420 /* The ST-DMA address is incremented in 2-byte steps, but the
421 * data are written only in 16-byte chunks. If the number of
422 * transferred bytes is not divisible by 16, the remainder is
423 * lost somewhere in outer space.
424 */
425 if (transferred & 15)
426 printk(KERN_ERR "SCSI DMA error: %ld bytes lost in "
427 "ST-DMA fifo\n", transferred & 15);
428
429 atari_dma_residual = HOSTDATA_DMALEN - transferred;
Finn Thaind65e6342014-03-18 11:42:20 +1100430 dprintk(NDEBUG_DMA, "SCSI DMA: There are %ld residual bytes.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 atari_dma_residual);
Roman Zippelc28bda22007-05-01 22:32:36 +0200432 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 atari_dma_residual = 0;
434 atari_dma_active = 0;
435
436 if (atari_dma_orig_addr) {
437 /* If the dribble buffer was used on a read operation, copy the DMA-ed
438 * data to the original destination address.
439 */
440 memcpy(atari_dma_orig_addr, phys_to_virt(atari_dma_startaddr),
441 HOSTDATA_DMALEN - atari_dma_residual);
442 atari_dma_orig_addr = NULL;
443 }
444
445#endif /* REAL_DMA */
446
Jeff Garzik1e641662007-11-11 19:52:05 -0500447 NCR5380_intr(irq, dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return IRQ_HANDLED;
449}
450
451
452#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +0200453static void atari_scsi_fetch_restbytes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 int nr;
456 char *src, *dst;
457 unsigned long phys_dst;
458
459 /* fetch rest bytes in the DMA register */
460 phys_dst = SCSI_DMA_READ_P(dma_addr);
461 nr = phys_dst & 3;
462 if (nr) {
463 /* there are 'nr' bytes left for the last long address
464 before the DMA pointer */
465 phys_dst ^= nr;
Finn Thaind65e6342014-03-18 11:42:20 +1100466 dprintk(NDEBUG_DMA, "SCSI DMA: there are %d rest bytes for phys addr 0x%08lx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 nr, phys_dst);
468 /* The content of the DMA pointer is a physical address! */
469 dst = phys_to_virt(phys_dst);
Finn Thaind65e6342014-03-18 11:42:20 +1100470 dprintk(NDEBUG_DMA, " = virt addr %p\n", dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 for (src = (char *)&tt_scsi_dma.dma_restdata; nr != 0; --nr)
472 *dst++ = *src++;
473 }
474}
475#endif /* REAL_DMA */
476
477
478static int falcon_got_lock = 0;
479static DECLARE_WAIT_QUEUE_HEAD(falcon_fairness_wait);
480static int falcon_trying_lock = 0;
481static DECLARE_WAIT_QUEUE_HEAD(falcon_try_wait);
482static int falcon_dont_release = 0;
483
484/* This function releases the lock on the DMA chip if there is no
485 * connected command and the disconnected queue is empty. On
486 * releasing, instances of falcon_get_lock are awoken, that put
487 * themselves to sleep for fairness. They can now try to get the lock
488 * again (but others waiting longer more probably will win).
489 */
490
Roman Zippelc28bda22007-05-01 22:32:36 +0200491static void falcon_release_lock_if_possible(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 unsigned long flags;
Roman Zippelc28bda22007-05-01 22:32:36 +0200494
495 if (IS_A_TT())
496 return;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 local_irq_save(flags);
499
Roman Zippelc28bda22007-05-01 22:32:36 +0200500 if (falcon_got_lock && !hostdata->disconnected_queue &&
501 !hostdata->issue_queue && !hostdata->connected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (falcon_dont_release) {
504#if 0
505 printk("WARNING: Lock release not allowed. Ignored\n");
506#endif
507 local_irq_restore(flags);
508 return;
509 }
510 falcon_got_lock = 0;
511 stdma_release();
Roman Zippelc28bda22007-05-01 22:32:36 +0200512 wake_up(&falcon_fairness_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514
515 local_irq_restore(flags);
516}
517
518/* This function manages the locking of the ST-DMA.
519 * If the DMA isn't locked already for SCSI, it tries to lock it by
520 * calling stdma_lock(). But if the DMA is locked by the SCSI code and
521 * there are other drivers waiting for the chip, we do not issue the
522 * command immediately but wait on 'falcon_fairness_queue'. We will be
523 * waked up when the DMA is unlocked by some SCSI interrupt. After that
524 * we try to get the lock again.
525 * But we must be prepared that more than one instance of
526 * falcon_get_lock() is waiting on the fairness queue. They should not
527 * try all at once to call stdma_lock(), one is enough! For that, the
528 * first one sets 'falcon_trying_lock', others that see that variable
529 * set wait on the queue 'falcon_try_wait'.
530 * Complicated, complicated.... Sigh...
531 */
532
Roman Zippelc28bda22007-05-01 22:32:36 +0200533static void falcon_get_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 unsigned long flags;
536
Roman Zippelc28bda22007-05-01 22:32:36 +0200537 if (IS_A_TT())
538 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 local_irq_save(flags);
541
Arnd Bergmanneff9cf82014-03-01 20:51:03 +1300542 wait_event_cmd(falcon_fairness_wait,
543 in_interrupt() || !falcon_got_lock || !stdma_others_waiting(),
544 local_irq_restore(flags),
545 local_irq_save(flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 while (!falcon_got_lock) {
Michael Schmitzfb810d12007-05-01 22:32:35 +0200548 if (in_irq())
Roman Zippelc28bda22007-05-01 22:32:36 +0200549 panic("Falcon SCSI hasn't ST-DMA lock in interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (!falcon_trying_lock) {
551 falcon_trying_lock = 1;
552 stdma_lock(scsi_falcon_intr, NULL);
553 falcon_got_lock = 1;
554 falcon_trying_lock = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +0200555 wake_up(&falcon_try_wait);
556 } else {
Arnd Bergmanneff9cf82014-03-01 20:51:03 +1300557 wait_event_cmd(falcon_try_wait,
558 falcon_got_lock && !falcon_trying_lock,
559 local_irq_restore(flags),
560 local_irq_save(flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
Roman Zippelc28bda22007-05-01 22:32:36 +0200562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 local_irq_restore(flags);
565 if (!falcon_got_lock)
566 panic("Falcon SCSI: someone stole the lock :-(\n");
567}
568
569
Geert Uytterhoeven107b5d52011-06-12 20:48:33 +0200570static int __init atari_scsi_detect(struct scsi_host_template *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 static int called = 0;
573 struct Scsi_Host *instance;
574
575 if (!MACH_IS_ATARI ||
576 (!ATARIHW_PRESENT(ST_SCSI) && !ATARIHW_PRESENT(TT_SCSI)) ||
577 called)
Roman Zippelc28bda22007-05-01 22:32:36 +0200578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 host->proc_name = "Atari";
581
582 atari_scsi_reg_read = IS_A_TT() ? atari_scsi_tt_reg_read :
583 atari_scsi_falcon_reg_read;
584 atari_scsi_reg_write = IS_A_TT() ? atari_scsi_tt_reg_write :
585 atari_scsi_falcon_reg_write;
586
587 /* setup variables */
588 host->can_queue =
589 (setup_can_queue > 0) ? setup_can_queue :
590 IS_A_TT() ? ATARI_TT_CAN_QUEUE : ATARI_FALCON_CAN_QUEUE;
591 host->cmd_per_lun =
592 (setup_cmd_per_lun > 0) ? setup_cmd_per_lun :
593 IS_A_TT() ? ATARI_TT_CMD_PER_LUN : ATARI_FALCON_CMD_PER_LUN;
594 /* Force sg_tablesize to 0 on a Falcon! */
595 host->sg_tablesize =
596 !IS_A_TT() ? ATARI_FALCON_SG_TABLESIZE :
597 (setup_sg_tablesize >= 0) ? setup_sg_tablesize : ATARI_TT_SG_TABLESIZE;
598
599 if (setup_hostid >= 0)
600 host->this_id = setup_hostid;
601 else {
602 /* use 7 as default */
603 host->this_id = 7;
604 /* Test if a host id is set in the NVRam */
605 if (ATARIHW_PRESENT(TT_CLK) && nvram_check_checksum()) {
606 unsigned char b = nvram_read_byte( 14 );
607 /* Arbitration enabled? (for TOS) If yes, use configured host ID */
608 if (b & 0x80)
609 host->this_id = b & 7;
610 }
611 }
612
613#ifdef SUPPORT_TAGS
614 if (setup_use_tagged_queuing < 0)
615 setup_use_tagged_queuing = DEFAULT_USE_TAGGED_QUEUING;
616#endif
617#ifdef REAL_DMA
618 /* If running on a Falcon and if there's TT-Ram (i.e., more than one
619 * memory block, since there's always ST-Ram in a Falcon), then allocate a
620 * STRAM_BUFFER_SIZE byte dribble buffer for transfers from/to alternative
621 * Ram.
622 */
623 if (MACH_IS_ATARI && ATARIHW_PRESENT(ST_SCSI) &&
624 !ATARIHW_PRESENT(EXTD_DMA) && m68k_num_memory > 1) {
625 atari_dma_buffer = atari_stram_alloc(STRAM_BUFFER_SIZE, "SCSI");
626 if (!atari_dma_buffer) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200627 printk(KERN_ERR "atari_scsi_detect: can't allocate ST-RAM "
628 "double buffer\n");
629 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
Michael Schmitza19f8162014-03-31 21:06:08 +1300631 atari_dma_phys_buffer = atari_stram_to_phys(atari_dma_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 atari_dma_orig_addr = 0;
633 }
634#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200635 instance = scsi_register(host, sizeof(struct NCR5380_hostdata));
636 if (instance == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 atari_stram_free(atari_dma_buffer);
638 atari_dma_buffer = 0;
639 return 0;
640 }
641 atari_scsi_host = instance;
Roman Zippelc28bda22007-05-01 22:32:36 +0200642 /*
643 * Set irq to 0, to avoid that the mid-level code disables our interrupt
644 * during queue_command calls. This is completely unnecessary, and even
645 * worse causes bad problems on the Falcon, where the int is shared with
646 * IDE and floppy!
647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 instance->irq = 0;
649
650#ifdef CONFIG_ATARI_SCSI_RESET_BOOT
651 atari_scsi_reset_boot();
652#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200653 NCR5380_init(instance, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 if (IS_A_TT()) {
656
657 /* This int is actually "pseudo-slow", i.e. it acts like a slow
658 * interrupt after having cleared the pending flag for the DMA
659 * interrupt. */
660 if (request_irq(IRQ_TT_MFP_SCSI, scsi_tt_intr, IRQ_TYPE_SLOW,
Jeff Garzik1e641662007-11-11 19:52:05 -0500661 "SCSI NCR5380", instance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 printk(KERN_ERR "atari_scsi_detect: cannot allocate irq %d, aborting",IRQ_TT_MFP_SCSI);
663 scsi_unregister(atari_scsi_host);
664 atari_stram_free(atari_dma_buffer);
665 atari_dma_buffer = 0;
666 return 0;
667 }
668 tt_mfp.active_edge |= 0x80; /* SCSI int on L->H */
669#ifdef REAL_DMA
670 tt_scsi_dma.dma_ctrl = 0;
671 atari_dma_residual = 0;
Adrian Bunk29c8a242008-10-13 21:58:59 +0200672
673 if (MACH_IS_MEDUSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* While the read overruns (described by Drew Eckhardt in
675 * NCR5380.c) never happened on TTs, they do in fact on the Medusa
676 * (This was the cause why SCSI didn't work right for so long
677 * there.) Since handling the overruns slows down a bit, I turned
678 * the #ifdef's into a runtime condition.
679 *
680 * In principle it should be sufficient to do max. 1 byte with
681 * PIO, but there is another problem on the Medusa with the DMA
682 * rest data register. So 'atari_read_overruns' is currently set
683 * to 4 to avoid having transfers that aren't a multiple of 4. If
684 * the rest data bug is fixed, this can be lowered to 1.
685 */
686 atari_read_overruns = 4;
Roman Zippelc28bda22007-05-01 22:32:36 +0200687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#endif /*REAL_DMA*/
Roman Zippelc28bda22007-05-01 22:32:36 +0200689 } else { /* ! IS_A_TT */
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /* Nothing to do for the interrupt: the ST-DMA is initialized
692 * already by atari_init_INTS()
693 */
694
695#ifdef REAL_DMA
696 atari_dma_residual = 0;
697 atari_dma_active = 0;
698 atari_dma_stram_mask = (ATARIHW_PRESENT(EXTD_DMA) ? 0x00000000
699 : 0xff000000);
700#endif
701 }
702
703 printk(KERN_INFO "scsi%d: options CAN_QUEUE=%d CMD_PER_LUN=%d SCAT-GAT=%d "
704#ifdef SUPPORT_TAGS
705 "TAGGED-QUEUING=%s "
706#endif
707 "HOSTID=%d",
708 instance->host_no, instance->hostt->can_queue,
709 instance->hostt->cmd_per_lun,
710 instance->hostt->sg_tablesize,
711#ifdef SUPPORT_TAGS
712 setup_use_tagged_queuing ? "yes" : "no",
713#endif
714 instance->hostt->this_id );
Roman Zippelc28bda22007-05-01 22:32:36 +0200715 NCR5380_print_options(instance);
716 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 called = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +0200719 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Geert Uytterhoeven107b5d52011-06-12 20:48:33 +0200722static int atari_scsi_release(struct Scsi_Host *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 if (IS_A_TT())
Jeff Garzik1e641662007-11-11 19:52:05 -0500725 free_irq(IRQ_TT_MFP_SCSI, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (atari_dma_buffer)
Roman Zippelc28bda22007-05-01 22:32:36 +0200727 atari_stram_free(atari_dma_buffer);
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200728 NCR5380_exit(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return 1;
730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Geert Uytterhoeven7b54e432012-03-18 11:54:40 +0100732#ifndef MODULE
733static int __init atari_scsi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 /* Format of atascsi parameter is:
736 * atascsi=<can_queue>,<cmd_per_lun>,<sg_tablesize>,<hostid>,<use_tags>
737 * Defaults depend on TT or Falcon, hostid determined at run time.
738 * Negative values mean don't change.
739 */
Geert Uytterhoeven7b54e432012-03-18 11:54:40 +0100740 int ints[6];
741
742 get_options(str, ARRAY_SIZE(ints), ints);
Roman Zippelc28bda22007-05-01 22:32:36 +0200743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (ints[0] < 1) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200745 printk("atari_scsi_setup: no arguments!\n");
Geert Uytterhoeven7b54e432012-03-18 11:54:40 +0100746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
749 if (ints[0] >= 1) {
750 if (ints[1] > 0)
751 /* no limits on this, just > 0 */
752 setup_can_queue = ints[1];
753 }
754 if (ints[0] >= 2) {
755 if (ints[2] > 0)
756 setup_cmd_per_lun = ints[2];
757 }
758 if (ints[0] >= 3) {
759 if (ints[3] >= 0) {
760 setup_sg_tablesize = ints[3];
761 /* Must be <= SG_ALL (255) */
762 if (setup_sg_tablesize > SG_ALL)
763 setup_sg_tablesize = SG_ALL;
764 }
765 }
766 if (ints[0] >= 4) {
767 /* Must be between 0 and 7 */
768 if (ints[4] >= 0 && ints[4] <= 7)
769 setup_hostid = ints[4];
770 else if (ints[4] > 7)
Roman Zippelc28bda22007-05-01 22:32:36 +0200771 printk("atari_scsi_setup: invalid host ID %d !\n", ints[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773#ifdef SUPPORT_TAGS
774 if (ints[0] >= 5) {
775 if (ints[5] >= 0)
776 setup_use_tagged_queuing = !!ints[5];
777 }
778#endif
Geert Uytterhoeven7b54e432012-03-18 11:54:40 +0100779
780 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
Geert Uytterhoeven7b54e432012-03-18 11:54:40 +0100783__setup("atascsi=", atari_scsi_setup);
784#endif /* !MODULE */
785
Roman Zippelc28bda22007-05-01 22:32:36 +0200786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787#ifdef CONFIG_ATARI_SCSI_RESET_BOOT
788static void __init atari_scsi_reset_boot(void)
789{
790 unsigned long end;
Roman Zippelc28bda22007-05-01 22:32:36 +0200791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /*
793 * Do a SCSI reset to clean up the bus during initialization. No messing
794 * with the queues, interrupts, or locks necessary here.
795 */
796
Roman Zippelc28bda22007-05-01 22:32:36 +0200797 printk("Atari SCSI: resetting the SCSI bus...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /* get in phase */
Roman Zippelc28bda22007-05-01 22:32:36 +0200800 NCR5380_write(TARGET_COMMAND_REG,
801 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /* assert RST */
Roman Zippelc28bda22007-05-01 22:32:36 +0200804 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* The min. reset hold time is 25us, so 40us should be enough */
Roman Zippelc28bda22007-05-01 22:32:36 +0200806 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* reset RST and interrupt */
Roman Zippelc28bda22007-05-01 22:32:36 +0200808 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
809 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 end = jiffies + AFTER_RESET_DELAY;
812 while (time_before(jiffies, end))
813 barrier();
814
Roman Zippelc28bda22007-05-01 22:32:36 +0200815 printk(" done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817#endif
818
819
Geert Uytterhoeven107b5d52011-06-12 20:48:33 +0200820static const char *atari_scsi_info(struct Scsi_Host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 /* atari_scsi_detect() is verbose enough... */
823 static const char string[] = "Atari native SCSI";
824 return string;
825}
826
827
828#if defined(REAL_DMA)
829
Geert Uytterhoeven107b5d52011-06-12 20:48:33 +0200830static unsigned long atari_scsi_dma_setup(struct Scsi_Host *instance,
831 void *data, unsigned long count,
832 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Roman Zippelc28bda22007-05-01 22:32:36 +0200834 unsigned long addr = virt_to_phys(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Finn Thaind65e6342014-03-18 11:42:20 +1100836 dprintk(NDEBUG_DMA, "scsi%d: setting up dma, data = %p, phys = %lx, count = %ld, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 "dir = %d\n", instance->host_no, data, addr, count, dir);
838
839 if (!IS_A_TT() && !STRAM_ADDR(addr)) {
840 /* If we have a non-DMAable address on a Falcon, use the dribble
841 * buffer; 'orig_addr' != 0 in the read case tells the interrupt
842 * handler to copy data from the dribble buffer to the originally
843 * wanted address.
844 */
845 if (dir)
Roman Zippelc28bda22007-05-01 22:32:36 +0200846 memcpy(atari_dma_buffer, data, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 else
848 atari_dma_orig_addr = data;
849 addr = atari_dma_phys_buffer;
850 }
Roman Zippelc28bda22007-05-01 22:32:36 +0200851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 atari_dma_startaddr = addr; /* Needed for calculating residual later. */
Roman Zippelc28bda22007-05-01 22:32:36 +0200853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* Cache cleanup stuff: On writes, push any dirty cache out before sending
855 * it to the peripheral. (Must be done before DMA setup, since at least
856 * the ST-DMA begins to fill internal buffers right after setup. For
857 * reads, invalidate any cache, may be altered after DMA without CPU
858 * knowledge.
Roman Zippelc28bda22007-05-01 22:32:36 +0200859 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * ++roman: For the Medusa, there's no need at all for that cache stuff,
861 * because the hardware does bus snooping (fine!).
862 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200863 dma_cache_maintenance(addr, count, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (count == 0)
866 printk(KERN_NOTICE "SCSI warning: DMA programmed for 0 bytes !\n");
867
868 if (IS_A_TT()) {
869 tt_scsi_dma.dma_ctrl = dir;
Roman Zippelc28bda22007-05-01 22:32:36 +0200870 SCSI_DMA_WRITE_P(dma_addr, addr);
871 SCSI_DMA_WRITE_P(dma_cnt, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 tt_scsi_dma.dma_ctrl = dir | 2;
Roman Zippelc28bda22007-05-01 22:32:36 +0200873 } else { /* ! IS_A_TT */
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* set address */
Roman Zippelc28bda22007-05-01 22:32:36 +0200876 SCSI_DMA_SETADR(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /* toggle direction bit to clear FIFO and set DMA direction */
879 dir <<= 8;
880 st_dma.dma_mode_status = 0x90 | dir;
881 st_dma.dma_mode_status = 0x90 | (dir ^ 0x100);
882 st_dma.dma_mode_status = 0x90 | dir;
883 udelay(40);
884 /* On writes, round up the transfer length to the next multiple of 512
885 * (see also comment at atari_dma_xfer_len()). */
886 st_dma.fdc_acces_seccount = (count + (dir ? 511 : 0)) >> 9;
887 udelay(40);
888 st_dma.dma_mode_status = 0x10 | dir;
889 udelay(40);
890 /* need not restore value of dir, only boolean value is tested */
891 atari_dma_active = 1;
892 }
893
Roman Zippelc28bda22007-05-01 22:32:36 +0200894 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
897
Roman Zippelc28bda22007-05-01 22:32:36 +0200898static long atari_scsi_dma_residual(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Roman Zippelc28bda22007-05-01 22:32:36 +0200900 return atari_dma_residual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903
904#define CMD_SURELY_BLOCK_MODE 0
905#define CMD_SURELY_BYTE_MODE 1
906#define CMD_MODE_UNKNOWN 2
907
Roman Zippelc28bda22007-05-01 22:32:36 +0200908static int falcon_classify_cmd(Scsi_Cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 unsigned char opcode = cmd->cmnd[0];
Roman Zippelc28bda22007-05-01 22:32:36 +0200911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (opcode == READ_DEFECT_DATA || opcode == READ_LONG ||
Roman Zippelc28bda22007-05-01 22:32:36 +0200913 opcode == READ_BUFFER)
914 return CMD_SURELY_BYTE_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 else if (opcode == READ_6 || opcode == READ_10 ||
916 opcode == 0xa8 /* READ_12 */ || opcode == READ_REVERSE ||
917 opcode == RECOVER_BUFFERED_DATA) {
918 /* In case of a sequential-access target (tape), special care is
919 * needed here: The transfer is block-mode only if the 'fixed' bit is
920 * set! */
921 if (cmd->device->type == TYPE_TAPE && !(cmd->cmnd[1] & 1))
Roman Zippelc28bda22007-05-01 22:32:36 +0200922 return CMD_SURELY_BYTE_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 else
Roman Zippelc28bda22007-05-01 22:32:36 +0200924 return CMD_SURELY_BLOCK_MODE;
925 } else
926 return CMD_MODE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929
930/* This function calculates the number of bytes that can be transferred via
931 * DMA. On the TT, this is arbitrary, but on the Falcon we have to use the
932 * ST-DMA chip. There are only multiples of 512 bytes possible and max.
933 * 255*512 bytes :-( This means also, that defining READ_OVERRUNS is not
934 * possible on the Falcon, since that would require to program the DMA for
935 * n*512 - atari_read_overrun bytes. But it seems that the Falcon doesn't have
936 * the overrun problem, so this question is academic :-)
937 */
938
Roman Zippelc28bda22007-05-01 22:32:36 +0200939static unsigned long atari_dma_xfer_len(unsigned long wanted_len,
940 Scsi_Cmnd *cmd, int write_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 unsigned long possible_len, limit;
Adrian Bunk29c8a242008-10-13 21:58:59 +0200943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (IS_A_TT())
945 /* TT SCSI DMA can transfer arbitrary #bytes */
Roman Zippelc28bda22007-05-01 22:32:36 +0200946 return wanted_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 /* ST DMA chip is stupid -- only multiples of 512 bytes! (and max.
949 * 255*512 bytes, but this should be enough)
950 *
951 * ++roman: Aaargl! Another Falcon-SCSI problem... There are some commands
952 * that return a number of bytes which cannot be known beforehand. In this
953 * case, the given transfer length is an "allocation length". Now it
954 * can happen that this allocation length is a multiple of 512 bytes and
955 * the DMA is used. But if not n*512 bytes really arrive, some input data
956 * will be lost in the ST-DMA's FIFO :-( Thus, we have to distinguish
957 * between commands that do block transfers and those that do byte
958 * transfers. But this isn't easy... there are lots of vendor specific
959 * commands, and the user can issue any command via the
960 * SCSI_IOCTL_SEND_COMMAND.
961 *
962 * The solution: We classify SCSI commands in 1) surely block-mode cmd.s,
963 * 2) surely byte-mode cmd.s and 3) cmd.s with unknown mode. In case 1)
964 * and 3), the thing to do is obvious: allow any number of blocks via DMA
965 * or none. In case 2), we apply some heuristic: Byte mode is assumed if
966 * the transfer (allocation) length is < 1024, hoping that no cmd. not
967 * explicitly known as byte mode have such big allocation lengths...
968 * BTW, all the discussion above applies only to reads. DMA writes are
969 * unproblematic anyways, since the targets aborts the transfer after
970 * receiving a sufficient number of bytes.
971 *
972 * Another point: If the transfer is from/to an non-ST-RAM address, we
973 * use the dribble buffer and thus can do only STRAM_BUFFER_SIZE bytes.
974 */
975
976 if (write_flag) {
977 /* Write operation can always use the DMA, but the transfer size must
978 * be rounded up to the next multiple of 512 (atari_dma_setup() does
979 * this).
980 */
981 possible_len = wanted_len;
Roman Zippelc28bda22007-05-01 22:32:36 +0200982 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 /* Read operations: if the wanted transfer length is not a multiple of
984 * 512, we cannot use DMA, since the ST-DMA cannot split transfers
985 * (no interrupt on DMA finished!)
986 */
987 if (wanted_len & 0x1ff)
988 possible_len = 0;
989 else {
990 /* Now classify the command (see above) and decide whether it is
991 * allowed to do DMA at all */
Roman Zippelc28bda22007-05-01 22:32:36 +0200992 switch (falcon_classify_cmd(cmd)) {
993 case CMD_SURELY_BLOCK_MODE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 possible_len = wanted_len;
995 break;
Roman Zippelc28bda22007-05-01 22:32:36 +0200996 case CMD_SURELY_BYTE_MODE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 possible_len = 0; /* DMA prohibited */
998 break;
Roman Zippelc28bda22007-05-01 22:32:36 +0200999 case CMD_MODE_UNKNOWN:
1000 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* For unknown commands assume block transfers if the transfer
1002 * size/allocation length is >= 1024 */
1003 possible_len = (wanted_len < 1024) ? 0 : wanted_len;
1004 break;
1005 }
1006 }
1007 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /* Last step: apply the hard limit on DMA transfers */
Roman Zippelc28bda22007-05-01 22:32:36 +02001010 limit = (atari_dma_buffer && !STRAM_ADDR(virt_to_phys(cmd->SCp.ptr))) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 STRAM_BUFFER_SIZE : 255*512;
1012 if (possible_len > limit)
1013 possible_len = limit;
1014
1015 if (possible_len != wanted_len)
Finn Thaind65e6342014-03-18 11:42:20 +11001016 dprintk(NDEBUG_DMA, "Sorry, must cut DMA transfer size to %ld bytes "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 "instead of %ld\n", possible_len, wanted_len);
1018
Roman Zippelc28bda22007-05-01 22:32:36 +02001019 return possible_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022
1023#endif /* REAL_DMA */
1024
1025
1026/* NCR5380 register access functions
1027 *
1028 * There are separate functions for TT and Falcon, because the access
1029 * methods are quite different. The calling macros NCR5380_read and
1030 * NCR5380_write call these functions via function pointers.
1031 */
1032
Roman Zippelc28bda22007-05-01 22:32:36 +02001033static unsigned char atari_scsi_tt_reg_read(unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Roman Zippelc28bda22007-05-01 22:32:36 +02001035 return tt_scsi_regp[reg * 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
Roman Zippelc28bda22007-05-01 22:32:36 +02001038static void atari_scsi_tt_reg_write(unsigned char reg, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
1040 tt_scsi_regp[reg * 2] = value;
1041}
1042
Roman Zippelc28bda22007-05-01 22:32:36 +02001043static unsigned char atari_scsi_falcon_reg_read(unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 dma_wd.dma_mode_status= (u_short)(0x88 + reg);
Roman Zippelc28bda22007-05-01 22:32:36 +02001046 return (u_char)dma_wd.fdc_acces_seccount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
Roman Zippelc28bda22007-05-01 22:32:36 +02001049static void atari_scsi_falcon_reg_write(unsigned char reg, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 dma_wd.dma_mode_status = (u_short)(0x88 + reg);
1052 dma_wd.fdc_acces_seccount = (u_short)value;
1053}
1054
1055
1056#include "atari_NCR5380.c"
1057
Finn Thain4d3d2a52014-11-12 16:11:52 +11001058static int atari_scsi_bus_reset(struct scsi_cmnd *cmd)
1059{
1060 int rv;
1061 struct NCR5380_hostdata *hostdata = shost_priv(cmd->device->host);
1062
1063 /* For doing the reset, SCSI interrupts must be disabled first,
1064 * since the 5380 raises its IRQ line while _RST is active and we
1065 * can't disable interrupts completely, since we need the timer.
1066 */
1067 /* And abort a maybe active DMA transfer */
1068 if (IS_A_TT()) {
1069 atari_turnoff_irq(IRQ_TT_MFP_SCSI);
1070#ifdef REAL_DMA
1071 tt_scsi_dma.dma_ctrl = 0;
1072#endif
1073 } else {
1074 atari_turnoff_irq(IRQ_MFP_FSCSI);
1075#ifdef REAL_DMA
1076 st_dma.dma_mode_status = 0x90;
1077 atari_dma_active = 0;
1078 atari_dma_orig_addr = NULL;
1079#endif
1080 }
1081
1082 rv = NCR5380_bus_reset(cmd);
1083
1084 if (IS_A_TT())
1085 atari_turnon_irq(IRQ_TT_MFP_SCSI);
1086 else
1087 atari_turnon_irq(IRQ_MFP_FSCSI);
1088
1089 if (rv == SUCCESS)
1090 falcon_release_lock_if_possible(hostdata);
1091
1092 return rv;
1093}
1094
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +01001095static struct scsi_host_template driver_template = {
Al Virod89537e2013-03-31 13:24:44 -04001096 .show_info = atari_scsi_show_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 .name = "Atari native SCSI",
1098 .detect = atari_scsi_detect,
1099 .release = atari_scsi_release,
1100 .info = atari_scsi_info,
1101 .queuecommand = atari_scsi_queue_command,
1102 .eh_abort_handler = atari_scsi_abort,
1103 .eh_bus_reset_handler = atari_scsi_bus_reset,
1104 .can_queue = 0, /* initialized at run-time */
1105 .this_id = 0, /* initialized at run-time */
1106 .sg_tablesize = 0, /* initialized at run-time */
1107 .cmd_per_lun = 0, /* initialized at run-time */
1108 .use_clustering = DISABLE_CLUSTERING
1109};
1110
1111
1112#include "scsi_module.c"
1113
1114MODULE_LICENSE("GPL");