⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftape-rw.c

📁 arm平台上的uclinux系统全部源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* *      Copyright (C) 1993-1995 Bas Laarhoven. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING.  If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. $Source: /usr/local/cvsroot/AplioTRIO/linux/drivers/char/ftape/ftape-rw.c,v $ $Author: vadim $ * $Revision: 1.1.1.1 $ $Date: 1999/11/15 13:41:58 $ $State: Exp $ * *      This file contains some common code for the segment read and segment *      write routines for the QIC-117 floppy-tape driver for Linux. */#include <linux/string.h>#include <linux/errno.h>#include <linux/ftape.h>#include "tracing.h"#include "ftape-rw.h"#include "fdc-io.h"#include "kernel-interface.h"#include "qic117.h"#include "ftape-io.h"#include "ftape-ctl.h"#include "ftape-read.h"#include "ftape-eof.h"#include "ecc.h"#include "ftape-bsm.h"/*      Global vars. */volatile enum runner_status_enum runner_status = idle;byte deblock_buffer[(SECTORS_PER_SEGMENT - 3) * SECTOR_SIZE];byte scratch_buffer[(SECTORS_PER_SEGMENT - 3) * SECTOR_SIZE];buffer_struct buffer[NR_BUFFERS];struct wait_queue *wait_intr = NULL;volatile int head;volatile int tail;		/* not volatile but need same type as head */int fdc_setup_error;ftape_last_segment_struct ftape_last_segment;int header_segment_1 = -1;int header_segment_2 = -1;int used_header_segment = -1;location_record location ={-1, 0};volatile int tape_running = 0;format_type format_code;/*      Local vars. */static int overrun_count_offset = 0;static int inhibit_correction = 0;/*      Increment cyclic buffer nr. */buffer_struct * next_buffer(volatile int *x){	if (++*x >= NR_BUFFERS) {		*x = 0;	}	return &buffer[*x];}int valid_segment_no(unsigned segment){	return (segment >= first_data_segment && segment <= ftape_last_segment.id);}/*      Count nr of 1's in pattern. */int count_ones(unsigned long mask){	int bits;	for (bits = 0; mask != 0; mask >>= 1) {		if (mask & 1) {			++bits;		}	}	return bits;}/*      Calculate Floppy Disk Controller and DMA parameters for a segment. *      head:   selects buffer struct in array. *      offset: number of physical sectors to skip (including bad ones). *      count:  number of physical sectors to handle (including bad ones). */static int setup_segment(buffer_struct * buff, unsigned int segment_id,	unsigned int sector_offset, unsigned int sector_count, int retry){	TRACE_FUN(8, "setup_segment");	unsigned long offset_mask;	unsigned long mask;	buff->segment_id = segment_id;	buff->sector_offset = sector_offset;	buff->remaining = sector_count;	buff->head = segment_id / segments_per_head;	buff->cyl = (segment_id % segments_per_head) / segments_per_cylinder;	buff->sect = (segment_id % segments_per_cylinder) * SECTORS_PER_SEGMENT + 1;	buff->deleted = 0;	offset_mask = (1 << buff->sector_offset) - 1;	mask = get_bad_sector_entry(segment_id) & offset_mask;	while (mask) {		if (mask & 1) {			offset_mask >>= 1;	/* don't count bad sector */		}		mask >>= 1;	}	buff->data_offset = count_ones(offset_mask);	/* good sectors to skip */	buff->ptr = buff->address + buff->data_offset * SECTOR_SIZE;	TRACEx1(5, "data offset = %d sectors", buff->data_offset);	if (retry) {		buff->soft_error_map &= offset_mask;	/* keep skipped part */	} else {		buff->hard_error_map = buff->soft_error_map = 0;	}	buff->bad_sector_map = get_bad_sector_entry(buff->segment_id);	if (buff->bad_sector_map != 0) {		TRACEx2(4, "segment: %d, bad sector map: %08lx",			buff->segment_id, buff->bad_sector_map);	} else {		TRACEx1(5, "segment: %d", buff->segment_id);	}	if (buff->sector_offset > 0) {		buff->bad_sector_map >>= buff->sector_offset;	}	if (buff->sector_offset != 0 || buff->remaining != SECTORS_PER_SEGMENT) {		TRACEx2(5, "sector offset = %d, count = %d",			buff->sector_offset, buff->remaining);	}	/*	 *    Segments with 3 or less sectors are not written with	 *    valid data because there is no space left for the ecc.	 *    The data written is whatever happens to be in the buffer.	 *    Reading such a segment will return a zero byte-count.	 *    To allow us to read/write segments with all bad sectors	 *    we fake one readable sector in the segment. This prevents	 *    having to handle these segments in a very special way.	 *    It is not important if the reading of this bad sector	 *    fails or not (the data is ignored). It is only read to	 *    keep the driver running.	 *    The QIC-40/80 spec. has no information on how to handle	 *    this case, so this is my interpretation.	 */	if (buff->bad_sector_map == EMPTY_SEGMENT) {		TRACE(5, "empty segment, fake first sector good");		buff->bad_sector_map = FAKE_SEGMENT;	}	fdc_setup_error = 0;	buff->next_segment = segment_id + 1;	TRACE_EXIT;	return 0;}/*      Calculate Floppy Disk Controller and DMA parameters for a new segment. */int setup_new_segment(buffer_struct * buff, unsigned int segment_id, int skip){	TRACE_FUN(5, "setup_new_segment");	int result = 0;	static int old_segment_id = -1;	static int old_ftape_state = idle;	int retry = 0;	unsigned offset = 0;	int count = SECTORS_PER_SEGMENT;	TRACEx3(5, "%s segment %d (old = %d)",		(ftape_state == reading) ? "reading" : "writing",		segment_id, old_segment_id);	if (ftape_state != old_ftape_state) {	/* when verifying */		old_segment_id = -1;		old_ftape_state = ftape_state;	}	if (segment_id == old_segment_id) {		++buff->retry;		++history.retries;		TRACEx1(5, "setting up for retry nr %d", buff->retry);		retry = 1;		if (skip && buff->skip > 0) {	/* allow skip on retry */			offset = buff->skip;			count -= offset;			TRACEx1(5, "skipping %d sectors", offset);		}	} else {		buff->retry = 0;		buff->skip = 0;		old_segment_id = segment_id;	}	result = setup_segment(buff, segment_id, offset, count, retry);	TRACE_EXIT;	return result;}/*      Determine size of next cluster of good sectors. */int calc_next_cluster(buffer_struct * buff){	/* Skip bad sectors.	 */	while (buff->remaining > 0 && (buff->bad_sector_map & 1) != 0) {		buff->bad_sector_map >>= 1;		++buff->sector_offset;		--buff->remaining;	}	/* Find next cluster of good sectors	 */	if (buff->bad_sector_map == 0) {	/* speed up */		buff->sector_count = buff->remaining;	} else {		unsigned long map = buff->bad_sector_map;		buff->sector_count = 0;		while (buff->sector_count < buff->remaining && (map & 1) == 0) {			++buff->sector_count;			map >>= 1;		}	}	return buff->sector_count;}int check_bot_eot(int status){	TRACE_FUN(5, "check_bot_eot");	if (status & (QIC_STATUS_AT_BOT | QIC_STATUS_AT_EOT)) {		location.bot = ((location.track & 1) == 0 ?				(status & QIC_STATUS_AT_BOT) :				(status & QIC_STATUS_AT_EOT));		location.eot = !location.bot;		location.segment = (location.track +			(location.bot ? 0 : 1)) * segments_per_track - 1;		location.sector = -1;		location.known = 1;		TRACEx1(5, "tape at logical %s", location.bot ? "bot" : "eot");		TRACEx1(5, "segment = %d", location.segment);	} else {		location.known = 0;	}	TRACE_EXIT;	return location.known;}/*      Read Id of first sector passing tape head. */int ftape_read_id(void){	TRACE_FUN(8, "ftape_read_id");	int result;	int status;	byte out[2];	/* Assume tape is running on entry, be able to handle	 * situation where it stopped or is stopping.	 */	location.known = 0;	/* default is location not known */	out[0] = FDC_READID;	out[1] = FTAPE_UNIT;	result = fdc_command(out, 2);	if (result < 0) {		TRACE(1, "fdc_command failed");	} else {		result = fdc_interrupt_wait(20 * SECOND);		if (result == 0) {			if (fdc_sect == 0) {				result = ftape_report_drive_status(&status);				if (result == 0) {					if (status & QIC_STATUS_READY) {						tape_running = 0;						TRACE(5, "tape has stopped");						check_bot_eot(status);						if (!location.known) {							result = -EIO;						}					} else {						/*  If read-id failed because of a hard or soft						 *  error, return an error. Higher level must retry!						 */						result = -EIO;					}				}			} else {				location.known = 1;				location.segment = (segments_per_head * fdc_head					+ segments_per_cylinder * fdc_cyl				 + (fdc_sect - 1) / SECTORS_PER_SEGMENT);				location.sector = (fdc_sect - 1) % SECTORS_PER_SEGMENT;				location.eot =				    location.bot = 0;			}		} else if (result == -ETIME) {			/*  Didn't find id on tape, must be near end: Wait until stopped.			 */			result = ftape_ready_wait(FOREVER, &status);			if (result >= 0) {				tape_running = 0;				TRACE(5, "tape has stopped");				check_bot_eot(status);				if (!location.known) {					result = -EIO;				}			}		} else {			/* Interrupted or otherwise failing fdc_interrupt_wait()			 */			TRACE(1, "fdc_interrupt_wait failed :(");			result = -EIO;		}	}	if (!location.known) {		TRACE(5, "no id found");	} else {		if (location.sector == 0) {			TRACEx2(5, "passing segment %d/%d", location.segment, location.sector);		} else {			TRACEx2(6, "passing segment %d/%d", location.segment, location.sector);		}	}	TRACE_EXIT;	return result;}static int logical_forward(void){	tape_running = 1;	return ftape_command(QIC_LOGICAL_FORWARD);}static int stop_tape(int *pstatus){	TRACE_FUN(5, "stop_tape");	int retry = 0;	int result;	do {		result = ftape_command_wait(QIC_STOP_TAPE, timeout.stop, pstatus);		if (result == 0) {			if ((*pstatus & QIC_STATUS_READY) == 0) {				result = -EIO;			} else {				tape_running = 0;			}		}	} while (result < 0 && ++retry <= 3);	if (result < 0) {		TRACE(1, "failed ! (fatal)");	}	TRACE_EXIT;	return result;}int ftape_dumb_stop(void){	TRACE_FUN(5, "ftape_dumb_stop");	int result;	int status;	/* Abort current fdc operation if it's busy (probably read	 * or write operation pending) with a reset.	 */	result = fdc_ready_wait(100 /* usec */ );	if (result < 0) {		TRACE(1, "aborting fdc operation");		fdc_reset();	}	/*  Reading id's after the last segment on a track may fail	 *  but eventually the drive will become ready (logical eot).	 */	result = ftape_report_drive_status(&status);	location.known = 0;	do {		if (result == 0 && status & QIC_STATUS_READY) {			/* Tape is not running any more.			 */			TRACE(5, "tape already halted");			check_bot_eot(status);			tape_running = 0;		} else if (tape_running) {			/* Tape is (was) still moving.			 */#ifdef TESTING			ftape_read_id();#endif			result = stop_tape(&status);		} else {			/* Tape not yet ready but stopped.			 */			result = ftape_ready_wait(timeout.pause, &status);		}	} while (tape_running);#ifndef TESTING	location.known = 0;#endif	TRACE_EXIT;	return result;}/*      Wait until runner has finished tail buffer. */int wait_segment(buffer_state_enum state){	TRACE_FUN(5, "wait_segment");	int result = 0;	while (buffer[tail].status == state) {		/*  First buffer still being worked on, wait up to timeout.		 */		result = fdc_interrupt_wait(50 * SECOND);		if (result < 0) {			if (result != -EINTR) {				TRACE(1, "fdc_interrupt_wait failed");				result = -ETIME;			}			break;		}		if (fdc_setup_error) {			TRACE(1, "setup error");			/* recover... */			result = -EIO;			break;		}	}	TRACE_EXIT;	return result;}/* forward */ static int seek_forward(int segment_id);int fast_seek(int count, int reverse){	TRACE_FUN(5, "fast_seek");	int result = 0;	int status;	if (count > 0) {		/*  If positioned at begin or end of tape, fast seeking needs		 *  special treatment.		 *  Starting from logical bot needs a (slow) seek to the first		 *  segment before the high speed seek. Most drives do this		 *  automatically but some older don't, so we treat them		 *  all the same.		 *  Starting from logical eot is even more difficult because		 *  we cannot (slow) reverse seek to the last segment.		 *  TO BE IMPLEMENTED.		 */		inhibit_correction = 0;		if (location.known &&		    ((location.bot && !reverse) ||		     (location.eot && reverse))) {			if (!reverse) {				/*  (slow) skip to first segment on a track				 */				seek_forward(location.track * segments_per_track);				--count;			} else {				/*  When seeking backwards from end-of-tape the number				 *  of erased gaps found seems to be higher than expected.				 *  Therefor the drive must skip some more segments than				 *  calculated, but we don't know how many.				 *  Thus we will prevent the re-calculation of offset

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -