About Kernel Documentation Linux Kernel Contact Linux Resources Linux Blog

Documentation / x86 / x86_64 / boot-options.txt




Custom Search

Based on kernel version 3.9. Page generated on 2013-05-02 23:17 EST.

1	AMD64 specific boot options
2	
3	There are many others (usually documented in driver documentation), but
4	only the AMD64 specific ones are listed here.
5	
6	Machine check
7	
8	   Please see Documentation/x86/x86_64/machinecheck for sysfs runtime tunables.
9	
10	   mce=off
11			Disable machine check
12	   mce=no_cmci
13			Disable CMCI(Corrected Machine Check Interrupt) that
14			Intel processor supports.  Usually this disablement is
15			not recommended, but it might be handy if your hardware
16			is misbehaving.
17			Note that you'll get more problems without CMCI than with
18			due to the shared banks, i.e. you might get duplicated
19			error logs.
20	   mce=dont_log_ce
21			Don't make logs for corrected errors.  All events reported
22			as corrected are silently cleared by OS.
23			This option will be useful if you have no interest in any
24			of corrected errors.
25	   mce=ignore_ce
26			Disable features for corrected errors, e.g. polling timer
27			and CMCI.  All events reported as corrected are not cleared
28			by OS and remained in its error banks.
29			Usually this disablement is not recommended, however if
30			there is an agent checking/clearing corrected errors
31			(e.g. BIOS or hardware monitoring applications), conflicting
32			with OS's error handling, and you cannot deactivate the agent,
33			then this option will be a help.
34	   mce=bootlog
35			Enable logging of machine checks left over from booting.
36			Disabled by default on AMD because some BIOS leave bogus ones.
37			If your BIOS doesn't do that it's a good idea to enable though
38			to make sure you log even machine check events that result
39			in a reboot. On Intel systems it is enabled by default.
40	   mce=nobootlog
41			Disable boot machine check logging.
42	   mce=tolerancelevel[,monarchtimeout] (number,number)
43			tolerance levels:
44			0: always panic on uncorrected errors, log corrected errors
45			1: panic or SIGBUS on uncorrected errors, log corrected errors
46			2: SIGBUS or log uncorrected errors, log corrected errors
47			3: never panic or SIGBUS, log all errors (for testing only)
48			Default is 1
49			Can be also set using sysfs which is preferable.
50			monarchtimeout:
51			Sets the time in us to wait for other CPUs on machine checks. 0
52			to disable.
53	   mce=bios_cmci_threshold
54			Don't overwrite the bios-set CMCI threshold. This boot option
55			prevents Linux from overwriting the CMCI threshold set by the
56			bios. Without this option, Linux always sets the CMCI
57			threshold to 1. Enabling this may make memory predictive failure
58			analysis less effective if the bios sets thresholds for memory
59			errors since we will not see details for all errors.
60	
61	   nomce (for compatibility with i386): same as mce=off
62	
63	   Everything else is in sysfs now.
64	
65	APICs
66	
67	   apic		 Use IO-APIC. Default
68	
69	   noapic	 Don't use the IO-APIC.
70	
71	   disableapic	 Don't use the local APIC
72	
73	   nolapic	 Don't use the local APIC (alias for i386 compatibility)
74	
75	   pirq=...	 See Documentation/x86/i386/IO-APIC.txt
76	
77	   noapictimer	 Don't set up the APIC timer
78	
79	   no_timer_check Don't check the IO-APIC timer. This can work around
80			 problems with incorrect timer initialization on some boards.
81	
82	   apicmaintimer Run time keeping from the local APIC timer instead
83	                 of using the PIT/HPET interrupt for this. This is useful
84	                 when the PIT/HPET interrupts are unreliable.
85	
86	   noapicmaintimer  Don't do time keeping using the APIC timer.
87			 Useful when this option was auto selected, but doesn't work.
88	
89	   apicpmtimer
90			 Do APIC timer calibration using the pmtimer. Implies
91			 apicmaintimer. Useful when your PIT timer is totally
92			 broken.
93	
94	Early Console
95	
96	   syntax: earlyprintk=vga
97	           earlyprintk=serial[,ttySn[,baudrate]]
98	
99	   The early console is useful when the kernel crashes before the
100	   normal console is initialized. It is not enabled by
101	   default because it has some cosmetic problems.
102	   Append ,keep to not disable it when the real console takes over.
103	   Only vga or serial at a time, not both.
104	   Currently only ttyS0 and ttyS1 are supported.
105	   Interaction with the standard serial driver is not very good.
106	   The VGA output is eventually overwritten by the real console.
107	
108	Timing
109	
110	  notsc
111	  Don't use the CPU time stamp counter to read the wall time.
112	  This can be used to work around timing problems on multiprocessor systems
113	  with not properly synchronized CPUs.
114	
115	  nohpet
116	  Don't use the HPET timer.
117	
118	Idle loop
119	
120	  idle=poll
121	  Don't do power saving in the idle loop using HLT, but poll for rescheduling
122	  event. This will make the CPUs eat a lot more power, but may be useful
123	  to get slightly better performance in multiprocessor benchmarks. It also
124	  makes some profiling using performance counters more accurate.
125	  Please note that on systems with MONITOR/MWAIT support (like Intel EM64T
126	  CPUs) this option has no performance advantage over the normal idle loop.
127	  It may also interact badly with hyperthreading.
128	
129	Rebooting
130	
131	   reboot=b[ios] | t[riple] | k[bd] | a[cpi] | e[fi] [, [w]arm | [c]old]
132	   bios	  Use the CPU reboot vector for warm reset
133	   warm   Don't set the cold reboot flag
134	   cold   Set the cold reboot flag
135	   triple Force a triple fault (init)
136	   kbd    Use the keyboard controller. cold reset (default)
137	   acpi   Use the ACPI RESET_REG in the FADT. If ACPI is not configured or the
138	          ACPI reset does not work, the reboot path attempts the reset using
139	          the keyboard controller.
140	   efi    Use efi reset_system runtime service. If EFI is not configured or the
141	          EFI reset does not work, the reboot path attempts the reset using
142	          the keyboard controller.
143	
144	   Using warm reset will be much faster especially on big memory
145	   systems because the BIOS will not go through the memory check.
146	   Disadvantage is that not all hardware will be completely reinitialized
147	   on reboot so there may be boot problems on some systems.
148	
149	   reboot=force
150	
151	   Don't stop other CPUs on reboot. This can make reboot more reliable
152	   in some cases.
153	
154	Non Executable Mappings
155	
156	  noexec=on|off
157	
158	  on      Enable(default)
159	  off     Disable
160	
161	SMP
162	
163	  additional_cpus=NUM Allow NUM more CPUs for hotplug
164			 (defaults are specified by the BIOS, see Documentation/x86/x86_64/cpu-hotplug-spec)
165	
166	NUMA
167	
168	  numa=off	Only set up a single NUMA node spanning all memory.
169	
170	  numa=noacpi   Don't parse the SRAT table for NUMA setup
171	
172	  numa=fake=<size>[MG]
173			If given as a memory unit, fills all system RAM with nodes of
174			size interleaved over physical nodes.
175	
176	  numa=fake=<N>
177			If given as an integer, fills all system RAM with N fake nodes
178			interleaved over physical nodes.
179	
180	ACPI
181	
182	  acpi=off	Don't enable ACPI
183	  acpi=ht	Use ACPI boot table parsing, but don't enable ACPI
184			interpreter
185	  acpi=force	Force ACPI on (currently not needed)
186	
187	  acpi=strict   Disable out of spec ACPI workarounds.
188	
189	  acpi_sci={edge,level,high,low}  Set up ACPI SCI interrupt.
190	
191	  acpi=noirq	Don't route interrupts
192	
193	PCI
194	
195	  pci=off		Don't use PCI
196	  pci=conf1		Use conf1 access.
197	  pci=conf2		Use conf2 access.
198	  pci=rom		Assign ROMs.
199	  pci=assign-busses	Assign busses
200	  pci=irqmask=MASK	Set PCI interrupt mask to MASK
201	  pci=lastbus=NUMBER	Scan up to NUMBER busses, no matter what the mptable says.
202	  pci=noacpi		Don't use ACPI to set up PCI interrupt routing.
203	
204	IOMMU (input/output memory management unit)
205	
206	 Currently four x86-64 PCI-DMA mapping implementations exist:
207	
208	   1. <arch/x86_64/kernel/pci-nommu.c>: use no hardware/software IOMMU at all
209	      (e.g. because you have < 3 GB memory).
210	      Kernel boot message: "PCI-DMA: Disabling IOMMU"
211	
212	   2. <arch/x86/kernel/amd_gart_64.c>: AMD GART based hardware IOMMU.
213	      Kernel boot message: "PCI-DMA: using GART IOMMU"
214	
215	   3. <arch/x86_64/kernel/pci-swiotlb.c> : Software IOMMU implementation. Used
216	      e.g. if there is no hardware IOMMU in the system and it is need because
217	      you have >3GB memory or told the kernel to us it (iommu=soft))
218	      Kernel boot message: "PCI-DMA: Using software bounce buffering
219	      for IO (SWIOTLB)"
220	
221	   4. <arch/x86_64/pci-calgary.c> : IBM Calgary hardware IOMMU. Used in IBM
222	      pSeries and xSeries servers. This hardware IOMMU supports DMA address
223	      mapping with memory protection, etc.
224	      Kernel boot message: "PCI-DMA: Using Calgary IOMMU"
225	
226	 iommu=[<size>][,noagp][,off][,force][,noforce][,leak[=<nr_of_leak_pages>]
227		[,memaper[=<order>]][,merge][,forcesac][,fullflush][,nomerge]
228		[,noaperture][,calgary]
229	
230	  General iommu options:
231	    off                Don't initialize and use any kind of IOMMU.
232	    noforce            Don't force hardware IOMMU usage when it is not needed.
233	                       (default).
234	    force              Force the use of the hardware IOMMU even when it is
235	                       not actually needed (e.g. because < 3 GB memory).
236	    soft               Use software bounce buffering (SWIOTLB) (default for
237	                       Intel machines). This can be used to prevent the usage
238	                       of an available hardware IOMMU.
239	
240	  iommu options only relevant to the AMD GART hardware IOMMU:
241	    <size>             Set the size of the remapping area in bytes.
242	    allowed            Overwrite iommu off workarounds for specific chipsets.
243	    fullflush          Flush IOMMU on each allocation (default).
244	    nofullflush        Don't use IOMMU fullflush.
245	    leak               Turn on simple iommu leak tracing (only when
246	                       CONFIG_IOMMU_LEAK is on). Default number of leak pages
247	                       is 20.
248	    memaper[=<order>]  Allocate an own aperture over RAM with size 32MB<<order.
249	                       (default: order=1, i.e. 64MB)
250	    merge              Do scatter-gather (SG) merging. Implies "force"
251	                       (experimental).
252	    nomerge            Don't do scatter-gather (SG) merging.
253	    noaperture         Ask the IOMMU not to touch the aperture for AGP.
254	    forcesac           Force single-address cycle (SAC) mode for masks <40bits
255	                       (experimental).
256	    noagp              Don't initialize the AGP driver and use full aperture.
257	    allowdac           Allow double-address cycle (DAC) mode, i.e. DMA >4GB.
258	                       DAC is used with 32-bit PCI to push a 64-bit address in
259	                       two cycles. When off all DMA over >4GB is forced through
260	                       an IOMMU or software bounce buffering.
261	    nodac              Forbid DAC mode, i.e. DMA >4GB.
262	    panic              Always panic when IOMMU overflows.
263	    calgary            Use the Calgary IOMMU if it is available
264	
265	  iommu options only relevant to the software bounce buffering (SWIOTLB) IOMMU
266	  implementation:
267	    swiotlb=<pages>[,force]
268	    <pages>            Prereserve that many 128K pages for the software IO
269	                       bounce buffering.
270	    force              Force all IO through the software TLB.
271	
272	  Settings for the IBM Calgary hardware IOMMU currently found in IBM
273	  pSeries and xSeries machines:
274	
275	    calgary=[64k,128k,256k,512k,1M,2M,4M,8M]
276	    calgary=[translate_empty_slots]
277	    calgary=[disable=<PCI bus number>]
278	    panic              Always panic when IOMMU overflows
279	
280	    64k,...,8M - Set the size of each PCI slot's translation table
281	    when using the Calgary IOMMU. This is the size of the translation
282	    table itself in main memory. The smallest table, 64k, covers an IO
283	    space of 32MB; the largest, 8MB table, can cover an IO space of
284	    4GB. Normally the kernel will make the right choice by itself.
285	
286	    translate_empty_slots - Enable translation even on slots that have
287	    no devices attached to them, in case a device will be hotplugged
288	    in the future.
289	
290	    disable=<PCI bus number> - Disable translation on a given PHB. For
291	    example, the built-in graphics adapter resides on the first bridge
292	    (PCI bus number 0); if translation (isolation) is enabled on this
293	    bridge, X servers that access the hardware directly from user
294	    space might stop working. Use this option if you have devices that
295	    are accessed from userspace directly on some PCI host bridge.
296	
297	Debugging
298	
299	  kstack=N	Print N words from the kernel stack in oops dumps.
300	
301	  pagefaulttrace  Dump all page faults. Only useful for extreme debugging
302			and will create a lot of output.
303	
304	  call_trace=[old|both|newfallback|new]
305			old: use old inexact backtracer
306			new: use new exact dwarf2 unwinder
307	 		both: print entries from both
308			newfallback: use new unwinder but fall back to old if it gets
309				stuck (default)
310	
311	Miscellaneous
312	
313		nogbpages
314			Do not use GB pages for kernel direct mappings.
315		gbpages
316			Use GB pages for kernel direct mappings.
Hide Line Numbers
About Kernel Documentation Linux Kernel Contact Linux Resources Linux Blog

Information is copyright its respective author. All material is available from the Linux Kernel Source distributed under a GPL License. This page is provided as a free service by mjmwired.net.