Lines Matching +full:ide +full:- +full:port

1 IDE-CD driver documentation
9 ---------------
11 The ide-cd driver should work with all ATAPI ver 1.2 to ATAPI 2.6 compliant
12 CDROM drives which attach to an IDE interface. Note that some CDROM vendors
14 both ATAPI-compliant drives and drives which use a proprietary
18 attach to the parallel port. In addition, there is at least one drive
19 (CyCDROM CR520ie) which attaches to the IDE port but is not ATAPI;
25 - Reading from data tracks, and mounting ISO 9660 filesystems.
27 - Playing audio tracks. Most of the CDROM player programs floating
30 - Multisession support.
32 - On drives which support it, reading digital audio data directly
36 - There is now support for CDROM changers which comply with the
37 ATAPI 2.6 draft standard (such as the NEC CDR-251). This additional
41 appended to the end of this file. The Sanyo 3-disc changer
47 ---------------
49 0. The ide-cd relies on the ide disk driver. See
50 Documentation/ide/ide.rst for up-to-date information on the ide
53 1. Make sure that the ide and ide-cd drivers are compiled into the
55 entitled "Floppy, IDE, and other block devices", say either `Y`
61 Include IDE/ATAPI CDROM support
63 Depending on what type of IDE interface you have, you may need to
65 Documentation/ide/ide.rst.
72 3. The CDROM drive should be connected to the host on an IDE
73 interface. Each interface on a system is defined by an I/O port
82 on the primary IDE interface are called `hda` and `hdb`,
85 in the third position; see Documentation/ide/ide.rst.)
88 driver, you should make sure your IDE interface uses either the
90 the CDROM drive is the only device on the IDE interface, it should
94 when you boot, however. See Documentation/ide/ide.rst for more
100 hdb: NEC CD-ROM DRIVE:260, ATAPI CDROM drive
107 ln -s /dev/hdX /dev/cdrom
117 --------------
122 mount -t iso9660 /dev/cdrom /mnt/cdrom
157 to change. If the slot number is -1, the drive is unloaded.
161 ------------------
166 Documentation/ide/ide.rst for current information about the underlying
167 IDE support code. Some of these items apply only to earlier versions
175 - Review the configuration instructions above and in
176 Documentation/ide/ide.rst, and check how your hardware is
179 - If your drive is the only device on an IDE interface, it should
182 - If your IDE interface is not at the standard addresses of 0x170
184 lilo option. See Documentation/ide/ide.rst. (This feature was
187 - If the autoprobing is not finding your drive, you can tell the
202 - Some IDE adapters require a nonstandard initialization sequence
204 will often be a separate MS-DOS driver just for the controller.)
205 IDE interfaces on sound cards often fall into this category.
210 see Documentation/ide/ide.rst.
214 MS-DOS and load the appropriate drivers. Then warm-boot linux
216 by running loadlin from the MS-DOS autoexec.
221 - If you always get timeout errors, interrupts from the drive are
224 - IRQ problems may also be indicated by the message
231 - Double-check your hardware configuration to make sure that the IRQ
232 number of your IDE interface matches what the driver expects.
241 - Note that many MS-DOS CDROM drivers will still function even if
245 - If you own a Pioneer DR-A24X, you _will_ get nasty error messages
247 The Pioneer DR-A24X CDROM drives are fairly popular these days.
257 - If the system locks up when you try to access the CDROM, the most
258 likely cause is that you have a buggy IDE adapter which doesn't
264 foolproof. See Documentation/ide/ide.rst for more information
267 - Note that many MS-DOS CDROM drivers will work with such buggy
274 - If you get errors from mount, it may help to check `dmesg` to see
278 - Make sure there's a CDROM loaded in the drive, and that's it's an
281 - With the CDROM in the drive and unmounted, try something like::
289 - If you see `not a block device` errors, check that the definitions
293 brw-rw---- 1 root disk 3, 0 Nov 11 18:48 /dev/hda
294 brw-rw---- 1 root disk 3, 64 Nov 11 18:48 /dev/hdb
295 brw-rw---- 1 root disk 22, 0 Nov 11 18:48 /dev/hdc
296 brw-rw---- 1 root disk 22, 64 Nov 11 18:48 /dev/hdd
300 scripts/MAKEDEV.ide. (You may have to make it executable
310 - If mount is complaining that the iso9660 filesystem is not
319 - There was a bug in the version of the driver in 1.2.x kernels
331 - Random data corruption was occasionally observed with the Hitachi
332 CDR-7730 CDROM. If you experience data corruption, using "hdx=slow"
338 -------------
343 * cdchange.c [-v] <device> [<slot>]
349 * Changer information is displayed if either the -v flag is specified
372 int fd; /* file descriptor for CD-ROM device */
375 int slot=-1, x_slot;
381 --argc;
384 fprintf (stderr, "usage: %s [-v] <device> [<slot>]\n",
386 fprintf (stderr, " Slots are numbered 1 -- n.\n");
390 if (strcmp (argv[0], "-v") == 0) {
393 --argc;
399 slot = atoi (argv[1]) - 1;
420 "Should be 1 -- %d.\n",
480 printf ("CD-ROM tray open.\n");
483 printf ("CD-ROM drive not ready.\n");
503 printf ("\tData disc type %d.\t", status-CDS_DATA_1+1);
507 printf ("\tXA data disc type %d.\t", status-CDS_XA_2_1+1);