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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      Copyright (C) 1993-1996 Bas Laarhoven,
  3.  *                (C) 1996-1997 Claus-Justus Heine.
  4.  This program is free software; you can redistribute it and/or modify
  5.  it under the terms of the GNU General Public License as published by
  6.  the Free Software Foundation; either version 2, or (at your option)
  7.  any later version.
  8.  This program is distributed in the hope that it will be useful,
  9.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  GNU General Public License for more details.
  12.  You should have received a copy of the GNU General Public License
  13.  along with this program; see the file COPYING.  If not, write to
  14.  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  15.  *
  16.  * $Source: /homes/cvs/ftape-stacked/ftape/lowlevel/ftape-rw.c,v $
  17.  * $Revision: 1.7 $
  18.  * $Date: 1997/10/28 14:26:49 $
  19.  *
  20.  *      This file contains some common code for the segment read and
  21.  *      segment write routines for the QIC-117 floppy-tape driver for
  22.  *      Linux.
  23.  */
  24. #include <linux/string.h>
  25. #include <linux/errno.h>
  26. #include <linux/ftape.h>
  27. #include <linux/qic117.h>
  28. #include "../lowlevel/ftape-tracing.h"
  29. #include "../lowlevel/ftape-rw.h"
  30. #include "../lowlevel/fdc-io.h"
  31. #include "../lowlevel/ftape-init.h"
  32. #include "../lowlevel/ftape-io.h"
  33. #include "../lowlevel/ftape-ctl.h"
  34. #include "../lowlevel/ftape-read.h"
  35. #include "../lowlevel/ftape-ecc.h"
  36. #include "../lowlevel/ftape-bsm.h"
  37. /*      Global vars.
  38.  */
  39. int ft_nr_buffers;
  40. buffer_struct *ft_buffer[FT_MAX_NR_BUFFERS];
  41. static volatile int ft_head;
  42. static volatile int ft_tail; /* not volatile but need same type as head */
  43. int fdc_setup_error;
  44. location_record ft_location = {-1, 0};
  45. volatile int ftape_tape_running;
  46. /*      Local vars.
  47.  */
  48. static int overrun_count_offset;
  49. static int inhibit_correction;
  50. /*  maxmimal allowed overshoot when fast seeking
  51.  */
  52. #define OVERSHOOT_LIMIT 10
  53. /*      Increment cyclic buffer nr.
  54.  */
  55. buffer_struct *ftape_next_buffer(ft_buffer_queue_t pos)
  56. {
  57. switch (pos) {
  58. case ft_queue_head:
  59. if (++ft_head >= ft_nr_buffers) {
  60. ft_head = 0;
  61. }
  62. return ft_buffer[ft_head];
  63. case ft_queue_tail:
  64. if (++ft_tail >= ft_nr_buffers) {
  65. ft_tail = 0;
  66. }
  67. return ft_buffer[ft_tail];
  68. default:
  69. return NULL;
  70. }
  71. }
  72. int ftape_buffer_id(ft_buffer_queue_t pos)
  73. {
  74. switch(pos) {
  75. case ft_queue_head: return ft_head;
  76. case ft_queue_tail: return ft_tail;
  77. default: return -1;
  78. }
  79. }
  80. buffer_struct *ftape_get_buffer(ft_buffer_queue_t pos)
  81. {
  82. switch(pos) {
  83. case ft_queue_head: return ft_buffer[ft_head];
  84. case ft_queue_tail: return ft_buffer[ft_tail];
  85. default: return NULL;
  86. }
  87. }
  88. void ftape_reset_buffer(void)
  89. {
  90. ft_head = ft_tail = 0;
  91. }
  92. buffer_state_enum ftape_set_state(buffer_state_enum new_state)
  93. {
  94. buffer_state_enum old_state = ft_driver_state;
  95. ft_driver_state = new_state;
  96. return old_state;
  97. }
  98. /*      Calculate Floppy Disk Controller and DMA parameters for a segment.
  99.  *      head:   selects buffer struct in array.
  100.  *      offset: number of physical sectors to skip (including bad ones).
  101.  *      count:  number of physical sectors to handle (including bad ones).
  102.  */
  103. static int setup_segment(buffer_struct * buff, 
  104.  int segment_id,
  105.  unsigned int sector_offset, 
  106.  unsigned int sector_count, 
  107.  int retry)
  108. {
  109. SectorMap offset_mask;
  110. SectorMap mask;
  111. TRACE_FUN(ft_t_any);
  112. buff->segment_id = segment_id;
  113. buff->sector_offset = sector_offset;
  114. buff->remaining = sector_count;
  115. buff->head = segment_id / ftape_segments_per_head;
  116. buff->cyl = (segment_id % ftape_segments_per_head) / ftape_segments_per_cylinder;
  117. buff->sect = (segment_id % ftape_segments_per_cylinder) * FT_SECTORS_PER_SEGMENT + 1;
  118. buff->deleted = 0;
  119. offset_mask = (1 << buff->sector_offset) - 1;
  120. mask = ftape_get_bad_sector_entry(segment_id) & offset_mask;
  121. while (mask) {
  122. if (mask & 1) {
  123. offset_mask >>= 1; /* don't count bad sector */
  124. }
  125. mask >>= 1;
  126. }
  127. buff->data_offset = count_ones(offset_mask); /* good sectors to skip */
  128. buff->ptr = buff->address + buff->data_offset * FT_SECTOR_SIZE;
  129. TRACE(ft_t_flow, "data offset = %d sectors", buff->data_offset);
  130. if (retry) {
  131. buff->soft_error_map &= offset_mask; /* keep skipped part */
  132. } else {
  133. buff->hard_error_map = buff->soft_error_map = 0;
  134. }
  135. buff->bad_sector_map = ftape_get_bad_sector_entry(buff->segment_id);
  136. if (buff->bad_sector_map != 0) {
  137. TRACE(ft_t_noise, "segment: %d, bad sector map: %08lx",
  138. buff->segment_id, (long)buff->bad_sector_map);
  139. } else {
  140. TRACE(ft_t_flow, "segment: %d", buff->segment_id);
  141. }
  142. if (buff->sector_offset > 0) {
  143. buff->bad_sector_map >>= buff->sector_offset;
  144. }
  145. if (buff->sector_offset != 0 || buff->remaining != FT_SECTORS_PER_SEGMENT) {
  146. TRACE(ft_t_flow, "sector offset = %d, count = %d",
  147. buff->sector_offset, buff->remaining);
  148. }
  149. /*    Segments with 3 or less sectors are not written with valid
  150.  *    data because there is no space left for the ecc.  The
  151.  *    data written is whatever happens to be in the buffer.
  152.  *    Reading such a segment will return a zero byte-count.
  153.  *    To allow us to read/write segments with all bad sectors
  154.  *    we fake one readable sector in the segment. This
  155.  *    prevents having to handle these segments in a very
  156.  *    special way.  It is not important if the reading of this
  157.  *    bad sector fails or not (the data is ignored). It is
  158.  *    only read to keep the driver running.
  159.  *
  160.  *    The QIC-40/80 spec. has no information on how to handle
  161.  *    this case, so this is my interpretation.  
  162.  */
  163. if (buff->bad_sector_map == EMPTY_SEGMENT) {
  164. TRACE(ft_t_flow, "empty segment %d, fake first sector good",
  165.       buff->segment_id);
  166. if (buff->ptr != buff->address) {
  167. TRACE(ft_t_bug, "This is a bug: %p/%p",
  168.       buff->ptr, buff->address);
  169. }
  170. buff->bad_sector_map = FAKE_SEGMENT;
  171. }
  172. fdc_setup_error = 0;
  173. buff->next_segment = segment_id + 1;
  174. TRACE_EXIT 0;
  175. }
  176. /*      Calculate Floppy Disk Controller and DMA parameters for a new segment.
  177.  */
  178. int ftape_setup_new_segment(buffer_struct * buff, int segment_id, int skip)
  179. {
  180. int result = 0;
  181. static int old_segment_id = -1;
  182. static buffer_state_enum old_ft_driver_state = idle;
  183. int retry = 0;
  184. unsigned offset = 0;
  185. int count = FT_SECTORS_PER_SEGMENT;
  186. TRACE_FUN(ft_t_flow);
  187. TRACE(ft_t_flow, "%s segment %d (old = %d)",
  188.       (ft_driver_state == reading || ft_driver_state == verifying) 
  189.       ? "reading" : "writing",
  190.       segment_id, old_segment_id);
  191. if (ft_driver_state != old_ft_driver_state) { /* when verifying */
  192. old_segment_id = -1;
  193. old_ft_driver_state = ft_driver_state;
  194. }
  195. if (segment_id == old_segment_id) {
  196. ++buff->retry;
  197. ++ft_history.retries;
  198. TRACE(ft_t_flow, "setting up for retry nr %d", buff->retry);
  199. retry = 1;
  200. if (skip && buff->skip > 0) { /* allow skip on retry */
  201. offset = buff->skip;
  202. count -= offset;
  203. TRACE(ft_t_flow, "skipping %d sectors", offset);
  204. }
  205. } else {
  206. buff->retry = 0;
  207. buff->skip = 0;
  208. old_segment_id = segment_id;
  209. }
  210. result = setup_segment(buff, segment_id, offset, count, retry);
  211. TRACE_EXIT result;
  212. }
  213. /*      Determine size of next cluster of good sectors.
  214.  */
  215. int ftape_calc_next_cluster(buffer_struct * buff)
  216. {
  217. /* Skip bad sectors.
  218.  */
  219. while (buff->remaining > 0 && (buff->bad_sector_map & 1) != 0) {
  220. buff->bad_sector_map >>= 1;
  221. ++buff->sector_offset;
  222. --buff->remaining;
  223. }
  224. /* Find next cluster of good sectors
  225.  */
  226. if (buff->bad_sector_map == 0) { /* speed up */
  227. buff->sector_count = buff->remaining;
  228. } else {
  229. SectorMap map = buff->bad_sector_map;
  230. buff->sector_count = 0;
  231. while (buff->sector_count < buff->remaining && (map & 1) == 0) {
  232. ++buff->sector_count;
  233. map >>= 1;
  234. }
  235. }
  236. return buff->sector_count;
  237. }
  238. /*  if just passed the last segment on a track, wait for BOT
  239.  *  or EOT mark.
  240.  */
  241. int ftape_handle_logical_eot(void)
  242. {
  243. TRACE_FUN(ft_t_flow);
  244. if (ft_runner_status == logical_eot) {
  245. int status;
  246. TRACE(ft_t_noise, "tape at logical EOT");
  247. TRACE_CATCH(ftape_ready_wait(ftape_timeout.seek, &status),);
  248. if ((status & (QIC_STATUS_AT_BOT | QIC_STATUS_AT_EOT)) == 0) {
  249. TRACE_ABORT(-EIO, ft_t_err, "eot/bot not reached");
  250. }
  251. ft_runner_status = end_of_tape;
  252. }
  253. if (ft_runner_status == end_of_tape) {
  254. TRACE(ft_t_noise, "runner stopped because of logical EOT");
  255. ft_runner_status = idle;
  256. }
  257. TRACE_EXIT 0;
  258. }
  259. static int check_bot_eot(int status)
  260. {
  261. TRACE_FUN(ft_t_flow);
  262. if (status & (QIC_STATUS_AT_BOT | QIC_STATUS_AT_EOT)) {
  263. ft_location.bot = ((ft_location.track & 1) == 0 ?
  264. (status & QIC_STATUS_AT_BOT) != 0:
  265. (status & QIC_STATUS_AT_EOT) != 0);
  266. ft_location.eot = !ft_location.bot;
  267. ft_location.segment = (ft_location.track +
  268. (ft_location.bot ? 0 : 1)) * ft_segments_per_track - 1;
  269. ft_location.sector = -1;
  270. ft_location.known  = 1;
  271. TRACE(ft_t_flow, "tape at logical %s",
  272.       ft_location.bot ? "bot" : "eot");
  273. TRACE(ft_t_flow, "segment = %d", ft_location.segment);
  274. } else {
  275. ft_location.known = 0;
  276. }
  277. TRACE_EXIT ft_location.known;
  278. }
  279. /*      Read Id of first sector passing tape head.
  280.  */
  281. int ftape_read_id(void)
  282. {
  283. int status;
  284. __u8 out[2];
  285. TRACE_FUN(ft_t_any);
  286. /* Assume tape is running on entry, be able to handle
  287.  * situation where it stopped or is stopping.
  288.  */
  289. ft_location.known = 0; /* default is location not known */
  290. out[0] = FDC_READID;
  291. out[1] = ft_drive_sel;
  292. TRACE_CATCH(fdc_command(out, 2),);
  293. switch (fdc_interrupt_wait(20 * FT_SECOND)) {
  294. case 0:
  295. if (fdc_sect == 0) {
  296. if (ftape_report_drive_status(&status) >= 0 &&
  297.     (status & QIC_STATUS_READY)) {
  298. ftape_tape_running = 0;
  299. TRACE(ft_t_flow, "tape has stopped");
  300. check_bot_eot(status);
  301. }
  302. } else {
  303. ft_location.known = 1;
  304. ft_location.segment = (ftape_segments_per_head
  305.        * fdc_head
  306.        + ftape_segments_per_cylinder
  307.        * fdc_cyl
  308.        + (fdc_sect - 1)
  309.        / FT_SECTORS_PER_SEGMENT);
  310. ft_location.sector = ((fdc_sect - 1)
  311.       % FT_SECTORS_PER_SEGMENT);
  312. ft_location.eot = ft_location.bot = 0;
  313. }
  314. break;
  315. case -ETIME:
  316. /*  Didn't find id on tape, must be near end: Wait
  317.  *  until stopped.
  318.  */
  319. if (ftape_ready_wait(FT_FOREVER, &status) >= 0) {
  320. ftape_tape_running = 0;
  321. TRACE(ft_t_flow, "tape has stopped");
  322. check_bot_eot(status);
  323. }
  324. break;
  325. default:
  326. /*  Interrupted or otherwise failing
  327.  *  fdc_interrupt_wait() 
  328.  */
  329. TRACE(ft_t_err, "fdc_interrupt_wait failed");
  330. break;
  331. }
  332. if (!ft_location.known) {
  333. TRACE_ABORT(-EIO, ft_t_flow, "no id found");
  334. }
  335. if (ft_location.sector == 0) {
  336. TRACE(ft_t_flow, "passing segment %d/%d",
  337.       ft_location.segment, ft_location.sector);
  338. } else {
  339. TRACE(ft_t_fdc_dma, "passing segment %d/%d",
  340.       ft_location.segment, ft_location.sector);
  341. }
  342. TRACE_EXIT 0;
  343. }
  344. static int logical_forward(void)
  345. {
  346. ftape_tape_running = 1;
  347. return ftape_command(QIC_LOGICAL_FORWARD);
  348. }
  349. int ftape_stop_tape(int *pstatus)
  350. {
  351. int retry = 0;
  352. int result;
  353. TRACE_FUN(ft_t_flow);
  354. do {
  355. result = ftape_command_wait(QIC_STOP_TAPE,
  356.     ftape_timeout.stop, pstatus);
  357. if (result == 0) {
  358. if ((*pstatus & QIC_STATUS_READY) == 0) {
  359. result = -EIO;
  360. } else {
  361. ftape_tape_running = 0;
  362. }
  363. }
  364. } while (result < 0 && ++retry <= 3);
  365. if (result < 0) {
  366. TRACE(ft_t_err, "failed ! (fatal)");
  367. }
  368. TRACE_EXIT result;
  369. }
  370. int ftape_dumb_stop(void)
  371. {
  372. int result;
  373. int status;
  374. TRACE_FUN(ft_t_flow);
  375. /*  Abort current fdc operation if it's busy (probably read
  376.  *  or write operation pending) with a reset.
  377.  */
  378. if (fdc_ready_wait(100 /* usec */) < 0) {
  379. TRACE(ft_t_noise, "aborting fdc operation");
  380. fdc_reset();
  381. }
  382. /*  Reading id's after the last segment on a track may fail
  383.  *  but eventually the drive will become ready (logical eot).
  384.  */
  385. result = ftape_report_drive_status(&status);
  386. ft_location.known = 0;
  387. do {
  388. if (result == 0 && status & QIC_STATUS_READY) {
  389. /* Tape is not running any more.
  390.  */
  391. TRACE(ft_t_noise, "tape already halted");
  392. check_bot_eot(status);
  393. ftape_tape_running = 0;
  394. } else if (ftape_tape_running) {
  395. /*  Tape is (was) still moving.
  396.  */
  397. #ifdef TESTING
  398. ftape_read_id();
  399. #endif
  400. result = ftape_stop_tape(&status);
  401. } else {
  402. /*  Tape not yet ready but stopped.
  403.  */
  404. result = ftape_ready_wait(ftape_timeout.pause,&status);
  405. }
  406. } while (ftape_tape_running
  407.  && !(sigtestsetmask(&current->pending.signal, _NEVER_BLOCK)));
  408. #ifndef TESTING
  409. ft_location.known = 0;
  410. #endif
  411. if (ft_runner_status == aborting || ft_runner_status == do_abort) {
  412. ft_runner_status = idle;
  413. }
  414. TRACE_EXIT result;
  415. }
  416. /*      Wait until runner has finished tail buffer.
  417.  *
  418.  */
  419. int ftape_wait_segment(buffer_state_enum state)
  420. {
  421. int status;
  422. int result = 0;
  423. TRACE_FUN(ft_t_flow);
  424. while (ft_buffer[ft_tail]->status == state) {
  425. TRACE(ft_t_flow, "state: %d", ft_buffer[ft_tail]->status);
  426. /*  First buffer still being worked on, wait up to timeout.
  427.  *
  428.  *  Note: we check two times for being killed. 50
  429.  *  seconds are quite long. Note that
  430.  *  fdc_interrupt_wait() is not killable by any
  431.  *  means. ftape_read_segment() wants us to return
  432.  *  -EINTR in case of a signal.  
  433.  */
  434. FT_SIGNAL_EXIT(_DONT_BLOCK);
  435. result = fdc_interrupt_wait(50 * FT_SECOND);
  436. FT_SIGNAL_EXIT(_DONT_BLOCK);
  437. if (result < 0) {
  438. TRACE_ABORT(result,
  439.     ft_t_err, "fdc_interrupt_wait failed");
  440. }
  441. if (fdc_setup_error) {
  442. /* recover... FIXME */
  443. TRACE_ABORT(-EIO, ft_t_err, "setup error");
  444. }
  445. }
  446. if (ft_buffer[ft_tail]->status != error) {
  447. TRACE_EXIT 0;
  448. }
  449. TRACE_CATCH(ftape_report_drive_status(&status),);
  450. TRACE(ft_t_noise, "ftape_report_drive_status: 0x%02x", status);
  451. if ((status & QIC_STATUS_READY) && 
  452.     (status & QIC_STATUS_ERROR)) {
  453. unsigned int error;
  454. qic117_cmd_t command;
  455. /*  Report and clear error state.
  456.  *  In case the drive can't operate at the selected
  457.  *  rate, select the next lower data rate.
  458.  */
  459. ftape_report_error(&error, &command, 1);
  460. if (error == 31 && command == QIC_LOGICAL_FORWARD) {
  461. /* drive does not accept this data rate */
  462. if (ft_data_rate > 250) {
  463. TRACE(ft_t_info,
  464.       "Probable data rate conflict");
  465. TRACE(ft_t_info,
  466.       "Lowering data rate to %d Kbps",
  467.       ft_data_rate / 2);
  468. ftape_half_data_rate();
  469. if (ft_buffer[ft_tail]->retry > 0) {
  470. /* give it a chance */
  471. --ft_buffer[ft_tail]->retry;
  472. }
  473. } else {
  474. /* no rate is accepted... */
  475. TRACE(ft_t_err, "We're dead :(");
  476. }
  477. } else {
  478. TRACE(ft_t_err, "Unknown error");
  479. }
  480. TRACE_EXIT -EIO;   /* g.p. error */
  481. }
  482. TRACE_EXIT 0;
  483. }
  484. /* forward */ static int seek_forward(int segment_id, int fast);
  485. static int fast_seek(int count, int reverse)
  486. {
  487. int result = 0;
  488. int status;
  489. TRACE_FUN(ft_t_flow);
  490. if (count > 0) {
  491. /*  If positioned at begin or end of tape, fast seeking needs
  492.  *  special treatment.
  493.  *  Starting from logical bot needs a (slow) seek to the first
  494.  *  segment before the high speed seek. Most drives do this
  495.  *  automatically but some older don't, so we treat them
  496.  *  all the same.
  497.  *  Starting from logical eot is even more difficult because
  498.  *  we cannot (slow) reverse seek to the last segment.
  499.  *  TO BE IMPLEMENTED.
  500.  */
  501. inhibit_correction = 0;
  502. if (ft_location.known &&
  503.     ((ft_location.bot && !reverse) ||
  504.      (ft_location.eot && reverse))) {
  505. if (!reverse) {
  506. /*  (slow) skip to first segment on a track
  507.  */
  508. seek_forward(ft_location.track * ft_segments_per_track, 0);
  509. --count;
  510. } else {
  511. /*  When seeking backwards from
  512.  *  end-of-tape the number of erased
  513.  *  gaps found seems to be higher than
  514.  *  expected.  Therefor the drive must
  515.  *  skip some more segments than
  516.  *  calculated, but we don't know how
  517.  *  many.  Thus we will prevent the
  518.  *  re-calculation of offset and
  519.  *  overshoot when seeking backwards.
  520.  */
  521. inhibit_correction = 1;
  522. count += 3; /* best guess */
  523. }
  524. }
  525. } else {
  526. TRACE(ft_t_flow, "warning: zero or negative count: %d", count);
  527. }
  528. if (count > 0) {
  529. int i;
  530. int nibbles = count > 255 ? 3 : 2;
  531. if (count > 4095) {
  532. TRACE(ft_t_noise, "skipping clipped at 4095 segment");
  533. count = 4095;
  534. }
  535. /* Issue this tape command first. */
  536. if (!reverse) {
  537. TRACE(ft_t_noise, "skipping %d segment(s)", count);
  538. result = ftape_command(nibbles == 3 ?
  539.    QIC_SKIP_EXTENDED_FORWARD : QIC_SKIP_FORWARD);
  540. } else {
  541. TRACE(ft_t_noise, "backing up %d segment(s)", count);
  542. result = ftape_command(nibbles == 3 ?
  543.    QIC_SKIP_EXTENDED_REVERSE : QIC_SKIP_REVERSE);
  544. }
  545. if (result < 0) {
  546. TRACE(ft_t_noise, "Skip command failed");
  547. } else {
  548. --count; /* 0 means one gap etc. */
  549. for (i = 0; i < nibbles; ++i) {
  550. if (result >= 0) {
  551. result = ftape_parameter(count & 15);
  552. count /= 16;
  553. }
  554. }
  555. result = ftape_ready_wait(ftape_timeout.rewind, &status);
  556. if (result >= 0) {
  557. ftape_tape_running = 0;
  558. }
  559. }
  560. }
  561. TRACE_EXIT result;
  562. }
  563. static int validate(int id)
  564. {
  565. /* Check to see if position found is off-track as reported
  566.  *  once.  Because all tracks in one direction lie next to
  567.  *  each other, if off-track the error will be approximately
  568.  *  2 * ft_segments_per_track.
  569.  */
  570. if (ft_location.track == -1) {
  571. return 1; /* unforseen situation, don't generate error */
  572. } else {
  573. /* Use margin of ft_segments_per_track on both sides
  574.  * because ftape needs some margin and the error we're
  575.  * looking for is much larger !
  576.  */
  577. int lo = (ft_location.track - 1) * ft_segments_per_track;
  578. int hi = (ft_location.track + 2) * ft_segments_per_track;
  579. return (id >= lo && id < hi);
  580. }
  581. }
  582. static int seek_forward(int segment_id, int fast)
  583. {
  584. int failures = 0;
  585. int count;
  586. static int margin = 1; /* fixed: stop this before target */
  587. static int overshoot = 1;
  588. static int min_count = 8;
  589. int expected = -1;
  590. int target = segment_id - margin;
  591. int fast_seeking;
  592. int prev_segment = ft_location.segment;
  593. TRACE_FUN(ft_t_flow);
  594. if (!ft_location.known) {
  595. TRACE_ABORT(-EIO, ft_t_err,
  596.     "fatal: cannot seek from unknown location");
  597. }
  598. if (!validate(segment_id)) {
  599. ftape_sleep(1 * FT_SECOND);
  600. ft_failure = 1;
  601. TRACE_ABORT(-EIO, ft_t_err,
  602.     "fatal: head off track (bad hardware?)");
  603. }
  604. TRACE(ft_t_noise, "from %d/%d to %d/0 - %d",
  605.       ft_location.segment, ft_location.sector,segment_id,margin);
  606. count = target - ft_location.segment - overshoot;
  607. fast_seeking = (fast &&
  608. count > (min_count + (ft_location.bot ? 1 : 0)));
  609. if (fast_seeking) {
  610. TRACE(ft_t_noise, "fast skipping %d segments", count);
  611. expected = segment_id - margin;
  612. fast_seek(count, 0);
  613. }
  614. if (!ftape_tape_running) {
  615. logical_forward();
  616. }
  617. while (ft_location.segment < segment_id) {
  618. /*  This requires at least one sector in a (bad) segment to
  619.  *  have a valid and readable sector id !
  620.  *  It looks like this is not guaranteed, so we must try
  621.  *  to find a way to skip an EMPTY_SEGMENT. !!! FIXME !!!
  622.  */
  623. if (ftape_read_id() < 0 || !ft_location.known ||
  624.     sigtestsetmask(&current->pending.signal, _DONT_BLOCK)) {
  625. ft_location.known = 0;
  626. if (!ftape_tape_running ||
  627.     ++failures > FT_SECTORS_PER_SEGMENT) {
  628. TRACE_ABORT(-EIO, ft_t_err,
  629.     "read_id failed completely");
  630. }
  631. FT_SIGNAL_EXIT(_DONT_BLOCK);
  632. TRACE(ft_t_flow, "read_id failed, retry (%d)",
  633.       failures);
  634. continue;
  635. }
  636. if (fast_seeking) {
  637. TRACE(ft_t_noise, "ended at %d/%d (%d,%d)",
  638.       ft_location.segment, ft_location.sector,
  639.       overshoot, inhibit_correction);
  640. if (!inhibit_correction &&
  641.     (ft_location.segment < expected ||
  642.      ft_location.segment > expected + margin)) {
  643. int error = ft_location.segment - expected;
  644. TRACE(ft_t_noise,
  645.       "adjusting overshoot from %d to %d",
  646.       overshoot, overshoot + error);
  647. overshoot += error;
  648. /*  All overshoots have the same
  649.  *  direction, so it should never
  650.  *  become negative, but who knows.
  651.  */
  652. if (overshoot < -5 ||
  653.     overshoot > OVERSHOOT_LIMIT) {
  654. if (overshoot < 0) {
  655. /* keep sane value */
  656. overshoot = -5;
  657. } else {
  658. /* keep sane value */
  659. overshoot = OVERSHOOT_LIMIT;
  660. }
  661. TRACE(ft_t_noise,
  662.       "clipped overshoot to %d",
  663.       overshoot);
  664. }
  665. }
  666. fast_seeking = 0;
  667. }
  668. if (ft_location.known) {
  669. if (ft_location.segment > prev_segment + 1) {
  670. TRACE(ft_t_noise,
  671.       "missed segment %d while skipping",
  672.       prev_segment + 1);
  673. }
  674. prev_segment = ft_location.segment;
  675. }
  676. }
  677. if (ft_location.segment > segment_id) {
  678. TRACE_ABORT(-EIO,
  679.     ft_t_noise, "failed: skip ended at segment %d/%d",
  680.     ft_location.segment, ft_location.sector);
  681. }
  682. TRACE_EXIT 0;
  683. }
  684. static int skip_reverse(int segment_id, int *pstatus)
  685. {
  686. int failures = 0;
  687. static int overshoot = 1;
  688. static int min_rewind = 2; /* 1 + overshoot */
  689. static const int margin = 1; /* stop this before target */
  690. int expected = 0;
  691. int count = 1;
  692. int short_seek;
  693. int target = segment_id - margin;
  694. TRACE_FUN(ft_t_flow);
  695. if (ft_location.known && !validate(segment_id)) {
  696. ftape_sleep(1 * FT_SECOND);
  697. ft_failure = 1;
  698. TRACE_ABORT(-EIO, ft_t_err,
  699.     "fatal: head off track (bad hardware?)");
  700. }
  701. do {
  702. if (!ft_location.known) {
  703. TRACE(ft_t_warn, "warning: location not known");
  704. }
  705. TRACE(ft_t_noise, "from %d/%d to %d/0 - %d",
  706.       ft_location.segment, ft_location.sector,
  707.       segment_id, margin);
  708. /*  min_rewind == 1 + overshoot_when_doing_minimum_rewind
  709.  *  overshoot  == overshoot_when_doing_larger_rewind
  710.  *  Initially min_rewind == 1 + overshoot, optimization
  711.  *  of both values will be done separately.
  712.  *  overshoot and min_rewind can be negative as both are
  713.  *  sums of three components:
  714.  *  any_overshoot == rewind_overshoot - 
  715.  *                   stop_overshoot   -
  716.  *                   start_overshoot
  717.  */
  718. if (ft_location.segment - target - (min_rewind - 1) < 1) {
  719. short_seek = 1;
  720. } else {
  721. count = ft_location.segment - target - overshoot;
  722. short_seek = (count < 1);
  723. }
  724. if (short_seek) {
  725. count = 1; /* do shortest rewind */
  726. expected = ft_location.segment - min_rewind;
  727. if (expected/ft_segments_per_track != ft_location.track) {
  728. expected = (ft_location.track * 
  729.     ft_segments_per_track);
  730. }
  731. } else {
  732. expected = target;
  733. }
  734. fast_seek(count, 1);
  735. logical_forward();
  736. if (ftape_read_id() < 0 || !ft_location.known ||
  737.     (sigtestsetmask(&current->pending.signal, _DONT_BLOCK))) {
  738. if ((!ftape_tape_running && !ft_location.known) ||
  739.     ++failures > FT_SECTORS_PER_SEGMENT) {
  740. TRACE_ABORT(-EIO, ft_t_err,
  741.     "read_id failed completely");
  742. }
  743. FT_SIGNAL_EXIT(_DONT_BLOCK);
  744. TRACE_CATCH(ftape_report_drive_status(pstatus),);
  745. TRACE(ft_t_noise, "ftape_read_id failed, retry (%d)",
  746.       failures);
  747. continue;
  748. }
  749. TRACE(ft_t_noise, "ended at %d/%d (%d,%d,%d)", 
  750.       ft_location.segment, ft_location.sector,
  751.       min_rewind, overshoot, inhibit_correction);
  752. if (!inhibit_correction &&
  753.     (ft_location.segment < expected ||
  754.      ft_location.segment > expected + margin)) {
  755. int error = expected - ft_location.segment;
  756. if (short_seek) {
  757. TRACE(ft_t_noise,
  758.       "adjusting min_rewind from %d to %d",
  759.       min_rewind, min_rewind + error);
  760. min_rewind += error;
  761. if (min_rewind < -5) {
  762. /* is this right ? FIXME ! */
  763. /* keep sane value */
  764. min_rewind = -5;
  765. TRACE(ft_t_noise, 
  766.       "clipped min_rewind to %d",
  767.       min_rewind);
  768. }
  769. } else {
  770. TRACE(ft_t_noise,
  771.       "adjusting overshoot from %d to %d",
  772.       overshoot, overshoot + error);
  773. overshoot += error;
  774. if (overshoot < -5 ||
  775.     overshoot > OVERSHOOT_LIMIT) {
  776. if (overshoot < 0) {
  777. /* keep sane value */
  778. overshoot = -5;
  779. } else {
  780. /* keep sane value */
  781. overshoot = OVERSHOOT_LIMIT;
  782. }
  783. TRACE(ft_t_noise,
  784.       "clipped overshoot to %d",
  785.       overshoot);
  786. }
  787. }
  788. }
  789. } while (ft_location.segment > segment_id);
  790. if (ft_location.known) {
  791. TRACE(ft_t_noise, "current location: %d/%d",
  792.       ft_location.segment, ft_location.sector);
  793. }
  794. TRACE_EXIT 0;
  795. }
  796. static int determine_position(void)
  797. {
  798. int retry = 0;
  799. int status;
  800. int result;
  801. TRACE_FUN(ft_t_flow);
  802. if (!ftape_tape_running) {
  803. /*  This should only happen if tape is stopped by isr.
  804.  */
  805. TRACE(ft_t_flow, "waiting for tape stop");
  806. if (ftape_ready_wait(ftape_timeout.pause, &status) < 0) {
  807. TRACE(ft_t_flow, "drive still running (fatal)");
  808. ftape_tape_running = 1; /* ? */
  809. }
  810. } else {
  811. ftape_report_drive_status(&status);
  812. }
  813. if (status & QIC_STATUS_READY) {
  814. /*  Drive must be ready to check error state !
  815.  */
  816. TRACE(ft_t_flow, "drive is ready");
  817. if (status & QIC_STATUS_ERROR) {
  818. unsigned int error;
  819. qic117_cmd_t command;
  820. /*  Report and clear error state, try to continue.
  821.  */
  822. TRACE(ft_t_flow, "error status set");
  823. ftape_report_error(&error, &command, 1);
  824. ftape_ready_wait(ftape_timeout.reset, &status);
  825. ftape_tape_running = 0; /* ? */
  826. }
  827. if (check_bot_eot(status)) {
  828. if (ft_location.bot) {
  829. if ((status & QIC_STATUS_READY) == 0) {
  830. /* tape moving away from
  831.  * bot/eot, let's see if we
  832.  * can catch up with the first
  833.  * segment on this track.
  834.  */
  835. } else {
  836. TRACE(ft_t_flow,
  837.       "start tape from logical bot");
  838. logical_forward(); /* start moving */
  839. }
  840. } else {
  841. if ((status & QIC_STATUS_READY) == 0) {
  842. TRACE(ft_t_noise, "waiting for logical end of track");
  843. result = ftape_ready_wait(ftape_timeout.reset, &status);
  844. /* error handling needed ? */
  845. } else {
  846. TRACE(ft_t_noise,
  847.       "tape at logical end of track");
  848. }
  849. }
  850. } else {
  851. TRACE(ft_t_flow, "start tape");
  852. logical_forward(); /* start moving */
  853. ft_location.known = 0; /* not cleared by logical forward ! */
  854. }
  855. }
  856. /* tape should be moving now, start reading id's
  857.  */
  858. while (!ft_location.known &&
  859.        retry++ < FT_SECTORS_PER_SEGMENT &&
  860.        (result = ftape_read_id()) < 0) {
  861. TRACE(ft_t_flow, "location unknown");
  862. /* exit on signal
  863.  */
  864. FT_SIGNAL_EXIT(_DONT_BLOCK);
  865. /*  read-id somehow failed, tape may
  866.  *  have reached end or some other
  867.  *  error happened.
  868.  */
  869. TRACE(ft_t_flow, "read-id failed");
  870. TRACE_CATCH(ftape_report_drive_status(&status),);
  871. TRACE(ft_t_err, "ftape_report_drive_status: 0x%02x", status);
  872. if (status & QIC_STATUS_READY) {
  873. ftape_tape_running = 0;
  874. TRACE(ft_t_noise, "tape stopped for unknown reason! "
  875.       "status = 0x%02x", status);
  876. if (status & QIC_STATUS_ERROR ||
  877.     !check_bot_eot(status)) {
  878. /* oops, tape stopped but not at end!
  879.  */
  880. TRACE_EXIT -EIO;
  881. }
  882. }
  883. }
  884. TRACE(ft_t_flow,
  885.       "tape is positioned at segment %d", ft_location.segment);
  886. TRACE_EXIT ft_location.known ? 0 : -EIO;
  887. }
  888. /*      Get the tape running and position it just before the
  889.  *      requested segment.
  890.  *      Seek tape-track and reposition as needed.
  891.  */
  892. int ftape_start_tape(int segment_id, int sector_offset)
  893. {
  894. int track = segment_id / ft_segments_per_track;
  895. int result = -EIO;
  896. int status;
  897. static int last_segment = -1;
  898. static int bad_bus_timing = 0;
  899. /* number of segments passing the head between starting the tape
  900.  * and being able to access the first sector.
  901.  */
  902. static int start_offset = 1;
  903. int retry;
  904. TRACE_FUN(ft_t_flow);
  905. /* If sector_offset > 0, seek into wanted segment instead of
  906.  * into previous.
  907.  * This allows error recovery if a part of the segment is bad
  908.  * (erased) causing the tape drive to generate an index pulse
  909.  * thus causing a no-data error before the requested sector
  910.  * is reached.
  911.  */
  912. ftape_tape_running = 0;
  913. TRACE(ft_t_noise, "target segment: %d/%d%s", segment_id, sector_offset,
  914. ft_buffer[ft_head]->retry > 0 ? " retry" : "");
  915. if (ft_buffer[ft_head]->retry > 0) { /* this is a retry */
  916. int dist = segment_id - last_segment;
  917. if ((int)ft_history.overrun_errors < overrun_count_offset) {
  918. overrun_count_offset = ft_history.overrun_errors;
  919. } else if (dist < 0 || dist > 50) {
  920. overrun_count_offset = ft_history.overrun_errors;
  921. } else if ((ft_history.overrun_errors -
  922.     overrun_count_offset) >= 8) {
  923. if (ftape_increase_threshold() >= 0) {
  924. --ft_buffer[ft_head]->retry;
  925. overrun_count_offset =
  926. ft_history.overrun_errors;
  927. TRACE(ft_t_warn, "increased threshold because "
  928.       "of excessive overrun errors");
  929. } else if (!bad_bus_timing && ft_data_rate >= 1000) {
  930. ftape_half_data_rate();
  931. --ft_buffer[ft_head]->retry;
  932. bad_bus_timing = 1;
  933. overrun_count_offset =
  934. ft_history.overrun_errors;
  935. TRACE(ft_t_warn, "reduced datarate because "
  936.       "of excessive overrun errors");
  937. }
  938. }
  939. }
  940. last_segment = segment_id;
  941. if (ft_location.track != track ||
  942.     (ftape_might_be_off_track && ft_buffer[ft_head]->retry== 0)) {
  943. /* current track unknown or not equal to destination
  944.  */
  945. ftape_ready_wait(ftape_timeout.seek, &status);
  946. ftape_seek_head_to_track(track);
  947. /* overrun_count_offset = ft_history.overrun_errors; */
  948. }
  949. result = -EIO;
  950. retry = 0;
  951. while (result < 0     &&
  952.        retry++ <= 5   &&
  953.        !ft_failure &&
  954.        !(sigtestsetmask(&current->pending.signal, _DONT_BLOCK))) {
  955. if (retry && start_offset < 5) {
  956. start_offset ++;
  957. }
  958. /*  Check if we are able to catch the requested
  959.  *  segment in time.
  960.  */
  961. if ((ft_location.known || (determine_position() == 0)) &&
  962.     ft_location.segment >=
  963.     (segment_id -
  964.      ((ftape_tape_running || ft_location.bot)
  965.       ? 0 : start_offset))) {
  966. /*  Too far ahead (in or past target segment).
  967.  */
  968. if (ftape_tape_running) {
  969. if ((result = ftape_stop_tape(&status)) < 0) {
  970. TRACE(ft_t_err,
  971.       "stop tape failed with code %d",
  972.       result);
  973. break;
  974. }
  975. TRACE(ft_t_noise, "tape stopped");
  976. ftape_tape_running = 0;
  977. }
  978. TRACE(ft_t_noise, "repositioning");
  979. ++ft_history.rewinds;
  980. if (segment_id % ft_segments_per_track < start_offset){
  981. TRACE(ft_t_noise, "end of track conditionn"
  982.       KERN_INFO "segment_id        : %dn"
  983.       KERN_INFO "ft_segments_per_track: %dn"
  984.       KERN_INFO "start_offset      : %d",
  985.       segment_id, ft_segments_per_track, 
  986.       start_offset);
  987.       
  988. /*  If seeking to first segments on
  989.  *  track better do a complete rewind
  990.  *  to logical begin of track to get a
  991.  *  more steady tape motion.  
  992.  */
  993. result = ftape_command_wait(
  994. (ft_location.track & 1)
  995. ? QIC_PHYSICAL_FORWARD
  996. : QIC_PHYSICAL_REVERSE,
  997. ftape_timeout.rewind, &status);
  998. check_bot_eot(status); /* update location */
  999. } else {
  1000. result= skip_reverse(segment_id - start_offset,
  1001.      &status);
  1002. }
  1003. }
  1004. if (!ft_location.known) {
  1005. TRACE(ft_t_bug, "panic: location not known");
  1006. result = -EIO;
  1007. continue; /* while() will check for failure */
  1008. }
  1009. TRACE(ft_t_noise, "current segment: %d/%d",
  1010.       ft_location.segment, ft_location.sector);
  1011. /*  We're on the right track somewhere before the
  1012.  *  wanted segment.  Start tape movement if needed and
  1013.  *  skip to just before or inside the requested
  1014.  *  segment. Keep tape running.  
  1015.  */
  1016. result = 0;
  1017. if (ft_location.segment < 
  1018.     (segment_id - ((ftape_tape_running || ft_location.bot)
  1019.    ? 0 : start_offset))) {
  1020. if (sector_offset > 0) {
  1021. result = seek_forward(segment_id,
  1022.       retry <= 3);
  1023. } else {
  1024. result = seek_forward(segment_id - 1,
  1025.       retry <= 3);
  1026. }
  1027. }
  1028. if (result == 0 &&
  1029.     ft_location.segment !=
  1030.     (segment_id - (sector_offset > 0 ? 0 : 1))) {
  1031. result = -EIO;
  1032. }
  1033. }
  1034. if (result < 0) {
  1035. TRACE(ft_t_err, "failed to reposition");
  1036. } else {
  1037. ft_runner_status = running;
  1038. }
  1039. TRACE_EXIT result;
  1040. }