Home | History | Annotate | Line # | Download | only in dev
ncr5380reg.h revision 1.13
      1  1.13  thorpej /*	$NetBSD: ncr5380reg.h,v 1.13 2003/04/09 01:54:45 thorpej Exp $	*/
      2   1.1   briggs 
      3   1.1   briggs /*
      4   1.1   briggs  * Copyright (c) 1995 Leo Weppelman.
      5   1.1   briggs  * All rights reserved.
      6   1.1   briggs  *
      7   1.1   briggs  * Redistribution and use in source and binary forms, with or without
      8   1.1   briggs  * modification, are permitted provided that the following conditions
      9   1.1   briggs  * are met:
     10   1.1   briggs  * 1. Redistributions of source code must retain the above copyright
     11   1.1   briggs  *    notice, this list of conditions and the following disclaimer.
     12   1.1   briggs  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   briggs  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   briggs  *    documentation and/or other materials provided with the distribution.
     15   1.1   briggs  * 3. All advertising materials mentioning features or use of this software
     16   1.1   briggs  *    must display the following acknowledgement:
     17   1.1   briggs  *      This product includes software developed by Leo Weppelman.
     18   1.1   briggs  * 4. The name of the author may not be used to endorse or promote products
     19   1.1   briggs  *    derived from this software without specific prior written permission
     20   1.1   briggs  *
     21   1.1   briggs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1   briggs  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1   briggs  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1   briggs  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1   briggs  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1   briggs  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1   briggs  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1   briggs  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1   briggs  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1   briggs  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1   briggs  */
     32   1.1   briggs 
     33   1.1   briggs #ifndef _NCR5380REG_H
     34   1.1   briggs #define _NCR5380REG_H
     35   1.1   briggs /*
     36   1.1   briggs  * NCR5380 common interface definitions.
     37   1.1   briggs  */
     38   1.1   briggs 
     39   1.1   briggs /*
     40   1.1   briggs  * Register numbers: (first argument to GET/SET_5380_REG )
     41   1.1   briggs  */
     42   1.1   briggs #define	NCR5380_DATA	0		/* Data register		*/
     43   1.1   briggs #define	NCR5380_ICOM	1		/* Initiator command register	*/
     44   1.1   briggs #define	NCR5380_MODE	2		/* Mode register		*/
     45   1.1   briggs #define	NCR5380_TCOM	3		/* Target command register	*/
     46   1.1   briggs #define	NCR5380_IDSTAT	4		/* Bus status register		*/
     47   1.1   briggs #define	NCR5380_DMSTAT	5		/* DMA status register		*/
     48   1.1   briggs #define	NCR5380_TRCV	6		/* Target receive register	*/
     49   1.1   briggs #define	NCR5380_IRCV	7		/* Initiator receive register	*/
     50   1.1   briggs 
     51   1.1   briggs /*
     52   1.1   briggs  * Definitions for Initiator command register.
     53   1.1   briggs  */
     54   1.1   briggs #define	SC_A_RST	0x80	/* RW - Assert RST			*/
     55   1.1   briggs #define	SC_TEST		0x40	/* W  - Test mode			*/
     56   1.1   briggs #define	SC_AIP		0x40	/* R  - Arbitration in progress		*/
     57   1.1   briggs #define	SC_LA		0x20	/* R  - Lost arbitration		*/
     58   1.1   briggs #define	SC_A_ACK	0x10	/* RW - Assert ACK			*/
     59   1.1   briggs #define	SC_A_BSY	0x08	/* RW - Assert BSY			*/
     60   1.1   briggs #define	SC_A_SEL	0x04	/* RW - Assert SEL			*/
     61   1.1   briggs #define	SC_A_ATN	0x02	/* RW - Assert ATN			*/
     62   1.1   briggs #define	SC_ADTB		0x01	/* RW - Assert Data To Bus		*/
     63   1.1   briggs 
     64   1.1   briggs /*
     65   1.1   briggs  * Definitions for mode register
     66   1.1   briggs  */
     67   1.1   briggs #define	SC_B_DMA	0x80	/* RW - Block mode DMA (not on TT!)	*/
     68   1.1   briggs #define	SC_T_MODE	0x40	/* RW - Target mode			*/
     69   1.1   briggs #define	SC_E_PAR	0x20	/* RW - Enable parity check		*/
     70   1.1   briggs #define	SC_E_PARI	0x10	/* RW - Enable parity interrupt		*/
     71   1.1   briggs #define	SC_E_EOPI	0x08	/* RW - Enable End Of Process Interrupt	*/
     72   1.1   briggs #define	SC_MON_BSY	0x04	/* RW - Monitor BSY			*/
     73   1.1   briggs #define	SC_M_DMA	0x02	/* RW - Set DMA mode			*/
     74   1.1   briggs #define	SC_ARBIT	0x01	/* RW - Arbitrate			*/
     75   1.1   briggs 
     76   1.1   briggs /*
     77   1.1   briggs  * Definitions for tcom register
     78   1.1   briggs  */
     79   1.1   briggs #define	SC_LBS		0x80	/* RW - Last Byte Send (not on TT!)	*/
     80   1.1   briggs #define	SC_A_REQ	0x08	/* RW - Assert REQ			*/
     81   1.1   briggs #define	SC_A_MSG	0x04	/* RW - Assert MSG			*/
     82   1.1   briggs #define	SC_A_CD		0x02	/* RW - Assert C/D			*/
     83   1.1   briggs #define	SC_A_IO		0x01	/* RW - Assert I/O			*/
     84   1.1   briggs 
     85   1.1   briggs /*
     86   1.1   briggs  * Definitions for idstat register
     87   1.1   briggs  */
     88   1.1   briggs #define	SC_S_RST	0x80	/* R  - RST is set			*/
     89   1.1   briggs #define	SC_S_BSY	0x40	/* R  - BSY is set			*/
     90   1.1   briggs #define	SC_S_REQ	0x20	/* R  - REQ is set			*/
     91   1.1   briggs #define	SC_S_MSG	0x10	/* R  - MSG is set			*/
     92   1.1   briggs #define	SC_S_CD		0x08	/* R  - C/D is set			*/
     93   1.1   briggs #define	SC_S_IO		0x04	/* R  - I/O is set			*/
     94   1.1   briggs #define	SC_S_SEL	0x02	/* R  - SEL is set			*/
     95   1.1   briggs #define	SC_S_PAR	0x01	/* R  - Parity bit			*/
     96   1.1   briggs 
     97   1.1   briggs /*
     98   1.1   briggs  * Definitions for dmastat register
     99   1.1   briggs  */
    100   1.1   briggs #define	SC_END_DMA	0x80	/* R  - End of DMA			*/
    101   1.1   briggs #define	SC_DMA_REQ	0x40	/* R  - DMA request			*/
    102   1.1   briggs #define	SC_PAR_ERR	0x20	/* R  - Parity error			*/
    103   1.1   briggs #define	SC_IRQ_SET	0x10	/* R  - IRQ is active			*/
    104   1.1   briggs #define	SC_PHS_MTCH	0x08	/* R  - Phase Match			*/
    105   1.1   briggs #define	SC_BSY_ERR	0x04	/* R  - Busy error			*/
    106   1.1   briggs #define	SC_ATN_STAT	0x02	/* R  - State of ATN line		*/
    107   1.1   briggs #define	SC_ACK_STAT	0x01	/* R  - State of ACK line		*/
    108   1.1   briggs #define	SC_S_SEND	0x00	/* W  - Start DMA output		*/
    109   1.1   briggs 
    110   1.1   briggs #define	SC_CLINT	{ 		/* Clear interrupts	*/	\
    111   1.1   briggs 			int i = GET_5380_REG(NCR5380_IRCV);		\
    112   1.1   briggs 			}
    113   1.1   briggs 
    114   1.1   briggs 
    115   1.1   briggs /*
    116   1.1   briggs  * Definition of SCSI-bus phases. The values are determined by signals
    117   1.1   briggs  * on the SCSI-bus. DO NOT CHANGE!
    118   1.1   briggs  * The values must be used to index the pointers in SCSI-PARMS.
    119   1.1   briggs  */
    120   1.1   briggs #define	NR_PHASE	8
    121   1.1   briggs #define	PH_DATAOUT	0
    122   1.1   briggs #define	PH_DATAIN	1
    123   1.1   briggs #define	PH_CMD		2
    124   1.1   briggs #define	PH_STATUS	3
    125   1.1   briggs #define	PH_RES1		4
    126   1.1   briggs #define	PH_RES2		5
    127   1.1   briggs #define	PH_MSGOUT	6
    128   1.1   briggs #define	PH_MSGIN	7
    129   1.1   briggs 
    130   1.1   briggs #define	PH_OUT(phase)	(!(phase & 1))	/* TRUE if output phase		*/
    131   1.1   briggs #define	PH_IN(phase)	(phase & 1)	/* TRUE if input phase		*/
    132   1.1   briggs 
    133   1.1   briggs /*
    134   1.1   briggs  * Id of Host-adapter
    135   1.1   briggs  */
    136   1.1   briggs #define SC_HOST_ID	0x80
    137   1.1   briggs 
    138   1.1   briggs /*
    139   1.1   briggs  * Base setting for 5380 mode register
    140   1.1   briggs  */
    141   1.1   briggs #define	IMODE_BASE	SC_E_PAR
    142   1.1   briggs 
    143   1.1   briggs /*
    144   1.1   briggs  * SCSI completion status codes, should move to sys/scsi/????
    145   1.1   briggs  */
    146   1.1   briggs #define SCSMASK		0x1e	/* status code mask			*/
    147   1.1   briggs #define SCSGOOD		0x00	/* good status				*/
    148   1.1   briggs #define SCSCHKC		0x02	/* check condition			*/
    149   1.1   briggs #define SCSBUSY		0x08	/* busy status				*/
    150   1.1   briggs #define SCSCMET		0x04	/* condition met / good			*/
    151   1.1   briggs 
    152   1.1   briggs /*
    153   1.1   briggs  * Return values of check_intr()
    154   1.1   briggs  */
    155   1.1   briggs #define	INTR_SPURIOUS	0
    156   1.1   briggs #define	INTR_RESEL	2
    157   1.1   briggs #define	INTR_DMA	3
    158   1.1   briggs 
    159   1.1   briggs struct	ncr_softc {
    160   1.1   briggs 	struct	device		sc_dev;
    161  1.12   bouyer 	struct	scsipi_channel	sc_channel;
    162  1.11  thorpej 	struct	scsipi_adapter	sc_adapter;
    163   1.3   briggs 
    164   1.3   briggs 	/*
    165   1.3   briggs 	 * Some (pre-SCSI2) devices don't support select with ATN.
    166   1.3   briggs 	 * If the device responds to select with ATN by going into
    167   1.3   briggs 	 * command phase (ignoring ATN), then we flag it in the
    168   1.3   briggs 	 * following bitmask.
    169   1.3   briggs 	 * We also keep track of which devices have been selected
    170   1.3   briggs 	 * before.  This allows us to not even try raising ATN if
    171   1.3   briggs 	 * the target doesn't respond to it the first time.
    172   1.3   briggs 	 */
    173   1.3   briggs 	u_int8_t	sc_noselatn;
    174   1.3   briggs 	u_int8_t	sc_selected;
    175   1.1   briggs };
    176   1.1   briggs 
    177   1.1   briggs /*
    178   1.1   briggs  * Max. number of dma-chains per request
    179   1.1   briggs  */
    180  1.13  thorpej #define	MAXDMAIO	(MAXPHYS/PAGE_SIZE + 1)
    181   1.1   briggs 
    182   1.1   briggs /*
    183   1.1   briggs  * Some requests are not contiguous in physical memory. We need to break them
    184   1.1   briggs  * up into contiguous parts for DMA.
    185   1.1   briggs  */
    186   1.1   briggs struct dma_chain {
    187   1.1   briggs 	u_int	dm_count;
    188   1.1   briggs 	u_long	dm_addr;
    189   1.1   briggs };
    190   1.1   briggs 
    191   1.1   briggs /*
    192   1.1   briggs  * Define our issue, free and disconnect queue's.
    193   1.1   briggs  */
    194   1.1   briggs typedef struct	req_q {
    195   1.1   briggs     struct req_q	*next;	    /* next in free, issue or discon queue  */
    196   1.1   briggs     struct req_q	*link;	    /* next linked command to execute       */
    197  1.10   bouyer     struct scsipi_xfer	*xs;	    /* request from high-level driver       */
    198   1.1   briggs     u_short		dr_flag;    /* driver state			    */
    199   1.1   briggs     u_char		phase;	    /* current SCSI phase		    */
    200   1.1   briggs     u_char		msgout;	    /* message to send when requested       */
    201   1.1   briggs     u_char		targ_id;    /* target for command		    */
    202   1.1   briggs     u_char		targ_lun;   /* lun for command			    */
    203   1.1   briggs     u_char		status;	    /* returned status byte		    */
    204   1.1   briggs     u_char		message;    /* returned message byte		    */
    205   1.1   briggs     u_char		*bounceb;   /* allocated bounce buffer		    */
    206   1.1   briggs     u_char		*bouncerp;  /* bounce read-pointer		    */
    207   1.1   briggs     struct dma_chain	dm_chain[MAXDMAIO];
    208   1.1   briggs     struct dma_chain	*dm_cur;    /* current dma-request		    */
    209   1.1   briggs     struct dma_chain	*dm_last;   /* last dma-request			    */
    210   1.1   briggs     long		xdata_len;  /* length of transfer		    */
    211   1.2   briggs     u_char		*xdata_ptr; /* virtual address of transfer	    */
    212   1.1   briggs     struct scsi_generic	xcmd;	    /* command to execute		    */
    213   1.1   briggs } SC_REQ;
    214   1.1   briggs 
    215   1.1   briggs /*
    216   1.1   briggs  * Values for dr_flag:
    217   1.1   briggs  */
    218   1.1   briggs #define	DRIVER_IN_DMA	0x01	/* Non-polled DMA activated		*/
    219   1.1   briggs #define	DRIVER_AUTOSEN	0x02	/* Doing automatic sense		*/
    220   1.1   briggs #define	DRIVER_NOINT	0x04	/* We are booting: no interrupts	*/
    221   1.1   briggs #define	DRIVER_DMAOK	0x08	/* DMA can be used on this request	*/
    222   1.1   briggs #define	DRIVER_BOUNCING	0x10	/* Using the bounce buffer		*/
    223   1.5   briggs #define DRIVER_LINKCHK	0x20	/* Doing the linked command check	*/
    224   1.1   briggs 
    225   1.1   briggs /* XXX: Should go to ncr5380var.h */
    226   1.1   briggs static SC_REQ	*issue_q   = NULL;	/* Commands waiting to be issued*/
    227   1.1   briggs static SC_REQ	*discon_q  = NULL;	/* Commands disconnected	*/
    228   1.1   briggs static SC_REQ	*connected = NULL;	/* Command currently connected	*/
    229   1.1   briggs 
    230   1.1   briggs /*
    231   1.1   briggs  * Function decls:
    232   1.1   briggs  */
    233   1.2   briggs static int  transfer_pio __P((u_char *, u_char *, u_long *, int));
    234   1.1   briggs static int  wait_req_true __P((void));
    235   1.1   briggs static int  wait_req_false __P((void));
    236   1.1   briggs static int  scsi_select __P((SC_REQ *, int));
    237   1.1   briggs static int  handle_message __P((SC_REQ *, u_int));
    238   1.2   briggs static void ack_message __P((void));
    239   1.4   briggs static void nack_message __P((SC_REQ *, u_char));
    240   1.9   briggs static void finish_req __P((SC_REQ *reqp));
    241   1.9   briggs static int command_size __P((u_char opcode));
    242   1.8   briggs static int  information_transfer __P((struct ncr_softc *));
    243   1.1   briggs static void reselect __P((struct ncr_softc *));
    244   1.1   briggs static int  check_autosense __P((SC_REQ *, int));
    245   1.1   briggs static int  reach_msg_out __P((struct ncr_softc *, u_long));
    246   1.1   briggs static int  check_intr __P((struct ncr_softc *));
    247   1.8   briggs static void scsi_reset __P((void));
    248   1.8   briggs static void scsi_reset_verbose __P((struct ncr_softc *, const char *));
    249   1.1   briggs static void run_main __P((struct ncr_softc *));
    250   1.1   briggs static void scsi_main __P((struct ncr_softc *));
    251   1.1   briggs static void ncr_ctrl_intr __P((struct ncr_softc *));
    252   1.1   briggs static void ncr_tprint __P((SC_REQ *, char *, ...));
    253   1.1   briggs static void ncr_aprint __P((struct ncr_softc *, char *, ...));
    254   1.1   briggs 
    255  1.10   bouyer static void show_data_sense __P((struct scsipi_xfer *xs));
    256   1.1   briggs static void show_request __P((SC_REQ *, char *));
    257   1.7   briggs /* static void show_phase __P((SC_REQ *, int)); */
    258   1.2   briggs static void show_signals __P((u_char, u_char));
    259   1.1   briggs 
    260   1.1   briggs #endif /* _NCR5380REG_H */
    261