Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | /* * Copyright (C) 1997 Claus-Justus Heine 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: /homes/cvs/ftape-stacked/ftape/lowlevel/ftape-proc.c,v $ * $Revision: 1.11 $ * $Date: 1997/10/24 14:47:37 $ * * This file contains the procfs interface for the * QIC-40/80/3010/3020 floppy-tape driver "ftape" for Linux. * Old code removed, switched to dynamic proc entry. */ #include <linux/config.h> #if defined(CONFIG_PROC_FS) && defined(CONFIG_FT_PROC_FS) #include <linux/proc_fs.h> #include <linux/ftape.h> #include <linux/init.h> #include <linux/qic117.h> #include "../lowlevel/ftape-io.h" #include "../lowlevel/ftape-ctl.h" #include "../lowlevel/ftape-proc.h" #include "../lowlevel/ftape-tracing.h" static size_t get_driver_info(char *buf) { const char *debug_level[] = { "bugs" , "errors", "warnings", "informational", "noisy", "program flow", "fdc and dma", "data flow", "anything" }; return sprintf(buf, "version : %s\n" "used data rate: %d kbit/sec\n" "dma memory : %d kb\n" "debug messages: %s\n", FTAPE_VERSION, ft_data_rate, FT_BUFF_SIZE * ft_nr_buffers >> 10, debug_level[TRACE_LEVEL]); } static size_t get_tapedrive_info(char *buf) { return sprintf(buf, "vendor id : 0x%04x\n" "drive name: %s\n" "wind speed: %d ips\n" "wakeup : %s\n" "max. rate : %d kbit/sec\n", ft_drive_type.vendor_id, ft_drive_type.name, ft_drive_type.speed, ((ft_drive_type.wake_up == no_wake_up) ? "No wakeup needed" : ((ft_drive_type.wake_up == wake_up_colorado) ? "Colorado" : ((ft_drive_type.wake_up == wake_up_mountain) ? "Mountain" : ((ft_drive_type.wake_up == wake_up_insight) ? "Motor on" : "Unknown")))), ft_drive_max_rate); } static size_t get_cartridge_info(char *buf) { if (ftape_init_drive_needed) { return sprintf(buf, "uninitialized\n"); } if (ft_no_tape) { return sprintf(buf, "no cartridge inserted\n"); } return sprintf(buf, "segments : %5d\n" "tracks : %5d\n" "length : %5dft\n" "formatted : %3s\n" "writable : %3s\n" "QIC spec. : QIC-%s\n" "fmt-code : %1d\n", ft_segments_per_track, ft_tracks_per_tape, ftape_tape_len, (ft_formatted == 1) ? "yes" : "no", (ft_write_protected == 1) ? "no" : "yes", ((ft_qic_std == QIC_TAPE_QIC40) ? "40" : ((ft_qic_std == QIC_TAPE_QIC80) ? "80" : ((ft_qic_std == QIC_TAPE_QIC3010) ? "3010" : ((ft_qic_std == QIC_TAPE_QIC3020) ? "3020" : "???")))), ft_format_code); } static size_t get_controller_info(char *buf) { const char *fdc_name[] = { "no fdc", "i8272", "i82077", "i82077AA", "Colorado FC-10 or FC-20", "i82078", "i82078_1" }; return sprintf(buf, "FDC type : %s\n" "FDC base : 0x%03x\n" "FDC irq : %d\n" "FDC dma : %d\n" "FDC thr. : %d\n" "max. rate : %d kbit/sec\n", ft_mach2 ? "Mountain MACH-2" : fdc_name[fdc.type], fdc.sra, fdc.irq, fdc.dma, ft_fdc_threshold, ft_fdc_max_rate); } static size_t get_history_info(char *buf) { size_t len; len = sprintf(buf, "\nFDC isr statistics\n" " id_am_errors : %3d\n" " id_crc_errors : %3d\n" " data_am_errors : %3d\n" " data_crc_errors : %3d\n" " overrun_errors : %3d\n" " no_data_errors : %3d\n" " retries : %3d\n", ft_history.id_am_errors, ft_history.id_crc_errors, ft_history.data_am_errors, ft_history.data_crc_errors, ft_history.overrun_errors, ft_history.no_data_errors, ft_history.retries); len += sprintf(buf + len, "\nECC statistics\n" " crc_errors : %3d\n" " crc_failures : %3d\n" " ecc_failures : %3d\n" " sectors corrected: %3d\n", ft_history.crc_errors, ft_history.crc_failures, ft_history.ecc_failures, ft_history.corrected); len += sprintf(buf + len, "\ntape quality statistics\n" " media defects : %3d\n", ft_history.defects); len += sprintf(buf + len, "\ntape motion statistics\n" " repositions : %3d\n", ft_history.rewinds); return len; } int ftape_read_proc(char *page, char **start, off_t off, int count, int *eof, void *data) { char *ptr = page; size_t len; ptr += sprintf(ptr, "Kernel Driver\n\n"); ptr += get_driver_info(ptr); ptr += sprintf(ptr, "\nTape Drive\n\n"); ptr += get_tapedrive_info(ptr); ptr += sprintf(ptr, "\nFDC Controller\n\n"); ptr += get_controller_info(ptr); ptr += sprintf(ptr, "\nTape Cartridge\n\n"); ptr += get_cartridge_info(ptr); ptr += sprintf(ptr, "\nHistory Record\n\n"); ptr += get_history_info(ptr); len = strlen(page); *start = 0; if (off+count >= len) { *eof = 1; } else { *eof = 0; } return len; } int __init ftape_proc_init(void) { return create_proc_read_entry("ftape", 0, &proc_root, ftape_read_proc, NULL) != NULL; } #ifdef MODULE void ftape_proc_destroy(void) { remove_proc_entry("ftape", &proc_root); } #endif #endif /* defined(CONFIG_PROC_FS) && defined(CONFIG_FT_PROC_FS) */ |