1 2 Information regarding the Enhanced IDE drive in Linux 2.6 3 4============================================================================== 5 6 7 The hdparm utility can be used to control various IDE features on a 8 running system. It is packaged separately. Please Look for it on popular 9 linux FTP sites. 10 11 12 13*** IMPORTANT NOTICES: BUGGY IDE CHIPSETS CAN CORRUPT DATA!! 14*** ================= 15*** PCI versions of the CMD640 and RZ1000 interfaces are now detected 16*** automatically at startup when PCI BIOS support is configured. 17*** 18*** Linux disables the "prefetch" ("readahead") mode of the RZ1000 19*** to prevent data corruption possible due to hardware design flaws. 20*** 21*** For the CMD640, linux disables "IRQ unmasking" (hdparm -u1) on any 22*** drive for which the "prefetch" mode of the CMD640 is turned on. 23*** If "prefetch" is disabled (hdparm -p8), then "IRQ unmasking" can be 24*** used again. 25*** 26*** For the CMD640, linux disables "32bit I/O" (hdparm -c1) on any drive 27*** for which the "prefetch" mode of the CMD640 is turned off. 28*** If "prefetch" is enabled (hdparm -p9), then "32bit I/O" can be 29*** used again. 30*** 31*** The CMD640 is also used on some Vesa Local Bus (VLB) cards, and is *NOT* 32*** automatically detected by Linux. For safe, reliable operation with such 33*** interfaces, one *MUST* use the "ide0=cmd640_vlb" kernel option. 34*** 35*** Use of the "serialize" option is no longer necessary. 36 37================================================================================ 38Common pitfalls: 39 40- 40-conductor IDE cables are capable of transferring data in DMA modes up to 41 udma2, but no faster. 42 43- If possible devices should be attached to separate channels if they are 44 available. Typically the disk on the first and CD-ROM on the second. 45 46- If you mix devices on the same cable, please consider using similar devices 47 in respect of the data transfer mode they support. 48 49- Even better try to stick to the same vendor and device type on the same 50 cable. 51 52================================================================================ 53 54This is the multiple IDE interface driver, as evolved from hd.c. 55 56It supports up to 9 IDE interfaces per default, on one or more IRQs (usually 5714 & 15). There can be up to two drives per interface, as per the ATA-6 spec. 58 59Primary: ide0, port 0x1f0; major=3; hda is minor=0; hdb is minor=64 60Secondary: ide1, port 0x170; major=22; hdc is minor=0; hdd is minor=64 61Tertiary: ide2, port 0x1e8; major=33; hde is minor=0; hdf is minor=64 62Quaternary: ide3, port 0x168; major=34; hdg is minor=0; hdh is minor=64 63fifth.. ide4, usually PCI, probed 64sixth.. ide5, usually PCI, probed 65 66To access devices on interfaces > ide0, device entries please make sure that 67device files for them are present in /dev. If not, please create such 68entries, by simply running the included shell script: 69 70 /usr/src/linux/scripts/MAKEDEV.ide 71 72This driver automatically probes for most IDE interfaces (including all PCI 73ones), for the drives/geometries attached to those interfaces, and for the IRQ 74lines being used by the interfaces (normally 14, 15 for ide0/ide1). 75 76For special cases, interfaces may be specified using kernel "command line" 77options. For example, 78 79 ide3=0x168,0x36e,10 /* ioports 0x168-0x16f,0x36e, irq 10 */ 80 81Normally the irq number need not be specified, as ide.c will probe for it: 82 83 ide3=0x168,0x36e /* ioports 0x168-0x16f,0x36e */ 84 85The standard port, and irq values are these: 86 87 ide0=0x1f0,0x3f6,14 88 ide1=0x170,0x376,15 89 ide2=0x1e8,0x3ee,11 90 ide3=0x168,0x36e,10 91 92Note that the first parameter reserves 8 contiguous ioports, whereas the 93second value denotes a single ioport. If in doubt, do a 'cat /proc/ioports'. 94 95In all probability the device uses these ports and IRQs if it is attached 96to the appropriate ide channel. Pass the parameter for the correct ide 97channel to the kernel, as explained above. 98 99Any number of interfaces may share a single IRQ if necessary, at a slight 100performance penalty, whether on separate cards or a single VLB card. 101The IDE driver automatically detects and handles this. However, this may 102or may not be harmful to your hardware.. two or more cards driving the same IRQ 103can potentially burn each other's bus driver, though in practice this 104seldom occurs. Be careful, and if in doubt, don't do it! 105 106Drives are normally found by auto-probing and/or examining the CMOS/BIOS data. 107For really weird situations, the apparent (fdisk) geometry can also be specified 108on the kernel "command line" using LILO. The format of such lines is: 109 110 hdx=cyls,heads,sects,wpcom,irq 111or hdx=cdrom 112 113where hdx can be any of hda through hdh, Three values are required 114(cyls,heads,sects). For example: 115 116 hdc=1050,32,64 hdd=cdrom 117 118either {hda,hdb} or {hdc,hdd}. The results of successful auto-probing may 119override the physical geometry/irq specified, though the "original" geometry 120may be retained as the "logical" geometry for partitioning purposes (fdisk). 121 122If the auto-probing during boot time confuses a drive (ie. the drive works 123with hd.c but not with ide.c), then an command line option may be specified 124for each drive for which you'd like the drive to skip the hardware 125probe/identification sequence. For example: 126 127 hdb=noprobe 128or 129 hdc=768,16,32 130 hdc=noprobe 131 132Note that when only one IDE device is attached to an interface, it should be 133jumpered as "single" or "master", *not* "slave". Many folks have had 134"trouble" with cdroms because of this requirement, so the driver now probes 135for both units, though success is more likely when the drive is jumpered 136correctly. 137 138Courtesy of Scott Snyder and others, the driver supports ATAPI cdrom drives 139such as the NEC-260 and the new MITSUMI triple/quad speed drives. 140Such drives will be identified at boot time, just like a hard disk. 141 142If for some reason your cdrom drive is *not* found at boot time, you can force 143the probe to look harder by supplying a kernel command line parameter 144via LILO, such as: 145 146 hdc=cdrom /* hdc = "master" on second interface */ 147or 148 hdd=cdrom /* hdd = "slave" on second interface */ 149 150For example, a GW2000 system might have a hard drive on the primary 151interface (/dev/hda) and an IDE cdrom drive on the secondary interface 152(/dev/hdc). To mount a CD in the cdrom drive, one would use something like: 153 154 ln -sf /dev/hdc /dev/cdrom 155 mkdir /mnt/cdrom 156 mount /dev/cdrom /mnt/cdrom -t iso9660 -o ro 157 158If, after doing all of the above, mount doesn't work and you see 159errors from the driver (with dmesg) complaining about `status=0xff', 160this means that the hardware is not responding to the driver's attempts 161to read it. One of the following is probably the problem: 162 163 - Your hardware is broken. 164 165 - You are using the wrong address for the device, or you have the 166 drive jumpered wrong. Review the configuration instructions above. 167 168 - Your IDE controller requires some nonstandard initialization sequence 169 before it will work properly. If this is the case, there will often 170 be a separate MS-DOS driver just for the controller. IDE interfaces 171 on sound cards usually fall into this category. Such configurations 172 can often be made to work by first booting MS-DOS, loading the 173 appropriate drivers, and then warm-booting linux (without powering 174 off). This can be automated using loadlin in the MS-DOS autoexec. 175 176If you always get timeout errors, interrupts from the drive are probably 177not making it to the host. Check how you have the hardware jumpered 178and make sure it matches what the driver expects (see the configuration 179instructions above). If you have a PCI system, also check the BIOS 180setup; I've had one report of a system which was shipped with IRQ 15 181disabled by the BIOS. 182 183The kernel is able to execute binaries directly off of the cdrom, 184provided it is mounted with the default block size of 1024 (as above). 185 186Please pass on any feedback on any of this stuff to the maintainer, 187whose address can be found in linux/MAINTAINERS. 188 189Note that if BOTH hd.c and ide.c are configured into the kernel, 190hd.c will normally be allowed to control the primary IDE interface. 191This is useful for older hardware that may be incompatible with ide.c, 192and still allows newer hardware to run on the 2nd/3rd/4th IDE ports 193under control of ide.c. To have ide.c also "take over" the primary 194IDE port in this situation, use the "command line" parameter: ide0=0x1f0 195 196The IDE driver is modularized. The high level disk/CD-ROM/tape/floppy 197drivers can always be compiled as loadable modules, the chipset drivers 198can only be compiled into the kernel, and the core code (ide.c) can be 199compiled as a loadable module provided no chipset support is needed. 200 201When using ide.c/ide-tape.c as modules in combination with kerneld, add: 202 203 alias block-major-3 ide-probe 204 alias char-major-37 ide-tape 205 206respectively to /etc/modules.conf. 207 208When ide.c is used as a module, you can pass command line parameters to the 209driver using the "options=" keyword to insmod, while replacing any ',' with 210';'. For example: 211 212 insmod ide.o options="ide0=serialize ide1=serialize ide2=0x1e8;0x3ee;11" 213 214 215================================================================================ 216 217Summary of ide driver parameters for kernel command line 218-------------------------------------------------------- 219 220 "hdx=" is recognized for all "x" from "a" to "h", such as "hdc". 221 222 "idex=" is recognized for all "x" from "0" to "3", such as "ide1". 223 224 "hdx=noprobe" : drive may be present, but do not probe for it 225 226 "hdx=none" : drive is NOT present, ignore cmos and do not probe 227 228 "hdx=nowerr" : ignore the WRERR_STAT bit on this drive 229 230 "hdx=cdrom" : drive is present, and is a cdrom drive 231 232 "hdx=cyl,head,sect" : disk drive is present, with specified geometry 233 234 "hdx=remap" : remap access of sector 0 to sector 1 (for EZD) 235 236 "hdx=remap63" : remap the drive: shift all by 63 sectors (for DM) 237 238 "hdx=autotune" : driver will attempt to tune interface speed 239 to the fastest PIO mode supported, 240 if possible for this drive only. 241 Not fully supported by all chipset types, 242 and quite likely to cause trouble with 243 older/odd IDE drives. 244 245 "hdx=slow" : insert a huge pause after each access to the data 246 port. Should be used only as a last resort. 247 248 "hdx=swapdata" : when the drive is a disk, byte swap all data 249 250 "hdx=bswap" : same as above.......... 251 252 "hdx=flash" : allows for more than one ata_flash disk to be 253 registered. In most cases, only one device 254 will be present. 255 256 "hdx=scsi" : the return of the ide-scsi flag, this is useful for 257 allowing ide-floppy, ide-tape, and ide-cdrom|writers 258 to use ide-scsi emulation on a device specific option. 259 260 "hdxlun=xx" : set the drive last logical unit 261 262 "idebus=xx" : inform IDE driver of VESA/PCI bus speed in MHz, 263 where "xx" is between 20 and 66 inclusive, 264 used when tuning chipset PIO modes. 265 For PCI bus, 25 is correct for a P75 system, 266 30 is correct for P90,P120,P180 systems, 267 and 33 is used for P100,P133,P166 systems. 268 If in doubt, use idebus=33 for PCI. 269 As for VLB, it is safest to not specify it. 270 Bigger values are safer than smaller ones. 271 272 "idex=noprobe" : do not attempt to access/use this interface 273 274 "idex=base" : probe for an interface at the addr specified, 275 where "base" is usually 0x1f0 or 0x170 276 and "ctl" is assumed to be "base"+0x206 277 278 "idex=base,ctl" : specify both base and ctl 279 280 "idex=base,ctl,irq" : specify base, ctl, and irq number 281 282 "idex=autotune" : driver will attempt to tune interface speed 283 to the fastest PIO mode supported, 284 for all drives on this interface. 285 Not fully supported by all chipset types, 286 and quite likely to cause trouble with 287 older/odd IDE drives. 288 289 "idex=noautotune" : driver will NOT attempt to tune interface speed 290 This is the default for most chipsets, 291 except the cmd640. 292 293 "idex=serialize" : do not overlap operations on idex. Please note 294 that you will have to specify this option for 295 both the respecitve primary and secondary channel 296 to take effect. 297 298 "idex=four" : four drives on idex and ide(x^1) share same ports 299 300 "idex=reset" : reset interface after probe 301 302 "idex=dma" : automatically configure/use DMA if possible. 303 304 "idex=ata66" : informs the interface that it has an 80c cable 305 for chipsets that are ATA-66 capable, but the 306 ability to bit test for detection is currently 307 unknown. 308 309 "ide=reverse" : formerly called to pci sub-system, but now local. 310 311The following are valid ONLY on ide0 (except dc4030), which usually corresponds 312to the first ATA interface found on the particular host, and the defaults for 313the base,ctl ports must not be altered. 314 315 "ide0=dtc2278" : probe/support DTC2278 interface 316 "ide0=ht6560b" : probe/support HT6560B interface 317 "ide0=cmd640_vlb" : *REQUIRED* for VLB cards with the CMD640 chip 318 (not for PCI -- automatically detected) 319 "ide0=qd65xx" : probe/support qd65xx interface 320 "ide0=ali14xx" : probe/support ali14xx chipsets (ALI M1439/M1443/M1445) 321 "ide0=umc8672" : probe/support umc8672 chipsets 322 "idex=dc4030" : probe/support Promise DC4030VL interface 323 "ide=doubler" : probe/support IDE doublers on Amiga 324 325There may be more options than shown -- use the source, Luke! 326 327Everything else is rejected with a "BAD OPTION" message. 328 329================================================================================ 330 331IDE ATAPI streaming tape driver 332------------------------------- 333 334This driver is a part of the Linux ide driver and works in co-operation 335with linux/drivers/block/ide.c. 336 337The driver, in co-operation with ide.c, basically traverses the 338request-list for the block device interface. The character device 339interface, on the other hand, creates new requests, adds them 340to the request-list of the block device, and waits for their completion. 341 342Pipelined operation mode is now supported on both reads and writes. 343 344The block device major and minor numbers are determined from the 345tape's relative position in the ide interfaces, as explained in ide.c. 346 347The character device interface consists of the following devices: 348 349 ht0 major 37, minor 0 first IDE tape, rewind on close. 350 ht1 major 37, minor 1 second IDE tape, rewind on close. 351 ... 352 nht0 major 37, minor 128 first IDE tape, no rewind on close. 353 nht1 major 37, minor 129 second IDE tape, no rewind on close. 354 ... 355 356Run linux/scripts/MAKEDEV.ide to create the above entries. 357 358The general magnetic tape commands compatible interface, as defined by 359include/linux/mtio.h, is accessible through the character device. 360 361General ide driver configuration options, such as the interrupt-unmask 362flag, can be configured by issuing an ioctl to the block device interface, 363as any other ide device. 364 365Our own ide-tape ioctl's can be issued to either the block device or 366the character device interface. 367 368Maximal throughput with minimal bus load will usually be achieved in the 369following scenario: 370 371 1. ide-tape is operating in the pipelined operation mode. 372 2. No buffering is performed by the user backup program. 373 374 375 376================================================================================ 377 378Some Terminology 379---------------- 380IDE = Integrated Drive Electronics, meaning that each drive has a built-in 381controller, which is why an "IDE interface card" is not a "controller card". 382 383ATA = AT (the old IBM 286 computer) Attachment Interface, a draft American 384National Standard for connecting hard drives to PCs. This is the official 385name for "IDE". 386 387The latest standards define some enhancements, known as the ATA-6 spec, 388which grew out of vendor-specific "Enhanced IDE" (EIDE) implementations. 389 390ATAPI = ATA Packet Interface, a new protocol for controlling the drives, 391similar to SCSI protocols, created at the same time as the ATA2 standard. 392ATAPI is currently used for controlling CDROM, TAPE and FLOPPY (ZIP or 393LS120/240) devices, removable R/W cartridges, and for high capacity hard disk 394drives. 395 396mlord@pobox.com 397-- 398 399Wed Apr 17 22:52:44 CEST 2002 edited by Marcin Dalecki, the current 400maintainer. 401 402Wed Aug 20 22:31:29 CEST 2003 updated ide boot uptions to current ide.c 403comments at 2.6.0-test4 time. Maciej Soltysiak <solt@dns.toxicfilms.tv> 404

