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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * 53c710 driver.  Modified from Drew Eckhardts driver
  3.  * for 53c810 by Richard Hirst [richard@sleepie.demon.co.uk]
  4.  * Check out PERM_OPTIONS and EXPECTED_CLOCK, which may be defined in the
  5.  * relevant machine specific file (eg. mvme16x.[ch], amiga7xx.[ch]).
  6.  * There are also currently some defines at the top of 53c7xx.scr.
  7.  * The chip type is #defined in script_asm.pl, as well as the Makefile.
  8.  * Host scsi ID expected to be 7 - see NCR53c7x0_init().
  9.  *
  10.  * I have removed the PCI code and some of the 53c8xx specific code - 
  11.  * simply to make this file smaller and easier to manage.
  12.  *
  13.  * MVME16x issues:
  14.  *   Problems trying to read any chip registers in NCR53c7x0_init(), as they
  15.  *   may never have been set by 16xBug (eg. If kernel has come in over tftp).
  16.  */
  17. /*
  18.  * Adapted for Linux/m68k Amiga platforms for the A4000T/A4091 and
  19.  * WarpEngine SCSI controllers.
  20.  * By Alan Hourihane <alanh@fairlite.demon.co.uk>
  21.  * Thanks to Richard Hirst for making it possible with the MVME additions
  22.  */
  23. /*
  24.  * 53c710 rev 0 doesn't support add with carry.  Rev 1 and 2 does.  To
  25.  * overcome this problem you can define FORCE_DSA_ALIGNMENT, which ensures
  26.  * that the DSA address is always xxxxxx00.  If disconnection is not allowed,
  27.  * then the script only ever tries to add small (< 256) positive offsets to
  28.  * DSA, so lack of carry isn't a problem.  FORCE_DSA_ALIGNMENT can, of course,
  29.  * be defined for all chip revisions at a small cost in memory usage.
  30.  */
  31. #define FORCE_DSA_ALIGNMENT
  32. /*
  33.  * Selection timer does not always work on the 53c710, depending on the
  34.  * timing at the last disconnect, if this is a problem for you, try
  35.  * using validids as detailed below.
  36.  *
  37.  * Options for the NCR7xx driver
  38.  *
  39.  * noasync:0 - disables sync and asynchronous negotiation
  40.  * nosync:0 - disables synchronous negotiation (does async)
  41.  * nodisconnect:0 - disables disconnection
  42.  * validids:0x?? - Bitmask field that disallows certain ID's.
  43.  * - e.g. 0x03 allows ID 0,1
  44.  * - 0x1F allows ID 0,1,2,3,4
  45.  * opthi:n - replace top word of options with 'n'
  46.  * optlo:n - replace bottom word of options with 'n'
  47.  * - ALWAYS SPECIFY opthi THEN optlo <<<<<<<<<<
  48.  */
  49. /*
  50.  * PERM_OPTIONS are driver options which will be enabled for all NCR boards
  51.  * in the system at driver initialization time.
  52.  *
  53.  * Don't THINK about touching these in PERM_OPTIONS : 
  54.  *   OPTION_MEMORY_MAPPED 
  55.  *  680x0 doesn't have an IO map!
  56.  *
  57.  *   OPTION_DEBUG_TEST1
  58.  * Test 1 does bus mastering and interrupt tests, which will help weed 
  59.  * out brain damaged main boards.
  60.  *
  61.  * Other PERM_OPTIONS settings are listed below.  Note the actual options
  62.  * required are set in the relevant file (mvme16x.c, amiga7xx.c, etc):
  63.  *
  64.  *   OPTION_NO_ASYNC
  65.  * Don't negotiate for asynchronous transfers on the first command 
  66.  * when OPTION_ALWAYS_SYNCHRONOUS is set.  Useful for dain bramaged
  67.  * devices which do something bad rather than sending a MESSAGE 
  68.  * REJECT back to us like they should if they can't cope.
  69.  *
  70.  *   OPTION_SYNCHRONOUS
  71.  * Enable support for synchronous transfers.  Target negotiated 
  72.  * synchronous transfers will be responded to.  To initiate 
  73.  * a synchronous transfer request,  call 
  74.  *
  75.  *     request_synchronous (hostno, target) 
  76.  *
  77.  * from within KGDB.
  78.  *
  79.  *   OPTION_ALWAYS_SYNCHRONOUS
  80.  * Negotiate for synchronous transfers with every target after
  81.  * driver initialization or a SCSI bus reset.  This is a bit dangerous, 
  82.  * since there are some dain bramaged SCSI devices which will accept
  83.  * SDTR messages but keep talking asynchronously.
  84.  *
  85.  *   OPTION_DISCONNECT
  86.  * Enable support for disconnect/reconnect.  To change the 
  87.  * default setting on a given host adapter, call
  88.  *
  89.  *     request_disconnect (hostno, allow)
  90.  *
  91.  * where allow is non-zero to allow, 0 to disallow.
  92.  * 
  93.  *  If you really want to run 10MHz FAST SCSI-II transfers, you should 
  94.  *  know that the NCR driver currently ignores parity information.  Most
  95.  *  systems do 5MHz SCSI fine.  I've seen a lot that have problems faster
  96.  *  than 8MHz.  To play it safe, we only request 5MHz transfers.
  97.  *
  98.  *  If you'd rather get 10MHz transfers, edit sdtr_message and change 
  99.  *  the fourth byte from 50 to 25.
  100.  */
  101. /*
  102.  * Sponsored by 
  103.  * iX Multiuser Multitasking Magazine
  104.  * Hannover, Germany
  105.  * hm@ix.de
  106.  *
  107.  * Copyright 1993, 1994, 1995 Drew Eckhardt
  108.  *      Visionary Computing 
  109.  *      (Unix and Linux consulting and custom programming)
  110.  *      drew@PoohSticks.ORG
  111.  * +1 (303) 786-7975
  112.  *
  113.  * TolerANT and SCSI SCRIPTS are registered trademarks of NCR Corporation.
  114.  * 
  115.  * For more information, please consult 
  116.  *
  117.  * NCR53C810 
  118.  * SCSI I/O Processor
  119.  * Programmer's Guide
  120.  *
  121.  * NCR 53C810
  122.  * PCI-SCSI I/O Processor
  123.  * Data Manual
  124.  *
  125.  * NCR 53C810/53C820
  126.  * PCI-SCSI I/O Processor Design In Guide
  127.  *
  128.  * For literature on Symbios Logic Inc. formerly NCR, SCSI, 
  129.  * and Communication products please call (800) 334-5454 or
  130.  * (719) 536-3300. 
  131.  * 
  132.  * PCI BIOS Specification Revision
  133.  * PCI Local Bus Specification
  134.  * PCI System Design Guide
  135.  *
  136.  * PCI Special Interest Group
  137.  * M/S HF3-15A
  138.  * 5200 N.E. Elam Young Parkway
  139.  * Hillsboro, Oregon 97124-6497
  140.  * +1 (503) 696-2000 
  141.  * +1 (800) 433-5177
  142.  */
  143. /*
  144.  * Design issues : 
  145.  * The cumulative latency needed to propagate a read/write request 
  146.  * through the file system, buffer cache, driver stacks, SCSI host, and 
  147.  * SCSI device is ultimately the limiting factor in throughput once we 
  148.  * have a sufficiently fast host adapter.
  149.  *  
  150.  * So, to maximize performance we want to keep the ratio of latency to data 
  151.  * transfer time to a minimum by
  152.  * 1.  Minimizing the total number of commands sent (typical command latency
  153.  * including drive and bus mastering host overhead is as high as 4.5ms)
  154.  * to transfer a given amount of data.  
  155.  *
  156.  *      This is accomplished by placing no arbitrary limit on the number
  157.  * of scatter/gather buffers supported, since we can transfer 1K
  158.  * per scatter/gather buffer without Eric's cluster patches, 
  159.  * 4K with.  
  160.  *
  161.  * 2.  Minimizing the number of fatal interrupts serviced, since
  162.  *  fatal interrupts halt the SCSI I/O processor.  Basically,
  163.  * this means offloading the practical maximum amount of processing 
  164.  * to the SCSI chip.
  165.  * 
  166.  * On the NCR53c810/820/720,  this is accomplished by using 
  167.  * interrupt-on-the-fly signals when commands complete, 
  168.  * and only handling fatal errors and SDTR / WDTR  messages 
  169.  * in the host code.
  170.  *
  171.  * On the NCR53c710, interrupts are generated as on the NCR53c8x0,
  172.  * only the lack of a interrupt-on-the-fly facility complicates
  173.  * things.   Also, SCSI ID registers and commands are 
  174.  * bit fielded rather than binary encoded.
  175.  *
  176.  *  On the NCR53c700 and NCR53c700-66, operations that are done via 
  177.  * indirect, table mode on the more advanced chips must be
  178.  *         replaced by calls through a jump table which 
  179.  * acts as a surrogate for the DSA.  Unfortunately, this 
  180.  *  will mean that we must service an interrupt for each 
  181.  * disconnect/reconnect.
  182.  * 
  183.  * 3.  Eliminating latency by pipelining operations at the different levels.
  184.  * 
  185.  * This driver allows a configurable number of commands to be enqueued
  186.  * for each target/lun combination (experimentally, I have discovered
  187.  * that two seems to work best) and will ultimately allow for 
  188.  * SCSI-II tagged queuing.
  189.  * 
  190.  *
  191.  * Architecture : 
  192.  * This driver is built around a Linux queue of commands waiting to 
  193.  * be executed, and a shared Linux/NCR array of commands to start.  Commands
  194.  * are transferred to the array  by the run_process_issue_queue() function 
  195.  * which is called whenever a command completes.
  196.  *
  197.  * As commands are completed, the interrupt routine is triggered,
  198.  * looks for commands in the linked list of completed commands with
  199.  * valid status, removes these commands from a list of running commands, 
  200.  * calls the done routine, and flags their target/luns as not busy.
  201.  *
  202.  * Due to limitations in the intelligence of the NCR chips, certain
  203.  * concessions are made.  In many cases, it is easier to dynamically 
  204.  * generate/fix-up code rather than calculate on the NCR at run time.  
  205.  * So, code is generated or fixed up for
  206.  *
  207.  * - Handling data transfers, using a variable number of MOVE instructions
  208.  * interspersed with CALL MSG_IN, WHEN MSGIN instructions.
  209.  *
  210.  *  The DATAIN and DATAOUT routines are separate, so that an incorrect
  211.  * direction can be trapped, and space isn't wasted. 
  212.  *
  213.  * It may turn out that we're better off using some sort 
  214.  * of table indirect instruction in a loop with a variable
  215.  * sized table on the NCR53c710 and newer chips.
  216.  *
  217.  * - Checking for reselection (NCR53c710 and better)
  218.  *
  219.  * - Handling the details of SCSI context switches (NCR53c710 and better),
  220.  * such as reprogramming appropriate synchronous parameters, 
  221.  * removing the dsa structure from the NCR's queue of outstanding
  222.  * commands, etc.
  223.  *
  224.  */
  225. #include <linux/module.h>
  226. #include <linux/config.h>
  227. #include <linux/types.h>
  228. #include <asm/setup.h>
  229. #include <asm/dma.h>
  230. #include <asm/io.h>
  231. #include <asm/system.h>
  232. #include <linux/delay.h>
  233. #include <linux/signal.h>
  234. #include <linux/sched.h>
  235. #include <linux/errno.h>
  236. #include <linux/string.h>
  237. #include <linux/slab.h>
  238. #include <linux/vmalloc.h>
  239. #include <linux/mm.h>
  240. #include <linux/ioport.h>
  241. #include <linux/time.h>
  242. #include <linux/blk.h>
  243. #include <linux/spinlock.h>
  244. #include <asm/pgtable.h>
  245. #ifdef CONFIG_AMIGA
  246. #include <asm/amigahw.h>
  247. #include <asm/amigaints.h>
  248. #include <asm/irq.h>
  249. #define BIG_ENDIAN
  250. #define NO_IO_SPACE
  251. #endif
  252. #ifdef CONFIG_MVME16x
  253. #include <asm/mvme16xhw.h>
  254. #define BIG_ENDIAN
  255. #define NO_IO_SPACE
  256. #define VALID_IDS
  257. #endif
  258. #ifdef CONFIG_BVME6000
  259. #include <asm/bvme6000hw.h>
  260. #define BIG_ENDIAN
  261. #define NO_IO_SPACE
  262. #define VALID_IDS
  263. #endif
  264. #include "scsi.h"
  265. #include "hosts.h"
  266. #include "53c7xx.h"
  267. #include "constants.h"
  268. #include "sd.h"
  269. #include <linux/stat.h>
  270. #include <linux/stddef.h>
  271. #ifdef NO_IO_SPACE
  272. /*
  273.  * The following make the definitions in 53c7xx.h (write8, etc) smaller,
  274.  * we don't have separate i/o space anyway.
  275.  */
  276. #undef inb
  277. #undef outb
  278. #undef inw
  279. #undef outw
  280. #undef inl
  281. #undef outl
  282. #define inb(x)          1
  283. #define inw(x)          1
  284. #define inl(x)          1
  285. #define outb(x,y)       1
  286. #define outw(x,y)       1
  287. #define outl(x,y)       1
  288. #endif
  289. static int check_address (unsigned long addr, int size);
  290. static void dump_events (struct Scsi_Host *host, int count);
  291. static Scsi_Cmnd * return_outstanding_commands (struct Scsi_Host *host, 
  292.     int free, int issue);
  293. static void hard_reset (struct Scsi_Host *host);
  294. static void ncr_scsi_reset (struct Scsi_Host *host);
  295. static void print_lots (struct Scsi_Host *host);
  296. static void set_synchronous (struct Scsi_Host *host, int target, int sxfer, 
  297.     int scntl3, int now_connected);
  298. static int datapath_residual (struct Scsi_Host *host);
  299. static const char * sbcl_to_phase (int sbcl);
  300. static void print_progress (Scsi_Cmnd *cmd);
  301. static void print_queues (struct Scsi_Host *host);
  302. static void process_issue_queue (unsigned long flags);
  303. static int shutdown (struct Scsi_Host *host);
  304. static void abnormal_finished (struct NCR53c7x0_cmd *cmd, int result);
  305. static int disable (struct Scsi_Host *host);
  306. static int NCR53c7xx_run_tests (struct Scsi_Host *host);
  307. static void NCR53c7x0_intr(int irq, void *dev_id, struct pt_regs * regs);
  308. static void NCR53c7x0_intfly (struct Scsi_Host *host);
  309. static int ncr_halt (struct Scsi_Host *host);
  310. static void intr_phase_mismatch (struct Scsi_Host *host, struct NCR53c7x0_cmd 
  311.     *cmd);
  312. static void intr_dma (struct Scsi_Host *host, struct NCR53c7x0_cmd *cmd);
  313. static void print_dsa (struct Scsi_Host *host, u32 *dsa,
  314.     const char *prefix);
  315. static int print_insn (struct Scsi_Host *host, const u32 *insn,
  316.     const char *prefix, int kernel);
  317. static void NCR53c7xx_dsa_fixup (struct NCR53c7x0_cmd *cmd);
  318. static void NCR53c7x0_init_fixup (struct Scsi_Host *host);
  319. static int NCR53c7x0_dstat_sir_intr (struct Scsi_Host *host, struct 
  320.     NCR53c7x0_cmd *cmd);
  321. static void NCR53c7x0_soft_reset (struct Scsi_Host *host);
  322. /* Size of event list (per host adapter) */
  323. static int track_events = 0;
  324. static struct Scsi_Host *first_host = NULL; /* Head of list of NCR boards */
  325. static Scsi_Host_Template *the_template = NULL;
  326. /* NCR53c710 script handling code */
  327. #include "53c7xx_d.h"
  328. #ifdef A_int_debug_sync
  329. #define DEBUG_SYNC_INTR A_int_debug_sync
  330. #endif
  331. int NCR53c7xx_script_len = sizeof (SCRIPT);
  332. int NCR53c7xx_dsa_len = A_dsa_end + Ent_dsa_zero - Ent_dsa_code_template;
  333. #ifdef FORCE_DSA_ALIGNMENT
  334. int CmdPageStart = (0 - Ent_dsa_zero - sizeof(struct NCR53c7x0_cmd)) & 0xff;
  335. #endif
  336. static char *setup_strings[] =
  337. {"","","","","","","",""};
  338. #define MAX_SETUP_STRINGS (sizeof(setup_strings) / sizeof(char *))
  339. #define SETUP_BUFFER_SIZE 200
  340. static char setup_buffer[SETUP_BUFFER_SIZE];
  341. static char setup_used[MAX_SETUP_STRINGS];
  342. void ncr53c7xx_setup (char *str, int *ints)
  343. {
  344.    int i;
  345.    char *p1, *p2;
  346.    p1 = setup_buffer;
  347.    *p1 = '';
  348.    if (str)
  349.       strncpy(p1, str, SETUP_BUFFER_SIZE - strlen(setup_buffer));
  350.    setup_buffer[SETUP_BUFFER_SIZE - 1] = '';
  351.    p1 = setup_buffer;
  352.    i = 0;
  353.    while (*p1 && (i < MAX_SETUP_STRINGS)) {
  354.       p2 = strchr(p1, ',');
  355.       if (p2) {
  356.          *p2 = '';
  357.          if (p1 != p2)
  358.             setup_strings[i] = p1;
  359.          p1 = p2 + 1;
  360.          i++;
  361.          }
  362.       else {
  363.          setup_strings[i] = p1;
  364.          break;
  365.          }
  366.       }
  367.    for (i=0; i<MAX_SETUP_STRINGS; i++)
  368.       setup_used[i] = 0;
  369. }
  370. /* check_setup_strings() returns index if key found, 0 if not
  371.  */
  372. static int check_setup_strings(char *key, int *flags, int *val, char *buf)
  373. {
  374. int x;
  375. char *cp;
  376.    for  (x=0; x<MAX_SETUP_STRINGS; x++) {
  377.       if (setup_used[x])
  378.          continue;
  379.       if (!strncmp(setup_strings[x], key, strlen(key)))
  380.          break;
  381.       if (!strncmp(setup_strings[x], "next", strlen("next")))
  382.          return 0;
  383.       }
  384.    if (x == MAX_SETUP_STRINGS)
  385.       return 0;
  386.    setup_used[x] = 1;
  387.    cp = setup_strings[x] + strlen(key);
  388.    *val = -1;
  389.    if (*cp != ':')
  390.       return ++x;
  391.    cp++;
  392.    if ((*cp >= '0') && (*cp <= '9')) {
  393.       *val = simple_strtoul(cp,NULL,0);
  394.       }
  395.    return ++x;
  396. }
  397. /*
  398.  * KNOWN BUGS :
  399.  * - There is some sort of conflict when the PPP driver is compiled with 
  400.  *  support for 16 channels?
  401.  * 
  402.  * - On systems which predate the 1.3.x initialization order change,
  403.  *      the NCR driver will cause Cannot get free page messages to appear.  
  404.  *      These are harmless, but I don't know of an easy way to avoid them.
  405.  *
  406.  * - With OPTION_DISCONNECT, on two systems under unknown circumstances,
  407.  * we get a PHASE MISMATCH with DSA set to zero (suggests that we 
  408.  * are occurring somewhere in the reselection code) where 
  409.  * DSP=some value DCMD|DBC=same value.  
  410.  * 
  411.  * Closer inspection suggests that we may be trying to execute
  412.  * some portion of the DSA?
  413.  * scsi0 : handling residual transfer (+ 0 bytes from DMA FIFO)
  414.  * scsi0 : handling residual transfer (+ 0 bytes from DMA FIFO)
  415.  * scsi0 : no current command : unexpected phase MSGIN.
  416.  *         DSP=0x1c46cc, DCMD|DBC=0x1c46ac, DSA=0x0
  417.  *         DSPS=0x0, TEMP=0x1c3e70, DMODE=0x80
  418.  * scsi0 : DSP->
  419.  * 001c46cc : 0x001c46cc 0x00000000
  420.  * 001c46d4 : 0x001c5ea0 0x000011f8
  421.  *
  422.  * Changed the print code in the phase_mismatch handler so
  423.  * that we call print_lots to try to diagnose this.
  424.  *
  425.  */
  426. /* 
  427.  * Possible future direction of architecture for max performance :
  428.  *
  429.  * We're using a single start array for the NCR chip.  This is 
  430.  * sub-optimal, because we cannot add a command which would conflict with 
  431.  * an executing command to this start queue, and therefore must insert the 
  432.  * next command for a given I/T/L combination after the first has completed;
  433.  * incurring our interrupt latency between SCSI commands.
  434.  *
  435.  * To allow further pipelining of the NCR and host CPU operation, we want 
  436.  * to set things up so that immediately on termination of a command destined 
  437.  * for a given LUN, we get that LUN busy again.  
  438.  * 
  439.  * To do this, we need to add a 32 bit pointer to which is jumped to 
  440.  * on completion of a command.  If no new command is available, this 
  441.  * would point to the usual DSA issue queue select routine.
  442.  *
  443.  * If one were, it would point to a per-NCR53c7x0_cmd select routine 
  444.  * which starts execution immediately, inserting the command at the head 
  445.  * of the start queue if the NCR chip is selected or reselected.
  446.  *
  447.  * We would change so that we keep a list of outstanding commands 
  448.  * for each unit, rather than a single running_list.  We'd insert 
  449.  * a new command into the right running list; if the NCR didn't 
  450.  * have something running for that yet, we'd put it in the 
  451.  * start queue as well.  Some magic needs to happen to handle the 
  452.  * race condition between the first command terminating before the 
  453.  * new one is written.
  454.  *
  455.  * Potential for profiling : 
  456.  * Call do_gettimeofday(struct timeval *tv) to get 800ns resolution.
  457.  */
  458. /*
  459.  * TODO : 
  460.  * 1.  To support WIDE transfers, not much needs to happen.  We
  461.  * should do CHMOVE instructions instead of MOVEs when
  462.  * we have scatter/gather segments of uneven length.  When
  463.  *  we do this, we need to handle the case where we disconnect
  464.  * between segments.
  465.  * 
  466.  * 2.  Currently, when Icky things happen we do a FATAL().  Instead,
  467.  *     we want to do an integrity check on the parts of the NCR hostdata
  468.  *     structure which were initialized at boot time; FATAL() if that 
  469.  *     fails, and otherwise try to recover.  Keep track of how many
  470.  *     times this has happened within a single SCSI command; if it 
  471.  *     gets excessive, then FATAL().
  472.  *
  473.  * 3.  Parity checking is currently disabled, and a few things should 
  474.  *     happen here now that we support synchronous SCSI transfers :
  475.  *     1.  On soft-reset, we shoould set the EPC (Enable Parity Checking)
  476.  *    and AAP (Assert SATN/ on parity error) bits in SCNTL0.
  477.  *
  478.  *     2.  We should enable the parity interrupt in the SIEN0 register.
  479.  * 
  480.  *     3.  intr_phase_mismatch() needs to believe that message out is 
  481.  *    always an "acceptable" phase to have a mismatch in.  If 
  482.  *    the old phase was MSG_IN, we should send a MESSAGE PARITY 
  483.  *    error.  If the old phase was something else, we should send
  484.  *    a INITIATOR_DETECTED_ERROR message.  Note that this could
  485.  *    cause a RESTORE POINTERS message; so we should handle that 
  486.  *    correctly first.  Instead, we should probably do an 
  487.  *    initiator_abort.
  488.  *
  489.  * 4.  MPEE bit of CTEST4 should be set so we get interrupted if 
  490.  *     we detect an error.
  491.  *
  492.  *  
  493.  * 5.  The initial code has been tested on the NCR53c810.  I don't 
  494.  *     have access to NCR53c700, 700-66 (Forex boards), NCR53c710
  495.  *     (NCR Pentium systems), NCR53c720, NCR53c820, or NCR53c825 boards to 
  496.  *     finish development on those platforms.
  497.  *
  498.  *     NCR53c820/825/720 - need to add wide transfer support, including WDTR 
  499.  *      negotiation, programming of wide transfer capabilities
  500.  * on reselection and table indirect selection.
  501.  *
  502.  *     NCR53c710 - need to add fatal interrupt or GEN code for 
  503.  * command completion signaling.   Need to modify all 
  504.  * SDID, SCID, etc. registers, and table indirect select code 
  505.  * since these use bit fielded (ie 1<<target) instead of 
  506.  * binary encoded target ids.  Need to accommodate
  507.  * different register mappings, probably scan through
  508.  * the SCRIPT code and change the non SFBR register operand
  509.  * of all MOVE instructions.
  510.  *
  511.  * It is rather worse than this actually, the 710 corrupts
  512.  * both TEMP and DSA when you do a MOVE MEMORY.  This
  513.  * screws you up all over the place.  MOVE MEMORY 4 with a
  514.  * destination of DSA seems to work OK, which helps some.
  515.  * Richard Hirst  richard@sleepie.demon.co.uk
  516.  * 
  517.  *     NCR53c700/700-66 - need to add code to refix addresses on 
  518.  * every nexus change, eliminate all table indirect code,
  519.  * very messy.
  520.  *
  521.  * 6.  The NCR53c7x0 series is very popular on other platforms that 
  522.  *     could be running Linux - ie, some high performance AMIGA SCSI 
  523.  *     boards use it.  
  524.  *
  525.  *     So, I should include #ifdef'd code so that it is 
  526.  *     compatible with these systems.
  527.  *
  528.  *     Specifically, the little Endian assumptions I made in my 
  529.  *     bit fields need to change, and if the NCR doesn't see memory
  530.  *     the right way, we need to provide options to reverse words
  531.  *     when the scripts are relocated.
  532.  *
  533.  * 7.  Use vremap() to access memory mapped boards.  
  534.  */
  535. /* 
  536.  * Allow for simultaneous existence of multiple SCSI scripts so we 
  537.  * can have a single driver binary for all of the family.
  538.  *
  539.  * - one for NCR53c700 and NCR53c700-66 chips (not yet supported)
  540.  * - one for rest (only the NCR53c810, 815, 820, and 825 are currently 
  541.  * supported)
  542.  * 
  543.  * So that we only need two SCSI scripts, we need to modify things so
  544.  * that we fixup register accesses in READ/WRITE instructions, and 
  545.  * we'll also have to accommodate the bit vs. binary encoding of IDs
  546.  * with the 7xx chips.
  547.  */
  548. #define ROUNDUP(adr,type)
  549.   ((void *) (((long) (adr) + sizeof(type) - 1) & ~(sizeof(type) - 1)))
  550. /*
  551.  * Function: issue_to_cmd
  552.  *
  553.  * Purpose: convert jump instruction in issue array to NCR53c7x0_cmd
  554.  * structure pointer.  
  555.  *
  556.  * Inputs; issue - pointer to start of NOP or JUMP instruction
  557.  * in issue array.
  558.  *
  559.  * Returns: pointer to command on success; 0 if opcode is NOP.
  560.  */
  561. static inline struct NCR53c7x0_cmd *
  562. issue_to_cmd (struct Scsi_Host *host, struct NCR53c7x0_hostdata *hostdata,
  563.     u32 *issue)
  564. {
  565.     return (issue[0] != hostdata->NOP_insn) ? 
  566.     /* 
  567.      * If the IF TRUE bit is set, it's a JUMP instruction.  The
  568.      * operand is a bus pointer to the dsa_begin routine for this DSA.  The
  569.      * dsa field of the NCR53c7x0_cmd structure starts with the 
  570.      * DSA code template.  By converting to a virtual address,
  571.      * subtracting the code template size, and offset of the 
  572.      * dsa field, we end up with a pointer to the start of the 
  573.      * structure (alternatively, we could use the 
  574.      * dsa_cmnd field, an anachronism from when we weren't
  575.      * sure what the relationship between the NCR structures
  576.      * and host structures were going to be.
  577.      */
  578. (struct NCR53c7x0_cmd *) ((char *) bus_to_virt (issue[1]) - 
  579.     (hostdata->E_dsa_code_begin - hostdata->E_dsa_code_template) -
  580.     offsetof(struct NCR53c7x0_cmd, dsa)) 
  581.     /* If the IF TRUE bit is not set, it's a NOP */
  582. : NULL;
  583. }
  584. /* 
  585.  * FIXME: we should junk these, in favor of synchronous_want and 
  586.  * wide_want in the NCR53c7x0_hostdata structure.
  587.  */
  588. /* Template for "preferred" synchronous transfer parameters. */
  589. static const unsigned char sdtr_message[] = {
  590. #ifdef CONFIG_SCSI_NCR53C7xx_FAST
  591.     EXTENDED_MESSAGE, 3 /* length */, EXTENDED_SDTR, 25 /* *4ns */, 8 /* off */
  592. #else
  593.     EXTENDED_MESSAGE, 3 /* length */, EXTENDED_SDTR, 50 /* *4ns */, 8 /* off */ 
  594. #endif
  595. };
  596. /* Template to request asynchronous transfers */
  597. static const unsigned char async_message[] = {
  598.     EXTENDED_MESSAGE, 3 /* length */, EXTENDED_SDTR, 0, 0 /* asynchronous */
  599. };
  600. /* Template for "preferred" WIDE transfer parameters */
  601. static const unsigned char wdtr_message[] = {
  602.     EXTENDED_MESSAGE, 2 /* length */, EXTENDED_WDTR, 1 /* 2^1 bytes */
  603. };
  604. #if 0
  605. /*
  606.  * Function : struct Scsi_Host *find_host (int host)
  607.  * 
  608.  * Purpose : KGDB support function which translates a host number 
  609.  *  to a host structure. 
  610.  *
  611.  * Inputs : host - number of SCSI host
  612.  *
  613.  * Returns : NULL on failure, pointer to host structure on success.
  614.  */
  615. static struct Scsi_Host *
  616. find_host (int host) {
  617.     struct Scsi_Host *h;
  618.     for (h = first_host; h && h->host_no != host; h = h->next);
  619.     if (!h) {
  620. printk (KERN_ALERT "scsi%d not foundn", host);
  621. return NULL;
  622.     } else if (h->hostt != the_template) {
  623. printk (KERN_ALERT "scsi%d is not a NCR boardn", host);
  624. return NULL;
  625.     }
  626.     return h;
  627. }
  628. #if 0
  629. /*
  630.  * Function : request_synchronous (int host, int target)
  631.  * 
  632.  * Purpose : KGDB interface which will allow us to negotiate for 
  633.  *  synchronous transfers.  This ill be replaced with a more 
  634.  *  integrated function; perhaps a new entry in the scsi_host 
  635.  * structure, accessible via an ioctl() or perhaps /proc/scsi.
  636.  *
  637.  * Inputs : host - number of SCSI host; target - number of target.
  638.  *
  639.  * Returns : 0 when negotiation has been setup for next SCSI command,
  640.  * -1 on failure.
  641.  */
  642. static int
  643. request_synchronous (int host, int target) {
  644.     struct Scsi_Host *h;
  645.     struct NCR53c7x0_hostdata *hostdata;
  646.     unsigned long flags;
  647.     if (target < 0) {
  648. printk (KERN_ALERT "target %d is bogusn", target);
  649. return -1;
  650.     }
  651.     if (!(h = find_host (host)))
  652. return -1;
  653.     else if (h->this_id == target) {
  654. printk (KERN_ALERT "target %d is host IDn", target);
  655. return -1;
  656.     } 
  657.     else if (target > h->max_id) {
  658. printk (KERN_ALERT "target %d exceeds maximum of %dn", target,
  659.     h->max_id);
  660. return -1;
  661.     }
  662.     hostdata = (struct NCR53c7x0_hostdata *)h->hostdata[0];
  663.     save_flags(flags);
  664.     cli();
  665.     if (hostdata->initiate_sdtr & (1 << target)) {
  666. restore_flags(flags);
  667. printk (KERN_ALERT "target %d already doing SDTRn", target);
  668. return -1;
  669.     } 
  670.     hostdata->initiate_sdtr |= (1 << target);
  671.     restore_flags(flags);
  672.     return 0;
  673. }
  674. #endif
  675. /*
  676.  * Function : request_disconnect (int host, int on_or_off)
  677.  * 
  678.  * Purpose : KGDB support function, tells us to allow or disallow 
  679.  * disconnections.
  680.  *
  681.  * Inputs : host - number of SCSI host; on_or_off - non-zero to allow,
  682.  * zero to disallow.
  683.  *
  684.  * Returns : 0 on success, * -1 on failure.
  685.  */
  686. static int 
  687. request_disconnect (int host, int on_or_off) {
  688.     struct Scsi_Host *h;
  689.     struct NCR53c7x0_hostdata *hostdata;
  690.     if (!(h = find_host (host)))
  691. return -1;
  692.     hostdata = (struct NCR53c7x0_hostdata *) h->hostdata[0];
  693.     if (on_or_off) 
  694. hostdata->options |= OPTION_DISCONNECT;
  695.     else
  696. hostdata->options &= ~OPTION_DISCONNECT;
  697.     return 0;
  698. }
  699. #endif
  700. /*
  701.  * Function : static void NCR53c7x0_driver_init (struct Scsi_Host *host)
  702.  *
  703.  * Purpose : Initialize internal structures, as required on startup, or 
  704.  * after a SCSI bus reset.
  705.  * 
  706.  * Inputs : host - pointer to this host adapter's structure
  707.  */
  708. static void 
  709. NCR53c7x0_driver_init (struct Scsi_Host *host) {
  710.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  711. host->hostdata[0];
  712.     int i, j;
  713.     u32 *ncrcurrent;
  714.     for (i = 0; i < 16; ++i) {
  715. hostdata->request_sense[i] = 0;
  716.      for (j = 0; j < 8; ++j) 
  717.     hostdata->busy[i][j] = 0;
  718. set_synchronous (host, i, /* sxfer */ 0, hostdata->saved_scntl3, 0);
  719.     }
  720.     hostdata->issue_queue = NULL;
  721.     hostdata->running_list = hostdata->finished_queue = 
  722. hostdata->ncrcurrent = NULL;
  723.     for (i = 0, ncrcurrent = (u32 *) hostdata->schedule; 
  724. i < host->can_queue; ++i, ncrcurrent += 2) {
  725. ncrcurrent[0] = hostdata->NOP_insn;
  726. ncrcurrent[1] = 0xdeadbeef;
  727.     }
  728.     ncrcurrent[0] = ((DCMD_TYPE_TCI|DCMD_TCI_OP_JUMP) << 24) | DBC_TCI_TRUE;
  729.     ncrcurrent[1] = (u32) virt_to_bus (hostdata->script) +
  730. hostdata->E_wait_reselect;
  731.     hostdata->reconnect_dsa_head = 0;
  732.     hostdata->addr_reconnect_dsa_head = (u32) 
  733. virt_to_bus((void *) &(hostdata->reconnect_dsa_head));
  734.     hostdata->expecting_iid = 0;
  735.     hostdata->expecting_sto = 0;
  736.     if (hostdata->options & OPTION_ALWAYS_SYNCHRONOUS) 
  737. hostdata->initiate_sdtr = 0xffff; 
  738.     else
  739.      hostdata->initiate_sdtr = 0;
  740.     hostdata->talked_to = 0;
  741.     hostdata->idle = 1;
  742. }
  743. /* 
  744.  * Function : static int clock_to_ccf_710 (int clock)
  745.  *
  746.  * Purpose :  Return the clock conversion factor for a given SCSI clock.
  747.  *
  748.  * Inputs : clock - SCSI clock expressed in Hz.
  749.  *
  750.  * Returns : ccf on success, -1 on failure.
  751.  */
  752. static int 
  753. clock_to_ccf_710 (int clock) {
  754.     if (clock <= 16666666)
  755. return -1;
  756.     if (clock <= 25000000)
  757. return 2;  /* Divide by 1.0 */
  758.     else if (clock <= 37500000)
  759. return 1;  /* Divide by 1.5 */
  760.     else if (clock <= 50000000)
  761. return 0; /* Divide by 2.0 */
  762.     else if (clock <= 66000000)
  763. return 3; /* Divide by 3.0 */
  764.     else 
  765. return -1;
  766. }
  767.     
  768. /* 
  769.  * Function : static int NCR53c7x0_init (struct Scsi_Host *host)
  770.  *
  771.  * Purpose :  initialize the internal structures for a given SCSI host
  772.  *
  773.  * Inputs : host - pointer to this host adapter's structure
  774.  *
  775.  * Preconditions : when this function is called, the chip_type 
  776.  *  field of the hostdata structure MUST have been set.
  777.  *
  778.  * Returns : 0 on success, -1 on failure.
  779.  */
  780. int 
  781. NCR53c7x0_init (struct Scsi_Host *host) {
  782.     NCR53c7x0_local_declare();
  783.     int i, ccf;
  784.     unsigned char revision;
  785.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  786. host->hostdata[0];
  787.     /* 
  788.      * There are some things which we need to know about in order to provide
  789.      * a semblance of support.  Print 'em if they aren't what we expect, 
  790.      * otherwise don't add to the noise.
  791.      * 
  792.      * -1 means we don't know what to expect.
  793.      */
  794.     int val, flags;
  795.     char buf[32];
  796.     int expected_id = -1;
  797.     int expected_clock = -1;
  798.     int uninitialized = 0;
  799. #ifdef NO_IO_SPACE
  800.     int expected_mapping = OPTION_MEMORY_MAPPED;
  801. #else
  802.     int expected_mapping = OPTION_IO_MAPPED;
  803. #endif
  804.     for (i=0;i<7;i++)
  805. hostdata->valid_ids[i] = 1; /* Default all ID's to scan */
  806.     /* Parse commandline flags */
  807.     if (check_setup_strings("noasync",&flags,&val,buf))
  808.     {
  809. hostdata->options |= OPTION_NO_ASYNC;
  810. hostdata->options &= ~(OPTION_SYNCHRONOUS | OPTION_ALWAYS_SYNCHRONOUS);
  811.     }
  812.     if (check_setup_strings("nosync",&flags,&val,buf))
  813.     {
  814. hostdata->options &= ~(OPTION_SYNCHRONOUS | OPTION_ALWAYS_SYNCHRONOUS);
  815.     }
  816.     if (check_setup_strings("nodisconnect",&flags,&val,buf))
  817. hostdata->options &= ~OPTION_DISCONNECT;
  818.     if (check_setup_strings("validids",&flags,&val,buf))
  819.     {
  820. for (i=0;i<7;i++) 
  821. hostdata->valid_ids[i] = val & (1<<i);
  822.     }
  823.  
  824.     if  ((i = check_setup_strings("next",&flags,&val,buf)))
  825.     {
  826. while (i)
  827. setup_used[--i] = 1;
  828.     }
  829.     if (check_setup_strings("opthi",&flags,&val,buf))
  830. hostdata->options = (long long)val << 32;
  831.     if (check_setup_strings("optlo",&flags,&val,buf))
  832. hostdata->options |= val;
  833.     NCR53c7x0_local_setup(host);
  834.     switch (hostdata->chip) {
  835.     case 710:
  836.     case 770:
  837.      hostdata->dstat_sir_intr = NCR53c7x0_dstat_sir_intr;
  838.      hostdata->init_save_regs = NULL;
  839.      hostdata->dsa_fixup = NCR53c7xx_dsa_fixup;
  840.      hostdata->init_fixup = NCR53c7x0_init_fixup;
  841.      hostdata->soft_reset = NCR53c7x0_soft_reset;
  842. hostdata->run_tests = NCR53c7xx_run_tests;
  843. expected_clock = hostdata->scsi_clock;
  844. expected_id = 7;
  845.      break;
  846.     default:
  847. printk ("scsi%d : chip type of %d is not supported yet, detaching.n",
  848.     host->host_no, hostdata->chip);
  849. scsi_unregister (host);
  850. return -1;
  851.     }
  852.     /* Assign constants accessed by NCR */
  853.     hostdata->NCR53c7xx_zero = 0;
  854.     hostdata->NCR53c7xx_msg_reject = MESSAGE_REJECT;
  855.     hostdata->NCR53c7xx_msg_abort = ABORT;
  856.     hostdata->NCR53c7xx_msg_nop = NOP;
  857.     hostdata->NOP_insn = (DCMD_TYPE_TCI|DCMD_TCI_OP_JUMP) << 24;
  858.     if (expected_mapping == -1 || 
  859. (hostdata->options & (OPTION_MEMORY_MAPPED)) != 
  860. (expected_mapping & OPTION_MEMORY_MAPPED))
  861. printk ("scsi%d : using %s mapped accessn", host->host_no, 
  862.     (hostdata->options & OPTION_MEMORY_MAPPED) ? "memory" : 
  863.     "io");
  864.     hostdata->dmode = (hostdata->chip == 700 || hostdata->chip == 70066) ? 
  865. DMODE_REG_00 : DMODE_REG_10;
  866.     hostdata->istat = ((hostdata->chip / 100) == 8) ? 
  867.      ISTAT_REG_800 : ISTAT_REG_700;
  868. /* We have to assume that this may be the first access to the chip, so
  869.  * we must set EA in DCNTL. */
  870.     NCR53c7x0_write8 (DCNTL_REG, DCNTL_10_EA|DCNTL_10_COM);
  871. /* Only the ISTAT register is readable when the NCR is running, so make 
  872.    sure it's halted. */
  873.     ncr_halt(host);
  874. /* 
  875.  * XXX - the NCR53c700 uses bitfielded registers for SCID, SDID, etc,
  876.  * as does the 710 with one bit per SCSI ID.  Conversely, the NCR
  877.  *  uses a normal, 3 bit binary representation of these values.
  878.  *
  879.  * Get the rest of the NCR documentation, and FIND OUT where the change
  880.  * was.
  881.  */
  882. #if 0
  883. /* May not be able to do this - chip my not have been set up yet */
  884. tmp = hostdata->this_id_mask = NCR53c7x0_read8(SCID_REG);
  885. for (host->this_id = 0; tmp != 1; tmp >>=1, ++host->this_id);
  886. #else
  887. host->this_id = 7;
  888. #endif
  889. /*
  890.  * Note : we should never encounter a board setup for ID0.  So,
  891.  *  if we see ID0, assume that it was uninitialized and set it
  892.  *  to the industry standard 7.
  893.  */
  894.     if (!host->this_id) {
  895. printk("scsi%d : initiator ID was %d, changing to 7n",
  896.     host->host_no, host->this_id);
  897. host->this_id = 7;
  898. hostdata->this_id_mask = 1 << 7;
  899. uninitialized = 1;
  900.     };
  901.     if (expected_id == -1 || host->this_id != expected_id)
  902.      printk("scsi%d : using initiator ID %dn", host->host_no,
  903.          host->this_id);
  904.     /*
  905.      * Save important registers to allow a soft reset.
  906.      */
  907.     /*
  908.      * CTEST7 controls cache snooping, burst mode, and support for 
  909.      * external differential drivers.  This isn't currently used - the
  910.      * default value may not be optimal anyway.
  911.      * Even worse, it may never have been set up since reset.
  912.      */
  913.     hostdata->saved_ctest7 = NCR53c7x0_read8(CTEST7_REG) & CTEST7_SAVE;
  914.     revision = (NCR53c7x0_read8(CTEST8_REG) & 0xF0) >> 4;
  915.     switch (revision) {
  916. case 1: revision = 0;    break;
  917. case 2: revision = 1;    break;
  918. case 4: revision = 2;    break;
  919. case 8: revision = 3;    break;
  920. default: revision = 255; break;
  921.     }
  922.     printk("scsi%d: Revision 0x%xn",host->host_no,revision);
  923.     if ((revision == 0 || revision == 255) && (hostdata->options & (OPTION_SYNCHRONOUS|OPTION_DISCONNECT|OPTION_ALWAYS_SYNCHRONOUS)))
  924.     {
  925. printk ("scsi%d: Disabling sync working and disconnect/reselectn",
  926. host->host_no);
  927. hostdata->options &= ~(OPTION_SYNCHRONOUS|OPTION_DISCONNECT|OPTION_ALWAYS_SYNCHRONOUS);
  928.     }
  929.     /*
  930.      * On NCR53c700 series chips, DCNTL controls the SCSI clock divisor,
  931.      * on 800 series chips, it allows for a totem-pole IRQ driver.
  932.      * NOTE saved_dcntl currently overwritten in init function.
  933.      * The value read here may be garbage anyway, MVME16x board at least
  934.      * does not initialise chip if kernel arrived via tftp.
  935.      */
  936.     hostdata->saved_dcntl = NCR53c7x0_read8(DCNTL_REG);
  937.     /*
  938.      * DMODE controls DMA burst length, and on 700 series chips,
  939.      * 286 mode and bus width  
  940.      * NOTE:  On MVME16x, chip may have been reset, so this could be a
  941.      * power-on/reset default value.
  942.      */
  943.     hostdata->saved_dmode = NCR53c7x0_read8(hostdata->dmode);
  944.     /* 
  945.      * Now that burst length and enabled/disabled status is known, 
  946.      * clue the user in on it.  
  947.      */
  948.    
  949.     ccf = clock_to_ccf_710 (expected_clock);
  950.     for (i = 0; i < 16; ++i) 
  951. hostdata->cmd_allocated[i] = 0;
  952.     if (hostdata->init_save_regs)
  953.      hostdata->init_save_regs (host);
  954.     if (hostdata->init_fixup)
  955.      hostdata->init_fixup (host);
  956.     if (!the_template) {
  957. the_template = host->hostt;
  958. first_host = host;
  959.     }
  960.     /* 
  961.      * Linux SCSI drivers have always been plagued with initialization 
  962.      * problems - some didn't work with the BIOS disabled since they expected
  963.      * initialization from it, some didn't work when the networking code
  964.      * was enabled and registers got scrambled, etc.
  965.      *
  966.      * To avoid problems like this, in the future, we will do a soft 
  967.      * reset on the SCSI chip, taking it back to a sane state.
  968.      */
  969.     hostdata->soft_reset (host);
  970. #if 1
  971.     hostdata->debug_count_limit = -1;
  972. #else
  973.     hostdata->debug_count_limit = 1;
  974. #endif
  975.     hostdata->intrs = -1;
  976.     hostdata->resets = -1;
  977.     memcpy ((void *) hostdata->synchronous_want, (void *) sdtr_message, 
  978. sizeof (hostdata->synchronous_want));
  979.     NCR53c7x0_driver_init (host);
  980.     if (request_irq(host->irq, NCR53c7x0_intr, SA_SHIRQ, "53c7xx", host))
  981.     {
  982. printk("scsi%d : IRQ%d not free, detachingn",
  983. host->host_no, host->irq);
  984. goto err_unregister;
  985.     } 
  986.     if ((hostdata->run_tests && hostdata->run_tests(host) == -1) ||
  987.         (hostdata->options & OPTION_DEBUG_TESTS_ONLY)) {
  988.      /* XXX Should disable interrupts, etc. here */
  989. goto err_free_irq;
  990.     } else {
  991. if (host->io_port)  {
  992.     host->n_io_port = 128;
  993.     if (!request_region (host->io_port, host->n_io_port, "ncr53c7xx"))
  994. goto err_free_irq;
  995. }
  996.     }
  997.     
  998.     if (NCR53c7x0_read8 (SBCL_REG) & SBCL_BSY) {
  999. printk ("scsi%d : bus wedge, doing SCSI resetn", host->host_no);
  1000. hard_reset (host);
  1001.     }
  1002.     return 0;
  1003.  err_free_irq:
  1004.     free_irq(host->irq,  NCR53c7x0_intr);
  1005.  err_unregister:
  1006.     scsi_unregister(host);
  1007.     return -1;
  1008. }
  1009. /* 
  1010.  * Function : static int ncr53c7xx_init(Scsi_Host_Template *tpnt, int board, 
  1011.  * int chip, u32 base, int io_port, int irq, int dma, long long options,
  1012.  * int clock);
  1013.  *
  1014.  * Purpose : initializes a NCR53c7,8x0 based on base addresses,
  1015.  * IRQ, and DMA channel.
  1016.  *
  1017.  * Inputs : tpnt - Template for this SCSI adapter, board - board level
  1018.  * product, chip - 710
  1019.  * 
  1020.  * Returns : 0 on success, -1 on failure.
  1021.  *
  1022.  */
  1023. int 
  1024. ncr53c7xx_init (Scsi_Host_Template *tpnt, int board, int chip,
  1025.     unsigned long base, int io_port, int irq, int dma, 
  1026.     long long options, int clock)
  1027. {
  1028.     struct Scsi_Host *instance;
  1029.     struct NCR53c7x0_hostdata *hostdata;
  1030.     char chip_str[80];
  1031.     int script_len = 0, dsa_len = 0, size = 0, max_cmd_size = 0,
  1032. schedule_size = 0, ok = 0;
  1033.     void *tmp;
  1034.     unsigned long page;
  1035.     switch (chip) {
  1036.     case 710:
  1037.     case 770:
  1038. schedule_size = (tpnt->can_queue + 1) * 8 /* JUMP instruction size */;
  1039. script_len = NCR53c7xx_script_len;
  1040.      dsa_len = NCR53c7xx_dsa_len;
  1041.      options |= OPTION_INTFLY;
  1042.      sprintf (chip_str, "NCR53c%d", chip);
  1043.      break;
  1044.     default:
  1045.      printk("scsi-ncr53c7xx : unsupported SCSI chip %dn", chip);
  1046.      return -1;
  1047.     }
  1048.     printk("scsi-ncr53c7xx : %s at memory 0x%lx, io 0x%x, irq %d",
  1049.      chip_str, base, io_port, irq);
  1050.     if (dma == DMA_NONE)
  1051.      printk("n");
  1052.     else 
  1053.      printk(", dma %dn", dma);
  1054.     if (options & OPTION_DEBUG_PROBE_ONLY) {
  1055.      printk ("scsi-ncr53c7xx : probe only enabled, aborting initializationn");
  1056.      return -1;
  1057.     }
  1058.     max_cmd_size = sizeof(struct NCR53c7x0_cmd) + dsa_len +
  1059.      /* Size of dynamic part of command structure : */
  1060. 2 * /* Worst case : we don't know if we need DATA IN or DATA out */
  1061. ( 2 * /* Current instructions per scatter/gather segment */ 
  1062.            tpnt->sg_tablesize + 
  1063.                   3 /* Current startup / termination required per phase */
  1064. ) *
  1065. 8 /* Each instruction is eight bytes */;
  1066.     /* Allocate fixed part of hostdata, dynamic part to hold appropriate
  1067.        SCSI SCRIPT(tm) plus a single, maximum-sized NCR53c7x0_cmd structure.
  1068.        We need a NCR53c7x0_cmd structure for scan_scsis() when we are 
  1069.        not loaded as a module, and when we're loaded as a module, we 
  1070.        can't use a non-dynamically allocated structure because modules
  1071.        are vmalloc()'d, which can allow structures to cross page 
  1072.        boundaries and breaks our physical/virtual address assumptions
  1073.        for DMA.
  1074.        So, we stick it past the end of our hostdata structure.
  1075.        ASSUMPTION : 
  1076.          Regardless of how many simultaneous SCSI commands we allow,
  1077.  the probe code only executes a _single_ instruction at a time,
  1078.  so we only need one here, and don't need to allocate NCR53c7x0_cmd
  1079.  structures for each target until we are no longer in scan_scsis
  1080.  and kmalloc() has become functional (memory_init() happens 
  1081.  after all device driver initialization).
  1082.     */
  1083.     size = sizeof(struct NCR53c7x0_hostdata) + script_len + 
  1084.     /* Note that alignment will be guaranteed, since we put the command
  1085.        allocated at probe time after the fixed-up SCSI script, which 
  1086.        consists of 32 bit words, aligned on a 32 bit boundary.  But
  1087.        on a 64bit machine we need 8 byte alignment for hostdata->free, so
  1088.        we add in another 4 bytes to take care of potential misalignment
  1089.        */
  1090. (sizeof(void *) - sizeof(u32)) + max_cmd_size + schedule_size;
  1091.     page = __get_free_pages(GFP_ATOMIC,1);
  1092.     if(page==0)
  1093.     {
  1094.      printk(KERN_ERR "53c7xx: out of memory.n");
  1095.      return -ENOMEM;
  1096.     }
  1097. #ifdef FORCE_DSA_ALIGNMENT
  1098.     /*
  1099.      * 53c710 rev.0 doesn't have an add-with-carry instruction.
  1100.      * Ensure we allocate enough memory to force DSA alignment.
  1101.     */
  1102.     size += 256;
  1103. #endif
  1104.     /* Size should be < 8K, so we can fit it in two pages. */
  1105.     if (size > 8192) {
  1106.       printk(KERN_ERR "53c7xx: hostdata > 8Kn");
  1107.       return -1;
  1108.     }
  1109.     instance = scsi_register (tpnt, 4);
  1110.     if (!instance)
  1111.     {
  1112.         free_page(page);
  1113. return -1;
  1114.     }
  1115.     instance->hostdata[0] = page;
  1116.     memset((void *)instance->hostdata[0], 0, 8192);
  1117.     cache_push(virt_to_phys((void *)(instance->hostdata[0])), 8192);
  1118.     cache_clear(virt_to_phys((void *)(instance->hostdata[0])), 8192);
  1119.     kernel_set_cachemode((void *)(instance->hostdata[0]), 8192,
  1120.  IOMAP_NOCACHE_SER);
  1121.     /* FIXME : if we ever support an ISA NCR53c7xx based board, we
  1122.        need to check if the chip is running in a 16 bit mode, and if so 
  1123.        unregister it if it is past the 16M (0x1000000) mark */
  1124.     hostdata = (struct NCR53c7x0_hostdata *)instance->hostdata[0];
  1125.     hostdata->size = size;
  1126.     hostdata->script_count = script_len / sizeof(u32);
  1127.     hostdata->board = board;
  1128.     hostdata->chip = chip;
  1129.     /*
  1130.      * Being memory mapped is more desirable, since 
  1131.      *
  1132.      * - Memory accesses may be faster.
  1133.      *
  1134.      * - The destination and source address spaces are the same for 
  1135.      *  all instructions, meaning we don't have to twiddle dmode or 
  1136.      *  any other registers.
  1137.      *
  1138.      * So, we try for memory mapped, and if we don't get it,
  1139.      * we go for port mapped, and that failing we tell the user
  1140.      * it can't work.
  1141.      */
  1142.     if (base) {
  1143. instance->base = (unsigned long) base;
  1144. /* Check for forced I/O mapping */
  1145.      if (!(options & OPTION_IO_MAPPED)) {
  1146.     options |= OPTION_MEMORY_MAPPED;
  1147.     ok = 1;
  1148. }
  1149.     } else {
  1150. options &= ~OPTION_MEMORY_MAPPED;
  1151.     }
  1152.     if (io_port) {
  1153. instance->io_port = io_port;
  1154. options |= OPTION_IO_MAPPED;
  1155. ok = 1;
  1156.     } else {
  1157. options &= ~OPTION_IO_MAPPED;
  1158.     }
  1159.     if (!ok) {
  1160. printk ("scsi%d : not initializing, no I/O or memory mapping known n",
  1161.     instance->host_no);
  1162. scsi_unregister (instance);
  1163. return -1;
  1164.     }
  1165.     instance->irq = irq;
  1166.     instance->dma_channel = dma;
  1167.     hostdata->options = options;
  1168.     hostdata->dsa_len = dsa_len;
  1169.     hostdata->max_cmd_size = max_cmd_size;
  1170.     hostdata->num_cmds = 1;
  1171.     hostdata->scsi_clock = clock;
  1172.     /* Initialize single command */
  1173.     tmp = (hostdata->script + hostdata->script_count);
  1174. #ifdef FORCE_DSA_ALIGNMENT
  1175.     {
  1176. void *t = ROUNDUP(tmp, void *);
  1177. if (((u32)t & 0xff) > CmdPageStart)
  1178.     t = (void *)((u32)t + 255);
  1179. t = (void *)(((u32)t & ~0xff) + CmdPageStart);
  1180.         hostdata->free = t;
  1181. #if 0
  1182. printk ("scsi: Registered size increased by 256 to %dn", size);
  1183. printk ("scsi: CmdPageStart = 0x%02xn", CmdPageStart);
  1184. printk ("scsi: tmp = 0x%08x, hostdata->free set to 0x%08xn",
  1185. (u32)tmp, (u32)t);
  1186. #endif
  1187.     }
  1188. #else
  1189.     hostdata->free = ROUNDUP(tmp, void *);
  1190. #endif
  1191.     hostdata->free->real = tmp;
  1192.     hostdata->free->size = max_cmd_size;
  1193.     hostdata->free->free = NULL;
  1194.     hostdata->free->next = NULL;
  1195.     hostdata->extra_allocate = 0;
  1196.     /* Allocate command start code space */
  1197.     hostdata->schedule = (chip == 700 || chip == 70066) ?
  1198. NULL : (u32 *) ((char *)hostdata->free + max_cmd_size);
  1199. /* 
  1200.  * For diagnostic purposes, we don't really care how fast things blaze.
  1201.  * For profiling, we want to access the 800ns resolution system clock,
  1202.  * using a 'C' call on the host processor.
  1203.  *
  1204.  * Therefore, there's no need for the NCR chip to directly manipulate
  1205.  * this data, and we should put it wherever is most convenient for 
  1206.  * Linux.
  1207.  */
  1208.     if (track_events) 
  1209. hostdata->events = (struct NCR53c7x0_event *) (track_events ? 
  1210.     vmalloc (sizeof (struct NCR53c7x0_event) * track_events) : NULL);
  1211.     else
  1212. hostdata->events = NULL;
  1213.     if (hostdata->events) {
  1214. memset ((void *) hostdata->events, 0, sizeof(struct NCR53c7x0_event) *
  1215.     track_events);
  1216. hostdata->event_size = track_events;
  1217. hostdata->event_index = 0;
  1218.     } else 
  1219. hostdata->event_size = 0;
  1220.     return NCR53c7x0_init(instance);
  1221. }
  1222. /* 
  1223.  * Function : static void NCR53c7x0_init_fixup (struct Scsi_Host *host)
  1224.  *
  1225.  * Purpose :  copy and fixup the SCSI SCRIPTS(tm) code for this device.
  1226.  *
  1227.  * Inputs : host - pointer to this host adapter's structure
  1228.  *
  1229.  */
  1230. static void 
  1231. NCR53c7x0_init_fixup (struct Scsi_Host *host) {
  1232.     NCR53c7x0_local_declare();
  1233.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1234. host->hostdata[0];
  1235.     unsigned char tmp;
  1236.     int i, ncr_to_memory, memory_to_ncr;
  1237.     u32 base;
  1238.     NCR53c7x0_local_setup(host);
  1239.     /* XXX - NOTE : this code MUST be made endian aware */
  1240.     /*  Copy code into buffer that was allocated at detection time.  */
  1241.     memcpy ((void *) hostdata->script, (void *) SCRIPT, 
  1242. sizeof(SCRIPT));
  1243.     /* Fixup labels */
  1244.     for (i = 0; i < PATCHES; ++i) 
  1245. hostdata->script[LABELPATCHES[i]] += 
  1246.          virt_to_bus(hostdata->script);
  1247.     /* Fixup addresses of constants that used to be EXTERNAL */
  1248.     patch_abs_32 (hostdata->script, 0, NCR53c7xx_msg_abort, 
  1249.      virt_to_bus(&(hostdata->NCR53c7xx_msg_abort)));
  1250.     patch_abs_32 (hostdata->script, 0, NCR53c7xx_msg_reject, 
  1251.      virt_to_bus(&(hostdata->NCR53c7xx_msg_reject)));
  1252.     patch_abs_32 (hostdata->script, 0, NCR53c7xx_zero, 
  1253.      virt_to_bus(&(hostdata->NCR53c7xx_zero)));
  1254.     patch_abs_32 (hostdata->script, 0, NCR53c7xx_sink, 
  1255.      virt_to_bus(&(hostdata->NCR53c7xx_sink)));
  1256.     patch_abs_32 (hostdata->script, 0, NOP_insn,
  1257. virt_to_bus(&(hostdata->NOP_insn)));
  1258.     patch_abs_32 (hostdata->script, 0, schedule,
  1259. virt_to_bus((void *) hostdata->schedule));
  1260.     /* Fixup references to external variables: */
  1261.     for (i = 0; i < EXTERNAL_PATCHES_LEN; ++i)
  1262.        hostdata->script[EXTERNAL_PATCHES[i].offset] +=
  1263.          virt_to_bus(EXTERNAL_PATCHES[i].address);
  1264.     /* 
  1265.      * Fixup absolutes set at boot-time.
  1266.      * 
  1267.      * All non-code absolute variables suffixed with "dsa_" and "int_"
  1268.      * are constants, and need no fixup provided the assembler has done 
  1269.      * it for us (I don't know what the "real" NCR assembler does in 
  1270.      * this case, my assembler does the right magic).
  1271.      */
  1272.     patch_abs_rwri_data (hostdata->script, 0, dsa_save_data_pointer, 
  1273.      Ent_dsa_code_save_data_pointer - Ent_dsa_zero);
  1274.     patch_abs_rwri_data (hostdata->script, 0, dsa_restore_pointers,
  1275.      Ent_dsa_code_restore_pointers - Ent_dsa_zero);
  1276.     patch_abs_rwri_data (hostdata->script, 0, dsa_check_reselect,
  1277.      Ent_dsa_code_check_reselect - Ent_dsa_zero);
  1278.     /*
  1279.      * Just for the hell of it, preserve the settings of 
  1280.      * Burst Length and Enable Read Line bits from the DMODE 
  1281.      * register.  Make sure SCRIPTS start automagically.
  1282.      */
  1283. #if defined(CONFIG_MVME16x) || defined(CONFIG_BVME6000)
  1284.     /* We know better what we want than 16xBug does! */
  1285.     tmp = DMODE_10_BL_8 | DMODE_10_FC2;
  1286. #else
  1287.     tmp = NCR53c7x0_read8(DMODE_REG_10);
  1288.     tmp &= (DMODE_BL_MASK | DMODE_10_FC2 | DMODE_10_FC1 | DMODE_710_PD |
  1289. DMODE_710_UO);
  1290. #endif
  1291.     if (!(hostdata->options & OPTION_MEMORY_MAPPED)) {
  1292.      base = (u32) host->io_port;
  1293.      memory_to_ncr = tmp|DMODE_800_DIOM;
  1294.      ncr_to_memory = tmp|DMODE_800_SIOM;
  1295.     } else {
  1296.      base = virt_to_bus((void *)host->base);
  1297. memory_to_ncr = ncr_to_memory = tmp;
  1298.     }
  1299.     /* SCRATCHB_REG_10 == SCRATCHA_REG_800, as it happens */
  1300.     patch_abs_32 (hostdata->script, 0, addr_scratch, base + SCRATCHA_REG_800);
  1301.     patch_abs_32 (hostdata->script, 0, addr_temp, base + TEMP_REG);
  1302.     patch_abs_32 (hostdata->script, 0, addr_dsa, base + DSA_REG);
  1303.     /*
  1304.      * I needed some variables in the script to be accessible to 
  1305.      * both the NCR chip and the host processor. For these variables,
  1306.      * I made the arbitrary decision to store them directly in the 
  1307.      * hostdata structure rather than in the RELATIVE area of the 
  1308.      * SCRIPTS.
  1309.      */
  1310.     
  1311.     patch_abs_rwri_data (hostdata->script, 0, dmode_memory_to_memory, tmp);
  1312.     patch_abs_rwri_data (hostdata->script, 0, dmode_memory_to_ncr, memory_to_ncr);
  1313.     patch_abs_rwri_data (hostdata->script, 0, dmode_ncr_to_memory, ncr_to_memory);
  1314.     patch_abs_32 (hostdata->script, 0, msg_buf, 
  1315. virt_to_bus((void *)&(hostdata->msg_buf)));
  1316.     patch_abs_32 (hostdata->script, 0, reconnect_dsa_head, 
  1317.      virt_to_bus((void *)&(hostdata->reconnect_dsa_head)));
  1318.     patch_abs_32 (hostdata->script, 0, addr_reconnect_dsa_head, 
  1319. virt_to_bus((void *)&(hostdata->addr_reconnect_dsa_head)));
  1320.     patch_abs_32 (hostdata->script, 0, reselected_identify, 
  1321.      virt_to_bus((void *)&(hostdata->reselected_identify)));
  1322. /* reselected_tag is currently unused */
  1323. #if 0
  1324.     patch_abs_32 (hostdata->script, 0, reselected_tag, 
  1325.      virt_to_bus((void *)&(hostdata->reselected_tag)));
  1326. #endif
  1327.     patch_abs_32 (hostdata->script, 0, test_dest, 
  1328. virt_to_bus((void*)&hostdata->test_dest));
  1329.     patch_abs_32 (hostdata->script, 0, test_src, 
  1330. virt_to_bus(&hostdata->test_source));
  1331.     patch_abs_32 (hostdata->script, 0, saved_dsa,
  1332. virt_to_bus(&hostdata->saved2_dsa));
  1333.     patch_abs_32 (hostdata->script, 0, emulfly,
  1334. virt_to_bus(&hostdata->emulated_intfly));
  1335.     patch_abs_rwri_data (hostdata->script, 0, dsa_check_reselect, 
  1336. (unsigned char)(Ent_dsa_code_check_reselect - Ent_dsa_zero));
  1337. /* These are for event logging; the ncr_event enum contains the 
  1338.    actual interrupt numbers. */
  1339. #ifdef A_int_EVENT_SELECT
  1340.    patch_abs_32 (hostdata->script, 0, int_EVENT_SELECT, (u32) EVENT_SELECT);
  1341. #endif
  1342. #ifdef A_int_EVENT_DISCONNECT
  1343.    patch_abs_32 (hostdata->script, 0, int_EVENT_DISCONNECT, (u32) EVENT_DISCONNECT);
  1344. #endif
  1345. #ifdef A_int_EVENT_RESELECT
  1346.    patch_abs_32 (hostdata->script, 0, int_EVENT_RESELECT, (u32) EVENT_RESELECT);
  1347. #endif
  1348. #ifdef A_int_EVENT_COMPLETE
  1349.    patch_abs_32 (hostdata->script, 0, int_EVENT_COMPLETE, (u32) EVENT_COMPLETE);
  1350. #endif
  1351. #ifdef A_int_EVENT_IDLE
  1352.    patch_abs_32 (hostdata->script, 0, int_EVENT_IDLE, (u32) EVENT_IDLE);
  1353. #endif
  1354. #ifdef A_int_EVENT_SELECT_FAILED
  1355.    patch_abs_32 (hostdata->script, 0, int_EVENT_SELECT_FAILED, 
  1356. (u32) EVENT_SELECT_FAILED);
  1357. #endif
  1358. #ifdef A_int_EVENT_BEFORE_SELECT
  1359.    patch_abs_32 (hostdata->script, 0, int_EVENT_BEFORE_SELECT,
  1360. (u32) EVENT_BEFORE_SELECT);
  1361. #endif
  1362. #ifdef A_int_EVENT_RESELECT_FAILED
  1363.    patch_abs_32 (hostdata->script, 0, int_EVENT_RESELECT_FAILED, 
  1364. (u32) EVENT_RESELECT_FAILED);
  1365. #endif
  1366.     /*
  1367.      * Make sure the NCR and Linux code agree on the location of 
  1368.      * certain fields.
  1369.      */
  1370.     hostdata->E_accept_message = Ent_accept_message;
  1371.     hostdata->E_command_complete = Ent_command_complete;
  1372.     hostdata->E_cmdout_cmdout = Ent_cmdout_cmdout;
  1373.     hostdata->E_data_transfer = Ent_data_transfer;
  1374.     hostdata->E_debug_break = Ent_debug_break;
  1375.     hostdata->E_dsa_code_template = Ent_dsa_code_template;
  1376.     hostdata->E_dsa_code_template_end = Ent_dsa_code_template_end;
  1377.     hostdata->E_end_data_transfer = Ent_end_data_transfer;
  1378.     hostdata->E_initiator_abort = Ent_initiator_abort;
  1379.     hostdata->E_msg_in = Ent_msg_in;
  1380.     hostdata->E_other_transfer = Ent_other_transfer;
  1381.     hostdata->E_other_in = Ent_other_in;
  1382.     hostdata->E_other_out = Ent_other_out;
  1383.     hostdata->E_reject_message = Ent_reject_message;
  1384.     hostdata->E_respond_message = Ent_respond_message;
  1385.     hostdata->E_select = Ent_select;
  1386.     hostdata->E_select_msgout = Ent_select_msgout;
  1387.     hostdata->E_target_abort = Ent_target_abort;
  1388. #ifdef Ent_test_0
  1389.     hostdata->E_test_0 = Ent_test_0;
  1390. #endif
  1391.     hostdata->E_test_1 = Ent_test_1;
  1392.     hostdata->E_test_2 = Ent_test_2;
  1393. #ifdef Ent_test_3
  1394.     hostdata->E_test_3 = Ent_test_3;
  1395. #endif
  1396.     hostdata->E_wait_reselect = Ent_wait_reselect;
  1397.     hostdata->E_dsa_code_begin = Ent_dsa_code_begin;
  1398.     hostdata->dsa_cmdout = A_dsa_cmdout;
  1399.     hostdata->dsa_cmnd = A_dsa_cmnd;
  1400.     hostdata->dsa_datain = A_dsa_datain;
  1401.     hostdata->dsa_dataout = A_dsa_dataout;
  1402.     hostdata->dsa_end = A_dsa_end;
  1403.     hostdata->dsa_msgin = A_dsa_msgin;
  1404.     hostdata->dsa_msgout = A_dsa_msgout;
  1405.     hostdata->dsa_msgout_other = A_dsa_msgout_other;
  1406.     hostdata->dsa_next = A_dsa_next;
  1407.     hostdata->dsa_select = A_dsa_select;
  1408.     hostdata->dsa_start = Ent_dsa_code_template - Ent_dsa_zero;
  1409.     hostdata->dsa_status = A_dsa_status;
  1410.     hostdata->dsa_jump_dest = Ent_dsa_code_fix_jump - Ent_dsa_zero + 
  1411. 8 /* destination operand */;
  1412.     /* sanity check */
  1413.     if (A_dsa_fields_start != Ent_dsa_code_template_end - 
  1414.      Ent_dsa_zero) 
  1415.      printk("scsi%d : NCR dsa_fields start is %d not %dn",
  1416.          host->host_no, A_dsa_fields_start, Ent_dsa_code_template_end - 
  1417.          Ent_dsa_zero);
  1418.     printk("scsi%d : NCR code relocated to 0x%lx (virt 0x%p)n", host->host_no,
  1419. virt_to_bus(hostdata->script), hostdata->script);
  1420. }
  1421. /*
  1422.  * Function : static int NCR53c7xx_run_tests (struct Scsi_Host *host)
  1423.  *
  1424.  * Purpose : run various verification tests on the NCR chip, 
  1425.  * including interrupt generation, and proper bus mastering
  1426.  *  operation.
  1427.  * 
  1428.  * Inputs : host - a properly initialized Scsi_Host structure
  1429.  *
  1430.  * Preconditions : the NCR chip must be in a halted state.
  1431.  *
  1432.  * Returns : 0 if all tests were successful, -1 on error.
  1433.  * 
  1434.  */
  1435. static int 
  1436. NCR53c7xx_run_tests (struct Scsi_Host *host) {
  1437.     NCR53c7x0_local_declare();
  1438.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1439. host->hostdata[0];
  1440.     unsigned long timeout;
  1441.     u32 start;
  1442.     int failed, i;
  1443.     unsigned long flags;
  1444.     NCR53c7x0_local_setup(host);
  1445.     /* The NCR chip _must_ be idle to run the test scripts */
  1446.     save_flags(flags);
  1447.     cli();
  1448.     if (!hostdata->idle) {
  1449. printk ("scsi%d : chip not idle, aborting testsn", host->host_no);
  1450. restore_flags(flags);
  1451. return -1;
  1452.     }
  1453.     /* 
  1454.      * Check for functional interrupts, this could work as an
  1455.      * autoprobe routine.
  1456.      */
  1457.     if ((hostdata->options & OPTION_DEBUG_TEST1) && 
  1458.     hostdata->state != STATE_DISABLED) {
  1459. hostdata->idle = 0;
  1460. hostdata->test_running = 1;
  1461. hostdata->test_completed = -1;
  1462. hostdata->test_dest = 0;
  1463. hostdata->test_source = 0xdeadbeef;
  1464. start = virt_to_bus (hostdata->script) + hostdata->E_test_1;
  1465.      hostdata->state = STATE_RUNNING;
  1466. printk ("scsi%d : test 1", host->host_no);
  1467. NCR53c7x0_write32 (DSP_REG, start);
  1468. if (hostdata->options & OPTION_DEBUG_TRACE)
  1469.     NCR53c7x0_write8 (DCNTL_REG, hostdata->saved_dcntl | DCNTL_SSM |
  1470. DCNTL_STD);
  1471. printk (" startedn");
  1472. restore_flags(flags);
  1473. /* 
  1474.  * This is currently a .5 second timeout, since (in theory) no slow 
  1475.  * board will take that long.  In practice, we've seen one 
  1476.  * pentium which occassionally fails with this, but works with 
  1477.  * 10 times as much?
  1478.  */
  1479. timeout = jiffies + 5 * HZ / 10;
  1480. while ((hostdata->test_completed == -1) && time_before(jiffies, timeout))
  1481. barrier();
  1482. failed = 1;
  1483. if (hostdata->test_completed == -1)
  1484.     printk ("scsi%d : driver test 1 timed out%sn",host->host_no ,
  1485. (hostdata->test_dest == 0xdeadbeef) ? 
  1486.     " due to lost interrupt.n"
  1487.     "         Please verify that the correct IRQ is being used for your board,n"
  1488.     : "");
  1489. else if (hostdata->test_completed != 1) 
  1490.     printk ("scsi%d : test 1 bad interrupt value (%d)n", 
  1491. host->host_no, hostdata->test_completed);
  1492. else 
  1493.     failed = (hostdata->test_dest != 0xdeadbeef);
  1494. if (hostdata->test_dest != 0xdeadbeef) {
  1495.     printk ("scsi%d : driver test 1 read 0x%x instead of 0xdeadbeef indicating an"
  1496.                     "         probable cache invalidation problem.  Please configure cachingn"
  1497.     "         as write-through or disabledn",
  1498. host->host_no, hostdata->test_dest);
  1499. }
  1500. if (failed) {
  1501.     printk ("scsi%d : DSP = 0x%p (script at 0x%p, start at 0x%x)n",
  1502. host->host_no, bus_to_virt(NCR53c7x0_read32(DSP_REG)),
  1503. hostdata->script, start);
  1504.     printk ("scsi%d : DSPS = 0x%xn", host->host_no,
  1505. NCR53c7x0_read32(DSPS_REG));
  1506.     restore_flags(flags);
  1507.     return -1;
  1508. }
  1509.      hostdata->test_running = 0;
  1510.     }
  1511.     if ((hostdata->options & OPTION_DEBUG_TEST2) && 
  1512. hostdata->state != STATE_DISABLED) {
  1513. u32 dsa[48];
  1514.      unsigned char identify = IDENTIFY(0, 0);
  1515. unsigned char cmd[6];
  1516. unsigned char data[36];
  1517.      unsigned char status = 0xff;
  1518.      unsigned char msg = 0xff;
  1519.      cmd[0] = INQUIRY;
  1520.      cmd[1] = cmd[2] = cmd[3] = cmd[5] = 0;
  1521.      cmd[4] = sizeof(data); 
  1522.      dsa[2] = 1;
  1523.      dsa[3] = virt_to_bus(&identify);
  1524.      dsa[4] = 6;
  1525.      dsa[5] = virt_to_bus(&cmd);
  1526.      dsa[6] = sizeof(data);
  1527.      dsa[7] = virt_to_bus(&data);
  1528.      dsa[8] = 1;
  1529.      dsa[9] = virt_to_bus(&status);
  1530.      dsa[10] = 1;
  1531.      dsa[11] = virt_to_bus(&msg);
  1532. for (i = 0; i < 6; ++i) {
  1533. #ifdef VALID_IDS
  1534.     if (!hostdata->valid_ids[i])
  1535. continue;
  1536. #endif
  1537.     cli();
  1538.     if (!hostdata->idle) {
  1539. printk ("scsi%d : chip not idle, aborting testsn", host->host_no);
  1540. restore_flags(flags);
  1541. return -1;
  1542.     }
  1543.     /* 710: bit mapped scsi ID, async   */
  1544.             dsa[0] = (1 << i) << 16;
  1545.     hostdata->idle = 0;
  1546.     hostdata->test_running = 2;
  1547.     hostdata->test_completed = -1;
  1548.     start = virt_to_bus(hostdata->script) + hostdata->E_test_2;
  1549.     hostdata->state = STATE_RUNNING;
  1550.     NCR53c7x0_write32 (DSA_REG, virt_to_bus(dsa));
  1551.     NCR53c7x0_write32 (DSP_REG, start);
  1552.     if (hostdata->options & OPTION_DEBUG_TRACE)
  1553.         NCR53c7x0_write8 (DCNTL_REG, hostdata->saved_dcntl |
  1554. DCNTL_SSM | DCNTL_STD);
  1555.     restore_flags(flags);
  1556.     timeout = jiffies + 5 * HZ; /* arbitrary */
  1557.     while ((hostdata->test_completed == -1) && time_before(jiffies, timeout))
  1558.      barrier();
  1559.     NCR53c7x0_write32 (DSA_REG, 0);
  1560.     if (hostdata->test_completed == 2) {
  1561. data[35] = 0;
  1562. printk ("scsi%d : test 2 INQUIRY to target %d, lun 0 : %sn",
  1563.     host->host_no, i, data + 8);
  1564. printk ("scsi%d : status ", host->host_no);
  1565. print_status (status);
  1566. printk ("nscsi%d : message ", host->host_no);
  1567. print_msg (&msg);
  1568. printk ("n");
  1569.     } else if (hostdata->test_completed == 3) {
  1570. printk("scsi%d : test 2 no connection with target %dn",
  1571.     host->host_no, i);
  1572. if (!hostdata->idle) {
  1573.     printk("scsi%d : not idlen", host->host_no);
  1574.     restore_flags(flags);
  1575.     return -1;
  1576. }
  1577.     } else if (hostdata->test_completed == -1) {
  1578. printk ("scsi%d : test 2 timed outn", host->host_no);
  1579. restore_flags(flags);
  1580. return -1;
  1581.     } 
  1582.     hostdata->test_running = 0;
  1583. }
  1584.     }
  1585.     restore_flags(flags);
  1586.     return 0;
  1587. }
  1588. /*
  1589.  * Function : static void NCR53c7xx_dsa_fixup (struct NCR53c7x0_cmd *cmd)
  1590.  *
  1591.  * Purpose : copy the NCR53c8xx dsa structure into cmd's dsa buffer,
  1592.  *  performing all necessary relocation.
  1593.  *
  1594.  * Inputs : cmd, a NCR53c7x0_cmd structure with a dsa area large
  1595.  * enough to hold the NCR53c8xx dsa.
  1596.  */
  1597. static void 
  1598. NCR53c7xx_dsa_fixup (struct NCR53c7x0_cmd *cmd) {
  1599.     Scsi_Cmnd *c = cmd->cmd;
  1600.     struct Scsi_Host *host = c->host;
  1601.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1602.      host->hostdata[0];
  1603.     int i;
  1604.     memcpy (cmd->dsa, hostdata->script + (hostdata->E_dsa_code_template / 4),
  1605.      hostdata->E_dsa_code_template_end - hostdata->E_dsa_code_template);
  1606.     /* 
  1607.      * Note : within the NCR 'C' code, dsa points to the _start_
  1608.      * of the DSA structure, and _not_ the offset of dsa_zero within
  1609.      * that structure used to facilitate shorter signed offsets
  1610.      * for the 8 bit ALU.
  1611.      * 
  1612.      * The implications of this are that 
  1613.      * 
  1614.      * - 32 bit A_dsa_* absolute values require an additional 
  1615.      *   dsa_zero added to their value to be correct, since they are 
  1616.      *   relative to dsa_zero which is in essentially a separate
  1617.      *   space from the code symbols.
  1618.      *
  1619.      * - All other symbols require no special treatment.
  1620.      */
  1621.     patch_abs_tci_data (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1622.      dsa_temp_lun, c->lun);
  1623.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1624. dsa_temp_addr_next, virt_to_bus(&cmd->dsa_next_addr));
  1625.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1626.      dsa_temp_next, virt_to_bus(cmd->dsa) + Ent_dsa_zero -
  1627. Ent_dsa_code_template + A_dsa_next);
  1628.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32), 
  1629.      dsa_temp_sync, virt_to_bus((void *)hostdata->sync[c->target].script));
  1630.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32), 
  1631.      dsa_sscf_710, virt_to_bus((void *)&hostdata->sync[c->target].sscf_710));
  1632.     patch_abs_tci_data (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1633.          dsa_temp_target, 1 << c->target);
  1634.     /* XXX - new pointer stuff */
  1635.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1636.      dsa_temp_addr_saved_pointer, virt_to_bus(&cmd->saved_data_pointer));
  1637.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1638.      dsa_temp_addr_saved_residual, virt_to_bus(&cmd->saved_residual));
  1639.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1640.      dsa_temp_addr_residual, virt_to_bus(&cmd->residual));
  1641.     /*  XXX - new start stuff */
  1642.     patch_abs_32 (cmd->dsa, Ent_dsa_code_template / sizeof(u32),
  1643. dsa_temp_addr_dsa_value, virt_to_bus(&cmd->dsa_addr));
  1644. }
  1645. /* 
  1646.  * Function : run_process_issue_queue (void)
  1647.  * 
  1648.  * Purpose : insure that the coroutine is running and will process our 
  1649.  *  request.  process_issue_queue_running is checked/set here (in an 
  1650.  * inline function) rather than in process_issue_queue itself to reduce 
  1651.  *  the chances of stack overflow.
  1652.  *
  1653.  */
  1654. static volatile int process_issue_queue_running = 0;
  1655. static __inline__ void 
  1656. run_process_issue_queue(void) {
  1657.     unsigned long flags;
  1658.     save_flags (flags);
  1659.     cli();
  1660.     if (!process_issue_queue_running) {
  1661. process_issue_queue_running = 1;
  1662.         process_issue_queue(flags);
  1663. /* 
  1664.          * process_issue_queue_running is cleared in process_issue_queue 
  1665.  * once it can't do more work, and process_issue_queue exits with 
  1666.  * interrupts disabled.
  1667.  */
  1668.     }
  1669.     restore_flags (flags);
  1670. }
  1671. /*
  1672.  * Function : static void abnormal_finished (struct NCR53c7x0_cmd *cmd, int
  1673.  * result)
  1674.  *
  1675.  * Purpose : mark SCSI command as finished, OR'ing the host portion 
  1676.  * of the result word into the result field of the corresponding
  1677.  * Scsi_Cmnd structure, and removing it from the internal queues.
  1678.  *
  1679.  * Inputs : cmd - command, result - entire result field
  1680.  *
  1681.  * Preconditions : the  NCR chip should be in a halted state when 
  1682.  * abnormal_finished is run, since it modifies structures which
  1683.  * the NCR expects to have exclusive access to.
  1684.  */
  1685. static void 
  1686. abnormal_finished (struct NCR53c7x0_cmd *cmd, int result) {
  1687.     Scsi_Cmnd *c = cmd->cmd;
  1688.     struct Scsi_Host *host = c->host;
  1689.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1690.      host->hostdata[0];
  1691.     unsigned long flags;
  1692.     int left, found;
  1693.     volatile struct NCR53c7x0_cmd * linux_search;
  1694.     volatile struct NCR53c7x0_cmd * volatile *linux_prev;
  1695.     volatile u32 *ncr_prev, *ncrcurrent, ncr_search;
  1696. #if 0
  1697.     printk ("scsi%d: abnormal finishedn", host->host_no);
  1698. #endif
  1699.     save_flags(flags);
  1700.     cli();
  1701.     found = 0;
  1702.     /* 
  1703.      * Traverse the NCR issue array until we find a match or run out 
  1704.      * of instructions.  Instructions in the NCR issue array are 
  1705.      * either JUMP or NOP instructions, which are 2 words in length.
  1706.      */
  1707.     for (found = 0, left = host->can_queue, ncrcurrent = hostdata->schedule; 
  1708. left > 0; --left, ncrcurrent += 2)
  1709.     {
  1710. if (issue_to_cmd (host, hostdata, (u32 *) ncrcurrent) == cmd) 
  1711. {
  1712.     ncrcurrent[0] = hostdata->NOP_insn;
  1713.     ncrcurrent[1] = 0xdeadbeef;
  1714.     ++found;
  1715.     break;
  1716. }
  1717.     }
  1718.     /* 
  1719.      * Traverse the NCR reconnect list of DSA structures until we find 
  1720.      * a pointer to this dsa or have found too many command structures.  
  1721.      * We let prev point at the next field of the previous element or 
  1722.      * head of the list, so we don't do anything different for removing 
  1723.      * the head element.  
  1724.      */
  1725.     for (left = host->can_queue,
  1726.     ncr_search = hostdata->reconnect_dsa_head, 
  1727.     ncr_prev = &hostdata->reconnect_dsa_head;
  1728. left >= 0 && ncr_search && 
  1729.     ((char*)bus_to_virt(ncr_search) + hostdata->dsa_start) 
  1730. != (char *) cmd->dsa;
  1731. ncr_prev = (u32*) ((char*)bus_to_virt(ncr_search) + 
  1732.     hostdata->dsa_next), ncr_search = *ncr_prev, --left);
  1733.     if (left < 0) 
  1734. printk("scsi%d: loop detected in ncr reconncect listn",
  1735.     host->host_no);
  1736.     else if (ncr_search) {
  1737. if (found)
  1738.     printk("scsi%d: scsi %ld in ncr issue array and reconnect listsn",
  1739. host->host_no, c->pid);
  1740. else {
  1741.     volatile u32 * next = (u32 *) 
  1742.      ((char *)bus_to_virt(ncr_search) + hostdata->dsa_next);
  1743.     *ncr_prev = *next;
  1744. /* If we're at the tail end of the issue queue, update that pointer too. */
  1745.     found = 1;
  1746. }
  1747.     }
  1748.     /*
  1749.      * Traverse the host running list until we find this command or discover
  1750.      * we have too many elements, pointing linux_prev at the next field of the 
  1751.      * linux_previous element or head of the list, search at this element.
  1752.      */
  1753.     for (left = host->can_queue, linux_search = hostdata->running_list, 
  1754.     linux_prev = &hostdata->running_list;
  1755. left >= 0 && linux_search && linux_search != cmd;
  1756. linux_prev = &(linux_search->next), 
  1757.     linux_search = linux_search->next, --left);
  1758.     
  1759.     if (left < 0) 
  1760. printk ("scsi%d: loop detected in host running list for scsi pid %ldn",
  1761.     host->host_no, c->pid);
  1762.     else if (linux_search) {
  1763. *linux_prev = linux_search->next;
  1764. --hostdata->busy[c->target][c->lun];
  1765.     }
  1766.     /* Return the NCR command structure to the free list */
  1767.     cmd->next = hostdata->free;
  1768.     hostdata->free = cmd;
  1769.     c->host_scribble = NULL;
  1770.     /* And return */
  1771.     c->result = result;
  1772.     c->scsi_done(c);
  1773.     restore_flags(flags);
  1774.     run_process_issue_queue();
  1775. }
  1776. /* 
  1777.  * Function : static void intr_break (struct Scsi_Host *host,
  1778.  *  struct NCR53c7x0_cmd *cmd)
  1779.  *
  1780.  * Purpose :  Handler for breakpoint interrupts from a SCSI script
  1781.  *
  1782.  * Inputs : host - pointer to this host adapter's structure,
  1783.  *  cmd - pointer to the command (if any) dsa was pointing 
  1784.  *  to.
  1785.  *
  1786.  */
  1787. static void 
  1788. intr_break (struct Scsi_Host *host, struct 
  1789.     NCR53c7x0_cmd *cmd) {
  1790.     NCR53c7x0_local_declare();
  1791.     struct NCR53c7x0_break *bp;
  1792. #if 0
  1793.     Scsi_Cmnd *c = cmd ? cmd->cmd : NULL;
  1794. #endif
  1795.     u32 *dsp;
  1796.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1797. host->hostdata[0];
  1798.     unsigned long flags;
  1799.     NCR53c7x0_local_setup(host);
  1800.     /*
  1801.      * Find the break point corresponding to this address, and 
  1802.      * dump the appropriate debugging information to standard 
  1803.      * output.  
  1804.      */
  1805.     save_flags(flags);
  1806.     cli();
  1807.     dsp = (u32 *) bus_to_virt(NCR53c7x0_read32(DSP_REG));
  1808.     for (bp = hostdata->breakpoints; bp && bp->address != dsp; 
  1809.      bp = bp->next);
  1810.     if (!bp) 
  1811.      panic("scsi%d : break point interrupt from %p with no breakpoint!",
  1812.          host->host_no, dsp);
  1813.     /*
  1814.      * Configure the NCR chip for manual start mode, so that we can 
  1815.      * point the DSP register at the instruction that follows the 
  1816.      * INT int_debug_break instruction.
  1817.      */
  1818.     NCR53c7x0_write8 (hostdata->dmode, 
  1819. NCR53c7x0_read8(hostdata->dmode)|DMODE_MAN);
  1820.     /*
  1821.      * And update the DSP register, using the size of the old 
  1822.      * instruction in bytes.
  1823.      */
  1824.     restore_flags(flags);
  1825. }
  1826. /*
  1827.  * Function : static void print_synchronous (const char *prefix, 
  1828.  * const unsigned char *msg)
  1829.  * 
  1830.  * Purpose : print a pretty, user and machine parsable representation
  1831.  * of a SDTR message, including the "real" parameters, data
  1832.  * clock so we can tell transfer rate at a glance.
  1833.  *
  1834.  * Inputs ; prefix - text to prepend, msg - SDTR message (5 bytes)
  1835.  */
  1836. static void
  1837. print_synchronous (const char *prefix, const unsigned char *msg) {
  1838.     if (msg[4]) {
  1839. int Hz = 1000000000 / (msg[3] * 4);
  1840. int integer = Hz / 1000000;
  1841. int fraction = (Hz - (integer * 1000000)) / 10000;
  1842. printk ("%speriod %dns offset %d %d.%02dMHz %s SCSI%sn",
  1843.     prefix, (int) msg[3] * 4, (int) msg[4], integer, fraction,
  1844.     (((msg[3] * 4) < 200) ? "FAST" : "synchronous"),
  1845.     (((msg[3] * 4) < 200) ? "-II" : ""));
  1846.     } else 
  1847. printk ("%sasynchronous SCSIn", prefix);
  1848. }
  1849. /*
  1850.  * Function : static void set_synchronous (struct Scsi_Host *host, 
  1851.  *   int target, int sxfer, int scntl3, int now_connected)
  1852.  *
  1853.  * Purpose : reprogram transfers between the selected SCSI initiator and 
  1854.  * target with the given register values; in the indirect
  1855.  * select operand, reselection script, and chip registers.
  1856.  *
  1857.  * Inputs : host - NCR53c7,8xx SCSI host, target - number SCSI target id,
  1858.  * sxfer and scntl3 - NCR registers. now_connected - if non-zero, 
  1859.  * we should reprogram the registers now too.
  1860.  *
  1861.  *      NOTE:  For 53c710, scntl3 is actually used for SCF bits from
  1862.  * SBCL, as we don't have a SCNTL3.
  1863.  */
  1864. static void
  1865. set_synchronous (struct Scsi_Host *host, int target, int sxfer, int scntl3,
  1866.     int now_connected) {
  1867.     NCR53c7x0_local_declare();
  1868.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *) 
  1869. host->hostdata[0];
  1870.     u32 *script;
  1871.     NCR53c7x0_local_setup(host);
  1872.     /* These are eight bit registers */
  1873.     sxfer &= 0xff;
  1874.     scntl3 &= 0xff;
  1875.     hostdata->sync[target].sxfer_sanity = sxfer;
  1876.     hostdata->sync[target].scntl3_sanity = scntl3;
  1877. /* 
  1878.  * HARD CODED : synchronous script is EIGHT words long.  This 
  1879.  * must agree with 53c7.8xx.h
  1880.  */
  1881.     if ((hostdata->chip != 700) && (hostdata->chip != 70066)) {
  1882. hostdata->sync[target].select_indirect = (1 << target) << 16 |
  1883. (sxfer << 8);
  1884. hostdata->sync[target].sscf_710 = scntl3;
  1885. script = (u32 *) hostdata->sync[target].script;
  1886. /* XXX - add NCR53c7x0 code to reprogram SCF bits if we want to */
  1887. script[0] = ((DCMD_TYPE_RWRI | DCMD_RWRI_OPC_MODIFY |
  1888. DCMD_RWRI_OP_MOVE) << 24) |
  1889. (SBCL_REG << 16) | (scntl3 << 8);
  1890. script[1] = 0;
  1891. script += 2;
  1892. script[0] = ((DCMD_TYPE_RWRI | DCMD_RWRI_OPC_MODIFY |
  1893.     DCMD_RWRI_OP_MOVE) << 24) |
  1894. (SXFER_REG << 16) | (sxfer << 8);
  1895. script[1] = 0;
  1896. script += 2;
  1897. #ifdef DEBUG_SYNC_INTR
  1898. if (hostdata->options & OPTION_DEBUG_DISCONNECT) {
  1899.     script[0] = ((DCMD_TYPE_TCI|DCMD_TCI_OP_INT) << 24) | DBC_TCI_TRUE;
  1900.     script[1] = DEBUG_SYNC_INTR;
  1901.     script += 2;
  1902. }
  1903. #endif
  1904. script[0] = ((DCMD_TYPE_TCI|DCMD_TCI_OP_RETURN) << 24) | DBC_TCI_TRUE;
  1905. script[1] = 0;
  1906. script += 2;
  1907.     }
  1908.     if (hostdata->options & OPTION_DEBUG_SYNCHRONOUS) 
  1909. printk ("scsi%d : target %d sync parameters are sxfer=0x%x, scntl3=0x%xn",
  1910. host->host_no, target, sxfer, scntl3);
  1911.     if (now_connected) {
  1912. NCR53c7x0_write8(SBCL_REG, scntl3);
  1913. NCR53c7x0_write8(SXFER_REG, sxfer);
  1914.     }
  1915. }
  1916. /*
  1917.  * Function : static int asynchronous (struct Scsi_Host *host, int target)
  1918.  *
  1919.  * Purpose : reprogram between the selected SCSI Host adapter and target 
  1920.  *      (assumed to be currently connected) for asynchronous transfers.
  1921.  *
  1922.  * Inputs : host - SCSI host structure, target - numeric target ID.
  1923.  *
  1924.  * Preconditions : the NCR chip should be in one of the halted states
  1925.  */
  1926.     
  1927. static void
  1928. asynchronous (struct Scsi_Host *host, int target) {
  1929.     NCR53c7x0_local_declare();
  1930.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1931. host->hostdata[0];
  1932.     NCR53c7x0_local_setup(host);
  1933.     set_synchronous (host, target, /* no offset */ 0, hostdata->saved_scntl3,
  1934. 1);
  1935.     printk ("scsi%d : setting target %d to asynchronous SCSIn",
  1936. host->host_no, target);
  1937. }
  1938. /* 
  1939.  * XXX - do we want to go out of our way (ie, add extra code to selection
  1940.  *  in the NCR53c710/NCR53c720 script) to reprogram the synchronous
  1941.  *  conversion bits, or can we be content in just setting the 
  1942.  *  sxfer bits?  I chose to do so [richard@sleepie.demon.co.uk]
  1943.  */
  1944. /* Table for NCR53c8xx synchronous values */
  1945. /* This table is also correct for 710, allowing that scf=4 is equivalent
  1946.  * of SSCF=0 (ie use DCNTL, divide by 3) for a 50.01-66.00MHz clock.
  1947.  * For any other clock values, we cannot use entries with SCF values of
  1948.  * 4.  I guess that for a 66MHz clock, the slowest it will set is 2MHz,
  1949.  * and for a 50MHz clock, the slowest will be 2.27Mhz.  Should check
  1950.  * that a device doesn't try and negotiate sync below these limits!
  1951.  */
  1952.  
  1953. static const struct {
  1954.     int div; /* Total clock divisor * 10 */
  1955.     unsigned char scf; /* */
  1956.     unsigned char tp; /* 4 + tp = xferp divisor */
  1957. } syncs[] = {
  1958. /* div scf tp div scf tp div scf tp */
  1959.     { 40, 1, 0}, { 50, 1, 1}, { 60, 1, 2}, 
  1960.     { 70, 1, 3}, { 75, 2, 1}, { 80, 1, 4},
  1961.     { 90, 1, 5}, { 100, 1, 6}, { 105, 2, 3},
  1962.     { 110, 1, 7}, { 120, 2, 4}, { 135, 2, 5},
  1963.     { 140, 3, 3}, { 150, 2, 6}, { 160, 3, 4},
  1964.     { 165, 2, 7}, { 180, 3, 5}, { 200, 3, 6},
  1965.     { 210, 4, 3}, { 220, 3, 7}, { 240, 4, 4},
  1966.     { 270, 4, 5}, { 300, 4, 6}, { 330, 4, 7}
  1967. };
  1968. /*
  1969.  * Function : static void synchronous (struct Scsi_Host *host, int target, 
  1970.  * char *msg)
  1971.  *
  1972.  * Purpose : reprogram transfers between the selected SCSI initiator and 
  1973.  * target for synchronous SCSI transfers such that the synchronous 
  1974.  * offset is less than that requested and period at least as long 
  1975.  * as that requested.  Also modify *msg such that it contains 
  1976.  * an appropriate response. 
  1977.  *
  1978.  * Inputs : host - NCR53c7,8xx SCSI host, target - number SCSI target id,
  1979.  * msg - synchronous transfer request.
  1980.  */
  1981. static void 
  1982. synchronous (struct Scsi_Host *host, int target, char *msg) {
  1983.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  1984. host->hostdata[0];
  1985.     int desire, divisor, i, limit;
  1986.     unsigned char scntl3, sxfer;
  1987. /* The diagnostic message fits on one line, even with max. width integers */
  1988.     char buf[80];
  1989.    
  1990. /* Desired transfer clock in Hz */
  1991.     desire = 1000000000L / (msg[3] * 4);
  1992. /* Scale the available SCSI clock by 10 so we get tenths */
  1993.     divisor = (hostdata->scsi_clock * 10) / desire;
  1994. /* NCR chips can handle at most an offset of 8 */
  1995.     if (msg[4] > 8)
  1996. msg[4] = 8;
  1997.     if (hostdata->options & OPTION_DEBUG_SDTR)
  1998.      printk("scsi%d : optimal synchronous divisor of %d.%01dn", 
  1999.     host->host_no, divisor / 10, divisor % 10);
  2000.     limit = (sizeof(syncs) / sizeof(syncs[0]) -1);
  2001.     for (i = 0; (i < limit) && (divisor > syncs[i].div); ++i);
  2002.     if (hostdata->options & OPTION_DEBUG_SDTR)
  2003.      printk("scsi%d : selected synchronous divisor of %d.%01dn", 
  2004.     host->host_no, syncs[i].div / 10, syncs[i].div % 10);
  2005.     msg[3] = ((1000000000L / hostdata->scsi_clock) * syncs[i].div / 10 / 4);
  2006.     if (hostdata->options & OPTION_DEBUG_SDTR)
  2007.      printk("scsi%d : selected synchronous period of %dnsn", host->host_no,
  2008.     msg[3] * 4);
  2009.     scntl3 = syncs[i].scf;
  2010.     sxfer = (msg[4] << SXFER_MO_SHIFT) | (syncs[i].tp << 4);
  2011.     if (hostdata->options & OPTION_DEBUG_SDTR)
  2012.      printk ("scsi%d : sxfer=0x%x scntl3=0x%xn", 
  2013.     host->host_no, (int) sxfer, (int) scntl3);
  2014.     set_synchronous (host, target, sxfer, scntl3, 1);
  2015.     sprintf (buf, "scsi%d : setting target %d to ", host->host_no, target);
  2016.     print_synchronous (buf, msg);
  2017. }
  2018. /* 
  2019.  * Function : static int NCR53c7x0_dstat_sir_intr (struct Scsi_Host *host,
  2020.  *  struct NCR53c7x0_cmd *cmd)
  2021.  *
  2022.  * Purpose :  Handler for INT generated instructions for the 
  2023.  *  NCR53c810/820 SCSI SCRIPT
  2024.  *
  2025.  * Inputs : host - pointer to this host adapter's structure,
  2026.  *  cmd - pointer to the command (if any) dsa was pointing 
  2027.  *  to.
  2028.  *
  2029.  */
  2030. static int 
  2031. NCR53c7x0_dstat_sir_intr (struct Scsi_Host *host, struct 
  2032.     NCR53c7x0_cmd *cmd) {
  2033.     NCR53c7x0_local_declare();
  2034.     int print;
  2035.     Scsi_Cmnd *c = cmd ? cmd->cmd : NULL;
  2036.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  2037. host->hostdata[0];
  2038.     u32 dsps,*dsp; /* Argument of the INT instruction */
  2039.     NCR53c7x0_local_setup(host);
  2040.     dsps = NCR53c7x0_read32(DSPS_REG);
  2041.     dsp = (u32 *) bus_to_virt(NCR53c7x0_read32(DSP_REG));
  2042.     /* RGH 150597:  Frig.  Commands which fail with Check Condition are
  2043.      * Flagged as successful - hack dsps to indicate check condition */
  2044. #if 0
  2045.     /* RGH 200597:  Need to disable for BVME6000, as it gets Check Conditions
  2046.      * and then dies.  Seems to handle Check Condition at startup, but
  2047.      * not mid kernel build. */
  2048.     if (dsps == A_int_norm_emulateintfly && cmd && cmd->result == 2)
  2049.         dsps = A_int_err_check_condition;
  2050. #endif
  2051.     if (hostdata->options & OPTION_DEBUG_INTR) 
  2052. printk ("scsi%d : DSPS = 0x%xn", host->host_no, dsps);
  2053.     switch (dsps) {
  2054.     case A_int_msg_1:
  2055. print = 1;
  2056. switch (hostdata->msg_buf[0]) {
  2057. /* 
  2058.  * Unless we've initiated synchronous negotiation, I don't
  2059.  * think that this should happen.
  2060.  */
  2061. case MESSAGE_REJECT:
  2062.     hostdata->dsp = hostdata->script + hostdata->E_accept_message /
  2063. sizeof(u32);
  2064.     hostdata->dsp_changed = 1;
  2065.     if (cmd && (cmd->flags & CMD_FLAG_SDTR)) {
  2066. printk ("scsi%d : target %d rejected SDTRn", host->host_no, 
  2067.     c->target);
  2068. cmd->flags &= ~CMD_FLAG_SDTR;
  2069. asynchronous (host, c->target);
  2070. print = 0;
  2071.     } 
  2072.     break;
  2073. case INITIATE_RECOVERY:
  2074.     printk ("scsi%d : extended contingent allegiance not supported yet, rejectingn",
  2075. host->host_no);
  2076.     /* Fall through to default */
  2077.     hostdata->dsp = hostdata->script + hostdata->E_reject_message /
  2078. sizeof(u32);
  2079.     hostdata->dsp_changed = 1;
  2080.     break;
  2081. default:
  2082.     printk ("scsi%d : unsupported message, rejectingn",
  2083. host->host_no);
  2084.     hostdata->dsp = hostdata->script + hostdata->E_reject_message /
  2085. sizeof(u32);
  2086.     hostdata->dsp_changed = 1;
  2087. }
  2088. if (print) {
  2089.     printk ("scsi%d : received message", host->host_no);
  2090.     if (c) 
  2091.      printk (" from target %d lun %d ", c->target, c->lun);
  2092.     print_msg ((unsigned char *) hostdata->msg_buf);
  2093.     printk("n");
  2094. }
  2095. return SPECIFIC_INT_NOTHING;
  2096.     case A_int_msg_sdtr:
  2097. /*
  2098.  * At this point, hostdata->msg_buf contains
  2099.  * 0 EXTENDED MESSAGE
  2100.  * 1 length 
  2101.  * 2 SDTR
  2102.  * 3 period * 4ns
  2103.  * 4 offset
  2104.  */
  2105. if (cmd) {
  2106.     char buf[80];
  2107.     sprintf (buf, "scsi%d : target %d %s ", host->host_no, c->target,
  2108. (cmd->flags & CMD_FLAG_SDTR) ? "accepting" : "requesting");
  2109.     print_synchronous (buf, (unsigned char *) hostdata->msg_buf);
  2110. /* 
  2111.  * Initiator initiated, won't happen unless synchronous 
  2112.  *  transfers are enabled.  If we get a SDTR message in
  2113.  *  response to our SDTR, we should program our parameters
  2114.  *  such that 
  2115.  * offset <= requested offset
  2116.  * period >= requested period  
  2117.      */
  2118.     if (cmd->flags & CMD_FLAG_SDTR) {
  2119. cmd->flags &= ~CMD_FLAG_SDTR; 
  2120. if (hostdata->msg_buf[4]) 
  2121.     synchronous (host, c->target, (unsigned char *) 
  2122.      hostdata->msg_buf);
  2123. else 
  2124.     asynchronous (host, c->target);
  2125. hostdata->dsp = hostdata->script + hostdata->E_accept_message /
  2126.     sizeof(u32);
  2127. hostdata->dsp_changed = 1;
  2128. return SPECIFIC_INT_NOTHING;
  2129.     } else {
  2130. if (hostdata->options & OPTION_SYNCHRONOUS)  {
  2131.     cmd->flags |= CMD_FLAG_DID_SDTR;
  2132.     synchronous (host, c->target, (unsigned char *) 
  2133. hostdata->msg_buf);
  2134. } else {
  2135.     hostdata->msg_buf[4] = 0; /* 0 offset = async */
  2136.     asynchronous (host, c->target);
  2137. }
  2138. patch_dsa_32 (cmd->dsa, dsa_msgout_other, 0, 5);
  2139. patch_dsa_32 (cmd->dsa, dsa_msgout_other, 1, (u32) 
  2140.     virt_to_bus ((void *)&hostdata->msg_buf));
  2141. hostdata->dsp = hostdata->script + 
  2142.     hostdata->E_respond_message / sizeof(u32);
  2143. hostdata->dsp_changed = 1;
  2144.     }
  2145.     return SPECIFIC_INT_NOTHING;
  2146. }
  2147. /* Fall through to abort if we couldn't find a cmd, and 
  2148.    therefore a dsa structure to twiddle */
  2149.     case A_int_msg_wdtr:
  2150. hostdata->dsp = hostdata->script + hostdata->E_reject_message /
  2151.     sizeof(u32);
  2152. hostdata->dsp_changed = 1;
  2153. return SPECIFIC_INT_NOTHING;
  2154.     case A_int_err_unexpected_phase:
  2155. if (hostdata->options & OPTION_DEBUG_INTR) 
  2156.     printk ("scsi%d : unexpected phasen", host->host_no);
  2157. return SPECIFIC_INT_ABORT;
  2158.     case A_int_err_selected:
  2159. if ((hostdata->chip / 100) == 8)
  2160.     printk ("scsi%d : selected by target %dn", host->host_no,
  2161.         (int) NCR53c7x0_read8(SDID_REG_800) &7);
  2162. else
  2163.             printk ("scsi%d : selected by target LCRC=0x%02xn", host->host_no,
  2164.                 (int) NCR53c7x0_read8(LCRC_REG_10));
  2165. hostdata->dsp = hostdata->script + hostdata->E_target_abort / 
  2166.          sizeof(u32);
  2167. hostdata->dsp_changed = 1;
  2168. return SPECIFIC_INT_NOTHING;
  2169.     case A_int_err_unexpected_reselect:
  2170. if ((hostdata->chip / 100) == 8)
  2171.     printk ("scsi%d : unexpected reselect by target %d lun %dn", 
  2172.         host->host_no, (int) NCR53c7x0_read8(SDID_REG_800) & 7,
  2173.         hostdata->reselected_identify & 7);
  2174. else
  2175.             printk ("scsi%d : unexpected reselect LCRC=0x%02xn", host->host_no,
  2176.                 (int) NCR53c7x0_read8(LCRC_REG_10));
  2177. hostdata->dsp = hostdata->script + hostdata->E_initiator_abort /
  2178.          sizeof(u32);
  2179. hostdata->dsp_changed = 1;
  2180. return SPECIFIC_INT_NOTHING;
  2181. /*
  2182.  * Since contingent allegiance conditions are cleared by the next 
  2183.  * command issued to a target, we must issue a REQUEST SENSE 
  2184.  * command after receiving a CHECK CONDITION status, before
  2185.  * another command is issued.
  2186.  * 
  2187.  * Since this NCR53c7x0_cmd will be freed after use, we don't 
  2188.  * care if we step on the various fields, so modify a few things.
  2189.  */
  2190.     case A_int_err_check_condition: 
  2191. #if 0
  2192. if (hostdata->options & OPTION_DEBUG_INTR) 
  2193. #endif
  2194.     printk ("scsi%d : CHECK CONDITIONn", host->host_no);
  2195. if (!c) {
  2196.     printk("scsi%d : CHECK CONDITION with no SCSI commandn",
  2197. host->host_no);
  2198.     return SPECIFIC_INT_PANIC;
  2199. }
  2200. /* 
  2201.  * FIXME : this uses the normal one-byte selection message.
  2202.  *  We may want to renegotiate for synchronous & WIDE transfers
  2203.  *  since these could be the crux of our problem.
  2204.  *
  2205.  hostdata->NOP_insn* FIXME : once SCSI-II tagged queuing is implemented, we'll
  2206.  *  have to set this up so that the rest of the DSA
  2207.  * agrees with this being an untagged queue'd command.
  2208.  */
  2209.      patch_dsa_32 (cmd->dsa, dsa_msgout, 0, 1);
  2210.      /* 
  2211.       * Modify the table indirect for COMMAND OUT phase, since 
  2212.       * Request Sense is a six byte command.
  2213.       */
  2214.      patch_dsa_32 (cmd->dsa, dsa_cmdout, 0, 6);
  2215.         /*
  2216.          * The CDB is now mirrored in our local non-cached
  2217.          * structure, but keep the old structure up to date as well,
  2218.          * just in case anyone looks at it.
  2219.          */
  2220. /*
  2221.  * XXX Need to worry about data buffer alignment/cache state
  2222.  * XXX here, but currently never get A_int_err_check_condition,
  2223.  * XXX so ignore problem for now.
  2224.          */
  2225. cmd->cmnd[0] = c->cmnd[0] = REQUEST_SENSE;
  2226. cmd->cmnd[0] = c->cmnd[1] &= 0xe0; /* Zero all but LUN */
  2227. cmd->cmnd[0] = c->cmnd[2] = 0;
  2228. cmd->cmnd[0] = c->cmnd[3] = 0;
  2229. cmd->cmnd[0] = c->cmnd[4] = sizeof(c->sense_buffer);
  2230. cmd->cmnd[0] = c->cmnd[5] = 0; 
  2231. /*
  2232.  * Disable dataout phase, and program datain to transfer to the 
  2233.  * sense buffer, and add a jump to other_transfer after the 
  2234.       * command so overflow/underrun conditions are detected.
  2235.  */
  2236.      patch_dsa_32 (cmd->dsa, dsa_dataout, 0, 
  2237.     virt_to_bus(hostdata->script) + hostdata->E_other_transfer);
  2238.      patch_dsa_32 (cmd->dsa, dsa_datain, 0, 
  2239.     virt_to_bus(cmd->data_transfer_start));
  2240.      cmd->data_transfer_start[0] = (((DCMD_TYPE_BMI | DCMD_BMI_OP_MOVE_I | 
  2241.          DCMD_BMI_IO)) << 24) | sizeof(c->sense_buffer);
  2242.      cmd->data_transfer_start[1] = (u32) virt_to_bus(c->sense_buffer);
  2243. cmd->data_transfer_start[2] = ((DCMD_TYPE_TCI | DCMD_TCI_OP_JUMP) 
  2244.          << 24) | DBC_TCI_TRUE;
  2245. cmd->data_transfer_start[3] = (u32) virt_to_bus(hostdata->script) + 
  2246.     hostdata->E_other_transfer;
  2247.      /*
  2248.       * Currently, this command is flagged as completed, ie 
  2249.       * it has valid status and message data.  Reflag it as
  2250.       * incomplete.  Q - need to do something so that original
  2251.  * status, etc are used.
  2252.       */
  2253. cmd->result = cmd->cmd->result = 0xffff;
  2254. /* 
  2255.  * Restart command as a REQUEST SENSE.
  2256.  */
  2257. hostdata->dsp = (u32 *) hostdata->script + hostdata->E_select /
  2258.     sizeof(u32);
  2259. hostdata->dsp_changed = 1;
  2260. return SPECIFIC_INT_NOTHING;
  2261.     case A_int_debug_break:
  2262. return SPECIFIC_INT_BREAK;
  2263.     case A_int_norm_aborted:
  2264. hostdata->dsp = (u32 *) hostdata->schedule;
  2265. hostdata->dsp_changed = 1;
  2266. if (cmd)
  2267.     abnormal_finished (cmd, DID_ERROR << 16);
  2268. return SPECIFIC_INT_NOTHING;
  2269.     case A_int_norm_emulateintfly:
  2270. NCR53c7x0_intfly(host);
  2271. return SPECIFIC_INT_NOTHING;
  2272.     case A_int_test_1:
  2273.     case A_int_test_2:
  2274. hostdata->idle = 1;
  2275. hostdata->test_completed = (dsps - A_int_test_1) / 0x00010000 + 1;
  2276. if (hostdata->options & OPTION_DEBUG_INTR)
  2277.     printk("scsi%d : test%d completen", host->host_no,
  2278. hostdata->test_completed);
  2279. return SPECIFIC_INT_NOTHING;
  2280. #ifdef A_int_debug_reselected_ok
  2281.     case A_int_debug_reselected_ok:
  2282. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2283.           OPTION_DEBUG_DISCONNECT)) {
  2284.     /* 
  2285.      * Note - this dsa is not based on location relative to 
  2286.      * the command structure, but to location relative to the 
  2287.      * DSA register 
  2288.      */
  2289.     u32 *dsa;
  2290.     dsa = (u32 *) bus_to_virt (NCR53c7x0_read32(DSA_REG));
  2291.     printk("scsi%d : reselected_ok (DSA = 0x%x (virt 0x%p)n", 
  2292. host->host_no, NCR53c7x0_read32(DSA_REG), dsa);
  2293.     printk("scsi%d : resume address is 0x%x (virt 0x%p)n",
  2294.     host->host_no, cmd->saved_data_pointer,
  2295.     bus_to_virt(cmd->saved_data_pointer));
  2296.     print_insn (host, hostdata->script + Ent_reselected_ok / 
  2297.               sizeof(u32), "", 1);
  2298.     if ((hostdata->chip / 100) == 8)
  2299.              printk ("scsi%d : sxfer=0x%x, scntl3=0x%xn",
  2300.     host->host_no, NCR53c7x0_read8(SXFER_REG),
  2301.     NCR53c7x0_read8(SCNTL3_REG_800));
  2302.     else
  2303.              printk ("scsi%d : sxfer=0x%x, cannot read SBCLn",
  2304.     host->host_no, NCR53c7x0_read8(SXFER_REG));
  2305.     if (c) {
  2306. print_insn (host, (u32 *) 
  2307.     hostdata->sync[c->target].script, "", 1);
  2308. print_insn (host, (u32 *) 
  2309.     hostdata->sync[c->target].script + 2, "", 1);
  2310.     }
  2311. }
  2312.      return SPECIFIC_INT_RESTART;
  2313. #endif
  2314. #ifdef A_int_debug_reselect_check
  2315.     case A_int_debug_reselect_check:
  2316. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2317.     u32 *dsa;
  2318. #if 0
  2319.     u32 *code;
  2320. #endif
  2321.     /* 
  2322.      * Note - this dsa is not based on location relative to 
  2323.      * the command structure, but to location relative to the 
  2324.      * DSA register 
  2325.      */
  2326.     dsa = bus_to_virt (NCR53c7x0_read32(DSA_REG));
  2327.     printk("scsi%d : reselected_check_next (DSA = 0x%lx (virt 0x%p))n",
  2328. host->host_no, virt_to_bus(dsa), dsa);
  2329.     if (dsa) {
  2330. printk("scsi%d : resume address is 0x%x (virt 0x%p)n",
  2331.     host->host_no, cmd->saved_data_pointer,
  2332.     bus_to_virt (cmd->saved_data_pointer));
  2333. #if 0
  2334. printk("scsi%d : template code :n", host->host_no);
  2335. for (code = dsa + (Ent_dsa_code_check_reselect - Ent_dsa_zero) 
  2336.     / sizeof(u32); code < (dsa + Ent_dsa_zero / sizeof(u32)); 
  2337.     code += print_insn (host, code, "", 1));
  2338. #endif
  2339.     }
  2340.     print_insn (host, hostdata->script + Ent_reselected_ok / 
  2341.               sizeof(u32), "", 1);
  2342. }
  2343.      return SPECIFIC_INT_RESTART;
  2344. #endif
  2345. #ifdef A_int_debug_dsa_schedule
  2346.     case A_int_debug_dsa_schedule:
  2347. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2348.     u32 *dsa;
  2349.     /* 
  2350.      * Note - this dsa is not based on location relative to 
  2351.      * the command structure, but to location relative to the 
  2352.      * DSA register 
  2353.      */
  2354.     dsa = (u32 *) bus_to_virt (NCR53c7x0_read32(DSA_REG));
  2355.     printk("scsi%d : dsa_schedule (old DSA = 0x%lx (virt 0x%p))n", 
  2356. host->host_no, virt_to_bus(dsa), dsa);
  2357.     if (dsa) 
  2358. printk("scsi%d : resume address is 0x%x (virt 0x%p)n"
  2359.        "         (temp was 0x%x (virt 0x%p))n",
  2360.     host->host_no, cmd->saved_data_pointer,
  2361.     bus_to_virt (cmd->saved_data_pointer),
  2362.     NCR53c7x0_read32 (TEMP_REG),
  2363.     bus_to_virt (NCR53c7x0_read32(TEMP_REG)));
  2364. }
  2365.      return SPECIFIC_INT_RESTART;
  2366. #endif
  2367. #ifdef A_int_debug_scheduled
  2368.     case A_int_debug_scheduled:
  2369. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2370.     printk("scsi%d : new I/O 0x%x (virt 0x%p) scheduledn", 
  2371. host->host_no, NCR53c7x0_read32(DSA_REG),
  2372.      bus_to_virt(NCR53c7x0_read32(DSA_REG)));
  2373. }
  2374. return SPECIFIC_INT_RESTART;
  2375. #endif
  2376. #ifdef A_int_debug_idle
  2377.     case A_int_debug_idle:
  2378. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2379.     printk("scsi%d : idlen", host->host_no);
  2380. }
  2381. return SPECIFIC_INT_RESTART;
  2382. #endif
  2383. #ifdef A_int_debug_cmd
  2384.     case A_int_debug_cmd:
  2385. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2386.     printk("scsi%d : command sentn");
  2387. }
  2388.      return SPECIFIC_INT_RESTART;
  2389. #endif
  2390. #ifdef A_int_debug_dsa_loaded
  2391.     case A_int_debug_dsa_loaded:
  2392. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2393.     printk("scsi%d : DSA loaded with 0x%x (virt 0x%p)n", host->host_no,
  2394. NCR53c7x0_read32(DSA_REG), 
  2395. bus_to_virt(NCR53c7x0_read32(DSA_REG)));
  2396. }
  2397. return SPECIFIC_INT_RESTART; 
  2398. #endif
  2399. #ifdef A_int_debug_reselected
  2400.     case A_int_debug_reselected:
  2401. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2402.     OPTION_DEBUG_DISCONNECT)) {
  2403.     if ((hostdata->chip / 100) == 8)
  2404. printk("scsi%d : reselected by target %d lun %dn",
  2405.     host->host_no, (int) NCR53c7x0_read8(SDID_REG_800) & ~0x80, 
  2406.     (int) hostdata->reselected_identify & 7);
  2407.     else
  2408. printk("scsi%d : reselected by LCRC=0x%02x lun %dn",
  2409.                     host->host_no, (int) NCR53c7x0_read8(LCRC_REG_10),
  2410.                     (int) hostdata->reselected_identify & 7);
  2411.     print_queues(host);
  2412. }
  2413.      return SPECIFIC_INT_RESTART;
  2414. #endif
  2415. #ifdef A_int_debug_disconnect_msg
  2416.     case A_int_debug_disconnect_msg:
  2417. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR)) {
  2418.     if (c)
  2419. printk("scsi%d : target %d lun %d disconnectingn", 
  2420.     host->host_no, c->target, c->lun);
  2421.     else
  2422. printk("scsi%d : unknown target disconnectingn",
  2423.     host->host_no);
  2424. }
  2425. return SPECIFIC_INT_RESTART;
  2426. #endif
  2427. #ifdef A_int_debug_disconnected
  2428.     case A_int_debug_disconnected:
  2429. if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2430. OPTION_DEBUG_DISCONNECT)) {
  2431.     printk ("scsi%d : disconnected, new queues aren", 
  2432. host->host_no);
  2433.     print_queues(host);
  2434. #if 0
  2435.     /* Not valid on ncr53c710! */
  2436.          printk ("scsi%d : sxfer=0x%x, scntl3=0x%xn",
  2437. host->host_no, NCR53c7x0_read8(SXFER_REG),
  2438. NCR53c7x0_read8(SCNTL3_REG_800));
  2439. #endif
  2440.     if (c) {
  2441. print_insn (host, (u32 *) 
  2442.     hostdata->sync[c->target].script, "", 1);
  2443. print_insn (host, (u32 *) 
  2444.     hostdata->sync[c->target].script + 2, "", 1);
  2445.     }
  2446. }
  2447. return SPECIFIC_INT_RESTART;
  2448. #endif
  2449. #ifdef A_int_debug_panic
  2450.     case A_int_debug_panic:
  2451. printk("scsi%d : int_debug_panic receivedn", host->host_no);
  2452. print_lots (host);
  2453. return SPECIFIC_INT_PANIC;
  2454. #endif
  2455. #ifdef A_int_debug_saved
  2456.     case A_int_debug_saved:
  2457.      if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2458.          OPTION_DEBUG_DISCONNECT)) {
  2459.          printk ("scsi%d : saved data pointer 0x%x (virt 0x%p)n",
  2460.           host->host_no, cmd->saved_data_pointer,
  2461. bus_to_virt (cmd->saved_data_pointer));
  2462.          print_progress (c);
  2463.      }
  2464.      return SPECIFIC_INT_RESTART;
  2465. #endif
  2466. #ifdef A_int_debug_restored
  2467.     case A_int_debug_restored:
  2468.      if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2469.          OPTION_DEBUG_DISCONNECT)) {
  2470.          if (cmd) {
  2471. int size;
  2472.           printk ("scsi%d : restored data pointer 0x%x (virt 0x%p)n",
  2473.               host->host_no, cmd->saved_data_pointer, bus_to_virt (
  2474.     cmd->saved_data_pointer));
  2475. size = print_insn (host, (u32 *) 
  2476.     bus_to_virt(cmd->saved_data_pointer), "", 1);
  2477. size = print_insn (host, (u32 *) 
  2478.     bus_to_virt(cmd->saved_data_pointer) + size, "", 1);
  2479.           print_progress (c);
  2480.     }
  2481. #if 0
  2482.     printk ("scsi%d : datapath residual %dn",
  2483. host->host_no, datapath_residual (host)) ;
  2484. #endif
  2485.      }
  2486.      return SPECIFIC_INT_RESTART;
  2487. #endif
  2488. #ifdef A_int_debug_sync
  2489.     case A_int_debug_sync:
  2490.      if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2491.          OPTION_DEBUG_DISCONNECT|OPTION_DEBUG_SDTR)) {
  2492.     unsigned char sxfer = NCR53c7x0_read8 (SXFER_REG), scntl3;
  2493.     if ((hostdata->chip / 100) == 8) {
  2494. scntl3 = NCR53c7x0_read8 (SCNTL3_REG_800);
  2495. if (c) {
  2496.   if (sxfer != hostdata->sync[c->target].sxfer_sanity ||
  2497.     scntl3 != hostdata->sync[c->target].scntl3_sanity) {
  2498.     printk ("scsi%d :  sync sanity check failed sxfer=0x%x, scntl3=0x%x",
  2499.     host->host_no, sxfer, scntl3);
  2500. NCR53c7x0_write8 (SXFER_REG, sxfer);
  2501. NCR53c7x0_write8 (SCNTL3_REG_800, scntl3);
  2502.     }
  2503. } else 
  2504.             printk ("scsi%d : unknown command sxfer=0x%x, scntl3=0x%xn",
  2505.     host->host_no, (int) sxfer, (int) scntl3);
  2506.     } else {
  2507. if (c) {
  2508.   if (sxfer != hostdata->sync[c->target].sxfer_sanity) {
  2509.     printk ("scsi%d :  sync sanity check failed sxfer=0x%x",
  2510.     host->host_no, sxfer);
  2511. NCR53c7x0_write8 (SXFER_REG, sxfer);
  2512. NCR53c7x0_write8 (SBCL_REG,
  2513. hostdata->sync[c->target].sscf_710);
  2514.     }
  2515. } else 
  2516.             printk ("scsi%d : unknown command sxfer=0x%xn",
  2517.     host->host_no, (int) sxfer);
  2518.     }
  2519. }
  2520.      return SPECIFIC_INT_RESTART;
  2521. #endif
  2522. #ifdef A_int_debug_datain
  2523. case A_int_debug_datain:
  2524.     if (hostdata->options & (OPTION_DEBUG_SCRIPT|OPTION_DEBUG_INTR|
  2525. OPTION_DEBUG_DISCONNECT|OPTION_DEBUG_SDTR)) {
  2526. int size;
  2527. if ((hostdata->chip / 100) == 8)
  2528.   printk ("scsi%d : In do_datain (%s) sxfer=0x%x, scntl3=0x%xn"
  2529. "         datapath residual=%dn",
  2530.     host->host_no, sbcl_to_phase (NCR53c7x0_read8 (SBCL_REG)),
  2531.     (int) NCR53c7x0_read8(SXFER_REG), 
  2532.     (int) NCR53c7x0_read8(SCNTL3_REG_800),
  2533.     datapath_residual (host)) ;
  2534. else
  2535.   printk ("scsi%d : In do_datain (%s) sxfer=0x%xn"
  2536. "         datapath residual=%dn",
  2537.     host->host_no, sbcl_to_phase (NCR53c7x0_read8 (SBCL_REG)),
  2538.     (int) NCR53c7x0_read8(SXFER_REG), 
  2539.     datapath_residual (host)) ;
  2540. print_insn (host, dsp, "", 1);
  2541. size = print_insn (host, (u32 *) bus_to_virt(dsp[1]), "", 1);
  2542. print_insn (host, (u32 *) bus_to_virt(dsp[1]) + size, "", 1);
  2543.    } 
  2544. return SPECIFIC_INT_RESTART;
  2545. #endif
  2546. #ifdef A_int_debug_check_dsa
  2547. case A_int_debug_check_dsa:
  2548.     if (NCR53c7x0_read8 (SCNTL1_REG) & SCNTL1_CON) {
  2549. int sdid;
  2550. int tmp;
  2551. char *where;
  2552. if (hostdata->chip / 100 == 8)
  2553.     sdid = NCR53c7x0_read8 (SDID_REG_800) & 15;
  2554. else {
  2555.     tmp = NCR53c7x0_read8 (SDID_REG_700);
  2556.     if (!tmp)
  2557. panic ("SDID_REG_700 = 0");
  2558.     tmp >>= 1;
  2559.     sdid = 0;
  2560.     while (tmp) {
  2561. tmp >>= 1;
  2562. sdid++;
  2563.     }
  2564. }
  2565. where = dsp - NCR53c7x0_insn_size(NCR53c7x0_read8 
  2566. (DCMD_REG)) == hostdata->script + 
  2567.      Ent_select_check_dsa / sizeof(u32) ?
  2568.     "selection" : "reselection";
  2569. if (c && sdid != c->target) {
  2570.     printk ("scsi%d : SDID target %d != DSA target %d at %sn",
  2571. host->host_no, sdid, c->target, where);
  2572.     print_lots(host);
  2573.     dump_events (host, 20);
  2574.     return SPECIFIC_INT_PANIC;
  2575. }
  2576.     }
  2577.     return SPECIFIC_INT_RESTART;
  2578. #endif
  2579.     default:
  2580. if ((dsps & 0xff000000) == 0x03000000) {
  2581.      printk ("scsi%d : misc debug interrupt 0x%xn",
  2582. host->host_no, dsps);
  2583.     return SPECIFIC_INT_RESTART;
  2584. } else if ((dsps & 0xff000000) == 0x05000000) {
  2585.     if (hostdata->events) {
  2586. struct NCR53c7x0_event *event;
  2587. ++hostdata->event_index;
  2588. if (hostdata->event_index >= hostdata->event_size)
  2589.     hostdata->event_index = 0;
  2590. event = (struct NCR53c7x0_event *) hostdata->events + 
  2591.     hostdata->event_index;
  2592. event->event = (enum ncr_event) dsps;
  2593. event->dsa = bus_to_virt(NCR53c7x0_read32(DSA_REG));
  2594. if (NCR53c7x0_read8 (SCNTL1_REG) & SCNTL1_CON) {
  2595.     if (hostdata->chip / 100 == 8)
  2596. event->target = NCR53c7x0_read8(SSID_REG_800);
  2597.     else {
  2598. unsigned char tmp, sdid;
  2599.         tmp = NCR53c7x0_read8 (SDID_REG_700);
  2600.         if (!tmp)
  2601.     panic ("SDID_REG_700 = 0");
  2602.         tmp >>= 1;
  2603.         sdid = 0;
  2604.         while (tmp) {
  2605.     tmp >>= 1;
  2606.     sdid++;
  2607.         }
  2608. event->target = sdid;
  2609.     }
  2610. }
  2611. else 
  2612. event->target = 255;
  2613. if (event->event == EVENT_RESELECT)
  2614.     event->lun = hostdata->reselected_identify & 0xf;
  2615. else if (c)
  2616.     event->lun = c->lun;
  2617. else
  2618.     event->lun = 255;
  2619. do_gettimeofday(&(event->time));
  2620. if (c) {
  2621.     event->pid = c->pid;
  2622.     memcpy ((void *) event->cmnd, (void *) c->cmnd, 
  2623. sizeof (event->cmnd));
  2624. } else {
  2625.     event->pid = -1;
  2626. }
  2627.     }
  2628.     return SPECIFIC_INT_RESTART;
  2629. }
  2630. printk ("scsi%d : unknown user interrupt 0x%xn", 
  2631.     host->host_no, (unsigned) dsps);
  2632. return SPECIFIC_INT_PANIC;
  2633.     }
  2634. }
  2635. /* 
  2636.  * XXX - the stock NCR assembler won't output the scriptu.h file,
  2637.  * which undefine's all #define'd CPP symbols from the script.h
  2638.  * file, which will create problems if you use multiple scripts
  2639.  * with the same  symbol names.
  2640.  *
  2641.  * If you insist on using NCR's assembler, you could generate
  2642.  * scriptu.h from script.h using something like 
  2643.  *
  2644.  * grep #define script.h | 
  2645.  * sed 's/#define[  ][  ]*([_a-zA-Z][_a-zA-Z0-9]*).*$/#undefine 1/' 
  2646.  * > scriptu.h
  2647.  */
  2648. #include "53c7xx_u.h"
  2649. /* XXX - add alternate script handling code here */
  2650. /* 
  2651.  * Function : static void NCR537xx_soft_reset (struct Scsi_Host *host)
  2652.  *
  2653.  * Purpose :  perform a soft reset of the NCR53c7xx chip
  2654.  *
  2655.  * Inputs : host - pointer to this host adapter's structure
  2656.  *
  2657.  * Preconditions : NCR53c7x0_init must have been called for this 
  2658.  *      host.
  2659.  * 
  2660.  */
  2661. static void 
  2662. NCR53c7x0_soft_reset (struct Scsi_Host *host) {
  2663.     NCR53c7x0_local_declare();
  2664.     unsigned long flags;
  2665.     struct NCR53c7x0_hostdata *hostdata = (struct NCR53c7x0_hostdata *)
  2666. host->hostdata[0];
  2667.     NCR53c7x0_local_setup(host);
  2668.     save_flags(flags);
  2669.     cli();
  2670.     /* Disable scsi chip and s/w level 7 ints */
  2671. #ifdef CONFIG_MVME16x
  2672.     if (MACH_IS_MVME16x)
  2673.     {
  2674.         volatile unsigned long v;
  2675.         v = *(volatile unsigned long *)0xfff4006c;
  2676.         v &= ~0x8000;
  2677.         *(volatile unsigned long *)0xfff4006c = v;
  2678.         v = *(volatile unsigned long *)0xfff4202c;
  2679.         v &= ~0x10;
  2680.         *(volatile unsigned long *)0xfff4202c = v;
  2681.     }
  2682. #endif
  2683.     /* Anything specific for your hardware? */
  2684.     /*
  2685.      * Do a soft reset of the chip so that everything is 
  2686.      * reinitialized to the power-on state.
  2687.      *
  2688.      * Basically follow the procedure outlined in the NCR53c700
  2689.      * data manual under Chapter Six, How to Use, Steps Necessary to
  2690.      * Start SCRIPTS, with the exception of actually starting the 
  2691.      * script and setting up the synchronous transfer gunk.
  2692.      */
  2693.     /* Should we reset the scsi bus here??????????????????? */
  2694.     NCR53c7x0_write8(ISTAT_REG_700, ISTAT_10_SRST);
  2695.     NCR53c7x0_write8(ISTAT_REG_700, 0);
  2696.     /*
  2697.      * saved_dcntl is set up in NCR53c7x0_init() before it is overwritten
  2698.      * here.  We should have some better way of working out the CF bit
  2699.      * setting..
  2700.      */
  2701.     hostdata->saved_dcntl = DCNTL_10_EA|DCNTL_10_COM;
  2702.     if (hostdata->scsi_clock > 50000000)
  2703. hostdata->saved_dcntl |= DCNTL_700_CF_3;
  2704.     else
  2705.     if (hostdata->scsi_clock > 37500000)
  2706.         hostdata->saved_dcntl |= DCNTL_700_CF_2;
  2707. #if 0
  2708.     else
  2709. /* Any clocks less than 37.5MHz? */
  2710. #endif
  2711.     if (hostdata->options & OPTION_DEBUG_TRACE)
  2712.      NCR53c7x0_write8(DCNTL_REG, hostdata->saved_dcntl | DCNTL_SSM);
  2713.     else
  2714.      NCR53c7x0_write8(DCNTL_REG, hostdata->saved_dcntl);
  2715.     /* Following disables snooping - snooping is not required, as non-
  2716.      * cached pages are used for shared data, and appropriate use is
  2717.      * made of cache_push/cache_clear.  Indeed, for 68060
  2718.      * enabling snooping causes disk corruption of ext2fs free block
  2719.      * bitmaps and the like.  If you have a 68060 with snooping hardwared
  2720.      * on, then you need to enable CONFIG_060_WRITETHROUGH.
  2721.      */
  2722.     NCR53c7x0_write8(CTEST7_REG, CTEST7_10_TT1|CTEST7_STD);
  2723.     /* Actually burst of eight, according to my 53c710 databook */
  2724.     NCR53c7x0_write8(hostdata->dmode, DMODE_10_BL_8 | DMODE_10_FC2);
  2725.     NCR53c7x0_write8(SCID_REG, 1 << host->this_id);
  2726.     NCR53c7x0_write8(SBCL_REG, 0);
  2727.     NCR53c7x0_write8(SCNTL1_REG, SCNTL1_ESR_700);
  2728.     NCR53c7x0_write8(SCNTL0_REG, ((hostdata->options & OPTION_PARITY) ? 
  2729.             SCNTL0_EPC : 0) | SCNTL0_EPG_700 | SCNTL0_ARB1 | SCNTL0_ARB2);
  2730.     /*
  2731.      * Enable all interrupts, except parity which we only want when
  2732.      * the user requests it.
  2733.      */
  2734.     NCR53c7x0_write8(DIEN_REG, DIEN_700_BF |
  2735. DIEN_ABRT | DIEN_SSI | DIEN_SIR | DIEN_700_OPC);
  2736.     NCR53c7x0_write8(SIEN_REG_700, ((hostdata->options & OPTION_PARITY) ?
  2737.     SIEN_PAR : 0) | SIEN_700_STO | SIEN_RST | SIEN_UDC |
  2738. SIEN_SGE | SIEN_MA);
  2739. #ifdef CONFIG_MVME16x
  2740.     if (MACH_IS_MVME16x)
  2741.     {
  2742.         volatile unsigned long v;
  2743.         /* Enable scsi chip and s/w level 7 ints */
  2744.         v = *(volatile unsigned long *)0xfff40080;
  2745.         v = (v & ~(0xf << 28)) | (4 << 28);
  2746.         *(volatile unsigned long *)0xfff40080 = v;
  2747.         v = *(volatile unsigned long *)0xfff4006c;
  2748.         v |= 0x8000;
  2749.         *(volatile unsigned long *)0xfff4006c = v;
  2750.         v = *(volatile unsigned long *)0xfff4202c;
  2751.         v = (v & ~0xff) | 0x10 | 4;
  2752.         *(volatile unsigned long *)0xfff4202c = v;
  2753.     }
  2754. #endif
  2755.     /* Anything needed for your hardware? */
  2756.     restore_flags(flags);
  2757. }
  2758. /*
  2759.  * Function static struct NCR53c7x0_cmd *allocate_cmd (Scsi_Cmnd *cmd)
  2760.  * 
  2761.  * Purpose : Return the first free NCR53c7x0_cmd structure (which are 
  2762.  *  reused in a LIFO manner to minimize cache thrashing).
  2763.  *
  2764.  * Side effects : If we haven't yet scheduled allocation of NCR53c7x0_cmd
  2765.  * structures for this device, do so.  Attempt to complete all scheduled
  2766.  * allocations using get_free_page(), putting NCR53c7x0_cmd structures on
  2767.  * the free list.  Teach programmers not to drink and hack.
  2768.  *
  2769.  * Inputs : cmd - SCSI command
  2770.  *
  2771.  * Returns : NCR53c7x0_cmd structure allocated on behalf of cmd;
  2772.  * NULL on failure.
  2773.  */
  2774. static void
  2775. my_free_page (void *addr, int dummy)
  2776. {
  2777.     /* XXX This assumes default cache mode to be IOMAP_FULL_CACHING, which
  2778.      * XXX may be invalid (CONFIG_060_WRITETHROUGH)
  2779.      */
  2780.     kernel_set_cachemode(addr, 4096, IOMAP_FULL_CACHING);
  2781.     free_page ((u32)addr);
  2782. }
  2783. static struct NCR53c7x0_cmd *
  2784. allocate_cmd (Scsi_Cmnd *cmd) {
  2785.     struct Scsi_Host *host = cmd->host;
  2786.     struct NCR53c7x0_hostdata *hostdata = 
  2787. (struct NCR53c7x0_hostdata *) host->hostdata[0];