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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      Copyright (C) 1993-1996 Bas Laarhoven,
  3.  *                (C) 1996      Kai Harrekilde-Petersen,
  4.  *                (C) 1997      Claus-Justus Heine.
  5.  This program is free software; you can redistribute it and/or modify
  6.  it under the terms of the GNU General Public License as published by
  7.  the Free Software Foundation; either version 2, or (at your option)
  8.  any later version.
  9.  This program is distributed in the hope that it will be useful,
  10.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  GNU General Public License for more details.
  13.  You should have received a copy of the GNU General Public License
  14.  along with this program; see the file COPYING.  If not, write to
  15.  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  *
  17.  * $Source: /homes/cvs/ftape-stacked/ftape/lowlevel/ftape-io.c,v $
  18.  * $Revision: 1.4 $
  19.  * $Date: 1997/11/11 14:02:36 $
  20.  *
  21.  *      This file contains the general control functions for the
  22.  *      QIC-40/80/3010/3020 floppy-tape driver "ftape" for Linux.
  23.  */
  24. #include <linux/errno.h>
  25. #include <linux/sched.h>
  26. #include <linux/mm.h>
  27. #include <asm/segment.h>
  28. #include <asm/system.h>
  29. #include <linux/ioctl.h>
  30. #include <linux/mtio.h>
  31. #include <linux/ftape.h>
  32. #include <linux/qic117.h>
  33. #include "../lowlevel/ftape-tracing.h"
  34. #include "../lowlevel/fdc-io.h"
  35. #include "../lowlevel/ftape-io.h"
  36. #include "../lowlevel/ftape-ctl.h"
  37. #include "../lowlevel/ftape-rw.h"
  38. #include "../lowlevel/ftape-write.h"
  39. #include "../lowlevel/ftape-read.h"
  40. #include "../lowlevel/ftape-init.h"
  41. #include "../lowlevel/ftape-calibr.h"
  42. /*      Global vars.
  43.  */
  44. /* NOTE: sectors start numbering at 1, all others at 0 ! */
  45. ft_timeout_table ftape_timeout;
  46. unsigned int ftape_tape_len;
  47. volatile qic117_cmd_t ftape_current_command;
  48. const struct qic117_command_table qic117_cmds[] = QIC117_COMMANDS;
  49. int ftape_might_be_off_track;
  50. /*      Local vars.
  51.  */
  52. static int diagnostic_mode;
  53. static unsigned int ftape_udelay_count;
  54. static unsigned int ftape_udelay_time;
  55. void ftape_udelay(unsigned int usecs)
  56. {
  57. volatile int count = (ftape_udelay_count * usecs +
  58.                               ftape_udelay_count - 1) / ftape_udelay_time;
  59. volatile int i;
  60. while (count-- > 0) {
  61. for (i = 0; i < 20; ++i);
  62. }
  63. }
  64. void ftape_udelay_calibrate(void)
  65. {
  66. ftape_calibrate("ftape_udelay",
  67. ftape_udelay, &ftape_udelay_count, &ftape_udelay_time);
  68. }
  69. /*      Delay (msec) routine.
  70.  */
  71. void ftape_sleep(unsigned int time)
  72. {
  73. TRACE_FUN(ft_t_any);
  74. time *= 1000;   /* msecs -> usecs */
  75. if (time < FT_USPT) {
  76. /*  Time too small for scheduler, do a busy wait ! */
  77. ftape_udelay(time);
  78. } else {
  79. long timeout;
  80. unsigned long flags;
  81. unsigned int ticks = (time + FT_USPT - 1) / FT_USPT;
  82. TRACE(ft_t_any, "%d msec, %d ticks", time/1000, ticks);
  83. timeout = ticks;
  84. save_flags(flags);
  85. sti();
  86. set_current_state(TASK_INTERRUPTIBLE);
  87. do {
  88. /*  Mmm. Isn't current->blocked == 0xffffffff ?
  89.  */
  90. if (signal_pending(current)) {
  91. TRACE(ft_t_err,
  92.       "awoken by non-blocked signal :-(");
  93. break; /* exit on signal */
  94. }
  95. while (current->state != TASK_RUNNING) {
  96. timeout = schedule_timeout(timeout);
  97. }
  98. } while (timeout);
  99. restore_flags(flags);
  100. }
  101. TRACE_EXIT;
  102. }
  103. /*  send a command or parameter to the drive
  104.  *  Generates # of step pulses.
  105.  */
  106. static inline int ft_send_to_drive(int arg)
  107. {
  108. /*  Always wait for a command_timeout period to separate
  109.  *  individuals commands and/or parameters.
  110.  */
  111. ftape_sleep(3 * FT_MILLISECOND);
  112. /*  Keep cylinder nr within range, step towards home if possible.
  113.  */
  114. if (ftape_current_cylinder >= arg) {
  115. return fdc_seek(ftape_current_cylinder - arg);
  116. } else {
  117. return fdc_seek(ftape_current_cylinder + arg);
  118. }
  119. }
  120. /* forward */ int ftape_report_raw_drive_status(int *status);
  121. static int ft_check_cmd_restrictions(qic117_cmd_t command)
  122. {
  123. int status = -1;
  124. TRACE_FUN(ft_t_any);
  125. TRACE(ft_t_flow, "%s", qic117_cmds[command].name);
  126. /* A new motion command during an uninterruptible (motion)
  127.  *  command requires a ready status before the new command can
  128.  *  be issued. Otherwise a new motion command needs to be
  129.  *  checked against required status.
  130.  */
  131. if (qic117_cmds[command].cmd_type == motion &&
  132.     qic117_cmds[ftape_current_command].non_intr) {
  133. ftape_report_raw_drive_status(&status);
  134. if ((status & QIC_STATUS_READY) == 0) {
  135. TRACE(ft_t_noise,
  136.       "motion cmd (%d) during non-intr cmd (%d)",
  137.       command, ftape_current_command);
  138. TRACE(ft_t_noise, "waiting until drive gets ready");
  139. ftape_ready_wait(ftape_timeout.seek,
  140.  &status);
  141. }
  142. }
  143. if (qic117_cmds[command].mask != 0) {
  144. __u8 difference;
  145. /*  Some commands do require a certain status:
  146.  */
  147. if (status == -1) { /* not yet set */
  148. ftape_report_raw_drive_status(&status);
  149. }
  150. difference = ((status ^ qic117_cmds[command].state) &
  151.       qic117_cmds[command].mask);
  152. /*  Wait until the drive gets
  153.  *  ready. This may last forever if
  154.  *  the drive never gets ready... 
  155.  */
  156. while ((difference & QIC_STATUS_READY) != 0) {
  157. TRACE(ft_t_noise, "command %d issued while not ready",
  158.       command);
  159. TRACE(ft_t_noise, "waiting until drive gets ready");
  160. if (ftape_ready_wait(ftape_timeout.seek,
  161.      &status) == -EINTR) {
  162. /*  Bail out on signal !
  163.  */
  164. TRACE_ABORT(-EINTR, ft_t_warn,
  165.       "interrupted by non-blockable signal");
  166. }
  167. difference = ((status ^ qic117_cmds[command].state) &
  168.       qic117_cmds[command].mask);
  169. }
  170. while ((difference & QIC_STATUS_ERROR) != 0) {
  171. int err;
  172. qic117_cmd_t cmd;
  173. TRACE(ft_t_noise,
  174.       "command %d issued while error pending",
  175.       command);
  176. TRACE(ft_t_noise, "clearing error status");
  177. ftape_report_error(&err, &cmd, 1);
  178. ftape_report_raw_drive_status(&status);
  179. difference = ((status ^ qic117_cmds[command].state) &
  180.       qic117_cmds[command].mask);
  181. if ((difference & QIC_STATUS_ERROR) != 0) {
  182. /*  Bail out on fatal signal !
  183.  */
  184. FT_SIGNAL_EXIT(_NEVER_BLOCK);
  185. }
  186. }
  187. if (difference) {
  188. /*  Any remaining difference can't be solved
  189.  *  here.  
  190.  */
  191. if (difference & (QIC_STATUS_CARTRIDGE_PRESENT |
  192.   QIC_STATUS_NEW_CARTRIDGE |
  193.   QIC_STATUS_REFERENCED)) {
  194. TRACE(ft_t_warn,
  195.       "Fatal: tape removed or reinserted !");
  196. ft_failure = 1;
  197. } else {
  198. TRACE(ft_t_err, "wrong state: 0x%02x should be: 0x%02x",
  199.       status & qic117_cmds[command].mask,
  200.       qic117_cmds[command].state);
  201. }
  202. TRACE_EXIT -EIO;
  203. }
  204. if (~status & QIC_STATUS_READY & qic117_cmds[command].mask) {
  205. TRACE_ABORT(-EBUSY, ft_t_err, "Bad: still busy!");
  206. }
  207. }
  208. TRACE_EXIT 0;
  209. }
  210. /*      Issue a tape command:
  211.  */
  212. int ftape_command(qic117_cmd_t command)
  213. {
  214. int result = 0;
  215. static int level;
  216. TRACE_FUN(ft_t_any);
  217. if ((unsigned int)command > NR_ITEMS(qic117_cmds)) {
  218. /*  This is a bug we'll want to know about too.
  219.  */
  220. TRACE_ABORT(-EIO, ft_t_bug, "bug - bad command: %d", command);
  221. }
  222. if (++level > 5) { /*  This is a bug we'll want to know about. */
  223. --level;
  224. TRACE_ABORT(-EIO, ft_t_bug, "bug - recursion for command: %d",
  225.     command);
  226. }
  227. /*  disable logging and restriction check for some commands,
  228.  *  check all other commands that have a prescribed starting
  229.  *  status.
  230.  */
  231. if (diagnostic_mode) {
  232. TRACE(ft_t_flow, "diagnostic command %d", command);
  233. } else if (command == QIC_REPORT_DRIVE_STATUS ||
  234.    command == QIC_REPORT_NEXT_BIT) {
  235. TRACE(ft_t_any, "%s", qic117_cmds[command].name);
  236. } else {
  237. TRACE_CATCH(ft_check_cmd_restrictions(command), --level);
  238. }
  239. /*  Now all conditions are met or result was < 0.
  240.  */
  241. result = ft_send_to_drive((unsigned int)command);
  242. if (qic117_cmds[command].cmd_type == motion &&
  243.     command != QIC_LOGICAL_FORWARD && command != QIC_STOP_TAPE) {
  244. ft_location.known = 0;
  245. }
  246. ftape_current_command = command;
  247. --level;
  248. TRACE_EXIT result;
  249. }
  250. /*      Send a tape command parameter:
  251.  *      Generates command # of step pulses.
  252.  *      Skips tape-status call !
  253.  */
  254. int ftape_parameter(unsigned int parameter)
  255. {
  256. TRACE_FUN(ft_t_any);
  257. TRACE(ft_t_flow, "called with parameter = %d", parameter);
  258. TRACE_EXIT ft_send_to_drive(parameter + 2);
  259. }
  260. /*      Wait for the drive to get ready.
  261.  *      timeout time in milli-seconds
  262.  *      Returned status is valid if result != -EIO
  263.  *
  264.  *      Should we allow to be killed by SIGINT?  (^C)
  265.  *      Would be nice at least for large timeouts.
  266.  */
  267. int ftape_ready_wait(unsigned int timeout, int *status)
  268. {
  269. unsigned long t0;
  270. unsigned int poll_delay;
  271. int signal_retries;
  272. TRACE_FUN(ft_t_any);
  273. /*  the following ** REALLY ** reduces the system load when
  274.  *  e.g. one simply rewinds or retensions. The tape is slow 
  275.  *  anyway. It is really not necessary to detect error 
  276.  *  conditions with 1/10 seconds granularity
  277.  *
  278.  *  On my AMD 133MHZ 486: 100 ms: 23% system load
  279.  *                        1  sec:  5%
  280.  *                        5  sec:  0.6%, yeah
  281.  */
  282. if (timeout <= FT_SECOND) {
  283. poll_delay = 100 * FT_MILLISECOND;
  284. signal_retries = 20; /* two seconds */
  285. } else if (timeout < 20 * FT_SECOND) {
  286. TRACE(ft_t_flow, "setting poll delay to 1 second");
  287. poll_delay = FT_SECOND;
  288. signal_retries = 2; /* two seconds */
  289. } else {
  290. TRACE(ft_t_flow, "setting poll delay to 5 seconds");
  291. poll_delay = 5 * FT_SECOND;
  292. signal_retries = 1; /* five seconds */
  293. }
  294. for (;;) {
  295. t0 = jiffies;
  296. TRACE_CATCH(ftape_report_raw_drive_status(status),);
  297. if (*status & QIC_STATUS_READY) {
  298. TRACE_EXIT 0;
  299. }
  300. if (!signal_retries--) {
  301. FT_SIGNAL_EXIT(_NEVER_BLOCK);
  302. }
  303. if ((int)timeout >= 0) {
  304. /* this will fail when jiffies wraps around about
  305.  * once every year :-)
  306.  */
  307. timeout -= ((jiffies - t0) * FT_SECOND) / HZ;
  308. if (timeout <= 0) {
  309. TRACE_ABORT(-ETIME, ft_t_err, "timeout");
  310. }
  311. ftape_sleep(poll_delay);
  312. timeout -= poll_delay;
  313. } else {
  314. ftape_sleep(poll_delay);
  315. }
  316. }
  317. TRACE_EXIT -ETIME;
  318. }
  319. /*      Issue command and wait up to timeout milli seconds for drive ready
  320.  */
  321. int ftape_command_wait(qic117_cmd_t command, unsigned int timeout, int *status)
  322. {
  323. int result;
  324. /* Drive should be ready, issue command
  325.  */
  326. result = ftape_command(command);
  327. if (result >= 0) {
  328. result = ftape_ready_wait(timeout, status);
  329. }
  330. return result;
  331. }
  332. int ftape_parameter_wait(unsigned int parm, unsigned int timeout, int *status)
  333. {
  334. int result;
  335. /* Drive should be ready, issue command
  336.  */
  337. result = ftape_parameter(parm);
  338. if (result >= 0) {
  339. result = ftape_ready_wait(timeout, status);
  340. }
  341. return result;
  342. }
  343. /*--------------------------------------------------------------------------
  344.  *      Report operations
  345.  */
  346. /* Query the drive about its status.  The command is sent and
  347.    result_length bits of status are returned (2 extra bits are read
  348.    for start and stop). */
  349. int ftape_report_operation(int *status,
  350.    qic117_cmd_t command,
  351.    int result_length)
  352. {
  353. int i, st3;
  354. unsigned int t0;
  355. unsigned int dt;
  356. TRACE_FUN(ft_t_any);
  357. TRACE_CATCH(ftape_command(command),);
  358. t0 = ftape_timestamp();
  359. i = 0;
  360. do {
  361. ++i;
  362. ftape_sleep(3 * FT_MILLISECOND); /* see remark below */
  363. TRACE_CATCH(fdc_sense_drive_status(&st3),);
  364. dt = ftape_timediff(t0, ftape_timestamp());
  365. /*  Ack should be asserted within Ttimout + Tack = 6 msec.
  366.  *  Looks like some drives fail to do this so extend this
  367.  *  period to 300 msec.
  368.  */
  369. } while (!(st3 & ST3_TRACK_0) && dt < 300000);
  370. if (!(st3 & ST3_TRACK_0)) {
  371. TRACE(ft_t_err,
  372.       "No acknowledge after %u msec. (%i iter)", dt / 1000, i);
  373. TRACE_ABORT(-EIO, ft_t_err, "timeout on Acknowledge");
  374. }
  375. /*  dt may be larger than expected because of other tasks
  376.  *  scheduled while we were sleeping.
  377.  */
  378. if (i > 1 && dt > 6000) {
  379. TRACE(ft_t_err, "Acknowledge after %u msec. (%i iter)",
  380.       dt / 1000, i);
  381. }
  382. *status = 0;
  383. for (i = 0; i < result_length + 1; i++) {
  384. TRACE_CATCH(ftape_command(QIC_REPORT_NEXT_BIT),);
  385. TRACE_CATCH(fdc_sense_drive_status(&st3),);
  386. if (i < result_length) {
  387. *status |= ((st3 & ST3_TRACK_0) ? 1 : 0) << i;
  388. } else if ((st3 & ST3_TRACK_0) == 0) {
  389. TRACE_ABORT(-EIO, ft_t_err, "missing status stop bit");
  390. }
  391. }
  392. /* this command will put track zero and index back into normal state */
  393. (void)ftape_command(QIC_REPORT_NEXT_BIT);
  394. TRACE_EXIT 0;
  395. }
  396. /* Report the current drive status. */
  397. int ftape_report_raw_drive_status(int *status)
  398. {
  399. int result;
  400. int count = 0;
  401. TRACE_FUN(ft_t_any);
  402. do {
  403. result = ftape_report_operation(status,
  404. QIC_REPORT_DRIVE_STATUS, 8);
  405. } while (result < 0 && ++count <= 3);
  406. if (result < 0) {
  407. TRACE_ABORT(-EIO, ft_t_err,
  408.     "report_operation failed after %d trials", count);
  409. }
  410. if ((*status & 0xff) == 0xff) {
  411. TRACE_ABORT(-EIO, ft_t_err,
  412.     "impossible drive status 0xff");
  413. }
  414. if (*status & QIC_STATUS_READY) {
  415. ftape_current_command = QIC_NO_COMMAND; /* completed */
  416. }
  417. ft_last_status.status.drive_status = (__u8)(*status & 0xff);
  418. TRACE_EXIT 0;
  419. }
  420. int ftape_report_drive_status(int *status)
  421. {
  422. TRACE_FUN(ft_t_any);
  423. TRACE_CATCH(ftape_report_raw_drive_status(status),);
  424. if (*status & QIC_STATUS_NEW_CARTRIDGE ||
  425.     !(*status & QIC_STATUS_CARTRIDGE_PRESENT)) {
  426. ft_failure = 1; /* will inhibit further operations */
  427. TRACE_EXIT -EIO;
  428. }
  429. if (*status & QIC_STATUS_READY && *status & QIC_STATUS_ERROR) {
  430. /*  Let caller handle all errors */
  431. TRACE_ABORT(1, ft_t_warn, "warning: error status set!");
  432. }
  433. TRACE_EXIT 0;
  434. }
  435. int ftape_report_error(unsigned int *error,
  436.        qic117_cmd_t *command, int report)
  437. {
  438. static const ftape_error ftape_errors[] = QIC117_ERRORS;
  439. int code;
  440. TRACE_FUN(ft_t_any);
  441. TRACE_CATCH(ftape_report_operation(&code, QIC_REPORT_ERROR_CODE, 16),);
  442. *error   = (unsigned int)(code & 0xff);
  443. *command = (qic117_cmd_t)((code>>8)&0xff);
  444. /*  remember hardware status, maybe useful for status ioctls
  445.  */
  446. ft_last_error.error.command = (__u8)*command;
  447. ft_last_error.error.error   = (__u8)*error;
  448. if (!report) {
  449. TRACE_EXIT 0;
  450. }
  451. if (*error == 0) {
  452. TRACE_ABORT(0, ft_t_info, "No error");
  453. }
  454. TRACE(ft_t_info, "errorcode: %d", *error);
  455. if (*error < NR_ITEMS(ftape_errors)) {
  456. TRACE(ft_t_noise, "%sFatal ERROR:",
  457.       (ftape_errors[*error].fatal ? "" : "Non-"));
  458. TRACE(ft_t_noise, "%s ...", ftape_errors[*error].message);
  459. } else {
  460. TRACE(ft_t_noise, "Unknown ERROR !");
  461. }
  462. if ((unsigned int)*command < NR_ITEMS(qic117_cmds) &&
  463.     qic117_cmds[*command].name != NULL) {
  464. TRACE(ft_t_noise, "... caused by command '%s'",
  465.       qic117_cmds[*command].name);
  466. } else {
  467. TRACE(ft_t_noise, "... caused by unknown command %d",
  468.       *command);
  469. }
  470. TRACE_EXIT 0;
  471. }
  472. int ftape_in_error_state(int status)
  473. {
  474. TRACE_FUN(ft_t_any);
  475. if ((status & QIC_STATUS_READY) && (status & QIC_STATUS_ERROR)) {
  476. TRACE_ABORT(1, ft_t_warn, "warning: error status set!");
  477. }
  478. TRACE_EXIT 0;
  479. }
  480. int ftape_report_configuration(qic_model *model,
  481.        unsigned int *rate,
  482.        int *qic_std,
  483.        int *tape_len)
  484. {
  485. int result;
  486. int config;
  487. int status;
  488. static const unsigned int qic_rates[ 4] = { 250, 2000, 500, 1000 };
  489. TRACE_FUN(ft_t_any);
  490. result = ftape_report_operation(&config,
  491. QIC_REPORT_DRIVE_CONFIGURATION, 8);
  492. if (result < 0) {
  493. ft_last_status.status.drive_config = (__u8)0x00;
  494. *model = prehistoric;
  495. *rate = 500;
  496. *qic_std = QIC_TAPE_QIC40;
  497. *tape_len = 205;
  498. TRACE_EXIT 0;
  499. } else {
  500. ft_last_status.status.drive_config = (__u8)(config & 0xff);
  501. }
  502. *rate = qic_rates[(config & QIC_CONFIG_RATE_MASK) >> QIC_CONFIG_RATE_SHIFT];
  503. result = ftape_report_operation(&status, QIC_REPORT_TAPE_STATUS, 8);
  504. if (result < 0) {
  505. ft_last_status.status.tape_status = (__u8)0x00;
  506. /* pre- QIC117 rev C spec. drive, QIC_CONFIG_80 bit is valid.
  507.  */
  508. *qic_std = (config & QIC_CONFIG_80) ?
  509. QIC_TAPE_QIC80 : QIC_TAPE_QIC40;
  510. /* ?? how's about 425ft tapes? */
  511. *tape_len = (config & QIC_CONFIG_LONG) ? 307 : 0;
  512. *model = pre_qic117c;
  513. result = 0;
  514. } else {
  515. ft_last_status.status.tape_status = (__u8)(status & 0xff);
  516. *model = post_qic117b;
  517. TRACE(ft_t_any, "report tape status result = %02x", status);
  518. /* post- QIC117 rev C spec. drive, QIC_CONFIG_80 bit is
  519.  * invalid. 
  520.  */
  521. switch (status & QIC_TAPE_STD_MASK) {
  522. case QIC_TAPE_QIC40:
  523. case QIC_TAPE_QIC80:
  524. case QIC_TAPE_QIC3020:
  525. case QIC_TAPE_QIC3010:
  526. *qic_std = status & QIC_TAPE_STD_MASK;
  527. break;
  528. default:
  529. *qic_std = -1;
  530. break;
  531. }
  532. switch (status & QIC_TAPE_LEN_MASK) {
  533. case QIC_TAPE_205FT:
  534. /* 205 or 425+ ft 550 Oe tape */
  535. *tape_len = 0;
  536. break;
  537. case QIC_TAPE_307FT:
  538. /* 307.5 ft 550 Oe Extended Length (XL) tape */
  539. *tape_len = 307;
  540. break;
  541. case QIC_TAPE_VARIABLE:
  542. /* Variable length 550 Oe tape */
  543. *tape_len = 0;
  544. break;
  545. case QIC_TAPE_1100FT:
  546. /* 1100 ft 550 Oe tape */
  547. *tape_len = 1100;
  548. break;
  549. case QIC_TAPE_FLEX:
  550. /* Variable length 900 Oe tape */
  551. *tape_len = 0;
  552. break;
  553. default:
  554. *tape_len = -1;
  555. break;
  556. }
  557. if (*qic_std == -1 || *tape_len == -1) {
  558. TRACE(ft_t_any,
  559.       "post qic-117b spec drive with unknown tape");
  560. }
  561. result = *tape_len == -1 ? -EIO : 0;
  562. if (status & QIC_TAPE_WIDE) {
  563. switch (*qic_std) {
  564. case QIC_TAPE_QIC80:
  565. TRACE(ft_t_info, "TR-1 tape detected");
  566. break;
  567. case QIC_TAPE_QIC3010:
  568. TRACE(ft_t_info, "TR-2 tape detected");
  569. break;
  570. case QIC_TAPE_QIC3020:
  571. TRACE(ft_t_info, "TR-3 tape detected");
  572. break;
  573. default:
  574. TRACE(ft_t_warn,
  575.       "Unknown Travan tape type detected");
  576. break;
  577. }
  578. }
  579. }
  580. TRACE_EXIT (result < 0) ? -EIO : 0;
  581. }
  582. int ftape_report_rom_version(int *version)
  583. {
  584. if (ftape_report_operation(version, QIC_REPORT_ROM_VERSION, 8) < 0) {
  585. return -EIO;
  586. } else {
  587. return 0;
  588. }
  589. }
  590. int ftape_report_signature(int *signature)
  591. {
  592. int result;
  593. result = ftape_command(28);
  594. result = ftape_report_operation(signature, 9, 8);
  595. result = ftape_command(30);
  596. return (result < 0) ? -EIO : 0;
  597. }
  598. void ftape_report_vendor_id(unsigned int *id)
  599. {
  600. int result;
  601. TRACE_FUN(ft_t_any);
  602. /* We'll try to get a vendor id from the drive.  First
  603.  * according to the QIC-117 spec, a 16-bit id is requested.
  604.  * If that fails we'll try an 8-bit version, otherwise we'll
  605.  * try an undocumented query.
  606.  */
  607. result = ftape_report_operation((int *) id, QIC_REPORT_VENDOR_ID, 16);
  608. if (result < 0) {
  609. result = ftape_report_operation((int *) id,
  610. QIC_REPORT_VENDOR_ID, 8);
  611. if (result < 0) {
  612. /* The following is an undocumented call found
  613.  * in the CMS code.
  614.  */
  615. result = ftape_report_operation((int *) id, 24, 8);
  616. if (result < 0) {
  617. *id = UNKNOWN_VENDOR;
  618. } else {
  619. TRACE(ft_t_noise, "got old 8 bit id: %04x",
  620.       *id);
  621. *id |= 0x20000;
  622. }
  623. } else {
  624. TRACE(ft_t_noise, "got 8 bit id: %04x", *id);
  625. *id |= 0x10000;
  626. }
  627. } else {
  628. TRACE(ft_t_noise, "got 16 bit id: %04x", *id);
  629. }
  630. if (*id == 0x0047) {
  631. int version;
  632. int sign;
  633. if (ftape_report_rom_version(&version) < 0) {
  634. TRACE(ft_t_bug, "report rom version failed");
  635. TRACE_EXIT;
  636. }
  637. TRACE(ft_t_noise, "CMS rom version: %d", version);
  638. ftape_command(QIC_ENTER_DIAGNOSTIC_1);
  639. ftape_command(QIC_ENTER_DIAGNOSTIC_1);
  640. diagnostic_mode = 1;
  641. if (ftape_report_operation(&sign, 9, 8) < 0) {
  642. unsigned int error;
  643. qic117_cmd_t command;
  644. ftape_report_error(&error, &command, 1);
  645. ftape_command(QIC_ENTER_PRIMARY_MODE);
  646. diagnostic_mode = 0;
  647. TRACE_EXIT; /* failure ! */
  648. } else {
  649. TRACE(ft_t_noise, "CMS signature: %02x", sign);
  650. }
  651. if (sign == 0xa5) {
  652. result = ftape_report_operation(&sign, 37, 8);
  653. if (result < 0) {
  654. if (version >= 63) {
  655. *id = 0x8880;
  656. TRACE(ft_t_noise,
  657.       "This is an Iomega drive !");
  658. } else {
  659. *id = 0x0047;
  660. TRACE(ft_t_noise,
  661.       "This is a real CMS drive !");
  662. }
  663. } else {
  664. *id = 0x0047;
  665. TRACE(ft_t_noise, "CMS status: %d", sign);
  666. }
  667. } else {
  668. *id = UNKNOWN_VENDOR;
  669. }
  670. ftape_command(QIC_ENTER_PRIMARY_MODE);
  671. diagnostic_mode = 0;
  672. }
  673. TRACE_EXIT;
  674. }
  675. static int qic_rate_code(unsigned int rate)
  676. {
  677. switch (rate) {
  678. case 250:
  679. return QIC_CONFIG_RATE_250;
  680. case 500:
  681. return QIC_CONFIG_RATE_500;
  682. case 1000:
  683. return QIC_CONFIG_RATE_1000;
  684. case 2000:
  685. return QIC_CONFIG_RATE_2000;
  686. default:
  687. return QIC_CONFIG_RATE_500;
  688. }
  689. }
  690. static int ftape_set_rate_test(unsigned int *max_rate)
  691. {
  692. unsigned int error;
  693. qic117_cmd_t command;
  694. int status;
  695. int supported = 0;
  696. TRACE_FUN(ft_t_any);
  697. /*  Check if the drive does support the select rate command
  698.  *  by testing all different settings. If any one is accepted
  699.  *  we assume the command is supported, else not.
  700.  */
  701. for (*max_rate = 2000; *max_rate >= 250; *max_rate /= 2) {
  702. if (ftape_command(QIC_SELECT_RATE) < 0) {
  703. continue;
  704. }
  705. if (ftape_parameter_wait(qic_rate_code(*max_rate),
  706.  1 * FT_SECOND, &status) < 0) {
  707. continue;
  708. }
  709. if (status & QIC_STATUS_ERROR) {
  710. ftape_report_error(&error, &command, 0);
  711. continue;
  712. }
  713. supported = 1; /* did accept a request */
  714. break;
  715. }
  716. TRACE(ft_t_noise, "Select Rate command is%s supported", 
  717.       supported ? "" : " not");
  718. TRACE_EXIT supported;
  719. }
  720. int ftape_set_data_rate(unsigned int new_rate /* Kbps */, unsigned int qic_std)
  721. {
  722. int status;
  723. int result = 0;
  724. unsigned int data_rate = new_rate;
  725. static int supported;
  726. int rate_changed = 0;
  727. qic_model dummy_model;
  728. unsigned int dummy_qic_std, dummy_tape_len;
  729. TRACE_FUN(ft_t_any);
  730. if (ft_drive_max_rate == 0) { /* first time */
  731. supported = ftape_set_rate_test(&ft_drive_max_rate);
  732. }
  733. if (supported) {
  734. ftape_command(QIC_SELECT_RATE);
  735. result = ftape_parameter_wait(qic_rate_code(new_rate),
  736.       1 * FT_SECOND, &status);
  737. if (result >= 0 && !(status & QIC_STATUS_ERROR)) {
  738. rate_changed = 1;
  739. }
  740. }
  741. TRACE_CATCH(result = ftape_report_configuration(&dummy_model,
  742. &data_rate, 
  743. &dummy_qic_std,
  744. &dummy_tape_len),);
  745. if (data_rate != new_rate) {
  746. if (!supported) {
  747. TRACE(ft_t_warn, "Rate change not supported!");
  748. } else if (rate_changed) {
  749. TRACE(ft_t_warn, "Requested: %d, got %d",
  750.       new_rate, data_rate);
  751. } else {
  752. TRACE(ft_t_warn, "Rate change failed!");
  753. }
  754. result = -EINVAL;
  755. }
  756. /*
  757.  *  Set data rate and write precompensation as specified:
  758.  *
  759.  *            |  QIC-40/80  | QIC-3010/3020
  760.  *   rate     |   precomp   |    precomp
  761.  *  ----------+-------------+--------------
  762.  *  250 Kbps. |   250 ns.   |     0 ns.
  763.  *  500 Kbps. |   125 ns.   |     0 ns.
  764.  *    1 Mbps. |    42 ns.   |     0 ns.
  765.  *    2 Mbps  |      N/A    |     0 ns.
  766.  */
  767. if ((qic_std == QIC_TAPE_QIC40 && data_rate > 500) || 
  768.     (qic_std == QIC_TAPE_QIC80 && data_rate > 1000)) {
  769. TRACE_ABORT(-EINVAL,
  770.     ft_t_warn, "Datarate too high for QIC-mode");
  771. }
  772. TRACE_CATCH(fdc_set_data_rate(data_rate),_res = -EINVAL);
  773. ft_data_rate = data_rate;
  774. if (qic_std == QIC_TAPE_QIC40 || qic_std == QIC_TAPE_QIC80) {
  775. switch (data_rate) {
  776. case 250:
  777. fdc_set_write_precomp(250);
  778. break;
  779. default:
  780. case 500:
  781. fdc_set_write_precomp(125);
  782. break;
  783. case 1000:
  784. fdc_set_write_precomp(42);
  785. break;
  786. }
  787. } else {
  788. fdc_set_write_precomp(0);
  789. }
  790. TRACE_EXIT result;
  791. }
  792. /*  The next two functions are used to cope with excessive overrun errors
  793.  */
  794. int ftape_increase_threshold(void)
  795. {
  796. TRACE_FUN(ft_t_flow);
  797. if (fdc.type < i82077 || ft_fdc_threshold >= 12) {
  798. TRACE_ABORT(-EIO, ft_t_err, "cannot increase fifo threshold");
  799. }
  800. if (fdc_fifo_threshold(++ft_fdc_threshold, NULL, NULL, NULL) < 0) {
  801. TRACE(ft_t_err, "cannot increase fifo threshold");
  802. ft_fdc_threshold --;
  803. fdc_reset();
  804. }
  805. TRACE(ft_t_info, "New FIFO threshold: %d", ft_fdc_threshold);
  806. TRACE_EXIT 0;
  807. }
  808. int ftape_half_data_rate(void)
  809. {
  810. if (ft_data_rate < 500) {
  811. return -1;
  812. }
  813. if (ftape_set_data_rate(ft_data_rate / 2, ft_qic_std) < 0) {
  814. return -EIO;
  815. }
  816. ftape_calc_timeouts(ft_qic_std, ft_data_rate, ftape_tape_len);
  817. return 0;
  818. }
  819. /*      Seek the head to the specified track.
  820.  */
  821. int ftape_seek_head_to_track(unsigned int track)
  822. {
  823. int status;
  824. TRACE_FUN(ft_t_any);
  825. ft_location.track = -1; /* remains set in case of error */
  826. if (track >= ft_tracks_per_tape) {
  827. TRACE_ABORT(-EINVAL, ft_t_bug, "track out of bounds");
  828. }
  829. TRACE(ft_t_flow, "seeking track %d", track);
  830. TRACE_CATCH(ftape_command(QIC_SEEK_HEAD_TO_TRACK),);
  831. TRACE_CATCH(ftape_parameter_wait(track, ftape_timeout.head_seek,
  832.  &status),);
  833. ft_location.track = track;
  834. ftape_might_be_off_track = 0;
  835. TRACE_EXIT 0;
  836. }
  837. int ftape_wakeup_drive(wake_up_types method)
  838. {
  839. int status;
  840. int motor_on = 0;
  841. TRACE_FUN(ft_t_any);
  842. switch (method) {
  843. case wake_up_colorado:
  844. TRACE_CATCH(ftape_command(QIC_PHANTOM_SELECT),);
  845. TRACE_CATCH(ftape_parameter(0 /* ft_drive_sel ?? */),);
  846. break;
  847. case wake_up_mountain:
  848. TRACE_CATCH(ftape_command(QIC_SOFT_SELECT),);
  849. ftape_sleep(FT_MILLISECOND); /* NEEDED */
  850. TRACE_CATCH(ftape_parameter(18),);
  851. break;
  852. case wake_up_insight:
  853. ftape_sleep(100 * FT_MILLISECOND);
  854. motor_on = 1;
  855. fdc_motor(motor_on); /* enable is done by motor-on */
  856. case no_wake_up:
  857. break;
  858. default:
  859. TRACE_EXIT -ENODEV; /* unknown wakeup method */
  860. break;
  861. }
  862. /*  If wakeup succeeded we shouldn't get an error here..
  863.  */
  864. TRACE_CATCH(ftape_report_raw_drive_status(&status),
  865.     if (motor_on) {
  866.     fdc_motor(0);
  867.     });
  868. TRACE_EXIT 0;
  869. }
  870. int ftape_put_drive_to_sleep(wake_up_types method)
  871. {
  872. TRACE_FUN(ft_t_any);
  873. switch (method) {
  874. case wake_up_colorado:
  875. TRACE_CATCH(ftape_command(QIC_PHANTOM_DESELECT),);
  876. break;
  877. case wake_up_mountain:
  878. TRACE_CATCH(ftape_command(QIC_SOFT_DESELECT),);
  879. break;
  880. case wake_up_insight:
  881. fdc_motor(0); /* enable is done by motor-on */
  882. case no_wake_up: /* no wakeup / no sleep ! */
  883. break;
  884. default:
  885. TRACE_EXIT -ENODEV; /* unknown wakeup method */
  886. }
  887. TRACE_EXIT 0;
  888. }
  889. int ftape_reset_drive(void)
  890. {
  891. int result = 0;
  892. int status;
  893. unsigned int err_code;
  894. qic117_cmd_t err_command;
  895. int i;
  896. TRACE_FUN(ft_t_any);
  897. /*  We want to re-establish contact with our drive.  Fire a
  898.  *  number of reset commands (single step pulses) and pray for
  899.  *  success.
  900.  */
  901. for (i = 0; i < 2; ++i) {
  902. TRACE(ft_t_flow, "Resetting fdc");
  903. fdc_reset();
  904. ftape_sleep(10 * FT_MILLISECOND);
  905. TRACE(ft_t_flow, "Reset command to drive");
  906. result = ftape_command(QIC_RESET);
  907. if (result == 0) {
  908. ftape_sleep(1 * FT_SECOND); /*  drive not
  909.      *  accessible
  910.      *  during 1 second
  911.      */
  912. TRACE(ft_t_flow, "Re-selecting drive");
  913. /* Strange, the QIC-117 specs don't mention
  914.  * this but the drive gets deselected after a
  915.  * soft reset !  So we need to enable it
  916.  * again.
  917.  */
  918. if (ftape_wakeup_drive(ft_drive_type.wake_up) < 0) {
  919. TRACE(ft_t_err, "Wakeup failed !");
  920. }
  921. TRACE(ft_t_flow, "Waiting until drive gets ready");
  922. result= ftape_ready_wait(ftape_timeout.reset, &status);
  923. if (result == 0 && (status & QIC_STATUS_ERROR)) {
  924. result = ftape_report_error(&err_code,
  925.     &err_command, 1);
  926. if (result == 0 && err_code == 27) {
  927. /*  Okay, drive saw reset
  928.  *  command and responded as it
  929.  *  should
  930.  */
  931. break;
  932. } else {
  933. result = -EIO;
  934. }
  935. } else {
  936. result = -EIO;
  937. }
  938. }
  939. FT_SIGNAL_EXIT(_DONT_BLOCK);
  940. }
  941. if (result != 0) {
  942. TRACE(ft_t_err, "General failure to reset tape drive");
  943. } else {
  944. /*  Restore correct settings: keep original rate 
  945.  */
  946. ftape_set_data_rate(ft_data_rate, ft_qic_std);
  947. }
  948. ftape_init_drive_needed = 1;
  949. TRACE_EXIT result;
  950. }