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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Aic7xxx register and scratch ram definitions.
  3.  *
  4.  * Copyright (c) 1994-1998 Justin Gibbs.
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions, and the following disclaimer,
  12.  *    without modification, immediately at the beginning of the file.
  13.  * 2. The name of the author may not be used to endorse or promote products
  14.  *    derived from this software without specific prior written permission.
  15.  *
  16.  * Where this Software is combined with software released under the terms of 
  17.  * the GNU General Public License ("GPL") and the terms of the GPL would require the 
  18.  * combined work to also be released under the terms of the GPL, the terms
  19.  * and conditions of this License will apply in addition to those of the
  20.  * GPL with the exception of any terms or conditions of this License that
  21.  * conflict with, or are expressly prohibited by, the GPL.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  27.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  *
  35.  * $Id: aic7xxx.reg,v 1.4 1997/06/27 19:38:39 gibbs Exp $
  36.  */
  37. /*
  38.  * This file is processed by the aic7xxx_asm utility for use in assembling
  39.  * firmware for the aic7xxx family of SCSI host adapters as well as to generate
  40.  * a C header file for use in the kernel portion of the Aic7xxx driver.
  41.  *
  42.  * All page numbers refer to the Adaptec AIC-7770 Data Book available from
  43.  * Adaptec's Technical Documents Department 1-800-934-2766
  44.  */
  45. /*
  46.  * SCSI Sequence Control (p. 3-11).
  47.  * Each bit, when set starts a specific SCSI sequence on the bus
  48.  */
  49. register SCSISEQ {
  50. address 0x000
  51. access_mode RW
  52. bit TEMODE 0x80
  53. bit ENSELO 0x40
  54. bit ENSELI 0x20
  55. bit ENRSELI 0x10
  56. bit ENAUTOATNO 0x08
  57. bit ENAUTOATNI 0x04
  58. bit ENAUTOATNP 0x02
  59. bit SCSIRSTO 0x01
  60. }
  61. /*
  62.  * SCSI Transfer Control 0 Register (pp. 3-13).
  63.  * Controls the SCSI module data path.
  64.  */
  65. register SXFRCTL0 {
  66. address 0x001
  67. access_mode RW
  68. bit DFON 0x80
  69. bit DFPEXP 0x40
  70. bit FAST20 0x20
  71. bit CLRSTCNT 0x10
  72. bit SPIOEN 0x08
  73. bit SCAMEN 0x04
  74. bit CLRCHN 0x02
  75. }
  76. /*
  77.  * SCSI Transfer Control 1 Register (pp. 3-14,15).
  78.  * Controls the SCSI module data path.
  79.  */
  80. register SXFRCTL1 {
  81. address 0x002
  82. access_mode RW
  83. bit BITBUCKET 0x80
  84. bit SWRAPEN 0x40
  85. bit ENSPCHK 0x20
  86. mask STIMESEL 0x18
  87. bit ENSTIMER 0x04
  88. bit ACTNEGEN 0x02
  89. bit STPWEN 0x01 /* Powered Termination */
  90. }
  91. /*
  92.  * SCSI Control Signal Read Register (p. 3-15).
  93.  * Reads the actual state of the SCSI bus pins
  94.  */
  95. register SCSISIGI {
  96. address 0x003
  97. access_mode RO
  98. bit CDI 0x80
  99. bit IOI 0x40
  100. bit MSGI 0x20
  101. bit ATNI 0x10
  102. bit SELI 0x08
  103. bit BSYI 0x04
  104. bit REQI 0x02
  105. bit ACKI 0x01
  106. /*
  107.  * Possible phases in SCSISIGI
  108.  */
  109. mask PHASE_MASK CDI|IOI|MSGI
  110. mask P_DATAOUT 0x00
  111. mask P_DATAIN IOI
  112. mask P_COMMAND CDI
  113. mask P_MESGOUT CDI|MSGI
  114. mask P_STATUS CDI|IOI
  115. mask P_MESGIN CDI|IOI|MSGI
  116. }
  117. /*
  118.  * SCSI Control Signal Write Register (p. 3-16).
  119.  * Writing to this register modifies the control signals on the bus.  Only
  120.  * those signals that are allowed in the current mode (Initiator/Target) are
  121.  * asserted.
  122.  */
  123. register SCSISIGO {
  124. address 0x003
  125. access_mode WO
  126. bit CDO 0x80
  127. bit IOO 0x40
  128. bit MSGO 0x20
  129. bit ATNO 0x10
  130. bit SELO 0x08
  131. bit BSYO 0x04
  132. bit REQO 0x02
  133. bit ACKO 0x01
  134. /*
  135.  * Possible phases to write into SCSISIG0
  136.  */
  137. mask PHASE_MASK CDI|IOI|MSGI
  138. mask P_DATAOUT 0x00
  139. mask P_DATAIN IOI
  140. mask P_COMMAND CDI
  141. mask P_MESGOUT CDI|MSGI
  142. mask P_STATUS CDI|IOI
  143. mask P_MESGIN CDI|IOI|MSGI
  144. }
  145. /* 
  146.  * SCSI Rate Control (p. 3-17).
  147.  * Contents of this register determine the Synchronous SCSI data transfer
  148.  * rate and the maximum synchronous Req/Ack offset.  An offset of 0 in the
  149.  * SOFS (3:0) bits disables synchronous data transfers.  Any offset value
  150.  * greater than 0 enables synchronous transfers.
  151.  */
  152. register SCSIRATE {
  153. address 0x004
  154. access_mode RW
  155. bit WIDEXFER 0x80 /* Wide transfer control */
  156. mask SXFR 0x70 /* Sync transfer rate */
  157. mask SXFR_ULTRA2 0x7f /* Sync transfer rate */
  158. mask SOFS 0x0f /* Sync offset */
  159. }
  160. /*
  161.  * SCSI ID (p. 3-18).
  162.  * Contains the ID of the board and the current target on the
  163.  * selected channel.
  164.  */
  165. register SCSIID {
  166. address 0x005
  167. access_mode RW
  168. mask TID 0xf0 /* Target ID mask */
  169. mask OID 0x0f /* Our ID mask */
  170. /*
  171.  * SCSI Maximum Offset (p. 4-61 aic7890/91 Data Book)
  172.  * The aic7890/91 allow an offset of up to 127 transfers in both wide
  173.  * and narrow mode.
  174.  */
  175. alias SCSIOFFSET
  176. mask SOFS_ULTRA2 0x7f /* Sync offset U2 chips */
  177. }
  178. /*
  179.  * SCSI Latched Data (p. 3-19).
  180.  * Read/Write latches used to transfer data on the SCSI bus during
  181.  * Automatic or Manual PIO mode.  SCSIDATH can be used for the
  182.  * upper byte of a 16bit wide asynchronouse data phase transfer.
  183.  */
  184. register SCSIDATL {
  185. address 0x006
  186. access_mode RW
  187. }
  188. register SCSIDATH {
  189. address 0x007
  190. access_mode RW
  191. }
  192. /*
  193.  * SCSI Transfer Count (pp. 3-19,20)
  194.  * These registers count down the number of bytes transferred
  195.  * across the SCSI bus.  The counter is decremented only once
  196.  * the data has been safely transferred.  SDONE in SSTAT0 is
  197.  * set when STCNT goes to 0
  198.  */ 
  199. register STCNT {
  200. address 0x008
  201. size 3
  202. access_mode RW
  203. }
  204. /*
  205.  * Option Mode Register (Alternate Mode) (p. 5-198)
  206.  * This register is used to set certain options on Ultra3 based chips.
  207.  * The chip must be in alternate mode (bit ALT_MODE in SFUNCT must be set)
  208.  */
  209. register OPTIONMODE {
  210. address 0x008
  211. access_mode RW
  212. bit AUTORATEEN 0x80
  213. bit AUTOACKEN 0x40
  214. bit ATNMGMNTEN 0x20
  215. bit BUSFREEREV 0x10
  216. bit EXPPHASEDIS 0x08
  217. bit SCSIDATL_IMGEN 0x04
  218. bit AUTO_MSGOUT_DE 0x02
  219. bit DIS_MSGIN_DUALEDGE 0x01
  220. }
  221. /*
  222.  * Clear SCSI Interrupt 0 (p. 3-20)
  223.  * Writing a 1 to a bit clears the associated SCSI Interrupt in SSTAT0.
  224.  */
  225. register CLRSINT0 {
  226. address 0x00b
  227. access_mode WO
  228. bit CLRSELDO 0x40
  229. bit CLRSELDI 0x20
  230. bit CLRSELINGO 0x10
  231. bit CLRSWRAP 0x08
  232. bit CLRSPIORDY 0x02
  233. }
  234. /*
  235.  * SCSI Status 0 (p. 3-21)
  236.  * Contains one set of SCSI Interrupt codes
  237.  * These are most likely of interest to the sequencer
  238.  */
  239. register SSTAT0 {
  240. address 0x00b
  241. access_mode RO
  242. bit TARGET 0x80 /* Board acting as target */
  243. bit SELDO 0x40 /* Selection Done */
  244. bit SELDI 0x20 /* Board has been selected */
  245. bit SELINGO 0x10 /* Selection In Progress */
  246. bit SWRAP 0x08 /* 24bit counter wrap */
  247. bit IOERR 0x08 /* LVD Tranceiver mode changed */
  248. bit SDONE 0x04 /* STCNT = 0x000000 */
  249. bit SPIORDY 0x02 /* SCSI PIO Ready */
  250. bit DMADONE 0x01 /* DMA transfer completed */
  251. }
  252. /*
  253.  * Clear SCSI Interrupt 1 (p. 3-23)
  254.  * Writing a 1 to a bit clears the associated SCSI Interrupt in SSTAT1.
  255.  */
  256. register CLRSINT1 {
  257. address 0x00c
  258. access_mode WO
  259. bit CLRSELTIMEO 0x80
  260. bit CLRATNO 0x40
  261. bit CLRSCSIRSTI 0x20
  262. bit CLRBUSFREE 0x08
  263. bit CLRSCSIPERR 0x04
  264. bit CLRPHASECHG 0x02
  265. bit CLRREQINIT 0x01
  266. }
  267. /*
  268.  * SCSI Status 1 (p. 3-24)
  269.  */
  270. register SSTAT1 {
  271. address 0x00c
  272. access_mode RO
  273. bit SELTO 0x80
  274. bit ATNTARG  0x40
  275. bit SCSIRSTI 0x20
  276. bit PHASEMIS 0x10
  277. bit BUSFREE 0x08
  278. bit SCSIPERR 0x04
  279. bit PHASECHG 0x02
  280. bit REQINIT 0x01
  281. }
  282. /*
  283.  * SCSI Status 2 (pp. 3-25,26)
  284.  */
  285. register SSTAT2 {
  286. address 0x00d
  287. access_mode RO
  288. bit OVERRUN 0x80
  289. bit SHVALID 0x40
  290. bit WIDE_RES 0x20
  291. bit EXP_ACTIVE 0x10 /* SCSI Expander Active */
  292. bit CRCVALERR 0x08 /* CRC Value Error */
  293. bit CRCENDERR 0x04 /* CRC End Error */
  294. bit CRCREQERR 0x02 /* CRC REQ Error */
  295. bit DUAL_EDGE_ERROR 0x01 /* Invalid pins for Dual Edge phase */
  296. mask SFCNT 0x1f
  297. }
  298. /*
  299.  * SCSI Status 3 (p. 3-26)
  300.  */
  301. register SSTAT3 {
  302. address 0x00e
  303. access_mode RO
  304. mask SCSICNT 0xf0
  305. mask OFFCNT 0x0f
  306. }
  307. /*
  308.  * SCSI ID for the aic7890/91 chips
  309.  */
  310. register SCSIID_ULTRA2 {
  311. address 0x00f
  312. access_mode RW
  313. mask TID 0xf0 /* Target ID mask */
  314. mask OID 0x0f /* Our ID mask */
  315. }
  316. /*
  317.  * SCSI Interrupt Mode 1 (p. 3-28)
  318.  * Setting any bit will enable the corresponding function
  319.  * in SIMODE0 to interrupt via the IRQ pin.
  320.  */
  321. register SIMODE0 {
  322. address 0x010
  323. access_mode RW
  324. bit ENSELDO 0x40
  325. bit ENSELDI 0x20
  326. bit ENSELINGO 0x10
  327. bit ENSWRAP 0x08
  328. bit ENIOERR 0x08 /* LVD Tranceiver mode changes */
  329. bit ENSDONE 0x04
  330. bit ENSPIORDY 0x02
  331. bit ENDMADONE 0x01
  332. }
  333. /*
  334.  * SCSI Interrupt Mode 1 (pp. 3-28,29)
  335.  * Setting any bit will enable the corresponding function
  336.  * in SIMODE1 to interrupt via the IRQ pin.
  337.  */
  338. register SIMODE1 {
  339. address 0x011
  340. access_mode RW
  341. bit ENSELTIMO 0x80
  342. bit ENATNTARG 0x40
  343. bit ENSCSIRST 0x20
  344. bit ENPHASEMIS 0x10
  345. bit ENBUSFREE 0x08
  346. bit ENSCSIPERR 0x04
  347. bit ENPHASECHG 0x02
  348. bit ENREQINIT 0x01
  349. }
  350. /*
  351.  * SCSI Data Bus (High) (p. 3-29)
  352.  * This register reads data on the SCSI Data bus directly.
  353.  */
  354. register SCSIBUSL {
  355. address 0x012
  356. access_mode RO
  357. }
  358. register SCSIBUSH {
  359. address 0x013
  360. access_mode RO
  361. }
  362. /*
  363.  * SCSI/Host Address (p. 3-30)
  364.  * These registers hold the host address for the byte about to be
  365.  * transferred on the SCSI bus.  They are counted up in the same
  366.  * manner as STCNT is counted down.  SHADDR should always be used
  367.  * to determine the address of the last byte transferred since HADDR
  368.  * can be skewed by write ahead.
  369.  */
  370. register SHADDR {
  371. address 0x014
  372. size 4
  373. access_mode RO
  374. }
  375. /*
  376.  * Selection Timeout Timer (p. 3-30)
  377.  */
  378. register SELTIMER {
  379. address 0x018
  380. access_mode RW
  381. bit STAGE6 0x20
  382. bit STAGE5 0x10
  383. bit STAGE4 0x08
  384. bit STAGE3 0x04
  385. bit STAGE2 0x02
  386. bit STAGE1 0x01
  387. }
  388. /*
  389.  * Selection/Reselection ID (p. 3-31)
  390.  * Upper four bits are the device id.  The ONEBIT is set when the re/selecting
  391.  * device did not set its own ID.
  392.  */
  393. register SELID {
  394. address 0x019
  395. access_mode RW
  396. mask SELID_MASK 0xf0
  397. bit ONEBIT 0x08
  398. }
  399. /*
  400.  * Serial Port I/O Cabability register (p. 4-95 aic7860 Data Book)
  401.  * Indicates if external logic has been attached to the chip to
  402.  * perform the tasks of accessing a serial eeprom, testing termination
  403.  * strength, and performing cable detection.  On the aic7860, most of
  404.  * these features are handled on chip, but on the aic7855 an attached
  405.  * aic3800 does the grunt work.
  406.  */
  407. register SPIOCAP {
  408. address 0x01b
  409. access_mode RW
  410. bit SOFT1 0x80
  411. bit SOFT0 0x40
  412. bit SOFTCMDEN 0x20
  413. bit HAS_BRDCTL 0x10 /* External Board control */
  414. bit SEEPROM 0x08 /* External serial eeprom logic */
  415. bit EEPROM 0x04 /* Writable external BIOS ROM */
  416. bit ROM 0x02 /* Logic for accessing external ROM */
  417. bit SSPIOCPS 0x01 /* Termination and cable detection */
  418. }
  419. /*
  420.  * SCSI Block Control (p. 3-32)
  421.  * Controls Bus type and channel selection.  In a twin channel configuration
  422.  * addresses 0x00-0x1e are gated to the appropriate channel based on this
  423.  * register.  SELWIDE allows for the coexistence of 8bit and 16bit devices
  424.  * on a wide bus.
  425.  */
  426. register SBLKCTL {
  427. address 0x01f
  428. access_mode RW
  429. bit DIAGLEDEN 0x80 /* Aic78X0 only */
  430. bit DIAGLEDON 0x40 /* Aic78X0 only */
  431. bit AUTOFLUSHDIS 0x20
  432. bit SELBUSB 0x08
  433. bit ENAB40 0x08 /* LVD transceiver active */
  434. bit ENAB20 0x04 /* SE/HVD transceiver active */
  435. bit SELWIDE 0x02
  436. bit XCVR 0x01 /* External transceiver active */
  437. }
  438. /*
  439.  * Sequencer Control (p. 3-33)
  440.  * Error detection mode and speed configuration
  441.  */
  442. register SEQCTL {
  443. address 0x060
  444. access_mode RW
  445. bit PERRORDIS 0x80
  446. bit PAUSEDIS 0x40
  447. bit FAILDIS 0x20
  448. bit FASTMODE 0x10
  449. bit BRKADRINTEN 0x08
  450. bit STEP 0x04
  451. bit SEQRESET 0x02
  452. bit LOADRAM 0x01
  453. }
  454. /*
  455.  * Sequencer RAM Data (p. 3-34)
  456.  * Single byte window into the Scratch Ram area starting at the address
  457.  * specified by SEQADDR0 and SEQADDR1.  To write a full word, simply write
  458.  * four bytes in succession.  The SEQADDRs will increment after the most
  459.  * significant byte is written
  460.  */
  461. register SEQRAM {
  462. address 0x061
  463. access_mode RW
  464. }
  465. /*
  466.  * Sequencer Address Registers (p. 3-35)
  467.  * Only the first bit of SEQADDR1 holds addressing information
  468.  */
  469. register SEQADDR0 {
  470. address 0x062
  471. access_mode RW
  472. }
  473. register SEQADDR1 {
  474. address 0x063
  475. access_mode RW
  476. mask SEQADDR1_MASK 0x01
  477. }
  478. /*
  479.  * Accumulator
  480.  * We cheat by passing arguments in the Accumulator up to the kernel driver
  481.  */
  482. register ACCUM {
  483. address 0x064
  484. access_mode RW
  485. accumulator
  486. }
  487. register SINDEX {
  488. address 0x065
  489. access_mode RW
  490. sindex
  491. }
  492. register DINDEX {
  493. address 0x066
  494. access_mode RW
  495. }
  496. register ALLONES {
  497. address 0x069
  498. access_mode RO
  499. allones
  500. }
  501. register ALLZEROS {
  502. address 0x06a
  503. access_mode RO
  504. allzeros
  505. }
  506. register NONE {
  507. address 0x06a
  508. access_mode WO
  509. none
  510. }
  511. register FLAGS {
  512. address 0x06b
  513. access_mode RO
  514. bit ZERO 0x02
  515. bit CARRY 0x01
  516. }
  517. register SINDIR {
  518. address 0x06c
  519. access_mode RO
  520. }
  521. register DINDIR  {
  522. address 0x06d
  523. access_mode WO
  524. }
  525. register FUNCTION1 {
  526. address 0x06e
  527. access_mode RW
  528. }
  529. register STACK {
  530. address 0x06f
  531. access_mode RO
  532. }
  533. /*
  534.  * Board Control (p. 3-43)
  535.  */
  536. register BCTL {
  537. address 0x084
  538. access_mode RW
  539. bit ACE 0x08
  540. bit ENABLE 0x01
  541. }
  542. register DSCOMMAND0 {
  543. address 0x084
  544. access_mode RW
  545. bit CACHETHEN 0x80
  546. bit DPARCKEN 0x40
  547. bit MPARCKEN 0x20
  548. bit EXTREQLCK 0x10
  549. bit INTSCBRAMSEL 0x08
  550. bit RAMPS 0x04
  551. bit USCBSIZE32 0x02
  552. bit CIOPARCKEN 0x01
  553. }
  554. /*
  555.  * On the aic78X0 chips, Board Control is replaced by the DSCommand
  556.  * register (p. 4-64)
  557.  */
  558. register DSCOMMAND {
  559. address 0x084
  560. access_mode RW
  561. bit CACHETHEN 0x80 /* Cache Threshold enable */
  562. bit DPARCKEN 0x40 /* Data Parity Check Enable */
  563. bit MPARCKEN 0x20 /* Memory Parity Check Enable */
  564. bit EXTREQLCK 0x10 /* External Request Lock */
  565. }
  566. /*
  567.  * Bus On/Off Time (p. 3-44)
  568.  */
  569. register BUSTIME {
  570. address 0x085
  571. access_mode RW
  572. mask BOFF 0xf0
  573. mask BON 0x0f
  574. }
  575. /*
  576.  * Bus Speed (p. 3-45)
  577.  */
  578. register BUSSPD {
  579. address 0x086
  580. access_mode RW
  581. mask DFTHRSH 0xc0
  582. mask STBOFF 0x38
  583. mask STBON 0x07
  584. mask DFTHRSH_100 0xc0
  585. }
  586. /*
  587.  * Host Control (p. 3-47) R/W
  588.  * Overall host control of the device.
  589.  */
  590. register HCNTRL {
  591. address 0x087
  592. access_mode RW
  593. bit POWRDN 0x40
  594. bit SWINT 0x10
  595. bit IRQMS 0x08
  596. bit PAUSE 0x04
  597. bit INTEN 0x02
  598. bit CHIPRST 0x01
  599. bit CHIPRSTACK 0x01
  600. }
  601. /*
  602.  * Host Address (p. 3-48)
  603.  * This register contains the address of the byte about
  604.  * to be transferred across the host bus.
  605.  */
  606. register HADDR {
  607. address 0x088
  608. size 4
  609. access_mode RW
  610. }
  611. register HCNT {
  612. address 0x08c
  613. size 3
  614. access_mode RW
  615. }
  616. /*
  617.  * SCB Pointer (p. 3-49)
  618.  * Gate one of the four SCBs into the SCBARRAY window.
  619.  */
  620. register SCBPTR {
  621. address 0x090
  622. access_mode RW
  623. }
  624. /*
  625.  * Interrupt Status (p. 3-50)
  626.  * Status for system interrupts
  627.  */
  628. register INTSTAT {
  629. address 0x091
  630. access_mode RW
  631. bit BRKADRINT 0x08
  632. bit SCSIINT   0x04
  633. bit CMDCMPLT  0x02
  634. bit SEQINT    0x01
  635. mask BAD_PHASE SEQINT /* unknown scsi bus phase */
  636. mask SEND_REJECT 0x10|SEQINT /* sending a message reject */
  637. mask NO_IDENT 0x20|SEQINT /* no IDENTIFY after reconnect*/
  638. mask NO_MATCH 0x30|SEQINT /* no cmd match for reconnect */
  639. mask EXTENDED_MSG 0x40|SEQINT /* Extended message received */
  640. mask WIDE_RESIDUE 0x50|SEQINT /* need kernel to back up */
  641. /* the SG array for us */
  642. mask REJECT_MSG 0x60|SEQINT /* Reject message received */
  643. mask BAD_STATUS 0x70|SEQINT /* Bad status from target */
  644. mask RESIDUAL 0x80|SEQINT /* Residual byte count != 0 */
  645. mask AWAITING_MSG 0xa0|SEQINT /*
  646.  * Kernel requested to specify
  647.  * a message to this target
  648.  * (command was null), so tell
  649.  * it that it can fill the
  650.  * message buffer.
  651.  */
  652. mask SEQ_SG_FIXUP 0xb0|SEQINT /* need help with fixing up
  653.  * the sg array pointer after
  654.  * a phasemis with no valid
  655.  * sg elements in the shadow
  656.  * pipeline.
  657.  */
  658. mask TRACEPOINT2 0xc0|SEQINT
  659. mask MSGIN_PHASEMIS 0xd0|SEQINT /*
  660.  * Target changed phase on us
  661.  * when we were expecting
  662.  * another msgin byte.
  663.  */
  664. mask DATA_OVERRUN 0xe0|SEQINT /*
  665.  * Target attempted to write
  666.  * beyond the bounds of its
  667.  * command.
  668.  */
  669. mask SEQINT_MASK 0xf0|SEQINT /* SEQINT Status Codes */
  670. mask INT_PEND  (BRKADRINT|SEQINT|SCSIINT|CMDCMPLT)
  671. }
  672. /*
  673.  * Hard Error (p. 3-53)
  674.  * Reporting of catastrophic errors.  You usually cannot recover from
  675.  * these without a full board reset.
  676.  */
  677. register ERROR {
  678. address 0x092
  679. access_mode RO
  680. bit CIOPARERR 0x80 /* Ultra2 only */
  681. bit PCIERRSTAT 0x40 /* PCI only */
  682. bit MPARERR 0x20 /* PCI only */
  683. bit DPARERR 0x10 /* PCI only */
  684. bit SQPARERR 0x08
  685. bit ILLOPCODE 0x04
  686. bit ILLSADDR 0x02
  687. bit DSCTMOUT 0x02 /* Ultra3 only */
  688. bit ILLHADDR 0x01
  689. }
  690. /*
  691.  * Clear Interrupt Status (p. 3-52)
  692.  */
  693. register CLRINT {
  694. address 0x092
  695. access_mode WO
  696. bit CLRPARERR 0x10 /* PCI only */
  697. bit CLRBRKADRINT 0x08
  698. bit CLRSCSIINT      0x04
  699. bit CLRCMDINT  0x02
  700. bit CLRSEQINT  0x01
  701. }
  702. register DFCNTRL {
  703. address 0x093
  704. access_mode RW
  705. bit PRELOADEN 0x80 /* aic7890 only */
  706. bit WIDEODD 0x40
  707. bit SCSIEN 0x20
  708. bit SDMAEN 0x10
  709. bit SDMAENACK 0x10
  710. bit HDMAEN 0x08
  711. bit HDMAENACK 0x08
  712. bit DIRECTION 0x04
  713. bit FIFOFLUSH 0x02
  714. bit FIFORESET 0x01
  715. }
  716. register DFSTATUS {
  717. address 0x094
  718. access_mode RO
  719. bit PRELOAD_AVAIL 0x80
  720. bit DWORDEMP 0x20
  721. bit MREQPEND 0x10
  722. bit HDONE 0x08
  723. bit DFTHRESH 0x04
  724. bit FIFOFULL 0x02
  725. bit FIFOEMP 0x01
  726. }
  727. register DFDAT {
  728. address 0x099
  729. access_mode RW
  730. }
  731. /*
  732.  * SCB Auto Increment (p. 3-59)
  733.  * Byte offset into the SCB Array and an optional bit to allow auto
  734.  * incrementing of the address during download and upload operations
  735.  */
  736. register SCBCNT {
  737. address 0x09a
  738. access_mode RW
  739. bit SCBAUTO 0x80
  740. mask SCBCNT_MASK 0x1f
  741. }
  742. /*
  743.  * Queue In FIFO (p. 3-60)
  744.  * Input queue for queued SCBs (commands that the seqencer has yet to start)
  745.  */
  746. register QINFIFO {
  747. address 0x09b
  748. access_mode RW
  749. }
  750. /*
  751.  * Queue In Count (p. 3-60)
  752.  * Number of queued SCBs
  753.  */
  754. register QINCNT {
  755. address 0x09c
  756. access_mode RO
  757. }
  758. /*
  759.  * SCSIDATL IMAGE Register (p. 5-104)
  760.  * Write to this register also go to SCSIDATL but this register will preserve
  761.  * the data for later reading as long as the SCSIDATL_IMGEN bit in the
  762.  * OPTIONMODE register is set.
  763.  */
  764. register SCSIDATL_IMG {
  765. address 0x09c
  766. access_mode RW
  767. }
  768. /*
  769.  * Queue Out FIFO (p. 3-61)
  770.  * Queue of SCBs that have completed and await the host
  771.  */
  772. register QOUTFIFO {
  773. address 0x09d
  774. access_mode WO
  775. }
  776. /*
  777.  * CRC Control 1 Register (p. 5-105)
  778.  * Control bits for the Ultra 160/m CRC facilities
  779.  */
  780. register CRCCONTROL1 {
  781. address 0x09d
  782. access_mode RW
  783. bit CRCONSEEN 0x80 /* CRC ON Single Edge ENable */
  784. bit CRCVALCHKEN 0x40 /* CRC Value Check Enable */
  785. bit CRCENDCHKEN 0x20 /* CRC End Check Enable */
  786. bit CRCREQCHKEN 0x10
  787. bit TARGCRCENDEN 0x08 /* Enable End CRC transfer when target */
  788. bit TARGCRCCNTEN 0x04 /* Enable CRC transfer when target */
  789. }
  790. /*
  791.  * Queue Out Count (p. 3-61)
  792.  * Number of queued SCBs in the Out FIFO
  793.  */
  794. register QOUTCNT {
  795. address 0x09e
  796. access_mode RO
  797. }
  798. /*
  799.  * SCSI Phase Register (p. 5-106)
  800.  * Current bus phase
  801.  */
  802. register SCSIPHASE {
  803. address 0x09e
  804. access_mode RO
  805. bit SP_STATUS 0x20
  806. bit SP_COMMAND 0x10
  807. bit SP_MSG_IN 0x08
  808. bit SP_MSG_OUT 0x04
  809. bit SP_DATA_IN 0x02
  810. bit SP_DATA_OUT 0x01
  811. }
  812. /*
  813.  * Special Function
  814.  */
  815. register SFUNCT {
  816. address 0x09f
  817. access_mode RW
  818. bit ALT_MODE 0x80
  819. }
  820. /*
  821.  * SCB Definition (p. 5-4)
  822.  */
  823. scb {
  824. address 0x0a0
  825. SCB_CONTROL {
  826. size 1
  827. bit MK_MESSAGE      0x80
  828. bit DISCENB         0x40
  829. bit TAG_ENB 0x20
  830. bit DISCONNECTED 0x04
  831. mask SCB_TAG_TYPE 0x03
  832. }
  833. SCB_TCL {
  834. size 1
  835. bit SELBUSB 0x08
  836. mask TID 0xf0
  837. mask LID 0x07
  838. }
  839. SCB_TARGET_STATUS {
  840. size 1
  841. }
  842. SCB_SGCOUNT {
  843. size 1
  844. }
  845. SCB_SGPTR {
  846. size 4
  847. }
  848. SCB_RESID_SGCNT {
  849. size 1
  850. }
  851. SCB_RESID_DCNT {
  852. size 3
  853. }
  854. SCB_DATAPTR {
  855. size 4
  856. }
  857. SCB_DATACNT {
  858. /*
  859.  * Really only 3 bytes, but padded to make
  860.  * the kernel's job easier.
  861.  */
  862. size 4
  863. }
  864. SCB_CMDPTR {
  865. size 4
  866. }
  867. SCB_CMDLEN {
  868. size 1
  869. }
  870. SCB_TAG {
  871. size 1
  872. }
  873. SCB_NEXT {
  874. size 1
  875. }
  876. SCB_PREV {
  877. size 1
  878. }
  879. SCB_BUSYTARGETS {
  880. size 4
  881. }
  882. }
  883. const SG_SIZEOF 0x08 /* sizeof(struct ahc_dma) */
  884. /* --------------------- AHA-2840-only definitions -------------------- */
  885. register SEECTL_2840 {
  886. address 0x0c0
  887. access_mode RW
  888. bit CS_2840 0x04
  889. bit CK_2840 0x02
  890. bit DO_2840 0x01
  891. }
  892. register STATUS_2840 {
  893. address 0x0c1
  894. access_mode RW
  895. bit EEPROM_TF 0x80
  896. mask BIOS_SEL 0x60
  897. mask ADSEL 0x1e
  898. bit DI_2840 0x01
  899. }
  900. /* --------------------- AIC-7870-only definitions -------------------- */
  901. register DSPCISTATUS {
  902. address 0x086
  903. mask DFTHRSH_100 0xc0
  904. }
  905. register CCHADDR {
  906. address 0x0E0
  907. size 8
  908. }
  909. register CCHCNT {
  910. address 0x0E8
  911. }
  912. register CCSGRAM {
  913. address 0x0E9
  914. }
  915. register CCSGADDR {
  916. address 0x0EA
  917. }
  918. register CCSGCTL {
  919. address 0x0EB
  920. bit CCSGDONE 0x80
  921. bit CCSGEN 0x08
  922. bit FLAG 0x02
  923. bit CCSGRESET 0x01
  924. }
  925. register CCSCBCNT {
  926. address 0xEF
  927. }
  928. register CCSCBCTL {
  929. address 0x0EE
  930. bit CCSCBDONE 0x80
  931. bit ARRDONE 0x40 /* SCB Array prefetch done */
  932. bit CCARREN 0x10
  933. bit CCSCBEN 0x08
  934. bit CCSCBDIR 0x04
  935. bit CCSCBRESET 0x01
  936. }
  937. register CCSCBADDR {
  938. address 0x0ED
  939. }
  940. register CCSCBRAM {
  941. address 0xEC
  942. }
  943. register CCSCBPTR {
  944. address 0x0F1
  945. }
  946. register HNSCB_QOFF {
  947. address 0x0F4
  948. }
  949. register HESCB_QOFF {
  950. address 0x0F5
  951. }
  952. register SNSCB_QOFF {
  953. address 0x0F6
  954. }
  955. register SESCB_QOFF {
  956. address 0x0F7
  957. }
  958. register SDSCB_QOFF {
  959. address 0x0F8
  960. }
  961. register QOFF_CTLSTA {
  962. address 0x0FA
  963. bit ESTABLISH_SCB_AVAIL 0x80
  964. bit SCB_AVAIL 0x40
  965. bit SNSCB_ROLLOVER 0x20
  966. bit SDSCB_ROLLOVER 0x10
  967. bit SESCB_ROLLOVER 0x08
  968. mask SCB_QSIZE 0x07
  969. mask SCB_QSIZE_256 0x06
  970. }
  971. register DFF_THRSH {
  972. address 0x0FB
  973. mask WR_DFTHRSH 0x70
  974. mask RD_DFTHRSH 0x07
  975. mask RD_DFTHRSH_MIN 0x00
  976. mask RD_DFTHRSH_25 0x01
  977. mask RD_DFTHRSH_50 0x02
  978. mask RD_DFTHRSH_63 0x03
  979. mask RD_DFTHRSH_75 0x04
  980. mask RD_DFTHRSH_85 0x05
  981. mask RD_DFTHRSH_90 0x06
  982. mask RD_DFTHRSH_MAX 0x07
  983. mask WR_DFTHRSH_MIN 0x00
  984. mask WR_DFTHRSH_25 0x10
  985. mask WR_DFTHRSH_50 0x20
  986. mask WR_DFTHRSH_63 0x30
  987. mask WR_DFTHRSH_75 0x40
  988. mask WR_DFTHRSH_85 0x50
  989. mask WR_DFTHRSH_90 0x60
  990. mask WR_DFTHRSH_MAX 0x70
  991. }
  992. register SG_CACHEPTR {
  993. access_mode RW
  994. address 0x0fc
  995. mask SG_USER_DATA 0xfc
  996. bit LAST_SEG 0x02
  997. bit LAST_SEG_DONE 0x01
  998. }
  999. register BRDCTL {
  1000. address 0x01d
  1001. bit BRDDAT7 0x80
  1002. bit BRDDAT6 0x40
  1003. bit BRDDAT5 0x20
  1004. bit BRDSTB 0x10
  1005. bit BRDCS 0x08
  1006. bit BRDRW 0x04
  1007. bit BRDCTL1 0x02
  1008. bit BRDCTL0 0x01
  1009. /* 7890 Definitions */
  1010. bit BRDDAT4 0x10
  1011. bit BRDDAT3 0x08
  1012. bit BRDDAT2 0x04
  1013. bit BRDRW_ULTRA2 0x02
  1014. bit BRDSTB_ULTRA2 0x01
  1015. }
  1016. /*
  1017.  * Serial EEPROM Control (p. 4-92 in 7870 Databook)
  1018.  * Controls the reading and writing of an external serial 1-bit
  1019.  * EEPROM Device.  In order to access the serial EEPROM, you must
  1020.  * first set the SEEMS bit that generates a request to the memory
  1021.  * port for access to the serial EEPROM device.  When the memory
  1022.  * port is not busy servicing another request, it reconfigures
  1023.  * to allow access to the serial EEPROM.  When this happens, SEERDY
  1024.  * gets set high to verify that the memory port access has been
  1025.  * granted.  
  1026.  *
  1027.  * After successful arbitration for the memory port, the SEECS bit of 
  1028.  * the SEECTL register is connected to the chip select.  The SEECK, 
  1029.  * SEEDO, and SEEDI are connected to the clock, data out, and data in 
  1030.  * lines respectively.  The SEERDY bit of SEECTL is useful in that it 
  1031.  * gives us an 800 nsec timer.  After a write to the SEECTL register, 
  1032.  * the SEERDY goes high 800 nsec later.  The one exception to this is 
  1033.  * when we first request access to the memory port.  The SEERDY goes 
  1034.  * high to signify that access has been granted and, for this case, has 
  1035.  * no implied timing.
  1036.  *
  1037.  * See 93cx6.c for detailed information on the protocol necessary to 
  1038.  * read the serial EEPROM.
  1039.  */
  1040. register SEECTL {
  1041. address 0x01e
  1042. bit EXTARBACK 0x80
  1043. bit EXTARBREQ 0x40
  1044. bit SEEMS 0x20
  1045. bit SEERDY 0x10
  1046. bit SEECS 0x08
  1047. bit SEECK 0x04
  1048. bit SEEDO 0x02
  1049. bit SEEDI 0x01
  1050. }
  1051. /* ---------------------- Scratch RAM Offsets ------------------------- */
  1052. /* These offsets are either to values that are initialized by the board's
  1053.  * BIOS or are specified by the sequencer code.
  1054.  *
  1055.  * The host adapter card (at least the BIOS) uses 20-2f for SCSI
  1056.  * device information, 32-33 and 5a-5f as well. As it turns out, the
  1057.  * BIOS trashes 20-2f, writing the synchronous negotiation results
  1058.  * on top of the BIOS values, so we re-use those for our per-target
  1059.  * scratchspace (actually a value that can be copied directly into
  1060.  * SCSIRATE).  The kernel driver will enable synchronous negotiation
  1061.  * for all targets that have a value other than 0 in the lower four
  1062.  * bits of the target scratch space.  This should work regardless of
  1063.  * whether the bios has been installed.
  1064.  */
  1065. scratch_ram {
  1066. address 0x020
  1067. /*
  1068.  * 1 byte per target starting at this address for configuration values
  1069.  */
  1070. TARG_SCSIRATE {
  1071. size 16
  1072. }
  1073. /*
  1074.  * Bit vector of targets that have ULTRA enabled.
  1075.  */
  1076. ULTRA_ENB {
  1077. size 2
  1078. }
  1079. /*
  1080.  * Bit vector of targets that have disconnection disabled.
  1081.  */
  1082. DISC_DSB {
  1083. size 2
  1084. }
  1085. /*
  1086.  * Single byte buffer used to designate the type or message
  1087.  * to send to a target.
  1088.  */
  1089. MSG_OUT {
  1090. size 1
  1091. }
  1092. /* Parameters for DMA Logic */
  1093. DMAPARAMS {
  1094. size 1
  1095. bit PRELOADEN 0x80
  1096. bit WIDEODD 0x40
  1097. bit SCSIEN 0x20
  1098. bit SDMAEN 0x10
  1099. bit SDMAENACK 0x10
  1100. bit HDMAEN 0x08
  1101. bit HDMAENACK 0x08
  1102. bit DIRECTION 0x04
  1103. bit FIFOFLUSH 0x02
  1104. bit FIFORESET 0x01
  1105. }
  1106. SEQ_FLAGS {
  1107. size 1
  1108. bit IDENTIFY_SEEN 0x80
  1109. bit SCBPTR_VALID 0x20
  1110. bit DPHASE 0x10
  1111. bit AMTARGET 0x08
  1112. bit WIDE_BUS 0x02
  1113. bit TWIN_BUS 0x01
  1114. }
  1115. /*
  1116.  * Temporary storage for the
  1117.  * target/channel/lun of a
  1118.  * reconnecting target
  1119.  */
  1120. SAVED_TCL {
  1121. size 1
  1122. }
  1123. /* Working value of the number of SG segments left */
  1124. SG_COUNT {
  1125. size 1
  1126. }
  1127. /* Working value of SG pointer */
  1128. SG_NEXT {
  1129. size 4
  1130. }
  1131. /*
  1132.  * The last bus phase as seen by the sequencer. 
  1133.  */
  1134. LASTPHASE {
  1135. size 1
  1136. bit CDI 0x80
  1137. bit IOI 0x40
  1138. bit MSGI 0x20
  1139. mask PHASE_MASK CDI|IOI|MSGI
  1140. mask P_DATAOUT 0x00
  1141. mask P_DATAIN IOI
  1142. mask P_COMMAND CDI
  1143. mask P_MESGOUT CDI|MSGI
  1144. mask P_STATUS CDI|IOI
  1145. mask P_MESGIN CDI|IOI|MSGI
  1146. mask P_BUSFREE 0x01
  1147. }
  1148. /*
  1149.  * head of list of SCBs awaiting
  1150.  * selection
  1151.  */
  1152. WAITING_SCBH {
  1153. size 1
  1154. }
  1155. /*
  1156.  * head of list of SCBs that are
  1157.  * disconnected.  Used for SCB
  1158.  * paging.
  1159.  */
  1160. DISCONNECTED_SCBH {
  1161. size 1
  1162. }
  1163. /*
  1164.  * head of list of SCBs that are
  1165.  * not in use.  Used for SCB paging.
  1166.  */
  1167. FREE_SCBH {
  1168. size 1
  1169. }
  1170. /*
  1171.  * Address of the hardware scb array in the host.
  1172.  */
  1173. HSCB_ADDR {
  1174. size 4
  1175. }
  1176. /*
  1177.  * Address of the 256 byte array storing the SCBID of outstanding
  1178.  * untagged SCBs indexed by TCL.
  1179.  */
  1180. SCBID_ADDR {
  1181. size 4
  1182. }
  1183. /*
  1184.  * Address of the array of command descriptors used to store
  1185.  * information about incoming selections.
  1186.  */
  1187. TMODE_CMDADDR {
  1188. size 4
  1189. }
  1190. KERNEL_QINPOS {
  1191. size 1
  1192. }
  1193. QINPOS {
  1194. size 1
  1195. }
  1196. QOUTPOS {
  1197. size 1
  1198. }
  1199. /*
  1200.  * Offset into the command descriptor array for the next
  1201.  * available desciptor to use.
  1202.  */
  1203. TMODE_CMDADDR_NEXT {
  1204. size 1
  1205. }
  1206. ARG_1 {
  1207. size 1
  1208. mask SEND_MSG 0x80
  1209. mask SEND_SENSE 0x40
  1210. mask SEND_REJ 0x20
  1211. mask MSGOUT_PHASEMIS 0x10
  1212. alias RETURN_1
  1213. }
  1214. ARG_2 {
  1215. size 1
  1216. alias RETURN_2
  1217. }
  1218. /*
  1219.  * Snapshot of MSG_OUT taken after each message is sent.
  1220.  */
  1221. LAST_MSG {
  1222. size 1
  1223. }
  1224. /*
  1225.  * Number of times we have filled the CCSGRAM with prefetched
  1226.  * SG elements.
  1227.  */
  1228. PREFETCH_CNT {
  1229. size 1
  1230. }
  1231. /*
  1232.  * These are reserved registers in the card's scratch ram.  Some of
  1233.  * the values are specified in the AHA2742 technical reference manual
  1234.  * and are initialized by the BIOS at boot time.
  1235.  */
  1236. SCSICONF {
  1237. address 0x05a
  1238. size 1
  1239. bit TERM_ENB 0x80
  1240. bit RESET_SCSI 0x40
  1241. mask HSCSIID 0x07 /* our SCSI ID */
  1242. mask HWSCSIID 0x0f /* our SCSI ID if Wide Bus */
  1243. }
  1244. HOSTCONF {
  1245. address 0x05d
  1246. size 1
  1247. }
  1248. HA_274_BIOSCTRL {
  1249. address 0x05f
  1250. size 1
  1251. mask BIOSMODE 0x30
  1252. mask BIOSDISABLED 0x30
  1253. bit CHANNEL_B_PRIMARY 0x08
  1254. }
  1255. /*
  1256.  * Per target SCSI offset values for Ultra2 controllers.
  1257.  */
  1258. TARG_OFFSET {
  1259. address 0x070
  1260. size 16
  1261. }
  1262. }
  1263. const SCB_LIST_NULL 0xff
  1264. const CCSGADDR_MAX 0x80
  1265. const CCSGRAM_MAXSEGS 16
  1266. /* Offsets into the SCBID array where different data is stored */
  1267. const UNTAGGEDSCB_OFFSET 0
  1268. const QOUTFIFO_OFFSET 1
  1269. const QINFIFO_OFFSET 2
  1270. /* WDTR Message values */
  1271. const BUS_8_BIT 0x00
  1272. const BUS_16_BIT 0x01
  1273. const BUS_32_BIT 0x02
  1274. /* Offset maximums */
  1275. const MAX_OFFSET_8BIT 0x0f
  1276. const MAX_OFFSET_16BIT 0x08
  1277. const MAX_OFFSET_ULTRA2 0x7f
  1278. const HOST_MSG 0xff
  1279. /* Target mode command processing constants */
  1280. const CMD_GROUP_CODE_SHIFT 0x05
  1281. const CMD_GROUP0_BYTE_DELTA -4
  1282. const CMD_GROUP2_BYTE_DELTA -6
  1283. const CMD_GROUP4_BYTE_DELTA 4
  1284. const CMD_GROUP5_BYTE_DELTA 11
  1285. /*
  1286.  * Downloaded (kernel inserted) constants
  1287.  */
  1288. /*
  1289.  * Number of command descriptors in the command descriptor array.
  1290.  */
  1291. const TMODE_NUMCMDS download