aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kernel-parameters.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/kernel-parameters.txt')
-rw-r--r--Documentation/kernel-parameters.txt75
1 files changed, 23 insertions, 52 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index dd5013f974d8..c600c4ffc657 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -210,59 +210,30 @@ and is between 256 and 4096 characters. It is defined in the file
210 acpi_display_output=video 210 acpi_display_output=video
211 See above. 211 See above.
212 212
213 acpi.debug_layer= [HW,ACPI] 213 acpi.debug_layer= [HW,ACPI,ACPI_DEBUG]
214 acpi.debug_level= [HW,ACPI,ACPI_DEBUG]
214 Format: <int> 215 Format: <int>
215 Each bit of the <int> indicates an ACPI debug layer, 216 CONFIG_ACPI_DEBUG must be enabled to produce any ACPI
216 1: enable, 0: disable. It is useful for boot time 217 debug output. Bits in debug_layer correspond to a
217 debugging. After system has booted up, it can be set 218 _COMPONENT in an ACPI source file, e.g.,
218 via /sys/module/acpi/parameters/debug_layer. 219 #define _COMPONENT ACPI_PCI_COMPONENT
219 CONFIG_ACPI_DEBUG must be enabled for this to produce any output. 220 Bits in debug_level correspond to a level in
220 Available bits (add the numbers together) to enable debug output 221 ACPI_DEBUG_PRINT statements, e.g.,
221 for specific parts of the ACPI subsystem: 222 ACPI_DEBUG_PRINT((ACPI_DB_INFO, ...
222 0x01 utilities 0x02 hardware 0x04 events 0x08 tables 223 See Documentation/acpi/debug.txt for more information
223 0x10 namespace 0x20 parser 0x40 dispatcher 224 about debug layers and levels.
224 0x80 executer 0x100 resources 0x200 acpica debugger 225
225 0x400 os services 0x800 acpica disassembler. 226 Enable AML "Debug" output, i.e., stores to the Debug
226 The number can be in decimal or prefixed with 0x in hex. 227 object while interpreting AML:
227 Warning: Many of these options can produce a lot of 228 acpi.debug_layer=0xffffffff acpi.debug_level=0x2
228 output and make your system unusable. Be very careful. 229 Enable PCI/PCI interrupt routing info messages:
229 230 acpi.debug_layer=0x400000 acpi.debug_level=0x4
230 acpi.debug_level= [HW,ACPI] 231 Enable all messages related to ACPI hardware:
231 Format: <int> 232 acpi.debug_layer=0x2 acpi.debug_level=0xffffffff
232 Each bit of the <int> indicates an ACPI debug level, 233
233 which corresponds to the level in an ACPI_DEBUG_PRINT 234 Some values produce so much output that the system is
234 statement. After system has booted up, this mask 235 unusable. The "log_buf_len" parameter may be useful
235 can be set via /sys/module/acpi/parameters/debug_level. 236 if you need to capture more output.
236
237 CONFIG_ACPI_DEBUG must be enabled for this to produce
238 any output. The number can be in decimal or prefixed
239 with 0x in hex. Some of these options produce so much
240 output that the system is unusable.
241
242 The following global components are defined by the
243 ACPI CA:
244 0x01 error
245 0x02 warn
246 0x04 init
247 0x08 debug object
248 0x10 info
249 0x20 init names
250 0x40 parse
251 0x80 load
252 0x100 dispatch
253 0x200 execute
254 0x400 names
255 0x800 operation region
256 0x1000 bfield
257 0x2000 tables
258 0x4000 values
259 0x8000 objects
260 0x10000 resources
261 0x20000 user requests
262 0x40000 package
263 The number can be in decimal or prefixed with 0x in hex.
264 Warning: Many of these options can produce a lot of
265 output and make your system unusable. Be very careful.
266 237
267 acpi.power_nocheck= [HW,ACPI] 238 acpi.power_nocheck= [HW,ACPI]
268 Format: 1/0 enable/disable the check of power state. 239 Format: 1/0 enable/disable the check of power state.