]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/bootparam.7
stdio.3: ffix
[thirdparty/man-pages.git] / man7 / bootparam.7
CommitLineData
fea681da
MK
1.\" Copyright (c) 1995,1997 Paul Gortmaker and Andries Brouwer
2.\"
3.\" This is free documentation; you can redistribute it and/or
4.\" modify it under the terms of the GNU General Public License as
5.\" published by the Free Software Foundation; either version 2 of
6.\" the License, or (at your option) any later version.
7.\"
8.\" The GNU General Public License's references to "object code"
9.\" and "executables" are to be interpreted as the output of any
10.\" document formatting or typesetting system, including
11.\" intermediate and printed output.
12.\"
13.\" This manual is distributed in the hope that it will be useful,
14.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
15.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16.\" GNU General Public License for more details.
17.\"
18.\" You should have received a copy of the GNU General Public
19.\" License along with this manual; if not, write to the Free
20.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
21.\" USA.
22.\"
23.\" This man page written 950814 by aeb, based on Paul Gortmaker's HOWTO
24.\" (dated v1.0.1, 15/08/95).
25.\" Major update, aeb, 970114.
8062a091
MK
26.\" FIXME ? The use of quotes on this page is inconsistent with the
27.\" rest of man-pages.
fea681da 28.\"
40dedbfe 29.TH BOOTPARAM 7 2007-12-16 "Linux" "Linux Programmer's Manual"
fea681da
MK
30.SH NAME
31bootparam \- Introduction to boot time parameters of the Linux kernel
32.SH DESCRIPTION
76c44d83 33The Linux kernel accepts certain 'command-line options' or 'boot time
c13182ef
MK
34parameters' at the moment it is started.
35In general this is used to
fea681da
MK
36supply the kernel with information about hardware parameters that
37the kernel would not be able to determine on its own, or to avoid/override
38the values that the kernel would otherwise detect.
39
40When the kernel is booted directly by the BIOS (say from a floppy to
40dedbfe 41which you copied a kernel using 'cp zImage /dev/fd0'),
fea681da
MK
42you have no opportunity to specify any parameters.
43So, in order to take advantage of this possibility you have to
44use software that is able to pass parameters, like LILO or loadlin.
45For a few parameters one can also modify the kernel image itself,
46using rdev, see
47.BR rdev (8)
48for further details.
49
50The LILO program (LInux LOader) written by Werner Almesberger is the
c13182ef
MK
51most commonly used.
52It has the ability to boot various kernels, and
53stores the configuration information in a plain text file.
54(See
fea681da
MK
55.BR lilo (8)
56and
57.BR lilo.conf (5).)
58LILO can boot DOS, OS/2, Linux, FreeBSD, UnixWare, etc., and is quite flexible.
59
40dedbfe 60The other commonly used Linux loader is 'LoadLin' which is a DOS
fea681da
MK
61program that has the capability to launch a Linux kernel from the DOS
62prompt (with boot-args) assuming that certain resources are available.
63This is good for people that want to launch Linux from DOS.
64
65It is also very useful if you have certain hardware which relies on
c13182ef 66the supplied DOS driver to put the hardware into a known state.
40dedbfe 67A common example is 'SoundBlaster Compatible' sound cards that require
fea681da 68the DOS driver to twiddle a few mystical registers to put the card
c13182ef
MK
69into a SB compatible mode.
70Booting DOS with the supplied driver, and
fea681da
MK
71then loading Linux from the DOS prompt with loadlin avoids the reset
72of the card that happens if one rebooted instead.
171b93eb 73.SS "The Argument List"
fea681da 74The kernel command line is parsed into a list of strings
c13182ef
MK
75(boot arguments) separated by spaces.
76Most of the boot args take the form of:
fea681da
MK
77.IP
78name[=value_1][,value_2]...[,value_10]
79.LP
40dedbfe 80where 'name' is a unique keyword that is used to identify what part of
fea681da
MK
81the kernel the associated values (if any) are to be given to.
82Note the limit of 10 is real, as the present code only handles 10 comma
c13182ef 83separated parameters per keyword.
3b777aff 84(However, you can reuse the same
fea681da
MK
85keyword with up to an additional 10 parameters in unusually
86complicated situations, assuming the setup function supports it.)
87
c13182ef
MK
88Most of the sorting goes on in linux/init/main.c.
89First, the kernel
40dedbfe 90checks to see if the argument is any of the special arguments 'root=',
25715c96 91\&'nfsroot=', 'nfsaddrs=', 'ro', 'rw', 'debug' or 'init'.
c13182ef 92The meaning of these special arguments is described below.
fea681da
MK
93
94Then it walks a list of setup functions (contained in the bootsetups
40dedbfe
MK
95array) to see if the specified argument string (such as 'foo') has
96been associated with a setup function ('foo_setup()') for a particular
c13182ef
MK
97device or part of the kernel.
98If you passed the kernel the line
fea681da 99foo=3,4,5,6 then the kernel would search the bootsetups array to see
40dedbfe 100if 'foo' was registered.
c13182ef 101If it was, then it would call the setup
40dedbfe 102function associated with 'foo' (foo_setup()) and hand it the arguments
fea681da
MK
1033, 4, 5 and 6 as given on the kernel command line.
104
40dedbfe 105Anything of the form 'foo=bar' that is not accepted as a setup function
fea681da 106as described above is then interpreted as an environment variable to
c13182ef 107be set.
40dedbfe 108A (useless?) example would be to use 'TERM=vt100' as a boot
fea681da
MK
109argument.
110
111Any remaining arguments that were not picked up by the kernel and were
112not interpreted as environment variables are then passed onto process
c13182ef
MK
113one, which is usually the init program.
114The most common argument that
40dedbfe 115is passed to the init process is the word 'single' which instructs init
fea681da 116to boot the computer in single user mode, and not launch all the usual
c13182ef
MK
117daemons.
118Check the manual page for the version of init installed on
fea681da 119your system to see what arguments it accepts.
171b93eb 120.SS "General Non-device Specific Boot Arguments"
bebbbd1f 121.TP
40dedbfe 122.B "'init=...'"
fea681da
MK
123This sets the initial command to be executed by the kernel.
124If this is not set, or cannot be found, the kernel will try
5ce89119
MK
125.IR /sbin/init ,
126then
fea681da
MK
127.IR /etc/init ,
128then
129.IR /bin/init ,
130then
0daa9e92 131.I /bin/sh
fea681da 132and panic if all of this fails.
bebbbd1f 133.TP
40dedbfe 134.B "'nfsaddrs=...'"
fea681da
MK
135This sets the nfs boot address to the given string.
136This boot address is used in case of a net boot.
bebbbd1f 137.TP
40dedbfe 138.B "'nfsroot=...'"
c13182ef
MK
139This sets the nfs root name to the given string.
140If this string
fea681da 141does not begin with '/' or ',' or a digit, then it is prefixed by
25715c96 142\&'/tftpboot/'.
c13182ef 143This root name is used in case of a net boot.
bebbbd1f 144.TP
40dedbfe
MK
145.B "'no387'"
146(Only when
147.B CONFIG_BUGi386
148is defined.)
fea681da 149Some i387 coprocessor chips have bugs that show up when used in 32 bit
c13182ef
MK
150protected mode.
151For example, some of the early ULSI-387 chips would
c45bd688 152cause solid lockups while performing floating-point calculations.
40dedbfe 153Using the 'no387' boot arg causes Linux to ignore the maths
c13182ef
MK
154coprocessor even if you have one.
155Of course you must then have your
fea681da 156kernel compiled with math emulation support!
bebbbd1f 157.TP
40dedbfe
MK
158.B "'no-hlt'"
159(Only when
160.B CONFIG_BUGi386
161is defined.)
162Some of the early i486DX-100 chips have a problem with the 'hlt'
fea681da 163instruction, in that they can't reliably return to operating mode
c13182ef 164after this instruction is used.
40dedbfe 165Using the 'no-hlt' instruction tells
fea681da 166Linux to just run an infinite loop when there is nothing else to do,
c13182ef
MK
167and to not halt the CPU.
168This allows people with these broken chips
fea681da 169to use Linux.
bebbbd1f 170.TP
40dedbfe 171.B "'root=...'"
fea681da 172This argument tells the kernel what device is to be used as the root
24d01c53 173file system while booting.
c13182ef 174The default of this setting is determined
fea681da 175at compile time, and usually is the value of the root device of the
c13182ef
MK
176system that the kernel was built on.
177To override this value, and
fea681da 178select the second floppy drive as the root device, one would
6387216b
MK
179use 'root=/dev/fd1'.
180(The root device can also be set using
fea681da
MK
181.BR rdev (8).)
182
183The root device can be specified symbolically or numerically.
184A symbolic specification has the form /dev/XXYN, where XX designates
40dedbfe 185the device type ('hd' for ST-506 compatible hard disk, with Y in
25715c96
MK
186\&'a'-'d'; 'sd' for SCSI compatible disk, with Y in 'a'-'e';
187\&'ad' for Atari ACSI disk, with Y in 'a'-'e',
188\&'ez' for a Syquest EZ135 parallel port removable drive, with Y='a',
189\&'xd' for XT compatible disk, with Y either 'a' or 'b'; 'fd' for
4d9b6984 190floppy disk, with Y the floppy drive number \(em fd0 would be
40dedbfe 191the DOS 'A:' drive, and fd1 would be 'B:'), Y the driver letter or
fea681da 192number, and N the number (in decimal) of the partition on this device
c13182ef
MK
193(absent in the case of floppies).
194Recent kernels allow many other
fea681da
MK
195types, mostly for CD-ROMs: nfs, ram, scd, mcd, cdu535, aztcd, cm206cd,
196gscd, sbpcd, sonycd, bpcd.
197(The type nfs specifies a net boot; ram refers to a ram disk.)
198
199Note that this has nothing to do with the designation of these
c13182ef 200devices on your file system.
40dedbfe 201The '/dev/' part is purely conventional.
fea681da
MK
202
203The more awkward and less portable numeric specification of the above
c13182ef 204possible root devices in major/minor format is also accepted.
40dedbfe 205(E.g., /dev/sda3 is major 8, minor 3, so you could use 'root=0x803' as an
fea681da 206alternative.)
bebbbd1f 207.TP
40dedbfe 208.BR 'ro' " and " 'rw'
24d01c53 209The 'ro' option tells the kernel to mount the root file system
415d4dd0 210as 'read-only' so that file system consistency check programs (fsck)
c13182ef
MK
211can do their work on a quiescent file system.
212No processes can
24d01c53 213write to files on the file system in question until it is 'remounted'
40dedbfe 214as read/write capable, for example, by 'mount \-w \-n \-o remount /'.
fea681da
MK
215(See also
216.BR mount (8).)
217
24d01c53 218The 'rw' option tells the kernel to mount the root file system read/write.
fea681da
MK
219This is the default.
220
221The choice between read-only and read/write can also be set using
222.BR rdev (8).
bebbbd1f 223.TP
40dedbfe 224.B "'reserve=...'"
c13182ef
MK
225This is used to protect I/O port regions from probes.
226The form of the command is:
fea681da
MK
227.IP
228.BI reserve= iobase,extent[,iobase,extent]...
bebbbd1f 229.sp
fea681da 230In some machines it may be necessary to prevent device drivers from
c13182ef
MK
231checking for devices (auto-probing) in a specific region.
232This may be
fea681da
MK
233because of hardware that reacts badly to the probing, or hardware
234that would be mistakenly identified, or merely
235hardware you don't want the kernel to initialize.
236
237The reserve boot-time argument specifies an I/O port region that
c13182ef
MK
238shouldn't be probed.
239A device driver will not probe a reserved region,
fea681da
MK
240unless another boot argument explicitly specifies that it do so.
241
242For example, the boot line
243.IP
244reserve=0x300,32 blah=0x300
bebbbd1f 245.IP
40dedbfe 246keeps all device drivers except the driver for 'blah' from probing
94e9d9fe 2470x300\-0x31f.
bebbbd1f 248.TP
40dedbfe 249.B "'mem=...'"
fea681da
MK
250The BIOS call defined in the PC specification that returns
251the amount of installed memory was only designed to be able
c13182ef
MK
252to report up to 64MB.
253Linux uses this BIOS call at boot to
254determine how much memory is installed.
255If you have more than 64MB of
fea681da 256RAM installed, you can use this boot arg to tell Linux how much memory
c13182ef
MK
257you have.
258The value is in decimal or hexadecimal (prefix 0x),
40dedbfe
MK
259and the suffixes 'k' (times 1024) or 'M' (times 1048576) can be used.
260Here is a quote from Linus on usage of the 'mem=' parameter.
fea681da 261
324633ae 262.in +0.5i
40dedbfe 263The kernel will accept any 'mem=xx' parameter you give it, and if it
fea681da
MK
264turns out that you lied to it, it will crash horribly sooner or later.
265The parameter indicates the highest addressable RAM address, so
40dedbfe
MK
266\&'mem=0x1000000' means you have 16MB of memory, for example.
267For a 96MB machine this would be 'mem=0x6000000'.
fea681da 268
192e4f2e
MK
269.BR NOTE :
270some machines might use the top of memory for BIOS
4f9d18f8 271caching or whatever, so you might not actually have up to the full
c13182ef
MK
27296MB addressable.
273The reverse is also true: some chipsets will map
fea681da
MK
274the physical memory that is covered by the BIOS area into the area
275just past the top of memory, so the top-of-mem might actually be 96MB
c13182ef
MK
276+ 384kB for example.
277If you tell linux that it has more memory than
fea681da 278it actually does have, bad things will happen: maybe not at once, but
324633ae
MK
279surely eventually.
280.in
fea681da 281
40dedbfe 282You can also use the boot argument 'mem=nopentium' to turn off 4 MB
eb1af896 283page tables on kernels configured for IA32 systems with a pentium or newer
441082ad 284CPU.
bebbbd1f 285.TP
40dedbfe 286.B "'panic=N'"
fea681da 287By default the kernel will not reboot after a panic, but this option
f7ceac86 288will cause a kernel reboot after N seconds (if N is greater than zero).
fea681da 289This panic timeout can also be set by "echo N > /proc/sys/kernel/panic".
bebbbd1f 290.TP
40dedbfe
MK
291.B "'reboot=[warm|cold][,[bios|hard]]'"
292(Only when
293.B CONFIG_BUGi386
294is defined.)
fea681da 295Since 2.0.22 a reboot is by default a cold reboot.
40dedbfe 296One asks for the old default with 'reboot=warm'.
fea681da
MK
297(A cold reboot may be required to reset certain hardware,
298but might destroy not yet written data in a disk cache.
299A warm reboot may be faster.)
300By default a reboot is hard, by asking the keyboard controller
301to pulse the reset line low, but there is at least one type
c13182ef 302of motherboard where that doesn't work.
40dedbfe 303The option 'reboot=bios' will
fea681da 304instead jump through the BIOS.
bebbbd1f 305.TP
40dedbfe 306.BR 'nosmp' " and " 'maxcpus=N'
fea681da 307(Only when __SMP__ is defined.)
40dedbfe
MK
308A command-line option of 'nosmp' or 'maxcpus=0' will disable SMP
309activation entirely; an option 'maxcpus=N' limits the maximum number
fea681da 310of CPUs activated in SMP mode to N.
171b93eb 311.SS "Boot Arguments for Use by Kernel Developers"
bebbbd1f 312.TP
40dedbfe 313.B "'debug'"
fea681da 314Kernel messages are handed off to the kernel log daemon klogd so that they
c13182ef
MK
315may be logged to disk.
316Messages with a priority above
fea681da 317.I console_loglevel
c13182ef 318are also printed on the console.
c84371c6 319(For these levels, see \fI<linux/kernel.h>\fP.)
fea681da 320By default this variable is set to log anything more important than
c13182ef
MK
321debug messages.
322This boot argument will cause the kernel to also
fea681da
MK
323print the messages of DEBUG priority.
324The console loglevel can also be set at run time via an option
c13182ef
MK
325to klogd.
326See
fea681da 327.BR klogd (8).
bebbbd1f 328.TP
40dedbfe 329.B "'profile=N'"
fea681da
MK
330It is possible to enable a kernel profiling function,
331if one wishes to find out where the kernel is spending its CPU cycles.
332Profiling is enabled by setting the variable
333.I prof_shift
c7094399 334to a nonzero value.
40dedbfe
MK
335This is done either by specifying
336.B CONFIG_PROFILE
337at compile time, or by giving the 'profile=' option.
fea681da
MK
338Now the value that
339.I prof_shift
40dedbfe
MK
340gets will be N, when given, or
341.BR CONFIG_PROFILE_SHIFT ,
342when that is given, or 2, the default.
c13182ef 343The significance of this variable is that it
fea681da
MK
344gives the granularity of the profiling: each clock tick, if the
345system was executing kernel code, a counter is incremented:
346.IP
347profile[address >> prof_shift]++;
bebbbd1f 348.sp
fea681da
MK
349The raw profiling information can be read from
350.IR /proc/profile .
351Probably you'll want to use a tool such as readprofile.c to digest it.
352Writing to
353.I /proc/profile
354will clear the counters.
bebbbd1f 355.TP
40dedbfe 356.B "'swap=N1,N2,N3,N4,N5,N6,N7,N8'"
fea681da
MK
357Set the eight parameters max_page_age, page_advance, page_decline,
358page_initial_age, age_cluster_fract, age_cluster_min, pageout_weight,
359bufferout_weight that control the kernel swap algorithm.
360For kernel tuners only.
bebbbd1f 361.TP
40dedbfe 362.B "'buff=N1,N2,N3,N4,N5,N6'"
fea681da
MK
363Set the six parameters max_buff_age, buff_advance, buff_decline,
364buff_initial_age, bufferout_weight, buffermem_grace that control
c13182ef
MK
365kernel buffer memory management.
366For kernel tuners only.
171b93eb 367.SS "Boot Arguments for Ramdisk Use"
40dedbfe
MK
368(Only if the kernel was compiled with
369.BR CONFIG_BLK_DEV_RAM .)
8c383102 370In general it is a bad idea to use a ramdisk under Linux \(em
fea681da
MK
371the system will use available memory more efficiently itself.
372But while booting (or while constructing boot floppies)
373it is often useful to load the floppy contents into a
c13182ef
MK
374ramdisk.
375One might also have a system in which first
24d01c53 376some modules (for file system or hardware) must be loaded
fea681da
MK
377before the main disk can be accessed.
378
379In Linux 1.3.48, ramdisk handling was changed drastically.
380Earlier, the memory was allocated statically, and there was
40dedbfe 381a 'ramdisk=N' parameter to tell its size.
c13182ef 382(This could also
fea681da
MK
383be set in the kernel image at compile time, or by use of
384.BR rdev (8).)
385These days ram disks use the buffer cache, and grow dynamically.
386For a lot of information (e.g., how to use
387.BR rdev (8)
388in conjunction with the new ramdisk setup), see
389.IR /usr/src/linux/Documentation/ramdisk.txt .
390
391There are four parameters, two boolean and two integral.
bebbbd1f 392.TP
40dedbfe 393.B "'load_ramdisk=N'"
c13182ef
MK
394If N=1, do load a ramdisk.
395If N=0, do not load a ramdisk.
fea681da 396(This is the default.)
bebbbd1f 397.TP
40dedbfe 398.B "'prompt_ramdisk=N'"
c13182ef
MK
399If N=1, do prompt for insertion of the floppy.
400(This is the default.)
401If N=0, do not prompt.
402(Thus, this parameter is never needed.)
bebbbd1f 403.TP
40dedbfe 404.BR 'ramdisk_size=N' " or (obsolete) " 'ramdisk=N'
c13182ef
MK
405Set the maximal size of the ramdisk(s) to N kB.
406The default is 4096 (4 MB).
bebbbd1f 407.TP
40dedbfe 408.B "'ramdisk_start=N'"
fea681da
MK
409Sets the starting block number (the offset on the floppy where
410the ramdisk starts) to N.
411This is needed in case the ramdisk follows a kernel image.
bebbbd1f 412.TP
40dedbfe
MK
413.B "'noinitrd'"
414(Only if the kernel was compiled with
415.B CONFIG_BLK_DEV_RAM
416and
417.BR CONFIG_BLK_DEV_INITRD .)
fea681da
MK
418These days it is possible to compile the kernel to use initrd.
419When this feature is enabled, the boot process will load the kernel
420and an initial ramdisk; then the kernel converts initrd into
421a "normal" ramdisk, which is mounted read-write as root device;
5fab2e7c 422then /linuxrc is executed; afterward the "real" root file system is mounted,
24d01c53 423and the initrd file system is moved over to /initrd; finally
75b94dc3 424the usual boot sequence (e.g., invocation of /sbin/init) is performed.
fea681da
MK
425
426For a detailed description of the initrd feature, see
427.IR /usr/src/linux/Documentation/initrd.txt .
428
40dedbfe 429The 'noinitrd' option tells the kernel that although it was compiled for
fea681da
MK
430operation with initrd, it should not go through the above steps, but
431leave the initrd data under
432.IR /dev/initrd .
4d9b6984 433(This device can be used only once: the data is freed as soon as
fea681da
MK
434the last process that used it has closed
435.IR /dev/initrd .)
171b93eb 436.SS "Boot Arguments for SCSI Devices"
fea681da
MK
437General notation for this section:
438
439.I iobase
c13182ef
MK
440-- the first I/O port that the SCSI host occupies.
441These are specified in hexadecimal notation,
442and usually lie in the range from 0x200 to 0x3ff.
fea681da
MK
443
444.I irq
445-- the hardware interrupt that the card is configured to use.
446Valid values will be dependent on the card in question, but will
c13182ef
MK
447usually be 5, 7, 9, 10, 11, 12, and 15.
448The other values are usually
fea681da
MK
449used for common peripherals like IDE hard disks, floppies, serial
450ports, etc.
451
452.I scsi-id
453-- the ID that the host adapter uses to identify itself on the
c13182ef
MK
454SCSI bus.
455Only some host adapters allow you to change this value, as
456most have it permanently specified internally.
457The usual default value
fea681da
MK
458is 7, but the Seagate and Future Domain TMC-950 boards use 6.
459
460.I parity
461-- whether the SCSI host adapter expects the attached devices
c13182ef
MK
462to supply a parity value with all information exchanges.
463Specifying a one indicates parity checking is enabled,
464and a zero disables parity checking.
465Again, not all adapters will support selection of parity
d9bfdb9c 466behavior as a boot argument.
bebbbd1f 467.TP
40dedbfe 468.B "'max_scsi_luns=...'"
310672d6 469A SCSI device can have a number of 'subdevices' contained within
c13182ef
MK
470itself.
471The most common example is one of the new SCSI CD-ROMs that
472handle more than one disk at a time.
473Each CD is addressed as a
25715c96 474\&'Logical Unit Number' (LUN) of that particular device.
c13182ef 475But most
fea681da
MK
476devices, such as hard disks, tape drives and such are only one device,
477and will be assigned to LUN zero.
478
479Some poorly designed SCSI devices cannot handle being probed for
c13182ef 480LUNs not equal to zero.
29aceda4 481Therefore, if the compile-time flag
40dedbfe
MK
482.B CONFIG_SCSI_MULTI_LUN
483is not set, newer kernels will by default only probe LUN zero.
fea681da
MK
484
485To specify the number of probed LUNs at boot, one enters
25715c96 486\&'max_scsi_luns=n' as a boot arg, where n is a number between one and
c13182ef
MK
487eight.
488To avoid problems as described above, one would use n=1 to
fea681da 489avoid upsetting such broken devices.
bebbbd1f
MK
490.TP
491.B "SCSI tape configuration"
fea681da
MK
492Some boot time configuration of the SCSI tape driver can be achieved
493by using the following:
494.IP
495.BI st= buf_size[,write_threshold[,max_bufs]]
bebbbd1f 496.sp
c13182ef
MK
497The first two numbers are specified in units of kB.
498The default
fea681da
MK
499.I buf_size
500is 32kB, and the maximum size that can be specified is a
c13182ef
MK
501ridiculous 16384kB.
502The
fea681da
MK
503.I write_threshold
504is the value at which the buffer is committed to tape, with a
c13182ef
MK
505default value of 30kB.
506The maximum number of buffers varies
fea681da
MK
507with the number of drives detected, and has a default of two.
508An example usage would be:
509.IP
510st=32,30,2
bebbbd1f 511.IP
4568d084
MK
512Full details can be found in the file
513.I Documentation/scsi/st.txt
514(or
515.I drivers/scsi/README.st
516for older kernels) in the kernel source.
bebbbd1f
MK
517.TP
518.B "Adaptec aha151x, aha152x, aic6260, aic6360, SB16-SCSI configuration"
fea681da
MK
519The aha numbers refer to cards and the aic numbers refer to the actual
520SCSI chip on these type of cards, including the Soundblaster-16 SCSI.
521
522The probe code for these SCSI hosts looks for an installed BIOS, and
c13182ef
MK
523if none is present, the probe will not find your card.
524Then you will
fea681da
MK
525have to use a boot arg of the form:
526.IP
527.BI aha152x= iobase[,irq[,scsi-id[,reconnect[,parity]]]]
bebbbd1f 528.IP
fea681da
MK
529If the driver was compiled with debugging enabled, a sixth
530value can be specified to set the debug level.
531
532All the parameters are as described at the top of this section, and the
533.I reconnect
c7094399 534value will allow device disconnect/reconnect if a nonzero value
c13182ef
MK
535is used.
536An example usage is as follows:
fea681da
MK
537.IP
538aha152x=0x340,11,7,1
bebbbd1f 539.IP
fea681da
MK
540Note that the parameters must be specified in order, meaning that if
541you want to specify a parity setting, then you will have to specify an
542iobase, irq, scsi-id and reconnect value as well.
bebbbd1f
MK
543.TP
544.B "Adaptec aha154x configuration"
fea681da 545The aha1542 series cards have an i82077 floppy controller onboard,
c13182ef
MK
546while the aha1540 series cards do not.
547These are busmastering cards,
324633ae 548and have parameters to set the "fairness" that is used to share
c13182ef
MK
549the bus with other devices.
550The boot arg looks like the following.
fea681da
MK
551.IP
552.BI aha1542= iobase[,buson,busoff[,dmaspeed]]
bebbbd1f 553.IP
fea681da 554Valid iobase values are usually one of: 0x130, 0x134, 0x230, 0x234,
c13182ef
MK
5550x330, 0x334.
556Clone cards may permit other values.
fea681da
MK
557
558The
559.IR buson ", " busoff
560values refer to the number of microseconds that the
c13182ef
MK
561card dominates the ISA bus.
562The defaults are 11us on, and 4us off, so
fea681da
MK
563that other cards (such as an ISA LANCE Ethernet card) have a chance to
564get access to the ISA bus.
565
566The
567.I dmaspeed
568value refers to the rate (in MB/s) at which the DMA
c13182ef
MK
569(Direct Memory Access) transfers proceed.
570The default is 5MB/s.
fea681da 571Newer revision cards allow you to select this value as part of the
c13182ef
MK
572soft-configuration, older cards use jumpers.
573You can use values up to
fea681da
MK
57410MB/s assuming that your motherboard is capable of handling it.
575Experiment with caution if using values over 5MB/s.
bebbbd1f
MK
576.TP
577.B "Adaptec aha274x, aha284x, aic7xxx configuration"
fea681da
MK
578These boards can accept an argument of the form:
579.IP
580.BI aic7xxx= extended,no_reset
bebbbd1f 581.IP
fea681da
MK
582The
583.I extended
c7094399 584value, if nonzero, indicates that extended translation for large
c13182ef
MK
585disks is enabled.
586The
fea681da 587.I no_reset
c7094399 588value, if nonzero, tells the driver not to reset the SCSI bus when
d89be9f3 589setting up the host adapter at boot.
bebbbd1f 590.TP
40dedbfe 591.B "AdvanSys SCSI Hosts configuration ('advansys=')"
fea681da 592The AdvanSys driver can accept up to four i/o addresses that will be
c13182ef
MK
593probed for an AdvanSys SCSI card.
594Note that these values (if used) do
595not effect EISA or PCI probing in any way.
596They are only used for
597probing ISA and VLB cards.
598In addition, if the driver has been
fea681da 599compiled with debugging enabled, the level of debugging output can be
c13182ef
MK
600set by adding an 0xdeb[0-f] parameter.
601The 0-f allows setting the
fea681da 602level of the debugging messages to any of 16 levels of verbosity.
bebbbd1f
MK
603.TP
604.B "AM53C974"
fea681da
MK
605.IP
606.BI AM53C974= host-scsi-id,target-scsi-id,max-rate,max-offset
bebbbd1f 607.TP
40dedbfe 608.B "BusLogic SCSI Hosts configuration ('BusLogic=')"
fea681da
MK
609.IP
610.BI BusLogic= N1,N2,N3,N4,N5,S1,S2,...
bebbbd1f 611.IP
fea681da
MK
612For an extensive discussion of the BusLogic command line parameters,
613see
0daa9e92 614.I /usr/src/linux/drivers/scsi/BusLogic.c
c13182ef
MK
615(lines 3149-3270 in the kernel version I am looking at).
616The text
fea681da
MK
617below is a very much abbreviated extract.
618
c13182ef
MK
619The parameters N1-N5 are integers.
620The parameters S1,... are strings.
fea681da
MK
621N1 is the I/O Address at which the Host Adapter is located.
622N2 is the Tagged Queue Depth to use for Target Devices that support
623Tagged Queuing.
c13182ef
MK
624N3 is the Bus Settle Time in seconds.
625This is the amount of time
fea681da
MK
626to wait between a Host Adapter Hard Reset which
627initiates a SCSI Bus Reset and issuing any SCSI Commands.
628N4 is the Local Options (for one Host Adapter).
629N5 is the Global Options (for all Host Adapters).
630
631The string options are used to provide control over Tagged Queuing
632(TQ:Default, TQ:Enable, TQ:Disable, TQ:<Per-Target-Spec>), over
633Error Recovery (ER:Default, ER:HardReset, ER:BusDeviceReset,
634ER:None, ER:<Per-Target-Spec>), and over Host Adapter Probing
635(NoProbe, NoProbeISA, NoSortPCI).
bebbbd1f
MK
636.TP
637.B "EATA/DMA configuration"
fea681da
MK
638The default list of i/o ports to be probed can be changed by
639.IP
40dedbfe 640.BI eata= iobase,iobase,...\fP.
bebbbd1f
MK
641.TP
642.B "Future Domain TMC-16x0 configuration"
fea681da
MK
643.IP
644.BI fdomain= iobase,irq[,adapter_id]
bebbbd1f
MK
645.TP
646.B "Great Valley Products (GVP) SCSI controller configuration"
fea681da
MK
647.IP
648.BI gvp11= dma_transfer_bitmask
bebbbd1f
MK
649.TP
650.B "Future Domain TMC-8xx, TMC-950 configuration"
fea681da
MK
651.IP
652.BI tmc8xx= mem_base,irq
bebbbd1f 653.IP
fea681da
MK
654The
655.I mem_base
656value is the value of the memory mapped I/O region that
c13182ef
MK
657the card uses.
658This will usually be one of the following values:
fea681da 6590xc8000, 0xca000, 0xcc000, 0xce000, 0xdc000, 0xde000.
bebbbd1f
MK
660.TP
661.B "IN2000 configuration"
fea681da
MK
662.IP
663.BI in2000= S
bebbbd1f 664.IP
fea681da
MK
665where S is a comma-separated string of items keyword[:value].
666Recognized keywords (possibly with value) are:
667ioport:addr, noreset, nosync:x, period:ns, disconnect:x,
c13182ef
MK
668debug:x, proc:x.
669For the function of these parameters, see
fea681da 670.IR /usr/src/linux/drivers/scsi/in2000.c .
bebbbd1f
MK
671.TP
672.B "NCR5380 and NCR53C400 configuration"
fea681da
MK
673The boot arg is of the form
674.IP
675.BI ncr5380= iobase,irq,dma
bebbbd1f 676.IP
fea681da
MK
677or
678.IP
679.BI ncr53c400= iobase,irq
bebbbd1f 680.IP
fea681da 681If the card doesn't use interrupts, then an IRQ value of 255 (0xff) will
c13182ef
MK
682disable interrupts.
683An IRQ value of 254 means to autoprobe.
4568d084
MK
684More details can be found in the file
685.I Documentation/scsi/g_NCR5380.txt
686(or
687.I drivers/scsi/README.g_NCR5380
688for older kernels) in the kernel source.
bebbbd1f
MK
689.TP
690.B "NCR53C8xx configuration"
fea681da
MK
691.IP
692.BI ncr53c8xx= S
bebbbd1f 693.IP
fea681da
MK
694where S is a comma-separated string of items keyword:value.
695Recognized keywords are: mpar (master_parity), spar (scsi_parity),
696disc (disconnection), specf (special_features), ultra (ultra_scsi),
697fsn (force_sync_nego), tags (default_tags), sync (default_sync),
698verb (verbose), debug (debug), burst (burst_max).
699For the function of the assigned values, see
700.IR /usr/src/linux/drivers/scsi/ncr53c8xx.c .
bebbbd1f
MK
701.TP
702.B "NCR53c406a configuration"
fea681da
MK
703.IP
704.BI ncr53c406a= iobase[,irq[,fastpio]]
bebbbd1f 705.IP
24b74457 706Specify irq = 0 for noninterrupt driven mode.
fea681da 707Set fastpio = 1 for fast pio mode, 0 for slow mode.
bebbbd1f
MK
708.TP
709.B "Pro Audio Spectrum configuration"
fea681da 710The PAS16 uses a NC5380 SCSI chip, and newer models support
c13182ef
MK
711jumperless configuration.
712The boot arg is of the form:
fea681da
MK
713.IP
714.BI pas16= iobase,irq
bebbbd1f 715.IP
fea681da
MK
716The only difference is that you can specify an IRQ value of 255, which
717will tell the driver to work without using interrupts, albeit at a
c13182ef
MK
718performance loss.
719The iobase is usually 0x388.
bebbbd1f
MK
720.TP
721.B "Seagate ST-0x configuration"
fea681da
MK
722If your card is not detected at boot time,
723you will then have to use a boot arg of the form:
724.IP
725.BI st0x= mem_base,irq
bebbbd1f 726.IP
fea681da
MK
727The
728.I mem_base
729value is the value of the memory mapped I/O region that
c13182ef
MK
730the card uses.
731This will usually be one of the following values:
fea681da 7320xc8000, 0xca000, 0xcc000, 0xce000, 0xdc000, 0xde000.
bebbbd1f
MK
733.TP
734.B "Trantor T128 configuration"
fea681da
MK
735These cards are also based on the NCR5380 chip, and accept the
736following options:
737.IP
738.BI t128= mem_base,irq
bebbbd1f 739.IP
fea681da
MK
740The valid values for
741.I mem_base
742are as follows: 0xcc000, 0xc8000, 0xdc000, 0xd8000.
bebbbd1f
MK
743.TP
744.B "UltraStor 14F/34F configuration"
fea681da
MK
745The default list of i/o ports to be probed can be changed by
746.IP
747.BI eata= iobase,iobase,... .
bebbbd1f
MK
748.TP
749.B "WD7000 configuration"
fea681da
MK
750.IP
751.BI wd7000= irq,dma,iobase
bebbbd1f
MK
752.TP
753.B "Commodore Amiga A2091/590 SCSI controller configuration"
fea681da
MK
754.IP
755.BI wd33c93= S
bebbbd1f 756.IP
c13182ef
MK
757where S is a comma-separated string of options.
758Recognized options are
fea681da 759nosync:bitmask, nodma:x, period:ns, disconnect:x, debug:x,
c13182ef
MK
760clock:x, next.
761For details, see
fea681da 762.IR /usr/src/linux/drivers/scsi/wd33c93.c .
171b93eb 763.SS "Hard Disks"
bebbbd1f
MK
764.TP
765.B "IDE Disk/CD-ROM Driver Parameters"
fea681da 766The IDE driver accepts a number of parameters, which range from disk
c13182ef 767geometry specifications, to support for broken controller chips.
e2badfdf 768Drive-specific options are specified by using 'hdX=' with X in 'a'-'h'.
fea681da 769
e2badfdf
MK
770Non-drive-specific options are specified with the prefix 'hd='.
771Note that using a drive-specific prefix for a non-drive-specific option
fea681da
MK
772will still work, and the option will just be applied as expected.
773
40dedbfe 774Also note that 'hd=' can be used to refer to the next unspecified
c13182ef
MK
775drive in the (a, ..., h) sequence.
776For the following discussions,
40dedbfe 777the 'hd=' option will be cited for brevity.
c13182ef 778See the file
4568d084
MK
779.I Documentation/ide.txt
780(or
781.I drivers/block/README.ide
782for older kernels) in the kernel source for more details.
bebbbd1f 783.TP
40dedbfe 784.B "The 'hd=cyls,heads,sects[,wpcom[,irq]]' options"
fea681da 785These options are used to specify the physical geometry of the disk.
c13182ef
MK
786Only the first three values are required.
787The cylinder/head/sectors
788values will be those used by fdisk.
789The write precompensation value
790is ignored for IDE disks.
791The IRQ value specified will be the IRQ
fea681da 792used for the interface that the drive resides on, and is not really a
e2badfdf 793drive-specific parameter.
bebbbd1f 794.TP
40dedbfe 795.B "The 'hd=serialize' option"
fea681da
MK
796The dual IDE interface CMD-640 chip is broken as designed such that
797when drives on the secondary interface are used at the same time as
c13182ef
MK
798drives on the primary interface, it will corrupt your data.
799Using this
fea681da
MK
800option tells the driver to make sure that both interfaces are never
801used at the same time.
bebbbd1f 802.TP
40dedbfe 803.B "The 'hd=dtc2278' option"
fea681da 804This option tells the driver that you have a DTC-2278D IDE interface.
e2badfdf 805The driver then tries to do DTC-specific operations to enable the
fea681da 806second interface and to enable faster transfer modes.
bebbbd1f 807.TP
40dedbfe 808.B "The 'hd=noprobe' option"
c13182ef
MK
809Do not probe for this drive.
810For example,
fea681da
MK
811.IP
812hdb=noprobe hdb=1166,7,17
bebbbd1f 813.IP
fea681da
MK
814would disable the probe, but still specify the drive geometry so
815that it would be registered as a valid block device, and hence
816usable.
bebbbd1f 817.TP
40dedbfe
MK
818.B "The 'hd=nowerr' option"
819Some drives apparently have the
820.B WRERR_STAT
821bit stuck on permanently.
fea681da 822This enables a work-around for these broken devices.
bebbbd1f 823.TP
40dedbfe 824.B "The 'hd=cdrom' option"
fea681da 825This tells the IDE driver that there is an ATAPI compatible CD-ROM
c13182ef
MK
826attached in place of a normal IDE hard disk.
827In most cases the CD-ROM
fea681da 828is identified automatically, but if it isn't then this may help.
bebbbd1f 829.TP
40dedbfe 830.B "Standard ST-506 Disk Driver Options ('hd=')"
fea681da 831The standard disk driver can accept geometry arguments for the disks
c13182ef
MK
832similar to the IDE driver.
833Note however that it only expects three
834values (C/H/S); any more or any less and it will silently ignore you.
40dedbfe 835Also, it only accepts 'hd=' as an argument, that is, 'hda='
c13182ef
MK
836and so on are not valid here.
837The format is as follows:
fea681da
MK
838.IP
839hd=cyls,heads,sects
bebbbd1f 840.IP
fea681da
MK
841If there are two disks installed, the above is repeated with the
842geometry parameters of the second disk.
bebbbd1f 843.TP
40dedbfe 844.B "XT Disk Driver Options ('xd=')"
fea681da
MK
845If you are unfortunate enough to be using one of these old 8 bit cards
846that move data at a whopping 125kB/s then here is the scoop.
d9bfdb9c 847If the card is not recognized, you will have to use a boot arg of the form:
fea681da
MK
848.IP
849xd=type,irq,iobase,dma_chan
bebbbd1f 850.IP
fea681da 851The type value specifies the particular manufacturer of the card,
c13182ef
MK
852overriding autodetection.
853For the types to use, consult the
fea681da 854.I drivers/block/xd.c
c13182ef
MK
855source file of the kernel you are using.
856The type is an index in the list
fea681da
MK
857.I xd_sigs
858and in the course of time
859.\" 1.1.50, 1.3.81, 1.3.99, 2.0.34, 2.1.67, 2.1.78, 2.1.127
860types have been added to or deleted from the middle of the list,
c13182ef
MK
861changing all type numbers.
862Today (Linux 2.5.0) the types are
fea681da
MK
8630=generic; 1=DTC 5150cx; 2,3=DTC 5150x; 4,5=Western Digital;
8646,7,8=Seagate; 9=Omti; 10=XEBEC, and where here several types are
865given with the same designation, they are equivalent.
866
867The xd_setup() function does no checking on the values, and assumes
c13182ef
MK
868that you entered all four values.
869Don't disappoint it.
870Here is an
fea681da 871example usage for a WD1002 controller with the BIOS disabled/removed,
40dedbfe 872using the 'default' XT controller parameters:
fea681da
MK
873.IP
874xd=2,5,0x320,3
bebbbd1f
MK
875.TP
876.B "Syquest's EZ* removable disks"
fea681da
MK
877.IP
878.BI ez= iobase[,irq[,rep[,nybble]]]
171b93eb 879.SS "IBM MCA Bus Devices"
fea681da
MK
880See also
881.IR /usr/src/linux/Documentation/mca.txt .
bebbbd1f
MK
882.TP
883.B "PS/2 ESDI hard disks"
fea681da
MK
884It is possible to specify the desired geometry at boot time:
885.IP
886.BI ed= cyls,heads,sectors.
bebbbd1f 887.IP
fea681da
MK
888For a ThinkPad-720, add the option
889.IP
890.BR tp720=1 .
bebbbd1f
MK
891.TP
892.B "IBM Microchannel SCSI Subsystem configuration"
fea681da
MK
893.IP
894.BI ibmmcascsi= N
bebbbd1f 895.IP
fea681da 896where N is the \fIpun\fP (SCSI ID) of the subsystem.
bebbbd1f
MK
897.TP
898.B "The Aztech Interface"
fea681da
MK
899The syntax for this type of card is:
900.IP
901aztcd=iobase[,magic_number]
bebbbd1f 902.IP
fea681da 903If you set the magic_number to 0x79 then the driver will try and run
c13182ef
MK
904anyway in the event of an unknown firmware version.
905All other values
fea681da 906are ignored.
bebbbd1f
MK
907.TP
908.B "Parallel port CD-ROM drives"
fea681da
MK
909Syntax:
910.IP
911pcd.driveN=prt,pro,uni,mod,slv,dly
912.br
913pcd.nice=nice
bebbbd1f 914.IP
40dedbfe
MK
915where 'port' is the base address, 'pro' is the protocol number, 'uni'
916is the unit selector (for chained devices), 'mod' is the mode (or \-1
917to choose the best automatically), 'slv' is 1 if it should be a slave,
918and 'dly' is a small integer for slowing down port accesses.
919The 'nice' parameter controls the driver's use of idle CPU time, at the
fea681da 920expense of some speed.
bebbbd1f
MK
921.TP
922.B "The CDU-31A and CDU-33A Sony Interface"
fea681da 923This CD-ROM interface is found on some of the Pro Audio Spectrum sound
c13182ef
MK
924cards, and other Sony supplied interface cards.
925The syntax is as follows:
fea681da
MK
926.IP
927cdu31a=iobase,[irq[,is_pas_card]]
bebbbd1f 928.IP
fea681da 929Specifying an IRQ value of zero tells the driver that hardware
c13182ef
MK
930interrupts aren't supported (as on some PAS cards).
931If your card
fea681da
MK
932supports interrupts, you should use them as it cuts down on the CPU
933usage of the driver.
934
935The
936.I is_pas_card
40dedbfe 937should be entered as 'PAS' if using a Pro Audio Spectrum card,
fea681da 938and otherwise it should not be specified at all.
bebbbd1f
MK
939.TP
940.B "The CDU-535 Sony Interface"
fea681da
MK
941The syntax for this CD-ROM interface is:
942.IP
943sonycd535=iobase[,irq]
bebbbd1f 944.IP
40dedbfe 945A zero can be used for the I/O base as a 'placeholder' if one wishes
fea681da 946to specify an IRQ value.
bebbbd1f
MK
947.TP
948.B "The GoldStar Interface"
fea681da
MK
949The syntax for this CD-ROM interface is:
950.IP
951gscd=iobase
bebbbd1f
MK
952.TP
953.B "The ISP16 CD-ROM Interface"
fea681da
MK
954Syntax:
955.IP
956isp16=[iobase[,irq[,dma[,type]]]]
bebbbd1f 957.IP
c13182ef 958(three integers and a string).
40dedbfe 959If the type is given as 'noisp16',
c13182ef
MK
960the interface will not be configured.
961Other recognized types
40dedbfe 962are: 'Sanyo", 'Sony', 'Panasonic' and 'Mitsumi'.
bebbbd1f
MK
963.TP
964.B "The Mitsumi Standard Interface"
fea681da
MK
965The syntax for this CD-ROM interface is:
966.IP
967mcd=iobase,[irq[,wait_value]]
bebbbd1f 968.IP
fea681da
MK
969The
970.I wait_value
971is used as an internal timeout value for people who are
972having problems with their drive, and may or may not be implemented
29aceda4 973depending on a compile-time #define.
fea681da
MK
974The Mitsumi FX400 is an IDE/ATAPI CD-ROM player and does not use
975the mcd driver.
bebbbd1f
MK
976.TP
977.B "The Mitsumi XA/MultiSession Interface"
fea681da
MK
978This is for the same hardware as above, but the driver has extended features.
979Syntax:
980.IP
981mcdx=iobase[,irq]
bebbbd1f
MK
982.TP
983.B "The Optics Storage Interface"
fea681da
MK
984The syntax for this type of card is:
985.IP
986optcd=iobase
bebbbd1f
MK
987.TP
988.B "The Phillips CM206 Interface"
fea681da
MK
989The syntax for this type of card is:
990.IP
991cm206=[iobase][,irq]
bebbbd1f 992.IP
fea681da
MK
993The driver assumes numbers between 3 and 11 are IRQ values, and
994numbers between 0x300 and 0x370 are I/O ports, so you can specify one,
c13182ef 995or both numbers, in any order.
40dedbfe 996It also accepts 'cm206=auto' to enable
fea681da 997autoprobing.
bebbbd1f
MK
998.TP
999.B "The Sanyo Interface"
fea681da
MK
1000The syntax for this type of card is:
1001.IP
1002sjcd=iobase[,irq[,dma_channel]]
bebbbd1f
MK
1003.TP
1004.B "The SoundBlaster Pro Interface"
fea681da
MK
1005The syntax for this type of card is:
1006.IP
1007sbpcd=iobase,type
bebbbd1f 1008.IP
fea681da 1009where type is one of the following (case sensitive) strings:
25715c96 1010\&'SoundBlaster', 'LaserMate', or 'SPEA'.
c13182ef 1011The I/O base is that of the
fea681da 1012CD-ROM interface, and not that of the sound portion of the card.
171b93eb 1013.SS "Ethernet Devices"
fea681da 1014Different drivers make use of different parameters, but they all at
c13182ef
MK
1015least share having an IRQ, an I/O port base value, and a name.
1016In its most generic form, it looks something like this:
fea681da
MK
1017.IP
1018ether=irq,iobase[,param_1[,...param_8]],name
bebbbd1f 1019.IP
80c9146c 1020The first nonnumeric argument is taken as the name.
c13182ef
MK
1021The param_n values (if applicable) usually have different meanings for each
1022different card/driver.
1023Typical param_n values are used to specify
fea681da
MK
1024things like shared memory address, interface selection, DMA channel
1025and the like.
1026
1027The most common use of this parameter is to force probing for a second
c13182ef
MK
1028ethercard, as the default is to only probe for one.
1029This can be accomplished with a simple:
fea681da
MK
1030.IP
1031ether=0,0,eth1
bebbbd1f 1032.IP
fea681da
MK
1033Note that the values of zero for the IRQ and I/O base in the above
1034example tell the driver(s) to autoprobe.
1035
1036The Ethernet-HowTo has extensive documentation on using multiple
e2badfdf 1037cards and on the card/driver-specific implementation
c13182ef
MK
1038of the param_n values where used.
1039Interested readers should refer to
fea681da 1040the section in that document on their particular card.
171b93eb 1041.SS "The Floppy Disk Driver"
fea681da 1042There are many floppy driver options, and they are all listed in
4568d084
MK
1043.I Documentation/floppy.txt
1044(or
1045.I drivers/block/README.fd
1046for older kernels) in the kernel source.
c13182ef 1047This information is taken directly
fea681da 1048from that file.
bebbbd1f
MK
1049.TP
1050.B "floppy=mask,allowed_drive_mask"
10f5f294 1051Sets the bit mask of allowed drives to mask.
c13182ef
MK
1052By default, only units 0
1053and 1 of each floppy controller are allowed.
1054This is done because
c8f2dd47 1055certain nonstandard hardware (ASUS PCI motherboards) mess up the
c13182ef
MK
1056keyboard when accessing units 2 or 3.
1057This option is somewhat
fea681da 1058obsoleted by the cmos option.
bebbbd1f
MK
1059.TP
1060.B "floppy=all_drives"
10f5f294 1061Sets the bit mask of allowed drives to all drives.
c13182ef 1062Use this if you have
fea681da 1063more than two drives connected to a floppy controller.
bebbbd1f
MK
1064.TP
1065.B "floppy=asus_pci"
6387216b
MK
1066Sets the bit mask to allow only units 0 and 1.
1067(The default)
bebbbd1f
MK
1068.TP
1069.B "floppy=daring"
fea681da 1070Tells the floppy driver that you have a well behaved floppy
c13182ef
MK
1071controller.
1072This allows more efficient and smoother operation, but
1073may fail on certain controllers.
1074This may speed up certain operations.
bebbbd1f
MK
1075.TP
1076.B "floppy=0,daring"
fea681da
MK
1077Tells the floppy driver that your floppy controller should be used
1078with caution.
bebbbd1f
MK
1079.TP
1080.B "floppy=one_fdc"
fea681da 1081Tells the floppy driver that you have only floppy controller (default)
bebbbd1f 1082.TP
40dedbfe 1083.BR floppy=two_fdc " or " floppy=address,two_fdc
c13182ef
MK
1084Tells the floppy driver that you have two floppy controllers.
1085The second floppy controller is assumed to be at address.
1086If address is
fea681da 1087not given, 0x370 is assumed.
bebbbd1f
MK
1088.TP
1089.B "floppy=thinkpad"
c13182ef
MK
1090Tells the floppy driver that you have a Thinkpad.
1091Thinkpads use an
fea681da 1092inverted convention for the disk change line.
bebbbd1f
MK
1093.TP
1094.B "floppy=0,thinkpad"
fea681da 1095Tells the floppy driver that you don't have a Thinkpad.
bebbbd1f
MK
1096.TP
1097.B "floppy=drive,type,cmos"
c13182ef
MK
1098Sets the cmos type of drive to type.
1099Additionally, this drive is
10f5f294 1100allowed in the bit mask.
c13182ef 1101This is useful if you have more than two
fea681da 1102floppy drives (only two can be described in the physical cmos), or if
c8f2dd47 1103your BIOS uses nonstandard CMOS types.
c13182ef 1104Setting the CMOS to 0 for the
fea681da
MK
1105first two drives (default) makes the floppy driver read the physical
1106cmos for those drives.
bebbbd1f
MK
1107.TP
1108.B "floppy=unexpected_interrupts"
fea681da 1109Print a warning message when an unexpected interrupt is received
d9bfdb9c 1110(default behavior)
bebbbd1f 1111.TP
40dedbfe 1112.BR floppy=no_unexpected_interrupts " or " floppy=L40SX
c13182ef
MK
1113Don't print a message when an unexpected interrupt is received.
1114This is needed on IBM L40SX laptops in certain video modes.
1115(There seems to
1116be an interaction between video and floppy.
1117The unexpected interrupts
fea681da 1118only affect performance, and can safely be ignored.)
171b93eb 1119.SS "The Sound Driver"
fea681da 1120The sound driver can also accept boot args to override the compiled in
c13182ef
MK
1121values.
1122This is not recommended, as it is rather complex.
ef505ff0
MK
1123It is described in the kernel source file
1124.IR Documentation/sound/oss/README.OSS
1125.RI ( drivers/sound/Readme.linux
1126in older kernel versions).
c13182ef 1127It accepts
fea681da
MK
1128a boot arg of the form:
1129.IP
1130sound=device1[,device2[,device3...[,device10]]]
bebbbd1f 1131.IP
fea681da
MK
1132where each deviceN value is of the following format 0xTaaaId and the
1133bytes are used as follows:
1134
4d9b6984 1135T \- device type: 1=FM, 2=SB, 3=PAS, 4=GUS, 5=MPU401, 6=SB16,
fea681da
MK
11367=SB16-MPU401
1137
4d9b6984 1138aaa \- I/O address in hex.
fea681da 1139
4d9b6984 1140I \- interrupt line in hex (i.e 10=a, 11=b, ...)
fea681da 1141
4d9b6984 1142d \- DMA channel.
fea681da
MK
1143
1144As you can see it gets pretty messy, and you are better off to compile
c13182ef
MK
1145in your own personal values as recommended.
1146Using a boot arg of
25715c96 1147\&'sound=0' will disable the sound driver entirely.
171b93eb 1148.SS "ISDN Drivers"
bebbbd1f
MK
1149.TP
1150.B "The ICN ISDN driver"
fea681da
MK
1151Syntax:
1152.IP
1153icn=iobase,membase,icn_id1,icn_id2
bebbbd1f 1154.IP
fea681da
MK
1155where icn_id1,icn_id2 are two strings used to identify the
1156card in kernel messages.
bebbbd1f
MK
1157.TP
1158.B "The PCBIT ISDN driver"
fea681da
MK
1159Syntax:
1160.IP
1161pcbit=membase1,irq1[,membase2,irq2]
bebbbd1f 1162.IP
fea681da 1163where membaseN is the shared memory base of the N'th card, and irqN is
c13182ef
MK
1164the interrupt setting of the N'th card.
1165The default is IRQ 5 and
fea681da 1166membase 0xD0000.
bebbbd1f
MK
1167.TP
1168.B "The Teles ISDN driver"
fea681da
MK
1169Syntax:
1170.IP
1171teles=iobase,irq,membase,protocol,teles_id
bebbbd1f 1172.IP
fea681da
MK
1173where iobase is the i/o port address of the card, membase is the
1174shared memory base address of the card, irq is the interrupt channel
1175the card uses, and teles_id is the unique ASCII string identifier.
171b93eb 1176.SS "Serial Port Drivers"
bebbbd1f 1177.TP
40dedbfe 1178.B "The RISCom/8 Multiport Serial Driver ('riscom8=')"
fea681da
MK
1179Syntax:
1180.IP
1181riscom=iobase1[,iobase2[,iobase3[,iobase4]]]
bebbbd1f 1182.IP
fea681da
MK
1183More details can be found in
1184.IR /usr/src/linux/Documentation/riscom8.txt .
bebbbd1f 1185.TP
40dedbfe 1186.B "The DigiBoard Driver ('digi=')"
fea681da
MK
1187If this option is used, it should have precisely six parameters.
1188Syntax:
1189.IP
1190digi=status,type,altpin,numports,iobase,membase
bebbbd1f 1191.IP
fea681da
MK
1192The parameters maybe given as integers, or as strings.
1193If strings are used, then iobase and membase should be given
1194in hexadecimal.
1195The integer arguments (fewer may be given) are in order:
1196status (Enable(1) or Disable(0) this card),
1197type (PC/Xi(0), PC/Xe(1), PC/Xeve(2), PC/Xem(3)),
1198altpin (Enable(1) or Disable(0) alternate pin arrangement),
1199numports (number of ports on this card),
1200iobase (I/O Port where card is configured (in HEX)),
1201membase (base of memory window (in HEX)).
1202Thus, the following two boot prompt arguments are equivalent:
1203.IP
1204digi=E,PC/Xi,D,16,200,D0000
1205.br
1206digi=1,0,0,16,0x200,851968
bebbbd1f 1207.IP
fea681da
MK
1208More details can be found in
1209.IR /usr/src/linux/Documentation/digiboard.txt .
bebbbd1f
MK
1210.TP
1211.B "The Baycom Serial/Parallel Radio Modem"
fea681da
MK
1212Syntax:
1213.IP
1214baycom=iobase,irq,modem
bebbbd1f 1215.IP
fea681da 1216There are precisely 3 parameters; for several cards, give
40dedbfe 1217several 'baycom=' commands.
c13182ef 1218The modem parameter is a string
fea681da
MK
1219that can take one of the values ser12, ser12*, par96, par96*.
1220Here the * denotes that software DCD is to be used, and
1221ser12/par96 chooses between the supported modem types.
4568d084
MK
1222For more details, see the file
1223.I Documentation/networking/baycom.txt
1224(or
1225.I drivers/net/README.baycom
1226for older kernels) in the kernel source.
bebbbd1f
MK
1227.TP
1228.B "Soundcard radio modem driver"
fea681da
MK
1229Syntax:
1230.IP
1231soundmodem=iobase,irq,dma[,dma2[,serio[,pario]]],0,mode
bebbbd1f 1232.IP
fea681da
MK
1233All parameters except the last are integers;
1234the dummy 0 is required because of a bug in the setup code.
1235The mode parameter is a string with syntax hw:modem,
1236where hw is one of sbc, wss, wssfdx and modem is one of
1237afsk1200, fsk9600.
171b93eb 1238.SS "The Line Printer Driver"
bebbbd1f 1239.TP
40dedbfe 1240.B "'lp='"
fea681da
MK
1241Syntax:
1242.IP
1243lp=0
1244.br
1245lp=auto
1246.br
1247lp=reset
1248.br
1249lp=port[,port...]
bebbbd1f 1250.IP
fea681da 1251You can tell the printer driver what ports to use and what ports not
c13182ef
MK
1252to use.
1253The latter comes in handy if you don't want the printer driver
fea681da 1254to claim all available parallel ports, so that other drivers
75b94dc3 1255(e.g., PLIP, PPA) can use them instead.
fea681da 1256
c13182ef
MK
1257The format of the argument is multiple port names.
1258For example,
fea681da 1259lp=none,parport0 would use the first parallel port for lp1, and
c13182ef
MK
1260disable lp0.
1261To disable the printer driver entirely, one can use
fea681da 1262lp=0.
bebbbd1f
MK
1263.TP
1264.B "WDT500/501 driver"
fea681da
MK
1265Syntax:
1266.IP
1267wdt=io,irq
171b93eb 1268.SS "Mouse Drivers"
bebbbd1f 1269.TP
40dedbfe 1270.B "'bmouse=irq'"
fea681da
MK
1271The busmouse driver only accepts one parameter, that being the
1272hardware IRQ value to be used.
bebbbd1f 1273.TP
40dedbfe 1274.B "'msmouse=irq'"
fea681da 1275And precisely the same is true for the msmouse driver.
bebbbd1f
MK
1276.TP
1277.B "ATARI mouse setup"
1278.IP
fea681da
MK
1279atamouse=threshold[,y-threshold]
1280.IP
1281If only one argument is given, it is used for both
c13182ef
MK
1282x-threshold and y-threshold.
1283Otherwise, the first argument
fea681da
MK
1284is the x-threshold, and the second the y-threshold.
1285These values must lie between 1 and 20 (inclusive); the default is 2.
171b93eb 1286.SS "Video Hardware"
bebbbd1f 1287.TP
40dedbfe 1288.B "'no-scroll'"
fea681da
MK
1289This option tells the console driver not to use hardware scroll
1290(where a scroll is effected by moving the screen origin in video
c13182ef
MK
1291memory, instead of moving the data).
1292It is required by certain
fea681da 1293Braille machines.
fd7f0a7f
MK
1294.\" .SH AUTHORS
1295.\" Linus Torvalds (and many others)
fea681da
MK
1296.SH "SEE ALSO"
1297.BR lilo.conf (5),
1298.BR klogd (8),
1299.BR lilo (8),
1300.BR mount (8),
1301.BR rdev (8)
1302
1303Large parts of this man page have been derived from the
1304Boot Parameter HOWTO (version 1.0.1) written by Paul Gortmaker.
1305More information may be found in this (or a more recent) HOWTO.
b9560046 1306An up-to-date source of information is
fea681da 1307.IR /usr/src/linux/Documentation/kernel-parameters.txt .