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

2 Information regarding the Enhanced IDE drive
5 The hdparm utility can be used to control various IDE features on a
9 -------------------------------------------------------------------------------
13 BUGGY IDE CHIPSETS CAN CORRUPT DATA!!
21 For the CMD640, linux disables "IRQ unmasking" (hdparm -u1) on any
23 If "prefetch" is disabled (hdparm -p8), then "IRQ unmasking" can be
26 For the CMD640, linux disables "32bit I/O" (hdparm -c1) on any drive
28 If "prefetch" is enabled (hdparm -p9), then "32bit I/O" can be
37 -------------------------------------------------------------------------------
42 - 40-conductor IDE cables are capable of transferring data in DMA modes up to
45 - If possible devices should be attached to separate channels if they are
46 available. Typically the disk on the first and CD-ROM on the second.
48 - If you mix devices on the same cable, please consider using similar devices
51 - Even better try to stick to the same vendor and device type on the same
54 This is the multiple IDE interface driver, as evolved from hd.c
57 It supports up to 9 IDE interfaces per default, on one or more IRQs (usually
58 14 & 15). There can be up to two drives per interface, as per the ATA-6 spec.::
60 Primary: ide0, port 0x1f0; major=3; hda is minor=0; hdb is minor=64
61 Secondary: ide1, port 0x170; major=22; hdc is minor=0; hdd is minor=64
62 Tertiary: ide2, port 0x1e8; major=33; hde is minor=0; hdf is minor=64
63 Quaternary: ide3, port 0x168; major=34; hdg is minor=0; hdh is minor=64
71 This driver automatically probes for most IDE interfaces (including all PCI
77 The IDE driver automatically detects and handles this. However, this may
82 Drives are normally found by auto-probing and/or examining the CMOS/BIOS data.
96 The results of successful auto-probing may override the physical geometry/irq
100 If the auto-probing during boot time confuses a drive (ie. the drive works
101 with hd.c but not with ide.c), then an command line option may be specified
112 Note that when only one IDE device is attached to an interface, it should be
119 such as the NEC-260 and the new MITSUMI triple/quad speed drives.
133 interface (/dev/hda) and an IDE cdrom drive on the secondary interface
136 ln -sf /dev/hdc /dev/cdrom
138 mount /dev/cdrom /mnt/cdrom -t iso9660 -o ro
145 - Your hardware is broken.
147 - You are using the wrong address for the device, or you have the
150 - Your IDE controller requires some nonstandard initialization sequence
152 be a separate MS-DOS driver just for the controller. IDE interfaces
154 can often be made to work by first booting MS-DOS, loading the
155 appropriate drivers, and then warm-booting linux (without powering
156 off). This can be automated using loadlin in the MS-DOS autoexec.
171 The IDE driver is modularized. The high level disk/CD-ROM/tape/floppy
173 can only be compiled into the kernel, and the core code (ide.c) can be
176 When using ide.c as a module in combination with kmod, add::
178 alias block-major-3 ide-probe
182 When ide.c is used as a module, you can pass command line parameters to the
187 Summary of ide driver parameters for kernel command line
190 For legacy IDE VLB host drivers (ali14xx/dtc2278/ht6560b/qd65xx/umc8672)
194 * "ali14xx.probe" boot option when ali14xx driver is built-in the kernel
203 You also need to use "probe" kernel parameter for ide-4drives driver
204 (support for IDE generic chipset with four drives on one port).
206 To enable support for IDE doublers on Amiga use "doubler" kernel parameter
207 for gayle host driver (i.e. "gayle.doubler" if the driver is built-in).
210 short 40-wires cable which cannot be automatically detected - if this is not
213 * "ide_core.ignore_cable=[interface_number]" boot option if IDE is built-in
217 if IDE is compiled as module
231 * "cdrom=[interface_number.device_number]" to force device as a CD-ROM
239 IDE
240 Integrated Drive Electronics, meaning that each drive has a built-in
241 controller, which is why an "IDE interface card" is not a "controller card".
246 name for "IDE".
248 The latest standards define some enhancements, known as the ATA-6 spec,
249 which grew out of vendor-specific "Enhanced IDE" (EIDE) implementations.
264 Wed Aug 20 22:31:29 CEST 2003 updated ide boot options to current ide.c
265 comments at 2.6.0-test4 time. Maciej Soltysiak <solt@dns.toxicfilms.tv>