aic7xxx.h 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342
  1. /*
  2. * Core definitions and data structures shareable across OS platforms.
  3. *
  4. * Copyright (c) 1994-2001 Justin T. Gibbs.
  5. * Copyright (c) 2000-2001 Adaptec Inc.
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions, and the following disclaimer,
  13. * without modification.
  14. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  15. * substantially similar to the "NO WARRANTY" disclaimer below
  16. * ("Disclaimer") and any redistribution must be conditioned upon
  17. * including a substantially similar Disclaimer requirement for further
  18. * binary redistribution.
  19. * 3. Neither the names of the above-listed copyright holders nor the names
  20. * of any contributors may be used to endorse or promote products derived
  21. * from this software without specific prior written permission.
  22. *
  23. * Alternatively, this software may be distributed under the terms of the
  24. * GNU General Public License ("GPL") version 2 as published by the Free
  25. * Software Foundation.
  26. *
  27. * NO WARRANTY
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  31. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  32. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  33. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  34. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  36. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  37. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  38. * POSSIBILITY OF SUCH DAMAGES.
  39. *
  40. * $Id: //depot/aic7xxx/aic7xxx/aic7xxx.h#85 $
  41. *
  42. * $FreeBSD$
  43. */
  44. #ifndef _AIC7XXX_H_
  45. #define _AIC7XXX_H_
  46. /* Register Definitions */
  47. #include "aic7xxx_reg.h"
  48. /************************* Forward Declarations *******************************/
  49. struct ahc_platform_data;
  50. struct scb_platform_data;
  51. struct seeprom_descriptor;
  52. /****************************** Useful Macros *********************************/
  53. #ifndef MAX
  54. #define MAX(a,b) (((a) > (b)) ? (a) : (b))
  55. #endif
  56. #ifndef MIN
  57. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  58. #endif
  59. #ifndef TRUE
  60. #define TRUE 1
  61. #endif
  62. #ifndef FALSE
  63. #define FALSE 0
  64. #endif
  65. #define ALL_CHANNELS '\0'
  66. #define ALL_TARGETS_MASK 0xFFFF
  67. #define INITIATOR_WILDCARD (~0)
  68. #define SCSIID_TARGET(ahc, scsiid) \
  69. (((scsiid) & ((((ahc)->features & AHC_TWIN) != 0) ? TWIN_TID : TID)) \
  70. >> TID_SHIFT)
  71. #define SCSIID_OUR_ID(scsiid) \
  72. ((scsiid) & OID)
  73. #define SCSIID_CHANNEL(ahc, scsiid) \
  74. ((((ahc)->features & AHC_TWIN) != 0) \
  75. ? ((((scsiid) & TWIN_CHNLB) != 0) ? 'B' : 'A') \
  76. : 'A')
  77. #define SCB_IS_SCSIBUS_B(ahc, scb) \
  78. (SCSIID_CHANNEL(ahc, (scb)->hscb->scsiid) == 'B')
  79. #define SCB_GET_OUR_ID(scb) \
  80. SCSIID_OUR_ID((scb)->hscb->scsiid)
  81. #define SCB_GET_TARGET(ahc, scb) \
  82. SCSIID_TARGET((ahc), (scb)->hscb->scsiid)
  83. #define SCB_GET_CHANNEL(ahc, scb) \
  84. SCSIID_CHANNEL(ahc, (scb)->hscb->scsiid)
  85. #define SCB_GET_LUN(scb) \
  86. ((scb)->hscb->lun & LID)
  87. #define SCB_GET_TARGET_OFFSET(ahc, scb) \
  88. (SCB_GET_TARGET(ahc, scb) + (SCB_IS_SCSIBUS_B(ahc, scb) ? 8 : 0))
  89. #define SCB_GET_TARGET_MASK(ahc, scb) \
  90. (0x01 << (SCB_GET_TARGET_OFFSET(ahc, scb)))
  91. #ifdef AHC_DEBUG
  92. #define SCB_IS_SILENT(scb) \
  93. ((ahc_debug & AHC_SHOW_MASKED_ERRORS) == 0 \
  94. && (((scb)->flags & SCB_SILENT) != 0))
  95. #else
  96. #define SCB_IS_SILENT(scb) \
  97. (((scb)->flags & SCB_SILENT) != 0)
  98. #endif
  99. #define TCL_TARGET_OFFSET(tcl) \
  100. ((((tcl) >> 4) & TID) >> 4)
  101. #define TCL_LUN(tcl) \
  102. (tcl & (AHC_NUM_LUNS - 1))
  103. #define BUILD_TCL(scsiid, lun) \
  104. ((lun) | (((scsiid) & TID) << 4))
  105. #ifndef AHC_TARGET_MODE
  106. #undef AHC_TMODE_ENABLE
  107. #define AHC_TMODE_ENABLE 0
  108. #endif
  109. /**************************** Driver Constants ********************************/
  110. /*
  111. * The maximum number of supported targets.
  112. */
  113. #define AHC_NUM_TARGETS 16
  114. /*
  115. * The maximum number of supported luns.
  116. * The identify message only supports 64 luns in SPI3.
  117. * You can have 2^64 luns when information unit transfers are enabled,
  118. * but it is doubtful this driver will ever support IUTs.
  119. */
  120. #define AHC_NUM_LUNS 64
  121. /*
  122. * The maximum transfer per S/G segment.
  123. */
  124. #define AHC_MAXTRANSFER_SIZE 0x00ffffff /* limited by 24bit counter */
  125. /*
  126. * The maximum amount of SCB storage in hardware on a controller.
  127. * This value represents an upper bound. Controllers vary in the number
  128. * they actually support.
  129. */
  130. #define AHC_SCB_MAX 255
  131. /*
  132. * The maximum number of concurrent transactions supported per driver instance.
  133. * Sequencer Control Blocks (SCBs) store per-transaction information. Although
  134. * the space for SCBs on the host adapter varies by model, the driver will
  135. * page the SCBs between host and controller memory as needed. We are limited
  136. * to 253 because:
  137. * 1) The 8bit nature of the RISC engine holds us to an 8bit value.
  138. * 2) We reserve one value, 255, to represent the invalid element.
  139. * 3) Our input queue scheme requires one SCB to always be reserved
  140. * in advance of queuing any SCBs. This takes us down to 254.
  141. * 4) To handle our output queue correctly on machines that only
  142. * support 32bit stores, we must clear the array 4 bytes at a
  143. * time. To avoid colliding with a DMA write from the sequencer,
  144. * we must be sure that 4 slots are empty when we write to clear
  145. * the queue. This reduces us to 253 SCBs: 1 that just completed
  146. * and the known three additional empty slots in the queue that
  147. * precede it.
  148. */
  149. #define AHC_MAX_QUEUE 253
  150. /*
  151. * The maximum amount of SCB storage we allocate in host memory. This
  152. * number should reflect the 1 additional SCB we require to handle our
  153. * qinfifo mechanism.
  154. */
  155. #define AHC_SCB_MAX_ALLOC (AHC_MAX_QUEUE+1)
  156. /*
  157. * Ring Buffer of incoming target commands.
  158. * We allocate 256 to simplify the logic in the sequencer
  159. * by using the natural wrap point of an 8bit counter.
  160. */
  161. #define AHC_TMODE_CMDS 256
  162. /* Reset line assertion time in us */
  163. #define AHC_BUSRESET_DELAY 25
  164. /******************* Chip Characteristics/Operating Settings *****************/
  165. /*
  166. * Chip Type
  167. * The chip order is from least sophisticated to most sophisticated.
  168. */
  169. typedef enum {
  170. AHC_NONE = 0x0000,
  171. AHC_CHIPID_MASK = 0x00FF,
  172. AHC_AIC7770 = 0x0001,
  173. AHC_AIC7850 = 0x0002,
  174. AHC_AIC7855 = 0x0003,
  175. AHC_AIC7859 = 0x0004,
  176. AHC_AIC7860 = 0x0005,
  177. AHC_AIC7870 = 0x0006,
  178. AHC_AIC7880 = 0x0007,
  179. AHC_AIC7895 = 0x0008,
  180. AHC_AIC7895C = 0x0009,
  181. AHC_AIC7890 = 0x000a,
  182. AHC_AIC7896 = 0x000b,
  183. AHC_AIC7892 = 0x000c,
  184. AHC_AIC7899 = 0x000d,
  185. AHC_VL = 0x0100, /* Bus type VL */
  186. AHC_EISA = 0x0200, /* Bus type EISA */
  187. AHC_PCI = 0x0400, /* Bus type PCI */
  188. AHC_BUS_MASK = 0x0F00
  189. } ahc_chip;
  190. /*
  191. * Features available in each chip type.
  192. */
  193. typedef enum {
  194. AHC_FENONE = 0x00000,
  195. AHC_ULTRA = 0x00001, /* Supports 20MHz Transfers */
  196. AHC_ULTRA2 = 0x00002, /* Supports 40MHz Transfers */
  197. AHC_WIDE = 0x00004, /* Wide Channel */
  198. AHC_TWIN = 0x00008, /* Twin Channel */
  199. AHC_MORE_SRAM = 0x00010, /* 80 bytes instead of 64 */
  200. AHC_CMD_CHAN = 0x00020, /* Has a Command DMA Channel */
  201. AHC_QUEUE_REGS = 0x00040, /* Has Queue management registers */
  202. AHC_SG_PRELOAD = 0x00080, /* Can perform auto-SG preload */
  203. AHC_SPIOCAP = 0x00100, /* Has a Serial Port I/O Cap Register */
  204. AHC_MULTI_TID = 0x00200, /* Has bitmask of TIDs for select-in */
  205. AHC_HS_MAILBOX = 0x00400, /* Has HS_MAILBOX register */
  206. AHC_DT = 0x00800, /* Double Transition transfers */
  207. AHC_NEW_TERMCTL = 0x01000, /* Newer termination scheme */
  208. AHC_MULTI_FUNC = 0x02000, /* Multi-Function Twin Channel Device */
  209. AHC_LARGE_SCBS = 0x04000, /* 64byte SCBs */
  210. AHC_AUTORATE = 0x08000, /* Automatic update of SCSIRATE/OFFSET*/
  211. AHC_AUTOPAUSE = 0x10000, /* Automatic pause on register access */
  212. AHC_TARGETMODE = 0x20000, /* Has tested target mode support */
  213. AHC_MULTIROLE = 0x40000, /* Space for two roles at a time */
  214. AHC_REMOVABLE = 0x80000, /* Hot-Swap supported */
  215. AHC_HVD = 0x100000, /* HVD rather than SE */
  216. AHC_AIC7770_FE = AHC_FENONE,
  217. /*
  218. * The real 7850 does not support Ultra modes, but there are
  219. * several cards that use the generic 7850 PCI ID even though
  220. * they are using an Ultra capable chip (7859/7860). We start
  221. * out with the AHC_ULTRA feature set and then check the DEVSTATUS
  222. * register to determine if the capability is really present.
  223. */
  224. AHC_AIC7850_FE = AHC_SPIOCAP|AHC_AUTOPAUSE|AHC_TARGETMODE|AHC_ULTRA,
  225. AHC_AIC7860_FE = AHC_AIC7850_FE,
  226. AHC_AIC7870_FE = AHC_TARGETMODE|AHC_AUTOPAUSE,
  227. AHC_AIC7880_FE = AHC_AIC7870_FE|AHC_ULTRA,
  228. /*
  229. * Although we have space for both the initiator and
  230. * target roles on ULTRA2 chips, we currently disable
  231. * the initiator role to allow multi-scsi-id target mode
  232. * configurations. We can only respond on the same SCSI
  233. * ID as our initiator role if we allow initiator operation.
  234. * At some point, we should add a configuration knob to
  235. * allow both roles to be loaded.
  236. */
  237. AHC_AIC7890_FE = AHC_MORE_SRAM|AHC_CMD_CHAN|AHC_ULTRA2
  238. |AHC_QUEUE_REGS|AHC_SG_PRELOAD|AHC_MULTI_TID
  239. |AHC_HS_MAILBOX|AHC_NEW_TERMCTL|AHC_LARGE_SCBS
  240. |AHC_TARGETMODE,
  241. AHC_AIC7892_FE = AHC_AIC7890_FE|AHC_DT|AHC_AUTORATE|AHC_AUTOPAUSE,
  242. AHC_AIC7895_FE = AHC_AIC7880_FE|AHC_MORE_SRAM|AHC_AUTOPAUSE
  243. |AHC_CMD_CHAN|AHC_MULTI_FUNC|AHC_LARGE_SCBS,
  244. AHC_AIC7895C_FE = AHC_AIC7895_FE|AHC_MULTI_TID,
  245. AHC_AIC7896_FE = AHC_AIC7890_FE|AHC_MULTI_FUNC,
  246. AHC_AIC7899_FE = AHC_AIC7892_FE|AHC_MULTI_FUNC
  247. } ahc_feature;
  248. /*
  249. * Bugs in the silicon that we work around in software.
  250. */
  251. typedef enum {
  252. AHC_BUGNONE = 0x00,
  253. /*
  254. * On all chips prior to the U2 product line,
  255. * the WIDEODD S/G segment feature does not
  256. * work during scsi->HostBus transfers.
  257. */
  258. AHC_TMODE_WIDEODD_BUG = 0x01,
  259. /*
  260. * On the aic7890/91 Rev 0 chips, the autoflush
  261. * feature does not work. A manual flush of
  262. * the DMA FIFO is required.
  263. */
  264. AHC_AUTOFLUSH_BUG = 0x02,
  265. /*
  266. * On many chips, cacheline streaming does not work.
  267. */
  268. AHC_CACHETHEN_BUG = 0x04,
  269. /*
  270. * On the aic7896/97 chips, cacheline
  271. * streaming must be enabled.
  272. */
  273. AHC_CACHETHEN_DIS_BUG = 0x08,
  274. /*
  275. * PCI 2.1 Retry failure on non-empty data fifo.
  276. */
  277. AHC_PCI_2_1_RETRY_BUG = 0x10,
  278. /*
  279. * Controller does not handle cacheline residuals
  280. * properly on S/G segments if PCI MWI instructions
  281. * are allowed.
  282. */
  283. AHC_PCI_MWI_BUG = 0x20,
  284. /*
  285. * An SCB upload using the SCB channel's
  286. * auto array entry copy feature may
  287. * corrupt data. This appears to only
  288. * occur on 66MHz systems.
  289. */
  290. AHC_SCBCHAN_UPLOAD_BUG = 0x40
  291. } ahc_bug;
  292. /*
  293. * Configuration specific settings.
  294. * The driver determines these settings by probing the
  295. * chip/controller's configuration.
  296. */
  297. typedef enum {
  298. AHC_FNONE = 0x000,
  299. AHC_PRIMARY_CHANNEL = 0x003, /*
  300. * The channel that should
  301. * be probed first.
  302. */
  303. AHC_USEDEFAULTS = 0x004, /*
  304. * For cards without an seeprom
  305. * or a BIOS to initialize the chip's
  306. * SRAM, we use the default target
  307. * settings.
  308. */
  309. AHC_SEQUENCER_DEBUG = 0x008,
  310. AHC_SHARED_SRAM = 0x010,
  311. AHC_LARGE_SEEPROM = 0x020, /* Uses C56_66 not C46 */
  312. AHC_RESET_BUS_A = 0x040,
  313. AHC_RESET_BUS_B = 0x080,
  314. AHC_EXTENDED_TRANS_A = 0x100,
  315. AHC_EXTENDED_TRANS_B = 0x200,
  316. AHC_TERM_ENB_A = 0x400,
  317. AHC_TERM_ENB_B = 0x800,
  318. AHC_INITIATORROLE = 0x1000, /*
  319. * Allow initiator operations on
  320. * this controller.
  321. */
  322. AHC_TARGETROLE = 0x2000, /*
  323. * Allow target operations on this
  324. * controller.
  325. */
  326. AHC_NEWEEPROM_FMT = 0x4000,
  327. AHC_TQINFIFO_BLOCKED = 0x10000, /* Blocked waiting for ATIOs */
  328. AHC_INT50_SPEEDFLEX = 0x20000, /*
  329. * Internal 50pin connector
  330. * sits behind an aic3860
  331. */
  332. AHC_SCB_BTT = 0x40000, /*
  333. * The busy targets table is
  334. * stored in SCB space rather
  335. * than SRAM.
  336. */
  337. AHC_BIOS_ENABLED = 0x80000,
  338. AHC_ALL_INTERRUPTS = 0x100000,
  339. AHC_PAGESCBS = 0x400000, /* Enable SCB paging */
  340. AHC_EDGE_INTERRUPT = 0x800000, /* Device uses edge triggered ints */
  341. AHC_39BIT_ADDRESSING = 0x1000000, /* Use 39 bit addressing scheme. */
  342. AHC_LSCBS_ENABLED = 0x2000000, /* 64Byte SCBs enabled */
  343. AHC_SCB_CONFIG_USED = 0x4000000, /* No SEEPROM but SCB2 had info. */
  344. AHC_NO_BIOS_INIT = 0x8000000, /* No BIOS left over settings. */
  345. AHC_DISABLE_PCI_PERR = 0x10000000,
  346. AHC_HAS_TERM_LOGIC = 0x20000000
  347. } ahc_flag;
  348. /************************* Hardware SCB Definition ***************************/
  349. /*
  350. * The driver keeps up to MAX_SCB scb structures per card in memory. The SCB
  351. * consists of a "hardware SCB" mirroring the fields available on the card
  352. * and additional information the kernel stores for each transaction.
  353. *
  354. * To minimize space utilization, a portion of the hardware scb stores
  355. * different data during different portions of a SCSI transaction.
  356. * As initialized by the host driver for the initiator role, this area
  357. * contains the SCSI cdb (or a pointer to the cdb) to be executed. After
  358. * the cdb has been presented to the target, this area serves to store
  359. * residual transfer information and the SCSI status byte.
  360. * For the target role, the contents of this area do not change, but
  361. * still serve a different purpose than for the initiator role. See
  362. * struct target_data for details.
  363. */
  364. /*
  365. * Status information embedded in the shared poriton of
  366. * an SCB after passing the cdb to the target. The kernel
  367. * driver will only read this data for transactions that
  368. * complete abnormally (non-zero status byte).
  369. */
  370. struct status_pkt {
  371. uint32_t residual_datacnt; /* Residual in the current S/G seg */
  372. uint32_t residual_sg_ptr; /* The next S/G for this transfer */
  373. uint8_t scsi_status; /* Standard SCSI status byte */
  374. };
  375. /*
  376. * Target mode version of the shared data SCB segment.
  377. */
  378. struct target_data {
  379. uint32_t residual_datacnt; /* Residual in the current S/G seg */
  380. uint32_t residual_sg_ptr; /* The next S/G for this transfer */
  381. uint8_t scsi_status; /* SCSI status to give to initiator */
  382. uint8_t target_phases; /* Bitmap of phases to execute */
  383. uint8_t data_phase; /* Data-In or Data-Out */
  384. uint8_t initiator_tag; /* Initiator's transaction tag */
  385. };
  386. struct hardware_scb {
  387. /*0*/ union {
  388. /*
  389. * If the cdb is 12 bytes or less, we embed it directly
  390. * in the SCB. For longer cdbs, we embed the address
  391. * of the cdb payload as seen by the chip and a DMA
  392. * is used to pull it in.
  393. */
  394. uint8_t cdb[12];
  395. uint32_t cdb_ptr;
  396. struct status_pkt status;
  397. struct target_data tdata;
  398. } shared_data;
  399. /*
  400. * A word about residuals.
  401. * The scb is presented to the sequencer with the dataptr and datacnt
  402. * fields initialized to the contents of the first S/G element to
  403. * transfer. The sgptr field is initialized to the bus address for
  404. * the S/G element that follows the first in the in core S/G array
  405. * or'ed with the SG_FULL_RESID flag. Sgptr may point to an invalid
  406. * S/G entry for this transfer (single S/G element transfer with the
  407. * first elements address and length preloaded in the dataptr/datacnt
  408. * fields). If no transfer is to occur, sgptr is set to SG_LIST_NULL.
  409. * The SG_FULL_RESID flag ensures that the residual will be correctly
  410. * noted even if no data transfers occur. Once the data phase is entered,
  411. * the residual sgptr and datacnt are loaded from the sgptr and the
  412. * datacnt fields. After each S/G element's dataptr and length are
  413. * loaded into the hardware, the residual sgptr is advanced. After
  414. * each S/G element is expired, its datacnt field is checked to see
  415. * if the LAST_SEG flag is set. If so, SG_LIST_NULL is set in the
  416. * residual sg ptr and the transfer is considered complete. If the
  417. * sequencer determines that there is a residual in the tranfer, it
  418. * will set the SG_RESID_VALID flag in sgptr and dma the scb back into
  419. * host memory. To sumarize:
  420. *
  421. * Sequencer:
  422. * o A residual has occurred if SG_FULL_RESID is set in sgptr,
  423. * or residual_sgptr does not have SG_LIST_NULL set.
  424. *
  425. * o We are transfering the last segment if residual_datacnt has
  426. * the SG_LAST_SEG flag set.
  427. *
  428. * Host:
  429. * o A residual has occurred if a completed scb has the
  430. * SG_RESID_VALID flag set.
  431. *
  432. * o residual_sgptr and sgptr refer to the "next" sg entry
  433. * and so may point beyond the last valid sg entry for the
  434. * transfer.
  435. */
  436. /*12*/ uint32_t dataptr;
  437. /*16*/ uint32_t datacnt; /*
  438. * Byte 3 (numbered from 0) of
  439. * the datacnt is really the
  440. * 4th byte in that data address.
  441. */
  442. /*20*/ uint32_t sgptr;
  443. #define SG_PTR_MASK 0xFFFFFFF8
  444. /*24*/ uint8_t control; /* See SCB_CONTROL in aic7xxx.reg for details */
  445. /*25*/ uint8_t scsiid; /* what to load in the SCSIID register */
  446. /*26*/ uint8_t lun;
  447. /*27*/ uint8_t tag; /*
  448. * Index into our kernel SCB array.
  449. * Also used as the tag for tagged I/O
  450. */
  451. /*28*/ uint8_t cdb_len;
  452. /*29*/ uint8_t scsirate; /* Value for SCSIRATE register */
  453. /*30*/ uint8_t scsioffset; /* Value for SCSIOFFSET register */
  454. /*31*/ uint8_t next; /*
  455. * Used for threading SCBs in the
  456. * "Waiting for Selection" and
  457. * "Disconnected SCB" lists down
  458. * in the sequencer.
  459. */
  460. /*32*/ uint8_t cdb32[32]; /*
  461. * CDB storage for cdbs of size
  462. * 13->32. We store them here
  463. * because hardware scbs are
  464. * allocated from DMA safe
  465. * memory so we are guaranteed
  466. * the controller can access
  467. * this data.
  468. */
  469. };
  470. /************************ Kernel SCB Definitions ******************************/
  471. /*
  472. * Some fields of the SCB are OS dependent. Here we collect the
  473. * definitions for elements that all OS platforms need to include
  474. * in there SCB definition.
  475. */
  476. /*
  477. * Definition of a scatter/gather element as transfered to the controller.
  478. * The aic7xxx chips only support a 24bit length. We use the top byte of
  479. * the length to store additional address bits and a flag to indicate
  480. * that a given segment terminates the transfer. This gives us an
  481. * addressable range of 512GB on machines with 64bit PCI or with chips
  482. * that can support dual address cycles on 32bit PCI busses.
  483. */
  484. struct ahc_dma_seg {
  485. uint32_t addr;
  486. uint32_t len;
  487. #define AHC_DMA_LAST_SEG 0x80000000
  488. #define AHC_SG_HIGH_ADDR_MASK 0x7F000000
  489. #define AHC_SG_LEN_MASK 0x00FFFFFF
  490. };
  491. struct sg_map_node {
  492. bus_dmamap_t sg_dmamap;
  493. dma_addr_t sg_physaddr;
  494. struct ahc_dma_seg* sg_vaddr;
  495. SLIST_ENTRY(sg_map_node) links;
  496. };
  497. /*
  498. * The current state of this SCB.
  499. */
  500. typedef enum {
  501. SCB_FREE = 0x0000,
  502. SCB_OTHERTCL_TIMEOUT = 0x0002,/*
  503. * Another device was active
  504. * during the first timeout for
  505. * this SCB so we gave ourselves
  506. * an additional timeout period
  507. * in case it was hogging the
  508. * bus.
  509. */
  510. SCB_DEVICE_RESET = 0x0004,
  511. SCB_SENSE = 0x0008,
  512. SCB_CDB32_PTR = 0x0010,
  513. SCB_RECOVERY_SCB = 0x0020,
  514. SCB_AUTO_NEGOTIATE = 0x0040,/* Negotiate to achieve goal. */
  515. SCB_NEGOTIATE = 0x0080,/* Negotiation forced for command. */
  516. SCB_ABORT = 0x0100,
  517. SCB_UNTAGGEDQ = 0x0200,
  518. SCB_ACTIVE = 0x0400,
  519. SCB_TARGET_IMMEDIATE = 0x0800,
  520. SCB_TRANSMISSION_ERROR = 0x1000,/*
  521. * We detected a parity or CRC
  522. * error that has effected the
  523. * payload of the command. This
  524. * flag is checked when normal
  525. * status is returned to catch
  526. * the case of a target not
  527. * responding to our attempt
  528. * to report the error.
  529. */
  530. SCB_TARGET_SCB = 0x2000,
  531. SCB_SILENT = 0x4000 /*
  532. * Be quiet about transmission type
  533. * errors. They are expected and we
  534. * don't want to upset the user. This
  535. * flag is typically used during DV.
  536. */
  537. } scb_flag;
  538. struct scb {
  539. struct hardware_scb *hscb;
  540. union {
  541. SLIST_ENTRY(scb) sle;
  542. TAILQ_ENTRY(scb) tqe;
  543. } links;
  544. LIST_ENTRY(scb) pending_links;
  545. ahc_io_ctx_t io_ctx;
  546. struct ahc_softc *ahc_softc;
  547. scb_flag flags;
  548. #ifndef __linux__
  549. bus_dmamap_t dmamap;
  550. #endif
  551. struct scb_platform_data *platform_data;
  552. struct sg_map_node *sg_map;
  553. struct ahc_dma_seg *sg_list;
  554. dma_addr_t sg_list_phys;
  555. u_int sg_count;/* How full ahc_dma_seg is */
  556. };
  557. struct scb_data {
  558. SLIST_HEAD(, scb) free_scbs; /*
  559. * Pool of SCBs ready to be assigned
  560. * commands to execute.
  561. */
  562. struct scb *scbindex[256]; /*
  563. * Mapping from tag to SCB.
  564. * As tag identifiers are an
  565. * 8bit value, we provide space
  566. * for all possible tag values.
  567. * Any lookups to entries at or
  568. * above AHC_SCB_MAX_ALLOC will
  569. * always fail.
  570. */
  571. struct hardware_scb *hscbs; /* Array of hardware SCBs */
  572. struct scb *scbarray; /* Array of kernel SCBs */
  573. struct scsi_sense_data *sense; /* Per SCB sense data */
  574. /*
  575. * "Bus" addresses of our data structures.
  576. */
  577. bus_dma_tag_t hscb_dmat; /* dmat for our hardware SCB array */
  578. bus_dmamap_t hscb_dmamap;
  579. dma_addr_t hscb_busaddr;
  580. bus_dma_tag_t sense_dmat;
  581. bus_dmamap_t sense_dmamap;
  582. dma_addr_t sense_busaddr;
  583. bus_dma_tag_t sg_dmat; /* dmat for our sg segments */
  584. SLIST_HEAD(, sg_map_node) sg_maps;
  585. uint8_t numscbs;
  586. uint8_t maxhscbs; /* Number of SCBs on the card */
  587. uint8_t init_level; /*
  588. * How far we've initialized
  589. * this structure.
  590. */
  591. };
  592. /************************ Target Mode Definitions *****************************/
  593. /*
  594. * Connection desciptor for select-in requests in target mode.
  595. */
  596. struct target_cmd {
  597. uint8_t scsiid; /* Our ID and the initiator's ID */
  598. uint8_t identify; /* Identify message */
  599. uint8_t bytes[22]; /*
  600. * Bytes contains any additional message
  601. * bytes terminated by 0xFF. The remainder
  602. * is the cdb to execute.
  603. */
  604. uint8_t cmd_valid; /*
  605. * When a command is complete, the firmware
  606. * will set cmd_valid to all bits set.
  607. * After the host has seen the command,
  608. * the bits are cleared. This allows us
  609. * to just peek at host memory to determine
  610. * if more work is complete. cmd_valid is on
  611. * an 8 byte boundary to simplify setting
  612. * it on aic7880 hardware which only has
  613. * limited direct access to the DMA FIFO.
  614. */
  615. uint8_t pad[7];
  616. };
  617. /*
  618. * Number of events we can buffer up if we run out
  619. * of immediate notify ccbs.
  620. */
  621. #define AHC_TMODE_EVENT_BUFFER_SIZE 8
  622. struct ahc_tmode_event {
  623. uint8_t initiator_id;
  624. uint8_t event_type; /* MSG type or EVENT_TYPE_BUS_RESET */
  625. #define EVENT_TYPE_BUS_RESET 0xFF
  626. uint8_t event_arg;
  627. };
  628. /*
  629. * Per enabled lun target mode state.
  630. * As this state is directly influenced by the host OS'es target mode
  631. * environment, we let the OS module define it. Forward declare the
  632. * structure here so we can store arrays of them, etc. in OS neutral
  633. * data structures.
  634. */
  635. #ifdef AHC_TARGET_MODE
  636. struct ahc_tmode_lstate {
  637. struct cam_path *path;
  638. struct ccb_hdr_slist accept_tios;
  639. struct ccb_hdr_slist immed_notifies;
  640. struct ahc_tmode_event event_buffer[AHC_TMODE_EVENT_BUFFER_SIZE];
  641. uint8_t event_r_idx;
  642. uint8_t event_w_idx;
  643. };
  644. #else
  645. struct ahc_tmode_lstate;
  646. #endif
  647. /******************** Transfer Negotiation Datastructures *********************/
  648. #define AHC_TRANS_CUR 0x01 /* Modify current neogtiation status */
  649. #define AHC_TRANS_ACTIVE 0x03 /* Assume this target is on the bus */
  650. #define AHC_TRANS_GOAL 0x04 /* Modify negotiation goal */
  651. #define AHC_TRANS_USER 0x08 /* Modify user negotiation settings */
  652. #define AHC_WIDTH_UNKNOWN 0xFF
  653. #define AHC_PERIOD_UNKNOWN 0xFF
  654. #define AHC_OFFSET_UNKNOWN 0xFF
  655. #define AHC_PPR_OPTS_UNKNOWN 0xFF
  656. /*
  657. * Transfer Negotiation Information.
  658. */
  659. struct ahc_transinfo {
  660. uint8_t protocol_version; /* SCSI Revision level */
  661. uint8_t transport_version; /* SPI Revision level */
  662. uint8_t width; /* Bus width */
  663. uint8_t period; /* Sync rate factor */
  664. uint8_t offset; /* Sync offset */
  665. uint8_t ppr_options; /* Parallel Protocol Request options */
  666. };
  667. /*
  668. * Per-initiator current, goal and user transfer negotiation information. */
  669. struct ahc_initiator_tinfo {
  670. uint8_t scsirate; /* Computed value for SCSIRATE reg */
  671. struct ahc_transinfo curr;
  672. struct ahc_transinfo goal;
  673. struct ahc_transinfo user;
  674. };
  675. /*
  676. * Per enabled target ID state.
  677. * Pointers to lun target state as well as sync/wide negotiation information
  678. * for each initiator<->target mapping. For the initiator role we pretend
  679. * that we are the target and the targets are the initiators since the
  680. * negotiation is the same regardless of role.
  681. */
  682. struct ahc_tmode_tstate {
  683. struct ahc_tmode_lstate* enabled_luns[AHC_NUM_LUNS];
  684. struct ahc_initiator_tinfo transinfo[AHC_NUM_TARGETS];
  685. /*
  686. * Per initiator state bitmasks.
  687. */
  688. uint16_t auto_negotiate;/* Auto Negotiation Required */
  689. uint16_t ultraenb; /* Using ultra sync rate */
  690. uint16_t discenable; /* Disconnection allowed */
  691. uint16_t tagenable; /* Tagged Queuing allowed */
  692. };
  693. /*
  694. * Data structure for our table of allowed synchronous transfer rates.
  695. */
  696. struct ahc_syncrate {
  697. u_int sxfr_u2; /* Value of the SXFR parameter for Ultra2+ Chips */
  698. u_int sxfr; /* Value of the SXFR parameter for <= Ultra Chips */
  699. #define ULTRA_SXFR 0x100 /* Rate Requires Ultra Mode set */
  700. #define ST_SXFR 0x010 /* Rate Single Transition Only */
  701. #define DT_SXFR 0x040 /* Rate Double Transition Only */
  702. uint8_t period; /* Period to send to SCSI target */
  703. char *rate;
  704. };
  705. /* Safe and valid period for async negotiations. */
  706. #define AHC_ASYNC_XFER_PERIOD 0x45
  707. #define AHC_ULTRA2_XFER_PERIOD 0x0a
  708. /*
  709. * Indexes into our table of syncronous transfer rates.
  710. */
  711. #define AHC_SYNCRATE_DT 0
  712. #define AHC_SYNCRATE_ULTRA2 1
  713. #define AHC_SYNCRATE_ULTRA 3
  714. #define AHC_SYNCRATE_FAST 6
  715. #define AHC_SYNCRATE_MAX AHC_SYNCRATE_DT
  716. #define AHC_SYNCRATE_MIN 13
  717. /***************************** Lookup Tables **********************************/
  718. /*
  719. * Phase -> name and message out response
  720. * to parity errors in each phase table.
  721. */
  722. struct ahc_phase_table_entry {
  723. uint8_t phase;
  724. uint8_t mesg_out; /* Message response to parity errors */
  725. char *phasemsg;
  726. };
  727. /************************** Serial EEPROM Format ******************************/
  728. struct seeprom_config {
  729. /*
  730. * Per SCSI ID Configuration Flags
  731. */
  732. uint16_t device_flags[16]; /* words 0-15 */
  733. #define CFXFER 0x0007 /* synchronous transfer rate */
  734. #define CFSYNCH 0x0008 /* enable synchronous transfer */
  735. #define CFDISC 0x0010 /* enable disconnection */
  736. #define CFWIDEB 0x0020 /* wide bus device */
  737. #define CFSYNCHISULTRA 0x0040 /* CFSYNCH is an ultra offset (2940AU)*/
  738. #define CFSYNCSINGLE 0x0080 /* Single-Transition signalling */
  739. #define CFSTART 0x0100 /* send start unit SCSI command */
  740. #define CFINCBIOS 0x0200 /* include in BIOS scan */
  741. #define CFRNFOUND 0x0400 /* report even if not found */
  742. #define CFMULTILUNDEV 0x0800 /* Probe multiple luns in BIOS scan */
  743. #define CFWBCACHEENB 0x4000 /* Enable W-Behind Cache on disks */
  744. #define CFWBCACHENOP 0xc000 /* Don't touch W-Behind Cache */
  745. /*
  746. * BIOS Control Bits
  747. */
  748. uint16_t bios_control; /* word 16 */
  749. #define CFSUPREM 0x0001 /* support all removeable drives */
  750. #define CFSUPREMB 0x0002 /* support removeable boot drives */
  751. #define CFBIOSEN 0x0004 /* BIOS enabled */
  752. #define CFBIOS_BUSSCAN 0x0008 /* Have the BIOS Scan the Bus */
  753. #define CFSM2DRV 0x0010 /* support more than two drives */
  754. #define CFSTPWLEVEL 0x0010 /* Termination level control */
  755. #define CF284XEXTEND 0x0020 /* extended translation (284x cards) */
  756. #define CFCTRL_A 0x0020 /* BIOS displays Ctrl-A message */
  757. #define CFTERM_MENU 0x0040 /* BIOS displays termination menu */
  758. #define CFEXTEND 0x0080 /* extended translation enabled */
  759. #define CFSCAMEN 0x0100 /* SCAM enable */
  760. #define CFMSG_LEVEL 0x0600 /* BIOS Message Level */
  761. #define CFMSG_VERBOSE 0x0000
  762. #define CFMSG_SILENT 0x0200
  763. #define CFMSG_DIAG 0x0400
  764. #define CFBOOTCD 0x0800 /* Support Bootable CD-ROM */
  765. /* UNUSED 0xff00 */
  766. /*
  767. * Host Adapter Control Bits
  768. */
  769. uint16_t adapter_control; /* word 17 */
  770. #define CFAUTOTERM 0x0001 /* Perform Auto termination */
  771. #define CFULTRAEN 0x0002 /* Ultra SCSI speed enable */
  772. #define CF284XSELTO 0x0003 /* Selection timeout (284x cards) */
  773. #define CF284XFIFO 0x000C /* FIFO Threshold (284x cards) */
  774. #define CFSTERM 0x0004 /* SCSI low byte termination */
  775. #define CFWSTERM 0x0008 /* SCSI high byte termination */
  776. #define CFSPARITY 0x0010 /* SCSI parity */
  777. #define CF284XSTERM 0x0020 /* SCSI low byte term (284x cards) */
  778. #define CFMULTILUN 0x0020
  779. #define CFRESETB 0x0040 /* reset SCSI bus at boot */
  780. #define CFCLUSTERENB 0x0080 /* Cluster Enable */
  781. #define CFBOOTCHAN 0x0300 /* probe this channel first */
  782. #define CFBOOTCHANSHIFT 8
  783. #define CFSEAUTOTERM 0x0400 /* Ultra2 Perform secondary Auto Term*/
  784. #define CFSELOWTERM 0x0800 /* Ultra2 secondary low term */
  785. #define CFSEHIGHTERM 0x1000 /* Ultra2 secondary high term */
  786. #define CFENABLEDV 0x4000 /* Perform Domain Validation*/
  787. /*
  788. * Bus Release Time, Host Adapter ID
  789. */
  790. uint16_t brtime_id; /* word 18 */
  791. #define CFSCSIID 0x000f /* host adapter SCSI ID */
  792. /* UNUSED 0x00f0 */
  793. #define CFBRTIME 0xff00 /* bus release time */
  794. /*
  795. * Maximum targets
  796. */
  797. uint16_t max_targets; /* word 19 */
  798. #define CFMAXTARG 0x00ff /* maximum targets */
  799. #define CFBOOTLUN 0x0f00 /* Lun to boot from */
  800. #define CFBOOTID 0xf000 /* Target to boot from */
  801. uint16_t res_1[10]; /* words 20-29 */
  802. uint16_t signature; /* Signature == 0x250 */
  803. #define CFSIGNATURE 0x250
  804. #define CFSIGNATURE2 0x300
  805. uint16_t checksum; /* word 31 */
  806. };
  807. /**************************** Message Buffer *********************************/
  808. typedef enum {
  809. MSG_TYPE_NONE = 0x00,
  810. MSG_TYPE_INITIATOR_MSGOUT = 0x01,
  811. MSG_TYPE_INITIATOR_MSGIN = 0x02,
  812. MSG_TYPE_TARGET_MSGOUT = 0x03,
  813. MSG_TYPE_TARGET_MSGIN = 0x04
  814. } ahc_msg_type;
  815. typedef enum {
  816. MSGLOOP_IN_PROG,
  817. MSGLOOP_MSGCOMPLETE,
  818. MSGLOOP_TERMINATED
  819. } msg_loop_stat;
  820. /*********************** Software Configuration Structure *********************/
  821. TAILQ_HEAD(scb_tailq, scb);
  822. struct ahc_aic7770_softc {
  823. /*
  824. * Saved register state used for chip_init().
  825. */
  826. uint8_t busspd;
  827. uint8_t bustime;
  828. };
  829. struct ahc_pci_softc {
  830. /*
  831. * Saved register state used for chip_init().
  832. */
  833. uint32_t devconfig;
  834. uint16_t targcrccnt;
  835. uint8_t command;
  836. uint8_t csize_lattime;
  837. uint8_t optionmode;
  838. uint8_t crccontrol1;
  839. uint8_t dscommand0;
  840. uint8_t dspcistatus;
  841. uint8_t scbbaddr;
  842. uint8_t dff_thrsh;
  843. };
  844. union ahc_bus_softc {
  845. struct ahc_aic7770_softc aic7770_softc;
  846. struct ahc_pci_softc pci_softc;
  847. };
  848. typedef void (*ahc_bus_intr_t)(struct ahc_softc *);
  849. typedef int (*ahc_bus_chip_init_t)(struct ahc_softc *);
  850. typedef int (*ahc_bus_suspend_t)(struct ahc_softc *);
  851. typedef int (*ahc_bus_resume_t)(struct ahc_softc *);
  852. typedef void ahc_callback_t (void *);
  853. struct ahc_softc {
  854. bus_space_tag_t tag;
  855. bus_space_handle_t bsh;
  856. #ifndef __linux__
  857. bus_dma_tag_t buffer_dmat; /* dmat for buffer I/O */
  858. #endif
  859. struct scb_data *scb_data;
  860. struct scb *next_queued_scb;
  861. /*
  862. * SCBs that have been sent to the controller
  863. */
  864. LIST_HEAD(, scb) pending_scbs;
  865. /*
  866. * Counting lock for deferring the release of additional
  867. * untagged transactions from the untagged_queues. When
  868. * the lock is decremented to 0, all queues in the
  869. * untagged_queues array are run.
  870. */
  871. u_int untagged_queue_lock;
  872. /*
  873. * Per-target queue of untagged-transactions. The
  874. * transaction at the head of the queue is the
  875. * currently pending untagged transaction for the
  876. * target. The driver only allows a single untagged
  877. * transaction per target.
  878. */
  879. struct scb_tailq untagged_queues[AHC_NUM_TARGETS];
  880. /*
  881. * Bus attachment specific data.
  882. */
  883. union ahc_bus_softc bus_softc;
  884. /*
  885. * Platform specific data.
  886. */
  887. struct ahc_platform_data *platform_data;
  888. /*
  889. * Platform specific device information.
  890. */
  891. ahc_dev_softc_t dev_softc;
  892. /*
  893. * Bus specific device information.
  894. */
  895. ahc_bus_intr_t bus_intr;
  896. /*
  897. * Bus specific initialization required
  898. * after a chip reset.
  899. */
  900. ahc_bus_chip_init_t bus_chip_init;
  901. /*
  902. * Bus specific suspend routine.
  903. */
  904. ahc_bus_suspend_t bus_suspend;
  905. /*
  906. * Bus specific resume routine.
  907. */
  908. ahc_bus_resume_t bus_resume;
  909. /*
  910. * Target mode related state kept on a per enabled lun basis.
  911. * Targets that are not enabled will have null entries.
  912. * As an initiator, we keep one target entry for our initiator
  913. * ID to store our sync/wide transfer settings.
  914. */
  915. struct ahc_tmode_tstate *enabled_targets[AHC_NUM_TARGETS];
  916. /*
  917. * The black hole device responsible for handling requests for
  918. * disabled luns on enabled targets.
  919. */
  920. struct ahc_tmode_lstate *black_hole;
  921. /*
  922. * Device instance currently on the bus awaiting a continue TIO
  923. * for a command that was not given the disconnect priveledge.
  924. */
  925. struct ahc_tmode_lstate *pending_device;
  926. /*
  927. * Card characteristics
  928. */
  929. ahc_chip chip;
  930. ahc_feature features;
  931. ahc_bug bugs;
  932. ahc_flag flags;
  933. struct seeprom_config *seep_config;
  934. /* Values to store in the SEQCTL register for pause and unpause */
  935. uint8_t unpause;
  936. uint8_t pause;
  937. /* Command Queues */
  938. uint8_t qoutfifonext;
  939. uint8_t qinfifonext;
  940. uint8_t *qoutfifo;
  941. uint8_t *qinfifo;
  942. /* Critical Section Data */
  943. struct cs *critical_sections;
  944. u_int num_critical_sections;
  945. /* Channel Names ('A', 'B', etc.) */
  946. char channel;
  947. char channel_b;
  948. /* Initiator Bus ID */
  949. uint8_t our_id;
  950. uint8_t our_id_b;
  951. /*
  952. * PCI error detection.
  953. */
  954. int unsolicited_ints;
  955. /*
  956. * Target incoming command FIFO.
  957. */
  958. struct target_cmd *targetcmds;
  959. uint8_t tqinfifonext;
  960. /*
  961. * Cached copy of the sequencer control register.
  962. */
  963. uint8_t seqctl;
  964. /*
  965. * Incoming and outgoing message handling.
  966. */
  967. uint8_t send_msg_perror;
  968. ahc_msg_type msg_type;
  969. uint8_t msgout_buf[12];/* Message we are sending */
  970. uint8_t msgin_buf[12];/* Message we are receiving */
  971. u_int msgout_len; /* Length of message to send */
  972. u_int msgout_index; /* Current index in msgout */
  973. u_int msgin_index; /* Current index in msgin */
  974. /*
  975. * Mapping information for data structures shared
  976. * between the sequencer and kernel.
  977. */
  978. bus_dma_tag_t parent_dmat;
  979. bus_dma_tag_t shared_data_dmat;
  980. bus_dmamap_t shared_data_dmamap;
  981. dma_addr_t shared_data_busaddr;
  982. /*
  983. * Bus address of the one byte buffer used to
  984. * work-around a DMA bug for chips <= aic7880
  985. * in target mode.
  986. */
  987. dma_addr_t dma_bug_buf;
  988. /* Number of enabled target mode device on this card */
  989. u_int enabled_luns;
  990. /* Initialization level of this data structure */
  991. u_int init_level;
  992. /* PCI cacheline size. */
  993. u_int pci_cachesize;
  994. /*
  995. * Count of parity errors we have seen as a target.
  996. * We auto-disable parity error checking after seeing
  997. * AHC_PCI_TARGET_PERR_THRESH number of errors.
  998. */
  999. u_int pci_target_perr_count;
  1000. #define AHC_PCI_TARGET_PERR_THRESH 10
  1001. /* Maximum number of sequencer instructions supported. */
  1002. u_int instruction_ram_size;
  1003. /* Per-Unit descriptive information */
  1004. const char *description;
  1005. char *name;
  1006. int unit;
  1007. /* Selection Timer settings */
  1008. int seltime;
  1009. int seltime_b;
  1010. uint16_t user_discenable;/* Disconnection allowed */
  1011. uint16_t user_tagenable;/* Tagged Queuing allowed */
  1012. };
  1013. /************************ Active Device Information ***************************/
  1014. typedef enum {
  1015. ROLE_UNKNOWN,
  1016. ROLE_INITIATOR,
  1017. ROLE_TARGET
  1018. } role_t;
  1019. struct ahc_devinfo {
  1020. int our_scsiid;
  1021. int target_offset;
  1022. uint16_t target_mask;
  1023. u_int target;
  1024. u_int lun;
  1025. char channel;
  1026. role_t role; /*
  1027. * Only guaranteed to be correct if not
  1028. * in the busfree state.
  1029. */
  1030. };
  1031. /****************************** PCI Structures ********************************/
  1032. typedef int (ahc_device_setup_t)(struct ahc_softc *);
  1033. struct ahc_pci_identity {
  1034. uint64_t full_id;
  1035. uint64_t id_mask;
  1036. char *name;
  1037. ahc_device_setup_t *setup;
  1038. };
  1039. extern struct ahc_pci_identity ahc_pci_ident_table[];
  1040. extern const u_int ahc_num_pci_devs;
  1041. /***************************** VL/EISA Declarations ***************************/
  1042. struct aic7770_identity {
  1043. uint32_t full_id;
  1044. uint32_t id_mask;
  1045. const char *name;
  1046. ahc_device_setup_t *setup;
  1047. };
  1048. extern struct aic7770_identity aic7770_ident_table[];
  1049. extern const int ahc_num_aic7770_devs;
  1050. #define AHC_EISA_SLOT_OFFSET 0xc00
  1051. #define AHC_EISA_IOSIZE 0x100
  1052. /*************************** Function Declarations ****************************/
  1053. /******************************************************************************/
  1054. u_int ahc_index_busy_tcl(struct ahc_softc *ahc, u_int tcl);
  1055. void ahc_unbusy_tcl(struct ahc_softc *ahc, u_int tcl);
  1056. void ahc_busy_tcl(struct ahc_softc *ahc,
  1057. u_int tcl, u_int busyid);
  1058. /***************************** PCI Front End *********************************/
  1059. struct ahc_pci_identity *ahc_find_pci_device(ahc_dev_softc_t);
  1060. int ahc_pci_config(struct ahc_softc *,
  1061. struct ahc_pci_identity *);
  1062. int ahc_pci_test_register_access(struct ahc_softc *);
  1063. /*************************** EISA/VL Front End ********************************/
  1064. struct aic7770_identity *aic7770_find_device(uint32_t);
  1065. int aic7770_config(struct ahc_softc *ahc,
  1066. struct aic7770_identity *,
  1067. u_int port);
  1068. /************************** SCB and SCB queue management **********************/
  1069. int ahc_probe_scbs(struct ahc_softc *);
  1070. void ahc_run_untagged_queues(struct ahc_softc *ahc);
  1071. void ahc_run_untagged_queue(struct ahc_softc *ahc,
  1072. struct scb_tailq *queue);
  1073. void ahc_qinfifo_requeue_tail(struct ahc_softc *ahc,
  1074. struct scb *scb);
  1075. int ahc_match_scb(struct ahc_softc *ahc, struct scb *scb,
  1076. int target, char channel, int lun,
  1077. u_int tag, role_t role);
  1078. /****************************** Initialization ********************************/
  1079. struct ahc_softc *ahc_alloc(void *platform_arg, char *name);
  1080. int ahc_softc_init(struct ahc_softc *);
  1081. void ahc_controller_info(struct ahc_softc *ahc, char *buf);
  1082. int ahc_chip_init(struct ahc_softc *ahc);
  1083. int ahc_init(struct ahc_softc *ahc);
  1084. void ahc_intr_enable(struct ahc_softc *ahc, int enable);
  1085. void ahc_pause_and_flushwork(struct ahc_softc *ahc);
  1086. int ahc_suspend(struct ahc_softc *ahc);
  1087. int ahc_resume(struct ahc_softc *ahc);
  1088. void ahc_set_unit(struct ahc_softc *, int);
  1089. void ahc_set_name(struct ahc_softc *, char *);
  1090. void ahc_alloc_scbs(struct ahc_softc *ahc);
  1091. void ahc_free(struct ahc_softc *ahc);
  1092. int ahc_reset(struct ahc_softc *ahc, int reinit);
  1093. void ahc_shutdown(void *arg);
  1094. /*************************** Interrupt Services *******************************/
  1095. void ahc_clear_intstat(struct ahc_softc *ahc);
  1096. void ahc_run_qoutfifo(struct ahc_softc *ahc);
  1097. #ifdef AHC_TARGET_MODE
  1098. void ahc_run_tqinfifo(struct ahc_softc *ahc, int paused);
  1099. #endif
  1100. void ahc_handle_brkadrint(struct ahc_softc *ahc);
  1101. void ahc_handle_seqint(struct ahc_softc *ahc, u_int intstat);
  1102. void ahc_handle_scsiint(struct ahc_softc *ahc,
  1103. u_int intstat);
  1104. void ahc_clear_critical_section(struct ahc_softc *ahc);
  1105. /***************************** Error Recovery *********************************/
  1106. typedef enum {
  1107. SEARCH_COMPLETE,
  1108. SEARCH_COUNT,
  1109. SEARCH_REMOVE
  1110. } ahc_search_action;
  1111. int ahc_search_qinfifo(struct ahc_softc *ahc, int target,
  1112. char channel, int lun, u_int tag,
  1113. role_t role, uint32_t status,
  1114. ahc_search_action action);
  1115. int ahc_search_untagged_queues(struct ahc_softc *ahc,
  1116. ahc_io_ctx_t ctx,
  1117. int target, char channel,
  1118. int lun, uint32_t status,
  1119. ahc_search_action action);
  1120. int ahc_search_disc_list(struct ahc_softc *ahc, int target,
  1121. char channel, int lun, u_int tag,
  1122. int stop_on_first, int remove,
  1123. int save_state);
  1124. void ahc_freeze_devq(struct ahc_softc *ahc, struct scb *scb);
  1125. int ahc_reset_channel(struct ahc_softc *ahc, char channel,
  1126. int initiate_reset);
  1127. int ahc_abort_scbs(struct ahc_softc *ahc, int target,
  1128. char channel, int lun, u_int tag,
  1129. role_t role, uint32_t status);
  1130. void ahc_restart(struct ahc_softc *ahc);
  1131. void ahc_calc_residual(struct ahc_softc *ahc,
  1132. struct scb *scb);
  1133. /*************************** Utility Functions ********************************/
  1134. struct ahc_phase_table_entry*
  1135. ahc_lookup_phase_entry(int phase);
  1136. void ahc_compile_devinfo(struct ahc_devinfo *devinfo,
  1137. u_int our_id, u_int target,
  1138. u_int lun, char channel,
  1139. role_t role);
  1140. /************************** Transfer Negotiation ******************************/
  1141. struct ahc_syncrate* ahc_find_syncrate(struct ahc_softc *ahc, u_int *period,
  1142. u_int *ppr_options, u_int maxsync);
  1143. u_int ahc_find_period(struct ahc_softc *ahc,
  1144. u_int scsirate, u_int maxsync);
  1145. void ahc_validate_offset(struct ahc_softc *ahc,
  1146. struct ahc_initiator_tinfo *tinfo,
  1147. struct ahc_syncrate *syncrate,
  1148. u_int *offset, int wide,
  1149. role_t role);
  1150. void ahc_validate_width(struct ahc_softc *ahc,
  1151. struct ahc_initiator_tinfo *tinfo,
  1152. u_int *bus_width,
  1153. role_t role);
  1154. /*
  1155. * Negotiation types. These are used to qualify if we should renegotiate
  1156. * even if our goal and current transport parameters are identical.
  1157. */
  1158. typedef enum {
  1159. AHC_NEG_TO_GOAL, /* Renegotiate only if goal and curr differ. */
  1160. AHC_NEG_IF_NON_ASYNC, /* Renegotiate so long as goal is non-async. */
  1161. AHC_NEG_ALWAYS /* Renegotiat even if goal is async. */
  1162. } ahc_neg_type;
  1163. int ahc_update_neg_request(struct ahc_softc*,
  1164. struct ahc_devinfo*,
  1165. struct ahc_tmode_tstate*,
  1166. struct ahc_initiator_tinfo*,
  1167. ahc_neg_type);
  1168. void ahc_set_width(struct ahc_softc *ahc,
  1169. struct ahc_devinfo *devinfo,
  1170. u_int width, u_int type, int paused);
  1171. void ahc_set_syncrate(struct ahc_softc *ahc,
  1172. struct ahc_devinfo *devinfo,
  1173. struct ahc_syncrate *syncrate,
  1174. u_int period, u_int offset,
  1175. u_int ppr_options,
  1176. u_int type, int paused);
  1177. typedef enum {
  1178. AHC_QUEUE_NONE,
  1179. AHC_QUEUE_BASIC,
  1180. AHC_QUEUE_TAGGED
  1181. } ahc_queue_alg;
  1182. void ahc_set_tags(struct ahc_softc *ahc,
  1183. struct ahc_devinfo *devinfo,
  1184. ahc_queue_alg alg);
  1185. /**************************** Target Mode *************************************/
  1186. #ifdef AHC_TARGET_MODE
  1187. void ahc_send_lstate_events(struct ahc_softc *,
  1188. struct ahc_tmode_lstate *);
  1189. void ahc_handle_en_lun(struct ahc_softc *ahc,
  1190. struct cam_sim *sim, union ccb *ccb);
  1191. cam_status ahc_find_tmode_devs(struct ahc_softc *ahc,
  1192. struct cam_sim *sim, union ccb *ccb,
  1193. struct ahc_tmode_tstate **tstate,
  1194. struct ahc_tmode_lstate **lstate,
  1195. int notfound_failure);
  1196. #ifndef AHC_TMODE_ENABLE
  1197. #define AHC_TMODE_ENABLE 0
  1198. #endif
  1199. #endif
  1200. /******************************* Debug ***************************************/
  1201. #ifdef AHC_DEBUG
  1202. extern uint32_t ahc_debug;
  1203. #define AHC_SHOW_MISC 0x0001
  1204. #define AHC_SHOW_SENSE 0x0002
  1205. #define AHC_DUMP_SEEPROM 0x0004
  1206. #define AHC_SHOW_TERMCTL 0x0008
  1207. #define AHC_SHOW_MEMORY 0x0010
  1208. #define AHC_SHOW_MESSAGES 0x0020
  1209. #define AHC_SHOW_DV 0x0040
  1210. #define AHC_SHOW_SELTO 0x0080
  1211. #define AHC_SHOW_QFULL 0x0200
  1212. #define AHC_SHOW_QUEUE 0x0400
  1213. #define AHC_SHOW_TQIN 0x0800
  1214. #define AHC_SHOW_MASKED_ERRORS 0x1000
  1215. #define AHC_DEBUG_SEQUENCER 0x2000
  1216. #endif
  1217. void ahc_print_scb(struct scb *scb);
  1218. void ahc_print_devinfo(struct ahc_softc *ahc,
  1219. struct ahc_devinfo *dev);
  1220. void ahc_dump_card_state(struct ahc_softc *ahc);
  1221. int ahc_print_register(ahc_reg_parse_entry_t *table,
  1222. u_int num_entries,
  1223. const char *name,
  1224. u_int address,
  1225. u_int value,
  1226. u_int *cur_column,
  1227. u_int wrap_point);
  1228. /******************************* SEEPROM *************************************/
  1229. int ahc_acquire_seeprom(struct ahc_softc *ahc,
  1230. struct seeprom_descriptor *sd);
  1231. void ahc_release_seeprom(struct seeprom_descriptor *sd);
  1232. #endif /* _AIC7XXX_H_ */