kernel-parameters.txt 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851
  1. acpi= [HW,ACPI,X86,ARM64]
  2. Advanced Configuration and Power Interface
  3. Format: { force | on | off | strict | noirq | rsdt |
  4. copy_dsdt }
  5. force -- enable ACPI if default was off
  6. on -- enable ACPI but allow fallback to DT [arm64]
  7. off -- disable ACPI if default was on
  8. noirq -- do not use ACPI for IRQ routing
  9. strict -- Be less tolerant of platforms that are not
  10. strictly ACPI specification compliant.
  11. rsdt -- prefer RSDT over (default) XSDT
  12. copy_dsdt -- copy DSDT to memory
  13. For ARM64, ONLY "acpi=off", "acpi=on" or "acpi=force"
  14. are available
  15. See also Documentation/power/runtime_pm.txt, pci=noacpi
  16. acpi_apic_instance= [ACPI, IOAPIC]
  17. Format: <int>
  18. 2: use 2nd APIC table, if available
  19. 1,0: use 1st APIC table
  20. default: 0
  21. acpi_backlight= [HW,ACPI]
  22. acpi_backlight=vendor
  23. acpi_backlight=video
  24. If set to vendor, prefer vendor specific driver
  25. (e.g. thinkpad_acpi, sony_acpi, etc.) instead
  26. of the ACPI video.ko driver.
  27. acpi_force_32bit_fadt_addr
  28. force FADT to use 32 bit addresses rather than the
  29. 64 bit X_* addresses. Some firmware have broken 64
  30. bit addresses for force ACPI ignore these and use
  31. the older legacy 32 bit addresses.
  32. acpica_no_return_repair [HW, ACPI]
  33. Disable AML predefined validation mechanism
  34. This mechanism can repair the evaluation result to make
  35. the return objects more ACPI specification compliant.
  36. This option is useful for developers to identify the
  37. root cause of an AML interpreter issue when the issue
  38. has something to do with the repair mechanism.
  39. acpi.debug_layer= [HW,ACPI,ACPI_DEBUG]
  40. acpi.debug_level= [HW,ACPI,ACPI_DEBUG]
  41. Format: <int>
  42. CONFIG_ACPI_DEBUG must be enabled to produce any ACPI
  43. debug output. Bits in debug_layer correspond to a
  44. _COMPONENT in an ACPI source file, e.g.,
  45. #define _COMPONENT ACPI_PCI_COMPONENT
  46. Bits in debug_level correspond to a level in
  47. ACPI_DEBUG_PRINT statements, e.g.,
  48. ACPI_DEBUG_PRINT((ACPI_DB_INFO, ...
  49. The debug_level mask defaults to "info". See
  50. Documentation/acpi/debug.txt for more information about
  51. debug layers and levels.
  52. Enable processor driver info messages:
  53. acpi.debug_layer=0x20000000
  54. Enable PCI/PCI interrupt routing info messages:
  55. acpi.debug_layer=0x400000
  56. Enable AML "Debug" output, i.e., stores to the Debug
  57. object while interpreting AML:
  58. acpi.debug_layer=0xffffffff acpi.debug_level=0x2
  59. Enable all messages related to ACPI hardware:
  60. acpi.debug_layer=0x2 acpi.debug_level=0xffffffff
  61. Some values produce so much output that the system is
  62. unusable. The "log_buf_len" parameter may be useful
  63. if you need to capture more output.
  64. acpi_enforce_resources= [ACPI]
  65. { strict | lax | no }
  66. Check for resource conflicts between native drivers
  67. and ACPI OperationRegions (SystemIO and SystemMemory
  68. only). IO ports and memory declared in ACPI might be
  69. used by the ACPI subsystem in arbitrary AML code and
  70. can interfere with legacy drivers.
  71. strict (default): access to resources claimed by ACPI
  72. is denied; legacy drivers trying to access reserved
  73. resources will fail to bind to device using them.
  74. lax: access to resources claimed by ACPI is allowed;
  75. legacy drivers trying to access reserved resources
  76. will bind successfully but a warning message is logged.
  77. no: ACPI OperationRegions are not marked as reserved,
  78. no further checks are performed.
  79. acpi_force_table_verification [HW,ACPI]
  80. Enable table checksum verification during early stage.
  81. By default, this is disabled due to x86 early mapping
  82. size limitation.
  83. acpi_irq_balance [HW,ACPI]
  84. ACPI will balance active IRQs
  85. default in APIC mode
  86. acpi_irq_nobalance [HW,ACPI]
  87. ACPI will not move active IRQs (default)
  88. default in PIC mode
  89. acpi_irq_isa= [HW,ACPI] If irq_balance, mark listed IRQs used by ISA
  90. Format: <irq>,<irq>...
  91. acpi_irq_pci= [HW,ACPI] If irq_balance, clear listed IRQs for
  92. use by PCI
  93. Format: <irq>,<irq>...
  94. acpi_mask_gpe= [HW,ACPI]
  95. Due to the existence of _Lxx/_Exx, some GPEs triggered
  96. by unsupported hardware/firmware features can result in
  97. GPE floodings that cannot be automatically disabled by
  98. the GPE dispatcher.
  99. This facility can be used to prevent such uncontrolled
  100. GPE floodings.
  101. Format: <int>
  102. acpi_no_auto_serialize [HW,ACPI]
  103. Disable auto-serialization of AML methods
  104. AML control methods that contain the opcodes to create
  105. named objects will be marked as "Serialized" by the
  106. auto-serialization feature.
  107. This feature is enabled by default.
  108. This option allows to turn off the feature.
  109. acpi_no_memhotplug [ACPI] Disable memory hotplug. Useful for kdump
  110. kernels.
  111. acpi_no_static_ssdt [HW,ACPI]
  112. Disable installation of static SSDTs at early boot time
  113. By default, SSDTs contained in the RSDT/XSDT will be
  114. installed automatically and they will appear under
  115. /sys/firmware/acpi/tables.
  116. This option turns off this feature.
  117. Note that specifying this option does not affect
  118. dynamic table installation which will install SSDT
  119. tables to /sys/firmware/acpi/tables/dynamic.
  120. acpi_rsdp= [ACPI,EFI,KEXEC]
  121. Pass the RSDP address to the kernel, mostly used
  122. on machines running EFI runtime service to boot the
  123. second kernel for kdump.
  124. acpi_os_name= [HW,ACPI] Tell ACPI BIOS the name of the OS
  125. Format: To spoof as Windows 98: ="Microsoft Windows"
  126. acpi_rev_override [ACPI] Override the _REV object to return 5 (instead
  127. of 2 which is mandated by ACPI 6) as the supported ACPI
  128. specification revision (when using this switch, it may
  129. be necessary to carry out a cold reboot _twice_ in a
  130. row to make it take effect on the platform firmware).
  131. acpi_osi= [HW,ACPI] Modify list of supported OS interface strings
  132. acpi_osi="string1" # add string1
  133. acpi_osi="!string2" # remove string2
  134. acpi_osi=!* # remove all strings
  135. acpi_osi=! # disable all built-in OS vendor
  136. strings
  137. acpi_osi=!! # enable all built-in OS vendor
  138. strings
  139. acpi_osi= # disable all strings
  140. 'acpi_osi=!' can be used in combination with single or
  141. multiple 'acpi_osi="string1"' to support specific OS
  142. vendor string(s). Note that such command can only
  143. affect the default state of the OS vendor strings, thus
  144. it cannot affect the default state of the feature group
  145. strings and the current state of the OS vendor strings,
  146. specifying it multiple times through kernel command line
  147. is meaningless. This command is useful when one do not
  148. care about the state of the feature group strings which
  149. should be controlled by the OSPM.
  150. Examples:
  151. 1. 'acpi_osi=! acpi_osi="Windows 2000"' is equivalent
  152. to 'acpi_osi="Windows 2000" acpi_osi=!', they all
  153. can make '_OSI("Windows 2000")' TRUE.
  154. 'acpi_osi=' cannot be used in combination with other
  155. 'acpi_osi=' command lines, the _OSI method will not
  156. exist in the ACPI namespace. NOTE that such command can
  157. only affect the _OSI support state, thus specifying it
  158. multiple times through kernel command line is also
  159. meaningless.
  160. Examples:
  161. 1. 'acpi_osi=' can make 'CondRefOf(_OSI, Local1)'
  162. FALSE.
  163. 'acpi_osi=!*' can be used in combination with single or
  164. multiple 'acpi_osi="string1"' to support specific
  165. string(s). Note that such command can affect the
  166. current state of both the OS vendor strings and the
  167. feature group strings, thus specifying it multiple times
  168. through kernel command line is meaningful. But it may
  169. still not able to affect the final state of a string if
  170. there are quirks related to this string. This command
  171. is useful when one want to control the state of the
  172. feature group strings to debug BIOS issues related to
  173. the OSPM features.
  174. Examples:
  175. 1. 'acpi_osi="Module Device" acpi_osi=!*' can make
  176. '_OSI("Module Device")' FALSE.
  177. 2. 'acpi_osi=!* acpi_osi="Module Device"' can make
  178. '_OSI("Module Device")' TRUE.
  179. 3. 'acpi_osi=! acpi_osi=!* acpi_osi="Windows 2000"' is
  180. equivalent to
  181. 'acpi_osi=!* acpi_osi=! acpi_osi="Windows 2000"'
  182. and
  183. 'acpi_osi=!* acpi_osi="Windows 2000" acpi_osi=!',
  184. they all will make '_OSI("Windows 2000")' TRUE.
  185. acpi_pm_good [X86]
  186. Override the pmtimer bug detection: force the kernel
  187. to assume that this machine's pmtimer latches its value
  188. and always returns good values.
  189. acpi_sci= [HW,ACPI] ACPI System Control Interrupt trigger mode
  190. Format: { level | edge | high | low }
  191. acpi_skip_timer_override [HW,ACPI]
  192. Recognize and ignore IRQ0/pin2 Interrupt Override.
  193. For broken nForce2 BIOS resulting in XT-PIC timer.
  194. acpi_sleep= [HW,ACPI] Sleep options
  195. Format: { s3_bios, s3_mode, s3_beep, s4_nohwsig,
  196. old_ordering, nonvs, sci_force_enable, nobl }
  197. See Documentation/power/video.txt for information on
  198. s3_bios and s3_mode.
  199. s3_beep is for debugging; it makes the PC's speaker beep
  200. as soon as the kernel's real-mode entry point is called.
  201. s4_nohwsig prevents ACPI hardware signature from being
  202. used during resume from hibernation.
  203. old_ordering causes the ACPI 1.0 ordering of the _PTS
  204. control method, with respect to putting devices into
  205. low power states, to be enforced (the ACPI 2.0 ordering
  206. of _PTS is used by default).
  207. nonvs prevents the kernel from saving/restoring the
  208. ACPI NVS memory during suspend/hibernation and resume.
  209. sci_force_enable causes the kernel to set SCI_EN directly
  210. on resume from S1/S3 (which is against the ACPI spec,
  211. but some broken systems don't work without it).
  212. nobl causes the internal blacklist of systems known to
  213. behave incorrectly in some ways with respect to system
  214. suspend and resume to be ignored (use wisely).
  215. acpi_use_timer_override [HW,ACPI]
  216. Use timer override. For some broken Nvidia NF5 boards
  217. that require a timer override, but don't have HPET
  218. add_efi_memmap [EFI; X86] Include EFI memory map in
  219. kernel's map of available physical RAM.
  220. agp= [AGP]
  221. { off | try_unsupported }
  222. off: disable AGP support
  223. try_unsupported: try to drive unsupported chipsets
  224. (may crash computer or cause data corruption)
  225. ALSA [HW,ALSA]
  226. See Documentation/sound/alsa/alsa-parameters.txt
  227. alignment= [KNL,ARM]
  228. Allow the default userspace alignment fault handler
  229. behaviour to be specified. Bit 0 enables warnings,
  230. bit 1 enables fixups, and bit 2 sends a segfault.
  231. align_va_addr= [X86-64]
  232. Align virtual addresses by clearing slice [14:12] when
  233. allocating a VMA at process creation time. This option
  234. gives you up to 3% performance improvement on AMD F15h
  235. machines (where it is enabled by default) for a
  236. CPU-intensive style benchmark, and it can vary highly in
  237. a microbenchmark depending on workload and compiler.
  238. 32: only for 32-bit processes
  239. 64: only for 64-bit processes
  240. on: enable for both 32- and 64-bit processes
  241. off: disable for both 32- and 64-bit processes
  242. alloc_snapshot [FTRACE]
  243. Allocate the ftrace snapshot buffer on boot up when the
  244. main buffer is allocated. This is handy if debugging
  245. and you need to use tracing_snapshot() on boot up, and
  246. do not want to use tracing_snapshot_alloc() as it needs
  247. to be done where GFP_KERNEL allocations are allowed.
  248. amd_iommu= [HW,X86-64]
  249. Pass parameters to the AMD IOMMU driver in the system.
  250. Possible values are:
  251. fullflush - enable flushing of IO/TLB entries when
  252. they are unmapped. Otherwise they are
  253. flushed before they will be reused, which
  254. is a lot of faster
  255. off - do not initialize any AMD IOMMU found in
  256. the system
  257. force_isolation - Force device isolation for all
  258. devices. The IOMMU driver is not
  259. allowed anymore to lift isolation
  260. requirements as needed. This option
  261. does not override iommu=pt
  262. amd_iommu_dump= [HW,X86-64]
  263. Enable AMD IOMMU driver option to dump the ACPI table
  264. for AMD IOMMU. With this option enabled, AMD IOMMU
  265. driver will print ACPI tables for AMD IOMMU during
  266. IOMMU initialization.
  267. amd_iommu_intr= [HW,X86-64]
  268. Specifies one of the following AMD IOMMU interrupt
  269. remapping modes:
  270. legacy - Use legacy interrupt remapping mode.
  271. vapic - Use virtual APIC mode, which allows IOMMU
  272. to inject interrupts directly into guest.
  273. This mode requires kvm-amd.avic=1.
  274. (Default when IOMMU HW support is present.)
  275. amijoy.map= [HW,JOY] Amiga joystick support
  276. Map of devices attached to JOY0DAT and JOY1DAT
  277. Format: <a>,<b>
  278. See also Documentation/input/joydev/joystick.rst
  279. analog.map= [HW,JOY] Analog joystick and gamepad support
  280. Specifies type or capabilities of an analog joystick
  281. connected to one of 16 gameports
  282. Format: <type1>,<type2>,..<type16>
  283. apc= [HW,SPARC]
  284. Power management functions (SPARCstation-4/5 + deriv.)
  285. Format: noidle
  286. Disable APC CPU standby support. SPARCstation-Fox does
  287. not play well with APC CPU idle - disable it if you have
  288. APC and your system crashes randomly.
  289. apic= [APIC,X86] Advanced Programmable Interrupt Controller
  290. Change the output verbosity whilst booting
  291. Format: { quiet (default) | verbose | debug }
  292. Change the amount of debugging information output
  293. when initialising the APIC and IO-APIC components.
  294. For X86-32, this can also be used to specify an APIC
  295. driver name.
  296. Format: apic=driver_name
  297. Examples: apic=bigsmp
  298. apic_extnmi= [APIC,X86] External NMI delivery setting
  299. Format: { bsp (default) | all | none }
  300. bsp: External NMI is delivered only to CPU 0
  301. all: External NMIs are broadcast to all CPUs as a
  302. backup of CPU 0
  303. none: External NMI is masked for all CPUs. This is
  304. useful so that a dump capture kernel won't be
  305. shot down by NMI
  306. autoconf= [IPV6]
  307. See Documentation/networking/ipv6.txt.
  308. show_lapic= [APIC,X86] Advanced Programmable Interrupt Controller
  309. Limit apic dumping. The parameter defines the maximal
  310. number of local apics being dumped. Also it is possible
  311. to set it to "all" by meaning -- no limit here.
  312. Format: { 1 (default) | 2 | ... | all }.
  313. The parameter valid if only apic=debug or
  314. apic=verbose is specified.
  315. Example: apic=debug show_lapic=all
  316. apm= [APM] Advanced Power Management
  317. See header of arch/x86/kernel/apm_32.c.
  318. arcrimi= [HW,NET] ARCnet - "RIM I" (entirely mem-mapped) cards
  319. Format: <io>,<irq>,<nodeID>
  320. ataflop= [HW,M68k]
  321. atarimouse= [HW,MOUSE] Atari Mouse
  322. atkbd.extra= [HW] Enable extra LEDs and keys on IBM RapidAccess,
  323. EzKey and similar keyboards
  324. atkbd.reset= [HW] Reset keyboard during initialization
  325. atkbd.set= [HW] Select keyboard code set
  326. Format: <int> (2 = AT (default), 3 = PS/2)
  327. atkbd.scroll= [HW] Enable scroll wheel on MS Office and similar
  328. keyboards
  329. atkbd.softraw= [HW] Choose between synthetic and real raw mode
  330. Format: <bool> (0 = real, 1 = synthetic (default))
  331. atkbd.softrepeat= [HW]
  332. Use software keyboard repeat
  333. audit= [KNL] Enable the audit sub-system
  334. Format: { "0" | "1" | "off" | "on" }
  335. 0 | off - kernel audit is disabled and can not be
  336. enabled until the next reboot
  337. unset - kernel audit is initialized but disabled and
  338. will be fully enabled by the userspace auditd.
  339. 1 | on - kernel audit is initialized and partially
  340. enabled, storing at most audit_backlog_limit
  341. messages in RAM until it is fully enabled by the
  342. userspace auditd.
  343. Default: unset
  344. audit_backlog_limit= [KNL] Set the audit queue size limit.
  345. Format: <int> (must be >=0)
  346. Default: 64
  347. bau= [X86_UV] Enable the BAU on SGI UV. The default
  348. behavior is to disable the BAU (i.e. bau=0).
  349. Format: { "0" | "1" }
  350. 0 - Disable the BAU.
  351. 1 - Enable the BAU.
  352. unset - Disable the BAU.
  353. baycom_epp= [HW,AX25]
  354. Format: <io>,<mode>
  355. baycom_par= [HW,AX25] BayCom Parallel Port AX.25 Modem
  356. Format: <io>,<mode>
  357. See header of drivers/net/hamradio/baycom_par.c.
  358. baycom_ser_fdx= [HW,AX25]
  359. BayCom Serial Port AX.25 Modem (Full Duplex Mode)
  360. Format: <io>,<irq>,<mode>[,<baud>]
  361. See header of drivers/net/hamradio/baycom_ser_fdx.c.
  362. baycom_ser_hdx= [HW,AX25]
  363. BayCom Serial Port AX.25 Modem (Half Duplex Mode)
  364. Format: <io>,<irq>,<mode>
  365. See header of drivers/net/hamradio/baycom_ser_hdx.c.
  366. blkdevparts= Manual partition parsing of block device(s) for
  367. embedded devices based on command line input.
  368. See Documentation/block/cmdline-partition.txt
  369. boot_delay= Milliseconds to delay each printk during boot.
  370. Values larger than 10 seconds (10000) are changed to
  371. no delay (0).
  372. Format: integer
  373. bootmem_debug [KNL] Enable bootmem allocator debug messages.
  374. bert_disable [ACPI]
  375. Disable BERT OS support on buggy BIOSes.
  376. bttv.card= [HW,V4L] bttv (bt848 + bt878 based grabber cards)
  377. bttv.radio= Most important insmod options are available as
  378. kernel args too.
  379. bttv.pll= See Documentation/media/v4l-drivers/bttv.rst
  380. bttv.tuner=
  381. bulk_remove=off [PPC] This parameter disables the use of the pSeries
  382. firmware feature for flushing multiple hpte entries
  383. at a time.
  384. c101= [NET] Moxa C101 synchronous serial card
  385. cachesize= [BUGS=X86-32] Override level 2 CPU cache size detection.
  386. Sometimes CPU hardware bugs make them report the cache
  387. size incorrectly. The kernel will attempt work arounds
  388. to fix known problems, but for some CPUs it is not
  389. possible to determine what the correct size should be.
  390. This option provides an override for these situations.
  391. ca_keys= [KEYS] This parameter identifies a specific key(s) on
  392. the system trusted keyring to be used for certificate
  393. trust validation.
  394. format: { id:<keyid> | builtin }
  395. cca= [MIPS] Override the kernel pages' cache coherency
  396. algorithm. Accepted values range from 0 to 7
  397. inclusive. See arch/mips/include/asm/pgtable-bits.h
  398. for platform specific values (SB1, Loongson3 and
  399. others).
  400. ccw_timeout_log [S390]
  401. See Documentation/s390/CommonIO for details.
  402. cgroup_disable= [KNL] Disable a particular controller
  403. Format: {name of the controller(s) to disable}
  404. The effects of cgroup_disable=foo are:
  405. - foo isn't auto-mounted if you mount all cgroups in
  406. a single hierarchy
  407. - foo isn't visible as an individually mountable
  408. subsystem
  409. {Currently only "memory" controller deal with this and
  410. cut the overhead, others just disable the usage. So
  411. only cgroup_disable=memory is actually worthy}
  412. cgroup_no_v1= [KNL] Disable one, multiple, all cgroup controllers in v1
  413. Format: { controller[,controller...] | "all" }
  414. Like cgroup_disable, but only applies to cgroup v1;
  415. the blacklisted controllers remain available in cgroup2.
  416. cgroup.memory= [KNL] Pass options to the cgroup memory controller.
  417. Format: <string>
  418. nosocket -- Disable socket memory accounting.
  419. nokmem -- Disable kernel memory accounting.
  420. checkreqprot [SELINUX] Set initial checkreqprot flag value.
  421. Format: { "0" | "1" }
  422. See security/selinux/Kconfig help text.
  423. 0 -- check protection applied by kernel (includes
  424. any implied execute protection).
  425. 1 -- check protection requested by application.
  426. Default value is set via a kernel config option.
  427. Value can be changed at runtime via
  428. /selinux/checkreqprot.
  429. cio_ignore= [S390]
  430. See Documentation/s390/CommonIO for details.
  431. clk_ignore_unused
  432. [CLK]
  433. Prevents the clock framework from automatically gating
  434. clocks that have not been explicitly enabled by a Linux
  435. device driver but are enabled in hardware at reset or
  436. by the bootloader/firmware. Note that this does not
  437. force such clocks to be always-on nor does it reserve
  438. those clocks in any way. This parameter is useful for
  439. debug and development, but should not be needed on a
  440. platform with proper driver support. For more
  441. information, see Documentation/driver-api/clk.rst.
  442. clock= [BUGS=X86-32, HW] gettimeofday clocksource override.
  443. [Deprecated]
  444. Forces specified clocksource (if available) to be used
  445. when calculating gettimeofday(). If specified
  446. clocksource is not available, it defaults to PIT.
  447. Format: { pit | tsc | cyclone | pmtmr }
  448. clocksource= Override the default clocksource
  449. Format: <string>
  450. Override the default clocksource and use the clocksource
  451. with the name specified.
  452. Some clocksource names to choose from, depending on
  453. the platform:
  454. [all] jiffies (this is the base, fallback clocksource)
  455. [ACPI] acpi_pm
  456. [ARM] imx_timer1,OSTS,netx_timer,mpu_timer2,
  457. pxa_timer,timer3,32k_counter,timer0_1
  458. [X86-32] pit,hpet,tsc;
  459. scx200_hrt on Geode; cyclone on IBM x440
  460. [MIPS] MIPS
  461. [PARISC] cr16
  462. [S390] tod
  463. [SH] SuperH
  464. [SPARC64] tick
  465. [X86-64] hpet,tsc
  466. clocksource.arm_arch_timer.evtstrm=
  467. [ARM,ARM64]
  468. Format: <bool>
  469. Enable/disable the eventstream feature of the ARM
  470. architected timer so that code using WFE-based polling
  471. loops can be debugged more effectively on production
  472. systems.
  473. clearcpuid=BITNUM [X86]
  474. Disable CPUID feature X for the kernel. See
  475. arch/x86/include/asm/cpufeatures.h for the valid bit
  476. numbers. Note the Linux specific bits are not necessarily
  477. stable over kernel options, but the vendor specific
  478. ones should be.
  479. Also note that user programs calling CPUID directly
  480. or using the feature without checking anything
  481. will still see it. This just prevents it from
  482. being used by the kernel or shown in /proc/cpuinfo.
  483. Also note the kernel might malfunction if you disable
  484. some critical bits.
  485. cma=nn[MG]@[start[MG][-end[MG]]]
  486. [ARM,X86,KNL]
  487. Sets the size of kernel global memory area for
  488. contiguous memory allocations and optionally the
  489. placement constraint by the physical address range of
  490. memory allocations. A value of 0 disables CMA
  491. altogether. For more information, see
  492. include/linux/dma-contiguous.h
  493. cmo_free_hint= [PPC] Format: { yes | no }
  494. Specify whether pages are marked as being inactive
  495. when they are freed. This is used in CMO environments
  496. to determine OS memory pressure for page stealing by
  497. a hypervisor.
  498. Default: yes
  499. coherent_pool=nn[KMG] [ARM,KNL]
  500. Sets the size of memory pool for coherent, atomic dma
  501. allocations, by default set to 256K.
  502. com20020= [HW,NET] ARCnet - COM20020 chipset
  503. Format:
  504. <io>[,<irq>[,<nodeID>[,<backplane>[,<ckp>[,<timeout>]]]]]
  505. com90io= [HW,NET] ARCnet - COM90xx chipset (IO-mapped buffers)
  506. Format: <io>[,<irq>]
  507. com90xx= [HW,NET]
  508. ARCnet - COM90xx chipset (memory-mapped buffers)
  509. Format: <io>[,<irq>[,<memstart>]]
  510. condev= [HW,S390] console device
  511. conmode=
  512. console= [KNL] Output console device and options.
  513. tty<n> Use the virtual console device <n>.
  514. ttyS<n>[,options]
  515. ttyUSB0[,options]
  516. Use the specified serial port. The options are of
  517. the form "bbbbpnf", where "bbbb" is the baud rate,
  518. "p" is parity ("n", "o", or "e"), "n" is number of
  519. bits, and "f" is flow control ("r" for RTS or
  520. omit it). Default is "9600n8".
  521. See Documentation/admin-guide/serial-console.rst for more
  522. information. See
  523. Documentation/networking/netconsole.txt for an
  524. alternative.
  525. uart[8250],io,<addr>[,options]
  526. uart[8250],mmio,<addr>[,options]
  527. uart[8250],mmio16,<addr>[,options]
  528. uart[8250],mmio32,<addr>[,options]
  529. uart[8250],0x<addr>[,options]
  530. Start an early, polled-mode console on the 8250/16550
  531. UART at the specified I/O port or MMIO address,
  532. switching to the matching ttyS device later.
  533. MMIO inter-register address stride is either 8-bit
  534. (mmio), 16-bit (mmio16), or 32-bit (mmio32).
  535. If none of [io|mmio|mmio16|mmio32], <addr> is assumed
  536. to be equivalent to 'mmio'. 'options' are specified in
  537. the same format described for ttyS above; if unspecified,
  538. the h/w is not re-initialized.
  539. hvc<n> Use the hypervisor console device <n>. This is for
  540. both Xen and PowerPC hypervisors.
  541. If the device connected to the port is not a TTY but a braille
  542. device, prepend "brl," before the device type, for instance
  543. console=brl,ttyS0
  544. For now, only VisioBraille is supported.
  545. console_msg_format=
  546. [KNL] Change console messages format
  547. default
  548. By default we print messages on consoles in
  549. "[time stamp] text\n" format (time stamp may not be
  550. printed, depending on CONFIG_PRINTK_TIME or
  551. `printk_time' param).
  552. syslog
  553. Switch to syslog format: "<%u>[time stamp] text\n"
  554. IOW, each message will have a facility and loglevel
  555. prefix. The format is similar to one used by syslog()
  556. syscall, or to executing "dmesg -S --raw" or to reading
  557. from /proc/kmsg.
  558. consoleblank= [KNL] The console blank (screen saver) timeout in
  559. seconds. A value of 0 disables the blank timer.
  560. Defaults to 0.
  561. coredump_filter=
  562. [KNL] Change the default value for
  563. /proc/<pid>/coredump_filter.
  564. See also Documentation/filesystems/proc.txt.
  565. coresight_cpu_debug.enable
  566. [ARM,ARM64]
  567. Format: <bool>
  568. Enable/disable the CPU sampling based debugging.
  569. 0: default value, disable debugging
  570. 1: enable debugging at boot time
  571. cpuidle.off=1 [CPU_IDLE]
  572. disable the cpuidle sub-system
  573. cpufreq.off=1 [CPU_FREQ]
  574. disable the cpufreq sub-system
  575. cpu_init_udelay=N
  576. [X86] Delay for N microsec between assert and de-assert
  577. of APIC INIT to start processors. This delay occurs
  578. on every CPU online, such as boot, and resume from suspend.
  579. Default: 10000
  580. cpcihp_generic= [HW,PCI] Generic port I/O CompactPCI driver
  581. Format:
  582. <first_slot>,<last_slot>,<port>,<enum_bit>[,<debug>]
  583. crashkernel=size[KMG][@offset[KMG]]
  584. [KNL] Using kexec, Linux can switch to a 'crash kernel'
  585. upon panic. This parameter reserves the physical
  586. memory region [offset, offset + size] for that kernel
  587. image. If '@offset' is omitted, then a suitable offset
  588. is selected automatically. Check
  589. Documentation/kdump/kdump.txt for further details.
  590. crashkernel=range1:size1[,range2:size2,...][@offset]
  591. [KNL] Same as above, but depends on the memory
  592. in the running system. The syntax of range is
  593. start-[end] where start and end are both
  594. a memory unit (amount[KMG]). See also
  595. Documentation/kdump/kdump.txt for an example.
  596. crashkernel=size[KMG],high
  597. [KNL, x86_64] range could be above 4G. Allow kernel
  598. to allocate physical memory region from top, so could
  599. be above 4G if system have more than 4G ram installed.
  600. Otherwise memory region will be allocated below 4G, if
  601. available.
  602. It will be ignored if crashkernel=X is specified.
  603. crashkernel=size[KMG],low
  604. [KNL, x86_64] range under 4G. When crashkernel=X,high
  605. is passed, kernel could allocate physical memory region
  606. above 4G, that cause second kernel crash on system
  607. that require some amount of low memory, e.g. swiotlb
  608. requires at least 64M+32K low memory, also enough extra
  609. low memory is needed to make sure DMA buffers for 32-bit
  610. devices won't run out. Kernel would try to allocate at
  611. at least 256M below 4G automatically.
  612. This one let user to specify own low range under 4G
  613. for second kernel instead.
  614. 0: to disable low allocation.
  615. It will be ignored when crashkernel=X,high is not used
  616. or memory reserved is below 4G.
  617. cryptomgr.notests
  618. [KNL] Disable crypto self-tests
  619. cs89x0_dma= [HW,NET]
  620. Format: <dma>
  621. cs89x0_media= [HW,NET]
  622. Format: { rj45 | aui | bnc }
  623. dasd= [HW,NET]
  624. See header of drivers/s390/block/dasd_devmap.c.
  625. db9.dev[2|3]= [HW,JOY] Multisystem joystick support via parallel port
  626. (one device per port)
  627. Format: <port#>,<type>
  628. See also Documentation/input/devices/joystick-parport.rst
  629. ddebug_query= [KNL,DYNAMIC_DEBUG] Enable debug messages at early boot
  630. time. See
  631. Documentation/admin-guide/dynamic-debug-howto.rst for
  632. details. Deprecated, see dyndbg.
  633. debug [KNL] Enable kernel debugging (events log level).
  634. debug_locks_verbose=
  635. [KNL] verbose self-tests
  636. Format=<0|1>
  637. Print debugging info while doing the locking API
  638. self-tests.
  639. We default to 0 (no extra messages), setting it to
  640. 1 will print _a lot_ more information - normally
  641. only useful to kernel developers.
  642. debug_objects [KNL] Enable object debugging
  643. no_debug_objects
  644. [KNL] Disable object debugging
  645. debug_guardpage_minorder=
  646. [KNL] When CONFIG_DEBUG_PAGEALLOC is set, this
  647. parameter allows control of the order of pages that will
  648. be intentionally kept free (and hence protected) by the
  649. buddy allocator. Bigger value increase the probability
  650. of catching random memory corruption, but reduce the
  651. amount of memory for normal system use. The maximum
  652. possible value is MAX_ORDER/2. Setting this parameter
  653. to 1 or 2 should be enough to identify most random
  654. memory corruption problems caused by bugs in kernel or
  655. driver code when a CPU writes to (or reads from) a
  656. random memory location. Note that there exists a class
  657. of memory corruptions problems caused by buggy H/W or
  658. F/W or by drivers badly programing DMA (basically when
  659. memory is written at bus level and the CPU MMU is
  660. bypassed) which are not detectable by
  661. CONFIG_DEBUG_PAGEALLOC, hence this option will not help
  662. tracking down these problems.
  663. debug_pagealloc=
  664. [KNL] When CONFIG_DEBUG_PAGEALLOC is set, this
  665. parameter enables the feature at boot time. In
  666. default, it is disabled. We can avoid allocating huge
  667. chunk of memory for debug pagealloc if we don't enable
  668. it at boot time and the system will work mostly same
  669. with the kernel built without CONFIG_DEBUG_PAGEALLOC.
  670. on: enable the feature
  671. debugpat [X86] Enable PAT debugging
  672. decnet.addr= [HW,NET]
  673. Format: <area>[,<node>]
  674. See also Documentation/networking/decnet.txt.
  675. default_hugepagesz=
  676. [same as hugepagesz=] The size of the default
  677. HugeTLB page size. This is the size represented by
  678. the legacy /proc/ hugepages APIs, used for SHM, and
  679. default size when mounting hugetlbfs filesystems.
  680. Defaults to the default architecture's huge page size
  681. if not specified.
  682. dhash_entries= [KNL]
  683. Set number of hash buckets for dentry cache.
  684. disable_1tb_segments [PPC]
  685. Disables the use of 1TB hash page table segments. This
  686. causes the kernel to fall back to 256MB segments which
  687. can be useful when debugging issues that require an SLB
  688. miss to occur.
  689. disable= [IPV6]
  690. See Documentation/networking/ipv6.txt.
  691. disable_radix [PPC]
  692. Disable RADIX MMU mode on POWER9
  693. disable_cpu_apicid= [X86,APIC,SMP]
  694. Format: <int>
  695. The number of initial APIC ID for the
  696. corresponding CPU to be disabled at boot,
  697. mostly used for the kdump 2nd kernel to
  698. disable BSP to wake up multiple CPUs without
  699. causing system reset or hang due to sending
  700. INIT from AP to BSP.
  701. disable_ddw [PPC/PSERIES]
  702. Disable Dynamic DMA Window support. Use this if
  703. to workaround buggy firmware.
  704. disable_ipv6= [IPV6]
  705. See Documentation/networking/ipv6.txt.
  706. disable_mtrr_cleanup [X86]
  707. The kernel tries to adjust MTRR layout from continuous
  708. to discrete, to make X server driver able to add WB
  709. entry later. This parameter disables that.
  710. disable_mtrr_trim [X86, Intel and AMD only]
  711. By default the kernel will trim any uncacheable
  712. memory out of your available memory pool based on
  713. MTRR settings. This parameter disables that behavior,
  714. possibly causing your machine to run very slowly.
  715. disable_timer_pin_1 [X86]
  716. Disable PIN 1 of APIC timer
  717. Can be useful to work around chipset bugs.
  718. dis_ucode_ldr [X86] Disable the microcode loader.
  719. dma_debug=off If the kernel is compiled with DMA_API_DEBUG support,
  720. this option disables the debugging code at boot.
  721. dma_debug_entries=<number>
  722. This option allows to tune the number of preallocated
  723. entries for DMA-API debugging code. One entry is
  724. required per DMA-API allocation. Use this if the
  725. DMA-API debugging code disables itself because the
  726. architectural default is too low.
  727. dma_debug_driver=<driver_name>
  728. With this option the DMA-API debugging driver
  729. filter feature can be enabled at boot time. Just
  730. pass the driver to filter for as the parameter.
  731. The filter can be disabled or changed to another
  732. driver later using sysfs.
  733. drm.edid_firmware=[<connector>:]<file>[,[<connector>:]<file>]
  734. Broken monitors, graphic adapters, KVMs and EDIDless
  735. panels may send no or incorrect EDID data sets.
  736. This parameter allows to specify an EDID data sets
  737. in the /lib/firmware directory that are used instead.
  738. Generic built-in EDID data sets are used, if one of
  739. edid/1024x768.bin, edid/1280x1024.bin,
  740. edid/1680x1050.bin, or edid/1920x1080.bin is given
  741. and no file with the same name exists. Details and
  742. instructions how to build your own EDID data are
  743. available in Documentation/EDID/HOWTO.txt. An EDID
  744. data set will only be used for a particular connector,
  745. if its name and a colon are prepended to the EDID
  746. name. Each connector may use a unique EDID data
  747. set by separating the files with a comma. An EDID
  748. data set with no connector name will be used for
  749. any connectors not explicitly specified.
  750. dscc4.setup= [NET]
  751. dt_cpu_ftrs= [PPC]
  752. Format: {"off" | "known"}
  753. Control how the dt_cpu_ftrs device-tree binding is
  754. used for CPU feature discovery and setup (if it
  755. exists).
  756. off: Do not use it, fall back to legacy cpu table.
  757. known: Do not pass through unknown features to guests
  758. or userspace, only those that the kernel is aware of.
  759. dump_apple_properties [X86]
  760. Dump name and content of EFI device properties on
  761. x86 Macs. Useful for driver authors to determine
  762. what data is available or for reverse-engineering.
  763. dyndbg[="val"] [KNL,DYNAMIC_DEBUG]
  764. module.dyndbg[="val"]
  765. Enable debug messages at boot time. See
  766. Documentation/admin-guide/dynamic-debug-howto.rst
  767. for details.
  768. nompx [X86] Disables Intel Memory Protection Extensions.
  769. See Documentation/x86/intel_mpx.txt for more
  770. information about the feature.
  771. nopku [X86] Disable Memory Protection Keys CPU feature found
  772. in some Intel CPUs.
  773. module.async_probe [KNL]
  774. Enable asynchronous probe on this module.
  775. early_ioremap_debug [KNL]
  776. Enable debug messages in early_ioremap support. This
  777. is useful for tracking down temporary early mappings
  778. which are not unmapped.
  779. earlycon= [KNL] Output early console device and options.
  780. [ARM64] The early console is determined by the
  781. stdout-path property in device tree's chosen node,
  782. or determined by the ACPI SPCR table.
  783. [X86] When used with no options the early console is
  784. determined by the ACPI SPCR table.
  785. cdns,<addr>[,options]
  786. Start an early, polled-mode console on a Cadence
  787. (xuartps) serial port at the specified address. Only
  788. supported option is baud rate. If baud rate is not
  789. specified, the serial port must already be setup and
  790. configured.
  791. uart[8250],io,<addr>[,options]
  792. uart[8250],mmio,<addr>[,options]
  793. uart[8250],mmio32,<addr>[,options]
  794. uart[8250],mmio32be,<addr>[,options]
  795. uart[8250],0x<addr>[,options]
  796. Start an early, polled-mode console on the 8250/16550
  797. UART at the specified I/O port or MMIO address.
  798. MMIO inter-register address stride is either 8-bit
  799. (mmio) or 32-bit (mmio32 or mmio32be).
  800. If none of [io|mmio|mmio32|mmio32be], <addr> is assumed
  801. to be equivalent to 'mmio'. 'options' are specified
  802. in the same format described for "console=ttyS<n>"; if
  803. unspecified, the h/w is not initialized.
  804. pl011,<addr>
  805. pl011,mmio32,<addr>
  806. Start an early, polled-mode console on a pl011 serial
  807. port at the specified address. The pl011 serial port
  808. must already be setup and configured. Options are not
  809. yet supported. If 'mmio32' is specified, then only
  810. the driver will use only 32-bit accessors to read/write
  811. the device registers.
  812. meson,<addr>
  813. Start an early, polled-mode console on a meson serial
  814. port at the specified address. The serial port must
  815. already be setup and configured. Options are not yet
  816. supported.
  817. msm_serial,<addr>
  818. Start an early, polled-mode console on an msm serial
  819. port at the specified address. The serial port
  820. must already be setup and configured. Options are not
  821. yet supported.
  822. msm_serial_dm,<addr>
  823. Start an early, polled-mode console on an msm serial
  824. dm port at the specified address. The serial port
  825. must already be setup and configured. Options are not
  826. yet supported.
  827. owl,<addr>
  828. Start an early, polled-mode console on a serial port
  829. of an Actions Semi SoC, such as S500 or S900, at the
  830. specified address. The serial port must already be
  831. setup and configured. Options are not yet supported.
  832. smh Use ARM semihosting calls for early console.
  833. s3c2410,<addr>
  834. s3c2412,<addr>
  835. s3c2440,<addr>
  836. s3c6400,<addr>
  837. s5pv210,<addr>
  838. exynos4210,<addr>
  839. Use early console provided by serial driver available
  840. on Samsung SoCs, requires selecting proper type and
  841. a correct base address of the selected UART port. The
  842. serial port must already be setup and configured.
  843. Options are not yet supported.
  844. lantiq,<addr>
  845. Start an early, polled-mode console on a lantiq serial
  846. (lqasc) port at the specified address. The serial port
  847. must already be setup and configured. Options are not
  848. yet supported.
  849. lpuart,<addr>
  850. lpuart32,<addr>
  851. Use early console provided by Freescale LP UART driver
  852. found on Freescale Vybrid and QorIQ LS1021A processors.
  853. A valid base address must be provided, and the serial
  854. port must already be setup and configured.
  855. ar3700_uart,<addr>
  856. Start an early, polled-mode console on the
  857. Armada 3700 serial port at the specified
  858. address. The serial port must already be setup
  859. and configured. Options are not yet supported.
  860. qcom_geni,<addr>
  861. Start an early, polled-mode console on a Qualcomm
  862. Generic Interface (GENI) based serial port at the
  863. specified address. The serial port must already be
  864. setup and configured. Options are not yet supported.
  865. earlyprintk= [X86,SH,ARM,M68k,S390]
  866. earlyprintk=vga
  867. earlyprintk=efi
  868. earlyprintk=sclp
  869. earlyprintk=xen
  870. earlyprintk=serial[,ttySn[,baudrate]]
  871. earlyprintk=serial[,0x...[,baudrate]]
  872. earlyprintk=ttySn[,baudrate]
  873. earlyprintk=dbgp[debugController#]
  874. earlyprintk=pciserial,bus:device.function[,baudrate]
  875. earlyprintk=xdbc[xhciController#]
  876. earlyprintk is useful when the kernel crashes before
  877. the normal console is initialized. It is not enabled by
  878. default because it has some cosmetic problems.
  879. Append ",keep" to not disable it when the real console
  880. takes over.
  881. Only one of vga, efi, serial, or usb debug port can
  882. be used at a time.
  883. Currently only ttyS0 and ttyS1 may be specified by
  884. name. Other I/O ports may be explicitly specified
  885. on some architectures (x86 and arm at least) by
  886. replacing ttySn with an I/O port address, like this:
  887. earlyprintk=serial,0x1008,115200
  888. You can find the port for a given device in
  889. /proc/tty/driver/serial:
  890. 2: uart:ST16650V2 port:00001008 irq:18 ...
  891. Interaction with the standard serial driver is not
  892. very good.
  893. The VGA and EFI output is eventually overwritten by
  894. the real console.
  895. The xen output can only be used by Xen PV guests.
  896. The sclp output can only be used on s390.
  897. edac_report= [HW,EDAC] Control how to report EDAC event
  898. Format: {"on" | "off" | "force"}
  899. on: enable EDAC to report H/W event. May be overridden
  900. by other higher priority error reporting module.
  901. off: disable H/W event reporting through EDAC.
  902. force: enforce the use of EDAC to report H/W event.
  903. default: on.
  904. ekgdboc= [X86,KGDB] Allow early kernel console debugging
  905. ekgdboc=kbd
  906. This is designed to be used in conjunction with
  907. the boot argument: earlyprintk=vga
  908. edd= [EDD]
  909. Format: {"off" | "on" | "skip[mbr]"}
  910. efi= [EFI]
  911. Format: { "old_map", "nochunk", "noruntime", "debug" }
  912. old_map [X86-64]: switch to the old ioremap-based EFI
  913. runtime services mapping. 32-bit still uses this one by
  914. default.
  915. nochunk: disable reading files in "chunks" in the EFI
  916. boot stub, as chunking can cause problems with some
  917. firmware implementations.
  918. noruntime : disable EFI runtime services support
  919. debug: enable misc debug output
  920. efi_no_storage_paranoia [EFI; X86]
  921. Using this parameter you can use more than 50% of
  922. your efi variable storage. Use this parameter only if
  923. you are really sure that your UEFI does sane gc and
  924. fulfills the spec otherwise your board may brick.
  925. efi_fake_mem= nn[KMG]@ss[KMG]:aa[,nn[KMG]@ss[KMG]:aa,..] [EFI; X86]
  926. Add arbitrary attribute to specific memory range by
  927. updating original EFI memory map.
  928. Region of memory which aa attribute is added to is
  929. from ss to ss+nn.
  930. If efi_fake_mem=2G@4G:0x10000,2G@0x10a0000000:0x10000
  931. is specified, EFI_MEMORY_MORE_RELIABLE(0x10000)
  932. attribute is added to range 0x100000000-0x180000000 and
  933. 0x10a0000000-0x1120000000.
  934. Using this parameter you can do debugging of EFI memmap
  935. related feature. For example, you can do debugging of
  936. Address Range Mirroring feature even if your box
  937. doesn't support it.
  938. efivar_ssdt= [EFI; X86] Name of an EFI variable that contains an SSDT
  939. that is to be dynamically loaded by Linux. If there are
  940. multiple variables with the same name but with different
  941. vendor GUIDs, all of them will be loaded. See
  942. Documentation/acpi/ssdt-overlays.txt for details.
  943. eisa_irq_edge= [PARISC,HW]
  944. See header of drivers/parisc/eisa.c.
  945. elanfreq= [X86-32]
  946. See comment before function elanfreq_setup() in
  947. arch/x86/kernel/cpu/cpufreq/elanfreq.c.
  948. elevator= [IOSCHED]
  949. Format: {"cfq" | "deadline" | "noop"}
  950. See Documentation/block/cfq-iosched.txt and
  951. Documentation/block/deadline-iosched.txt for details.
  952. elfcorehdr=[size[KMG]@]offset[KMG] [IA64,PPC,SH,X86,S390]
  953. Specifies physical address of start of kernel core
  954. image elf header and optionally the size. Generally
  955. kexec loader will pass this option to capture kernel.
  956. See Documentation/kdump/kdump.txt for details.
  957. enable_mtrr_cleanup [X86]
  958. The kernel tries to adjust MTRR layout from continuous
  959. to discrete, to make X server driver able to add WB
  960. entry later. This parameter enables that.
  961. enable_timer_pin_1 [X86]
  962. Enable PIN 1 of APIC timer
  963. Can be useful to work around chipset bugs
  964. (in particular on some ATI chipsets).
  965. The kernel tries to set a reasonable default.
  966. enforcing [SELINUX] Set initial enforcing status.
  967. Format: {"0" | "1"}
  968. See security/selinux/Kconfig help text.
  969. 0 -- permissive (log only, no denials).
  970. 1 -- enforcing (deny and log).
  971. Default value is 0.
  972. Value can be changed at runtime via /selinux/enforce.
  973. erst_disable [ACPI]
  974. Disable Error Record Serialization Table (ERST)
  975. support.
  976. ether= [HW,NET] Ethernet cards parameters
  977. This option is obsoleted by the "netdev=" option, which
  978. has equivalent usage. See its documentation for details.
  979. evm= [EVM]
  980. Format: { "fix" }
  981. Permit 'security.evm' to be updated regardless of
  982. current integrity status.
  983. failslab=
  984. fail_page_alloc=
  985. fail_make_request=[KNL]
  986. General fault injection mechanism.
  987. Format: <interval>,<probability>,<space>,<times>
  988. See also Documentation/fault-injection/.
  989. floppy= [HW]
  990. See Documentation/blockdev/floppy.txt.
  991. force_pal_cache_flush
  992. [IA-64] Avoid check_sal_cache_flush which may hang on
  993. buggy SAL_CACHE_FLUSH implementations. Using this
  994. parameter will force ia64_sal_cache_flush to call
  995. ia64_pal_cache_flush instead of SAL_CACHE_FLUSH.
  996. forcepae [X86-32]
  997. Forcefully enable Physical Address Extension (PAE).
  998. Many Pentium M systems disable PAE but may have a
  999. functionally usable PAE implementation.
  1000. Warning: use of this parameter will taint the kernel
  1001. and may cause unknown problems.
  1002. ftrace=[tracer]
  1003. [FTRACE] will set and start the specified tracer
  1004. as early as possible in order to facilitate early
  1005. boot debugging.
  1006. ftrace_dump_on_oops[=orig_cpu]
  1007. [FTRACE] will dump the trace buffers on oops.
  1008. If no parameter is passed, ftrace will dump
  1009. buffers of all CPUs, but if you pass orig_cpu, it will
  1010. dump only the buffer of the CPU that triggered the
  1011. oops.
  1012. ftrace_filter=[function-list]
  1013. [FTRACE] Limit the functions traced by the function
  1014. tracer at boot up. function-list is a comma separated
  1015. list of functions. This list can be changed at run
  1016. time by the set_ftrace_filter file in the debugfs
  1017. tracing directory.
  1018. ftrace_notrace=[function-list]
  1019. [FTRACE] Do not trace the functions specified in
  1020. function-list. This list can be changed at run time
  1021. by the set_ftrace_notrace file in the debugfs
  1022. tracing directory.
  1023. ftrace_graph_filter=[function-list]
  1024. [FTRACE] Limit the top level callers functions traced
  1025. by the function graph tracer at boot up.
  1026. function-list is a comma separated list of functions
  1027. that can be changed at run time by the
  1028. set_graph_function file in the debugfs tracing directory.
  1029. ftrace_graph_notrace=[function-list]
  1030. [FTRACE] Do not trace from the functions specified in
  1031. function-list. This list is a comma separated list of
  1032. functions that can be changed at run time by the
  1033. set_graph_notrace file in the debugfs tracing directory.
  1034. ftrace_graph_max_depth=<uint>
  1035. [FTRACE] Used with the function graph tracer. This is
  1036. the max depth it will trace into a function. This value
  1037. can be changed at run time by the max_graph_depth file
  1038. in the tracefs tracing directory. default: 0 (no limit)
  1039. gamecon.map[2|3]=
  1040. [HW,JOY] Multisystem joystick and NES/SNES/PSX pad
  1041. support via parallel port (up to 5 devices per port)
  1042. Format: <port#>,<pad1>,<pad2>,<pad3>,<pad4>,<pad5>
  1043. See also Documentation/input/devices/joystick-parport.rst
  1044. gamma= [HW,DRM]
  1045. gart_fix_e820= [X86_64] disable the fix e820 for K8 GART
  1046. Format: off | on
  1047. default: on
  1048. gcov_persist= [GCOV] When non-zero (default), profiling data for
  1049. kernel modules is saved and remains accessible via
  1050. debugfs, even when the module is unloaded/reloaded.
  1051. When zero, profiling data is discarded and associated
  1052. debugfs files are removed at module unload time.
  1053. goldfish [X86] Enable the goldfish android emulator platform.
  1054. Don't use this when you are not running on the
  1055. android emulator
  1056. gpt [EFI] Forces disk with valid GPT signature but
  1057. invalid Protective MBR to be treated as GPT. If the
  1058. primary GPT is corrupted, it enables the backup/alternate
  1059. GPT to be used instead.
  1060. grcan.enable0= [HW] Configuration of physical interface 0. Determines
  1061. the "Enable 0" bit of the configuration register.
  1062. Format: 0 | 1
  1063. Default: 0
  1064. grcan.enable1= [HW] Configuration of physical interface 1. Determines
  1065. the "Enable 0" bit of the configuration register.
  1066. Format: 0 | 1
  1067. Default: 0
  1068. grcan.select= [HW] Select which physical interface to use.
  1069. Format: 0 | 1
  1070. Default: 0
  1071. grcan.txsize= [HW] Sets the size of the tx buffer.
  1072. Format: <unsigned int> such that (txsize & ~0x1fffc0) == 0.
  1073. Default: 1024
  1074. grcan.rxsize= [HW] Sets the size of the rx buffer.
  1075. Format: <unsigned int> such that (rxsize & ~0x1fffc0) == 0.
  1076. Default: 1024
  1077. gpio-mockup.gpio_mockup_ranges
  1078. [HW] Sets the ranges of gpiochip of for this device.
  1079. Format: <start1>,<end1>,<start2>,<end2>...
  1080. hardlockup_all_cpu_backtrace=
  1081. [KNL] Should the hard-lockup detector generate
  1082. backtraces on all cpus.
  1083. Format: <integer>
  1084. hashdist= [KNL,NUMA] Large hashes allocated during boot
  1085. are distributed across NUMA nodes. Defaults on
  1086. for 64-bit NUMA, off otherwise.
  1087. Format: 0 | 1 (for off | on)
  1088. hcl= [IA-64] SGI's Hardware Graph compatibility layer
  1089. hd= [EIDE] (E)IDE hard drive subsystem geometry
  1090. Format: <cyl>,<head>,<sect>
  1091. hest_disable [ACPI]
  1092. Disable Hardware Error Source Table (HEST) support;
  1093. corresponding firmware-first mode error processing
  1094. logic will be disabled.
  1095. highmem=nn[KMG] [KNL,BOOT] forces the highmem zone to have an exact
  1096. size of <nn>. This works even on boxes that have no
  1097. highmem otherwise. This also works to reduce highmem
  1098. size on bigger boxes.
  1099. highres= [KNL] Enable/disable high resolution timer mode.
  1100. Valid parameters: "on", "off"
  1101. Default: "on"
  1102. hisax= [HW,ISDN]
  1103. See Documentation/isdn/README.HiSax.
  1104. hlt [BUGS=ARM,SH]
  1105. hpet= [X86-32,HPET] option to control HPET usage
  1106. Format: { enable (default) | disable | force |
  1107. verbose }
  1108. disable: disable HPET and use PIT instead
  1109. force: allow force enabled of undocumented chips (ICH4,
  1110. VIA, nVidia)
  1111. verbose: show contents of HPET registers during setup
  1112. hpet_mmap= [X86, HPET_MMAP] Allow userspace to mmap HPET
  1113. registers. Default set by CONFIG_HPET_MMAP_DEFAULT.
  1114. hugepages= [HW,X86-32,IA-64] HugeTLB pages to allocate at boot.
  1115. hugepagesz= [HW,IA-64,PPC,X86-64] The size of the HugeTLB pages.
  1116. On x86-64 and powerpc, this option can be specified
  1117. multiple times interleaved with hugepages= to reserve
  1118. huge pages of different sizes. Valid pages sizes on
  1119. x86-64 are 2M (when the CPU supports "pse") and 1G
  1120. (when the CPU supports the "pdpe1gb" cpuinfo flag).
  1121. hung_task_panic=
  1122. [KNL] Should the hung task detector generate panics.
  1123. Format: <integer>
  1124. A nonzero value instructs the kernel to panic when a
  1125. hung task is detected. The default value is controlled
  1126. by the CONFIG_BOOTPARAM_HUNG_TASK_PANIC build-time
  1127. option. The value selected by this boot parameter can
  1128. be changed later by the kernel.hung_task_panic sysctl.
  1129. hvc_iucv= [S390] Number of z/VM IUCV hypervisor console (HVC)
  1130. terminal devices. Valid values: 0..8
  1131. hvc_iucv_allow= [S390] Comma-separated list of z/VM user IDs.
  1132. If specified, z/VM IUCV HVC accepts connections
  1133. from listed z/VM user IDs only.
  1134. keep_bootcon [KNL]
  1135. Do not unregister boot console at start. This is only
  1136. useful for debugging when something happens in the window
  1137. between unregistering the boot console and initializing
  1138. the real console.
  1139. i2c_bus= [HW] Override the default board specific I2C bus speed
  1140. or register an additional I2C bus that is not
  1141. registered from board initialization code.
  1142. Format:
  1143. <bus_id>,<clkrate>
  1144. i8042.debug [HW] Toggle i8042 debug mode
  1145. i8042.unmask_kbd_data
  1146. [HW] Enable printing of interrupt data from the KBD port
  1147. (disabled by default, and as a pre-condition
  1148. requires that i8042.debug=1 be enabled)
  1149. i8042.direct [HW] Put keyboard port into non-translated mode
  1150. i8042.dumbkbd [HW] Pretend that controller can only read data from
  1151. keyboard and cannot control its state
  1152. (Don't attempt to blink the leds)
  1153. i8042.noaux [HW] Don't check for auxiliary (== mouse) port
  1154. i8042.nokbd [HW] Don't check/create keyboard port
  1155. i8042.noloop [HW] Disable the AUX Loopback command while probing
  1156. for the AUX port
  1157. i8042.nomux [HW] Don't check presence of an active multiplexing
  1158. controller
  1159. i8042.nopnp [HW] Don't use ACPIPnP / PnPBIOS to discover KBD/AUX
  1160. controllers
  1161. i8042.notimeout [HW] Ignore timeout condition signalled by controller
  1162. i8042.reset [HW] Reset the controller during init, cleanup and
  1163. suspend-to-ram transitions, only during s2r
  1164. transitions, or never reset
  1165. Format: { 1 | Y | y | 0 | N | n }
  1166. 1, Y, y: always reset controller
  1167. 0, N, n: don't ever reset controller
  1168. Default: only on s2r transitions on x86; most other
  1169. architectures force reset to be always executed
  1170. i8042.unlock [HW] Unlock (ignore) the keylock
  1171. i8042.kbdreset [HW] Reset device connected to KBD port
  1172. i810= [HW,DRM]
  1173. i8k.ignore_dmi [HW] Continue probing hardware even if DMI data
  1174. indicates that the driver is running on unsupported
  1175. hardware.
  1176. i8k.force [HW] Activate i8k driver even if SMM BIOS signature
  1177. does not match list of supported models.
  1178. i8k.power_status
  1179. [HW] Report power status in /proc/i8k
  1180. (disabled by default)
  1181. i8k.restricted [HW] Allow controlling fans only if SYS_ADMIN
  1182. capability is set.
  1183. i915.invert_brightness=
  1184. [DRM] Invert the sense of the variable that is used to
  1185. set the brightness of the panel backlight. Normally a
  1186. brightness value of 0 indicates backlight switched off,
  1187. and the maximum of the brightness value sets the backlight
  1188. to maximum brightness. If this parameter is set to 0
  1189. (default) and the machine requires it, or this parameter
  1190. is set to 1, a brightness value of 0 sets the backlight
  1191. to maximum brightness, and the maximum of the brightness
  1192. value switches the backlight off.
  1193. -1 -- never invert brightness
  1194. 0 -- machine default
  1195. 1 -- force brightness inversion
  1196. icn= [HW,ISDN]
  1197. Format: <io>[,<membase>[,<icn_id>[,<icn_id2>]]]
  1198. ide-core.nodma= [HW] (E)IDE subsystem
  1199. Format: =0.0 to prevent dma on hda, =0.1 hdb =1.0 hdc
  1200. .vlb_clock .pci_clock .noflush .nohpa .noprobe .nowerr
  1201. .cdrom .chs .ignore_cable are additional options
  1202. See Documentation/ide/ide.txt.
  1203. ide-generic.probe-mask= [HW] (E)IDE subsystem
  1204. Format: <int>
  1205. Probe mask for legacy ISA IDE ports. Depending on
  1206. platform up to 6 ports are supported, enabled by
  1207. setting corresponding bits in the mask to 1. The
  1208. default value is 0x0, which has a special meaning.
  1209. On systems that have PCI, it triggers scanning the
  1210. PCI bus for the first and the second port, which
  1211. are then probed. On systems without PCI the value
  1212. of 0x0 enables probing the two first ports as if it
  1213. was 0x3.
  1214. ide-pci-generic.all-generic-ide [HW] (E)IDE subsystem
  1215. Claim all unknown PCI IDE storage controllers.
  1216. idle= [X86]
  1217. Format: idle=poll, idle=halt, idle=nomwait
  1218. Poll forces a polling idle loop that can slightly
  1219. improve the performance of waking up a idle CPU, but
  1220. will use a lot of power and make the system run hot.
  1221. Not recommended.
  1222. idle=halt: Halt is forced to be used for CPU idle.
  1223. In such case C2/C3 won't be used again.
  1224. idle=nomwait: Disable mwait for CPU C-states
  1225. ieee754= [MIPS] Select IEEE Std 754 conformance mode
  1226. Format: { strict | legacy | 2008 | relaxed }
  1227. Default: strict
  1228. Choose which programs will be accepted for execution
  1229. based on the IEEE 754 NaN encoding(s) supported by
  1230. the FPU and the NaN encoding requested with the value
  1231. of an ELF file header flag individually set by each
  1232. binary. Hardware implementations are permitted to
  1233. support either or both of the legacy and the 2008 NaN
  1234. encoding mode.
  1235. Available settings are as follows:
  1236. strict accept binaries that request a NaN encoding
  1237. supported by the FPU
  1238. legacy only accept legacy-NaN binaries, if supported
  1239. by the FPU
  1240. 2008 only accept 2008-NaN binaries, if supported
  1241. by the FPU
  1242. relaxed accept any binaries regardless of whether
  1243. supported by the FPU
  1244. The FPU emulator is always able to support both NaN
  1245. encodings, so if no FPU hardware is present or it has
  1246. been disabled with 'nofpu', then the settings of
  1247. 'legacy' and '2008' strap the emulator accordingly,
  1248. 'relaxed' straps the emulator for both legacy-NaN and
  1249. 2008-NaN, whereas 'strict' enables legacy-NaN only on
  1250. legacy processors and both NaN encodings on MIPS32 or
  1251. MIPS64 CPUs.
  1252. The setting for ABS.fmt/NEG.fmt instruction execution
  1253. mode generally follows that for the NaN encoding,
  1254. except where unsupported by hardware.
  1255. ignore_loglevel [KNL]
  1256. Ignore loglevel setting - this will print /all/
  1257. kernel messages to the console. Useful for debugging.
  1258. We also add it as printk module parameter, so users
  1259. could change it dynamically, usually by
  1260. /sys/module/printk/parameters/ignore_loglevel.
  1261. ignore_rlimit_data
  1262. Ignore RLIMIT_DATA setting for data mappings,
  1263. print warning at first misuse. Can be changed via
  1264. /sys/module/kernel/parameters/ignore_rlimit_data.
  1265. ihash_entries= [KNL]
  1266. Set number of hash buckets for inode cache.
  1267. ima_appraise= [IMA] appraise integrity measurements
  1268. Format: { "off" | "enforce" | "fix" | "log" }
  1269. default: "enforce"
  1270. ima_appraise_tcb [IMA]
  1271. The builtin appraise policy appraises all files
  1272. owned by uid=0.
  1273. ima_canonical_fmt [IMA]
  1274. Use the canonical format for the binary runtime
  1275. measurements, instead of host native format.
  1276. ima_hash= [IMA]
  1277. Format: { md5 | sha1 | rmd160 | sha256 | sha384
  1278. | sha512 | ... }
  1279. default: "sha1"
  1280. The list of supported hash algorithms is defined
  1281. in crypto/hash_info.h.
  1282. ima_policy= [IMA]
  1283. The builtin policies to load during IMA setup.
  1284. Format: "tcb | appraise_tcb | secure_boot |
  1285. fail_securely"
  1286. The "tcb" policy measures all programs exec'd, files
  1287. mmap'd for exec, and all files opened with the read
  1288. mode bit set by either the effective uid (euid=0) or
  1289. uid=0.
  1290. The "appraise_tcb" policy appraises the integrity of
  1291. all files owned by root. (This is the equivalent
  1292. of ima_appraise_tcb.)
  1293. The "secure_boot" policy appraises the integrity
  1294. of files (eg. kexec kernel image, kernel modules,
  1295. firmware, policy, etc) based on file signatures.
  1296. The "fail_securely" policy forces file signature
  1297. verification failure also on privileged mounted
  1298. filesystems with the SB_I_UNVERIFIABLE_SIGNATURE
  1299. flag.
  1300. ima_tcb [IMA] Deprecated. Use ima_policy= instead.
  1301. Load a policy which meets the needs of the Trusted
  1302. Computing Base. This means IMA will measure all
  1303. programs exec'd, files mmap'd for exec, and all files
  1304. opened for read by uid=0.
  1305. ima_template= [IMA]
  1306. Select one of defined IMA measurements template formats.
  1307. Formats: { "ima" | "ima-ng" | "ima-sig" }
  1308. Default: "ima-ng"
  1309. ima_template_fmt=
  1310. [IMA] Define a custom template format.
  1311. Format: { "field1|...|fieldN" }
  1312. ima.ahash_minsize= [IMA] Minimum file size for asynchronous hash usage
  1313. Format: <min_file_size>
  1314. Set the minimal file size for using asynchronous hash.
  1315. If left unspecified, ahash usage is disabled.
  1316. ahash performance varies for different data sizes on
  1317. different crypto accelerators. This option can be used
  1318. to achieve the best performance for a particular HW.
  1319. ima.ahash_bufsize= [IMA] Asynchronous hash buffer size
  1320. Format: <bufsize>
  1321. Set hashing buffer size. Default: 4k.
  1322. ahash performance varies for different chunk sizes on
  1323. different crypto accelerators. This option can be used
  1324. to achieve best performance for particular HW.
  1325. init= [KNL]
  1326. Format: <full_path>
  1327. Run specified binary instead of /sbin/init as init
  1328. process.
  1329. initcall_debug [KNL] Trace initcalls as they are executed. Useful
  1330. for working out where the kernel is dying during
  1331. startup.
  1332. initcall_blacklist= [KNL] Do not execute a comma-separated list of
  1333. initcall functions. Useful for debugging built-in
  1334. modules and initcalls.
  1335. initrd= [BOOT] Specify the location of the initial ramdisk
  1336. init_pkru= [x86] Specify the default memory protection keys rights
  1337. register contents for all processes. 0x55555554 by
  1338. default (disallow access to all but pkey 0). Can
  1339. override in debugfs after boot.
  1340. inport.irq= [HW] Inport (ATI XL and Microsoft) busmouse driver
  1341. Format: <irq>
  1342. int_pln_enable [x86] Enable power limit notification interrupt
  1343. integrity_audit=[IMA]
  1344. Format: { "0" | "1" }
  1345. 0 -- basic integrity auditing messages. (Default)
  1346. 1 -- additional integrity auditing messages.
  1347. intel_iommu= [DMAR] Intel IOMMU driver (DMAR) option
  1348. on
  1349. Enable intel iommu driver.
  1350. off
  1351. Disable intel iommu driver.
  1352. igfx_off [Default Off]
  1353. By default, gfx is mapped as normal device. If a gfx
  1354. device has a dedicated DMAR unit, the DMAR unit is
  1355. bypassed by not enabling DMAR with this option. In
  1356. this case, gfx device will use physical address for
  1357. DMA.
  1358. forcedac [x86_64]
  1359. With this option iommu will not optimize to look
  1360. for io virtual address below 32-bit forcing dual
  1361. address cycle on pci bus for cards supporting greater
  1362. than 32-bit addressing. The default is to look
  1363. for translation below 32-bit and if not available
  1364. then look in the higher range.
  1365. strict [Default Off]
  1366. With this option on every unmap_single operation will
  1367. result in a hardware IOTLB flush operation as opposed
  1368. to batching them for performance.
  1369. sp_off [Default Off]
  1370. By default, super page will be supported if Intel IOMMU
  1371. has the capability. With this option, super page will
  1372. not be supported.
  1373. ecs_off [Default Off]
  1374. By default, extended context tables will be supported if
  1375. the hardware advertises that it has support both for the
  1376. extended tables themselves, and also PASID support. With
  1377. this option set, extended tables will not be used even
  1378. on hardware which claims to support them.
  1379. tboot_noforce [Default Off]
  1380. Do not force the Intel IOMMU enabled under tboot.
  1381. By default, tboot will force Intel IOMMU on, which
  1382. could harm performance of some high-throughput
  1383. devices like 40GBit network cards, even if identity
  1384. mapping is enabled.
  1385. Note that using this option lowers the security
  1386. provided by tboot because it makes the system
  1387. vulnerable to DMA attacks.
  1388. intel_idle.max_cstate= [KNL,HW,ACPI,X86]
  1389. 0 disables intel_idle and fall back on acpi_idle.
  1390. 1 to 9 specify maximum depth of C-state.
  1391. intel_pstate= [X86]
  1392. disable
  1393. Do not enable intel_pstate as the default
  1394. scaling driver for the supported processors
  1395. passive
  1396. Use intel_pstate as a scaling driver, but configure it
  1397. to work with generic cpufreq governors (instead of
  1398. enabling its internal governor). This mode cannot be
  1399. used along with the hardware-managed P-states (HWP)
  1400. feature.
  1401. force
  1402. Enable intel_pstate on systems that prohibit it by default
  1403. in favor of acpi-cpufreq. Forcing the intel_pstate driver
  1404. instead of acpi-cpufreq may disable platform features, such
  1405. as thermal controls and power capping, that rely on ACPI
  1406. P-States information being indicated to OSPM and therefore
  1407. should be used with caution. This option does not work with
  1408. processors that aren't supported by the intel_pstate driver
  1409. or on platforms that use pcc-cpufreq instead of acpi-cpufreq.
  1410. no_hwp
  1411. Do not enable hardware P state control (HWP)
  1412. if available.
  1413. hwp_only
  1414. Only load intel_pstate on systems which support
  1415. hardware P state control (HWP) if available.
  1416. support_acpi_ppc
  1417. Enforce ACPI _PPC performance limits. If the Fixed ACPI
  1418. Description Table, specifies preferred power management
  1419. profile as "Enterprise Server" or "Performance Server",
  1420. then this feature is turned on by default.
  1421. per_cpu_perf_limits
  1422. Allow per-logical-CPU P-State performance control limits using
  1423. cpufreq sysfs interface
  1424. intremap= [X86-64, Intel-IOMMU]
  1425. on enable Interrupt Remapping (default)
  1426. off disable Interrupt Remapping
  1427. nosid disable Source ID checking
  1428. no_x2apic_optout
  1429. BIOS x2APIC opt-out request will be ignored
  1430. nopost disable Interrupt Posting
  1431. iomem= Disable strict checking of access to MMIO memory
  1432. strict regions from userspace.
  1433. relaxed
  1434. iommu= [x86]
  1435. off
  1436. force
  1437. noforce
  1438. biomerge
  1439. panic
  1440. nopanic
  1441. merge
  1442. nomerge
  1443. soft
  1444. pt [x86, IA-64]
  1445. nobypass [PPC/POWERNV]
  1446. Disable IOMMU bypass, using IOMMU for PCI devices.
  1447. iommu.passthrough=
  1448. [ARM64] Configure DMA to bypass the IOMMU by default.
  1449. Format: { "0" | "1" }
  1450. 0 - Use IOMMU translation for DMA.
  1451. 1 - Bypass the IOMMU for DMA.
  1452. unset - Use IOMMU translation for DMA.
  1453. io7= [HW] IO7 for Marvel based alpha systems
  1454. See comment before marvel_specify_io7 in
  1455. arch/alpha/kernel/core_marvel.c.
  1456. io_delay= [X86] I/O delay method
  1457. 0x80
  1458. Standard port 0x80 based delay
  1459. 0xed
  1460. Alternate port 0xed based delay (needed on some systems)
  1461. udelay
  1462. Simple two microseconds delay
  1463. none
  1464. No delay
  1465. ip= [IP_PNP]
  1466. See Documentation/filesystems/nfs/nfsroot.txt.
  1467. irqaffinity= [SMP] Set the default irq affinity mask
  1468. The argument is a cpu list, as described above.
  1469. irqchip.gicv2_force_probe=
  1470. [ARM, ARM64]
  1471. Format: <bool>
  1472. Force the kernel to look for the second 4kB page
  1473. of a GICv2 controller even if the memory range
  1474. exposed by the device tree is too small.
  1475. irqchip.gicv3_nolpi=
  1476. [ARM, ARM64]
  1477. Force the kernel to ignore the availability of
  1478. LPIs (and by consequence ITSs). Intended for system
  1479. that use the kernel as a bootloader, and thus want
  1480. to let secondary kernels in charge of setting up
  1481. LPIs.
  1482. irqfixup [HW]
  1483. When an interrupt is not handled search all handlers
  1484. for it. Intended to get systems with badly broken
  1485. firmware running.
  1486. irqpoll [HW]
  1487. When an interrupt is not handled search all handlers
  1488. for it. Also check all handlers each timer
  1489. interrupt. Intended to get systems with badly broken
  1490. firmware running.
  1491. isapnp= [ISAPNP]
  1492. Format: <RDP>,<reset>,<pci_scan>,<verbosity>
  1493. isolcpus= [KNL,SMP,ISOL] Isolate a given set of CPUs from disturbance.
  1494. [Deprecated - use cpusets instead]
  1495. Format: [flag-list,]<cpu-list>
  1496. Specify one or more CPUs to isolate from disturbances
  1497. specified in the flag list (default: domain):
  1498. nohz
  1499. Disable the tick when a single task runs.
  1500. A residual 1Hz tick is offloaded to workqueues, which you
  1501. need to affine to housekeeping through the global
  1502. workqueue's affinity configured via the
  1503. /sys/devices/virtual/workqueue/cpumask sysfs file, or
  1504. by using the 'domain' flag described below.
  1505. NOTE: by default the global workqueue runs on all CPUs,
  1506. so to protect individual CPUs the 'cpumask' file has to
  1507. be configured manually after bootup.
  1508. domain
  1509. Isolate from the general SMP balancing and scheduling
  1510. algorithms. Note that performing domain isolation this way
  1511. is irreversible: it's not possible to bring back a CPU to
  1512. the domains once isolated through isolcpus. It's strongly
  1513. advised to use cpusets instead to disable scheduler load
  1514. balancing through the "cpuset.sched_load_balance" file.
  1515. It offers a much more flexible interface where CPUs can
  1516. move in and out of an isolated set anytime.
  1517. You can move a process onto or off an "isolated" CPU via
  1518. the CPU affinity syscalls or cpuset.
  1519. <cpu number> begins at 0 and the maximum value is
  1520. "number of CPUs in system - 1".
  1521. The format of <cpu-list> is described above.
  1522. iucv= [HW,NET]
  1523. ivrs_ioapic [HW,X86_64]
  1524. Provide an override to the IOAPIC-ID<->DEVICE-ID
  1525. mapping provided in the IVRS ACPI table. For
  1526. example, to map IOAPIC-ID decimal 10 to
  1527. PCI device 00:14.0 write the parameter as:
  1528. ivrs_ioapic[10]=00:14.0
  1529. ivrs_hpet [HW,X86_64]
  1530. Provide an override to the HPET-ID<->DEVICE-ID
  1531. mapping provided in the IVRS ACPI table. For
  1532. example, to map HPET-ID decimal 0 to
  1533. PCI device 00:14.0 write the parameter as:
  1534. ivrs_hpet[0]=00:14.0
  1535. ivrs_acpihid [HW,X86_64]
  1536. Provide an override to the ACPI-HID:UID<->DEVICE-ID
  1537. mapping provided in the IVRS ACPI table. For
  1538. example, to map UART-HID:UID AMD0020:0 to
  1539. PCI device 00:14.5 write the parameter as:
  1540. ivrs_acpihid[00:14.5]=AMD0020:0
  1541. js= [HW,JOY] Analog joystick
  1542. See Documentation/input/joydev/joystick.rst.
  1543. nokaslr [KNL]
  1544. When CONFIG_RANDOMIZE_BASE is set, this disables
  1545. kernel and module base offset ASLR (Address Space
  1546. Layout Randomization).
  1547. kasan_multi_shot
  1548. [KNL] Enforce KASAN (Kernel Address Sanitizer) to print
  1549. report on every invalid memory access. Without this
  1550. parameter KASAN will print report only for the first
  1551. invalid access.
  1552. keepinitrd [HW,ARM]
  1553. kernelcore= [KNL,X86,IA-64,PPC]
  1554. Format: nn[KMGTPE] | nn% | "mirror"
  1555. This parameter specifies the amount of memory usable by
  1556. the kernel for non-movable allocations. The requested
  1557. amount is spread evenly throughout all nodes in the
  1558. system as ZONE_NORMAL. The remaining memory is used for
  1559. movable memory in its own zone, ZONE_MOVABLE. In the
  1560. event, a node is too small to have both ZONE_NORMAL and
  1561. ZONE_MOVABLE, kernelcore memory will take priority and
  1562. other nodes will have a larger ZONE_MOVABLE.
  1563. ZONE_MOVABLE is used for the allocation of pages that
  1564. may be reclaimed or moved by the page migration
  1565. subsystem. Note that allocations like PTEs-from-HighMem
  1566. still use the HighMem zone if it exists, and the Normal
  1567. zone if it does not.
  1568. It is possible to specify the exact amount of memory in
  1569. the form of "nn[KMGTPE]", a percentage of total system
  1570. memory in the form of "nn%", or "mirror". If "mirror"
  1571. option is specified, mirrored (reliable) memory is used
  1572. for non-movable allocations and remaining memory is used
  1573. for Movable pages. "nn[KMGTPE]", "nn%", and "mirror"
  1574. are exclusive, so you cannot specify multiple forms.
  1575. kgdbdbgp= [KGDB,HW] kgdb over EHCI usb debug port.
  1576. Format: <Controller#>[,poll interval]
  1577. The controller # is the number of the ehci usb debug
  1578. port as it is probed via PCI. The poll interval is
  1579. optional and is the number seconds in between
  1580. each poll cycle to the debug port in case you need
  1581. the functionality for interrupting the kernel with
  1582. gdb or control-c on the dbgp connection. When
  1583. not using this parameter you use sysrq-g to break into
  1584. the kernel debugger.
  1585. kgdboc= [KGDB,HW] kgdb over consoles.
  1586. Requires a tty driver that supports console polling,
  1587. or a supported polling keyboard driver (non-usb).
  1588. Serial only format: <serial_device>[,baud]
  1589. keyboard only format: kbd
  1590. keyboard and serial format: kbd,<serial_device>[,baud]
  1591. Optional Kernel mode setting:
  1592. kms, kbd format: kms,kbd
  1593. kms, kbd and serial format: kms,kbd,<ser_dev>[,baud]
  1594. kgdbwait [KGDB] Stop kernel execution and enter the
  1595. kernel debugger at the earliest opportunity.
  1596. kmac= [MIPS] korina ethernet MAC address.
  1597. Configure the RouterBoard 532 series on-chip
  1598. Ethernet adapter MAC address.
  1599. kmemleak= [KNL] Boot-time kmemleak enable/disable
  1600. Valid arguments: on, off
  1601. Default: on
  1602. Built with CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y,
  1603. the default is off.
  1604. kvm.ignore_msrs=[KVM] Ignore guest accesses to unhandled MSRs.
  1605. Default is 0 (don't ignore, but inject #GP)
  1606. kvm.enable_vmware_backdoor=[KVM] Support VMware backdoor PV interface.
  1607. Default is false (don't support).
  1608. kvm.mmu_audit= [KVM] This is a R/W parameter which allows audit
  1609. KVM MMU at runtime.
  1610. Default is 0 (off)
  1611. kvm-amd.nested= [KVM,AMD] Allow nested virtualization in KVM/SVM.
  1612. Default is 1 (enabled)
  1613. kvm-amd.npt= [KVM,AMD] Disable nested paging (virtualized MMU)
  1614. for all guests.
  1615. Default is 1 (enabled) if in 64-bit or 32-bit PAE mode.
  1616. kvm-arm.vgic_v3_group0_trap=
  1617. [KVM,ARM] Trap guest accesses to GICv3 group-0
  1618. system registers
  1619. kvm-arm.vgic_v3_group1_trap=
  1620. [KVM,ARM] Trap guest accesses to GICv3 group-1
  1621. system registers
  1622. kvm-arm.vgic_v3_common_trap=
  1623. [KVM,ARM] Trap guest accesses to GICv3 common
  1624. system registers
  1625. kvm-arm.vgic_v4_enable=
  1626. [KVM,ARM] Allow use of GICv4 for direct injection of
  1627. LPIs.
  1628. kvm-intel.ept= [KVM,Intel] Disable extended page tables
  1629. (virtualized MMU) support on capable Intel chips.
  1630. Default is 1 (enabled)
  1631. kvm-intel.emulate_invalid_guest_state=
  1632. [KVM,Intel] Enable emulation of invalid guest states
  1633. Default is 0 (disabled)
  1634. kvm-intel.flexpriority=
  1635. [KVM,Intel] Disable FlexPriority feature (TPR shadow).
  1636. Default is 1 (enabled)
  1637. kvm-intel.nested=
  1638. [KVM,Intel] Enable VMX nesting (nVMX).
  1639. Default is 0 (disabled)
  1640. kvm-intel.unrestricted_guest=
  1641. [KVM,Intel] Disable unrestricted guest feature
  1642. (virtualized real and unpaged mode) on capable
  1643. Intel chips. Default is 1 (enabled)
  1644. kvm-intel.vpid= [KVM,Intel] Disable Virtual Processor Identification
  1645. feature (tagged TLBs) on capable Intel chips.
  1646. Default is 1 (enabled)
  1647. l2cr= [PPC]
  1648. l3cr= [PPC]
  1649. lapic [X86-32,APIC] Enable the local APIC even if BIOS
  1650. disabled it.
  1651. lapic= [x86,APIC] "notscdeadline" Do not use TSC deadline
  1652. value for LAPIC timer one-shot implementation. Default
  1653. back to the programmable timer unit in the LAPIC.
  1654. lapic_timer_c2_ok [X86,APIC] trust the local apic timer
  1655. in C2 power state.
  1656. libata.dma= [LIBATA] DMA control
  1657. libata.dma=0 Disable all PATA and SATA DMA
  1658. libata.dma=1 PATA and SATA Disk DMA only
  1659. libata.dma=2 ATAPI (CDROM) DMA only
  1660. libata.dma=4 Compact Flash DMA only
  1661. Combinations also work, so libata.dma=3 enables DMA
  1662. for disks and CDROMs, but not CFs.
  1663. libata.ignore_hpa= [LIBATA] Ignore HPA limit
  1664. libata.ignore_hpa=0 keep BIOS limits (default)
  1665. libata.ignore_hpa=1 ignore limits, using full disk
  1666. libata.noacpi [LIBATA] Disables use of ACPI in libata suspend/resume
  1667. when set.
  1668. Format: <int>
  1669. libata.force= [LIBATA] Force configurations. The format is comma
  1670. separated list of "[ID:]VAL" where ID is
  1671. PORT[.DEVICE]. PORT and DEVICE are decimal numbers
  1672. matching port, link or device. Basically, it matches
  1673. the ATA ID string printed on console by libata. If
  1674. the whole ID part is omitted, the last PORT and DEVICE
  1675. values are used. If ID hasn't been specified yet, the
  1676. configuration applies to all ports, links and devices.
  1677. If only DEVICE is omitted, the parameter applies to
  1678. the port and all links and devices behind it. DEVICE
  1679. number of 0 either selects the first device or the
  1680. first fan-out link behind PMP device. It does not
  1681. select the host link. DEVICE number of 15 selects the
  1682. host link and device attached to it.
  1683. The VAL specifies the configuration to force. As long
  1684. as there's no ambiguity shortcut notation is allowed.
  1685. For example, both 1.5 and 1.5G would work for 1.5Gbps.
  1686. The following configurations can be forced.
  1687. * Cable type: 40c, 80c, short40c, unk, ign or sata.
  1688. Any ID with matching PORT is used.
  1689. * SATA link speed limit: 1.5Gbps or 3.0Gbps.
  1690. * Transfer mode: pio[0-7], mwdma[0-4] and udma[0-7].
  1691. udma[/][16,25,33,44,66,100,133] notation is also
  1692. allowed.
  1693. * [no]ncq: Turn on or off NCQ.
  1694. * [no]ncqtrim: Turn off queued DSM TRIM.
  1695. * nohrst, nosrst, norst: suppress hard, soft
  1696. and both resets.
  1697. * rstonce: only attempt one reset during
  1698. hot-unplug link recovery
  1699. * dump_id: dump IDENTIFY data.
  1700. * atapi_dmadir: Enable ATAPI DMADIR bridge support
  1701. * disable: Disable this device.
  1702. If there are multiple matching configurations changing
  1703. the same attribute, the last one is used.
  1704. memblock=debug [KNL] Enable memblock debug messages.
  1705. load_ramdisk= [RAM] List of ramdisks to load from floppy
  1706. See Documentation/blockdev/ramdisk.txt.
  1707. lockd.nlm_grace_period=P [NFS] Assign grace period.
  1708. Format: <integer>
  1709. lockd.nlm_tcpport=N [NFS] Assign TCP port.
  1710. Format: <integer>
  1711. lockd.nlm_timeout=T [NFS] Assign timeout value.
  1712. Format: <integer>
  1713. lockd.nlm_udpport=M [NFS] Assign UDP port.
  1714. Format: <integer>
  1715. locktorture.nreaders_stress= [KNL]
  1716. Set the number of locking read-acquisition kthreads.
  1717. Defaults to being automatically set based on the
  1718. number of online CPUs.
  1719. locktorture.nwriters_stress= [KNL]
  1720. Set the number of locking write-acquisition kthreads.
  1721. locktorture.onoff_holdoff= [KNL]
  1722. Set time (s) after boot for CPU-hotplug testing.
  1723. locktorture.onoff_interval= [KNL]
  1724. Set time (s) between CPU-hotplug operations, or
  1725. zero to disable CPU-hotplug testing.
  1726. locktorture.shuffle_interval= [KNL]
  1727. Set task-shuffle interval (jiffies). Shuffling
  1728. tasks allows some CPUs to go into dyntick-idle
  1729. mode during the locktorture test.
  1730. locktorture.shutdown_secs= [KNL]
  1731. Set time (s) after boot system shutdown. This
  1732. is useful for hands-off automated testing.
  1733. locktorture.stat_interval= [KNL]
  1734. Time (s) between statistics printk()s.
  1735. locktorture.stutter= [KNL]
  1736. Time (s) to stutter testing, for example,
  1737. specifying five seconds causes the test to run for
  1738. five seconds, wait for five seconds, and so on.
  1739. This tests the locking primitive's ability to
  1740. transition abruptly to and from idle.
  1741. locktorture.torture_type= [KNL]
  1742. Specify the locking implementation to test.
  1743. locktorture.verbose= [KNL]
  1744. Enable additional printk() statements.
  1745. logibm.irq= [HW,MOUSE] Logitech Bus Mouse Driver
  1746. Format: <irq>
  1747. loglevel= All Kernel Messages with a loglevel smaller than the
  1748. console loglevel will be printed to the console. It can
  1749. also be changed with klogd or other programs. The
  1750. loglevels are defined as follows:
  1751. 0 (KERN_EMERG) system is unusable
  1752. 1 (KERN_ALERT) action must be taken immediately
  1753. 2 (KERN_CRIT) critical conditions
  1754. 3 (KERN_ERR) error conditions
  1755. 4 (KERN_WARNING) warning conditions
  1756. 5 (KERN_NOTICE) normal but significant condition
  1757. 6 (KERN_INFO) informational
  1758. 7 (KERN_DEBUG) debug-level messages
  1759. log_buf_len=n[KMG] Sets the size of the printk ring buffer,
  1760. in bytes. n must be a power of two and greater
  1761. than the minimal size. The minimal size is defined
  1762. by LOG_BUF_SHIFT kernel config parameter. There is
  1763. also CONFIG_LOG_CPU_MAX_BUF_SHIFT config parameter
  1764. that allows to increase the default size depending on
  1765. the number of CPUs. See init/Kconfig for more details.
  1766. logo.nologo [FB] Disables display of the built-in Linux logo.
  1767. This may be used to provide more screen space for
  1768. kernel log messages and is useful when debugging
  1769. kernel boot problems.
  1770. lp=0 [LP] Specify parallel ports to use, e.g,
  1771. lp=port[,port...] lp=none,parport0 (lp0 not configured, lp1 uses
  1772. lp=reset first parallel port). 'lp=0' disables the
  1773. lp=auto printer driver. 'lp=reset' (which can be
  1774. specified in addition to the ports) causes
  1775. attached printers to be reset. Using
  1776. lp=port1,port2,... specifies the parallel ports
  1777. to associate lp devices with, starting with
  1778. lp0. A port specification may be 'none' to skip
  1779. that lp device, or a parport name such as
  1780. 'parport0'. Specifying 'lp=auto' instead of a
  1781. port specification list means that device IDs
  1782. from each port should be examined, to see if
  1783. an IEEE 1284-compliant printer is attached; if
  1784. so, the driver will manage that printer.
  1785. See also header of drivers/char/lp.c.
  1786. lpj=n [KNL]
  1787. Sets loops_per_jiffy to given constant, thus avoiding
  1788. time-consuming boot-time autodetection (up to 250 ms per
  1789. CPU). 0 enables autodetection (default). To determine
  1790. the correct value for your kernel, boot with normal
  1791. autodetection and see what value is printed. Note that
  1792. on SMP systems the preset will be applied to all CPUs,
  1793. which is likely to cause problems if your CPUs need
  1794. significantly divergent settings. An incorrect value
  1795. will cause delays in the kernel to be wrong, leading to
  1796. unpredictable I/O errors and other breakage. Although
  1797. unlikely, in the extreme case this might damage your
  1798. hardware.
  1799. ltpc= [NET]
  1800. Format: <io>,<irq>,<dma>
  1801. machvec= [IA-64] Force the use of a particular machine-vector
  1802. (machvec) in a generic kernel.
  1803. Example: machvec=hpzx1_swiotlb
  1804. machtype= [Loongson] Share the same kernel image file between different
  1805. yeeloong laptop.
  1806. Example: machtype=lemote-yeeloong-2f-7inch
  1807. max_addr=nn[KMG] [KNL,BOOT,ia64] All physical memory greater
  1808. than or equal to this physical address is ignored.
  1809. maxcpus= [SMP] Maximum number of processors that an SMP kernel
  1810. will bring up during bootup. maxcpus=n : n >= 0 limits
  1811. the kernel to bring up 'n' processors. Surely after
  1812. bootup you can bring up the other plugged cpu by executing
  1813. "echo 1 > /sys/devices/system/cpu/cpuX/online". So maxcpus
  1814. only takes effect during system bootup.
  1815. While n=0 is a special case, it is equivalent to "nosmp",
  1816. which also disables the IO APIC.
  1817. max_loop= [LOOP] The number of loop block devices that get
  1818. (loop.max_loop) unconditionally pre-created at init time. The default
  1819. number is configured by BLK_DEV_LOOP_MIN_COUNT. Instead
  1820. of statically allocating a predefined number, loop
  1821. devices can be requested on-demand with the
  1822. /dev/loop-control interface.
  1823. mce [X86-32] Machine Check Exception
  1824. mce=option [X86-64] See Documentation/x86/x86_64/boot-options.txt
  1825. md= [HW] RAID subsystems devices and level
  1826. See Documentation/admin-guide/md.rst.
  1827. mdacon= [MDA]
  1828. Format: <first>,<last>
  1829. Specifies range of consoles to be captured by the MDA.
  1830. mem=nn[KMG] [KNL,BOOT] Force usage of a specific amount of memory
  1831. Amount of memory to be used when the kernel is not able
  1832. to see the whole system memory or for test.
  1833. [X86] Work as limiting max address. Use together
  1834. with memmap= to avoid physical address space collisions.
  1835. Without memmap= PCI devices could be placed at addresses
  1836. belonging to unused RAM.
  1837. mem=nopentium [BUGS=X86-32] Disable usage of 4MB pages for kernel
  1838. memory.
  1839. memchunk=nn[KMG]
  1840. [KNL,SH] Allow user to override the default size for
  1841. per-device physically contiguous DMA buffers.
  1842. memhp_default_state=online/offline
  1843. [KNL] Set the initial state for the memory hotplug
  1844. onlining policy. If not specified, the default value is
  1845. set according to the
  1846. CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE kernel config
  1847. option.
  1848. See Documentation/memory-hotplug.txt.
  1849. memmap=exactmap [KNL,X86] Enable setting of an exact
  1850. E820 memory map, as specified by the user.
  1851. Such memmap=exactmap lines can be constructed based on
  1852. BIOS output or other requirements. See the memmap=nn@ss
  1853. option description.
  1854. memmap=nn[KMG]@ss[KMG]
  1855. [KNL] Force usage of a specific region of memory.
  1856. Region of memory to be used is from ss to ss+nn.
  1857. If @ss[KMG] is omitted, it is equivalent to mem=nn[KMG],
  1858. which limits max address to nn[KMG].
  1859. Multiple different regions can be specified,
  1860. comma delimited.
  1861. Example:
  1862. memmap=100M@2G,100M#3G,1G!1024G
  1863. memmap=nn[KMG]#ss[KMG]
  1864. [KNL,ACPI] Mark specific memory as ACPI data.
  1865. Region of memory to be marked is from ss to ss+nn.
  1866. memmap=nn[KMG]$ss[KMG]
  1867. [KNL,ACPI] Mark specific memory as reserved.
  1868. Region of memory to be reserved is from ss to ss+nn.
  1869. Example: Exclude memory from 0x18690000-0x1869ffff
  1870. memmap=64K$0x18690000
  1871. or
  1872. memmap=0x10000$0x18690000
  1873. Some bootloaders may need an escape character before '$',
  1874. like Grub2, otherwise '$' and the following number
  1875. will be eaten.
  1876. memmap=nn[KMG]!ss[KMG]
  1877. [KNL,X86] Mark specific memory as protected.
  1878. Region of memory to be used, from ss to ss+nn.
  1879. The memory region may be marked as e820 type 12 (0xc)
  1880. and is NVDIMM or ADR memory.
  1881. memmap=<size>%<offset>-<oldtype>+<newtype>
  1882. [KNL,ACPI] Convert memory within the specified region
  1883. from <oldtype> to <newtype>. If "-<oldtype>" is left
  1884. out, the whole region will be marked as <newtype>,
  1885. even if previously unavailable. If "+<newtype>" is left
  1886. out, matching memory will be removed. Types are
  1887. specified as e820 types, e.g., 1 = RAM, 2 = reserved,
  1888. 3 = ACPI, 12 = PRAM.
  1889. memory_corruption_check=0/1 [X86]
  1890. Some BIOSes seem to corrupt the first 64k of
  1891. memory when doing things like suspend/resume.
  1892. Setting this option will scan the memory
  1893. looking for corruption. Enabling this will
  1894. both detect corruption and prevent the kernel
  1895. from using the memory being corrupted.
  1896. However, its intended as a diagnostic tool; if
  1897. repeatable BIOS-originated corruption always
  1898. affects the same memory, you can use memmap=
  1899. to prevent the kernel from using that memory.
  1900. memory_corruption_check_size=size [X86]
  1901. By default it checks for corruption in the low
  1902. 64k, making this memory unavailable for normal
  1903. use. Use this parameter to scan for
  1904. corruption in more or less memory.
  1905. memory_corruption_check_period=seconds [X86]
  1906. By default it checks for corruption every 60
  1907. seconds. Use this parameter to check at some
  1908. other rate. 0 disables periodic checking.
  1909. memtest= [KNL,X86,ARM] Enable memtest
  1910. Format: <integer>
  1911. default : 0 <disable>
  1912. Specifies the number of memtest passes to be
  1913. performed. Each pass selects another test
  1914. pattern from a given set of patterns. Memtest
  1915. fills the memory with this pattern, validates
  1916. memory contents and reserves bad memory
  1917. regions that are detected.
  1918. mem_encrypt= [X86-64] AMD Secure Memory Encryption (SME) control
  1919. Valid arguments: on, off
  1920. Default (depends on kernel configuration option):
  1921. on (CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT=y)
  1922. off (CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT=n)
  1923. mem_encrypt=on: Activate SME
  1924. mem_encrypt=off: Do not activate SME
  1925. Refer to Documentation/x86/amd-memory-encryption.txt
  1926. for details on when memory encryption can be activated.
  1927. mem_sleep_default= [SUSPEND] Default system suspend mode:
  1928. s2idle - Suspend-To-Idle
  1929. shallow - Power-On Suspend or equivalent (if supported)
  1930. deep - Suspend-To-RAM or equivalent (if supported)
  1931. See Documentation/admin-guide/pm/sleep-states.rst.
  1932. meye.*= [HW] Set MotionEye Camera parameters
  1933. See Documentation/media/v4l-drivers/meye.rst.
  1934. mfgpt_irq= [IA-32] Specify the IRQ to use for the
  1935. Multi-Function General Purpose Timers on AMD Geode
  1936. platforms.
  1937. mfgptfix [X86-32] Fix MFGPT timers on AMD Geode platforms when
  1938. the BIOS has incorrectly applied a workaround. TinyBIOS
  1939. version 0.98 is known to be affected, 0.99 fixes the
  1940. problem by letting the user disable the workaround.
  1941. mga= [HW,DRM]
  1942. min_addr=nn[KMG] [KNL,BOOT,ia64] All physical memory below this
  1943. physical address is ignored.
  1944. mini2440= [ARM,HW,KNL]
  1945. Format:[0..2][b][c][t]
  1946. Default: "0tb"
  1947. MINI2440 configuration specification:
  1948. 0 - The attached screen is the 3.5" TFT
  1949. 1 - The attached screen is the 7" TFT
  1950. 2 - The VGA Shield is attached (1024x768)
  1951. Leaving out the screen size parameter will not load
  1952. the TFT driver, and the framebuffer will be left
  1953. unconfigured.
  1954. b - Enable backlight. The TFT backlight pin will be
  1955. linked to the kernel VESA blanking code and a GPIO
  1956. LED. This parameter is not necessary when using the
  1957. VGA shield.
  1958. c - Enable the s3c camera interface.
  1959. t - Reserved for enabling touchscreen support. The
  1960. touchscreen support is not enabled in the mainstream
  1961. kernel as of 2.6.30, a preliminary port can be found
  1962. in the "bleeding edge" mini2440 support kernel at
  1963. http://repo.or.cz/w/linux-2.6/mini2440.git
  1964. mminit_loglevel=
  1965. [KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this
  1966. parameter allows control of the logging verbosity for
  1967. the additional memory initialisation checks. A value
  1968. of 0 disables mminit logging and a level of 4 will
  1969. log everything. Information is printed at KERN_DEBUG
  1970. so loglevel=8 may also need to be specified.
  1971. module.sig_enforce
  1972. [KNL] When CONFIG_MODULE_SIG is set, this means that
  1973. modules without (valid) signatures will fail to load.
  1974. Note that if CONFIG_MODULE_SIG_FORCE is set, that
  1975. is always true, so this option does nothing.
  1976. module_blacklist= [KNL] Do not load a comma-separated list of
  1977. modules. Useful for debugging problem modules.
  1978. mousedev.tap_time=
  1979. [MOUSE] Maximum time between finger touching and
  1980. leaving touchpad surface for touch to be considered
  1981. a tap and be reported as a left button click (for
  1982. touchpads working in absolute mode only).
  1983. Format: <msecs>
  1984. mousedev.xres= [MOUSE] Horizontal screen resolution, used for devices
  1985. reporting absolute coordinates, such as tablets
  1986. mousedev.yres= [MOUSE] Vertical screen resolution, used for devices
  1987. reporting absolute coordinates, such as tablets
  1988. movablecore= [KNL,X86,IA-64,PPC]
  1989. Format: nn[KMGTPE] | nn%
  1990. This parameter is the complement to kernelcore=, it
  1991. specifies the amount of memory used for migratable
  1992. allocations. If both kernelcore and movablecore is
  1993. specified, then kernelcore will be at *least* the
  1994. specified value but may be more. If movablecore on its
  1995. own is specified, the administrator must be careful
  1996. that the amount of memory usable for all allocations
  1997. is not too small.
  1998. movable_node [KNL] Boot-time switch to make hotplugable memory
  1999. NUMA nodes to be movable. This means that the memory
  2000. of such nodes will be usable only for movable
  2001. allocations which rules out almost all kernel
  2002. allocations. Use with caution!
  2003. MTD_Partition= [MTD]
  2004. Format: <name>,<region-number>,<size>,<offset>
  2005. MTD_Region= [MTD] Format:
  2006. <name>,<region-number>[,<base>,<size>,<buswidth>,<altbuswidth>]
  2007. mtdparts= [MTD]
  2008. See drivers/mtd/cmdlinepart.c.
  2009. multitce=off [PPC] This parameter disables the use of the pSeries
  2010. firmware feature for updating multiple TCE entries
  2011. at a time.
  2012. onenand.bdry= [HW,MTD] Flex-OneNAND Boundary Configuration
  2013. Format: [die0_boundary][,die0_lock][,die1_boundary][,die1_lock]
  2014. boundary - index of last SLC block on Flex-OneNAND.
  2015. The remaining blocks are configured as MLC blocks.
  2016. lock - Configure if Flex-OneNAND boundary should be locked.
  2017. Once locked, the boundary cannot be changed.
  2018. 1 indicates lock status, 0 indicates unlock status.
  2019. mtdset= [ARM]
  2020. ARM/S3C2412 JIVE boot control
  2021. See arch/arm/mach-s3c2412/mach-jive.c
  2022. mtouchusb.raw_coordinates=
  2023. [HW] Make the MicroTouch USB driver use raw coordinates
  2024. ('y', default) or cooked coordinates ('n')
  2025. mtrr_chunk_size=nn[KMG] [X86]
  2026. used for mtrr cleanup. It is largest continuous chunk
  2027. that could hold holes aka. UC entries.
  2028. mtrr_gran_size=nn[KMG] [X86]
  2029. Used for mtrr cleanup. It is granularity of mtrr block.
  2030. Default is 1.
  2031. Large value could prevent small alignment from
  2032. using up MTRRs.
  2033. mtrr_spare_reg_nr=n [X86]
  2034. Format: <integer>
  2035. Range: 0,7 : spare reg number
  2036. Default : 1
  2037. Used for mtrr cleanup. It is spare mtrr entries number.
  2038. Set to 2 or more if your graphical card needs more.
  2039. n2= [NET] SDL Inc. RISCom/N2 synchronous serial card
  2040. netdev= [NET] Network devices parameters
  2041. Format: <irq>,<io>,<mem_start>,<mem_end>,<name>
  2042. Note that mem_start is often overloaded to mean
  2043. something different and driver-specific.
  2044. This usage is only documented in each driver source
  2045. file if at all.
  2046. nf_conntrack.acct=
  2047. [NETFILTER] Enable connection tracking flow accounting
  2048. 0 to disable accounting
  2049. 1 to enable accounting
  2050. Default value is 0.
  2051. nfsaddrs= [NFS] Deprecated. Use ip= instead.
  2052. See Documentation/filesystems/nfs/nfsroot.txt.
  2053. nfsroot= [NFS] nfs root filesystem for disk-less boxes.
  2054. See Documentation/filesystems/nfs/nfsroot.txt.
  2055. nfsrootdebug [NFS] enable nfsroot debugging messages.
  2056. See Documentation/filesystems/nfs/nfsroot.txt.
  2057. nfs.callback_nr_threads=
  2058. [NFSv4] set the total number of threads that the
  2059. NFS client will assign to service NFSv4 callback
  2060. requests.
  2061. nfs.callback_tcpport=
  2062. [NFS] set the TCP port on which the NFSv4 callback
  2063. channel should listen.
  2064. nfs.cache_getent=
  2065. [NFS] sets the pathname to the program which is used
  2066. to update the NFS client cache entries.
  2067. nfs.cache_getent_timeout=
  2068. [NFS] sets the timeout after which an attempt to
  2069. update a cache entry is deemed to have failed.
  2070. nfs.idmap_cache_timeout=
  2071. [NFS] set the maximum lifetime for idmapper cache
  2072. entries.
  2073. nfs.enable_ino64=
  2074. [NFS] enable 64-bit inode numbers.
  2075. If zero, the NFS client will fake up a 32-bit inode
  2076. number for the readdir() and stat() syscalls instead
  2077. of returning the full 64-bit number.
  2078. The default is to return 64-bit inode numbers.
  2079. nfs.max_session_cb_slots=
  2080. [NFSv4.1] Sets the maximum number of session
  2081. slots the client will assign to the callback
  2082. channel. This determines the maximum number of
  2083. callbacks the client will process in parallel for
  2084. a particular server.
  2085. nfs.max_session_slots=
  2086. [NFSv4.1] Sets the maximum number of session slots
  2087. the client will attempt to negotiate with the server.
  2088. This limits the number of simultaneous RPC requests
  2089. that the client can send to the NFSv4.1 server.
  2090. Note that there is little point in setting this
  2091. value higher than the max_tcp_slot_table_limit.
  2092. nfs.nfs4_disable_idmapping=
  2093. [NFSv4] When set to the default of '1', this option
  2094. ensures that both the RPC level authentication
  2095. scheme and the NFS level operations agree to use
  2096. numeric uids/gids if the mount is using the
  2097. 'sec=sys' security flavour. In effect it is
  2098. disabling idmapping, which can make migration from
  2099. legacy NFSv2/v3 systems to NFSv4 easier.
  2100. Servers that do not support this mode of operation
  2101. will be autodetected by the client, and it will fall
  2102. back to using the idmapper.
  2103. To turn off this behaviour, set the value to '0'.
  2104. nfs.nfs4_unique_id=
  2105. [NFS4] Specify an additional fixed unique ident-
  2106. ification string that NFSv4 clients can insert into
  2107. their nfs_client_id4 string. This is typically a
  2108. UUID that is generated at system install time.
  2109. nfs.send_implementation_id =
  2110. [NFSv4.1] Send client implementation identification
  2111. information in exchange_id requests.
  2112. If zero, no implementation identification information
  2113. will be sent.
  2114. The default is to send the implementation identification
  2115. information.
  2116. nfs.recover_lost_locks =
  2117. [NFSv4] Attempt to recover locks that were lost due
  2118. to a lease timeout on the server. Please note that
  2119. doing this risks data corruption, since there are
  2120. no guarantees that the file will remain unchanged
  2121. after the locks are lost.
  2122. If you want to enable the kernel legacy behaviour of
  2123. attempting to recover these locks, then set this
  2124. parameter to '1'.
  2125. The default parameter value of '0' causes the kernel
  2126. not to attempt recovery of lost locks.
  2127. nfs4.layoutstats_timer =
  2128. [NFSv4.2] Change the rate at which the kernel sends
  2129. layoutstats to the pNFS metadata server.
  2130. Setting this to value to 0 causes the kernel to use
  2131. whatever value is the default set by the layout
  2132. driver. A non-zero value sets the minimum interval
  2133. in seconds between layoutstats transmissions.
  2134. nfsd.nfs4_disable_idmapping=
  2135. [NFSv4] When set to the default of '1', the NFSv4
  2136. server will return only numeric uids and gids to
  2137. clients using auth_sys, and will accept numeric uids
  2138. and gids from such clients. This is intended to ease
  2139. migration from NFSv2/v3.
  2140. nmi_debug= [KNL,SH] Specify one or more actions to take
  2141. when a NMI is triggered.
  2142. Format: [state][,regs][,debounce][,die]
  2143. nmi_watchdog= [KNL,BUGS=X86] Debugging features for SMP kernels
  2144. Format: [panic,][nopanic,][num]
  2145. Valid num: 0 or 1
  2146. 0 - turn hardlockup detector in nmi_watchdog off
  2147. 1 - turn hardlockup detector in nmi_watchdog on
  2148. When panic is specified, panic when an NMI watchdog
  2149. timeout occurs (or 'nopanic' to override the opposite
  2150. default). To disable both hard and soft lockup detectors,
  2151. please see 'nowatchdog'.
  2152. This is useful when you use a panic=... timeout and
  2153. need the box quickly up again.
  2154. These settings can be accessed at runtime via
  2155. the nmi_watchdog and hardlockup_panic sysctls.
  2156. netpoll.carrier_timeout=
  2157. [NET] Specifies amount of time (in seconds) that
  2158. netpoll should wait for a carrier. By default netpoll
  2159. waits 4 seconds.
  2160. no387 [BUGS=X86-32] Tells the kernel to use the 387 maths
  2161. emulation library even if a 387 maths coprocessor
  2162. is present.
  2163. no5lvl [X86-64] Disable 5-level paging mode. Forces
  2164. kernel to use 4-level paging instead.
  2165. no_console_suspend
  2166. [HW] Never suspend the console
  2167. Disable suspending of consoles during suspend and
  2168. hibernate operations. Once disabled, debugging
  2169. messages can reach various consoles while the rest
  2170. of the system is being put to sleep (ie, while
  2171. debugging driver suspend/resume hooks). This may
  2172. not work reliably with all consoles, but is known
  2173. to work with serial and VGA consoles.
  2174. To facilitate more flexible debugging, we also add
  2175. console_suspend, a printk module parameter to control
  2176. it. Users could use console_suspend (usually
  2177. /sys/module/printk/parameters/console_suspend) to
  2178. turn on/off it dynamically.
  2179. noaliencache [MM, NUMA, SLAB] Disables the allocation of alien
  2180. caches in the slab allocator. Saves per-node memory,
  2181. but will impact performance.
  2182. noalign [KNL,ARM]
  2183. noaltinstr [S390] Disables alternative instructions patching
  2184. (CPU alternatives feature).
  2185. noapic [SMP,APIC] Tells the kernel to not make use of any
  2186. IOAPICs that may be present in the system.
  2187. noautogroup Disable scheduler automatic task group creation.
  2188. nobats [PPC] Do not use BATs for mapping kernel lowmem
  2189. on "Classic" PPC cores.
  2190. nocache [ARM]
  2191. noclflush [BUGS=X86] Don't use the CLFLUSH instruction
  2192. nodelayacct [KNL] Disable per-task delay accounting
  2193. nodsp [SH] Disable hardware DSP at boot time.
  2194. noefi Disable EFI runtime services support.
  2195. noexec [IA-64]
  2196. noexec [X86]
  2197. On X86-32 available only on PAE configured kernels.
  2198. noexec=on: enable non-executable mappings (default)
  2199. noexec=off: disable non-executable mappings
  2200. nosmap [X86]
  2201. Disable SMAP (Supervisor Mode Access Prevention)
  2202. even if it is supported by processor.
  2203. nosmep [X86]
  2204. Disable SMEP (Supervisor Mode Execution Prevention)
  2205. even if it is supported by processor.
  2206. noexec32 [X86-64]
  2207. This affects only 32-bit executables.
  2208. noexec32=on: enable non-executable mappings (default)
  2209. read doesn't imply executable mappings
  2210. noexec32=off: disable non-executable mappings
  2211. read implies executable mappings
  2212. nofpu [MIPS,SH] Disable hardware FPU at boot time.
  2213. nofxsr [BUGS=X86-32] Disables x86 floating point extended
  2214. register save and restore. The kernel will only save
  2215. legacy floating-point registers on task switch.
  2216. nohugeiomap [KNL,x86] Disable kernel huge I/O mappings.
  2217. nosmt [KNL,S390] Disable symmetric multithreading (SMT).
  2218. Equivalent to smt=1.
  2219. nospectre_v2 [X86] Disable all mitigations for the Spectre variant 2
  2220. (indirect branch prediction) vulnerability. System may
  2221. allow data leaks with this option, which is equivalent
  2222. to spectre_v2=off.
  2223. nospec_store_bypass_disable
  2224. [HW] Disable all mitigations for the Speculative Store Bypass vulnerability
  2225. noxsave [BUGS=X86] Disables x86 extended register state save
  2226. and restore using xsave. The kernel will fallback to
  2227. enabling legacy floating-point and sse state.
  2228. noxsaveopt [X86] Disables xsaveopt used in saving x86 extended
  2229. register states. The kernel will fall back to use
  2230. xsave to save the states. By using this parameter,
  2231. performance of saving the states is degraded because
  2232. xsave doesn't support modified optimization while
  2233. xsaveopt supports it on xsaveopt enabled systems.
  2234. noxsaves [X86] Disables xsaves and xrstors used in saving and
  2235. restoring x86 extended register state in compacted
  2236. form of xsave area. The kernel will fall back to use
  2237. xsaveopt and xrstor to save and restore the states
  2238. in standard form of xsave area. By using this
  2239. parameter, xsave area per process might occupy more
  2240. memory on xsaves enabled systems.
  2241. nohlt [BUGS=ARM,SH] Tells the kernel that the sleep(SH) or
  2242. wfi(ARM) instruction doesn't work correctly and not to
  2243. use it. This is also useful when using JTAG debugger.
  2244. no_file_caps Tells the kernel not to honor file capabilities. The
  2245. only way then for a file to be executed with privilege
  2246. is to be setuid root or executed by root.
  2247. nohalt [IA-64] Tells the kernel not to use the power saving
  2248. function PAL_HALT_LIGHT when idle. This increases
  2249. power-consumption. On the positive side, it reduces
  2250. interrupt wake-up latency, which may improve performance
  2251. in certain environments such as networked servers or
  2252. real-time systems.
  2253. nohibernate [HIBERNATION] Disable hibernation and resume.
  2254. nohz= [KNL] Boottime enable/disable dynamic ticks
  2255. Valid arguments: on, off
  2256. Default: on
  2257. nohz_full= [KNL,BOOT,SMP,ISOL]
  2258. The argument is a cpu list, as described above.
  2259. In kernels built with CONFIG_NO_HZ_FULL=y, set
  2260. the specified list of CPUs whose tick will be stopped
  2261. whenever possible. The boot CPU will be forced outside
  2262. the range to maintain the timekeeping. Any CPUs
  2263. in this list will have their RCU callbacks offloaded,
  2264. just as if they had also been called out in the
  2265. rcu_nocbs= boot parameter.
  2266. noiotrap [SH] Disables trapped I/O port accesses.
  2267. noirqdebug [X86-32] Disables the code which attempts to detect and
  2268. disable unhandled interrupt sources.
  2269. no_timer_check [X86,APIC] Disables the code which tests for
  2270. broken timer IRQ sources.
  2271. noisapnp [ISAPNP] Disables ISA PnP code.
  2272. noinitrd [RAM] Tells the kernel not to load any configured
  2273. initial RAM disk.
  2274. nointremap [X86-64, Intel-IOMMU] Do not enable interrupt
  2275. remapping.
  2276. [Deprecated - use intremap=off]
  2277. nointroute [IA-64]
  2278. noinvpcid [X86] Disable the INVPCID cpu feature.
  2279. nojitter [IA-64] Disables jitter checking for ITC timers.
  2280. no-kvmclock [X86,KVM] Disable paravirtualized KVM clock driver
  2281. no-kvmapf [X86,KVM] Disable paravirtualized asynchronous page
  2282. fault handling.
  2283. no-vmw-sched-clock
  2284. [X86,PV_OPS] Disable paravirtualized VMware scheduler
  2285. clock and use the default one.
  2286. no-steal-acc [X86,KVM] Disable paravirtualized steal time accounting.
  2287. steal time is computed, but won't influence scheduler
  2288. behaviour
  2289. nolapic [X86-32,APIC] Do not enable or use the local APIC.
  2290. nolapic_timer [X86-32,APIC] Do not use the local APIC timer.
  2291. noltlbs [PPC] Do not use large page/tlb entries for kernel
  2292. lowmem mapping on PPC40x and PPC8xx
  2293. nomca [IA-64] Disable machine check abort handling
  2294. nomce [X86-32] Disable Machine Check Exception
  2295. nomfgpt [X86-32] Disable Multi-Function General Purpose
  2296. Timer usage (for AMD Geode machines).
  2297. nonmi_ipi [X86] Disable using NMI IPIs during panic/reboot to
  2298. shutdown the other cpus. Instead use the REBOOT_VECTOR
  2299. irq.
  2300. nomodule Disable module load
  2301. nopat [X86] Disable PAT (page attribute table extension of
  2302. pagetables) support.
  2303. nopcid [X86-64] Disable the PCID cpu feature.
  2304. norandmaps Don't use address space randomization. Equivalent to
  2305. echo 0 > /proc/sys/kernel/randomize_va_space
  2306. noreplace-smp [X86-32,SMP] Don't replace SMP instructions
  2307. with UP alternatives
  2308. nordrand [X86] Disable kernel use of the RDRAND and
  2309. RDSEED instructions even if they are supported
  2310. by the processor. RDRAND and RDSEED are still
  2311. available to user space applications.
  2312. noresume [SWSUSP] Disables resume and restores original swap
  2313. space.
  2314. no-scroll [VGA] Disables scrollback.
  2315. This is required for the Braillex ib80-piezo Braille
  2316. reader made by F.H. Papenmeier (Germany).
  2317. nosbagart [IA-64]
  2318. nosep [BUGS=X86-32] Disables x86 SYSENTER/SYSEXIT support.
  2319. nosmp [SMP] Tells an SMP kernel to act as a UP kernel,
  2320. and disable the IO APIC. legacy for "maxcpus=0".
  2321. nosoftlockup [KNL] Disable the soft-lockup detector.
  2322. nosync [HW,M68K] Disables sync negotiation for all devices.
  2323. notsc [BUGS=X86-32] Disable Time Stamp Counter
  2324. nowatchdog [KNL] Disable both lockup detectors, i.e.
  2325. soft-lockup and NMI watchdog (hard-lockup).
  2326. nowb [ARM]
  2327. nox2apic [X86-64,APIC] Do not enable x2APIC mode.
  2328. cpu0_hotplug [X86] Turn on CPU0 hotplug feature when
  2329. CONFIG_BOOTPARAM_HOTPLUG_CPU0 is off.
  2330. Some features depend on CPU0. Known dependencies are:
  2331. 1. Resume from suspend/hibernate depends on CPU0.
  2332. Suspend/hibernate will fail if CPU0 is offline and you
  2333. need to online CPU0 before suspend/hibernate.
  2334. 2. PIC interrupts also depend on CPU0. CPU0 can't be
  2335. removed if a PIC interrupt is detected.
  2336. It's said poweroff/reboot may depend on CPU0 on some
  2337. machines although I haven't seen such issues so far
  2338. after CPU0 is offline on a few tested machines.
  2339. If the dependencies are under your control, you can
  2340. turn on cpu0_hotplug.
  2341. nps_mtm_hs_ctr= [KNL,ARC]
  2342. This parameter sets the maximum duration, in
  2343. cycles, each HW thread of the CTOP can run
  2344. without interruptions, before HW switches it.
  2345. The actual maximum duration is 16 times this
  2346. parameter's value.
  2347. Format: integer between 1 and 255
  2348. Default: 255
  2349. nptcg= [IA-64] Override max number of concurrent global TLB
  2350. purges which is reported from either PAL_VM_SUMMARY or
  2351. SAL PALO.
  2352. nr_cpus= [SMP] Maximum number of processors that an SMP kernel
  2353. could support. nr_cpus=n : n >= 1 limits the kernel to
  2354. support 'n' processors. It could be larger than the
  2355. number of already plugged CPU during bootup, later in
  2356. runtime you can physically add extra cpu until it reaches
  2357. n. So during boot up some boot time memory for per-cpu
  2358. variables need be pre-allocated for later physical cpu
  2359. hot plugging.
  2360. nr_uarts= [SERIAL] maximum number of UARTs to be registered.
  2361. numa_balancing= [KNL,X86] Enable or disable automatic NUMA balancing.
  2362. Allowed values are enable and disable
  2363. numa_zonelist_order= [KNL, BOOT] Select zonelist order for NUMA.
  2364. 'node', 'default' can be specified
  2365. This can be set from sysctl after boot.
  2366. See Documentation/sysctl/vm.txt for details.
  2367. ohci1394_dma=early [HW] enable debugging via the ohci1394 driver.
  2368. See Documentation/debugging-via-ohci1394.txt for more
  2369. info.
  2370. olpc_ec_timeout= [OLPC] ms delay when issuing EC commands
  2371. Rather than timing out after 20 ms if an EC
  2372. command is not properly ACKed, override the length
  2373. of the timeout. We have interrupts disabled while
  2374. waiting for the ACK, so if this is set too high
  2375. interrupts *may* be lost!
  2376. omap_mux= [OMAP] Override bootloader pin multiplexing.
  2377. Format: <mux_mode0.mode_name=value>...
  2378. For example, to override I2C bus2:
  2379. omap_mux=i2c2_scl.i2c2_scl=0x100,i2c2_sda.i2c2_sda=0x100
  2380. oprofile.timer= [HW]
  2381. Use timer interrupt instead of performance counters
  2382. oprofile.cpu_type= Force an oprofile cpu type
  2383. This might be useful if you have an older oprofile
  2384. userland or if you want common events.
  2385. Format: { arch_perfmon }
  2386. arch_perfmon: [X86] Force use of architectural
  2387. perfmon on Intel CPUs instead of the
  2388. CPU specific event set.
  2389. timer: [X86] Force use of architectural NMI
  2390. timer mode (see also oprofile.timer
  2391. for generic hr timer mode)
  2392. oops=panic Always panic on oopses. Default is to just kill the
  2393. process, but there is a small probability of
  2394. deadlocking the machine.
  2395. This will also cause panics on machine check exceptions.
  2396. Useful together with panic=30 to trigger a reboot.
  2397. OSS [HW,OSS]
  2398. See Documentation/sound/oss/oss-parameters.txt
  2399. page_owner= [KNL] Boot-time page_owner enabling option.
  2400. Storage of the information about who allocated
  2401. each page is disabled in default. With this switch,
  2402. we can turn it on.
  2403. on: enable the feature
  2404. page_poison= [KNL] Boot-time parameter changing the state of
  2405. poisoning on the buddy allocator.
  2406. off: turn off poisoning
  2407. on: turn on poisoning
  2408. panic= [KNL] Kernel behaviour on panic: delay <timeout>
  2409. timeout > 0: seconds before rebooting
  2410. timeout = 0: wait forever
  2411. timeout < 0: reboot immediately
  2412. Format: <timeout>
  2413. panic_on_warn panic() instead of WARN(). Useful to cause kdump
  2414. on a WARN().
  2415. crash_kexec_post_notifiers
  2416. Run kdump after running panic-notifiers and dumping
  2417. kmsg. This only for the users who doubt kdump always
  2418. succeeds in any situation.
  2419. Note that this also increases risks of kdump failure,
  2420. because some panic notifiers can make the crashed
  2421. kernel more unstable.
  2422. parkbd.port= [HW] Parallel port number the keyboard adapter is
  2423. connected to, default is 0.
  2424. Format: <parport#>
  2425. parkbd.mode= [HW] Parallel port keyboard adapter mode of operation,
  2426. 0 for XT, 1 for AT (default is AT).
  2427. Format: <mode>
  2428. parport= [HW,PPT] Specify parallel ports. 0 disables.
  2429. Format: { 0 | auto | 0xBBB[,IRQ[,DMA]] }
  2430. Use 'auto' to force the driver to use any
  2431. IRQ/DMA settings detected (the default is to
  2432. ignore detected IRQ/DMA settings because of
  2433. possible conflicts). You can specify the base
  2434. address, IRQ, and DMA settings; IRQ and DMA
  2435. should be numbers, or 'auto' (for using detected
  2436. settings on that particular port), or 'nofifo'
  2437. (to avoid using a FIFO even if it is detected).
  2438. Parallel ports are assigned in the order they
  2439. are specified on the command line, starting
  2440. with parport0.
  2441. parport_init_mode= [HW,PPT]
  2442. Configure VIA parallel port to operate in
  2443. a specific mode. This is necessary on Pegasos
  2444. computer where firmware has no options for setting
  2445. up parallel port mode and sets it to spp.
  2446. Currently this function knows 686a and 8231 chips.
  2447. Format: [spp|ps2|epp|ecp|ecpepp]
  2448. pause_on_oops=
  2449. Halt all CPUs after the first oops has been printed for
  2450. the specified number of seconds. This is to be used if
  2451. your oopses keep scrolling off the screen.
  2452. pcbit= [HW,ISDN]
  2453. pcd. [PARIDE]
  2454. See header of drivers/block/paride/pcd.c.
  2455. See also Documentation/blockdev/paride.txt.
  2456. pci=option[,option...] [PCI] various PCI subsystem options:
  2457. earlydump [X86] dump PCI config space before the kernel
  2458. changes anything
  2459. off [X86] don't probe for the PCI bus
  2460. bios [X86-32] force use of PCI BIOS, don't access
  2461. the hardware directly. Use this if your machine
  2462. has a non-standard PCI host bridge.
  2463. nobios [X86-32] disallow use of PCI BIOS, only direct
  2464. hardware access methods are allowed. Use this
  2465. if you experience crashes upon bootup and you
  2466. suspect they are caused by the BIOS.
  2467. conf1 [X86] Force use of PCI Configuration Access
  2468. Mechanism 1 (config address in IO port 0xCF8,
  2469. data in IO port 0xCFC, both 32-bit).
  2470. conf2 [X86] Force use of PCI Configuration Access
  2471. Mechanism 2 (IO port 0xCF8 is an 8-bit port for
  2472. the function, IO port 0xCFA, also 8-bit, sets
  2473. bus number. The config space is then accessed
  2474. through ports 0xC000-0xCFFF).
  2475. See http://wiki.osdev.org/PCI for more info
  2476. on the configuration access mechanisms.
  2477. noaer [PCIE] If the PCIEAER kernel config parameter is
  2478. enabled, this kernel boot option can be used to
  2479. disable the use of PCIE advanced error reporting.
  2480. nodomains [PCI] Disable support for multiple PCI
  2481. root domains (aka PCI segments, in ACPI-speak).
  2482. nommconf [X86] Disable use of MMCONFIG for PCI
  2483. Configuration
  2484. check_enable_amd_mmconf [X86] check for and enable
  2485. properly configured MMIO access to PCI
  2486. config space on AMD family 10h CPU
  2487. nomsi [MSI] If the PCI_MSI kernel config parameter is
  2488. enabled, this kernel boot option can be used to
  2489. disable the use of MSI interrupts system-wide.
  2490. noioapicquirk [APIC] Disable all boot interrupt quirks.
  2491. Safety option to keep boot IRQs enabled. This
  2492. should never be necessary.
  2493. ioapicreroute [APIC] Enable rerouting of boot IRQs to the
  2494. primary IO-APIC for bridges that cannot disable
  2495. boot IRQs. This fixes a source of spurious IRQs
  2496. when the system masks IRQs.
  2497. noioapicreroute [APIC] Disable workaround that uses the
  2498. boot IRQ equivalent of an IRQ that connects to
  2499. a chipset where boot IRQs cannot be disabled.
  2500. The opposite of ioapicreroute.
  2501. biosirq [X86-32] Use PCI BIOS calls to get the interrupt
  2502. routing table. These calls are known to be buggy
  2503. on several machines and they hang the machine
  2504. when used, but on other computers it's the only
  2505. way to get the interrupt routing table. Try
  2506. this option if the kernel is unable to allocate
  2507. IRQs or discover secondary PCI buses on your
  2508. motherboard.
  2509. rom [X86] Assign address space to expansion ROMs.
  2510. Use with caution as certain devices share
  2511. address decoders between ROMs and other
  2512. resources.
  2513. norom [X86] Do not assign address space to
  2514. expansion ROMs that do not already have
  2515. BIOS assigned address ranges.
  2516. nobar [X86] Do not assign address space to the
  2517. BARs that weren't assigned by the BIOS.
  2518. irqmask=0xMMMM [X86] Set a bit mask of IRQs allowed to be
  2519. assigned automatically to PCI devices. You can
  2520. make the kernel exclude IRQs of your ISA cards
  2521. this way.
  2522. pirqaddr=0xAAAAA [X86] Specify the physical address
  2523. of the PIRQ table (normally generated
  2524. by the BIOS) if it is outside the
  2525. F0000h-100000h range.
  2526. lastbus=N [X86] Scan all buses thru bus #N. Can be
  2527. useful if the kernel is unable to find your
  2528. secondary buses and you want to tell it
  2529. explicitly which ones they are.
  2530. assign-busses [X86] Always assign all PCI bus
  2531. numbers ourselves, overriding
  2532. whatever the firmware may have done.
  2533. usepirqmask [X86] Honor the possible IRQ mask stored
  2534. in the BIOS $PIR table. This is needed on
  2535. some systems with broken BIOSes, notably
  2536. some HP Pavilion N5400 and Omnibook XE3
  2537. notebooks. This will have no effect if ACPI
  2538. IRQ routing is enabled.
  2539. noacpi [X86] Do not use ACPI for IRQ routing
  2540. or for PCI scanning.
  2541. use_crs [X86] Use PCI host bridge window information
  2542. from ACPI. On BIOSes from 2008 or later, this
  2543. is enabled by default. If you need to use this,
  2544. please report a bug.
  2545. nocrs [X86] Ignore PCI host bridge windows from ACPI.
  2546. If you need to use this, please report a bug.
  2547. routeirq Do IRQ routing for all PCI devices.
  2548. This is normally done in pci_enable_device(),
  2549. so this option is a temporary workaround
  2550. for broken drivers that don't call it.
  2551. skip_isa_align [X86] do not align io start addr, so can
  2552. handle more pci cards
  2553. noearly [X86] Don't do any early type 1 scanning.
  2554. This might help on some broken boards which
  2555. machine check when some devices' config space
  2556. is read. But various workarounds are disabled
  2557. and some IOMMU drivers will not work.
  2558. bfsort Sort PCI devices into breadth-first order.
  2559. This sorting is done to get a device
  2560. order compatible with older (<= 2.4) kernels.
  2561. nobfsort Don't sort PCI devices into breadth-first order.
  2562. pcie_bus_tune_off Disable PCIe MPS (Max Payload Size)
  2563. tuning and use the BIOS-configured MPS defaults.
  2564. pcie_bus_safe Set every device's MPS to the largest value
  2565. supported by all devices below the root complex.
  2566. pcie_bus_perf Set device MPS to the largest allowable MPS
  2567. based on its parent bus. Also set MRRS (Max
  2568. Read Request Size) to the largest supported
  2569. value (no larger than the MPS that the device
  2570. or bus can support) for best performance.
  2571. pcie_bus_peer2peer Set every device's MPS to 128B, which
  2572. every device is guaranteed to support. This
  2573. configuration allows peer-to-peer DMA between
  2574. any pair of devices, possibly at the cost of
  2575. reduced performance. This also guarantees
  2576. that hot-added devices will work.
  2577. cbiosize=nn[KMG] The fixed amount of bus space which is
  2578. reserved for the CardBus bridge's IO window.
  2579. The default value is 256 bytes.
  2580. cbmemsize=nn[KMG] The fixed amount of bus space which is
  2581. reserved for the CardBus bridge's memory
  2582. window. The default value is 64 megabytes.
  2583. resource_alignment=
  2584. Format:
  2585. [<order of align>@][<domain>:]<bus>:<slot>.<func>[; ...]
  2586. [<order of align>@]pci:<vendor>:<device>\
  2587. [:<subvendor>:<subdevice>][; ...]
  2588. Specifies alignment and device to reassign
  2589. aligned memory resources.
  2590. If <order of align> is not specified,
  2591. PAGE_SIZE is used as alignment.
  2592. PCI-PCI bridge can be specified, if resource
  2593. windows need to be expanded.
  2594. To specify the alignment for several
  2595. instances of a device, the PCI vendor,
  2596. device, subvendor, and subdevice may be
  2597. specified, e.g., 4096@pci:8086:9c22:103c:198f
  2598. ecrc= Enable/disable PCIe ECRC (transaction layer
  2599. end-to-end CRC checking).
  2600. bios: Use BIOS/firmware settings. This is the
  2601. the default.
  2602. off: Turn ECRC off
  2603. on: Turn ECRC on.
  2604. hpiosize=nn[KMG] The fixed amount of bus space which is
  2605. reserved for hotplug bridge's IO window.
  2606. Default size is 256 bytes.
  2607. hpmemsize=nn[KMG] The fixed amount of bus space which is
  2608. reserved for hotplug bridge's memory window.
  2609. Default size is 2 megabytes.
  2610. hpbussize=nn The minimum amount of additional bus numbers
  2611. reserved for buses below a hotplug bridge.
  2612. Default is 1.
  2613. realloc= Enable/disable reallocating PCI bridge resources
  2614. if allocations done by BIOS are too small to
  2615. accommodate resources required by all child
  2616. devices.
  2617. off: Turn realloc off
  2618. on: Turn realloc on
  2619. realloc same as realloc=on
  2620. noari do not use PCIe ARI.
  2621. noats [PCIE, Intel-IOMMU, AMD-IOMMU]
  2622. do not use PCIe ATS (and IOMMU device IOTLB).
  2623. pcie_scan_all Scan all possible PCIe devices. Otherwise we
  2624. only look for one device below a PCIe downstream
  2625. port.
  2626. big_root_window Try to add a big 64bit memory window to the PCIe
  2627. root complex on AMD CPUs. Some GFX hardware
  2628. can resize a BAR to allow access to all VRAM.
  2629. Adding the window is slightly risky (it may
  2630. conflict with unreported devices), so this
  2631. taints the kernel.
  2632. pcie_aspm= [PCIE] Forcibly enable or disable PCIe Active State Power
  2633. Management.
  2634. off Disable ASPM.
  2635. force Enable ASPM even on devices that claim not to support it.
  2636. WARNING: Forcing ASPM on may cause system lockups.
  2637. pcie_ports= [PCIE] PCIe port services handling:
  2638. native Use native PCIe services (PME, AER, DPC, PCIe hotplug)
  2639. even if the platform doesn't give the OS permission to
  2640. use them. This may cause conflicts if the platform
  2641. also tries to use these services.
  2642. compat Disable native PCIe services (PME, AER, DPC, PCIe
  2643. hotplug).
  2644. pcie_port_pm= [PCIE] PCIe port power management handling:
  2645. off Disable power management of all PCIe ports
  2646. force Forcibly enable power management of all PCIe ports
  2647. pcie_pme= [PCIE,PM] Native PCIe PME signaling options:
  2648. nomsi Do not use MSI for native PCIe PME signaling (this makes
  2649. all PCIe root ports use INTx for all services).
  2650. pcmv= [HW,PCMCIA] BadgePAD 4
  2651. pd_ignore_unused
  2652. [PM]
  2653. Keep all power-domains already enabled by bootloader on,
  2654. even if no driver has claimed them. This is useful
  2655. for debug and development, but should not be
  2656. needed on a platform with proper driver support.
  2657. pd. [PARIDE]
  2658. See Documentation/blockdev/paride.txt.
  2659. pdcchassis= [PARISC,HW] Disable/Enable PDC Chassis Status codes at
  2660. boot time.
  2661. Format: { 0 | 1 }
  2662. See arch/parisc/kernel/pdc_chassis.c
  2663. percpu_alloc= Select which percpu first chunk allocator to use.
  2664. Currently supported values are "embed" and "page".
  2665. Archs may support subset or none of the selections.
  2666. See comments in mm/percpu.c for details on each
  2667. allocator. This parameter is primarily for debugging
  2668. and performance comparison.
  2669. pf. [PARIDE]
  2670. See Documentation/blockdev/paride.txt.
  2671. pg. [PARIDE]
  2672. See Documentation/blockdev/paride.txt.
  2673. pirq= [SMP,APIC] Manual mp-table setup
  2674. See Documentation/x86/i386/IO-APIC.txt.
  2675. plip= [PPT,NET] Parallel port network link
  2676. Format: { parport<nr> | timid | 0 }
  2677. See also Documentation/admin-guide/parport.rst.
  2678. pmtmr= [X86] Manual setup of pmtmr I/O Port.
  2679. Override pmtimer IOPort with a hex value.
  2680. e.g. pmtmr=0x508
  2681. pnp.debug=1 [PNP]
  2682. Enable PNP debug messages (depends on the
  2683. CONFIG_PNP_DEBUG_MESSAGES option). Change at run-time
  2684. via /sys/module/pnp/parameters/debug. We always show
  2685. current resource usage; turning this on also shows
  2686. possible settings and some assignment information.
  2687. pnpacpi= [ACPI]
  2688. { off }
  2689. pnpbios= [ISAPNP]
  2690. { on | off | curr | res | no-curr | no-res }
  2691. pnp_reserve_irq=
  2692. [ISAPNP] Exclude IRQs for the autoconfiguration
  2693. pnp_reserve_dma=
  2694. [ISAPNP] Exclude DMAs for the autoconfiguration
  2695. pnp_reserve_io= [ISAPNP] Exclude I/O ports for the autoconfiguration
  2696. Ranges are in pairs (I/O port base and size).
  2697. pnp_reserve_mem=
  2698. [ISAPNP] Exclude memory regions for the
  2699. autoconfiguration.
  2700. Ranges are in pairs (memory base and size).
  2701. ports= [IP_VS_FTP] IPVS ftp helper module
  2702. Default is 21.
  2703. Up to 8 (IP_VS_APP_MAX_PORTS) ports
  2704. may be specified.
  2705. Format: <port>,<port>....
  2706. powersave=off [PPC] This option disables power saving features.
  2707. It specifically disables cpuidle and sets the
  2708. platform machine description specific power_save
  2709. function to NULL. On Idle the CPU just reduces
  2710. execution priority.
  2711. ppc_strict_facility_enable
  2712. [PPC] This option catches any kernel floating point,
  2713. Altivec, VSX and SPE outside of regions specifically
  2714. allowed (eg kernel_enable_fpu()/kernel_disable_fpu()).
  2715. There is some performance impact when enabling this.
  2716. ppc_tm= [PPC]
  2717. Format: {"off"}
  2718. Disable Hardware Transactional Memory
  2719. print-fatal-signals=
  2720. [KNL] debug: print fatal signals
  2721. If enabled, warn about various signal handling
  2722. related application anomalies: too many signals,
  2723. too many POSIX.1 timers, fatal signals causing a
  2724. coredump - etc.
  2725. If you hit the warning due to signal overflow,
  2726. you might want to try "ulimit -i unlimited".
  2727. default: off.
  2728. printk.always_kmsg_dump=
  2729. Trigger kmsg_dump for cases other than kernel oops or
  2730. panics
  2731. Format: <bool> (1/Y/y=enable, 0/N/n=disable)
  2732. default: disabled
  2733. printk.devkmsg={on,off,ratelimit}
  2734. Control writing to /dev/kmsg.
  2735. on - unlimited logging to /dev/kmsg from userspace
  2736. off - logging to /dev/kmsg disabled
  2737. ratelimit - ratelimit the logging
  2738. Default: ratelimit
  2739. printk.time= Show timing data prefixed to each printk message line
  2740. Format: <bool> (1/Y/y=enable, 0/N/n=disable)
  2741. processor.max_cstate= [HW,ACPI]
  2742. Limit processor to maximum C-state
  2743. max_cstate=9 overrides any DMI blacklist limit.
  2744. processor.nocst [HW,ACPI]
  2745. Ignore the _CST method to determine C-states,
  2746. instead using the legacy FADT method
  2747. profile= [KNL] Enable kernel profiling via /proc/profile
  2748. Format: [<profiletype>,]<number>
  2749. Param: <profiletype>: "schedule", "sleep", or "kvm"
  2750. [defaults to kernel profiling]
  2751. Param: "schedule" - profile schedule points.
  2752. Param: "sleep" - profile D-state sleeping (millisecs).
  2753. Requires CONFIG_SCHEDSTATS
  2754. Param: "kvm" - profile VM exits.
  2755. Param: <number> - step/bucket size as a power of 2 for
  2756. statistical time based profiling.
  2757. prompt_ramdisk= [RAM] List of RAM disks to prompt for floppy disk
  2758. before loading.
  2759. See Documentation/blockdev/ramdisk.txt.
  2760. psmouse.proto= [HW,MOUSE] Highest PS2 mouse protocol extension to
  2761. probe for; one of (bare|imps|exps|lifebook|any).
  2762. psmouse.rate= [HW,MOUSE] Set desired mouse report rate, in reports
  2763. per second.
  2764. psmouse.resetafter= [HW,MOUSE]
  2765. Try to reset the device after so many bad packets
  2766. (0 = never).
  2767. psmouse.resolution=
  2768. [HW,MOUSE] Set desired mouse resolution, in dpi.
  2769. psmouse.smartscroll=
  2770. [HW,MOUSE] Controls Logitech smartscroll autorepeat.
  2771. 0 = disabled, 1 = enabled (default).
  2772. pstore.backend= Specify the name of the pstore backend to use
  2773. pt. [PARIDE]
  2774. See Documentation/blockdev/paride.txt.
  2775. pti= [X86_64] Control Page Table Isolation of user and
  2776. kernel address spaces. Disabling this feature
  2777. removes hardening, but improves performance of
  2778. system calls and interrupts.
  2779. on - unconditionally enable
  2780. off - unconditionally disable
  2781. auto - kernel detects whether your CPU model is
  2782. vulnerable to issues that PTI mitigates
  2783. Not specifying this option is equivalent to pti=auto.
  2784. nopti [X86_64]
  2785. Equivalent to pti=off
  2786. pty.legacy_count=
  2787. [KNL] Number of legacy pty's. Overwrites compiled-in
  2788. default number.
  2789. quiet [KNL] Disable most log messages
  2790. r128= [HW,DRM]
  2791. raid= [HW,RAID]
  2792. See Documentation/admin-guide/md.rst.
  2793. ramdisk_size= [RAM] Sizes of RAM disks in kilobytes
  2794. See Documentation/blockdev/ramdisk.txt.
  2795. ras=option[,option,...] [KNL] RAS-specific options
  2796. cec_disable [X86]
  2797. Disable the Correctable Errors Collector,
  2798. see CONFIG_RAS_CEC help text.
  2799. rcu_nocbs= [KNL]
  2800. The argument is a cpu list, as described above.
  2801. In kernels built with CONFIG_RCU_NOCB_CPU=y, set
  2802. the specified list of CPUs to be no-callback CPUs.
  2803. Invocation of these CPUs' RCU callbacks will
  2804. be offloaded to "rcuox/N" kthreads created for
  2805. that purpose, where "x" is "b" for RCU-bh, "p"
  2806. for RCU-preempt, and "s" for RCU-sched, and "N"
  2807. is the CPU number. This reduces OS jitter on the
  2808. offloaded CPUs, which can be useful for HPC and
  2809. real-time workloads. It can also improve energy
  2810. efficiency for asymmetric multiprocessors.
  2811. rcu_nocb_poll [KNL]
  2812. Rather than requiring that offloaded CPUs
  2813. (specified by rcu_nocbs= above) explicitly
  2814. awaken the corresponding "rcuoN" kthreads,
  2815. make these kthreads poll for callbacks.
  2816. This improves the real-time response for the
  2817. offloaded CPUs by relieving them of the need to
  2818. wake up the corresponding kthread, but degrades
  2819. energy efficiency by requiring that the kthreads
  2820. periodically wake up to do the polling.
  2821. rcutree.blimit= [KNL]
  2822. Set maximum number of finished RCU callbacks to
  2823. process in one batch.
  2824. rcutree.dump_tree= [KNL]
  2825. Dump the structure of the rcu_node combining tree
  2826. out at early boot. This is used for diagnostic
  2827. purposes, to verify correct tree setup.
  2828. rcutree.gp_cleanup_delay= [KNL]
  2829. Set the number of jiffies to delay each step of
  2830. RCU grace-period cleanup.
  2831. rcutree.gp_init_delay= [KNL]
  2832. Set the number of jiffies to delay each step of
  2833. RCU grace-period initialization.
  2834. rcutree.gp_preinit_delay= [KNL]
  2835. Set the number of jiffies to delay each step of
  2836. RCU grace-period pre-initialization, that is,
  2837. the propagation of recent CPU-hotplug changes up
  2838. the rcu_node combining tree.
  2839. rcutree.rcu_fanout_exact= [KNL]
  2840. Disable autobalancing of the rcu_node combining
  2841. tree. This is used by rcutorture, and might
  2842. possibly be useful for architectures having high
  2843. cache-to-cache transfer latencies.
  2844. rcutree.rcu_fanout_leaf= [KNL]
  2845. Change the number of CPUs assigned to each
  2846. leaf rcu_node structure. Useful for very
  2847. large systems, which will choose the value 64,
  2848. and for NUMA systems with large remote-access
  2849. latencies, which will choose a value aligned
  2850. with the appropriate hardware boundaries.
  2851. rcutree.jiffies_till_sched_qs= [KNL]
  2852. Set required age in jiffies for a
  2853. given grace period before RCU starts
  2854. soliciting quiescent-state help from
  2855. rcu_note_context_switch().
  2856. rcutree.jiffies_till_first_fqs= [KNL]
  2857. Set delay from grace-period initialization to
  2858. first attempt to force quiescent states.
  2859. Units are jiffies, minimum value is zero,
  2860. and maximum value is HZ.
  2861. rcutree.jiffies_till_next_fqs= [KNL]
  2862. Set delay between subsequent attempts to force
  2863. quiescent states. Units are jiffies, minimum
  2864. value is one, and maximum value is HZ.
  2865. rcutree.kthread_prio= [KNL,BOOT]
  2866. Set the SCHED_FIFO priority of the RCU per-CPU
  2867. kthreads (rcuc/N). This value is also used for
  2868. the priority of the RCU boost threads (rcub/N)
  2869. and for the RCU grace-period kthreads (rcu_bh,
  2870. rcu_preempt, and rcu_sched). If RCU_BOOST is
  2871. set, valid values are 1-99 and the default is 1
  2872. (the least-favored priority). Otherwise, when
  2873. RCU_BOOST is not set, valid values are 0-99 and
  2874. the default is zero (non-realtime operation).
  2875. rcutree.rcu_nocb_leader_stride= [KNL]
  2876. Set the number of NOCB kthread groups, which
  2877. defaults to the square root of the number of
  2878. CPUs. Larger numbers reduces the wakeup overhead
  2879. on the per-CPU grace-period kthreads, but increases
  2880. that same overhead on each group's leader.
  2881. rcutree.qhimark= [KNL]
  2882. Set threshold of queued RCU callbacks beyond which
  2883. batch limiting is disabled.
  2884. rcutree.qlowmark= [KNL]
  2885. Set threshold of queued RCU callbacks below which
  2886. batch limiting is re-enabled.
  2887. rcutree.rcu_idle_gp_delay= [KNL]
  2888. Set wakeup interval for idle CPUs that have
  2889. RCU callbacks (RCU_FAST_NO_HZ=y).
  2890. rcutree.rcu_idle_lazy_gp_delay= [KNL]
  2891. Set wakeup interval for idle CPUs that have
  2892. only "lazy" RCU callbacks (RCU_FAST_NO_HZ=y).
  2893. Lazy RCU callbacks are those which RCU can
  2894. prove do nothing more than free memory.
  2895. rcutree.rcu_kick_kthreads= [KNL]
  2896. Cause the grace-period kthread to get an extra
  2897. wake_up() if it sleeps three times longer than
  2898. it should at force-quiescent-state time.
  2899. This wake_up() will be accompanied by a
  2900. WARN_ONCE() splat and an ftrace_dump().
  2901. rcuperf.gp_async= [KNL]
  2902. Measure performance of asynchronous
  2903. grace-period primitives such as call_rcu().
  2904. rcuperf.gp_async_max= [KNL]
  2905. Specify the maximum number of outstanding
  2906. callbacks per writer thread. When a writer
  2907. thread exceeds this limit, it invokes the
  2908. corresponding flavor of rcu_barrier() to allow
  2909. previously posted callbacks to drain.
  2910. rcuperf.gp_exp= [KNL]
  2911. Measure performance of expedited synchronous
  2912. grace-period primitives.
  2913. rcuperf.holdoff= [KNL]
  2914. Set test-start holdoff period. The purpose of
  2915. this parameter is to delay the start of the
  2916. test until boot completes in order to avoid
  2917. interference.
  2918. rcuperf.nreaders= [KNL]
  2919. Set number of RCU readers. The value -1 selects
  2920. N, where N is the number of CPUs. A value
  2921. "n" less than -1 selects N-n+1, where N is again
  2922. the number of CPUs. For example, -2 selects N
  2923. (the number of CPUs), -3 selects N+1, and so on.
  2924. A value of "n" less than or equal to -N selects
  2925. a single reader.
  2926. rcuperf.nwriters= [KNL]
  2927. Set number of RCU writers. The values operate
  2928. the same as for rcuperf.nreaders.
  2929. N, where N is the number of CPUs
  2930. rcuperf.perf_type= [KNL]
  2931. Specify the RCU implementation to test.
  2932. rcuperf.shutdown= [KNL]
  2933. Shut the system down after performance tests
  2934. complete. This is useful for hands-off automated
  2935. testing.
  2936. rcuperf.verbose= [KNL]
  2937. Enable additional printk() statements.
  2938. rcuperf.writer_holdoff= [KNL]
  2939. Write-side holdoff between grace periods,
  2940. in microseconds. The default of zero says
  2941. no holdoff.
  2942. rcutorture.cbflood_inter_holdoff= [KNL]
  2943. Set holdoff time (jiffies) between successive
  2944. callback-flood tests.
  2945. rcutorture.cbflood_intra_holdoff= [KNL]
  2946. Set holdoff time (jiffies) between successive
  2947. bursts of callbacks within a given callback-flood
  2948. test.
  2949. rcutorture.cbflood_n_burst= [KNL]
  2950. Set the number of bursts making up a given
  2951. callback-flood test. Set this to zero to
  2952. disable callback-flood testing.
  2953. rcutorture.cbflood_n_per_burst= [KNL]
  2954. Set the number of callbacks to be registered
  2955. in a given burst of a callback-flood test.
  2956. rcutorture.fqs_duration= [KNL]
  2957. Set duration of force_quiescent_state bursts
  2958. in microseconds.
  2959. rcutorture.fqs_holdoff= [KNL]
  2960. Set holdoff time within force_quiescent_state bursts
  2961. in microseconds.
  2962. rcutorture.fqs_stutter= [KNL]
  2963. Set wait time between force_quiescent_state bursts
  2964. in seconds.
  2965. rcutorture.gp_cond= [KNL]
  2966. Use conditional/asynchronous update-side
  2967. primitives, if available.
  2968. rcutorture.gp_exp= [KNL]
  2969. Use expedited update-side primitives, if available.
  2970. rcutorture.gp_normal= [KNL]
  2971. Use normal (non-expedited) asynchronous
  2972. update-side primitives, if available.
  2973. rcutorture.gp_sync= [KNL]
  2974. Use normal (non-expedited) synchronous
  2975. update-side primitives, if available. If all
  2976. of rcutorture.gp_cond=, rcutorture.gp_exp=,
  2977. rcutorture.gp_normal=, and rcutorture.gp_sync=
  2978. are zero, rcutorture acts as if is interpreted
  2979. they are all non-zero.
  2980. rcutorture.n_barrier_cbs= [KNL]
  2981. Set callbacks/threads for rcu_barrier() testing.
  2982. rcutorture.nfakewriters= [KNL]
  2983. Set number of concurrent RCU writers. These just
  2984. stress RCU, they don't participate in the actual
  2985. test, hence the "fake".
  2986. rcutorture.nreaders= [KNL]
  2987. Set number of RCU readers. The value -1 selects
  2988. N-1, where N is the number of CPUs. A value
  2989. "n" less than -1 selects N-n-2, where N is again
  2990. the number of CPUs. For example, -2 selects N
  2991. (the number of CPUs), -3 selects N+1, and so on.
  2992. rcutorture.object_debug= [KNL]
  2993. Enable debug-object double-call_rcu() testing.
  2994. rcutorture.onoff_holdoff= [KNL]
  2995. Set time (s) after boot for CPU-hotplug testing.
  2996. rcutorture.onoff_interval= [KNL]
  2997. Set time (s) between CPU-hotplug operations, or
  2998. zero to disable CPU-hotplug testing.
  2999. rcutorture.shuffle_interval= [KNL]
  3000. Set task-shuffle interval (s). Shuffling tasks
  3001. allows some CPUs to go into dyntick-idle mode
  3002. during the rcutorture test.
  3003. rcutorture.shutdown_secs= [KNL]
  3004. Set time (s) after boot system shutdown. This
  3005. is useful for hands-off automated testing.
  3006. rcutorture.stall_cpu= [KNL]
  3007. Duration of CPU stall (s) to test RCU CPU stall
  3008. warnings, zero to disable.
  3009. rcutorture.stall_cpu_holdoff= [KNL]
  3010. Time to wait (s) after boot before inducing stall.
  3011. rcutorture.stall_cpu_irqsoff= [KNL]
  3012. Disable interrupts while stalling if set.
  3013. rcutorture.stat_interval= [KNL]
  3014. Time (s) between statistics printk()s.
  3015. rcutorture.stutter= [KNL]
  3016. Time (s) to stutter testing, for example, specifying
  3017. five seconds causes the test to run for five seconds,
  3018. wait for five seconds, and so on. This tests RCU's
  3019. ability to transition abruptly to and from idle.
  3020. rcutorture.test_boost= [KNL]
  3021. Test RCU priority boosting? 0=no, 1=maybe, 2=yes.
  3022. "Maybe" means test if the RCU implementation
  3023. under test support RCU priority boosting.
  3024. rcutorture.test_boost_duration= [KNL]
  3025. Duration (s) of each individual boost test.
  3026. rcutorture.test_boost_interval= [KNL]
  3027. Interval (s) between each boost test.
  3028. rcutorture.test_no_idle_hz= [KNL]
  3029. Test RCU's dyntick-idle handling. See also the
  3030. rcutorture.shuffle_interval parameter.
  3031. rcutorture.torture_type= [KNL]
  3032. Specify the RCU implementation to test.
  3033. rcutorture.verbose= [KNL]
  3034. Enable additional printk() statements.
  3035. rcupdate.rcu_cpu_stall_suppress= [KNL]
  3036. Suppress RCU CPU stall warning messages.
  3037. rcupdate.rcu_cpu_stall_timeout= [KNL]
  3038. Set timeout for RCU CPU stall warning messages.
  3039. rcupdate.rcu_expedited= [KNL]
  3040. Use expedited grace-period primitives, for
  3041. example, synchronize_rcu_expedited() instead
  3042. of synchronize_rcu(). This reduces latency,
  3043. but can increase CPU utilization, degrade
  3044. real-time latency, and degrade energy efficiency.
  3045. No effect on CONFIG_TINY_RCU kernels.
  3046. rcupdate.rcu_normal= [KNL]
  3047. Use only normal grace-period primitives,
  3048. for example, synchronize_rcu() instead of
  3049. synchronize_rcu_expedited(). This improves
  3050. real-time latency, CPU utilization, and
  3051. energy efficiency, but can expose users to
  3052. increased grace-period latency. This parameter
  3053. overrides rcupdate.rcu_expedited. No effect on
  3054. CONFIG_TINY_RCU kernels.
  3055. rcupdate.rcu_normal_after_boot= [KNL]
  3056. Once boot has completed (that is, after
  3057. rcu_end_inkernel_boot() has been invoked), use
  3058. only normal grace-period primitives. No effect
  3059. on CONFIG_TINY_RCU kernels.
  3060. rcupdate.rcu_task_stall_timeout= [KNL]
  3061. Set timeout in jiffies for RCU task stall warning
  3062. messages. Disable with a value less than or equal
  3063. to zero.
  3064. rcupdate.rcu_self_test= [KNL]
  3065. Run the RCU early boot self tests
  3066. rcupdate.rcu_self_test_bh= [KNL]
  3067. Run the RCU bh early boot self tests
  3068. rcupdate.rcu_self_test_sched= [KNL]
  3069. Run the RCU sched early boot self tests
  3070. rdinit= [KNL]
  3071. Format: <full_path>
  3072. Run specified binary instead of /init from the ramdisk,
  3073. used for early userspace startup. See initrd.
  3074. rdt= [HW,X86,RDT]
  3075. Turn on/off individual RDT features. List is:
  3076. cmt, mbmtotal, mbmlocal, l3cat, l3cdp, l2cat, l2cdp,
  3077. mba.
  3078. E.g. to turn on cmt and turn off mba use:
  3079. rdt=cmt,!mba
  3080. reboot= [KNL]
  3081. Format (x86 or x86_64):
  3082. [w[arm] | c[old] | h[ard] | s[oft] | g[pio]] \
  3083. [[,]s[mp]#### \
  3084. [[,]b[ios] | a[cpi] | k[bd] | t[riple] | e[fi] | p[ci]] \
  3085. [[,]f[orce]
  3086. Where reboot_mode is one of warm (soft) or cold (hard) or gpio,
  3087. reboot_type is one of bios, acpi, kbd, triple, efi, or pci,
  3088. reboot_force is either force or not specified,
  3089. reboot_cpu is s[mp]#### with #### being the processor
  3090. to be used for rebooting.
  3091. relax_domain_level=
  3092. [KNL, SMP] Set scheduler's default relax_domain_level.
  3093. See Documentation/cgroup-v1/cpusets.txt.
  3094. reserve= [KNL,BUGS] Force kernel to ignore I/O ports or memory
  3095. Format: <base1>,<size1>[,<base2>,<size2>,...]
  3096. Reserve I/O ports or memory so the kernel won't use
  3097. them. If <base> is less than 0x10000, the region
  3098. is assumed to be I/O ports; otherwise it is memory.
  3099. reservetop= [X86-32]
  3100. Format: nn[KMG]
  3101. Reserves a hole at the top of the kernel virtual
  3102. address space.
  3103. reservelow= [X86]
  3104. Format: nn[K]
  3105. Set the amount of memory to reserve for BIOS at
  3106. the bottom of the address space.
  3107. reset_devices [KNL] Force drivers to reset the underlying device
  3108. during initialization.
  3109. resume= [SWSUSP]
  3110. Specify the partition device for software suspend
  3111. Format:
  3112. {/dev/<dev> | PARTUUID=<uuid> | <int>:<int> | <hex>}
  3113. resume_offset= [SWSUSP]
  3114. Specify the offset from the beginning of the partition
  3115. given by "resume=" at which the swap header is located,
  3116. in <PAGE_SIZE> units (needed only for swap files).
  3117. See Documentation/power/swsusp-and-swap-files.txt
  3118. resumedelay= [HIBERNATION] Delay (in seconds) to pause before attempting to
  3119. read the resume files
  3120. resumewait [HIBERNATION] Wait (indefinitely) for resume device to show up.
  3121. Useful for devices that are detected asynchronously
  3122. (e.g. USB and MMC devices).
  3123. hibernate= [HIBERNATION]
  3124. noresume Don't check if there's a hibernation image
  3125. present during boot.
  3126. nocompress Don't compress/decompress hibernation images.
  3127. no Disable hibernation and resume.
  3128. protect_image Turn on image protection during restoration
  3129. (that will set all pages holding image data
  3130. during restoration read-only).
  3131. retain_initrd [RAM] Keep initrd memory after extraction
  3132. rfkill.default_state=
  3133. 0 "airplane mode". All wifi, bluetooth, wimax, gps, fm,
  3134. etc. communication is blocked by default.
  3135. 1 Unblocked.
  3136. rfkill.master_switch_mode=
  3137. 0 The "airplane mode" button does nothing.
  3138. 1 The "airplane mode" button toggles between everything
  3139. blocked and the previous configuration.
  3140. 2 The "airplane mode" button toggles between everything
  3141. blocked and everything unblocked.
  3142. rhash_entries= [KNL,NET]
  3143. Set number of hash buckets for route cache
  3144. ring3mwait=disable
  3145. [KNL] Disable ring 3 MONITOR/MWAIT feature on supported
  3146. CPUs.
  3147. ro [KNL] Mount root device read-only on boot
  3148. rodata= [KNL]
  3149. on Mark read-only kernel memory as read-only (default).
  3150. off Leave read-only kernel memory writable for debugging.
  3151. rockchip.usb_uart
  3152. Enable the uart passthrough on the designated usb port
  3153. on Rockchip SoCs. When active, the signals of the
  3154. debug-uart get routed to the D+ and D- pins of the usb
  3155. port and the regular usb controller gets disabled.
  3156. root= [KNL] Root filesystem
  3157. See name_to_dev_t comment in init/do_mounts.c.
  3158. rootdelay= [KNL] Delay (in seconds) to pause before attempting to
  3159. mount the root filesystem
  3160. rootflags= [KNL] Set root filesystem mount option string
  3161. rootfstype= [KNL] Set root filesystem type
  3162. rootwait [KNL] Wait (indefinitely) for root device to show up.
  3163. Useful for devices that are detected asynchronously
  3164. (e.g. USB and MMC devices).
  3165. rproc_mem=nn[KMG][@address]
  3166. [KNL,ARM,CMA] Remoteproc physical memory block.
  3167. Memory area to be used by remote processor image,
  3168. managed by CMA.
  3169. rw [KNL] Mount root device read-write on boot
  3170. S [KNL] Run init in single mode
  3171. s390_iommu= [HW,S390]
  3172. Set s390 IOTLB flushing mode
  3173. strict
  3174. With strict flushing every unmap operation will result in
  3175. an IOTLB flush. Default is lazy flushing before reuse,
  3176. which is faster.
  3177. sa1100ir [NET]
  3178. See drivers/net/irda/sa1100_ir.c.
  3179. sbni= [NET] Granch SBNI12 leased line adapter
  3180. sched_debug [KNL] Enables verbose scheduler debug messages.
  3181. schedstats= [KNL,X86] Enable or disable scheduled statistics.
  3182. Allowed values are enable and disable. This feature
  3183. incurs a small amount of overhead in the scheduler
  3184. but is useful for debugging and performance tuning.
  3185. skew_tick= [KNL] Offset the periodic timer tick per cpu to mitigate
  3186. xtime_lock contention on larger systems, and/or RCU lock
  3187. contention on all systems with CONFIG_MAXSMP set.
  3188. Format: { "0" | "1" }
  3189. 0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1"
  3190. 1 -- enable.
  3191. Note: increases power consumption, thus should only be
  3192. enabled if running jitter sensitive (HPC/RT) workloads.
  3193. security= [SECURITY] Choose a security module to enable at boot.
  3194. If this boot parameter is not specified, only the first
  3195. security module asking for security registration will be
  3196. loaded. An invalid security module name will be treated
  3197. as if no module has been chosen.
  3198. selinux= [SELINUX] Disable or enable SELinux at boot time.
  3199. Format: { "0" | "1" }
  3200. See security/selinux/Kconfig help text.
  3201. 0 -- disable.
  3202. 1 -- enable.
  3203. Default value is set via kernel config option.
  3204. If enabled at boot time, /selinux/disable can be used
  3205. later to disable prior to initial policy load.
  3206. apparmor= [APPARMOR] Disable or enable AppArmor at boot time
  3207. Format: { "0" | "1" }
  3208. See security/apparmor/Kconfig help text
  3209. 0 -- disable.
  3210. 1 -- enable.
  3211. Default value is set via kernel config option.
  3212. serialnumber [BUGS=X86-32]
  3213. shapers= [NET]
  3214. Maximal number of shapers.
  3215. simeth= [IA-64]
  3216. simscsi=
  3217. slram= [HW,MTD]
  3218. slab_nomerge [MM]
  3219. Disable merging of slabs with similar size. May be
  3220. necessary if there is some reason to distinguish
  3221. allocs to different slabs, especially in hardened
  3222. environments where the risk of heap overflows and
  3223. layout control by attackers can usually be
  3224. frustrated by disabling merging. This will reduce
  3225. most of the exposure of a heap attack to a single
  3226. cache (risks via metadata attacks are mostly
  3227. unchanged). Debug options disable merging on their
  3228. own.
  3229. For more information see Documentation/vm/slub.rst.
  3230. slab_max_order= [MM, SLAB]
  3231. Determines the maximum allowed order for slabs.
  3232. A high setting may cause OOMs due to memory
  3233. fragmentation. Defaults to 1 for systems with
  3234. more than 32MB of RAM, 0 otherwise.
  3235. slub_debug[=options[,slabs]] [MM, SLUB]
  3236. Enabling slub_debug allows one to determine the
  3237. culprit if slab objects become corrupted. Enabling
  3238. slub_debug can create guard zones around objects and
  3239. may poison objects when not in use. Also tracks the
  3240. last alloc / free. For more information see
  3241. Documentation/vm/slub.rst.
  3242. slub_memcg_sysfs= [MM, SLUB]
  3243. Determines whether to enable sysfs directories for
  3244. memory cgroup sub-caches. 1 to enable, 0 to disable.
  3245. The default is determined by CONFIG_SLUB_MEMCG_SYSFS_ON.
  3246. Enabling this can lead to a very high number of debug
  3247. directories and files being created under
  3248. /sys/kernel/slub.
  3249. slub_max_order= [MM, SLUB]
  3250. Determines the maximum allowed order for slabs.
  3251. A high setting may cause OOMs due to memory
  3252. fragmentation. For more information see
  3253. Documentation/vm/slub.rst.
  3254. slub_min_objects= [MM, SLUB]
  3255. The minimum number of objects per slab. SLUB will
  3256. increase the slab order up to slub_max_order to
  3257. generate a sufficiently large slab able to contain
  3258. the number of objects indicated. The higher the number
  3259. of objects the smaller the overhead of tracking slabs
  3260. and the less frequently locks need to be acquired.
  3261. For more information see Documentation/vm/slub.rst.
  3262. slub_min_order= [MM, SLUB]
  3263. Determines the minimum page order for slabs. Must be
  3264. lower than slub_max_order.
  3265. For more information see Documentation/vm/slub.rst.
  3266. slub_nomerge [MM, SLUB]
  3267. Same with slab_nomerge. This is supported for legacy.
  3268. See slab_nomerge for more information.
  3269. smart2= [HW]
  3270. Format: <io1>[,<io2>[,...,<io8>]]
  3271. smsc-ircc2.nopnp [HW] Don't use PNP to discover SMC devices
  3272. smsc-ircc2.ircc_cfg= [HW] Device configuration I/O port
  3273. smsc-ircc2.ircc_sir= [HW] SIR base I/O port
  3274. smsc-ircc2.ircc_fir= [HW] FIR base I/O port
  3275. smsc-ircc2.ircc_irq= [HW] IRQ line
  3276. smsc-ircc2.ircc_dma= [HW] DMA channel
  3277. smsc-ircc2.ircc_transceiver= [HW] Transceiver type:
  3278. 0: Toshiba Satellite 1800 (GP data pin select)
  3279. 1: Fast pin select (default)
  3280. 2: ATC IRMode
  3281. smt [KNL,S390] Set the maximum number of threads (logical
  3282. CPUs) to use per physical CPU on systems capable of
  3283. symmetric multithreading (SMT). Will be capped to the
  3284. actual hardware limit.
  3285. Format: <integer>
  3286. Default: -1 (no limit)
  3287. softlockup_panic=
  3288. [KNL] Should the soft-lockup detector generate panics.
  3289. Format: <integer>
  3290. A nonzero value instructs the soft-lockup detector
  3291. to panic the machine when a soft-lockup occurs. This
  3292. is also controlled by CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC
  3293. which is the respective build-time switch to that
  3294. functionality.
  3295. softlockup_all_cpu_backtrace=
  3296. [KNL] Should the soft-lockup detector generate
  3297. backtraces on all cpus.
  3298. Format: <integer>
  3299. sonypi.*= [HW] Sony Programmable I/O Control Device driver
  3300. See Documentation/laptops/sonypi.txt
  3301. spectre_v2= [X86] Control mitigation of Spectre variant 2
  3302. (indirect branch speculation) vulnerability.
  3303. on - unconditionally enable
  3304. off - unconditionally disable
  3305. auto - kernel detects whether your CPU model is
  3306. vulnerable
  3307. Selecting 'on' will, and 'auto' may, choose a
  3308. mitigation method at run time according to the
  3309. CPU, the available microcode, the setting of the
  3310. CONFIG_RETPOLINE configuration option, and the
  3311. compiler with which the kernel was built.
  3312. Specific mitigations can also be selected manually:
  3313. retpoline - replace indirect branches
  3314. retpoline,generic - google's original retpoline
  3315. retpoline,amd - AMD-specific minimal thunk
  3316. Not specifying this option is equivalent to
  3317. spectre_v2=auto.
  3318. spec_store_bypass_disable=
  3319. [HW] Control Speculative Store Bypass (SSB) Disable mitigation
  3320. (Speculative Store Bypass vulnerability)
  3321. Certain CPUs are vulnerable to an exploit against a
  3322. a common industry wide performance optimization known
  3323. as "Speculative Store Bypass" in which recent stores
  3324. to the same memory location may not be observed by
  3325. later loads during speculative execution. The idea
  3326. is that such stores are unlikely and that they can
  3327. be detected prior to instruction retirement at the
  3328. end of a particular speculation execution window.
  3329. In vulnerable processors, the speculatively forwarded
  3330. store can be used in a cache side channel attack, for
  3331. example to read memory to which the attacker does not
  3332. directly have access (e.g. inside sandboxed code).
  3333. This parameter controls whether the Speculative Store
  3334. Bypass optimization is used.
  3335. on - Unconditionally disable Speculative Store Bypass
  3336. off - Unconditionally enable Speculative Store Bypass
  3337. auto - Kernel detects whether the CPU model contains an
  3338. implementation of Speculative Store Bypass and
  3339. picks the most appropriate mitigation. If the
  3340. CPU is not vulnerable, "off" is selected. If the
  3341. CPU is vulnerable the default mitigation is
  3342. architecture and Kconfig dependent. See below.
  3343. prctl - Control Speculative Store Bypass per thread
  3344. via prctl. Speculative Store Bypass is enabled
  3345. for a process by default. The state of the control
  3346. is inherited on fork.
  3347. seccomp - Same as "prctl" above, but all seccomp threads
  3348. will disable SSB unless they explicitly opt out.
  3349. Not specifying this option is equivalent to
  3350. spec_store_bypass_disable=auto.
  3351. Default mitigations:
  3352. X86: If CONFIG_SECCOMP=y "seccomp", otherwise "prctl"
  3353. spia_io_base= [HW,MTD]
  3354. spia_fio_base=
  3355. spia_pedr=
  3356. spia_peddr=
  3357. srcutree.counter_wrap_check [KNL]
  3358. Specifies how frequently to check for
  3359. grace-period sequence counter wrap for the
  3360. srcu_data structure's ->srcu_gp_seq_needed field.
  3361. The greater the number of bits set in this kernel
  3362. parameter, the less frequently counter wrap will
  3363. be checked for. Note that the bottom two bits
  3364. are ignored.
  3365. srcutree.exp_holdoff [KNL]
  3366. Specifies how many nanoseconds must elapse
  3367. since the end of the last SRCU grace period for
  3368. a given srcu_struct until the next normal SRCU
  3369. grace period will be considered for automatic
  3370. expediting. Set to zero to disable automatic
  3371. expediting.
  3372. ssbd= [ARM64,HW]
  3373. Speculative Store Bypass Disable control
  3374. On CPUs that are vulnerable to the Speculative
  3375. Store Bypass vulnerability and offer a
  3376. firmware based mitigation, this parameter
  3377. indicates how the mitigation should be used:
  3378. force-on: Unconditionally enable mitigation for
  3379. for both kernel and userspace
  3380. force-off: Unconditionally disable mitigation for
  3381. for both kernel and userspace
  3382. kernel: Always enable mitigation in the
  3383. kernel, and offer a prctl interface
  3384. to allow userspace to register its
  3385. interest in being mitigated too.
  3386. stack_guard_gap= [MM]
  3387. override the default stack gap protection. The value
  3388. is in page units and it defines how many pages prior
  3389. to (for stacks growing down) resp. after (for stacks
  3390. growing up) the main stack are reserved for no other
  3391. mapping. Default value is 256 pages.
  3392. stacktrace [FTRACE]
  3393. Enabled the stack tracer on boot up.
  3394. stacktrace_filter=[function-list]
  3395. [FTRACE] Limit the functions that the stack tracer
  3396. will trace at boot up. function-list is a comma separated
  3397. list of functions. This list can be changed at run
  3398. time by the stack_trace_filter file in the debugfs
  3399. tracing directory. Note, this enables stack tracing
  3400. and the stacktrace above is not needed.
  3401. sti= [PARISC,HW]
  3402. Format: <num>
  3403. Set the STI (builtin display/keyboard on the HP-PARISC
  3404. machines) console (graphic card) which should be used
  3405. as the initial boot-console.
  3406. See also comment in drivers/video/console/sticore.c.
  3407. sti_font= [HW]
  3408. See comment in drivers/video/console/sticore.c.
  3409. stifb= [HW]
  3410. Format: bpp:<bpp1>[:<bpp2>[:<bpp3>...]]
  3411. sunrpc.min_resvport=
  3412. sunrpc.max_resvport=
  3413. [NFS,SUNRPC]
  3414. SunRPC servers often require that client requests
  3415. originate from a privileged port (i.e. a port in the
  3416. range 0 < portnr < 1024).
  3417. An administrator who wishes to reserve some of these
  3418. ports for other uses may adjust the range that the
  3419. kernel's sunrpc client considers to be privileged
  3420. using these two parameters to set the minimum and
  3421. maximum port values.
  3422. sunrpc.svc_rpc_per_connection_limit=
  3423. [NFS,SUNRPC]
  3424. Limit the number of requests that the server will
  3425. process in parallel from a single connection.
  3426. The default value is 0 (no limit).
  3427. sunrpc.pool_mode=
  3428. [NFS]
  3429. Control how the NFS server code allocates CPUs to
  3430. service thread pools. Depending on how many NICs
  3431. you have and where their interrupts are bound, this
  3432. option will affect which CPUs will do NFS serving.
  3433. Note: this parameter cannot be changed while the
  3434. NFS server is running.
  3435. auto the server chooses an appropriate mode
  3436. automatically using heuristics
  3437. global a single global pool contains all CPUs
  3438. percpu one pool for each CPU
  3439. pernode one pool for each NUMA node (equivalent
  3440. to global on non-NUMA machines)
  3441. sunrpc.tcp_slot_table_entries=
  3442. sunrpc.udp_slot_table_entries=
  3443. [NFS,SUNRPC]
  3444. Sets the upper limit on the number of simultaneous
  3445. RPC calls that can be sent from the client to a
  3446. server. Increasing these values may allow you to
  3447. improve throughput, but will also increase the
  3448. amount of memory reserved for use by the client.
  3449. suspend.pm_test_delay=
  3450. [SUSPEND]
  3451. Sets the number of seconds to remain in a suspend test
  3452. mode before resuming the system (see
  3453. /sys/power/pm_test). Only available when CONFIG_PM_DEBUG
  3454. is set. Default value is 5.
  3455. swapaccount=[0|1]
  3456. [KNL] Enable accounting of swap in memory resource
  3457. controller if no parameter or 1 is given or disable
  3458. it if 0 is given (See Documentation/cgroup-v1/memory.txt)
  3459. swiotlb= [ARM,IA-64,PPC,MIPS,X86]
  3460. Format: { <int> | force | noforce }
  3461. <int> -- Number of I/O TLB slabs
  3462. force -- force using of bounce buffers even if they
  3463. wouldn't be automatically used by the kernel
  3464. noforce -- Never use bounce buffers (for debugging)
  3465. switches= [HW,M68k]
  3466. sysfs.deprecated=0|1 [KNL]
  3467. Enable/disable old style sysfs layout for old udev
  3468. on older distributions. When this option is enabled
  3469. very new udev will not work anymore. When this option
  3470. is disabled (or CONFIG_SYSFS_DEPRECATED not compiled)
  3471. in older udev will not work anymore.
  3472. Default depends on CONFIG_SYSFS_DEPRECATED_V2 set in
  3473. the kernel configuration.
  3474. sysrq_always_enabled
  3475. [KNL]
  3476. Ignore sysrq setting - this boot parameter will
  3477. neutralize any effect of /proc/sys/kernel/sysrq.
  3478. Useful for debugging.
  3479. tcpmhash_entries= [KNL,NET]
  3480. Set the number of tcp_metrics_hash slots.
  3481. Default value is 8192 or 16384 depending on total
  3482. ram pages. This is used to specify the TCP metrics
  3483. cache size. See Documentation/networking/ip-sysctl.txt
  3484. "tcp_no_metrics_save" section for more details.
  3485. tdfx= [HW,DRM]
  3486. test_suspend= [SUSPEND][,N]
  3487. Specify "mem" (for Suspend-to-RAM) or "standby" (for
  3488. standby suspend) or "freeze" (for suspend type freeze)
  3489. as the system sleep state during system startup with
  3490. the optional capability to repeat N number of times.
  3491. The system is woken from this state using a
  3492. wakeup-capable RTC alarm.
  3493. thash_entries= [KNL,NET]
  3494. Set number of hash buckets for TCP connection
  3495. thermal.act= [HW,ACPI]
  3496. -1: disable all active trip points in all thermal zones
  3497. <degrees C>: override all lowest active trip points
  3498. thermal.crt= [HW,ACPI]
  3499. -1: disable all critical trip points in all thermal zones
  3500. <degrees C>: override all critical trip points
  3501. thermal.nocrt= [HW,ACPI]
  3502. Set to disable actions on ACPI thermal zone
  3503. critical and hot trip points.
  3504. thermal.off= [HW,ACPI]
  3505. 1: disable ACPI thermal control
  3506. thermal.psv= [HW,ACPI]
  3507. -1: disable all passive trip points
  3508. <degrees C>: override all passive trip points to this
  3509. value
  3510. thermal.tzp= [HW,ACPI]
  3511. Specify global default ACPI thermal zone polling rate
  3512. <deci-seconds>: poll all this frequency
  3513. 0: no polling (default)
  3514. threadirqs [KNL]
  3515. Force threading of all interrupt handlers except those
  3516. marked explicitly IRQF_NO_THREAD.
  3517. tmem [KNL,XEN]
  3518. Enable the Transcendent memory driver if built-in.
  3519. tmem.cleancache=0|1 [KNL, XEN]
  3520. Default is on (1). Disable the usage of the cleancache
  3521. API to send anonymous pages to the hypervisor.
  3522. tmem.frontswap=0|1 [KNL, XEN]
  3523. Default is on (1). Disable the usage of the frontswap
  3524. API to send swap pages to the hypervisor. If disabled
  3525. the selfballooning and selfshrinking are force disabled.
  3526. tmem.selfballooning=0|1 [KNL, XEN]
  3527. Default is on (1). Disable the driving of swap pages
  3528. to the hypervisor.
  3529. tmem.selfshrinking=0|1 [KNL, XEN]
  3530. Default is on (1). Partial swapoff that immediately
  3531. transfers pages from Xen hypervisor back to the
  3532. kernel based on different criteria.
  3533. topology= [S390]
  3534. Format: {off | on}
  3535. Specify if the kernel should make use of the cpu
  3536. topology information if the hardware supports this.
  3537. The scheduler will make use of this information and
  3538. e.g. base its process migration decisions on it.
  3539. Default is on.
  3540. topology_updates= [KNL, PPC, NUMA]
  3541. Format: {off}
  3542. Specify if the kernel should ignore (off)
  3543. topology updates sent by the hypervisor to this
  3544. LPAR.
  3545. tp720= [HW,PS2]
  3546. tpm_suspend_pcr=[HW,TPM]
  3547. Format: integer pcr id
  3548. Specify that at suspend time, the tpm driver
  3549. should extend the specified pcr with zeros,
  3550. as a workaround for some chips which fail to
  3551. flush the last written pcr on TPM_SaveState.
  3552. This will guarantee that all the other pcrs
  3553. are saved.
  3554. trace_buf_size=nn[KMG]
  3555. [FTRACE] will set tracing buffer size on each cpu.
  3556. trace_event=[event-list]
  3557. [FTRACE] Set and start specified trace events in order
  3558. to facilitate early boot debugging. The event-list is a
  3559. comma separated list of trace events to enable. See
  3560. also Documentation/trace/events.rst
  3561. trace_options=[option-list]
  3562. [FTRACE] Enable or disable tracer options at boot.
  3563. The option-list is a comma delimited list of options
  3564. that can be enabled or disabled just as if you were
  3565. to echo the option name into
  3566. /sys/kernel/debug/tracing/trace_options
  3567. For example, to enable stacktrace option (to dump the
  3568. stack trace of each event), add to the command line:
  3569. trace_options=stacktrace
  3570. See also Documentation/trace/ftrace.rst "trace options"
  3571. section.
  3572. tp_printk[FTRACE]
  3573. Have the tracepoints sent to printk as well as the
  3574. tracing ring buffer. This is useful for early boot up
  3575. where the system hangs or reboots and does not give the
  3576. option for reading the tracing buffer or performing a
  3577. ftrace_dump_on_oops.
  3578. To turn off having tracepoints sent to printk,
  3579. echo 0 > /proc/sys/kernel/tracepoint_printk
  3580. Note, echoing 1 into this file without the
  3581. tracepoint_printk kernel cmdline option has no effect.
  3582. ** CAUTION **
  3583. Having tracepoints sent to printk() and activating high
  3584. frequency tracepoints such as irq or sched, can cause
  3585. the system to live lock.
  3586. traceoff_on_warning
  3587. [FTRACE] enable this option to disable tracing when a
  3588. warning is hit. This turns off "tracing_on". Tracing can
  3589. be enabled again by echoing '1' into the "tracing_on"
  3590. file located in /sys/kernel/debug/tracing/
  3591. This option is useful, as it disables the trace before
  3592. the WARNING dump is called, which prevents the trace to
  3593. be filled with content caused by the warning output.
  3594. This option can also be set at run time via the sysctl
  3595. option: kernel/traceoff_on_warning
  3596. transparent_hugepage=
  3597. [KNL]
  3598. Format: [always|madvise|never]
  3599. Can be used to control the default behavior of the system
  3600. with respect to transparent hugepages.
  3601. See Documentation/admin-guide/mm/transhuge.rst
  3602. for more details.
  3603. tsc= Disable clocksource stability checks for TSC.
  3604. Format: <string>
  3605. [x86] reliable: mark tsc clocksource as reliable, this
  3606. disables clocksource verification at runtime, as well
  3607. as the stability checks done at bootup. Used to enable
  3608. high-resolution timer mode on older hardware, and in
  3609. virtualized environment.
  3610. [x86] noirqtime: Do not use TSC to do irq accounting.
  3611. Used to run time disable IRQ_TIME_ACCOUNTING on any
  3612. platforms where RDTSC is slow and this accounting
  3613. can add overhead.
  3614. [x86] unstable: mark the TSC clocksource as unstable, this
  3615. marks the TSC unconditionally unstable at bootup and
  3616. avoids any further wobbles once the TSC watchdog notices.
  3617. turbografx.map[2|3]= [HW,JOY]
  3618. TurboGraFX parallel port interface
  3619. Format:
  3620. <port#>,<js1>,<js2>,<js3>,<js4>,<js5>,<js6>,<js7>
  3621. See also Documentation/input/devices/joystick-parport.rst
  3622. udbg-immortal [PPC] When debugging early kernel crashes that
  3623. happen after console_init() and before a proper
  3624. console driver takes over, this boot options might
  3625. help "seeing" what's going on.
  3626. uhash_entries= [KNL,NET]
  3627. Set number of hash buckets for UDP/UDP-Lite connections
  3628. uhci-hcd.ignore_oc=
  3629. [USB] Ignore overcurrent events (default N).
  3630. Some badly-designed motherboards generate lots of
  3631. bogus events, for ports that aren't wired to
  3632. anything. Set this parameter to avoid log spamming.
  3633. Note that genuine overcurrent events won't be
  3634. reported either.
  3635. unknown_nmi_panic
  3636. [X86] Cause panic on unknown NMI.
  3637. usbcore.authorized_default=
  3638. [USB] Default USB device authorization:
  3639. (default -1 = authorized except for wireless USB,
  3640. 0 = not authorized, 1 = authorized)
  3641. usbcore.autosuspend=
  3642. [USB] The autosuspend time delay (in seconds) used
  3643. for newly-detected USB devices (default 2). This
  3644. is the time required before an idle device will be
  3645. autosuspended. Devices for which the delay is set
  3646. to a negative value won't be autosuspended at all.
  3647. usbcore.usbfs_snoop=
  3648. [USB] Set to log all usbfs traffic (default 0 = off).
  3649. usbcore.usbfs_snoop_max=
  3650. [USB] Maximum number of bytes to snoop in each URB
  3651. (default = 65536).
  3652. usbcore.blinkenlights=
  3653. [USB] Set to cycle leds on hubs (default 0 = off).
  3654. usbcore.old_scheme_first=
  3655. [USB] Start with the old device initialization
  3656. scheme (default 0 = off).
  3657. usbcore.usbfs_memory_mb=
  3658. [USB] Memory limit (in MB) for buffers allocated by
  3659. usbfs (default = 16, 0 = max = 2047).
  3660. usbcore.use_both_schemes=
  3661. [USB] Try the other device initialization scheme
  3662. if the first one fails (default 1 = enabled).
  3663. usbcore.initial_descriptor_timeout=
  3664. [USB] Specifies timeout for the initial 64-byte
  3665. USB_REQ_GET_DESCRIPTOR request in milliseconds
  3666. (default 5000 = 5.0 seconds).
  3667. usbcore.nousb [USB] Disable the USB subsystem
  3668. usbcore.quirks=
  3669. [USB] A list of quirk entries to augment the built-in
  3670. usb core quirk list. List entries are separated by
  3671. commas. Each entry has the form
  3672. VendorID:ProductID:Flags. The IDs are 4-digit hex
  3673. numbers and Flags is a set of letters. Each letter
  3674. will change the built-in quirk; setting it if it is
  3675. clear and clearing it if it is set. The letters have
  3676. the following meanings:
  3677. a = USB_QUIRK_STRING_FETCH_255 (string
  3678. descriptors must not be fetched using
  3679. a 255-byte read);
  3680. b = USB_QUIRK_RESET_RESUME (device can't resume
  3681. correctly so reset it instead);
  3682. c = USB_QUIRK_NO_SET_INTF (device can't handle
  3683. Set-Interface requests);
  3684. d = USB_QUIRK_CONFIG_INTF_STRINGS (device can't
  3685. handle its Configuration or Interface
  3686. strings);
  3687. e = USB_QUIRK_RESET (device can't be reset
  3688. (e.g morph devices), don't use reset);
  3689. f = USB_QUIRK_HONOR_BNUMINTERFACES (device has
  3690. more interface descriptions than the
  3691. bNumInterfaces count, and can't handle
  3692. talking to these interfaces);
  3693. g = USB_QUIRK_DELAY_INIT (device needs a pause
  3694. during initialization, after we read
  3695. the device descriptor);
  3696. h = USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL (For
  3697. high speed and super speed interrupt
  3698. endpoints, the USB 2.0 and USB 3.0 spec
  3699. require the interval in microframes (1
  3700. microframe = 125 microseconds) to be
  3701. calculated as interval = 2 ^
  3702. (bInterval-1).
  3703. Devices with this quirk report their
  3704. bInterval as the result of this
  3705. calculation instead of the exponent
  3706. variable used in the calculation);
  3707. i = USB_QUIRK_DEVICE_QUALIFIER (device can't
  3708. handle device_qualifier descriptor
  3709. requests);
  3710. j = USB_QUIRK_IGNORE_REMOTE_WAKEUP (device
  3711. generates spurious wakeup, ignore
  3712. remote wakeup capability);
  3713. k = USB_QUIRK_NO_LPM (device can't handle Link
  3714. Power Management);
  3715. l = USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL
  3716. (Device reports its bInterval as linear
  3717. frames instead of the USB 2.0
  3718. calculation);
  3719. m = USB_QUIRK_DISCONNECT_SUSPEND (Device needs
  3720. to be disconnected before suspend to
  3721. prevent spurious wakeup);
  3722. n = USB_QUIRK_DELAY_CTRL_MSG (Device needs a
  3723. pause after every control message);
  3724. Example: quirks=0781:5580:bk,0a5c:5834:gij
  3725. usbhid.mousepoll=
  3726. [USBHID] The interval which mice are to be polled at.
  3727. usbhid.jspoll=
  3728. [USBHID] The interval which joysticks are to be polled at.
  3729. usbhid.kbpoll=
  3730. [USBHID] The interval which keyboards are to be polled at.
  3731. usb-storage.delay_use=
  3732. [UMS] The delay in seconds before a new device is
  3733. scanned for Logical Units (default 1).
  3734. usb-storage.quirks=
  3735. [UMS] A list of quirks entries to supplement or
  3736. override the built-in unusual_devs list. List
  3737. entries are separated by commas. Each entry has
  3738. the form VID:PID:Flags where VID and PID are Vendor
  3739. and Product ID values (4-digit hex numbers) and
  3740. Flags is a set of characters, each corresponding
  3741. to a common usb-storage quirk flag as follows:
  3742. a = SANE_SENSE (collect more than 18 bytes
  3743. of sense data);
  3744. b = BAD_SENSE (don't collect more than 18
  3745. bytes of sense data);
  3746. c = FIX_CAPACITY (decrease the reported
  3747. device capacity by one sector);
  3748. d = NO_READ_DISC_INFO (don't use
  3749. READ_DISC_INFO command);
  3750. e = NO_READ_CAPACITY_16 (don't use
  3751. READ_CAPACITY_16 command);
  3752. f = NO_REPORT_OPCODES (don't use report opcodes
  3753. command, uas only);
  3754. g = MAX_SECTORS_240 (don't transfer more than
  3755. 240 sectors at a time, uas only);
  3756. h = CAPACITY_HEURISTICS (decrease the
  3757. reported device capacity by one
  3758. sector if the number is odd);
  3759. i = IGNORE_DEVICE (don't bind to this
  3760. device);
  3761. j = NO_REPORT_LUNS (don't use report luns
  3762. command, uas only);
  3763. l = NOT_LOCKABLE (don't try to lock and
  3764. unlock ejectable media);
  3765. m = MAX_SECTORS_64 (don't transfer more
  3766. than 64 sectors = 32 KB at a time);
  3767. n = INITIAL_READ10 (force a retry of the
  3768. initial READ(10) command);
  3769. o = CAPACITY_OK (accept the capacity
  3770. reported by the device);
  3771. p = WRITE_CACHE (the device cache is ON
  3772. by default);
  3773. r = IGNORE_RESIDUE (the device reports
  3774. bogus residue values);
  3775. s = SINGLE_LUN (the device has only one
  3776. Logical Unit);
  3777. t = NO_ATA_1X (don't allow ATA(12) and ATA(16)
  3778. commands, uas only);
  3779. u = IGNORE_UAS (don't bind to the uas driver);
  3780. w = NO_WP_DETECT (don't test whether the
  3781. medium is write-protected).
  3782. y = ALWAYS_SYNC (issue a SYNCHRONIZE_CACHE
  3783. even if the device claims no cache)
  3784. Example: quirks=0419:aaf5:rl,0421:0433:rc
  3785. user_debug= [KNL,ARM]
  3786. Format: <int>
  3787. See arch/arm/Kconfig.debug help text.
  3788. 1 - undefined instruction events
  3789. 2 - system calls
  3790. 4 - invalid data aborts
  3791. 8 - SIGSEGV faults
  3792. 16 - SIGBUS faults
  3793. Example: user_debug=31
  3794. userpte=
  3795. [X86] Flags controlling user PTE allocations.
  3796. nohigh = do not allocate PTE pages in
  3797. HIGHMEM regardless of setting
  3798. of CONFIG_HIGHPTE.
  3799. vdso= [X86,SH]
  3800. On X86_32, this is an alias for vdso32=. Otherwise:
  3801. vdso=1: enable VDSO (the default)
  3802. vdso=0: disable VDSO mapping
  3803. vdso32= [X86] Control the 32-bit vDSO
  3804. vdso32=1: enable 32-bit VDSO
  3805. vdso32=0 or vdso32=2: disable 32-bit VDSO
  3806. See the help text for CONFIG_COMPAT_VDSO for more
  3807. details. If CONFIG_COMPAT_VDSO is set, the default is
  3808. vdso32=0; otherwise, the default is vdso32=1.
  3809. For compatibility with older kernels, vdso32=2 is an
  3810. alias for vdso32=0.
  3811. Try vdso32=0 if you encounter an error that says:
  3812. dl_main: Assertion `(void *) ph->p_vaddr == _rtld_local._dl_sysinfo_dso' failed!
  3813. vector= [IA-64,SMP]
  3814. vector=percpu: enable percpu vector domain
  3815. video= [FB] Frame buffer configuration
  3816. See Documentation/fb/modedb.txt.
  3817. video.brightness_switch_enabled= [0,1]
  3818. If set to 1, on receiving an ACPI notify event
  3819. generated by hotkey, video driver will adjust brightness
  3820. level and then send out the event to user space through
  3821. the allocated input device; If set to 0, video driver
  3822. will only send out the event without touching backlight
  3823. brightness level.
  3824. default: 1
  3825. virtio_mmio.device=
  3826. [VMMIO] Memory mapped virtio (platform) device.
  3827. <size>@<baseaddr>:<irq>[:<id>]
  3828. where:
  3829. <size> := size (can use standard suffixes
  3830. like K, M and G)
  3831. <baseaddr> := physical base address
  3832. <irq> := interrupt number (as passed to
  3833. request_irq())
  3834. <id> := (optional) platform device id
  3835. example:
  3836. virtio_mmio.device=1K@0x100b0000:48:7
  3837. Can be used multiple times for multiple devices.
  3838. vga= [BOOT,X86-32] Select a particular video mode
  3839. See Documentation/x86/boot.txt and
  3840. Documentation/svga.txt.
  3841. Use vga=ask for menu.
  3842. This is actually a boot loader parameter; the value is
  3843. passed to the kernel using a special protocol.
  3844. vmalloc=nn[KMG] [KNL,BOOT] Forces the vmalloc area to have an exact
  3845. size of <nn>. This can be used to increase the
  3846. minimum size (128MB on x86). It can also be used to
  3847. decrease the size and leave more room for directly
  3848. mapped kernel RAM.
  3849. vmcp_cma=nn[MG] [KNL,S390]
  3850. Sets the memory size reserved for contiguous memory
  3851. allocations for the vmcp device driver.
  3852. vmhalt= [KNL,S390] Perform z/VM CP command after system halt.
  3853. Format: <command>
  3854. vmpanic= [KNL,S390] Perform z/VM CP command after kernel panic.
  3855. Format: <command>
  3856. vmpoff= [KNL,S390] Perform z/VM CP command after power off.
  3857. Format: <command>
  3858. vsyscall= [X86-64]
  3859. Controls the behavior of vsyscalls (i.e. calls to
  3860. fixed addresses of 0xffffffffff600x00 from legacy
  3861. code). Most statically-linked binaries and older
  3862. versions of glibc use these calls. Because these
  3863. functions are at fixed addresses, they make nice
  3864. targets for exploits that can control RIP.
  3865. emulate [default] Vsyscalls turn into traps and are
  3866. emulated reasonably safely.
  3867. native Vsyscalls are native syscall instructions.
  3868. This is a little bit faster than trapping
  3869. and makes a few dynamic recompilers work
  3870. better than they would in emulation mode.
  3871. It also makes exploits much easier to write.
  3872. none Vsyscalls don't work at all. This makes
  3873. them quite hard to use for exploits but
  3874. might break your system.
  3875. vt.color= [VT] Default text color.
  3876. Format: 0xYX, X = foreground, Y = background.
  3877. Default: 0x07 = light gray on black.
  3878. vt.cur_default= [VT] Default cursor shape.
  3879. Format: 0xCCBBAA, where AA, BB, and CC are the same as
  3880. the parameters of the <Esc>[?A;B;Cc escape sequence;
  3881. see VGA-softcursor.txt. Default: 2 = underline.
  3882. vt.default_blu= [VT]
  3883. Format: <blue0>,<blue1>,<blue2>,...,<blue15>
  3884. Change the default blue palette of the console.
  3885. This is a 16-member array composed of values
  3886. ranging from 0-255.
  3887. vt.default_grn= [VT]
  3888. Format: <green0>,<green1>,<green2>,...,<green15>
  3889. Change the default green palette of the console.
  3890. This is a 16-member array composed of values
  3891. ranging from 0-255.
  3892. vt.default_red= [VT]
  3893. Format: <red0>,<red1>,<red2>,...,<red15>
  3894. Change the default red palette of the console.
  3895. This is a 16-member array composed of values
  3896. ranging from 0-255.
  3897. vt.default_utf8=
  3898. [VT]
  3899. Format=<0|1>
  3900. Set system-wide default UTF-8 mode for all tty's.
  3901. Default is 1, i.e. UTF-8 mode is enabled for all
  3902. newly opened terminals.
  3903. vt.global_cursor_default=
  3904. [VT]
  3905. Format=<-1|0|1>
  3906. Set system-wide default for whether a cursor
  3907. is shown on new VTs. Default is -1,
  3908. i.e. cursors will be created by default unless
  3909. overridden by individual drivers. 0 will hide
  3910. cursors, 1 will display them.
  3911. vt.italic= [VT] Default color for italic text; 0-15.
  3912. Default: 2 = green.
  3913. vt.underline= [VT] Default color for underlined text; 0-15.
  3914. Default: 3 = cyan.
  3915. watchdog timers [HW,WDT] For information on watchdog timers,
  3916. see Documentation/watchdog/watchdog-parameters.txt
  3917. or other driver-specific files in the
  3918. Documentation/watchdog/ directory.
  3919. workqueue.watchdog_thresh=
  3920. If CONFIG_WQ_WATCHDOG is configured, workqueue can
  3921. warn stall conditions and dump internal state to
  3922. help debugging. 0 disables workqueue stall
  3923. detection; otherwise, it's the stall threshold
  3924. duration in seconds. The default value is 30 and
  3925. it can be updated at runtime by writing to the
  3926. corresponding sysfs file.
  3927. workqueue.disable_numa
  3928. By default, all work items queued to unbound
  3929. workqueues are affine to the NUMA nodes they're
  3930. issued on, which results in better behavior in
  3931. general. If NUMA affinity needs to be disabled for
  3932. whatever reason, this option can be used. Note
  3933. that this also can be controlled per-workqueue for
  3934. workqueues visible under /sys/bus/workqueue/.
  3935. workqueue.power_efficient
  3936. Per-cpu workqueues are generally preferred because
  3937. they show better performance thanks to cache
  3938. locality; unfortunately, per-cpu workqueues tend to
  3939. be more power hungry than unbound workqueues.
  3940. Enabling this makes the per-cpu workqueues which
  3941. were observed to contribute significantly to power
  3942. consumption unbound, leading to measurably lower
  3943. power usage at the cost of small performance
  3944. overhead.
  3945. The default value of this parameter is determined by
  3946. the config option CONFIG_WQ_POWER_EFFICIENT_DEFAULT.
  3947. workqueue.debug_force_rr_cpu
  3948. Workqueue used to implicitly guarantee that work
  3949. items queued without explicit CPU specified are put
  3950. on the local CPU. This guarantee is no longer true
  3951. and while local CPU is still preferred work items
  3952. may be put on foreign CPUs. This debug option
  3953. forces round-robin CPU selection to flush out
  3954. usages which depend on the now broken guarantee.
  3955. When enabled, memory and cache locality will be
  3956. impacted.
  3957. x2apic_phys [X86-64,APIC] Use x2apic physical mode instead of
  3958. default x2apic cluster mode on platforms
  3959. supporting x2apic.
  3960. x86_intel_mid_timer= [X86-32,APBT]
  3961. Choose timer option for x86 Intel MID platform.
  3962. Two valid options are apbt timer only and lapic timer
  3963. plus one apbt timer for broadcast timer.
  3964. x86_intel_mid_timer=apbt_only | lapic_and_apbt
  3965. xen_512gb_limit [KNL,X86-64,XEN]
  3966. Restricts the kernel running paravirtualized under Xen
  3967. to use only up to 512 GB of RAM. The reason to do so is
  3968. crash analysis tools and Xen tools for doing domain
  3969. save/restore/migration must be enabled to handle larger
  3970. domains.
  3971. xen_emul_unplug= [HW,X86,XEN]
  3972. Unplug Xen emulated devices
  3973. Format: [unplug0,][unplug1]
  3974. ide-disks -- unplug primary master IDE devices
  3975. aux-ide-disks -- unplug non-primary-master IDE devices
  3976. nics -- unplug network devices
  3977. all -- unplug all emulated devices (NICs and IDE disks)
  3978. unnecessary -- unplugging emulated devices is
  3979. unnecessary even if the host did not respond to
  3980. the unplug protocol
  3981. never -- do not unplug even if version check succeeds
  3982. xen_nopvspin [X86,XEN]
  3983. Disables the ticketlock slowpath using Xen PV
  3984. optimizations.
  3985. xen_nopv [X86]
  3986. Disables the PV optimizations forcing the HVM guest to
  3987. run as generic HVM guest with no PV drivers.
  3988. xirc2ps_cs= [NET,PCMCIA]
  3989. Format:
  3990. <irq>,<irq_mask>,<io>,<full_duplex>,<do_sound>,<lockup_hack>[,<irq2>[,<irq3>[,<irq4>]]]