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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Device driver for the SYMBIOS/LSILOGIC 53C8XX and 53C1010 family 
  3.  * of PCI-SCSI IO processors.
  4.  *
  5.  * Copyright (C) 1999-2001  Gerard Roudier <groudier@free.fr>
  6.  *
  7.  * This driver is derived from the Linux sym53c8xx driver.
  8.  * Copyright (C) 1998-2000  Gerard Roudier
  9.  *
  10.  * The sym53c8xx driver is derived from the ncr53c8xx driver that had been 
  11.  * a port of the FreeBSD ncr driver to Linux-1.2.13.
  12.  *
  13.  * The original ncr driver has been written for 386bsd and FreeBSD by
  14.  *         Wolfgang Stanglmeier        <wolf@cologne.de>
  15.  *         Stefan Esser                <se@mi.Uni-Koeln.de>
  16.  * Copyright (C) 1994  Wolfgang Stanglmeier
  17.  *
  18.  * Other major contributions:
  19.  *
  20.  * NVRAM detection and reading.
  21.  * Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk>
  22.  *
  23.  *-----------------------------------------------------------------------------
  24.  *
  25.  * Redistribution and use in source and binary forms, with or without
  26.  * modification, are permitted provided that the following conditions
  27.  * are met:
  28.  * 1. Redistributions of source code must retain the above copyright
  29.  *    notice, this list of conditions and the following disclaimer.
  30.  * 2. The name of the author may not be used to endorse or promote products
  31.  *    derived from this software without specific prior written permission.
  32.  *
  33.  * Where this Software is combined with software released under the terms of 
  34.  * the GNU Public License ("GPL") and the terms of the GPL would require the 
  35.  * combined work to also be released under the terms of the GPL, the terms
  36.  * and conditions of this License will apply in addition to those of the
  37.  * GPL with the exception of any terms or conditions of this License that
  38.  * conflict with, or are expressly prohibited by, the GPL.
  39.  *
  40.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  41.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43.  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  44.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50.  * SUCH DAMAGE.
  51.  */
  52. #ifdef __FreeBSD__
  53. #include <dev/sym/sym_glue.h>
  54. #else
  55. #include "sym_glue.h"
  56. #endif
  57. #ifdef SYM_OPT_HANDLE_IO_TIMEOUT
  58. /*
  59.  *  Optional CCB timeout handling.
  60.  *
  61.  *  This code is useful for O/Ses that allow or expect 
  62.  *  SIMs (low-level drivers) to handle SCSI IO timeouts.
  63.  *  It uses a power-of-two based algorithm of my own:) 
  64.  *  that avoids scanning of lists, provided that:
  65.  *
  66.  *  - The IO does complete in less than half the associated
  67.  *    timeout value.
  68.  *  - The greatest delay between the queuing of the IO and 
  69.  *    its completion is less than 
  70.  *          (1<<(SYM_CONF_TIMEOUT_ORDER_MAX-1))/2 ticks.
  71.  *
  72.  *  For example, if tick is 1 second and the max order is 8,
  73.  *  any IO that is completed within less than 64 seconds will 
  74.  *  just be put into some list at queuing and be removed 
  75.  *  at completion without any additionnal overhead.
  76.  */
  77. /*
  78.  *  Set a timeout condition on a CCB.
  79.  */ 
  80. void sym_timeout_ccb(hcb_p np, ccb_p cp, u_int ticks)
  81. {
  82. sym_remque(&cp->tmo_linkq);
  83. cp->tmo_clock = np->tmo_clock + ticks;
  84. if (!ticks) {
  85. sym_insque_head(&cp->tmo_linkq, &np->tmo0_ccbq);
  86. }
  87. else {
  88. int i = SYM_CONF_TIMEOUT_ORDER_MAX - 1;
  89. while (i > 0) {
  90. if (ticks >= (1<<(i+1)))
  91. break;
  92. --i;
  93. }
  94. if (!(np->tmo_actq & (1<<i)))
  95. i += SYM_CONF_TIMEOUT_ORDER_MAX;
  96. sym_insque_head(&cp->tmo_linkq, &np->tmo_ccbq[i]);
  97. }
  98. }
  99. /*
  100.  *  Walk a list of CCB and handle timeout conditions.
  101.  *  Should never be called in normal situations.
  102.  */
  103. static void sym_walk_ccb_tmo_list(hcb_p np, SYM_QUEHEAD *tmoq)
  104. {
  105. SYM_QUEHEAD qtmp, *qp;
  106. ccb_p cp;
  107. sym_que_move(tmoq, &qtmp);
  108. while ((qp = sym_remque_head(&qtmp)) != 0) {
  109. sym_insque_head(qp, &np->tmo0_ccbq);
  110. cp = sym_que_entry(qp, struct sym_ccb, tmo_linkq);
  111. if (cp->tmo_clock     != np->tmo_clock &&
  112.     cp->tmo_clock + 1 != np->tmo_clock)
  113. sym_timeout_ccb(np, cp, cp->tmo_clock - np->tmo_clock);
  114. else
  115. sym_abort_ccb(np, cp, 1);
  116. }
  117. }
  118. /*
  119.  * Our clock handler called from the O/S specific side.
  120.  */
  121. void sym_clock(hcb_p np)
  122. {
  123. int i, j;
  124. u_int tmp;
  125. tmp = np->tmo_clock;
  126. tmp ^= (++np->tmo_clock);
  127. for (i = 0; i < SYM_CONF_TIMEOUT_ORDER_MAX; i++, tmp >>= 1) {
  128. if (!(tmp & 1))
  129. continue;
  130. j = i;
  131. if (np->tmo_actq & (1<<i))
  132. j += SYM_CONF_TIMEOUT_ORDER_MAX;
  133. if (!sym_que_empty(&np->tmo_ccbq[j])) {
  134. sym_walk_ccb_tmo_list(np, &np->tmo_ccbq[j]);
  135. }
  136. np->tmo_actq ^= (1<<i);
  137. }
  138. }
  139. #endif /* SYM_OPT_HANDLE_IO_TIMEOUT */
  140. #ifdef SYM_OPT_ANNOUNCE_TRANSFER_RATE
  141. /*
  142.  *  Announce transfer rate if anything changed since last announcement.
  143.  */
  144. void sym_announce_transfer_rate(hcb_p np, int target)
  145. {
  146. tcb_p tp = &np->target[target];
  147. #define __tprev tp->tinfo.prev
  148. #define __tcurr tp->tinfo.curr
  149. if (__tprev.options  == __tcurr.options &&
  150.     __tprev.width    == __tcurr.width   &&
  151.     __tprev.offset   == __tcurr.offset  &&
  152.     !(__tprev.offset && __tprev.period != __tcurr.period))
  153. return;
  154. __tprev.options  = __tcurr.options;
  155. __tprev.width    = __tcurr.width;
  156. __tprev.offset   = __tcurr.offset;
  157. __tprev.period   = __tcurr.period;
  158. if (__tcurr.offset && __tcurr.period) {
  159. u_int period, f10, mb10;
  160. char *scsi;
  161. period = f10 = mb10 = 0;
  162. scsi = "FAST-5";
  163. if (__tcurr.period <= 9) {
  164. scsi = "FAST-80";
  165. period = 125;
  166. mb10 = 1600;
  167. }
  168. else {
  169. if (__tcurr.period <= 11) {
  170. scsi = "FAST-40";
  171. period = 250;
  172. if (__tcurr.period == 11)
  173. period = 303;
  174. }
  175. else if (__tcurr.period < 25) {
  176. scsi = "FAST-20";
  177. if (__tcurr.period == 12)
  178. period = 500;
  179. }
  180. else if (__tcurr.period <= 50) {
  181. scsi = "FAST-10";
  182. }
  183. if (!period)
  184. period = 40 * __tcurr.period;
  185. f10 = 100000 << (__tcurr.width ? 1 : 0);
  186. mb10 = (f10 + period/2) / period;
  187. }
  188. printf_info (
  189.     "%s:%d: %s %sSCSI %d.%d MB/s %s (%d.%d ns, offset %d)n",
  190.     sym_name(np), target, scsi, __tcurr.width? "WIDE " : "",
  191.     mb10/10, mb10%10,
  192.     (__tcurr.options & PPR_OPT_DT) ? "DT" : "ST",
  193.     period/10, period%10, __tcurr.offset);
  194. }
  195. else
  196. printf_info ("%s:%d: %sasynchronous.n", 
  197.              sym_name(np), target, __tcurr.width? "wide " : "");
  198. }
  199. #undef __tprev
  200. #undef __tcurr
  201. #endif /* SYM_OPT_ANNOUNCE_TRANSFER_RATE */
  202. #ifdef SYM_OPT_SNIFF_INQUIRY
  203. /*
  204.  *  Update transfer settings according to user settings 
  205.  *  and bits sniffed out from INQUIRY response.
  206.  */
  207. void sym_update_trans_settings(hcb_p np, tcb_p tp)
  208. {
  209. bcopy(&tp->tinfo.user, &tp->tinfo.goal, sizeof(tp->tinfo.goal));
  210. if (tp->inq_version >= 4) {
  211. switch(tp->inq_byte56 & INQ56_CLOCKING) {
  212. case INQ56_ST_ONLY:
  213. tp->tinfo.goal.options = 0;
  214. break;
  215. case INQ56_DT_ONLY:
  216. case INQ56_ST_DT:
  217. default:
  218. break;
  219. }
  220. }
  221. if (!((tp->inq_byte7 & tp->inq_byte7_valid) & INQ7_WIDE16)) {
  222. tp->tinfo.goal.width   = 0;
  223. tp->tinfo.goal.options = 0;
  224. }
  225. if (!((tp->inq_byte7 & tp->inq_byte7_valid) & INQ7_SYNC)) {
  226. tp->tinfo.goal.offset  = 0;
  227. tp->tinfo.goal.options = 0;
  228. }
  229. if (tp->tinfo.goal.options & PPR_OPT_DT) {
  230. if (tp->tinfo.goal.offset > np->maxoffs_dt)
  231. tp->tinfo.goal.offset = np->maxoffs_dt;
  232. }
  233. else {
  234. if (tp->tinfo.goal.offset > np->maxoffs)
  235. tp->tinfo.goal.offset = np->maxoffs;
  236. }
  237. }
  238. /*
  239.  *  Snoop target capabilities from INQUIRY response.
  240.  *  We only believe device versions >= SCSI-2 that use 
  241.  *  appropriate response data format (2). But it seems 
  242.  *  that some CCS devices also support SYNC (?).
  243.  */
  244. int 
  245. __sym_sniff_inquiry(hcb_p np, u_char tn, u_char ln,
  246.                     u_char *inq_data, int inq_len)
  247. {
  248. tcb_p tp = &np->target[tn];
  249. u_char inq_version;
  250. u_char inq_byte7;
  251. u_char inq_byte56;
  252. if (!inq_data || inq_len < 2)
  253. return -1;
  254. /*
  255.  *  Check device type and qualifier.
  256.  */
  257. if ((inq_data[0] & 0xe0) == 0x60)
  258. return -1;
  259. /*
  260.  *  Get SPC version.
  261.  */
  262. if (inq_len <= 2)
  263. return -1;
  264. inq_version = inq_data[2] & 0x7;
  265. /*
  266.  *  Get SYNC/WIDE16 capabilities.
  267.  */
  268. inq_byte7 = tp->inq_byte7;
  269. if (inq_version >= 2 && (inq_data[3] & 0xf) == 2) {
  270. if (inq_len > 7)
  271. inq_byte7 = inq_data[7];
  272. }
  273. else if (inq_version == 1 && (inq_data[3] & 0xf) == 1)
  274. inq_byte7 = INQ7_SYNC;
  275. /*
  276.  *  Get Tagged Command Queuing capability.
  277.  */
  278. if (inq_byte7 & INQ7_CMDQ)
  279. sym_set_bit(tp->cmdq_map, ln);
  280. else
  281. sym_clr_bit(tp->cmdq_map, ln);
  282. inq_byte7 &= ~INQ7_CMDQ;
  283. /*
  284.  *  Get CLOCKING capability.
  285.  */
  286. inq_byte56 = tp->inq_byte56;
  287. if (inq_version >= 4 && inq_len > 56)
  288. tp->inq_byte56 = inq_data[56];
  289. #if 0
  290. printf("XXXXXX [%d] inq_version=%x inq_byte7=%x inq_byte56=%x XXXXXn",
  291. inq_len, inq_version, inq_byte7, inq_byte56);
  292. #endif
  293. /*
  294.  *  Trigger a negotiation if needed.
  295.  */
  296. if (tp->inq_version != inq_version ||
  297.     tp->inq_byte7   != inq_byte7   ||
  298.     tp->inq_byte56  != inq_byte56) {
  299. tp->inq_version = inq_version;
  300. tp->inq_byte7   = inq_byte7;
  301. tp->inq_byte56  = inq_byte56;
  302. return 1;
  303. }
  304. return 0;
  305. }
  306. #endif /* SYM_OPT_SNIFF_INQUIRY */