/linux-6.1.9/drivers/block/paride/ |
D | pt.c | 230 static int pt_identify(struct pt_unit *tape); 267 static inline u8 DRIVE(struct pt_unit *tape) in DRIVE() argument 269 return 0xa0+0x10*tape->drive; in DRIVE() 272 static int pt_wait(struct pt_unit *tape, int go, int stop, char *fun, char *msg) in pt_wait() argument 275 struct pi_adapter *pi = tape->pi; in pt_wait() 291 tape->name, fun, msg, r, s, e, j, p); in pt_wait() 297 static int pt_command(struct pt_unit *tape, char *cmd, int dlen, char *fun) in pt_command() argument 299 struct pi_adapter *pi = tape->pi; in pt_command() 302 write_reg(pi, 6, DRIVE(tape)); in pt_command() 304 if (pt_wait(tape, STAT_BUSY | STAT_DRQ, 0, fun, "before command")) { in pt_command() [all …]
|
D | Kconfig | 61 This option enables the high-level driver for ATAPI tape devices
|
/linux-6.1.9/Documentation/scsi/ |
D | st.rst | 7 This file contains brief information about the SCSI tape driver. 18 to any specific tape drive. The tape parameters can be specified with 21 1. Each user can specify the tape parameters he/she wants to use 24 in a multiuser environment the next user finds the tape parameters in 27 2. The system manager (root) can define default values for some tape 30 new tape is loaded into the drive or if writing begins at the 31 beginning of the tape. The second method is applicable if the tape 32 drive performs auto-detection of the tape format well (like some 33 QIC-drives). The result is that any tape can be read, writing can be 35 the tape is rewritten from the beginning (or a new tape is written [all …]
|
D | scsi.rst | 32 tape driver [1]_ (st.o) and scsi generics driver (sg.o) represent the upper 34 controlled. You can for example load the tape driver to use the tape drive, 45 .. [1] There is a variant of the st driver for controlling OnStream tape
|
D | hpsa.rst | 11 driver (for logical drives) AND a SCSI driver (for tape drives). This 57 (e.g. hot-plugged tape drives, or newly configured or deleted logical drives, 62 tape drives, or entire storage boxes containing pre-configured logical drives.
|
D | scsi-parameters.rst | 104 st= [HW,SCSI] SCSI tape parameters (buffers, etc.)
|
D | scsi-changer.rst | 24 later may be anything, a MOD, a CD-ROM, a tape or whatever. For the 71 Grundig. I got some reports telling it works ok with tape autoloaders
|
D | scsi-generic.rst | 12 drivers along with sd, st and sr (disk, tape and CDROM respectively). Sg
|
/linux-6.1.9/Documentation/ABI/testing/ |
D | sysfs-class-scsi_tape | 17 to and from the tape drive to complete. This includes all 18 reads, writes, and other SCSI commands issued to the tape 19 drive. An example of other SCSI commands would be tape 20 movement such as a rewind when a rewind tape device is 33 The number of I/O requests issued to the tape drive other 43 Shows the total number of bytes requested from the tape drive. 44 This value is presented in bytes because tape drives support 54 Shows the total number of read requests issued to the tape 74 Shows the total number of bytes written to the tape drive. 75 This value is presented in bytes because tape drives support [all …]
|
/linux-6.1.9/drivers/s390/char/ |
D | Makefile | 42 tape-$(CONFIG_PROC_FS) += tape_proc.o 43 tape-objs := tape_core.o tape_std.o tape_char.o $(tape-y) 44 obj-$(CONFIG_S390_TAPE) += tape.o tape_class.o
|
D | Kconfig | 116 prompt "S/390 tape device support" 119 Select this option if you want to access channel-attached tape 122 least one of the tape interface options and one of the tape 123 hardware options in order to access a tape device. 128 comment "S/390 tape hardware support" 133 prompt "Support for 3480/3490 tape hardware" 137 tape subsystems and 100% compatibles. 142 prompt "Support for 3590 tape hardware" 146 tape subsystems and 100% compatibles.
|
/linux-6.1.9/Documentation/admin-guide/ |
D | devices.txt | 211 9 char SCSI tape devices 212 0 = /dev/st0 First SCSI tape, mode 0 213 1 = /dev/st1 Second SCSI tape, mode 0 215 32 = /dev/st0l First SCSI tape, mode 1 216 33 = /dev/st1l Second SCSI tape, mode 1 218 64 = /dev/st0m First SCSI tape, mode 2 219 65 = /dev/st1m Second SCSI tape, mode 2 221 96 = /dev/st0a First SCSI tape, mode 3 222 97 = /dev/st1a Second SCSI tape, mode 3 224 128 = /dev/nst0 First SCSI tape, mode 0, no rewind [all …]
|
D | devices.rst | 113 /dev/tape tape device symbolic Current tape device 127 For SCSI devices, ``/dev/tape`` and ``/dev/cdrom`` should point to the
|
D | initrd.rst | 284 distribution media (e.g. CD-ROM, network, tape, ...). This can be
|
/linux-6.1.9/arch/parisc/ |
D | defpalo.conf | 6 --init-tape=lifimage
|
/linux-6.1.9/Documentation/admin-guide/blockdev/ |
D | paride.rst | 12 CD-ROM, LS-120 and tape drives use the parallel port to connect to their 24 controller like an NCR 5380. The "ditto" family of external tape 26 which is then connected to a floppy-tape mechanism. The vast majority 36 devices. It does not cover parallel port SCSI devices, "ditto" tape 43 - MicroSolutions backpack 8000t tape drive 49 - Hewlett-Packard 5GB and 8GB tape drives 64 pt ATAPI tape 121 MicroSolutions 8000t tape pt bpck 324 The pt driver for parallel port ATAPI tape drives is a minimal driver. 325 It does not yet support many of the standard tape ioctl operations.
|
/linux-6.1.9/drivers/scsi/ |
D | st.c | 4159 static int create_one_cdev(struct scsi_tape *tape, int mode, int rew) in create_one_cdev() argument 4165 struct st_modedef *STm = &(tape->modes[mode]); in create_one_cdev() 4167 int dev_num = tape->index; in create_one_cdev() 4191 tape->name, st_formats[i]); in create_one_cdev() 4193 dev = device_create(&st_sysfs_class, &tape->device->sdev_gendev, in create_one_cdev() 4194 cdev_devno, &tape->modes[mode], "%s", name); in create_one_cdev() 4212 static int create_cdevs(struct scsi_tape *tape) in create_cdevs() argument 4216 error = create_one_cdev(tape, mode, 0); in create_cdevs() 4219 error = create_one_cdev(tape, mode, 1); in create_cdevs() 4224 return sysfs_create_link(&tape->device->sdev_gendev.kobj, in create_cdevs() [all …]
|
D | st.h | 69 struct scsi_tape *tape; member
|
D | Kconfig | 29 If you want to use a SCSI hard disk, SCSI tape drive, SCSI CD-ROM or 70 comment "SCSI support type (disk, tape, CD-ROM)" 96 tristate "SCSI tape support" 99 If you want to use a SCSI tape drive under Linux, say Y and read the 165 tape libraries and MOD/CDROM jukeboxes. *Real* jukeboxes, you
|
/linux-6.1.9/include/acpi/ |
D | acbuffer.h | 37 u32 tape; member
|
/linux-6.1.9/drivers/usb/storage/ |
D | Kconfig | 15 floppy drives, USB hard disks, USB tape drives, USB CD-ROMs,
|
/linux-6.1.9/Documentation/m68k/ |
D | kernel-options.rst | 292 Sets several parameters of the SCSI tape driver. <buffer_size> is 293 the number of 512-byte buffers reserved for tape operations for each 295 to start an actual write operation to the tape. Maximum value is the 297 buffers allocated for all tape devices.
|
/linux-6.1.9/Documentation/driver-api/ |
D | scsi.rst | 16 peripherals (disk drives, tape drives, modems, printers, scanners,
|
/linux-6.1.9/drivers/ata/ |
D | Kconfig | 21 If you want to use an ATA hard disk, ATA tape drive, ATA CD-ROM or 28 'SCSI disk support', 'SCSI tape support', or
|
/linux-6.1.9/Documentation/s390/ |
D | vfio-ccw.rst | 54 This includes devices that don't have a virtio counterpart (e.g. tape
|