.configDef 142 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599
  1. #
  2. # Automatically generated file; DO NOT EDIT.
  3. # Linux/arm 4.9.59 Kernel Configuration
  4. #
  5. CONFIG_ARM=y
  6. CONFIG_ARM_HAS_SG_CHAIN=y
  7. CONFIG_MIGHT_HAVE_PCI=y
  8. CONFIG_SYS_SUPPORTS_APM_EMULATION=y
  9. CONFIG_HAVE_PROC_CPU=y
  10. CONFIG_STACKTRACE_SUPPORT=y
  11. CONFIG_LOCKDEP_SUPPORT=y
  12. CONFIG_TRACE_IRQFLAGS_SUPPORT=y
  13. CONFIG_RWSEM_XCHGADD_ALGORITHM=y
  14. CONFIG_ARCH_HAS_BANDGAP=y
  15. CONFIG_FIX_EARLYCON_MEM=y
  16. CONFIG_GENERIC_HWEIGHT=y
  17. CONFIG_GENERIC_CALIBRATE_DELAY=y
  18. CONFIG_NEED_DMA_MAP_STATE=y
  19. CONFIG_ARCH_SUPPORTS_UPROBES=y
  20. CONFIG_VECTORS_BASE=0xffff0000
  21. CONFIG_ARM_PATCH_PHYS_VIRT=y
  22. CONFIG_GENERIC_BUG=y
  23. CONFIG_PGTABLE_LEVELS=2
  24. CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
  25. CONFIG_IRQ_WORK=y
  26. CONFIG_BUILDTIME_EXTABLE_SORT=y
  27. #
  28. # General setup
  29. #
  30. CONFIG_BROKEN_ON_SMP=y
  31. CONFIG_INIT_ENV_ARG_LIMIT=32
  32. CONFIG_CROSS_COMPILE=""
  33. # CONFIG_COMPILE_TEST is not set
  34. CONFIG_LOCALVERSION=""
  35. CONFIG_LOCALVERSION_AUTO=y
  36. CONFIG_HAVE_KERNEL_GZIP=y
  37. CONFIG_HAVE_KERNEL_LZMA=y
  38. CONFIG_HAVE_KERNEL_XZ=y
  39. CONFIG_HAVE_KERNEL_LZO=y
  40. CONFIG_HAVE_KERNEL_LZ4=y
  41. # CONFIG_KERNEL_GZIP is not set
  42. CONFIG_KERNEL_LZMA=y
  43. # CONFIG_KERNEL_XZ is not set
  44. # CONFIG_KERNEL_LZO is not set
  45. # CONFIG_KERNEL_LZ4 is not set
  46. CONFIG_DEFAULT_HOSTNAME="(none)"
  47. CONFIG_SWAP=y
  48. CONFIG_SYSVIPC=y
  49. CONFIG_SYSVIPC_SYSCTL=y
  50. CONFIG_POSIX_MQUEUE=y
  51. CONFIG_POSIX_MQUEUE_SYSCTL=y
  52. CONFIG_CROSS_MEMORY_ATTACH=y
  53. CONFIG_FHANDLE=y
  54. # CONFIG_USELIB is not set
  55. # CONFIG_AUDIT is not set
  56. CONFIG_HAVE_ARCH_AUDITSYSCALL=y
  57. #
  58. # IRQ subsystem
  59. #
  60. CONFIG_GENERIC_IRQ_PROBE=y
  61. CONFIG_GENERIC_IRQ_SHOW=y
  62. CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
  63. CONFIG_HARDIRQS_SW_RESEND=y
  64. CONFIG_GENERIC_IRQ_CHIP=y
  65. CONFIG_IRQ_DOMAIN=y
  66. CONFIG_IRQ_DOMAIN_HIERARCHY=y
  67. CONFIG_GENERIC_MSI_IRQ=y
  68. CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
  69. CONFIG_HANDLE_DOMAIN_IRQ=y
  70. # CONFIG_IRQ_DOMAIN_DEBUG is not set
  71. CONFIG_IRQ_FORCED_THREADING=y
  72. CONFIG_SPARSE_IRQ=y
  73. CONFIG_ARCH_CLOCKSOURCE_DATA=y
  74. CONFIG_GENERIC_CLOCKEVENTS=y
  75. #
  76. # Timers subsystem
  77. #
  78. CONFIG_TICK_ONESHOT=y
  79. CONFIG_NO_HZ_COMMON=y
  80. # CONFIG_HZ_PERIODIC is not set
  81. CONFIG_NO_HZ_IDLE=y
  82. CONFIG_NO_HZ=y
  83. CONFIG_HIGH_RES_TIMERS=y
  84. #
  85. # CPU/Task time and stats accounting
  86. #
  87. CONFIG_TICK_CPU_ACCOUNTING=y
  88. # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
  89. # CONFIG_IRQ_TIME_ACCOUNTING is not set
  90. CONFIG_BSD_PROCESS_ACCT=y
  91. # CONFIG_BSD_PROCESS_ACCT_V3 is not set
  92. # CONFIG_TASKSTATS is not set
  93. #
  94. # RCU Subsystem
  95. #
  96. CONFIG_PREEMPT_RCU=y
  97. # CONFIG_RCU_EXPERT is not set
  98. CONFIG_SRCU=y
  99. # CONFIG_TASKS_RCU is not set
  100. CONFIG_RCU_STALL_COMMON=y
  101. # CONFIG_TREE_RCU_TRACE is not set
  102. # CONFIG_RCU_EXPEDITE_BOOT is not set
  103. CONFIG_BUILD_BIN2C=y
  104. CONFIG_IKCONFIG=y
  105. CONFIG_IKCONFIG_PROC=y
  106. CONFIG_LOG_BUF_SHIFT=17
  107. CONFIG_NMI_LOG_BUF_SHIFT=13
  108. CONFIG_GENERIC_SCHED_CLOCK=y
  109. CONFIG_CGROUPS=y
  110. CONFIG_PAGE_COUNTER=y
  111. CONFIG_MEMCG=y
  112. CONFIG_MEMCG_SWAP=y
  113. CONFIG_MEMCG_SWAP_ENABLED=y
  114. CONFIG_BLK_CGROUP=y
  115. # CONFIG_DEBUG_BLK_CGROUP is not set
  116. CONFIG_CGROUP_WRITEBACK=y
  117. CONFIG_CGROUP_SCHED=y
  118. CONFIG_FAIR_GROUP_SCHED=y
  119. CONFIG_CFS_BANDWIDTH=y
  120. # CONFIG_RT_GROUP_SCHED is not set
  121. CONFIG_CGROUP_PIDS=y
  122. CONFIG_CGROUP_FREEZER=y
  123. # CONFIG_CPUSETS is not set
  124. CONFIG_CGROUP_DEVICE=y
  125. CONFIG_CGROUP_CPUACCT=y
  126. CONFIG_CGROUP_PERF=y
  127. # CONFIG_CGROUP_DEBUG is not set
  128. CONFIG_CHECKPOINT_RESTORE=y
  129. CONFIG_NAMESPACES=y
  130. CONFIG_UTS_NS=y
  131. CONFIG_IPC_NS=y
  132. # CONFIG_USER_NS is not set
  133. CONFIG_PID_NS=y
  134. CONFIG_NET_NS=y
  135. # CONFIG_SCHED_AUTOGROUP is not set
  136. # CONFIG_SYSFS_DEPRECATED is not set
  137. # CONFIG_RELAY is not set
  138. CONFIG_BLK_DEV_INITRD=y
  139. CONFIG_INITRAMFS_SOURCE=""
  140. CONFIG_RD_GZIP=y
  141. CONFIG_RD_BZIP2=y
  142. CONFIG_RD_LZMA=y
  143. CONFIG_RD_XZ=y
  144. CONFIG_RD_LZO=y
  145. CONFIG_RD_LZ4=y
  146. CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
  147. # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
  148. CONFIG_SYSCTL=y
  149. CONFIG_ANON_INODES=y
  150. CONFIG_HAVE_UID16=y
  151. CONFIG_BPF=y
  152. CONFIG_EXPERT=y
  153. CONFIG_UID16=y
  154. CONFIG_MULTIUSER=y
  155. # CONFIG_SGETMASK_SYSCALL is not set
  156. CONFIG_SYSFS_SYSCALL=y
  157. # CONFIG_SYSCTL_SYSCALL is not set
  158. CONFIG_KALLSYMS=y
  159. CONFIG_KALLSYMS_ALL=y
  160. # CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set
  161. CONFIG_KALLSYMS_BASE_RELATIVE=y
  162. CONFIG_PRINTK=y
  163. CONFIG_PRINTK_NMI=y
  164. CONFIG_BUG=y
  165. CONFIG_ELF_CORE=y
  166. CONFIG_BASE_FULL=y
  167. CONFIG_FUTEX=y
  168. CONFIG_EPOLL=y
  169. CONFIG_SIGNALFD=y
  170. CONFIG_TIMERFD=y
  171. CONFIG_EVENTFD=y
  172. # CONFIG_BPF_SYSCALL is not set
  173. CONFIG_SHMEM=y
  174. CONFIG_AIO=y
  175. CONFIG_ADVISE_SYSCALLS=y
  176. # CONFIG_USERFAULTFD is not set
  177. CONFIG_PCI_QUIRKS=y
  178. CONFIG_MEMBARRIER=y
  179. CONFIG_EMBEDDED=y
  180. CONFIG_HAVE_PERF_EVENTS=y
  181. CONFIG_PERF_USE_VMALLOC=y
  182. #
  183. # Kernel Performance Events And Counters
  184. #
  185. CONFIG_PERF_EVENTS=y
  186. # CONFIG_DEBUG_PERF_USE_VMALLOC is not set
  187. CONFIG_VM_EVENT_COUNTERS=y
  188. # CONFIG_SLUB_DEBUG is not set
  189. CONFIG_COMPAT_BRK=y
  190. # CONFIG_SLAB is not set
  191. CONFIG_SLUB=y
  192. # CONFIG_SLOB is not set
  193. # CONFIG_SLAB_FREELIST_RANDOM is not set
  194. # CONFIG_SYSTEM_DATA_VERIFICATION is not set
  195. # CONFIG_PROFILING is not set
  196. CONFIG_KEXEC_CORE=y
  197. CONFIG_HAVE_OPROFILE=y
  198. # CONFIG_KPROBES is not set
  199. CONFIG_JUMP_LABEL=y
  200. # CONFIG_STATIC_KEYS_SELFTEST is not set
  201. # CONFIG_UPROBES is not set
  202. # CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
  203. CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
  204. CONFIG_ARCH_USE_BUILTIN_BSWAP=y
  205. CONFIG_HAVE_KPROBES=y
  206. CONFIG_HAVE_KRETPROBES=y
  207. CONFIG_HAVE_OPTPROBES=y
  208. CONFIG_HAVE_NMI=y
  209. CONFIG_HAVE_ARCH_TRACEHOOK=y
  210. CONFIG_HAVE_DMA_CONTIGUOUS=y
  211. CONFIG_GENERIC_SMP_IDLE_THREAD=y
  212. CONFIG_GENERIC_IDLE_POLL_SETUP=y
  213. CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
  214. CONFIG_HAVE_CLK=y
  215. CONFIG_HAVE_DMA_API_DEBUG=y
  216. CONFIG_HAVE_HW_BREAKPOINT=y
  217. CONFIG_HAVE_PERF_REGS=y
  218. CONFIG_HAVE_PERF_USER_STACK_DUMP=y
  219. CONFIG_HAVE_ARCH_JUMP_LABEL=y
  220. CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
  221. CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
  222. CONFIG_SECCOMP_FILTER=y
  223. CONFIG_HAVE_GCC_PLUGINS=y
  224. # CONFIG_GCC_PLUGINS is not set
  225. CONFIG_HAVE_CC_STACKPROTECTOR=y
  226. # CONFIG_CC_STACKPROTECTOR is not set
  227. CONFIG_CC_STACKPROTECTOR_NONE=y
  228. # CONFIG_CC_STACKPROTECTOR_REGULAR is not set
  229. # CONFIG_CC_STACKPROTECTOR_STRONG is not set
  230. CONFIG_HAVE_CONTEXT_TRACKING=y
  231. CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
  232. CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
  233. CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
  234. CONFIG_MODULES_USE_ELF_REL=y
  235. CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
  236. CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
  237. CONFIG_HAVE_EXIT_THREAD=y
  238. CONFIG_ARCH_MMAP_RND_BITS_MIN=8
  239. CONFIG_ARCH_MMAP_RND_BITS_MAX=16
  240. CONFIG_ARCH_MMAP_RND_BITS=8
  241. # CONFIG_HAVE_ARCH_HASH is not set
  242. # CONFIG_ISA_BUS_API is not set
  243. CONFIG_CLONE_BACKWARDS=y
  244. CONFIG_OLD_SIGSUSPEND3=y
  245. CONFIG_OLD_SIGACTION=y
  246. # CONFIG_CPU_NO_EFFICIENT_FFS is not set
  247. # CONFIG_HAVE_ARCH_VMAP_STACK is not set
  248. #
  249. # GCOV-based kernel profiling
  250. #
  251. # CONFIG_GCOV_KERNEL is not set
  252. CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
  253. CONFIG_HAVE_GENERIC_DMA_COHERENT=y
  254. CONFIG_RT_MUTEXES=y
  255. CONFIG_BASE_SMALL=0
  256. CONFIG_MODULES=y
  257. CONFIG_MODULE_FORCE_LOAD=y
  258. CONFIG_MODULE_UNLOAD=y
  259. CONFIG_MODULE_FORCE_UNLOAD=y
  260. CONFIG_MODVERSIONS=y
  261. CONFIG_MODULE_SRCVERSION_ALL=y
  262. # CONFIG_MODULE_SIG is not set
  263. # CONFIG_MODULE_COMPRESS is not set
  264. # CONFIG_TRIM_UNUSED_KSYMS is not set
  265. CONFIG_MODULES_TREE_LOOKUP=y
  266. CONFIG_BLOCK=y
  267. CONFIG_LBDAF=y
  268. CONFIG_BLK_DEV_BSG=y
  269. # CONFIG_BLK_DEV_BSGLIB is not set
  270. # CONFIG_BLK_DEV_INTEGRITY is not set
  271. # CONFIG_BLK_DEV_THROTTLING is not set
  272. CONFIG_BLK_CMDLINE_PARSER=y
  273. #
  274. # Partition Types
  275. #
  276. CONFIG_PARTITION_ADVANCED=y
  277. # CONFIG_ACORN_PARTITION is not set
  278. # CONFIG_AIX_PARTITION is not set
  279. # CONFIG_OSF_PARTITION is not set
  280. # CONFIG_AMIGA_PARTITION is not set
  281. # CONFIG_ATARI_PARTITION is not set
  282. # CONFIG_MAC_PARTITION is not set
  283. CONFIG_MSDOS_PARTITION=y
  284. # CONFIG_BSD_DISKLABEL is not set
  285. # CONFIG_MINIX_SUBPARTITION is not set
  286. # CONFIG_SOLARIS_X86_PARTITION is not set
  287. # CONFIG_UNIXWARE_DISKLABEL is not set
  288. # CONFIG_LDM_PARTITION is not set
  289. # CONFIG_SGI_PARTITION is not set
  290. # CONFIG_ULTRIX_PARTITION is not set
  291. # CONFIG_SUN_PARTITION is not set
  292. # CONFIG_KARMA_PARTITION is not set
  293. CONFIG_EFI_PARTITION=y
  294. # CONFIG_SYSV68_PARTITION is not set
  295. CONFIG_CMDLINE_PARTITION=y
  296. CONFIG_BLK_MQ_PCI=y
  297. #
  298. # IO Schedulers
  299. #
  300. CONFIG_IOSCHED_NOOP=y
  301. CONFIG_IOSCHED_DEADLINE=y
  302. CONFIG_IOSCHED_CFQ=y
  303. # CONFIG_CFQ_GROUP_IOSCHED is not set
  304. # CONFIG_DEFAULT_DEADLINE is not set
  305. CONFIG_DEFAULT_CFQ=y
  306. # CONFIG_DEFAULT_NOOP is not set
  307. CONFIG_DEFAULT_IOSCHED="cfq"
  308. CONFIG_UNINLINE_SPIN_UNLOCK=y
  309. CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
  310. CONFIG_FREEZER=y
  311. #
  312. # System Type
  313. #
  314. CONFIG_MMU=y
  315. CONFIG_ARCH_MULTIPLATFORM=y
  316. # CONFIG_ARCH_GEMINI is not set
  317. # CONFIG_ARCH_EBSA110 is not set
  318. # CONFIG_ARCH_EP93XX is not set
  319. # CONFIG_ARCH_FOOTBRIDGE is not set
  320. # CONFIG_ARCH_NETX is not set
  321. # CONFIG_ARCH_IOP13XX is not set
  322. # CONFIG_ARCH_IOP32X is not set
  323. # CONFIG_ARCH_IOP33X is not set
  324. # CONFIG_ARCH_IXP4XX is not set
  325. # CONFIG_ARCH_DOVE is not set
  326. # CONFIG_ARCH_KS8695 is not set
  327. # CONFIG_ARCH_W90X900 is not set
  328. # CONFIG_ARCH_LPC32XX is not set
  329. # CONFIG_ARCH_PXA is not set
  330. # CONFIG_ARCH_RPC is not set
  331. # CONFIG_ARCH_SA1100 is not set
  332. # CONFIG_ARCH_S3C24XX is not set
  333. # CONFIG_ARCH_DAVINCI is not set
  334. # CONFIG_ARCH_OMAP1 is not set
  335. #
  336. # Multiple platform selection
  337. #
  338. #
  339. # CPU Core family selection
  340. #
  341. # CONFIG_ARCH_MULTI_V6 is not set
  342. CONFIG_ARCH_MULTI_V7=y
  343. CONFIG_ARCH_MULTI_V6_V7=y
  344. # CONFIG_ARCH_MULTI_CPU_AUTO is not set
  345. # CONFIG_ARCH_VIRT is not set
  346. # CONFIG_ARCH_MVEBU is not set
  347. # CONFIG_ARCH_ALPINE is not set
  348. # CONFIG_ARCH_ARTPEC is not set
  349. # CONFIG_ARCH_AT91 is not set
  350. # CONFIG_ARCH_BCM is not set
  351. # CONFIG_ARCH_BERLIN is not set
  352. # CONFIG_ARCH_DIGICOLOR is not set
  353. # CONFIG_ARCH_HIGHBANK is not set
  354. # CONFIG_ARCH_HISI is not set
  355. # CONFIG_ARCH_KEYSTONE is not set
  356. # CONFIG_ARCH_MESON is not set
  357. # CONFIG_ARCH_MXC is not set
  358. # CONFIG_ARCH_MEDIATEK is not set
  359. CONFIG_ARCH_OMAP=y
  360. #
  361. # TI OMAP Common Features
  362. #
  363. #
  364. # OMAP Feature Selections
  365. #
  366. CONFIG_OMAP_RESET_CLOCKS=y
  367. CONFIG_OMAP_MUX=y
  368. # CONFIG_OMAP_MUX_DEBUG is not set
  369. CONFIG_OMAP_MUX_WARNINGS=y
  370. CONFIG_OMAP_32K_TIMER=y
  371. CONFIG_OMAP_DM_TIMER=y
  372. CONFIG_OMAP_PM_NOOP=y
  373. CONFIG_MACH_OMAP_GENERIC=y
  374. #
  375. # TI OMAP/AM/DM/DRA Family
  376. #
  377. # CONFIG_ARCH_OMAP3 is not set
  378. # CONFIG_ARCH_OMAP4 is not set
  379. # CONFIG_SOC_OMAP5 is not set
  380. CONFIG_SOC_AM33XX=y
  381. # CONFIG_SOC_AM43XX is not set
  382. # CONFIG_SOC_DRA7XX is not set
  383. CONFIG_ARCH_OMAP2PLUS=y
  384. #
  385. # TI OMAP2/3/4 Specific Features
  386. #
  387. CONFIG_ARCH_OMAP2PLUS_TYPICAL=y
  388. # CONFIG_SOC_HAS_OMAP2_SDRC is not set
  389. #
  390. # OMAP Legacy Platform Data Board Type
  391. #
  392. # CONFIG_ARCH_MMP is not set
  393. # CONFIG_ARCH_QCOM is not set
  394. # CONFIG_ARCH_REALVIEW is not set
  395. # CONFIG_ARCH_ROCKCHIP is not set
  396. # CONFIG_ARCH_SOCFPGA is not set
  397. # CONFIG_PLAT_SPEAR is not set
  398. # CONFIG_ARCH_STI is not set
  399. # CONFIG_ARCH_S5PV210 is not set
  400. # CONFIG_ARCH_EXYNOS is not set
  401. # CONFIG_ARCH_RENESAS is not set
  402. # CONFIG_ARCH_SUNXI is not set
  403. # CONFIG_ARCH_SIRF is not set
  404. # CONFIG_ARCH_TANGO is not set
  405. # CONFIG_ARCH_TEGRA is not set
  406. # CONFIG_ARCH_UNIPHIER is not set
  407. # CONFIG_ARCH_U8500 is not set
  408. # CONFIG_ARCH_VEXPRESS is not set
  409. # CONFIG_ARCH_WM8850 is not set
  410. # CONFIG_ARCH_ZX is not set
  411. # CONFIG_ARCH_ZYNQ is not set
  412. #
  413. # Processor Type
  414. #
  415. CONFIG_CPU_V7=y
  416. CONFIG_CPU_32v6K=y
  417. CONFIG_CPU_32v7=y
  418. CONFIG_CPU_ABRT_EV7=y
  419. CONFIG_CPU_PABRT_V7=y
  420. CONFIG_CPU_CACHE_V7=y
  421. CONFIG_CPU_CACHE_VIPT=y
  422. CONFIG_CPU_COPY_V6=y
  423. CONFIG_CPU_TLB_V7=y
  424. CONFIG_CPU_HAS_ASID=y
  425. CONFIG_CPU_CP15=y
  426. CONFIG_CPU_CP15_MMU=y
  427. #
  428. # Processor Features
  429. #
  430. # CONFIG_ARM_LPAE is not set
  431. # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
  432. CONFIG_ARM_THUMB=y
  433. # CONFIG_ARM_THUMBEE is not set
  434. CONFIG_ARM_VIRT_EXT=y
  435. # CONFIG_SWP_EMULATE is not set
  436. # CONFIG_CPU_ICACHE_DISABLE is not set
  437. # CONFIG_CPU_DCACHE_DISABLE is not set
  438. # CONFIG_CPU_BPREDICT_DISABLE is not set
  439. CONFIG_KUSER_HELPERS=y
  440. # CONFIG_VDSO is not set
  441. CONFIG_OUTER_CACHE=y
  442. CONFIG_OUTER_CACHE_SYNC=y
  443. CONFIG_MIGHT_HAVE_CACHE_L2X0=y
  444. CONFIG_CACHE_L2X0=y
  445. # CONFIG_CACHE_L2X0_PMU is not set
  446. # CONFIG_PL310_ERRATA_588369 is not set
  447. # CONFIG_PL310_ERRATA_727915 is not set
  448. # CONFIG_PL310_ERRATA_753970 is not set
  449. # CONFIG_PL310_ERRATA_769419 is not set
  450. CONFIG_ARM_L1_CACHE_SHIFT_6=y
  451. CONFIG_ARM_L1_CACHE_SHIFT=6
  452. CONFIG_ARM_DMA_MEM_BUFFERABLE=y
  453. CONFIG_ARM_HEAVY_MB=y
  454. CONFIG_DEBUG_RODATA=y
  455. CONFIG_DEBUG_ALIGN_RODATA=y
  456. CONFIG_MULTI_IRQ_HANDLER=y
  457. # CONFIG_ARM_ERRATA_430973 is not set
  458. # CONFIG_ARM_ERRATA_720789 is not set
  459. # CONFIG_ARM_ERRATA_754322 is not set
  460. # CONFIG_ARM_ERRATA_775420 is not set
  461. # CONFIG_ARM_ERRATA_773022 is not set
  462. # CONFIG_ARM_ERRATA_818325_852422 is not set
  463. # CONFIG_ARM_ERRATA_821420 is not set
  464. # CONFIG_ARM_ERRATA_825619 is not set
  465. # CONFIG_ARM_ERRATA_852421 is not set
  466. # CONFIG_ARM_ERRATA_852423 is not set
  467. #
  468. # Bus support
  469. #
  470. CONFIG_PCI=y
  471. CONFIG_PCI_DOMAINS=y
  472. CONFIG_PCI_DOMAINS_GENERIC=y
  473. CONFIG_PCI_SYSCALL=y
  474. CONFIG_PCIEPORTBUS=y
  475. CONFIG_PCIEAER=y
  476. # CONFIG_PCIE_ECRC is not set
  477. # CONFIG_PCIEAER_INJECT is not set
  478. CONFIG_PCIEASPM=y
  479. # CONFIG_PCIEASPM_DEBUG is not set
  480. CONFIG_PCIEASPM_DEFAULT=y
  481. # CONFIG_PCIEASPM_POWERSAVE is not set
  482. # CONFIG_PCIEASPM_PERFORMANCE is not set
  483. CONFIG_PCIE_PME=y
  484. # CONFIG_PCIE_DPC is not set
  485. # CONFIG_PCIE_PTM is not set
  486. CONFIG_PCI_MSI=y
  487. CONFIG_PCI_MSI_IRQ_DOMAIN=y
  488. # CONFIG_PCI_DEBUG is not set
  489. # CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
  490. # CONFIG_PCI_STUB is not set
  491. CONFIG_PCI_ECAM=y
  492. # CONFIG_PCI_IOV is not set
  493. # CONFIG_PCI_PRI is not set
  494. # CONFIG_PCI_PASID is not set
  495. # CONFIG_HOTPLUG_PCI is not set
  496. #
  497. # DesignWare PCI Core Support
  498. #
  499. CONFIG_PCIE_DW=y
  500. CONFIG_PCIE_DW_HOST=y
  501. CONFIG_PCIE_DW_EP=y
  502. CONFIG_PCI_DRA7XX=y
  503. CONFIG_PCI_DRA7XX_HOST=y
  504. CONFIG_PCI_DRA7XX_EP=y
  505. # CONFIG_PCIE_DW_PLAT is not set
  506. # CONFIG_PCI_LAYERSCAPE is not set
  507. #
  508. # PCI host controller drivers
  509. #
  510. CONFIG_PCI_HOST_COMMON=y
  511. CONFIG_PCI_HOST_GENERIC=y
  512. # CONFIG_PCIE_ALTERA is not set
  513. #
  514. # PCI Endpoint
  515. #
  516. CONFIG_PCI_ENDPOINT=y
  517. CONFIG_PCI_EPF_TEST=y
  518. # CONFIG_PCCARD is not set
  519. #
  520. # Kernel Features
  521. #
  522. CONFIG_HAVE_SMP=y
  523. # CONFIG_SMP is not set
  524. # CONFIG_HAVE_ARM_ARCH_TIMER is not set
  525. CONFIG_VMSPLIT_3G=y
  526. # CONFIG_VMSPLIT_3G_OPT is not set
  527. # CONFIG_VMSPLIT_2G is not set
  528. # CONFIG_VMSPLIT_1G is not set
  529. CONFIG_PAGE_OFFSET=0xC0000000
  530. # CONFIG_ARM_PSCI is not set
  531. CONFIG_ARCH_NR_GPIO=0
  532. # CONFIG_PREEMPT_NONE is not set
  533. # CONFIG_PREEMPT_VOLUNTARY is not set
  534. CONFIG_PREEMPT=y
  535. CONFIG_PREEMPT_COUNT=y
  536. CONFIG_HZ_FIXED=0
  537. CONFIG_HZ_100=y
  538. # CONFIG_HZ_200 is not set
  539. # CONFIG_HZ_250 is not set
  540. # CONFIG_HZ_300 is not set
  541. # CONFIG_HZ_500 is not set
  542. # CONFIG_HZ_1000 is not set
  543. CONFIG_HZ=100
  544. CONFIG_SCHED_HRTICK=y
  545. # CONFIG_THUMB2_KERNEL is not set
  546. CONFIG_ARM_PATCH_IDIV=y
  547. CONFIG_AEABI=y
  548. # CONFIG_OABI_COMPAT is not set
  549. CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
  550. # CONFIG_ARCH_SPARSEMEM_DEFAULT is not set
  551. # CONFIG_ARCH_SELECT_MEMORY_MODEL is not set
  552. CONFIG_HAVE_ARCH_PFN_VALID=y
  553. CONFIG_HIGHMEM=y
  554. CONFIG_HIGHPTE=y
  555. CONFIG_CPU_SW_DOMAIN_PAN=y
  556. CONFIG_HW_PERF_EVENTS=y
  557. CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
  558. # CONFIG_ARM_MODULE_PLTS is not set
  559. CONFIG_FLATMEM=y
  560. CONFIG_FLAT_NODE_MEM_MAP=y
  561. CONFIG_HAVE_MEMBLOCK=y
  562. CONFIG_NO_BOOTMEM=y
  563. CONFIG_MEMORY_ISOLATION=y
  564. # CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
  565. CONFIG_SPLIT_PTLOCK_CPUS=4
  566. CONFIG_COMPACTION=y
  567. CONFIG_MIGRATION=y
  568. # CONFIG_PHYS_ADDR_T_64BIT is not set
  569. CONFIG_BOUNCE=y
  570. # CONFIG_KSM is not set
  571. CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
  572. CONFIG_NEED_PER_CPU_KM=y
  573. # CONFIG_CLEANCACHE is not set
  574. # CONFIG_FRONTSWAP is not set
  575. CONFIG_CMA=y
  576. # CONFIG_CMA_DEBUG is not set
  577. # CONFIG_CMA_DEBUGFS is not set
  578. CONFIG_CMA_AREAS=7
  579. # CONFIG_ZPOOL is not set
  580. # CONFIG_ZBUD is not set
  581. # CONFIG_ZSMALLOC is not set
  582. CONFIG_GENERIC_EARLY_IOREMAP=y
  583. # CONFIG_IDLE_PAGE_TRACKING is not set
  584. CONFIG_FRAME_VECTOR=y
  585. CONFIG_FORCE_MAX_ZONEORDER=12
  586. CONFIG_ALIGNMENT_TRAP=y
  587. # CONFIG_UACCESS_WITH_MEMCPY is not set
  588. CONFIG_SECCOMP=y
  589. CONFIG_SWIOTLB=y
  590. CONFIG_IOMMU_HELPER=y
  591. # CONFIG_PARAVIRT is not set
  592. # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
  593. # CONFIG_XEN is not set
  594. #
  595. # Boot options
  596. #
  597. CONFIG_USE_OF=y
  598. CONFIG_ATAGS=y
  599. # CONFIG_DEPRECATED_PARAM_STRUCT is not set
  600. CONFIG_ZBOOT_ROM_TEXT=0x0
  601. CONFIG_ZBOOT_ROM_BSS=0x0
  602. CONFIG_ARM_APPENDED_DTB=y
  603. CONFIG_ARM_ATAG_DTB_COMPAT=y
  604. CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y
  605. # CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set
  606. CONFIG_CMDLINE=""
  607. CONFIG_KEXEC=y
  608. CONFIG_ATAGS_PROC=y
  609. # CONFIG_CRASH_DUMP is not set
  610. CONFIG_AUTO_ZRELADDR=y
  611. CONFIG_EFI_STUB=y
  612. CONFIG_EFI=y
  613. #
  614. # CPU Power Management
  615. #
  616. #
  617. # CPU Frequency scaling
  618. #
  619. CONFIG_CPU_FREQ=y
  620. CONFIG_CPU_FREQ_GOV_ATTR_SET=y
  621. CONFIG_CPU_FREQ_GOV_COMMON=y
  622. CONFIG_CPU_FREQ_STAT=y
  623. CONFIG_CPU_FREQ_STAT_DETAILS=y
  624. # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
  625. # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
  626. # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
  627. CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
  628. # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
  629. CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
  630. CONFIG_CPU_FREQ_GOV_POWERSAVE=y
  631. CONFIG_CPU_FREQ_GOV_USERSPACE=y
  632. CONFIG_CPU_FREQ_GOV_ONDEMAND=y
  633. CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
  634. #
  635. # CPU frequency scaling drivers
  636. #
  637. CONFIG_CPUFREQ_DT=y
  638. CONFIG_CPUFREQ_DT_PLATDEV=y
  639. # CONFIG_ARM_KIRKWOOD_CPUFREQ is not set
  640. # CONFIG_ARM_OMAP2PLUS_CPUFREQ is not set
  641. CONFIG_ARM_TI_CPUFREQ=y
  642. # CONFIG_QORIQ_CPUFREQ is not set
  643. #
  644. # CPU Idle
  645. #
  646. CONFIG_CPU_IDLE=y
  647. CONFIG_CPU_IDLE_GOV_LADDER=y
  648. CONFIG_CPU_IDLE_GOV_MENU=y
  649. CONFIG_DT_IDLE_STATES=y
  650. #
  651. # ARM CPU Idle Drivers
  652. #
  653. CONFIG_ARM_CPUIDLE=y
  654. # CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
  655. #
  656. # Floating point emulation
  657. #
  658. #
  659. # At least one emulation must be selected
  660. #
  661. CONFIG_VFP=y
  662. CONFIG_VFPv3=y
  663. CONFIG_NEON=y
  664. CONFIG_KERNEL_MODE_NEON=y
  665. #
  666. # Userspace binary formats
  667. #
  668. CONFIG_BINFMT_ELF=y
  669. CONFIG_ELFCORE=y
  670. CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
  671. CONFIG_BINFMT_SCRIPT=y
  672. # CONFIG_BINFMT_FLAT is not set
  673. # CONFIG_HAVE_AOUT is not set
  674. # CONFIG_BINFMT_MISC is not set
  675. CONFIG_COREDUMP=y
  676. #
  677. # Power management options
  678. #
  679. CONFIG_SUSPEND=y
  680. CONFIG_SUSPEND_FREEZER=y
  681. # CONFIG_SUSPEND_SKIP_SYNC is not set
  682. # CONFIG_HIBERNATION is not set
  683. CONFIG_PM_SLEEP=y
  684. # CONFIG_PM_AUTOSLEEP is not set
  685. # CONFIG_PM_WAKELOCKS is not set
  686. CONFIG_PM=y
  687. CONFIG_PM_DEBUG=y
  688. # CONFIG_PM_ADVANCED_DEBUG is not set
  689. # CONFIG_PM_TEST_SUSPEND is not set
  690. CONFIG_PM_SLEEP_DEBUG=y
  691. # CONFIG_APM_EMULATION is not set
  692. CONFIG_PM_OPP=y
  693. CONFIG_PM_CLK=y
  694. # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
  695. CONFIG_CPU_PM=y
  696. CONFIG_ARCH_SUSPEND_POSSIBLE=y
  697. CONFIG_ARM_CPU_SUSPEND=y
  698. CONFIG_ARCH_HIBERNATION_POSSIBLE=y
  699. CONFIG_NET=y
  700. CONFIG_NET_INGRESS=y
  701. CONFIG_NET_EGRESS=y
  702. #
  703. # Networking options
  704. #
  705. CONFIG_PACKET=y
  706. # CONFIG_PACKET_DIAG is not set
  707. CONFIG_UNIX=y
  708. # CONFIG_UNIX_DIAG is not set
  709. CONFIG_XFRM=y
  710. CONFIG_XFRM_ALGO=m
  711. CONFIG_XFRM_USER=m
  712. # CONFIG_XFRM_SUB_POLICY is not set
  713. # CONFIG_XFRM_MIGRATE is not set
  714. # CONFIG_XFRM_STATISTICS is not set
  715. CONFIG_XFRM_IPCOMP=m
  716. CONFIG_NET_KEY=m
  717. # CONFIG_NET_KEY_MIGRATE is not set
  718. CONFIG_INET=y
  719. CONFIG_IP_MULTICAST=y
  720. # CONFIG_IP_ADVANCED_ROUTER is not set
  721. CONFIG_IP_ROUTE_CLASSID=y
  722. CONFIG_IP_PNP=y
  723. CONFIG_IP_PNP_DHCP=y
  724. CONFIG_IP_PNP_BOOTP=y
  725. CONFIG_IP_PNP_RARP=y
  726. # CONFIG_NET_IPIP is not set
  727. # CONFIG_NET_IPGRE_DEMUX is not set
  728. CONFIG_NET_IP_TUNNEL=y
  729. # CONFIG_IP_MROUTE is not set
  730. # CONFIG_SYN_COOKIES is not set
  731. # CONFIG_NET_IPVTI is not set
  732. # CONFIG_NET_UDP_TUNNEL is not set
  733. # CONFIG_NET_FOU is not set
  734. # CONFIG_NET_FOU_IP_TUNNELS is not set
  735. CONFIG_INET_AH=m
  736. CONFIG_INET_ESP=m
  737. CONFIG_INET_IPCOMP=m
  738. CONFIG_INET_XFRM_TUNNEL=m
  739. CONFIG_INET_TUNNEL=y
  740. CONFIG_INET_XFRM_MODE_TRANSPORT=m
  741. CONFIG_INET_XFRM_MODE_TUNNEL=m
  742. CONFIG_INET_XFRM_MODE_BEET=m
  743. CONFIG_INET_DIAG=y
  744. CONFIG_INET_TCP_DIAG=y
  745. # CONFIG_INET_UDP_DIAG is not set
  746. # CONFIG_INET_DIAG_DESTROY is not set
  747. # CONFIG_TCP_CONG_ADVANCED is not set
  748. CONFIG_TCP_CONG_CUBIC=y
  749. CONFIG_DEFAULT_TCP_CONG="cubic"
  750. # CONFIG_TCP_MD5SIG is not set
  751. CONFIG_IPV6=y
  752. CONFIG_IPV6_ROUTER_PREF=y
  753. # CONFIG_IPV6_ROUTE_INFO is not set
  754. CONFIG_IPV6_OPTIMISTIC_DAD=y
  755. CONFIG_INET6_AH=m
  756. CONFIG_INET6_ESP=m
  757. CONFIG_INET6_IPCOMP=m
  758. CONFIG_IPV6_MIP6=m
  759. # CONFIG_IPV6_ILA is not set
  760. CONFIG_INET6_XFRM_TUNNEL=m
  761. CONFIG_INET6_TUNNEL=m
  762. CONFIG_INET6_XFRM_MODE_TRANSPORT=y
  763. CONFIG_INET6_XFRM_MODE_TUNNEL=y
  764. CONFIG_INET6_XFRM_MODE_BEET=y
  765. # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
  766. # CONFIG_IPV6_VTI is not set
  767. CONFIG_IPV6_SIT=y
  768. # CONFIG_IPV6_SIT_6RD is not set
  769. CONFIG_IPV6_NDISC_NODETYPE=y
  770. CONFIG_IPV6_TUNNEL=m
  771. # CONFIG_IPV6_FOU is not set
  772. # CONFIG_IPV6_FOU_TUNNEL is not set
  773. CONFIG_IPV6_MULTIPLE_TABLES=y
  774. # CONFIG_IPV6_SUBTREES is not set
  775. # CONFIG_IPV6_MROUTE is not set
  776. # CONFIG_NETWORK_SECMARK is not set
  777. CONFIG_NET_PTP_CLASSIFY=y
  778. # CONFIG_NETWORK_PHY_TIMESTAMPING is not set
  779. CONFIG_NETFILTER=y
  780. # CONFIG_NETFILTER_DEBUG is not set
  781. CONFIG_NETFILTER_ADVANCED=y
  782. CONFIG_BRIDGE_NETFILTER=m
  783. #
  784. # Core Netfilter Configuration
  785. #
  786. CONFIG_NETFILTER_INGRESS=y
  787. # CONFIG_NETFILTER_NETLINK_ACCT is not set
  788. # CONFIG_NETFILTER_NETLINK_QUEUE is not set
  789. # CONFIG_NETFILTER_NETLINK_LOG is not set
  790. CONFIG_NF_CONNTRACK=m
  791. # CONFIG_NF_CONNTRACK_MARK is not set
  792. CONFIG_NF_CONNTRACK_PROCFS=y
  793. # CONFIG_NF_CONNTRACK_EVENTS is not set
  794. # CONFIG_NF_CONNTRACK_TIMEOUT is not set
  795. # CONFIG_NF_CONNTRACK_TIMESTAMP is not set
  796. # CONFIG_NF_CT_PROTO_DCCP is not set
  797. CONFIG_NF_CT_PROTO_SCTP=m
  798. # CONFIG_NF_CT_PROTO_UDPLITE is not set
  799. # CONFIG_NF_CONNTRACK_AMANDA is not set
  800. # CONFIG_NF_CONNTRACK_FTP is not set
  801. # CONFIG_NF_CONNTRACK_H323 is not set
  802. # CONFIG_NF_CONNTRACK_IRC is not set
  803. # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
  804. # CONFIG_NF_CONNTRACK_SNMP is not set
  805. # CONFIG_NF_CONNTRACK_PPTP is not set
  806. # CONFIG_NF_CONNTRACK_SANE is not set
  807. # CONFIG_NF_CONNTRACK_SIP is not set
  808. # CONFIG_NF_CONNTRACK_TFTP is not set
  809. # CONFIG_NF_CT_NETLINK is not set
  810. # CONFIG_NF_CT_NETLINK_TIMEOUT is not set
  811. CONFIG_NF_NAT=m
  812. CONFIG_NF_NAT_NEEDED=y
  813. CONFIG_NF_NAT_PROTO_SCTP=m
  814. # CONFIG_NF_NAT_AMANDA is not set
  815. # CONFIG_NF_NAT_FTP is not set
  816. # CONFIG_NF_NAT_IRC is not set
  817. # CONFIG_NF_NAT_SIP is not set
  818. # CONFIG_NF_NAT_TFTP is not set
  819. # CONFIG_NF_NAT_REDIRECT is not set
  820. # CONFIG_NF_TABLES is not set
  821. CONFIG_NETFILTER_XTABLES=m
  822. #
  823. # Xtables combined modules
  824. #
  825. CONFIG_NETFILTER_XT_MARK=m
  826. # CONFIG_NETFILTER_XT_CONNMARK is not set
  827. #
  828. # Xtables targets
  829. #
  830. CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
  831. # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
  832. # CONFIG_NETFILTER_XT_TARGET_HMARK is not set
  833. CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
  834. # CONFIG_NETFILTER_XT_TARGET_LED is not set
  835. # CONFIG_NETFILTER_XT_TARGET_LOG is not set
  836. CONFIG_NETFILTER_XT_TARGET_MARK=m
  837. CONFIG_NETFILTER_XT_NAT=m
  838. # CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
  839. # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
  840. # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
  841. # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
  842. # CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
  843. # CONFIG_NETFILTER_XT_TARGET_TEE is not set
  844. # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
  845. #
  846. # Xtables matches
  847. #
  848. # CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set
  849. # CONFIG_NETFILTER_XT_MATCH_BPF is not set
  850. # CONFIG_NETFILTER_XT_MATCH_CGROUP is not set
  851. # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
  852. CONFIG_NETFILTER_XT_MATCH_COMMENT=m
  853. # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
  854. # CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
  855. # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
  856. # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
  857. # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set
  858. CONFIG_NETFILTER_XT_MATCH_CPU=m
  859. # CONFIG_NETFILTER_XT_MATCH_DCCP is not set
  860. # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
  861. # CONFIG_NETFILTER_XT_MATCH_DSCP is not set
  862. # CONFIG_NETFILTER_XT_MATCH_ECN is not set
  863. # CONFIG_NETFILTER_XT_MATCH_ESP is not set
  864. # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
  865. # CONFIG_NETFILTER_XT_MATCH_HELPER is not set
  866. # CONFIG_NETFILTER_XT_MATCH_HL is not set
  867. # CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
  868. CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
  869. # CONFIG_NETFILTER_XT_MATCH_L2TP is not set
  870. CONFIG_NETFILTER_XT_MATCH_LENGTH=m
  871. CONFIG_NETFILTER_XT_MATCH_LIMIT=m
  872. CONFIG_NETFILTER_XT_MATCH_MAC=m
  873. CONFIG_NETFILTER_XT_MATCH_MARK=m
  874. CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
  875. # CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
  876. # CONFIG_NETFILTER_XT_MATCH_OWNER is not set
  877. CONFIG_NETFILTER_XT_MATCH_POLICY=m
  878. # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
  879. CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
  880. # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
  881. # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
  882. # CONFIG_NETFILTER_XT_MATCH_REALM is not set
  883. # CONFIG_NETFILTER_XT_MATCH_RECENT is not set
  884. CONFIG_NETFILTER_XT_MATCH_SCTP=m
  885. # CONFIG_NETFILTER_XT_MATCH_SOCKET is not set
  886. # CONFIG_NETFILTER_XT_MATCH_STATE is not set
  887. # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
  888. # CONFIG_NETFILTER_XT_MATCH_STRING is not set
  889. # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
  890. # CONFIG_NETFILTER_XT_MATCH_TIME is not set
  891. # CONFIG_NETFILTER_XT_MATCH_U32 is not set
  892. # CONFIG_IP_SET is not set
  893. # CONFIG_IP_VS is not set
  894. #
  895. # IP: Netfilter Configuration
  896. #
  897. CONFIG_NF_DEFRAG_IPV4=m
  898. CONFIG_NF_CONNTRACK_IPV4=m
  899. # CONFIG_NF_DUP_IPV4 is not set
  900. # CONFIG_NF_LOG_ARP is not set
  901. # CONFIG_NF_LOG_IPV4 is not set
  902. # CONFIG_NF_REJECT_IPV4 is not set
  903. CONFIG_NF_NAT_IPV4=m
  904. CONFIG_NF_NAT_MASQUERADE_IPV4=m
  905. # CONFIG_NF_NAT_PPTP is not set
  906. # CONFIG_NF_NAT_H323 is not set
  907. CONFIG_IP_NF_IPTABLES=m
  908. # CONFIG_IP_NF_MATCH_AH is not set
  909. # CONFIG_IP_NF_MATCH_ECN is not set
  910. # CONFIG_IP_NF_MATCH_TTL is not set
  911. CONFIG_IP_NF_FILTER=m
  912. # CONFIG_IP_NF_TARGET_REJECT is not set
  913. # CONFIG_IP_NF_TARGET_SYNPROXY is not set
  914. CONFIG_IP_NF_NAT=m
  915. CONFIG_IP_NF_TARGET_MASQUERADE=m
  916. # CONFIG_IP_NF_TARGET_NETMAP is not set
  917. # CONFIG_IP_NF_TARGET_REDIRECT is not set
  918. # CONFIG_IP_NF_MANGLE is not set
  919. # CONFIG_IP_NF_RAW is not set
  920. CONFIG_IP_NF_ARPTABLES=m
  921. CONFIG_IP_NF_ARPFILTER=m
  922. CONFIG_IP_NF_ARP_MANGLE=m
  923. #
  924. # IPv6: Netfilter Configuration
  925. #
  926. # CONFIG_NF_DEFRAG_IPV6 is not set
  927. # CONFIG_NF_CONNTRACK_IPV6 is not set
  928. # CONFIG_NF_DUP_IPV6 is not set
  929. # CONFIG_NF_REJECT_IPV6 is not set
  930. # CONFIG_NF_LOG_IPV6 is not set
  931. # CONFIG_IP6_NF_IPTABLES is not set
  932. CONFIG_BRIDGE_NF_EBTABLES=m
  933. CONFIG_BRIDGE_EBT_BROUTE=m
  934. CONFIG_BRIDGE_EBT_T_FILTER=m
  935. CONFIG_BRIDGE_EBT_T_NAT=m
  936. CONFIG_BRIDGE_EBT_802_3=m
  937. CONFIG_BRIDGE_EBT_AMONG=m
  938. CONFIG_BRIDGE_EBT_ARP=m
  939. CONFIG_BRIDGE_EBT_IP=m
  940. CONFIG_BRIDGE_EBT_IP6=m
  941. CONFIG_BRIDGE_EBT_LIMIT=m
  942. CONFIG_BRIDGE_EBT_MARK=m
  943. CONFIG_BRIDGE_EBT_PKTTYPE=m
  944. CONFIG_BRIDGE_EBT_STP=m
  945. CONFIG_BRIDGE_EBT_VLAN=m
  946. CONFIG_BRIDGE_EBT_ARPREPLY=m
  947. CONFIG_BRIDGE_EBT_DNAT=m
  948. CONFIG_BRIDGE_EBT_MARK_T=m
  949. CONFIG_BRIDGE_EBT_REDIRECT=m
  950. CONFIG_BRIDGE_EBT_SNAT=m
  951. CONFIG_BRIDGE_EBT_LOG=m
  952. CONFIG_BRIDGE_EBT_NFLOG=m
  953. # CONFIG_IP_DCCP is not set
  954. CONFIG_IP_SCTP=m
  955. # CONFIG_SCTP_DBG_OBJCNT is not set
  956. CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
  957. # CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
  958. # CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
  959. CONFIG_SCTP_COOKIE_HMAC_MD5=y
  960. # CONFIG_SCTP_COOKIE_HMAC_SHA1 is not set
  961. CONFIG_INET_SCTP_DIAG=m
  962. # CONFIG_RDS is not set
  963. # CONFIG_TIPC is not set
  964. # CONFIG_ATM is not set
  965. # CONFIG_L2TP is not set
  966. CONFIG_STP=m
  967. CONFIG_BRIDGE=m
  968. CONFIG_BRIDGE_IGMP_SNOOPING=y
  969. # CONFIG_BRIDGE_VLAN_FILTERING is not set
  970. CONFIG_HAVE_NET_DSA=y
  971. CONFIG_NET_DSA=m
  972. CONFIG_NET_DSA_HWMON=y
  973. CONFIG_VLAN_8021Q=m
  974. # CONFIG_VLAN_8021Q_GVRP is not set
  975. # CONFIG_VLAN_8021Q_MVRP is not set
  976. # CONFIG_DECNET is not set
  977. CONFIG_LLC=m
  978. # CONFIG_LLC2 is not set
  979. # CONFIG_IPX is not set
  980. # CONFIG_ATALK is not set
  981. # CONFIG_X25 is not set
  982. # CONFIG_LAPB is not set
  983. # CONFIG_PHONET is not set
  984. # CONFIG_6LOWPAN is not set
  985. # CONFIG_IEEE802154 is not set
  986. CONFIG_NET_SCHED=y
  987. #
  988. # Queueing/Scheduling
  989. #
  990. CONFIG_NET_SCH_CBQ=m
  991. CONFIG_NET_SCH_HTB=m
  992. CONFIG_NET_SCH_HFSC=m
  993. CONFIG_NET_SCH_PRIO=m
  994. CONFIG_NET_SCH_MULTIQ=m
  995. CONFIG_NET_SCH_RED=m
  996. CONFIG_NET_SCH_SFB=m
  997. CONFIG_NET_SCH_SFQ=m
  998. CONFIG_NET_SCH_TEQL=m
  999. CONFIG_NET_SCH_TBF=m
  1000. CONFIG_NET_SCH_GRED=m
  1001. CONFIG_NET_SCH_DSMARK=m
  1002. CONFIG_NET_SCH_NETEM=m
  1003. CONFIG_NET_SCH_DRR=m
  1004. CONFIG_NET_SCH_MQPRIO=m
  1005. CONFIG_NET_SCH_CHOKE=m
  1006. CONFIG_NET_SCH_QFQ=m
  1007. CONFIG_NET_SCH_CODEL=m
  1008. CONFIG_NET_SCH_FQ_CODEL=m
  1009. # CONFIG_NET_SCH_FQ is not set
  1010. # CONFIG_NET_SCH_HHF is not set
  1011. # CONFIG_NET_SCH_PIE is not set
  1012. CONFIG_NET_SCH_INGRESS=m
  1013. # CONFIG_NET_SCH_PLUG is not set
  1014. #
  1015. # Classification
  1016. #
  1017. CONFIG_NET_CLS=y
  1018. CONFIG_NET_CLS_BASIC=m
  1019. CONFIG_NET_CLS_TCINDEX=m
  1020. CONFIG_NET_CLS_ROUTE4=m
  1021. CONFIG_NET_CLS_FW=m
  1022. CONFIG_NET_CLS_U32=m
  1023. # CONFIG_CLS_U32_PERF is not set
  1024. CONFIG_CLS_U32_MARK=y
  1025. CONFIG_NET_CLS_RSVP=m
  1026. CONFIG_NET_CLS_RSVP6=m
  1027. CONFIG_NET_CLS_FLOW=m
  1028. # CONFIG_NET_CLS_CGROUP is not set
  1029. # CONFIG_NET_CLS_BPF is not set
  1030. # CONFIG_NET_CLS_FLOWER is not set
  1031. # CONFIG_NET_CLS_MATCHALL is not set
  1032. CONFIG_NET_EMATCH=y
  1033. CONFIG_NET_EMATCH_STACK=32
  1034. CONFIG_NET_EMATCH_CMP=m
  1035. CONFIG_NET_EMATCH_NBYTE=m
  1036. CONFIG_NET_EMATCH_U32=m
  1037. CONFIG_NET_EMATCH_META=m
  1038. CONFIG_NET_EMATCH_TEXT=m
  1039. # CONFIG_NET_EMATCH_CANID is not set
  1040. CONFIG_NET_CLS_ACT=y
  1041. CONFIG_NET_ACT_POLICE=m
  1042. CONFIG_NET_ACT_GACT=m
  1043. CONFIG_GACT_PROB=y
  1044. CONFIG_NET_ACT_MIRRED=m
  1045. CONFIG_NET_ACT_IPT=m
  1046. CONFIG_NET_ACT_NAT=m
  1047. CONFIG_NET_ACT_PEDIT=m
  1048. CONFIG_NET_ACT_SIMP=m
  1049. CONFIG_NET_ACT_SKBEDIT=m
  1050. CONFIG_NET_ACT_CSUM=m
  1051. # CONFIG_NET_ACT_VLAN is not set
  1052. # CONFIG_NET_ACT_BPF is not set
  1053. # CONFIG_NET_ACT_SKBMOD is not set
  1054. # CONFIG_NET_ACT_IFE is not set
  1055. # CONFIG_NET_ACT_TUNNEL_KEY is not set
  1056. CONFIG_NET_CLS_IND=y
  1057. CONFIG_NET_SCH_FIFO=y
  1058. # CONFIG_DCB is not set
  1059. CONFIG_DNS_RESOLVER=y
  1060. # CONFIG_BATMAN_ADV is not set
  1061. # CONFIG_OPENVSWITCH is not set
  1062. # CONFIG_VSOCKETS is not set
  1063. # CONFIG_NETLINK_DIAG is not set
  1064. # CONFIG_MPLS is not set
  1065. CONFIG_HSR_PRP=y
  1066. CONFIG_NET_SWITCHDEV=y
  1067. # CONFIG_NET_L3_MASTER_DEV is not set
  1068. # CONFIG_NET_NCSI is not set
  1069. # CONFIG_SOCK_CGROUP_DATA is not set
  1070. # CONFIG_CGROUP_NET_PRIO is not set
  1071. # CONFIG_CGROUP_NET_CLASSID is not set
  1072. CONFIG_NET_RX_BUSY_POLL=y
  1073. CONFIG_BQL=y
  1074. # CONFIG_BPF_JIT is not set
  1075. #
  1076. # Network testing
  1077. #
  1078. # CONFIG_NET_PKTGEN is not set
  1079. # CONFIG_HAMRADIO is not set
  1080. CONFIG_CAN=m
  1081. CONFIG_CAN_RAW=m
  1082. CONFIG_CAN_BCM=m
  1083. CONFIG_CAN_GW=m
  1084. #
  1085. # CAN Device Drivers
  1086. #
  1087. # CONFIG_CAN_VCAN is not set
  1088. # CONFIG_CAN_SLCAN is not set
  1089. CONFIG_CAN_DEV=m
  1090. CONFIG_CAN_CALC_BITTIMING=y
  1091. # CONFIG_CAN_LEDS is not set
  1092. # CONFIG_CAN_FLEXCAN is not set
  1093. # CONFIG_CAN_GRCAN is not set
  1094. # CONFIG_CAN_TI_HECC is not set
  1095. CONFIG_CAN_C_CAN=m
  1096. CONFIG_CAN_C_CAN_PLATFORM=m
  1097. # CONFIG_CAN_C_CAN_PCI is not set
  1098. # CONFIG_CAN_CC770 is not set
  1099. # CONFIG_CAN_IFI_CANFD is not set
  1100. CONFIG_CAN_M_CAN=m
  1101. CONFIG_CAN_RCAR=m
  1102. # CONFIG_CAN_RCAR_CANFD is not set
  1103. # CONFIG_CAN_SJA1000 is not set
  1104. # CONFIG_CAN_SOFTING is not set
  1105. #
  1106. # CAN SPI interfaces
  1107. #
  1108. CONFIG_CAN_MCP251X=m
  1109. #
  1110. # CAN USB interfaces
  1111. #
  1112. # CONFIG_CAN_EMS_USB is not set
  1113. # CONFIG_CAN_ESD_USB2 is not set
  1114. # CONFIG_CAN_GS_USB is not set
  1115. # CONFIG_CAN_KVASER_USB is not set
  1116. # CONFIG_CAN_PEAK_USB is not set
  1117. # CONFIG_CAN_8DEV_USB is not set
  1118. # CONFIG_CAN_DEBUG_DEVICES is not set
  1119. # CONFIG_IRDA is not set
  1120. CONFIG_BT=m
  1121. CONFIG_BT_BREDR=y
  1122. CONFIG_BT_RFCOMM=m
  1123. # CONFIG_BT_RFCOMM_TTY is not set
  1124. # CONFIG_BT_BNEP is not set
  1125. # CONFIG_BT_HIDP is not set
  1126. CONFIG_BT_HS=y
  1127. CONFIG_BT_LE=y
  1128. # CONFIG_BT_LEDS is not set
  1129. # CONFIG_BT_SELFTEST is not set
  1130. CONFIG_BT_DEBUGFS=y
  1131. #
  1132. # Bluetooth device drivers
  1133. #
  1134. # CONFIG_BT_HCIBTUSB is not set
  1135. # CONFIG_BT_HCIBTSDIO is not set
  1136. CONFIG_BT_HCIUART=m
  1137. CONFIG_BT_HCIUART_H4=y
  1138. # CONFIG_BT_HCIUART_BCSP is not set
  1139. # CONFIG_BT_HCIUART_ATH3K is not set
  1140. CONFIG_BT_HCIUART_LL=y
  1141. CONFIG_BT_HCIUART_3WIRE=y
  1142. # CONFIG_BT_HCIUART_INTEL is not set
  1143. # CONFIG_BT_HCIUART_BCM is not set
  1144. # CONFIG_BT_HCIUART_QCA is not set
  1145. # CONFIG_BT_HCIUART_AG6XX is not set
  1146. # CONFIG_BT_HCIUART_MRVL is not set
  1147. # CONFIG_BT_HCIBCM203X is not set
  1148. # CONFIG_BT_HCIBPA10X is not set
  1149. # CONFIG_BT_HCIBFUSB is not set
  1150. # CONFIG_BT_HCIVHCI is not set
  1151. CONFIG_BT_MRVL=m
  1152. CONFIG_BT_MRVL_SDIO=m
  1153. # CONFIG_AF_RXRPC is not set
  1154. # CONFIG_AF_KCM is not set
  1155. # CONFIG_STREAM_PARSER is not set
  1156. CONFIG_FIB_RULES=y
  1157. CONFIG_WIRELESS=y
  1158. CONFIG_CFG80211=m
  1159. # CONFIG_NL80211_TESTMODE is not set
  1160. # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
  1161. # CONFIG_CFG80211_CERTIFICATION_ONUS is not set
  1162. CONFIG_CFG80211_DEFAULT_PS=y
  1163. # CONFIG_CFG80211_DEBUGFS is not set
  1164. # CONFIG_CFG80211_INTERNAL_REGDB is not set
  1165. CONFIG_CFG80211_CRDA_SUPPORT=y
  1166. # CONFIG_CFG80211_WEXT is not set
  1167. # CONFIG_LIB80211 is not set
  1168. CONFIG_MAC80211=m
  1169. CONFIG_MAC80211_HAS_RC=y
  1170. CONFIG_MAC80211_RC_MINSTREL=y
  1171. CONFIG_MAC80211_RC_MINSTREL_HT=y
  1172. # CONFIG_MAC80211_RC_MINSTREL_VHT is not set
  1173. CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
  1174. CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
  1175. # CONFIG_MAC80211_MESH is not set
  1176. CONFIG_MAC80211_LEDS=y
  1177. # CONFIG_MAC80211_DEBUGFS is not set
  1178. # CONFIG_MAC80211_MESSAGE_TRACING is not set
  1179. # CONFIG_MAC80211_DEBUG_MENU is not set
  1180. CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
  1181. # CONFIG_WIMAX is not set
  1182. CONFIG_RFKILL=y
  1183. CONFIG_RFKILL_LEDS=y
  1184. CONFIG_RFKILL_INPUT=y
  1185. # CONFIG_RFKILL_REGULATOR is not set
  1186. CONFIG_RFKILL_GPIO=y
  1187. # CONFIG_NET_9P is not set
  1188. # CONFIG_CAIF is not set
  1189. # CONFIG_CEPH_LIB is not set
  1190. # CONFIG_NFC is not set
  1191. # CONFIG_LWTUNNEL is not set
  1192. CONFIG_DST_CACHE=y
  1193. # CONFIG_NET_DEVLINK is not set
  1194. CONFIG_MAY_USE_DEVLINK=y
  1195. CONFIG_HAVE_CBPF_JIT=y
  1196. #
  1197. # Device Drivers
  1198. #
  1199. #
  1200. # Generic Driver Options
  1201. #
  1202. CONFIG_UEVENT_HELPER=y
  1203. CONFIG_UEVENT_HELPER_PATH=""
  1204. CONFIG_DEVTMPFS=y
  1205. CONFIG_DEVTMPFS_MOUNT=y
  1206. CONFIG_STANDALONE=y
  1207. CONFIG_PREVENT_FIRMWARE_BUILD=y
  1208. CONFIG_FW_LOADER=y
  1209. CONFIG_FIRMWARE_IN_KERNEL=y
  1210. CONFIG_EXTRA_FIRMWARE=""
  1211. # CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
  1212. CONFIG_WANT_DEV_COREDUMP=y
  1213. CONFIG_ALLOW_DEV_COREDUMP=y
  1214. CONFIG_DEV_COREDUMP=y
  1215. # CONFIG_DEBUG_DRIVER is not set
  1216. # CONFIG_DEBUG_DEVRES is not set
  1217. # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
  1218. # CONFIG_SYS_HYPERVISOR is not set
  1219. # CONFIG_GENERIC_CPU_DEVICES is not set
  1220. CONFIG_SOC_BUS=y
  1221. CONFIG_REGMAP=y
  1222. CONFIG_REGMAP_I2C=y
  1223. CONFIG_REGMAP_SPI=y
  1224. CONFIG_REGMAP_MMIO=y
  1225. CONFIG_REGMAP_IRQ=y
  1226. CONFIG_DMA_SHARED_BUFFER=y
  1227. # CONFIG_FENCE_TRACE is not set
  1228. CONFIG_DMA_CMA=y
  1229. #
  1230. # Default contiguous memory area size:
  1231. #
  1232. CONFIG_CMA_SIZE_MBYTES=48
  1233. CONFIG_CMA_SIZE_SEL_MBYTES=y
  1234. # CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
  1235. # CONFIG_CMA_SIZE_SEL_MIN is not set
  1236. # CONFIG_CMA_SIZE_SEL_MAX is not set
  1237. CONFIG_CMA_ALIGNMENT=8
  1238. #
  1239. # Bus devices
  1240. #
  1241. # CONFIG_ARM_CCI400_PMU is not set
  1242. # CONFIG_ARM_CCI5xx_PMU is not set
  1243. # CONFIG_ARM_CCN is not set
  1244. # CONFIG_BRCMSTB_GISB_ARB is not set
  1245. # CONFIG_OMAP_INTERCONNECT is not set
  1246. CONFIG_OMAP_OCP2SCP=y
  1247. # CONFIG_VEXPRESS_CONFIG is not set
  1248. # CONFIG_CONNECTOR is not set
  1249. CONFIG_MTD=y
  1250. CONFIG_MTD_TESTS=m
  1251. # CONFIG_MTD_REDBOOT_PARTS is not set
  1252. CONFIG_MTD_CMDLINE_PARTS=y
  1253. # CONFIG_MTD_AFS_PARTS is not set
  1254. CONFIG_MTD_OF_PARTS=y
  1255. # CONFIG_MTD_AR7_PARTS is not set
  1256. #
  1257. # User Modules And Translation Layers
  1258. #
  1259. CONFIG_MTD_BLKDEVS=y
  1260. CONFIG_MTD_BLOCK=y
  1261. # CONFIG_FTL is not set
  1262. # CONFIG_NFTL is not set
  1263. # CONFIG_INFTL is not set
  1264. # CONFIG_RFD_FTL is not set
  1265. # CONFIG_SSFDC is not set
  1266. # CONFIG_SM_FTL is not set
  1267. # CONFIG_MTD_OOPS is not set
  1268. # CONFIG_MTD_SWAP is not set
  1269. # CONFIG_MTD_PARTITIONED_MASTER is not set
  1270. #
  1271. # RAM/ROM/Flash chip drivers
  1272. #
  1273. # CONFIG_MTD_CFI is not set
  1274. # CONFIG_MTD_JEDECPROBE is not set
  1275. CONFIG_MTD_MAP_BANK_WIDTH_1=y
  1276. CONFIG_MTD_MAP_BANK_WIDTH_2=y
  1277. CONFIG_MTD_MAP_BANK_WIDTH_4=y
  1278. # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
  1279. # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
  1280. # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
  1281. CONFIG_MTD_CFI_I1=y
  1282. CONFIG_MTD_CFI_I2=y
  1283. # CONFIG_MTD_CFI_I4 is not set
  1284. # CONFIG_MTD_CFI_I8 is not set
  1285. # CONFIG_MTD_RAM is not set
  1286. # CONFIG_MTD_ROM is not set
  1287. # CONFIG_MTD_ABSENT is not set
  1288. #
  1289. # Mapping drivers for chip access
  1290. #
  1291. # CONFIG_MTD_COMPLEX_MAPPINGS is not set
  1292. # CONFIG_MTD_INTEL_VR_NOR is not set
  1293. # CONFIG_MTD_PLATRAM is not set
  1294. #
  1295. # Self-contained MTD device drivers
  1296. #
  1297. # CONFIG_MTD_PMC551 is not set
  1298. # CONFIG_MTD_DATAFLASH is not set
  1299. CONFIG_MTD_M25P80=y
  1300. # CONFIG_MTD_SST25L is not set
  1301. # CONFIG_MTD_SLRAM is not set
  1302. # CONFIG_MTD_PHRAM is not set
  1303. # CONFIG_MTD_MTDRAM is not set
  1304. # CONFIG_MTD_BLOCK2MTD is not set
  1305. #
  1306. # Disk-On-Chip Device Drivers
  1307. #
  1308. # CONFIG_MTD_DOCG3 is not set
  1309. CONFIG_MTD_NAND_ECC=y
  1310. # CONFIG_MTD_NAND_ECC_SMC is not set
  1311. CONFIG_MTD_NAND=y
  1312. # CONFIG_MTD_NAND_ECC_BCH is not set
  1313. # CONFIG_MTD_SM_COMMON is not set
  1314. CONFIG_MTD_NAND_DENALI=y
  1315. # CONFIG_MTD_NAND_DENALI_PCI is not set
  1316. CONFIG_MTD_NAND_DENALI_DT=y
  1317. # CONFIG_MTD_NAND_GPIO is not set
  1318. CONFIG_MTD_NAND_OMAP2=y
  1319. CONFIG_MTD_NAND_OMAP_BCH=y
  1320. CONFIG_MTD_NAND_OMAP_BCH_BUILD=y
  1321. CONFIG_MTD_NAND_IDS=y
  1322. # CONFIG_MTD_NAND_RICOH is not set
  1323. # CONFIG_MTD_NAND_DISKONCHIP is not set
  1324. # CONFIG_MTD_NAND_DOCG4 is not set
  1325. # CONFIG_MTD_NAND_CAFE is not set
  1326. # CONFIG_MTD_NAND_NANDSIM is not set
  1327. CONFIG_MTD_NAND_BRCMNAND=y
  1328. # CONFIG_MTD_NAND_PLATFORM is not set
  1329. # CONFIG_MTD_NAND_HISI504 is not set
  1330. # CONFIG_MTD_NAND_MTK is not set
  1331. # CONFIG_MTD_ONENAND is not set
  1332. #
  1333. # LPDDR & LPDDR2 PCM memory drivers
  1334. #
  1335. # CONFIG_MTD_LPDDR is not set
  1336. # CONFIG_MTD_LPDDR2_NVM is not set
  1337. CONFIG_MTD_SPI_NOR=y
  1338. # CONFIG_MTD_MT81xx_NOR is not set
  1339. # CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set
  1340. CONFIG_SPI_CADENCE_QUADSPI=y
  1341. CONFIG_MTD_UBI=y
  1342. CONFIG_MTD_UBI_WL_THRESHOLD=4096
  1343. CONFIG_MTD_UBI_BEB_LIMIT=20
  1344. # CONFIG_MTD_UBI_FASTMAP is not set
  1345. # CONFIG_MTD_UBI_GLUEBI is not set
  1346. # CONFIG_MTD_UBI_BLOCK is not set
  1347. CONFIG_DTC=y
  1348. CONFIG_OF=y
  1349. # CONFIG_OF_UNITTEST is not set
  1350. CONFIG_OF_FLATTREE=y
  1351. CONFIG_OF_EARLY_FLATTREE=y
  1352. CONFIG_OF_DYNAMIC=y
  1353. CONFIG_OF_ADDRESS=y
  1354. CONFIG_OF_ADDRESS_PCI=y
  1355. CONFIG_OF_IRQ=y
  1356. CONFIG_OF_NET=y
  1357. CONFIG_OF_MDIO=y
  1358. CONFIG_OF_PCI=y
  1359. CONFIG_OF_PCI_IRQ=y
  1360. CONFIG_OF_RESERVED_MEM=y
  1361. CONFIG_OF_RESOLVE=y
  1362. CONFIG_OF_OVERLAY=y
  1363. CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
  1364. # CONFIG_PARPORT is not set
  1365. CONFIG_BLK_DEV=y
  1366. # CONFIG_BLK_DEV_NULL_BLK is not set
  1367. # CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
  1368. # CONFIG_BLK_CPQ_CISS_DA is not set
  1369. # CONFIG_BLK_DEV_DAC960 is not set
  1370. # CONFIG_BLK_DEV_UMEM is not set
  1371. # CONFIG_BLK_DEV_COW_COMMON is not set
  1372. CONFIG_BLK_DEV_LOOP=y
  1373. CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
  1374. # CONFIG_BLK_DEV_CRYPTOLOOP is not set
  1375. # CONFIG_BLK_DEV_DRBD is not set
  1376. # CONFIG_BLK_DEV_NBD is not set
  1377. # CONFIG_BLK_DEV_SX8 is not set
  1378. CONFIG_BLK_DEV_RAM=y
  1379. CONFIG_BLK_DEV_RAM_COUNT=16
  1380. CONFIG_BLK_DEV_RAM_SIZE=65536
  1381. # CONFIG_CDROM_PKTCDVD is not set
  1382. # CONFIG_ATA_OVER_ETH is not set
  1383. # CONFIG_MG_DISK is not set
  1384. CONFIG_VIRTIO_BLK=y
  1385. # CONFIG_BLK_DEV_RBD is not set
  1386. # CONFIG_BLK_DEV_RSXX is not set
  1387. # CONFIG_BLK_DEV_NVME is not set
  1388. # CONFIG_NVME_TARGET is not set
  1389. #
  1390. # Misc devices
  1391. #
  1392. # CONFIG_SENSORS_LIS3LV02D is not set
  1393. CONFIG_AD525X_DPOT=y
  1394. CONFIG_AD525X_DPOT_I2C=y
  1395. # CONFIG_AD525X_DPOT_SPI is not set
  1396. # CONFIG_DUMMY_IRQ is not set
  1397. # CONFIG_PHANTOM is not set
  1398. # CONFIG_SGI_IOC4 is not set
  1399. # CONFIG_TIFM_CORE is not set
  1400. CONFIG_ICS932S401=y
  1401. # CONFIG_ENCLOSURE_SERVICES is not set
  1402. # CONFIG_HP_ILO is not set
  1403. CONFIG_APDS9802ALS=y
  1404. CONFIG_ISL29003=y
  1405. # CONFIG_ISL29020 is not set
  1406. # CONFIG_SENSORS_TSL2550 is not set
  1407. # CONFIG_SENSORS_BH1770 is not set
  1408. # CONFIG_SENSORS_APDS990X is not set
  1409. # CONFIG_HMC6352 is not set
  1410. # CONFIG_DS1682 is not set
  1411. # CONFIG_TI_DAC7512 is not set
  1412. # CONFIG_USB_SWITCH_FSA9480 is not set
  1413. # CONFIG_LATTICE_ECP3_CONFIG is not set
  1414. CONFIG_SRAM=y
  1415. CONFIG_PCI_ENDPOINT_TEST=m
  1416. # CONFIG_C2PORT is not set
  1417. #
  1418. # EEPROM support
  1419. #
  1420. CONFIG_EEPROM_AT24=y
  1421. # CONFIG_EEPROM_AT25 is not set
  1422. # CONFIG_EEPROM_LEGACY is not set
  1423. # CONFIG_EEPROM_MAX6875 is not set
  1424. CONFIG_EEPROM_93CX6=y
  1425. # CONFIG_EEPROM_93XX46 is not set
  1426. # CONFIG_CB710_CORE is not set
  1427. #
  1428. # Texas Instruments shared transport line discipline
  1429. #
  1430. # CONFIG_TI_ST is not set
  1431. # CONFIG_SENSORS_LIS3_SPI is not set
  1432. # CONFIG_SENSORS_LIS3_I2C is not set
  1433. #
  1434. # Altera FPGA firmware download module
  1435. #
  1436. # CONFIG_ALTERA_STAPL is not set
  1437. #
  1438. # Intel MIC Bus Driver
  1439. #
  1440. #
  1441. # SCIF Bus Driver
  1442. #
  1443. #
  1444. # VOP Bus Driver
  1445. #
  1446. #
  1447. # Intel MIC Host Driver
  1448. #
  1449. #
  1450. # Intel MIC Card Driver
  1451. #
  1452. #
  1453. # SCIF Driver
  1454. #
  1455. #
  1456. # Intel MIC Coprocessor State Management (COSM) Drivers
  1457. #
  1458. #
  1459. # VOP Driver
  1460. #
  1461. # CONFIG_ECHO is not set
  1462. # CONFIG_CXL_BASE is not set
  1463. # CONFIG_CXL_AFU_DRIVER_OPS is not set
  1464. CONFIG_HAVE_IDE=y
  1465. # CONFIG_IDE is not set
  1466. #
  1467. # SCSI device support
  1468. #
  1469. CONFIG_SCSI_MOD=m
  1470. # CONFIG_RAID_ATTRS is not set
  1471. CONFIG_SCSI=m
  1472. CONFIG_SCSI_DMA=y
  1473. # CONFIG_SCSI_NETLINK is not set
  1474. # CONFIG_SCSI_MQ_DEFAULT is not set
  1475. CONFIG_SCSI_PROC_FS=y
  1476. #
  1477. # SCSI support type (disk, tape, CD-ROM)
  1478. #
  1479. CONFIG_BLK_DEV_SD=m
  1480. # CONFIG_CHR_DEV_ST is not set
  1481. # CONFIG_CHR_DEV_OSST is not set
  1482. CONFIG_BLK_DEV_SR=m
  1483. # CONFIG_BLK_DEV_SR_VENDOR is not set
  1484. # CONFIG_CHR_DEV_SG is not set
  1485. # CONFIG_CHR_DEV_SCH is not set
  1486. # CONFIG_SCSI_CONSTANTS is not set
  1487. # CONFIG_SCSI_LOGGING is not set
  1488. # CONFIG_SCSI_SCAN_ASYNC is not set
  1489. #
  1490. # SCSI Transports
  1491. #
  1492. # CONFIG_SCSI_SPI_ATTRS is not set
  1493. # CONFIG_SCSI_FC_ATTRS is not set
  1494. # CONFIG_SCSI_ISCSI_ATTRS is not set
  1495. # CONFIG_SCSI_SAS_ATTRS is not set
  1496. # CONFIG_SCSI_SAS_LIBSAS is not set
  1497. # CONFIG_SCSI_SRP_ATTRS is not set
  1498. CONFIG_SCSI_LOWLEVEL=y
  1499. # CONFIG_ISCSI_TCP is not set
  1500. # CONFIG_ISCSI_BOOT_SYSFS is not set
  1501. # CONFIG_SCSI_CXGB3_ISCSI is not set
  1502. # CONFIG_SCSI_CXGB4_ISCSI is not set
  1503. # CONFIG_SCSI_BNX2_ISCSI is not set
  1504. # CONFIG_BE2ISCSI is not set
  1505. # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
  1506. # CONFIG_SCSI_HPSA is not set
  1507. # CONFIG_SCSI_3W_9XXX is not set
  1508. # CONFIG_SCSI_3W_SAS is not set
  1509. # CONFIG_SCSI_ACARD is not set
  1510. # CONFIG_SCSI_AACRAID is not set
  1511. # CONFIG_SCSI_AIC7XXX is not set
  1512. # CONFIG_SCSI_AIC79XX is not set
  1513. # CONFIG_SCSI_AIC94XX is not set
  1514. # CONFIG_SCSI_MVSAS is not set
  1515. # CONFIG_SCSI_MVUMI is not set
  1516. # CONFIG_SCSI_ADVANSYS is not set
  1517. # CONFIG_SCSI_ARCMSR is not set
  1518. # CONFIG_SCSI_ESAS2R is not set
  1519. # CONFIG_MEGARAID_NEWGEN is not set
  1520. # CONFIG_MEGARAID_LEGACY is not set
  1521. # CONFIG_MEGARAID_SAS is not set
  1522. # CONFIG_SCSI_MPT3SAS is not set
  1523. # CONFIG_SCSI_MPT2SAS is not set
  1524. # CONFIG_SCSI_SMARTPQI is not set
  1525. # CONFIG_SCSI_UFSHCD is not set
  1526. # CONFIG_SCSI_HPTIOP is not set
  1527. # CONFIG_SCSI_SNIC is not set
  1528. # CONFIG_SCSI_DMX3191D is not set
  1529. # CONFIG_SCSI_FUTURE_DOMAIN is not set
  1530. # CONFIG_SCSI_IPS is not set
  1531. # CONFIG_SCSI_INITIO is not set
  1532. # CONFIG_SCSI_INIA100 is not set
  1533. # CONFIG_SCSI_STEX is not set
  1534. # CONFIG_SCSI_SYM53C8XX_2 is not set
  1535. # CONFIG_SCSI_IPR is not set
  1536. # CONFIG_SCSI_QLOGIC_1280 is not set
  1537. # CONFIG_SCSI_QLA_ISCSI is not set
  1538. # CONFIG_SCSI_DC395x is not set
  1539. # CONFIG_SCSI_AM53C974 is not set
  1540. # CONFIG_SCSI_NSP32 is not set
  1541. # CONFIG_SCSI_WD719X is not set
  1542. # CONFIG_SCSI_DEBUG is not set
  1543. # CONFIG_SCSI_PMCRAID is not set
  1544. # CONFIG_SCSI_PM8001 is not set
  1545. # CONFIG_SCSI_VIRTIO is not set
  1546. # CONFIG_SCSI_DH is not set
  1547. # CONFIG_SCSI_OSD_INITIATOR is not set
  1548. CONFIG_ATA=m
  1549. # CONFIG_ATA_NONSTANDARD is not set
  1550. CONFIG_ATA_VERBOSE_ERROR=y
  1551. CONFIG_SATA_PMP=y
  1552. #
  1553. # Controllers with non-SFF native interface
  1554. #
  1555. CONFIG_SATA_AHCI=m
  1556. CONFIG_SATA_AHCI_PLATFORM=m
  1557. # CONFIG_AHCI_CEVA is not set
  1558. # CONFIG_AHCI_QORIQ is not set
  1559. # CONFIG_SATA_INIC162X is not set
  1560. # CONFIG_SATA_ACARD_AHCI is not set
  1561. # CONFIG_SATA_SIL24 is not set
  1562. CONFIG_ATA_SFF=y
  1563. #
  1564. # SFF controllers with custom DMA interface
  1565. #
  1566. # CONFIG_PDC_ADMA is not set
  1567. # CONFIG_SATA_QSTOR is not set
  1568. # CONFIG_SATA_SX4 is not set
  1569. CONFIG_ATA_BMDMA=y
  1570. #
  1571. # SATA SFF controllers with BMDMA
  1572. #
  1573. # CONFIG_ATA_PIIX is not set
  1574. # CONFIG_SATA_DWC is not set
  1575. CONFIG_SATA_MV=m
  1576. # CONFIG_SATA_NV is not set
  1577. # CONFIG_SATA_PROMISE is not set
  1578. # CONFIG_SATA_SIL is not set
  1579. # CONFIG_SATA_SIS is not set
  1580. # CONFIG_SATA_SVW is not set
  1581. # CONFIG_SATA_ULI is not set
  1582. # CONFIG_SATA_VIA is not set
  1583. # CONFIG_SATA_VITESSE is not set
  1584. #
  1585. # PATA SFF controllers with BMDMA
  1586. #
  1587. # CONFIG_PATA_ALI is not set
  1588. # CONFIG_PATA_AMD is not set
  1589. # CONFIG_PATA_ARTOP is not set
  1590. # CONFIG_PATA_ATIIXP is not set
  1591. # CONFIG_PATA_ATP867X is not set
  1592. # CONFIG_PATA_CMD64X is not set
  1593. # CONFIG_PATA_CYPRESS is not set
  1594. # CONFIG_PATA_EFAR is not set
  1595. # CONFIG_PATA_HPT366 is not set
  1596. # CONFIG_PATA_HPT37X is not set
  1597. # CONFIG_PATA_HPT3X2N is not set
  1598. # CONFIG_PATA_HPT3X3 is not set
  1599. # CONFIG_PATA_IT8213 is not set
  1600. # CONFIG_PATA_IT821X is not set
  1601. # CONFIG_PATA_JMICRON is not set
  1602. # CONFIG_PATA_MARVELL is not set
  1603. # CONFIG_PATA_NETCELL is not set
  1604. # CONFIG_PATA_NINJA32 is not set
  1605. # CONFIG_PATA_NS87415 is not set
  1606. # CONFIG_PATA_OLDPIIX is not set
  1607. # CONFIG_PATA_OPTIDMA is not set
  1608. # CONFIG_PATA_PDC2027X is not set
  1609. # CONFIG_PATA_PDC_OLD is not set
  1610. # CONFIG_PATA_RADISYS is not set
  1611. # CONFIG_PATA_RDC is not set
  1612. # CONFIG_PATA_SCH is not set
  1613. # CONFIG_PATA_SERVERWORKS is not set
  1614. # CONFIG_PATA_SIL680 is not set
  1615. # CONFIG_PATA_SIS is not set
  1616. # CONFIG_PATA_TOSHIBA is not set
  1617. # CONFIG_PATA_TRIFLEX is not set
  1618. # CONFIG_PATA_VIA is not set
  1619. # CONFIG_PATA_WINBOND is not set
  1620. #
  1621. # PIO-only SFF controllers
  1622. #
  1623. # CONFIG_PATA_CMD640_PCI is not set
  1624. # CONFIG_PATA_MPIIX is not set
  1625. # CONFIG_PATA_NS87410 is not set
  1626. # CONFIG_PATA_OPTI is not set
  1627. # CONFIG_PATA_PLATFORM is not set
  1628. # CONFIG_PATA_RZ1000 is not set
  1629. #
  1630. # Generic fallback / legacy drivers
  1631. #
  1632. # CONFIG_ATA_GENERIC is not set
  1633. # CONFIG_PATA_LEGACY is not set
  1634. # CONFIG_MD is not set
  1635. # CONFIG_TARGET_CORE is not set
  1636. # CONFIG_FUSION is not set
  1637. #
  1638. # IEEE 1394 (FireWire) support
  1639. #
  1640. # CONFIG_FIREWIRE is not set
  1641. # CONFIG_FIREWIRE_NOSY is not set
  1642. CONFIG_NETDEVICES=y
  1643. CONFIG_MII=y
  1644. CONFIG_NET_CORE=y
  1645. # CONFIG_BONDING is not set
  1646. # CONFIG_DUMMY is not set
  1647. # CONFIG_EQUALIZER is not set
  1648. # CONFIG_NET_FC is not set
  1649. # CONFIG_IFB is not set
  1650. # CONFIG_NET_TEAM is not set
  1651. # CONFIG_MACVLAN is not set
  1652. # CONFIG_VXLAN is not set
  1653. # CONFIG_MACSEC is not set
  1654. # CONFIG_NETCONSOLE is not set
  1655. # CONFIG_NETPOLL is not set
  1656. # CONFIG_NET_POLL_CONTROLLER is not set
  1657. # CONFIG_TUN is not set
  1658. # CONFIG_TUN_VNET_CROSS_LE is not set
  1659. # CONFIG_VETH is not set
  1660. CONFIG_VIRTIO_NET=y
  1661. # CONFIG_NLMON is not set
  1662. # CONFIG_ARCNET is not set
  1663. #
  1664. # CAIF transport drivers
  1665. #
  1666. #
  1667. # Distributed Switch Architecture drivers
  1668. #
  1669. # CONFIG_NET_DSA_MV88E6060 is not set
  1670. # CONFIG_NET_DSA_BCM_SF2 is not set
  1671. # CONFIG_B53 is not set
  1672. # CONFIG_NET_DSA_MV88E6XXX is not set
  1673. # CONFIG_NET_DSA_QCA8K is not set
  1674. CONFIG_ETHERNET=y
  1675. # CONFIG_NET_VENDOR_3COM is not set
  1676. # CONFIG_NET_VENDOR_ADAPTEC is not set
  1677. # CONFIG_NET_VENDOR_AGERE is not set
  1678. # CONFIG_NET_VENDOR_ALTEON is not set
  1679. # CONFIG_ALTERA_TSE is not set
  1680. # CONFIG_NET_VENDOR_AMAZON is not set
  1681. # CONFIG_NET_VENDOR_AMD is not set
  1682. # CONFIG_NET_VENDOR_ARC is not set
  1683. # CONFIG_NET_VENDOR_ATHEROS is not set
  1684. # CONFIG_NET_VENDOR_AURORA is not set
  1685. # CONFIG_NET_CADENCE is not set
  1686. CONFIG_NET_VENDOR_BROADCOM=y
  1687. # CONFIG_B44 is not set
  1688. # CONFIG_BCMGENET is not set
  1689. # CONFIG_BNX2 is not set
  1690. # CONFIG_CNIC is not set
  1691. CONFIG_TIGON3=m
  1692. # CONFIG_BNX2X is not set
  1693. # CONFIG_SYSTEMPORT is not set
  1694. # CONFIG_BNXT is not set
  1695. # CONFIG_NET_VENDOR_BROCADE is not set
  1696. # CONFIG_NET_VENDOR_CAVIUM is not set
  1697. # CONFIG_NET_VENDOR_CHELSIO is not set
  1698. # CONFIG_NET_VENDOR_CIRRUS is not set
  1699. # CONFIG_NET_VENDOR_CISCO is not set
  1700. # CONFIG_DM9000 is not set
  1701. # CONFIG_DNET is not set
  1702. # CONFIG_NET_VENDOR_DEC is not set
  1703. # CONFIG_NET_VENDOR_DLINK is not set
  1704. # CONFIG_NET_VENDOR_EMULEX is not set
  1705. # CONFIG_NET_VENDOR_EZCHIP is not set
  1706. # CONFIG_NET_VENDOR_EXAR is not set
  1707. # CONFIG_NET_VENDOR_FARADAY is not set
  1708. # CONFIG_NET_VENDOR_HISILICON is not set
  1709. # CONFIG_NET_VENDOR_HP is not set
  1710. CONFIG_NET_VENDOR_INTEL=y
  1711. # CONFIG_E100 is not set
  1712. CONFIG_E1000=m
  1713. CONFIG_E1000E=m
  1714. # CONFIG_IGB is not set
  1715. # CONFIG_IGBVF is not set
  1716. # CONFIG_IXGB is not set
  1717. # CONFIG_IXGBE is not set
  1718. # CONFIG_IXGBEVF is not set
  1719. # CONFIG_I40E is not set
  1720. # CONFIG_I40EVF is not set
  1721. # CONFIG_FM10K is not set
  1722. # CONFIG_NET_VENDOR_I825XX is not set
  1723. # CONFIG_JME is not set
  1724. CONFIG_NET_VENDOR_MARVELL=y
  1725. # CONFIG_MVMDIO is not set
  1726. # CONFIG_MVNETA_BM is not set
  1727. CONFIG_SKGE=m
  1728. # CONFIG_SKGE_DEBUG is not set
  1729. # CONFIG_SKGE_GENESIS is not set
  1730. # CONFIG_SKY2 is not set
  1731. # CONFIG_NET_VENDOR_MELLANOX is not set
  1732. CONFIG_NET_VENDOR_MICREL=y
  1733. # CONFIG_KS8842 is not set
  1734. CONFIG_KS8851=y
  1735. # CONFIG_KS8851_MLL is not set
  1736. # CONFIG_KSZ884X_PCI is not set
  1737. # CONFIG_NET_VENDOR_MICROCHIP is not set
  1738. # CONFIG_NET_VENDOR_MYRI is not set
  1739. # CONFIG_FEALNX is not set
  1740. # CONFIG_NET_VENDOR_NATSEMI is not set
  1741. # CONFIG_NET_VENDOR_NETRONOME is not set
  1742. # CONFIG_NET_VENDOR_NVIDIA is not set
  1743. # CONFIG_NET_VENDOR_OKI is not set
  1744. # CONFIG_ETHOC is not set
  1745. CONFIG_NET_PACKET_ENGINE=y
  1746. # CONFIG_HAMACHI is not set
  1747. # CONFIG_YELLOWFIN is not set
  1748. # CONFIG_NET_VENDOR_QLOGIC is not set
  1749. # CONFIG_NET_VENDOR_QUALCOMM is not set
  1750. # CONFIG_NET_VENDOR_REALTEK is not set
  1751. # CONFIG_NET_VENDOR_RENESAS is not set
  1752. # CONFIG_NET_VENDOR_RDC is not set
  1753. # CONFIG_NET_VENDOR_ROCKER is not set
  1754. # CONFIG_NET_VENDOR_SAMSUNG is not set
  1755. # CONFIG_NET_VENDOR_SEEQ is not set
  1756. # CONFIG_NET_VENDOR_SILAN is not set
  1757. # CONFIG_NET_VENDOR_SIS is not set
  1758. # CONFIG_SFC is not set
  1759. CONFIG_NET_VENDOR_SMSC=y
  1760. # CONFIG_SMC91X is not set
  1761. # CONFIG_EPIC100 is not set
  1762. # CONFIG_SMC911X is not set
  1763. CONFIG_SMSC911X=y
  1764. # CONFIG_SMSC911X_ARCH_HOOKS is not set
  1765. # CONFIG_SMSC9420 is not set
  1766. # CONFIG_NET_VENDOR_STMICRO is not set
  1767. # CONFIG_NET_VENDOR_SUN is not set
  1768. # CONFIG_NET_VENDOR_SYNOPSYS is not set
  1769. # CONFIG_NET_VENDOR_TEHUTI is not set
  1770. CONFIG_NET_VENDOR_TI=y
  1771. CONFIG_TI_DAVINCI_MDIO=y
  1772. CONFIG_TI_DAVINCI_CPDMA=y
  1773. CONFIG_TI_CPSW_PHY_SEL=y
  1774. CONFIG_TI_CPSW_ALE=y
  1775. CONFIG_TI_CPSW=y
  1776. CONFIG_TI_CPTS=y
  1777. # CONFIG_TLAN is not set
  1778. CONFIG_TI_PRUETH=m
  1779. # CONFIG_TI_PTP_BC is not set
  1780. # CONFIG_NET_VENDOR_VIA is not set
  1781. # CONFIG_NET_VENDOR_WIZNET is not set
  1782. # CONFIG_FDDI is not set
  1783. # CONFIG_HIPPI is not set
  1784. CONFIG_PHYLIB=y
  1785. CONFIG_SWPHY=y
  1786. #
  1787. # MDIO bus device drivers
  1788. #
  1789. # CONFIG_MDIO_BCM_UNIMAC is not set
  1790. # CONFIG_MDIO_BITBANG is not set
  1791. # CONFIG_MDIO_BUS_MUX_GPIO is not set
  1792. # CONFIG_MDIO_BUS_MUX_MMIOREG is not set
  1793. # CONFIG_MDIO_HISI_FEMAC is not set
  1794. #
  1795. # MII PHY device drivers
  1796. #
  1797. # CONFIG_AMD_PHY is not set
  1798. # CONFIG_AQUANTIA_PHY is not set
  1799. CONFIG_AT803X_PHY=y
  1800. # CONFIG_BCM7XXX_PHY is not set
  1801. # CONFIG_BCM87XX_PHY is not set
  1802. # CONFIG_BROADCOM_PHY is not set
  1803. # CONFIG_CICADA_PHY is not set
  1804. # CONFIG_DAVICOM_PHY is not set
  1805. CONFIG_DP83848_PHY=y
  1806. CONFIG_DP83867_PHY=y
  1807. CONFIG_FIXED_PHY=y
  1808. # CONFIG_ICPLUS_PHY is not set
  1809. # CONFIG_INTEL_XWAY_PHY is not set
  1810. # CONFIG_LSI_ET1011C_PHY is not set
  1811. # CONFIG_LXT_PHY is not set
  1812. CONFIG_MARVELL_PHY=y
  1813. CONFIG_MICREL_PHY=y
  1814. # CONFIG_MICROCHIP_PHY is not set
  1815. # CONFIG_MICROSEMI_PHY is not set
  1816. # CONFIG_NATIONAL_PHY is not set
  1817. # CONFIG_QSEMI_PHY is not set
  1818. CONFIG_REALTEK_PHY=y
  1819. CONFIG_SMSC_PHY=y
  1820. # CONFIG_STE10XP is not set
  1821. # CONFIG_TERANETICS_PHY is not set
  1822. # CONFIG_VITESSE_PHY is not set
  1823. # CONFIG_XILINX_GMII2RGMII is not set
  1824. # CONFIG_MICREL_KS8995MA is not set
  1825. # CONFIG_PPP is not set
  1826. # CONFIG_SLIP is not set
  1827. #
  1828. # Host-side USB support is needed for USB Network Adapter support
  1829. #
  1830. CONFIG_USB_NET_DRIVERS=m
  1831. # CONFIG_USB_CATC is not set
  1832. # CONFIG_USB_KAWETH is not set
  1833. CONFIG_USB_PEGASUS=m
  1834. # CONFIG_USB_RTL8150 is not set
  1835. CONFIG_USB_RTL8152=m
  1836. # CONFIG_USB_LAN78XX is not set
  1837. CONFIG_USB_USBNET=m
  1838. CONFIG_USB_NET_AX8817X=m
  1839. CONFIG_USB_NET_AX88179_178A=m
  1840. CONFIG_USB_NET_CDCETHER=m
  1841. # CONFIG_USB_NET_CDC_EEM is not set
  1842. CONFIG_USB_NET_CDC_NCM=m
  1843. # CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
  1844. # CONFIG_USB_NET_CDC_MBIM is not set
  1845. # CONFIG_USB_NET_DM9601 is not set
  1846. # CONFIG_USB_NET_SR9700 is not set
  1847. # CONFIG_USB_NET_SR9800 is not set
  1848. CONFIG_USB_NET_SMSC75XX=m
  1849. CONFIG_USB_NET_SMSC95XX=m
  1850. # CONFIG_USB_NET_GL620A is not set
  1851. CONFIG_USB_NET_NET1080=m
  1852. # CONFIG_USB_NET_PLUSB is not set
  1853. # CONFIG_USB_NET_MCS7830 is not set
  1854. # CONFIG_USB_NET_RNDIS_HOST is not set
  1855. CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
  1856. CONFIG_USB_NET_CDC_SUBSET=m
  1857. # CONFIG_USB_ALI_M5632 is not set
  1858. # CONFIG_USB_AN2720 is not set
  1859. CONFIG_USB_BELKIN=y
  1860. CONFIG_USB_ARMLINUX=y
  1861. # CONFIG_USB_EPSON2888 is not set
  1862. # CONFIG_USB_KC2190 is not set
  1863. CONFIG_USB_NET_ZAURUS=m
  1864. # CONFIG_USB_NET_CX82310_ETH is not set
  1865. # CONFIG_USB_NET_KALMIA is not set
  1866. # CONFIG_USB_NET_QMI_WWAN is not set
  1867. # CONFIG_USB_HSO is not set
  1868. # CONFIG_USB_NET_INT51X1 is not set
  1869. # CONFIG_USB_IPHETH is not set
  1870. # CONFIG_USB_SIERRA_NET is not set
  1871. # CONFIG_USB_VL600 is not set
  1872. # CONFIG_USB_NET_CH9200 is not set
  1873. CONFIG_WLAN=y
  1874. CONFIG_WLAN_VENDOR_ADMTEK=y
  1875. # CONFIG_ADM8211 is not set
  1876. CONFIG_WLAN_VENDOR_ATH=y
  1877. # CONFIG_ATH_DEBUG is not set
  1878. # CONFIG_ATH5K is not set
  1879. # CONFIG_ATH5K_PCI is not set
  1880. # CONFIG_ATH9K is not set
  1881. # CONFIG_ATH9K_HTC is not set
  1882. # CONFIG_CARL9170 is not set
  1883. # CONFIG_ATH6KL is not set
  1884. # CONFIG_AR5523 is not set
  1885. # CONFIG_WIL6210 is not set
  1886. # CONFIG_ATH10K is not set
  1887. # CONFIG_WCN36XX is not set
  1888. CONFIG_WLAN_VENDOR_ATMEL=y
  1889. # CONFIG_ATMEL is not set
  1890. # CONFIG_AT76C50X_USB is not set
  1891. CONFIG_WLAN_VENDOR_BROADCOM=y
  1892. # CONFIG_B43 is not set
  1893. # CONFIG_B43LEGACY is not set
  1894. CONFIG_BRCMUTIL=m
  1895. # CONFIG_BRCMSMAC is not set
  1896. CONFIG_BRCMFMAC=m
  1897. CONFIG_BRCMFMAC_PROTO_BCDC=y
  1898. CONFIG_BRCMFMAC_SDIO=y
  1899. # CONFIG_BRCMFMAC_USB is not set
  1900. # CONFIG_BRCMFMAC_PCIE is not set
  1901. # CONFIG_BRCM_TRACING is not set
  1902. # CONFIG_BRCMDBG is not set
  1903. CONFIG_WLAN_VENDOR_CISCO=y
  1904. CONFIG_WLAN_VENDOR_INTEL=y
  1905. # CONFIG_IPW2100 is not set
  1906. # CONFIG_IPW2200 is not set
  1907. # CONFIG_IWL4965 is not set
  1908. # CONFIG_IWL3945 is not set
  1909. CONFIG_IWLWIFI=m
  1910. CONFIG_IWLWIFI_LEDS=y
  1911. CONFIG_IWLDVM=m
  1912. CONFIG_IWLMVM=m
  1913. CONFIG_IWLWIFI_OPMODE_MODULAR=y
  1914. # CONFIG_IWLWIFI_BCAST_FILTERING is not set
  1915. # CONFIG_IWLWIFI_PCIE_RTPM is not set
  1916. #
  1917. # Debugging Options
  1918. #
  1919. # CONFIG_IWLWIFI_DEBUG is not set
  1920. CONFIG_WLAN_VENDOR_INTERSIL=y
  1921. # CONFIG_HOSTAP is not set
  1922. # CONFIG_HERMES is not set
  1923. # CONFIG_P54_COMMON is not set
  1924. # CONFIG_PRISM54 is not set
  1925. CONFIG_WLAN_VENDOR_MARVELL=y
  1926. # CONFIG_LIBERTAS is not set
  1927. # CONFIG_LIBERTAS_THINFIRM is not set
  1928. CONFIG_MWIFIEX=m
  1929. CONFIG_MWIFIEX_SDIO=m
  1930. # CONFIG_MWIFIEX_PCIE is not set
  1931. # CONFIG_MWIFIEX_USB is not set
  1932. # CONFIG_MWL8K is not set
  1933. CONFIG_WLAN_VENDOR_MEDIATEK=y
  1934. # CONFIG_MT7601U is not set
  1935. CONFIG_WLAN_VENDOR_RALINK=y
  1936. CONFIG_RT2X00=m
  1937. # CONFIG_RT2400PCI is not set
  1938. # CONFIG_RT2500PCI is not set
  1939. # CONFIG_RT61PCI is not set
  1940. # CONFIG_RT2800PCI is not set
  1941. # CONFIG_RT2500USB is not set
  1942. # CONFIG_RT73USB is not set
  1943. CONFIG_RT2800USB=m
  1944. CONFIG_RT2800USB_RT33XX=y
  1945. CONFIG_RT2800USB_RT35XX=y
  1946. # CONFIG_RT2800USB_RT3573 is not set
  1947. # CONFIG_RT2800USB_RT53XX is not set
  1948. # CONFIG_RT2800USB_RT55XX is not set
  1949. # CONFIG_RT2800USB_UNKNOWN is not set
  1950. CONFIG_RT2800_LIB=m
  1951. CONFIG_RT2X00_LIB_USB=m
  1952. CONFIG_RT2X00_LIB=m
  1953. CONFIG_RT2X00_LIB_FIRMWARE=y
  1954. CONFIG_RT2X00_LIB_CRYPTO=y
  1955. CONFIG_RT2X00_LIB_LEDS=y
  1956. # CONFIG_RT2X00_DEBUG is not set
  1957. CONFIG_WLAN_VENDOR_REALTEK=y
  1958. # CONFIG_RTL8180 is not set
  1959. # CONFIG_RTL8187 is not set
  1960. CONFIG_RTL_CARDS=m
  1961. # CONFIG_RTL8192CE is not set
  1962. # CONFIG_RTL8192SE is not set
  1963. # CONFIG_RTL8192DE is not set
  1964. # CONFIG_RTL8723AE is not set
  1965. # CONFIG_RTL8723BE is not set
  1966. # CONFIG_RTL8188EE is not set
  1967. # CONFIG_RTL8192EE is not set
  1968. # CONFIG_RTL8821AE is not set
  1969. # CONFIG_RTL8192CU is not set
  1970. # CONFIG_RTL8XXXU is not set
  1971. CONFIG_WLAN_VENDOR_RSI=y
  1972. # CONFIG_RSI_91X is not set
  1973. CONFIG_WLAN_VENDOR_ST=y
  1974. # CONFIG_CW1200 is not set
  1975. CONFIG_WLAN_VENDOR_TI=y
  1976. # CONFIG_WL1251 is not set
  1977. # CONFIG_WL12XX is not set
  1978. CONFIG_WL18XX=m
  1979. CONFIG_WLCORE=m
  1980. CONFIG_WLCORE_SPI=m
  1981. CONFIG_WLCORE_SDIO=m
  1982. CONFIG_WILINK_PLATFORM_DATA=y
  1983. CONFIG_WLAN_VENDOR_ZYDAS=y
  1984. # CONFIG_USB_ZD1201 is not set
  1985. # CONFIG_ZD1211RW is not set
  1986. # CONFIG_MAC80211_HWSIM is not set
  1987. # CONFIG_USB_NET_RNDIS_WLAN is not set
  1988. #
  1989. # Enable WiMAX (Networking options) to see the WiMAX drivers
  1990. #
  1991. # CONFIG_WAN is not set
  1992. # CONFIG_VMXNET3 is not set
  1993. # CONFIG_ISDN is not set
  1994. # CONFIG_NVM is not set
  1995. #
  1996. # Input device support
  1997. #
  1998. CONFIG_INPUT=y
  1999. CONFIG_INPUT_LEDS=y
  2000. # CONFIG_INPUT_FF_MEMLESS is not set
  2001. CONFIG_INPUT_POLLDEV=m
  2002. # CONFIG_INPUT_SPARSEKMAP is not set
  2003. CONFIG_INPUT_MATRIXKMAP=m
  2004. #
  2005. # Userland interfaces
  2006. #
  2007. CONFIG_INPUT_MOUSEDEV=y
  2008. CONFIG_INPUT_MOUSEDEV_PSAUX=y
  2009. CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
  2010. CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
  2011. CONFIG_INPUT_JOYDEV=y
  2012. CONFIG_INPUT_EVDEV=y
  2013. # CONFIG_INPUT_EVBUG is not set
  2014. #
  2015. # Input Device Drivers
  2016. #
  2017. CONFIG_INPUT_KEYBOARD=y
  2018. # CONFIG_KEYBOARD_ADC is not set
  2019. # CONFIG_KEYBOARD_ADP5588 is not set
  2020. # CONFIG_KEYBOARD_ADP5589 is not set
  2021. CONFIG_KEYBOARD_ATKBD=y
  2022. CONFIG_KEYBOARD_QT1070=m
  2023. # CONFIG_KEYBOARD_QT2160 is not set
  2024. # CONFIG_KEYBOARD_LKKBD is not set
  2025. CONFIG_KEYBOARD_GPIO=y
  2026. # CONFIG_KEYBOARD_GPIO_POLLED is not set
  2027. # CONFIG_KEYBOARD_TCA6416 is not set
  2028. # CONFIG_KEYBOARD_TCA8418 is not set
  2029. CONFIG_KEYBOARD_MATRIX=m
  2030. # CONFIG_KEYBOARD_LM8323 is not set
  2031. # CONFIG_KEYBOARD_LM8333 is not set
  2032. # CONFIG_KEYBOARD_MAX7359 is not set
  2033. # CONFIG_KEYBOARD_MCS is not set
  2034. # CONFIG_KEYBOARD_MPR121 is not set
  2035. # CONFIG_KEYBOARD_NEWTON is not set
  2036. # CONFIG_KEYBOARD_OPENCORES is not set
  2037. CONFIG_KEYBOARD_SAMSUNG=m
  2038. # CONFIG_KEYBOARD_STOWAWAY is not set
  2039. # CONFIG_KEYBOARD_SUNKBD is not set
  2040. # CONFIG_KEYBOARD_OMAP4 is not set
  2041. # CONFIG_KEYBOARD_XTKBD is not set
  2042. # CONFIG_KEYBOARD_CAP11XX is not set
  2043. # CONFIG_KEYBOARD_BCM is not set
  2044. CONFIG_INPUT_MOUSE=y
  2045. CONFIG_MOUSE_PS2=y
  2046. CONFIG_MOUSE_PS2_ALPS=y
  2047. CONFIG_MOUSE_PS2_BYD=y
  2048. CONFIG_MOUSE_PS2_LOGIPS2PP=y
  2049. CONFIG_MOUSE_PS2_SYNAPTICS=y
  2050. CONFIG_MOUSE_PS2_CYPRESS=y
  2051. CONFIG_MOUSE_PS2_TRACKPOINT=y
  2052. CONFIG_MOUSE_PS2_ELANTECH=y
  2053. # CONFIG_MOUSE_PS2_SENTELIC is not set
  2054. # CONFIG_MOUSE_PS2_TOUCHKIT is not set
  2055. CONFIG_MOUSE_PS2_FOCALTECH=y
  2056. # CONFIG_MOUSE_SERIAL is not set
  2057. # CONFIG_MOUSE_APPLETOUCH is not set
  2058. # CONFIG_MOUSE_BCM5974 is not set
  2059. CONFIG_MOUSE_CYAPA=m
  2060. CONFIG_MOUSE_ELAN_I2C=y
  2061. CONFIG_MOUSE_ELAN_I2C_I2C=y
  2062. # CONFIG_MOUSE_ELAN_I2C_SMBUS is not set
  2063. # CONFIG_MOUSE_VSXXXAA is not set
  2064. # CONFIG_MOUSE_GPIO is not set
  2065. # CONFIG_MOUSE_SYNAPTICS_I2C is not set
  2066. # CONFIG_MOUSE_SYNAPTICS_USB is not set
  2067. # CONFIG_INPUT_JOYSTICK is not set
  2068. # CONFIG_INPUT_TABLET is not set
  2069. CONFIG_INPUT_TOUCHSCREEN=y
  2070. CONFIG_TOUCHSCREEN_PROPERTIES=y
  2071. # CONFIG_TOUCHSCREEN_ADS7846 is not set
  2072. # CONFIG_TOUCHSCREEN_AD7877 is not set
  2073. # CONFIG_TOUCHSCREEN_AD7879 is not set
  2074. # CONFIG_TOUCHSCREEN_AR1021_I2C is not set
  2075. CONFIG_TOUCHSCREEN_ATMEL_MXT=m
  2076. # CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set
  2077. # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
  2078. # CONFIG_TOUCHSCREEN_BU21013 is not set
  2079. # CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
  2080. # CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
  2081. # CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
  2082. # CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
  2083. # CONFIG_TOUCHSCREEN_DYNAPRO is not set
  2084. # CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
  2085. # CONFIG_TOUCHSCREEN_EETI is not set
  2086. # CONFIG_TOUCHSCREEN_EGALAX is not set
  2087. # CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
  2088. # CONFIG_TOUCHSCREEN_FUJITSU is not set
  2089. CONFIG_TOUCHSCREEN_GOODIX=m
  2090. # CONFIG_TOUCHSCREEN_ILI210X is not set
  2091. # CONFIG_TOUCHSCREEN_GUNZE is not set
  2092. # CONFIG_TOUCHSCREEN_EKTF2127 is not set
  2093. # CONFIG_TOUCHSCREEN_ELAN is not set
  2094. # CONFIG_TOUCHSCREEN_ELO is not set
  2095. # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
  2096. # CONFIG_TOUCHSCREEN_WACOM_I2C is not set
  2097. # CONFIG_TOUCHSCREEN_MAX11801 is not set
  2098. # CONFIG_TOUCHSCREEN_MCS5000 is not set
  2099. CONFIG_TOUCHSCREEN_MMS114=m
  2100. # CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
  2101. # CONFIG_TOUCHSCREEN_MTOUCH is not set
  2102. # CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
  2103. # CONFIG_TOUCHSCREEN_INEXIO is not set
  2104. # CONFIG_TOUCHSCREEN_MK712 is not set
  2105. # CONFIG_TOUCHSCREEN_PENMOUNT is not set
  2106. CONFIG_TOUCHSCREEN_EDT_FT5X06=m
  2107. # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
  2108. # CONFIG_TOUCHSCREEN_TOUCHWIN is not set
  2109. CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m
  2110. CONFIG_TOUCHSCREEN_PIXCIR=m
  2111. # CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
  2112. # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
  2113. # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
  2114. # CONFIG_TOUCHSCREEN_TSC_SERIO is not set
  2115. # CONFIG_TOUCHSCREEN_TSC2004 is not set
  2116. # CONFIG_TOUCHSCREEN_TSC2005 is not set
  2117. # CONFIG_TOUCHSCREEN_TSC2007 is not set
  2118. # CONFIG_TOUCHSCREEN_RM_TS is not set
  2119. # CONFIG_TOUCHSCREEN_SILEAD is not set
  2120. # CONFIG_TOUCHSCREEN_SIS_I2C is not set
  2121. CONFIG_TOUCHSCREEN_ST1232=m
  2122. # CONFIG_TOUCHSCREEN_SUR40 is not set
  2123. # CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
  2124. # CONFIG_TOUCHSCREEN_SX8654 is not set
  2125. # CONFIG_TOUCHSCREEN_TPS6507X is not set
  2126. # CONFIG_TOUCHSCREEN_ZFORCE is not set
  2127. # CONFIG_TOUCHSCREEN_COLIBRI_VF50 is not set
  2128. # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
  2129. CONFIG_INPUT_MISC=y
  2130. # CONFIG_INPUT_AD714X is not set
  2131. # CONFIG_INPUT_ATMEL_CAPTOUCH is not set
  2132. # CONFIG_INPUT_BMA150 is not set
  2133. # CONFIG_INPUT_E3X0_BUTTON is not set
  2134. # CONFIG_INPUT_MMA8450 is not set
  2135. CONFIG_INPUT_MPU3050=y
  2136. # CONFIG_INPUT_GP2A is not set
  2137. # CONFIG_INPUT_GPIO_BEEPER is not set
  2138. # CONFIG_INPUT_GPIO_TILT_POLLED is not set
  2139. CONFIG_INPUT_GPIO_DECODER=m
  2140. # CONFIG_INPUT_ATI_REMOTE2 is not set
  2141. # CONFIG_INPUT_KEYSPAN_REMOTE is not set
  2142. # CONFIG_INPUT_KXTJ9 is not set
  2143. # CONFIG_INPUT_POWERMATE is not set
  2144. # CONFIG_INPUT_YEALINK is not set
  2145. # CONFIG_INPUT_CM109 is not set
  2146. # CONFIG_INPUT_REGULATOR_HAPTIC is not set
  2147. # CONFIG_INPUT_TPS65218_PWRBUTTON is not set
  2148. CONFIG_INPUT_AXP20X_PEK=m
  2149. # CONFIG_INPUT_TWL6040_VIBRA is not set
  2150. # CONFIG_INPUT_UINPUT is not set
  2151. # CONFIG_INPUT_PALMAS_PWRBUTTON is not set
  2152. # CONFIG_INPUT_PCF8574 is not set
  2153. # CONFIG_INPUT_PWM_BEEPER is not set
  2154. # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
  2155. CONFIG_INPUT_ADXL34X=m
  2156. CONFIG_INPUT_ADXL34X_I2C=m
  2157. CONFIG_INPUT_ADXL34X_SPI=m
  2158. # CONFIG_INPUT_IMS_PCU is not set
  2159. # CONFIG_INPUT_CMA3000 is not set
  2160. # CONFIG_INPUT_SOC_BUTTON_ARRAY is not set
  2161. # CONFIG_INPUT_DRV260X_HAPTICS is not set
  2162. # CONFIG_INPUT_DRV2665_HAPTICS is not set
  2163. # CONFIG_INPUT_DRV2667_HAPTICS is not set
  2164. # CONFIG_RMI4_CORE is not set
  2165. #
  2166. # Hardware I/O ports
  2167. #
  2168. CONFIG_SERIO=y
  2169. CONFIG_SERIO_SERPORT=y
  2170. # CONFIG_SERIO_PCIPS2 is not set
  2171. CONFIG_SERIO_LIBPS2=y
  2172. # CONFIG_SERIO_RAW is not set
  2173. # CONFIG_SERIO_ALTERA_PS2 is not set
  2174. # CONFIG_SERIO_PS2MULT is not set
  2175. # CONFIG_SERIO_ARC_PS2 is not set
  2176. # CONFIG_SERIO_APBPS2 is not set
  2177. # CONFIG_USERIO is not set
  2178. # CONFIG_GAMEPORT is not set
  2179. #
  2180. # Character devices
  2181. #
  2182. CONFIG_TTY=y
  2183. CONFIG_VT=y
  2184. CONFIG_CONSOLE_TRANSLATIONS=y
  2185. CONFIG_VT_CONSOLE=y
  2186. CONFIG_VT_CONSOLE_SLEEP=y
  2187. CONFIG_HW_CONSOLE=y
  2188. CONFIG_VT_HW_CONSOLE_BINDING=y
  2189. CONFIG_UNIX98_PTYS=y
  2190. CONFIG_LEGACY_PTYS=y
  2191. CONFIG_LEGACY_PTY_COUNT=256
  2192. # CONFIG_SERIAL_NONSTANDARD is not set
  2193. # CONFIG_NOZOMI is not set
  2194. # CONFIG_N_GSM is not set
  2195. # CONFIG_TRACE_SINK is not set
  2196. CONFIG_DEVMEM=y
  2197. CONFIG_DEVKMEM=y
  2198. #
  2199. # Serial drivers
  2200. #
  2201. CONFIG_SERIAL_EARLYCON=y
  2202. CONFIG_SERIAL_8250=y
  2203. CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
  2204. # CONFIG_SERIAL_8250_FINTEK is not set
  2205. CONFIG_SERIAL_8250_CONSOLE=y
  2206. CONFIG_SERIAL_8250_DMA=y
  2207. CONFIG_SERIAL_8250_PCI=y
  2208. CONFIG_SERIAL_8250_NR_UARTS=10
  2209. CONFIG_SERIAL_8250_RUNTIME_UARTS=10
  2210. # CONFIG_SERIAL_8250_EXTENDED is not set
  2211. CONFIG_SERIAL_8250_FSL=y
  2212. # CONFIG_SERIAL_8250_DW is not set
  2213. # CONFIG_SERIAL_8250_EM is not set
  2214. # CONFIG_SERIAL_8250_RT288X is not set
  2215. CONFIG_SERIAL_8250_OMAP=y
  2216. CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y
  2217. # CONFIG_SERIAL_8250_MOXA is not set
  2218. CONFIG_SERIAL_OF_PLATFORM=y
  2219. #
  2220. # Non-8250 serial port support
  2221. #
  2222. # CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
  2223. # CONFIG_SERIAL_MAX3100 is not set
  2224. # CONFIG_SERIAL_MAX310X is not set
  2225. # CONFIG_SERIAL_UARTLITE is not set
  2226. CONFIG_SERIAL_CORE=y
  2227. CONFIG_SERIAL_CORE_CONSOLE=y
  2228. # CONFIG_SERIAL_JSM is not set
  2229. # CONFIG_SERIAL_OMAP is not set
  2230. # CONFIG_SERIAL_SCCNXP is not set
  2231. # CONFIG_SERIAL_SC16IS7XX is not set
  2232. CONFIG_SERIAL_BCM63XX=y
  2233. CONFIG_SERIAL_BCM63XX_CONSOLE=y
  2234. # CONFIG_SERIAL_ALTERA_JTAGUART is not set
  2235. # CONFIG_SERIAL_ALTERA_UART is not set
  2236. # CONFIG_SERIAL_IFX6X60 is not set
  2237. # CONFIG_SERIAL_XILINX_PS_UART is not set
  2238. # CONFIG_SERIAL_ARC is not set
  2239. # CONFIG_SERIAL_RP2 is not set
  2240. # CONFIG_SERIAL_FSL_LPUART is not set
  2241. # CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
  2242. # CONFIG_SERIAL_ST_ASC is not set
  2243. # CONFIG_SERIAL_STM32 is not set
  2244. # CONFIG_TTY_PRINTK is not set
  2245. CONFIG_HVC_DRIVER=y
  2246. # CONFIG_HVC_DCC is not set
  2247. CONFIG_VIRTIO_CONSOLE=y
  2248. # CONFIG_IPMI_HANDLER is not set
  2249. CONFIG_HW_RANDOM=y
  2250. # CONFIG_HW_RANDOM_TIMERIOMEM is not set
  2251. CONFIG_HW_RANDOM_OMAP=y
  2252. # CONFIG_HW_RANDOM_VIRTIO is not set
  2253. # CONFIG_R3964 is not set
  2254. # CONFIG_APPLICOM is not set
  2255. # CONFIG_RAW_DRIVER is not set
  2256. # CONFIG_TCG_TPM is not set
  2257. CONFIG_DEVPORT=y
  2258. # CONFIG_XILLYBUS is not set
  2259. #
  2260. # I2C support
  2261. #
  2262. CONFIG_I2C=y
  2263. CONFIG_I2C_BOARDINFO=y
  2264. CONFIG_I2C_COMPAT=y
  2265. CONFIG_I2C_CHARDEV=y
  2266. # CONFIG_I2C_MUX is not set
  2267. CONFIG_I2C_HELPER_AUTO=y
  2268. CONFIG_I2C_ALGOBIT=y
  2269. #
  2270. # I2C Hardware Bus support
  2271. #
  2272. #
  2273. # PC SMBus host controller drivers
  2274. #
  2275. # CONFIG_I2C_ALI1535 is not set
  2276. # CONFIG_I2C_ALI1563 is not set
  2277. # CONFIG_I2C_ALI15X3 is not set
  2278. # CONFIG_I2C_AMD756 is not set
  2279. # CONFIG_I2C_AMD8111 is not set
  2280. # CONFIG_I2C_I801 is not set
  2281. # CONFIG_I2C_ISCH is not set
  2282. # CONFIG_I2C_PIIX4 is not set
  2283. # CONFIG_I2C_NFORCE2 is not set
  2284. # CONFIG_I2C_SIS5595 is not set
  2285. # CONFIG_I2C_SIS630 is not set
  2286. # CONFIG_I2C_SIS96X is not set
  2287. # CONFIG_I2C_VIA is not set
  2288. # CONFIG_I2C_VIAPRO is not set
  2289. #
  2290. # I2C system bus drivers (mostly embedded / system-on-chip)
  2291. #
  2292. # CONFIG_I2C_CBUS_GPIO is not set
  2293. # CONFIG_I2C_DESIGNWARE_PLATFORM is not set
  2294. # CONFIG_I2C_DESIGNWARE_PCI is not set
  2295. CONFIG_I2C_EMEV2=m
  2296. # CONFIG_I2C_GPIO is not set
  2297. # CONFIG_I2C_OCORES is not set
  2298. CONFIG_I2C_OMAP=y
  2299. # CONFIG_I2C_PCA_PLATFORM is not set
  2300. # CONFIG_I2C_PXA_PCI is not set
  2301. # CONFIG_I2C_RK3X is not set
  2302. # CONFIG_I2C_SIMTEC is not set
  2303. # CONFIG_I2C_XILINX is not set
  2304. #
  2305. # External I2C/SMBus adapter drivers
  2306. #
  2307. # CONFIG_I2C_DIOLAN_U2C is not set
  2308. # CONFIG_I2C_PARPORT_LIGHT is not set
  2309. # CONFIG_I2C_ROBOTFUZZ_OSIF is not set
  2310. # CONFIG_I2C_TAOS_EVM is not set
  2311. # CONFIG_I2C_TINY_USB is not set
  2312. #
  2313. # Other I2C/SMBus bus drivers
  2314. #
  2315. # CONFIG_I2C_STUB is not set
  2316. CONFIG_I2C_SLAVE=y
  2317. CONFIG_I2C_SLAVE_EEPROM=y
  2318. # CONFIG_I2C_DEBUG_CORE is not set
  2319. # CONFIG_I2C_DEBUG_ALGO is not set
  2320. # CONFIG_I2C_DEBUG_BUS is not set
  2321. CONFIG_SPI=y
  2322. # CONFIG_SPI_DEBUG is not set
  2323. CONFIG_SPI_MASTER=y
  2324. #
  2325. # SPI Master Controller Drivers
  2326. #
  2327. # CONFIG_SPI_ALTERA is not set
  2328. # CONFIG_SPI_AXI_SPI_ENGINE is not set
  2329. CONFIG_SPI_BITBANG=m
  2330. # CONFIG_SPI_CADENCE is not set
  2331. # CONFIG_SPI_DESIGNWARE is not set
  2332. CONFIG_SPI_GPIO=m
  2333. # CONFIG_SPI_FSL_SPI is not set
  2334. # CONFIG_SPI_OC_TINY is not set
  2335. CONFIG_SPI_OMAP24XX=y
  2336. CONFIG_SPI_TI_QSPI=y
  2337. # CONFIG_SPI_PXA2XX is not set
  2338. # CONFIG_SPI_PXA2XX_PCI is not set
  2339. # CONFIG_SPI_ROCKCHIP is not set
  2340. # CONFIG_SPI_SC18IS602 is not set
  2341. # CONFIG_SPI_XCOMM is not set
  2342. # CONFIG_SPI_XILINX is not set
  2343. # CONFIG_SPI_ZYNQMP_GQSPI is not set
  2344. #
  2345. # SPI Protocol Masters
  2346. #
  2347. CONFIG_SPI_SPIDEV=m
  2348. # CONFIG_SPI_LOOPBACK_TEST is not set
  2349. # CONFIG_SPI_TLE62X0 is not set
  2350. CONFIG_SPMI=y
  2351. # CONFIG_HSI is not set
  2352. #
  2353. # PPS support
  2354. #
  2355. CONFIG_PPS=y
  2356. # CONFIG_PPS_DEBUG is not set
  2357. #
  2358. # PPS clients support
  2359. #
  2360. # CONFIG_PPS_CLIENT_KTIMER is not set
  2361. # CONFIG_PPS_CLIENT_LDISC is not set
  2362. # CONFIG_PPS_CLIENT_GPIO is not set
  2363. #
  2364. # PPS generators support
  2365. #
  2366. #
  2367. # PTP clock support
  2368. #
  2369. CONFIG_PTP_1588_CLOCK=y
  2370. #
  2371. # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
  2372. #
  2373. CONFIG_PINCTRL=y
  2374. #
  2375. # Pin controllers
  2376. #
  2377. CONFIG_GENERIC_PINCTRL_GROUPS=y
  2378. CONFIG_PINMUX=y
  2379. CONFIG_GENERIC_PINMUX_FUNCTIONS=y
  2380. CONFIG_PINCONF=y
  2381. CONFIG_GENERIC_PINCONF=y
  2382. # CONFIG_DEBUG_PINCTRL is not set
  2383. # CONFIG_PINCTRL_AMD is not set
  2384. CONFIG_PINCTRL_SINGLE=y
  2385. CONFIG_PINCTRL_PALMAS=y
  2386. CONFIG_PINCTRL_TI_IODELAY=y
  2387. CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y
  2388. CONFIG_GPIOLIB=y
  2389. CONFIG_OF_GPIO=y
  2390. CONFIG_GPIOLIB_IRQCHIP=y
  2391. CONFIG_DEBUG_GPIO=y
  2392. CONFIG_GPIO_SYSFS=y
  2393. #
  2394. # Memory mapped GPIO drivers
  2395. #
  2396. # CONFIG_GPIO_74XX_MMIO is not set
  2397. # CONFIG_GPIO_ALTERA is not set
  2398. # CONFIG_GPIO_AXP209 is not set
  2399. # CONFIG_GPIO_DWAPB is not set
  2400. # CONFIG_GPIO_EM is not set
  2401. # CONFIG_GPIO_GENERIC_PLATFORM is not set
  2402. # CONFIG_GPIO_GRGPIO is not set
  2403. # CONFIG_GPIO_MOCKUP is not set
  2404. # CONFIG_GPIO_MPC8XXX is not set
  2405. CONFIG_GPIO_OMAP=y
  2406. CONFIG_GPIO_SYSCON=y
  2407. # CONFIG_GPIO_VX855 is not set
  2408. # CONFIG_GPIO_XILINX is not set
  2409. # CONFIG_GPIO_ZEVIO is not set
  2410. # CONFIG_GPIO_ZX is not set
  2411. #
  2412. # I2C GPIO expanders
  2413. #
  2414. # CONFIG_GPIO_ADP5588 is not set
  2415. # CONFIG_GPIO_ADNP is not set
  2416. # CONFIG_GPIO_MAX7300 is not set
  2417. # CONFIG_GPIO_MAX732X is not set
  2418. CONFIG_GPIO_PCA953X=m
  2419. CONFIG_GPIO_PCF857X=y
  2420. # CONFIG_GPIO_SX150X is not set
  2421. CONFIG_GPIO_TPIC2810=m
  2422. # CONFIG_GPIO_TS4900 is not set
  2423. #
  2424. # MFD GPIO expanders
  2425. #
  2426. # CONFIG_HTC_EGPIO is not set
  2427. # CONFIG_GPIO_LP873X is not set
  2428. CONFIG_GPIO_PALMAS=y
  2429. # CONFIG_GPIO_TPS65218 is not set
  2430. # CONFIG_GPIO_TPS6586X is not set
  2431. CONFIG_GPIO_TPS65910=y
  2432. # CONFIG_GPIO_TWL6040 is not set
  2433. #
  2434. # PCI GPIO expanders
  2435. #
  2436. # CONFIG_GPIO_AMD8111 is not set
  2437. # CONFIG_GPIO_BT8XX is not set
  2438. # CONFIG_GPIO_ML_IOH is not set
  2439. # CONFIG_GPIO_RDC321X is not set
  2440. #
  2441. # SPI GPIO expanders
  2442. #
  2443. # CONFIG_GPIO_74X164 is not set
  2444. # CONFIG_GPIO_MAX7301 is not set
  2445. # CONFIG_GPIO_MC33880 is not set
  2446. CONFIG_GPIO_PISOSR=m
  2447. #
  2448. # SPI or I2C GPIO expanders
  2449. #
  2450. # CONFIG_GPIO_MCP23S08 is not set
  2451. #
  2452. # USB GPIO expanders
  2453. #
  2454. CONFIG_W1=m
  2455. #
  2456. # 1-wire Bus Masters
  2457. #
  2458. # CONFIG_W1_MASTER_MATROX is not set
  2459. # CONFIG_W1_MASTER_DS2490 is not set
  2460. # CONFIG_W1_MASTER_DS2482 is not set
  2461. # CONFIG_W1_MASTER_DS1WM is not set
  2462. # CONFIG_W1_MASTER_GPIO is not set
  2463. CONFIG_HDQ_MASTER_OMAP=m
  2464. #
  2465. # 1-wire Slaves
  2466. #
  2467. # CONFIG_W1_SLAVE_THERM is not set
  2468. # CONFIG_W1_SLAVE_SMEM is not set
  2469. # CONFIG_W1_SLAVE_DS2408 is not set
  2470. # CONFIG_W1_SLAVE_DS2413 is not set
  2471. # CONFIG_W1_SLAVE_DS2406 is not set
  2472. # CONFIG_W1_SLAVE_DS2423 is not set
  2473. # CONFIG_W1_SLAVE_DS2431 is not set
  2474. # CONFIG_W1_SLAVE_DS2433 is not set
  2475. # CONFIG_W1_SLAVE_DS2760 is not set
  2476. # CONFIG_W1_SLAVE_DS2780 is not set
  2477. # CONFIG_W1_SLAVE_DS2781 is not set
  2478. # CONFIG_W1_SLAVE_DS28E04 is not set
  2479. # CONFIG_W1_SLAVE_BQ27000 is not set
  2480. CONFIG_POWER_AVS=y
  2481. CONFIG_POWER_RESET=y
  2482. # CONFIG_POWER_RESET_BRCMKONA is not set
  2483. # CONFIG_POWER_RESET_BRCMSTB is not set
  2484. CONFIG_POWER_RESET_GPIO=y
  2485. CONFIG_POWER_RESET_GPIO_RESTART=y
  2486. # CONFIG_POWER_RESET_LTC2952 is not set
  2487. # CONFIG_POWER_RESET_RESTART is not set
  2488. # CONFIG_POWER_RESET_VERSATILE is not set
  2489. CONFIG_POWER_RESET_SYSCON=y
  2490. # CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
  2491. # CONFIG_SYSCON_REBOOT_MODE is not set
  2492. CONFIG_POWER_SUPPLY=y
  2493. # CONFIG_POWER_SUPPLY_DEBUG is not set
  2494. # CONFIG_PDA_POWER is not set
  2495. # CONFIG_GENERIC_ADC_BATTERY is not set
  2496. # CONFIG_TEST_POWER is not set
  2497. CONFIG_BATTERY_ACT8945A=y
  2498. # CONFIG_BATTERY_DS2780 is not set
  2499. # CONFIG_BATTERY_DS2781 is not set
  2500. # CONFIG_BATTERY_DS2782 is not set
  2501. CONFIG_BATTERY_SBS=y
  2502. # CONFIG_BATTERY_BQ27XXX is not set
  2503. # CONFIG_AXP288_FUEL_GAUGE is not set
  2504. CONFIG_BATTERY_MAX17040=m
  2505. CONFIG_BATTERY_MAX17042=m
  2506. # CONFIG_CHARGER_ISP1704 is not set
  2507. # CONFIG_CHARGER_MAX8903 is not set
  2508. # CONFIG_CHARGER_LP8727 is not set
  2509. # CONFIG_CHARGER_GPIO is not set
  2510. # CONFIG_CHARGER_MANAGER is not set
  2511. # CONFIG_CHARGER_BQ2415X is not set
  2512. # CONFIG_CHARGER_BQ24190 is not set
  2513. # CONFIG_CHARGER_BQ24257 is not set
  2514. # CONFIG_CHARGER_BQ24735 is not set
  2515. # CONFIG_CHARGER_BQ25890 is not set
  2516. # CONFIG_CHARGER_SMB347 is not set
  2517. CONFIG_CHARGER_TPS65090=y
  2518. # CONFIG_CHARGER_TPS65217 is not set
  2519. # CONFIG_BATTERY_GAUGE_LTC2941 is not set
  2520. # CONFIG_CHARGER_RT9455 is not set
  2521. CONFIG_AXP20X_POWER=m
  2522. CONFIG_HWMON=y
  2523. # CONFIG_HWMON_VID is not set
  2524. # CONFIG_HWMON_DEBUG_CHIP is not set
  2525. #
  2526. # Native drivers
  2527. #
  2528. # CONFIG_SENSORS_AD7314 is not set
  2529. # CONFIG_SENSORS_AD7414 is not set
  2530. # CONFIG_SENSORS_AD7418 is not set
  2531. # CONFIG_SENSORS_ADM1021 is not set
  2532. # CONFIG_SENSORS_ADM1025 is not set
  2533. # CONFIG_SENSORS_ADM1026 is not set
  2534. # CONFIG_SENSORS_ADM1029 is not set
  2535. # CONFIG_SENSORS_ADM1031 is not set
  2536. # CONFIG_SENSORS_ADM9240 is not set
  2537. # CONFIG_SENSORS_ADT7310 is not set
  2538. # CONFIG_SENSORS_ADT7410 is not set
  2539. # CONFIG_SENSORS_ADT7411 is not set
  2540. # CONFIG_SENSORS_ADT7462 is not set
  2541. # CONFIG_SENSORS_ADT7470 is not set
  2542. # CONFIG_SENSORS_ADT7475 is not set
  2543. # CONFIG_SENSORS_ASC7621 is not set
  2544. # CONFIG_SENSORS_ATXP1 is not set
  2545. # CONFIG_SENSORS_DS620 is not set
  2546. # CONFIG_SENSORS_DS1621 is not set
  2547. # CONFIG_SENSORS_I5K_AMB is not set
  2548. # CONFIG_SENSORS_F71805F is not set
  2549. # CONFIG_SENSORS_F71882FG is not set
  2550. # CONFIG_SENSORS_F75375S is not set
  2551. # CONFIG_SENSORS_FTSTEUTATES is not set
  2552. # CONFIG_SENSORS_GL518SM is not set
  2553. # CONFIG_SENSORS_GL520SM is not set
  2554. # CONFIG_SENSORS_G760A is not set
  2555. # CONFIG_SENSORS_G762 is not set
  2556. CONFIG_SENSORS_GPIO_FAN=y
  2557. # CONFIG_SENSORS_HIH6130 is not set
  2558. CONFIG_SENSORS_IIO_HWMON=y
  2559. # CONFIG_SENSORS_IT87 is not set
  2560. # CONFIG_SENSORS_JC42 is not set
  2561. # CONFIG_SENSORS_POWR1220 is not set
  2562. # CONFIG_SENSORS_LINEAGE is not set
  2563. # CONFIG_SENSORS_LTC2945 is not set
  2564. # CONFIG_SENSORS_LTC2990 is not set
  2565. # CONFIG_SENSORS_LTC4151 is not set
  2566. # CONFIG_SENSORS_LTC4215 is not set
  2567. # CONFIG_SENSORS_LTC4222 is not set
  2568. # CONFIG_SENSORS_LTC4245 is not set
  2569. # CONFIG_SENSORS_LTC4260 is not set
  2570. # CONFIG_SENSORS_LTC4261 is not set
  2571. # CONFIG_SENSORS_MAX1111 is not set
  2572. # CONFIG_SENSORS_MAX16065 is not set
  2573. # CONFIG_SENSORS_MAX1619 is not set
  2574. # CONFIG_SENSORS_MAX1668 is not set
  2575. # CONFIG_SENSORS_MAX197 is not set
  2576. # CONFIG_SENSORS_MAX31722 is not set
  2577. # CONFIG_SENSORS_MAX6639 is not set
  2578. # CONFIG_SENSORS_MAX6642 is not set
  2579. # CONFIG_SENSORS_MAX6650 is not set
  2580. # CONFIG_SENSORS_MAX6697 is not set
  2581. # CONFIG_SENSORS_MAX31790 is not set
  2582. # CONFIG_SENSORS_MCP3021 is not set
  2583. # CONFIG_SENSORS_ADCXX is not set
  2584. # CONFIG_SENSORS_LM63 is not set
  2585. # CONFIG_SENSORS_LM70 is not set
  2586. # CONFIG_SENSORS_LM73 is not set
  2587. # CONFIG_SENSORS_LM75 is not set
  2588. # CONFIG_SENSORS_LM77 is not set
  2589. # CONFIG_SENSORS_LM78 is not set
  2590. # CONFIG_SENSORS_LM80 is not set
  2591. # CONFIG_SENSORS_LM83 is not set
  2592. # CONFIG_SENSORS_LM85 is not set
  2593. # CONFIG_SENSORS_LM87 is not set
  2594. CONFIG_SENSORS_LM90=y
  2595. # CONFIG_SENSORS_LM92 is not set
  2596. # CONFIG_SENSORS_LM93 is not set
  2597. # CONFIG_SENSORS_LM95234 is not set
  2598. # CONFIG_SENSORS_LM95241 is not set
  2599. CONFIG_SENSORS_LM95245=y
  2600. # CONFIG_SENSORS_PC87360 is not set
  2601. # CONFIG_SENSORS_PC87427 is not set
  2602. CONFIG_SENSORS_NTC_THERMISTOR=m
  2603. # CONFIG_SENSORS_NCT6683 is not set
  2604. # CONFIG_SENSORS_NCT6775 is not set
  2605. # CONFIG_SENSORS_NCT7802 is not set
  2606. # CONFIG_SENSORS_NCT7904 is not set
  2607. # CONFIG_SENSORS_PCF8591 is not set
  2608. # CONFIG_PMBUS is not set
  2609. CONFIG_SENSORS_PWM_FAN=m
  2610. # CONFIG_SENSORS_SHT15 is not set
  2611. # CONFIG_SENSORS_SHT21 is not set
  2612. # CONFIG_SENSORS_SHT3x is not set
  2613. # CONFIG_SENSORS_SHTC1 is not set
  2614. # CONFIG_SENSORS_SIS5595 is not set
  2615. # CONFIG_SENSORS_DME1737 is not set
  2616. # CONFIG_SENSORS_EMC1403 is not set
  2617. # CONFIG_SENSORS_EMC2103 is not set
  2618. # CONFIG_SENSORS_EMC6W201 is not set
  2619. # CONFIG_SENSORS_SMSC47M1 is not set
  2620. # CONFIG_SENSORS_SMSC47M192 is not set
  2621. # CONFIG_SENSORS_SMSC47B397 is not set
  2622. # CONFIG_SENSORS_SCH56XX_COMMON is not set
  2623. # CONFIG_SENSORS_SCH5627 is not set
  2624. # CONFIG_SENSORS_SCH5636 is not set
  2625. # CONFIG_SENSORS_SMM665 is not set
  2626. # CONFIG_SENSORS_ADC128D818 is not set
  2627. # CONFIG_SENSORS_ADS1015 is not set
  2628. # CONFIG_SENSORS_ADS7828 is not set
  2629. # CONFIG_SENSORS_ADS7871 is not set
  2630. # CONFIG_SENSORS_AMC6821 is not set
  2631. # CONFIG_SENSORS_INA209 is not set
  2632. CONFIG_SENSORS_INA2XX=m
  2633. # CONFIG_SENSORS_INA3221 is not set
  2634. # CONFIG_SENSORS_TC74 is not set
  2635. # CONFIG_SENSORS_THMC50 is not set
  2636. CONFIG_SENSORS_TMP102=y
  2637. # CONFIG_SENSORS_TMP103 is not set
  2638. # CONFIG_SENSORS_TMP401 is not set
  2639. # CONFIG_SENSORS_TMP421 is not set
  2640. # CONFIG_SENSORS_VIA686A is not set
  2641. # CONFIG_SENSORS_VT1211 is not set
  2642. # CONFIG_SENSORS_VT8231 is not set
  2643. # CONFIG_SENSORS_W83781D is not set
  2644. # CONFIG_SENSORS_W83791D is not set
  2645. # CONFIG_SENSORS_W83792D is not set
  2646. # CONFIG_SENSORS_W83793 is not set
  2647. # CONFIG_SENSORS_W83795 is not set
  2648. # CONFIG_SENSORS_W83L785TS is not set
  2649. # CONFIG_SENSORS_W83L786NG is not set
  2650. # CONFIG_SENSORS_W83627HF is not set
  2651. # CONFIG_SENSORS_W83627EHF is not set
  2652. CONFIG_THERMAL=y
  2653. CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
  2654. CONFIG_THERMAL_HWMON=y
  2655. CONFIG_THERMAL_OF=y
  2656. CONFIG_THERMAL_WRITABLE_TRIPS=y
  2657. CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
  2658. # CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
  2659. # CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
  2660. # CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
  2661. CONFIG_THERMAL_GOV_FAIR_SHARE=y
  2662. CONFIG_THERMAL_GOV_STEP_WISE=y
  2663. CONFIG_THERMAL_GOV_BANG_BANG=y
  2664. CONFIG_THERMAL_GOV_USER_SPACE=y
  2665. CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y
  2666. CONFIG_CPU_THERMAL=y
  2667. # CONFIG_CLOCK_THERMAL is not set
  2668. CONFIG_THERMAL_EMULATION=y
  2669. # CONFIG_QORIQ_THERMAL is not set
  2670. #
  2671. # ACPI INT340X thermal drivers
  2672. #
  2673. #
  2674. # Texas Instruments thermal drivers
  2675. #
  2676. CONFIG_TI_SOC_THERMAL=y
  2677. CONFIG_TI_THERMAL=y
  2678. CONFIG_TI_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
  2679. # CONFIG_QCOM_SPMI_TEMP_ALARM is not set
  2680. # CONFIG_GENERIC_ADC_THERMAL is not set
  2681. CONFIG_WATCHDOG=y
  2682. CONFIG_WATCHDOG_CORE=y
  2683. # CONFIG_WATCHDOG_NOWAYOUT is not set
  2684. # CONFIG_WATCHDOG_SYSFS is not set
  2685. #
  2686. # Watchdog Device Drivers
  2687. #
  2688. # CONFIG_SOFT_WATCHDOG is not set
  2689. # CONFIG_GPIO_WATCHDOG is not set
  2690. # CONFIG_XILINX_WATCHDOG is not set
  2691. # CONFIG_ZIIRAVE_WATCHDOG is not set
  2692. # CONFIG_CADENCE_WATCHDOG is not set
  2693. # CONFIG_DW_WATCHDOG is not set
  2694. CONFIG_OMAP_WATCHDOG=m
  2695. # CONFIG_MAX63XX_WATCHDOG is not set
  2696. # CONFIG_ALIM7101_WDT is not set
  2697. # CONFIG_I6300ESB_WDT is not set
  2698. # CONFIG_MEN_A21_WDT is not set
  2699. #
  2700. # PCI-based Watchdog Cards
  2701. #
  2702. # CONFIG_PCIPCWATCHDOG is not set
  2703. # CONFIG_WDTPCI is not set
  2704. #
  2705. # USB-based Watchdog Cards
  2706. #
  2707. # CONFIG_USBPCWATCHDOG is not set
  2708. #
  2709. # Watchdog Pretimeout Governors
  2710. #
  2711. # CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
  2712. CONFIG_SSB_POSSIBLE=y
  2713. #
  2714. # Sonics Silicon Backplane
  2715. #
  2716. # CONFIG_SSB is not set
  2717. CONFIG_BCMA_POSSIBLE=y
  2718. #
  2719. # Broadcom specific AMBA
  2720. #
  2721. # CONFIG_BCMA is not set
  2722. #
  2723. # Multifunction device drivers
  2724. #
  2725. CONFIG_MFD_CORE=y
  2726. CONFIG_MFD_ACT8945A=y
  2727. # CONFIG_MFD_AS3711 is not set
  2728. # CONFIG_MFD_AS3722 is not set
  2729. # CONFIG_PMIC_ADP5520 is not set
  2730. # CONFIG_MFD_AAT2870_CORE is not set
  2731. # CONFIG_MFD_ATMEL_FLEXCOM is not set
  2732. # CONFIG_MFD_ATMEL_HLCDC is not set
  2733. # CONFIG_MFD_BCM590XX is not set
  2734. CONFIG_MFD_AXP20X=m
  2735. CONFIG_MFD_AXP20X_I2C=m
  2736. # CONFIG_MFD_CROS_EC is not set
  2737. # CONFIG_MFD_ASIC3 is not set
  2738. # CONFIG_PMIC_DA903X is not set
  2739. # CONFIG_MFD_DA9052_SPI is not set
  2740. # CONFIG_MFD_DA9052_I2C is not set
  2741. # CONFIG_MFD_DA9055 is not set
  2742. # CONFIG_MFD_DA9062 is not set
  2743. # CONFIG_MFD_DA9063 is not set
  2744. # CONFIG_MFD_DA9150 is not set
  2745. # CONFIG_MFD_DLN2 is not set
  2746. # CONFIG_MFD_EXYNOS_LPASS is not set
  2747. # CONFIG_MFD_MC13XXX_SPI is not set
  2748. # CONFIG_MFD_MC13XXX_I2C is not set
  2749. # CONFIG_MFD_HI6421_PMIC is not set
  2750. # CONFIG_HTC_PASIC3 is not set
  2751. # CONFIG_HTC_I2CPLD is not set
  2752. # CONFIG_LPC_ICH is not set
  2753. # CONFIG_LPC_SCH is not set
  2754. # CONFIG_INTEL_SOC_PMIC is not set
  2755. # CONFIG_MFD_JANZ_CMODIO is not set
  2756. # CONFIG_MFD_KEMPLD is not set
  2757. # CONFIG_MFD_88PM800 is not set
  2758. # CONFIG_MFD_88PM805 is not set
  2759. # CONFIG_MFD_88PM860X is not set
  2760. # CONFIG_MFD_MAX14577 is not set
  2761. # CONFIG_MFD_MAX77620 is not set
  2762. # CONFIG_MFD_MAX77686 is not set
  2763. # CONFIG_MFD_MAX77693 is not set
  2764. # CONFIG_MFD_MAX77843 is not set
  2765. # CONFIG_MFD_MAX8907 is not set
  2766. # CONFIG_MFD_MAX8925 is not set
  2767. # CONFIG_MFD_MAX8997 is not set
  2768. # CONFIG_MFD_MAX8998 is not set
  2769. # CONFIG_MFD_MT6397 is not set
  2770. # CONFIG_MFD_MENF21BMC is not set
  2771. # CONFIG_EZX_PCAP is not set
  2772. # CONFIG_MFD_VIPERBOARD is not set
  2773. # CONFIG_MFD_RETU is not set
  2774. # CONFIG_MFD_PCF50633 is not set
  2775. # CONFIG_MFD_PM8921_CORE is not set
  2776. # CONFIG_MFD_RDC321X is not set
  2777. # CONFIG_MFD_RTSX_PCI is not set
  2778. # CONFIG_MFD_RT5033 is not set
  2779. # CONFIG_MFD_RTSX_USB is not set
  2780. # CONFIG_MFD_RC5T583 is not set
  2781. # CONFIG_MFD_RK808 is not set
  2782. # CONFIG_MFD_RN5T618 is not set
  2783. # CONFIG_MFD_SEC_CORE is not set
  2784. # CONFIG_MFD_SI476X_CORE is not set
  2785. # CONFIG_MFD_SM501 is not set
  2786. # CONFIG_MFD_SKY81452 is not set
  2787. # CONFIG_MFD_SMSC is not set
  2788. # CONFIG_ABX500_CORE is not set
  2789. # CONFIG_MFD_STMPE is not set
  2790. CONFIG_MFD_SYSCON=y
  2791. CONFIG_MFD_TI_AM335X_TSCADC=m
  2792. # CONFIG_MFD_LP3943 is not set
  2793. # CONFIG_MFD_LP8788 is not set
  2794. CONFIG_MFD_OMAP_USB_HOST=y
  2795. CONFIG_MFD_PALMAS=y
  2796. # CONFIG_TPS6105X is not set
  2797. # CONFIG_TPS65010 is not set
  2798. # CONFIG_TPS6507X is not set
  2799. # CONFIG_MFD_TPS65086 is not set
  2800. CONFIG_MFD_TPS65090=y
  2801. CONFIG_MFD_TPS65217=y
  2802. CONFIG_MFD_TI_LP873X=y
  2803. CONFIG_MFD_TI_LP87565=y
  2804. CONFIG_MFD_TPS65218=y
  2805. CONFIG_MFD_TPS6586X=y
  2806. CONFIG_MFD_TPS65910=y
  2807. # CONFIG_MFD_TPS65912_I2C is not set
  2808. # CONFIG_MFD_TPS65912_SPI is not set
  2809. # CONFIG_MFD_TPS80031 is not set
  2810. # CONFIG_TWL4030_CORE is not set
  2811. CONFIG_TWL6040_CORE=y
  2812. # CONFIG_MFD_WL1273_CORE is not set
  2813. # CONFIG_MFD_LM3533 is not set
  2814. # CONFIG_MFD_TC3589X is not set
  2815. # CONFIG_MFD_TMIO is not set
  2816. # CONFIG_MFD_T7L66XB is not set
  2817. # CONFIG_MFD_TC6387XB is not set
  2818. # CONFIG_MFD_TC6393XB is not set
  2819. # CONFIG_MFD_VX855 is not set
  2820. # CONFIG_MFD_ARIZONA_I2C is not set
  2821. # CONFIG_MFD_ARIZONA_SPI is not set
  2822. # CONFIG_MFD_WM8400 is not set
  2823. # CONFIG_MFD_WM831X_I2C is not set
  2824. # CONFIG_MFD_WM831X_SPI is not set
  2825. # CONFIG_MFD_WM8350_I2C is not set
  2826. # CONFIG_MFD_WM8994 is not set
  2827. CONFIG_REGULATOR=y
  2828. # CONFIG_REGULATOR_DEBUG is not set
  2829. CONFIG_REGULATOR_FIXED_VOLTAGE=y
  2830. # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
  2831. # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
  2832. # CONFIG_REGULATOR_ACT8865 is not set
  2833. CONFIG_REGULATOR_ACT8945A=y
  2834. # CONFIG_REGULATOR_AD5398 is not set
  2835. # CONFIG_REGULATOR_ANATOP is not set
  2836. # CONFIG_REGULATOR_AXP20X is not set
  2837. # CONFIG_REGULATOR_DA9210 is not set
  2838. # CONFIG_REGULATOR_DA9211 is not set
  2839. # CONFIG_REGULATOR_FAN53555 is not set
  2840. CONFIG_REGULATOR_GPIO=y
  2841. # CONFIG_REGULATOR_ISL9305 is not set
  2842. # CONFIG_REGULATOR_ISL6271A is not set
  2843. # CONFIG_REGULATOR_LP3971 is not set
  2844. # CONFIG_REGULATOR_LP3972 is not set
  2845. # CONFIG_REGULATOR_LP872X is not set
  2846. CONFIG_REGULATOR_LP873X=y
  2847. # CONFIG_REGULATOR_LP8755 is not set
  2848. CONFIG_REGULATOR_LP87565=y
  2849. # CONFIG_REGULATOR_LTC3589 is not set
  2850. # CONFIG_REGULATOR_LTC3676 is not set
  2851. # CONFIG_REGULATOR_MAX1586 is not set
  2852. # CONFIG_REGULATOR_MAX8649 is not set
  2853. # CONFIG_REGULATOR_MAX8660 is not set
  2854. # CONFIG_REGULATOR_MAX8952 is not set
  2855. # CONFIG_REGULATOR_MAX8973 is not set
  2856. # CONFIG_REGULATOR_MT6311 is not set
  2857. CONFIG_REGULATOR_PALMAS=y
  2858. CONFIG_REGULATOR_PBIAS=y
  2859. # CONFIG_REGULATOR_PFUZE100 is not set
  2860. # CONFIG_REGULATOR_PV88060 is not set
  2861. # CONFIG_REGULATOR_PV88080 is not set
  2862. # CONFIG_REGULATOR_PV88090 is not set
  2863. # CONFIG_REGULATOR_PWM is not set
  2864. # CONFIG_REGULATOR_QCOM_SPMI is not set
  2865. CONFIG_REGULATOR_TI_ABB=y
  2866. # CONFIG_REGULATOR_TPS51632 is not set
  2867. CONFIG_REGULATOR_TPS62360=y
  2868. CONFIG_REGULATOR_TPS65023=y
  2869. CONFIG_REGULATOR_TPS6507X=y
  2870. CONFIG_REGULATOR_TPS65090=y
  2871. CONFIG_REGULATOR_TPS65217=y
  2872. CONFIG_REGULATOR_TPS65218=y
  2873. CONFIG_REGULATOR_TPS6524X=y
  2874. CONFIG_REGULATOR_TPS6586X=y
  2875. CONFIG_REGULATOR_TPS65910=y
  2876. CONFIG_MEDIA_SUPPORT=y
  2877. #
  2878. # Multimedia core support
  2879. #
  2880. CONFIG_MEDIA_CAMERA_SUPPORT=y
  2881. # CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set
  2882. # CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set
  2883. # CONFIG_MEDIA_RADIO_SUPPORT is not set
  2884. # CONFIG_MEDIA_SDR_SUPPORT is not set
  2885. # CONFIG_MEDIA_RC_SUPPORT is not set
  2886. CONFIG_MEDIA_CEC_EDID=y
  2887. CONFIG_MEDIA_CONTROLLER=y
  2888. # CONFIG_MEDIA_CONTROLLER_DVB is not set
  2889. CONFIG_VIDEO_DEV=y
  2890. CONFIG_VIDEO_V4L2_SUBDEV_API=y
  2891. CONFIG_VIDEO_V4L2=y
  2892. # CONFIG_VIDEO_ADV_DEBUG is not set
  2893. # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
  2894. # CONFIG_VIDEO_PCI_SKELETON is not set
  2895. CONFIG_V4L2_MEM2MEM_DEV=y
  2896. # CONFIG_V4L2_FLASH_LED_CLASS is not set
  2897. CONFIG_VIDEOBUF_GEN=m
  2898. CONFIG_VIDEOBUF2_CORE=y
  2899. CONFIG_VIDEOBUF2_MEMOPS=y
  2900. CONFIG_VIDEOBUF2_DMA_CONTIG=y
  2901. CONFIG_VIDEOBUF2_VMALLOC=m
  2902. # CONFIG_TTPCI_EEPROM is not set
  2903. #
  2904. # Media drivers
  2905. #
  2906. CONFIG_MEDIA_USB_SUPPORT=y
  2907. #
  2908. # Webcam devices
  2909. #
  2910. CONFIG_USB_VIDEO_CLASS=m
  2911. CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
  2912. CONFIG_USB_GSPCA=m
  2913. # CONFIG_USB_M5602 is not set
  2914. # CONFIG_USB_STV06XX is not set
  2915. # CONFIG_USB_GL860 is not set
  2916. # CONFIG_USB_GSPCA_BENQ is not set
  2917. # CONFIG_USB_GSPCA_CONEX is not set
  2918. # CONFIG_USB_GSPCA_CPIA1 is not set
  2919. # CONFIG_USB_GSPCA_DTCS033 is not set
  2920. # CONFIG_USB_GSPCA_ETOMS is not set
  2921. # CONFIG_USB_GSPCA_FINEPIX is not set
  2922. # CONFIG_USB_GSPCA_JEILINJ is not set
  2923. # CONFIG_USB_GSPCA_JL2005BCD is not set
  2924. # CONFIG_USB_GSPCA_KINECT is not set
  2925. # CONFIG_USB_GSPCA_KONICA is not set
  2926. # CONFIG_USB_GSPCA_MARS is not set
  2927. # CONFIG_USB_GSPCA_MR97310A is not set
  2928. # CONFIG_USB_GSPCA_NW80X is not set
  2929. # CONFIG_USB_GSPCA_OV519 is not set
  2930. # CONFIG_USB_GSPCA_OV534 is not set
  2931. # CONFIG_USB_GSPCA_OV534_9 is not set
  2932. # CONFIG_USB_GSPCA_PAC207 is not set
  2933. # CONFIG_USB_GSPCA_PAC7302 is not set
  2934. # CONFIG_USB_GSPCA_PAC7311 is not set
  2935. # CONFIG_USB_GSPCA_SE401 is not set
  2936. # CONFIG_USB_GSPCA_SN9C2028 is not set
  2937. # CONFIG_USB_GSPCA_SN9C20X is not set
  2938. # CONFIG_USB_GSPCA_SONIXB is not set
  2939. # CONFIG_USB_GSPCA_SONIXJ is not set
  2940. # CONFIG_USB_GSPCA_SPCA500 is not set
  2941. # CONFIG_USB_GSPCA_SPCA501 is not set
  2942. # CONFIG_USB_GSPCA_SPCA505 is not set
  2943. # CONFIG_USB_GSPCA_SPCA506 is not set
  2944. # CONFIG_USB_GSPCA_SPCA508 is not set
  2945. # CONFIG_USB_GSPCA_SPCA561 is not set
  2946. # CONFIG_USB_GSPCA_SPCA1528 is not set
  2947. # CONFIG_USB_GSPCA_SQ905 is not set
  2948. # CONFIG_USB_GSPCA_SQ905C is not set
  2949. # CONFIG_USB_GSPCA_SQ930X is not set
  2950. # CONFIG_USB_GSPCA_STK014 is not set
  2951. # CONFIG_USB_GSPCA_STK1135 is not set
  2952. # CONFIG_USB_GSPCA_STV0680 is not set
  2953. # CONFIG_USB_GSPCA_SUNPLUS is not set
  2954. # CONFIG_USB_GSPCA_T613 is not set
  2955. # CONFIG_USB_GSPCA_TOPRO is not set
  2956. # CONFIG_USB_GSPCA_TOUPTEK is not set
  2957. # CONFIG_USB_GSPCA_TV8532 is not set
  2958. # CONFIG_USB_GSPCA_VC032X is not set
  2959. # CONFIG_USB_GSPCA_VICAM is not set
  2960. # CONFIG_USB_GSPCA_XIRLINK_CIT is not set
  2961. # CONFIG_USB_GSPCA_ZC3XX is not set
  2962. # CONFIG_USB_PWC is not set
  2963. # CONFIG_VIDEO_CPIA2 is not set
  2964. # CONFIG_USB_ZR364XX is not set
  2965. # CONFIG_USB_STKWEBCAM is not set
  2966. # CONFIG_USB_S2255 is not set
  2967. # CONFIG_VIDEO_USBTV is not set
  2968. #
  2969. # Webcam, TV (analog/digital) USB devices
  2970. #
  2971. # CONFIG_VIDEO_EM28XX is not set
  2972. # CONFIG_MEDIA_PCI_SUPPORT is not set
  2973. CONFIG_V4L_PLATFORM_DRIVERS=y
  2974. # CONFIG_VIDEO_CAFE_CCIC is not set
  2975. CONFIG_SOC_CAMERA=m
  2976. CONFIG_SOC_CAMERA_PLATFORM=m
  2977. # CONFIG_VIDEO_XILINX is not set
  2978. CONFIG_V4L_MEM2MEM_DRIVERS=y
  2979. # CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set
  2980. # CONFIG_VIDEO_SH_VEU is not set
  2981. CONFIG_V4L_TEST_DRIVERS=y
  2982. CONFIG_VIDEO_VIVID=m
  2983. CONFIG_VIDEO_VIVID_MAX_DEVS=64
  2984. # CONFIG_VIDEO_VIM2M is not set
  2985. #
  2986. # Supported MMC/SDIO adapters
  2987. #
  2988. # CONFIG_CYPRESS_FIRMWARE is not set
  2989. CONFIG_VIDEO_V4L2_TPG=m
  2990. #
  2991. # Media ancillary drivers (tuners, sensors, i2c, spi, frontends)
  2992. #
  2993. # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
  2994. #
  2995. # I2C Encoders, decoders, sensors and other helper chips
  2996. #
  2997. #
  2998. # Audio decoders, processors and mixers
  2999. #
  3000. # CONFIG_VIDEO_TVAUDIO is not set
  3001. # CONFIG_VIDEO_TDA7432 is not set
  3002. # CONFIG_VIDEO_TDA9840 is not set
  3003. # CONFIG_VIDEO_TEA6415C is not set
  3004. # CONFIG_VIDEO_TEA6420 is not set
  3005. # CONFIG_VIDEO_MSP3400 is not set
  3006. # CONFIG_VIDEO_CS3308 is not set
  3007. # CONFIG_VIDEO_CS5345 is not set
  3008. # CONFIG_VIDEO_CS53L32A is not set
  3009. # CONFIG_VIDEO_TLV320AIC23B is not set
  3010. # CONFIG_VIDEO_UDA1342 is not set
  3011. # CONFIG_VIDEO_WM8775 is not set
  3012. # CONFIG_VIDEO_WM8739 is not set
  3013. # CONFIG_VIDEO_VP27SMPX is not set
  3014. # CONFIG_VIDEO_SONY_BTF_MPX is not set
  3015. #
  3016. # RDS decoders
  3017. #
  3018. # CONFIG_VIDEO_SAA6588 is not set
  3019. #
  3020. # Video decoders
  3021. #
  3022. CONFIG_VIDEO_ADV7180=m
  3023. # CONFIG_VIDEO_ADV7183 is not set
  3024. # CONFIG_VIDEO_ADV7604 is not set
  3025. # CONFIG_VIDEO_ADV7842 is not set
  3026. # CONFIG_VIDEO_BT819 is not set
  3027. # CONFIG_VIDEO_BT856 is not set
  3028. # CONFIG_VIDEO_BT866 is not set
  3029. # CONFIG_VIDEO_KS0127 is not set
  3030. CONFIG_VIDEO_ML86V7667=m
  3031. # CONFIG_VIDEO_AD5820 is not set
  3032. # CONFIG_VIDEO_SAA7110 is not set
  3033. # CONFIG_VIDEO_SAA711X is not set
  3034. # CONFIG_VIDEO_TC358743 is not set
  3035. # CONFIG_VIDEO_TVP514X is not set
  3036. # CONFIG_VIDEO_TVP5150 is not set
  3037. # CONFIG_VIDEO_TVP7002 is not set
  3038. # CONFIG_VIDEO_TW2804 is not set
  3039. # CONFIG_VIDEO_TW9903 is not set
  3040. # CONFIG_VIDEO_TW9906 is not set
  3041. # CONFIG_VIDEO_VPX3220 is not set
  3042. #
  3043. # Video and audio decoders
  3044. #
  3045. # CONFIG_VIDEO_SAA717X is not set
  3046. # CONFIG_VIDEO_CX25840 is not set
  3047. #
  3048. # Video encoders
  3049. #
  3050. # CONFIG_VIDEO_SAA7127 is not set
  3051. # CONFIG_VIDEO_SAA7185 is not set
  3052. # CONFIG_VIDEO_ADV7170 is not set
  3053. # CONFIG_VIDEO_ADV7175 is not set
  3054. # CONFIG_VIDEO_ADV7343 is not set
  3055. # CONFIG_VIDEO_ADV7393 is not set
  3056. # CONFIG_VIDEO_ADV7511 is not set
  3057. # CONFIG_VIDEO_AD9389B is not set
  3058. # CONFIG_VIDEO_AK881X is not set
  3059. # CONFIG_VIDEO_THS8200 is not set
  3060. #
  3061. # Camera sensor devices
  3062. #
  3063. CONFIG_VIDEO_OV2659=m
  3064. # CONFIG_VIDEO_OV7640 is not set
  3065. # CONFIG_VIDEO_OV7670 is not set
  3066. # CONFIG_VIDEO_OV9650 is not set
  3067. CONFIG_VIDEO_OV1063X=m
  3068. CONFIG_VIDEO_OV490=m
  3069. # CONFIG_VIDEO_VS6624 is not set
  3070. # CONFIG_VIDEO_MT9M032 is not set
  3071. # CONFIG_VIDEO_MT9M111 is not set
  3072. # CONFIG_VIDEO_MT9P031 is not set
  3073. # CONFIG_VIDEO_MT9T001 is not set
  3074. # CONFIG_VIDEO_MT9V011 is not set
  3075. # CONFIG_VIDEO_MT9V032 is not set
  3076. CONFIG_VIDEO_MT9T11X=m
  3077. # CONFIG_VIDEO_SR030PC30 is not set
  3078. # CONFIG_VIDEO_NOON010PC30 is not set
  3079. # CONFIG_VIDEO_M5MOLS is not set
  3080. # CONFIG_VIDEO_S5K6AA is not set
  3081. # CONFIG_VIDEO_S5K6A3 is not set
  3082. # CONFIG_VIDEO_S5K4ECGX is not set
  3083. # CONFIG_VIDEO_S5K5BAF is not set
  3084. # CONFIG_VIDEO_SMIAPP is not set
  3085. # CONFIG_VIDEO_S5C73M3 is not set
  3086. #
  3087. # Flash devices
  3088. #
  3089. # CONFIG_VIDEO_ADP1653 is not set
  3090. # CONFIG_VIDEO_AS3645A is not set
  3091. # CONFIG_VIDEO_LM3560 is not set
  3092. # CONFIG_VIDEO_LM3646 is not set
  3093. #
  3094. # Video improvement chips
  3095. #
  3096. # CONFIG_VIDEO_UPD64031A is not set
  3097. # CONFIG_VIDEO_UPD64083 is not set
  3098. #
  3099. # Audio/Video compression chips
  3100. #
  3101. # CONFIG_VIDEO_SAA6752HS is not set
  3102. #
  3103. # Miscellaneous helper chips
  3104. #
  3105. # CONFIG_VIDEO_THS7303 is not set
  3106. # CONFIG_VIDEO_M52790 is not set
  3107. #
  3108. # Sensors used on soc_camera driver
  3109. #
  3110. #
  3111. # soc_camera sensor drivers
  3112. #
  3113. # CONFIG_SOC_CAMERA_IMX074 is not set
  3114. # CONFIG_SOC_CAMERA_MT9M001 is not set
  3115. # CONFIG_SOC_CAMERA_MT9M111 is not set
  3116. # CONFIG_SOC_CAMERA_MT9T031 is not set
  3117. # CONFIG_SOC_CAMERA_MT9T112 is not set
  3118. # CONFIG_SOC_CAMERA_MT9V022 is not set
  3119. # CONFIG_SOC_CAMERA_OV2640 is not set
  3120. # CONFIG_SOC_CAMERA_OV5642 is not set
  3121. # CONFIG_SOC_CAMERA_OV6650 is not set
  3122. # CONFIG_SOC_CAMERA_OV772X is not set
  3123. # CONFIG_SOC_CAMERA_OV9640 is not set
  3124. # CONFIG_SOC_CAMERA_OV9740 is not set
  3125. # CONFIG_SOC_CAMERA_RJ54N1 is not set
  3126. # CONFIG_SOC_CAMERA_TW9910 is not set
  3127. #
  3128. # SPI helper chips
  3129. #
  3130. # CONFIG_VIDEO_GS1662 is not set
  3131. #
  3132. # Customise DVB Frontends
  3133. #
  3134. CONFIG_DVB_AU8522=m
  3135. CONFIG_DVB_AU8522_V4L=m
  3136. CONFIG_DVB_TUNER_DIB0070=m
  3137. CONFIG_DVB_TUNER_DIB0090=m
  3138. #
  3139. # Tools to develop new frontends
  3140. #
  3141. # CONFIG_DVB_DUMMY_FE is not set
  3142. #
  3143. # Graphics support
  3144. #
  3145. # CONFIG_VGA_ARB is not set
  3146. # CONFIG_IMX_IPUV3_CORE is not set
  3147. CONFIG_DRM=y
  3148. # CONFIG_DRM_DP_AUX_CHARDEV is not set
  3149. CONFIG_DRM_KMS_HELPER=y
  3150. CONFIG_DRM_KMS_FB_HELPER=y
  3151. CONFIG_DRM_FBDEV_EMULATION=y
  3152. # CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
  3153. CONFIG_DRM_GEM_CMA_HELPER=y
  3154. CONFIG_DRM_KMS_CMA_HELPER=y
  3155. #
  3156. # I2C encoder or helper chips
  3157. #
  3158. # CONFIG_DRM_I2C_CH7006 is not set
  3159. # CONFIG_DRM_I2C_SIL164 is not set
  3160. CONFIG_DRM_I2C_NXP_TDA998X=y
  3161. # CONFIG_DRM_HDLCD is not set
  3162. # CONFIG_DRM_MALI_DISPLAY is not set
  3163. # CONFIG_DRM_RADEON is not set
  3164. # CONFIG_DRM_AMDGPU is not set
  3165. #
  3166. # ACP (Audio CoProcessor) Configuration
  3167. #
  3168. # CONFIG_DRM_NOUVEAU is not set
  3169. # CONFIG_DRM_VGEM is not set
  3170. # CONFIG_DRM_EXYNOS is not set
  3171. # CONFIG_DRM_UDL is not set
  3172. # CONFIG_DRM_AST is not set
  3173. # CONFIG_DRM_MGAG200 is not set
  3174. # CONFIG_DRM_CIRRUS_QEMU is not set
  3175. # CONFIG_DRM_ARMADA is not set
  3176. CONFIG_DRM_OMAP=y
  3177. CONFIG_DRM_OMAP_WB=y
  3178. CONFIG_OMAP2_DSS_INIT=y
  3179. CONFIG_OMAP_DSS_BASE=y
  3180. CONFIG_OMAP2_DSS=y
  3181. # CONFIG_OMAP2_DSS_DEBUG is not set
  3182. CONFIG_OMAP2_DSS_DEBUGFS=y
  3183. # CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS is not set
  3184. CONFIG_OMAP2_DSS_DPI=y
  3185. # CONFIG_OMAP2_DSS_VENC is not set
  3186. CONFIG_OMAP2_DSS_HDMI_COMMON=y
  3187. CONFIG_OMAP4_DSS_HDMI=y
  3188. CONFIG_OMAP5_DSS_HDMI=y
  3189. # CONFIG_OMAP2_DSS_SDI is not set
  3190. # CONFIG_OMAP2_DSS_DSI is not set
  3191. CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0
  3192. CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y
  3193. CONFIG_TI_DSS6=y
  3194. #
  3195. # OMAPDRM External Display Device Drivers
  3196. #
  3197. # CONFIG_DRM_OMAP_ENCODER_OPA362 is not set
  3198. # CONFIG_DRM_OMAP_ENCODER_TFP410 is not set
  3199. CONFIG_DRM_OMAP_ENCODER_TPD12S015=y
  3200. CONFIG_DRM_OMAP_ENCODER_TC358768=y
  3201. CONFIG_DRM_OMAP_DRA7EVM_ENCODER_TPD12S015=y
  3202. CONFIG_DRM_OMAP_ENCODER_SII9022=y
  3203. CONFIG_DRM_OMAP_ENCODER_SII9022_AUDIO_CODEC=y
  3204. # CONFIG_DRM_OMAP_CONNECTOR_DVI is not set
  3205. CONFIG_DRM_OMAP_CONNECTOR_HDMI=y
  3206. # CONFIG_DRM_OMAP_CONNECTOR_ANALOG_TV is not set
  3207. CONFIG_DRM_OMAP_PANEL_DPI=y
  3208. # CONFIG_DRM_OMAP_PANEL_DSI_CM is not set
  3209. # CONFIG_DRM_OMAP_PANEL_SONY_ACX565AKM is not set
  3210. # CONFIG_DRM_OMAP_PANEL_LGPHILIPS_LB035Q02 is not set
  3211. # CONFIG_DRM_OMAP_PANEL_SHARP_LS037V7DW01 is not set
  3212. # CONFIG_DRM_OMAP_PANEL_TPO_TD028TTEC1 is not set
  3213. # CONFIG_DRM_OMAP_PANEL_TPO_TD043MTEA1 is not set
  3214. # CONFIG_DRM_OMAP_PANEL_NEC_NL8048HL11 is not set
  3215. CONFIG_DRM_TILCDC=y
  3216. CONFIG_DRM_TILCDC_SLAVE_COMPAT=y
  3217. # CONFIG_DRM_QXL is not set
  3218. # CONFIG_DRM_BOCHS is not set
  3219. # CONFIG_DRM_VIRTIO_GPU is not set
  3220. # CONFIG_DRM_FSL_DCU is not set
  3221. CONFIG_DRM_BRIDGE=y
  3222. #
  3223. # Display Interface Bridges
  3224. #
  3225. # CONFIG_DRM_ANALOGIX_ANX78XX is not set
  3226. # CONFIG_DRM_DUMB_VGA_DAC is not set
  3227. # CONFIG_DRM_NXP_PTN3460 is not set
  3228. # CONFIG_DRM_PARADE_PS8622 is not set
  3229. # CONFIG_DRM_SII902X is not set
  3230. # CONFIG_DRM_TOSHIBA_TC358767 is not set
  3231. # CONFIG_DRM_TI_TFP410 is not set
  3232. # CONFIG_DRM_I2C_ADV7511 is not set
  3233. # CONFIG_DRM_STI is not set
  3234. # CONFIG_DRM_ARCPGU is not set
  3235. # CONFIG_DRM_LEGACY is not set
  3236. #
  3237. # Frame buffer Devices
  3238. #
  3239. CONFIG_FB=y
  3240. # CONFIG_FIRMWARE_EDID is not set
  3241. CONFIG_FB_CMDLINE=y
  3242. CONFIG_FB_NOTIFY=y
  3243. # CONFIG_FB_DDC is not set
  3244. # CONFIG_FB_BOOT_VESA_SUPPORT is not set
  3245. CONFIG_FB_CFB_FILLRECT=y
  3246. CONFIG_FB_CFB_COPYAREA=y
  3247. CONFIG_FB_CFB_IMAGEBLIT=y
  3248. # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
  3249. CONFIG_FB_SYS_FILLRECT=y
  3250. CONFIG_FB_SYS_COPYAREA=y
  3251. CONFIG_FB_SYS_IMAGEBLIT=y
  3252. # CONFIG_FB_FOREIGN_ENDIAN is not set
  3253. CONFIG_FB_SYS_FOPS=y
  3254. CONFIG_FB_DEFERRED_IO=y
  3255. # CONFIG_FB_SVGALIB is not set
  3256. # CONFIG_FB_MACMODES is not set
  3257. CONFIG_FB_BACKLIGHT=y
  3258. # CONFIG_FB_MODE_HELPERS is not set
  3259. # CONFIG_FB_TILEBLITTING is not set
  3260. #
  3261. # Frame buffer hardware drivers
  3262. #
  3263. # CONFIG_FB_CIRRUS is not set
  3264. # CONFIG_FB_PM2 is not set
  3265. # CONFIG_FB_CYBER2000 is not set
  3266. # CONFIG_FB_ASILIANT is not set
  3267. # CONFIG_FB_IMSTT is not set
  3268. CONFIG_FB_EFI=y
  3269. # CONFIG_FB_OPENCORES is not set
  3270. # CONFIG_FB_S1D13XXX is not set
  3271. # CONFIG_FB_NVIDIA is not set
  3272. # CONFIG_FB_RIVA is not set
  3273. # CONFIG_FB_I740 is not set
  3274. # CONFIG_FB_MATROX is not set
  3275. # CONFIG_FB_RADEON is not set
  3276. # CONFIG_FB_ATY128 is not set
  3277. # CONFIG_FB_ATY is not set
  3278. # CONFIG_FB_S3 is not set
  3279. # CONFIG_FB_SAVAGE is not set
  3280. # CONFIG_FB_SIS is not set
  3281. # CONFIG_FB_NEOMAGIC is not set
  3282. # CONFIG_FB_KYRO is not set
  3283. # CONFIG_FB_3DFX is not set
  3284. # CONFIG_FB_VOODOO1 is not set
  3285. # CONFIG_FB_VT8623 is not set
  3286. # CONFIG_FB_TRIDENT is not set
  3287. # CONFIG_FB_ARK is not set
  3288. # CONFIG_FB_PM3 is not set
  3289. # CONFIG_FB_CARMINE is not set
  3290. # CONFIG_FB_SMSCUFX is not set
  3291. # CONFIG_FB_UDL is not set
  3292. # CONFIG_FB_IBM_GXT4500 is not set
  3293. # CONFIG_FB_DA8XX is not set
  3294. # CONFIG_FB_VIRTUAL is not set
  3295. # CONFIG_FB_METRONOME is not set
  3296. # CONFIG_FB_MB862XX is not set
  3297. # CONFIG_FB_BROADSHEET is not set
  3298. # CONFIG_FB_AUO_K190X is not set
  3299. CONFIG_FB_SIMPLE=y
  3300. CONFIG_FB_SSD1307=y
  3301. # CONFIG_FB_SM712 is not set
  3302. CONFIG_BACKLIGHT_LCD_SUPPORT=y
  3303. # CONFIG_LCD_CLASS_DEVICE is not set
  3304. CONFIG_BACKLIGHT_CLASS_DEVICE=y
  3305. CONFIG_BACKLIGHT_GENERIC=y
  3306. CONFIG_BACKLIGHT_PWM=y
  3307. # CONFIG_BACKLIGHT_PM8941_WLED is not set
  3308. # CONFIG_BACKLIGHT_ADP8860 is not set
  3309. # CONFIG_BACKLIGHT_ADP8870 is not set
  3310. # CONFIG_BACKLIGHT_LM3630A is not set
  3311. # CONFIG_BACKLIGHT_LM3639 is not set
  3312. # CONFIG_BACKLIGHT_LP855X is not set
  3313. # CONFIG_BACKLIGHT_TPS65217 is not set
  3314. CONFIG_BACKLIGHT_GPIO=y
  3315. # CONFIG_BACKLIGHT_LV5207LP is not set
  3316. # CONFIG_BACKLIGHT_BD6107 is not set
  3317. CONFIG_BACKLIGHT_LED=y
  3318. # CONFIG_VGASTATE is not set
  3319. CONFIG_VIDEOMODE_HELPERS=y
  3320. CONFIG_HDMI=y
  3321. #
  3322. # Console display driver support
  3323. #
  3324. CONFIG_DUMMY_CONSOLE=y
  3325. CONFIG_FRAMEBUFFER_CONSOLE=y
  3326. CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
  3327. CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
  3328. # CONFIG_LOGO is not set
  3329. CONFIG_SOUND=y
  3330. # CONFIG_SOUND_OSS_CORE is not set
  3331. CONFIG_SND=y
  3332. CONFIG_SND_TIMER=y
  3333. CONFIG_SND_PCM=y
  3334. CONFIG_SND_PCM_ELD=y
  3335. CONFIG_SND_PCM_IEC958=y
  3336. CONFIG_SND_DMAENGINE_PCM=y
  3337. CONFIG_SND_HWDEP=m
  3338. CONFIG_SND_RAWMIDI=m
  3339. CONFIG_SND_JACK=y
  3340. CONFIG_SND_JACK_INPUT_DEV=y
  3341. # CONFIG_SND_SEQUENCER is not set
  3342. # CONFIG_SND_MIXER_OSS is not set
  3343. # CONFIG_SND_PCM_OSS is not set
  3344. CONFIG_SND_PCM_TIMER=y
  3345. # CONFIG_SND_HRTIMER is not set
  3346. CONFIG_SND_DYNAMIC_MINORS=y
  3347. CONFIG_SND_MAX_CARDS=32
  3348. CONFIG_SND_SUPPORT_OLD_API=y
  3349. CONFIG_SND_PROC_FS=y
  3350. CONFIG_SND_VERBOSE_PROCFS=y
  3351. # CONFIG_SND_VERBOSE_PRINTK is not set
  3352. # CONFIG_SND_DEBUG is not set
  3353. # CONFIG_SND_RAWMIDI_SEQ is not set
  3354. # CONFIG_SND_OPL3_LIB_SEQ is not set
  3355. # CONFIG_SND_OPL4_LIB_SEQ is not set
  3356. # CONFIG_SND_SBAWE_SEQ is not set
  3357. # CONFIG_SND_EMU10K1_SEQ is not set
  3358. CONFIG_SND_DRIVERS=y
  3359. # CONFIG_SND_DUMMY is not set
  3360. # CONFIG_SND_ALOOP is not set
  3361. # CONFIG_SND_MTPAV is not set
  3362. # CONFIG_SND_SERIAL_U16550 is not set
  3363. # CONFIG_SND_MPU401 is not set
  3364. CONFIG_SND_PCI=y
  3365. # CONFIG_SND_AD1889 is not set
  3366. # CONFIG_SND_ATIIXP is not set
  3367. # CONFIG_SND_ATIIXP_MODEM is not set
  3368. # CONFIG_SND_AU8810 is not set
  3369. # CONFIG_SND_AU8820 is not set
  3370. # CONFIG_SND_AU8830 is not set
  3371. # CONFIG_SND_AW2 is not set
  3372. # CONFIG_SND_BT87X is not set
  3373. # CONFIG_SND_CA0106 is not set
  3374. # CONFIG_SND_CMIPCI is not set
  3375. # CONFIG_SND_OXYGEN is not set
  3376. # CONFIG_SND_CS4281 is not set
  3377. # CONFIG_SND_CS46XX is not set
  3378. # CONFIG_SND_CTXFI is not set
  3379. # CONFIG_SND_DARLA20 is not set
  3380. # CONFIG_SND_GINA20 is not set
  3381. # CONFIG_SND_LAYLA20 is not set
  3382. # CONFIG_SND_DARLA24 is not set
  3383. # CONFIG_SND_GINA24 is not set
  3384. # CONFIG_SND_LAYLA24 is not set
  3385. # CONFIG_SND_MONA is not set
  3386. # CONFIG_SND_MIA is not set
  3387. # CONFIG_SND_ECHO3G is not set
  3388. # CONFIG_SND_INDIGO is not set
  3389. # CONFIG_SND_INDIGOIO is not set
  3390. # CONFIG_SND_INDIGODJ is not set
  3391. # CONFIG_SND_INDIGOIOX is not set
  3392. # CONFIG_SND_INDIGODJX is not set
  3393. # CONFIG_SND_ENS1370 is not set
  3394. # CONFIG_SND_ENS1371 is not set
  3395. # CONFIG_SND_FM801 is not set
  3396. # CONFIG_SND_HDSP is not set
  3397. # CONFIG_SND_HDSPM is not set
  3398. # CONFIG_SND_ICE1724 is not set
  3399. # CONFIG_SND_INTEL8X0 is not set
  3400. # CONFIG_SND_INTEL8X0M is not set
  3401. # CONFIG_SND_KORG1212 is not set
  3402. # CONFIG_SND_LOLA is not set
  3403. # CONFIG_SND_LX6464ES is not set
  3404. # CONFIG_SND_MIXART is not set
  3405. # CONFIG_SND_NM256 is not set
  3406. # CONFIG_SND_PCXHR is not set
  3407. # CONFIG_SND_RIPTIDE is not set
  3408. # CONFIG_SND_RME32 is not set
  3409. # CONFIG_SND_RME96 is not set
  3410. # CONFIG_SND_RME9652 is not set
  3411. # CONFIG_SND_SE6X is not set
  3412. # CONFIG_SND_VIA82XX is not set
  3413. # CONFIG_SND_VIA82XX_MODEM is not set
  3414. # CONFIG_SND_VIRTUOSO is not set
  3415. # CONFIG_SND_VX222 is not set
  3416. # CONFIG_SND_YMFPCI is not set
  3417. #
  3418. # HD-Audio
  3419. #
  3420. # CONFIG_SND_HDA_INTEL is not set
  3421. CONFIG_SND_HDA_PREALLOC_SIZE=64
  3422. # CONFIG_SND_ARM is not set
  3423. # CONFIG_SND_SPI is not set
  3424. CONFIG_SND_USB=y
  3425. CONFIG_SND_USB_AUDIO=m
  3426. # CONFIG_SND_USB_UA101 is not set
  3427. # CONFIG_SND_USB_CAIAQ is not set
  3428. # CONFIG_SND_USB_6FIRE is not set
  3429. # CONFIG_SND_USB_HIFACE is not set
  3430. # CONFIG_SND_BCD2000 is not set
  3431. # CONFIG_SND_USB_POD is not set
  3432. # CONFIG_SND_USB_PODHD is not set
  3433. # CONFIG_SND_USB_TONEPORT is not set
  3434. # CONFIG_SND_USB_VARIAX is not set
  3435. CONFIG_SND_SOC=y
  3436. CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
  3437. # CONFIG_SND_SOC_AMD_ACP is not set
  3438. CONFIG_SND_ATMEL_SOC=m
  3439. CONFIG_SND_EDMA_SOC=y
  3440. # CONFIG_SND_DAVINCI_SOC_I2S is not set
  3441. CONFIG_SND_DAVINCI_SOC_MCASP=y
  3442. CONFIG_SND_DAVINCI_SOC_GENERIC_EVM=m
  3443. CONFIG_SND_AM33XX_SOC_EVM=m
  3444. # CONFIG_SND_DESIGNWARE_I2S is not set
  3445. #
  3446. # SoC Audio for Freescale CPUs
  3447. #
  3448. #
  3449. # Common SoC Audio options for Freescale CPUs:
  3450. #
  3451. # CONFIG_SND_SOC_FSL_ASRC is not set
  3452. CONFIG_SND_SOC_FSL_SAI=m
  3453. # CONFIG_SND_SOC_FSL_SSI is not set
  3454. # CONFIG_SND_SOC_FSL_SPDIF is not set
  3455. # CONFIG_SND_SOC_FSL_ESAI is not set
  3456. # CONFIG_SND_SOC_IMX_AUDMUX is not set
  3457. CONFIG_SND_OMAP_SOC=y
  3458. CONFIG_SND_OMAP_SOC_HDMI_AUDIO=m
  3459. # CONFIG_SND_OMAP_SOC_RX51 is not set
  3460. # CONFIG_SND_SOC_IMG is not set
  3461. # CONFIG_SND_SOC_XTFPGA_I2S is not set
  3462. CONFIG_SND_SOC_I2C_AND_SPI=y
  3463. #
  3464. # CODEC drivers
  3465. #
  3466. # CONFIG_SND_SOC_AC97_CODEC is not set
  3467. # CONFIG_SND_SOC_ADAU1701 is not set
  3468. # CONFIG_SND_SOC_ADAU7002 is not set
  3469. # CONFIG_SND_SOC_AK4104 is not set
  3470. # CONFIG_SND_SOC_AK4554 is not set
  3471. # CONFIG_SND_SOC_AK4613 is not set
  3472. CONFIG_SND_SOC_AK4642=m
  3473. # CONFIG_SND_SOC_AK5386 is not set
  3474. # CONFIG_SND_SOC_ALC5623 is not set
  3475. # CONFIG_SND_SOC_BT_SCO is not set
  3476. # CONFIG_SND_SOC_CS35L32 is not set
  3477. # CONFIG_SND_SOC_CS35L33 is not set
  3478. # CONFIG_SND_SOC_CS42L51_I2C is not set
  3479. # CONFIG_SND_SOC_CS42L52 is not set
  3480. # CONFIG_SND_SOC_CS42L56 is not set
  3481. # CONFIG_SND_SOC_CS42L73 is not set
  3482. # CONFIG_SND_SOC_CS4265 is not set
  3483. # CONFIG_SND_SOC_CS4270 is not set
  3484. # CONFIG_SND_SOC_CS4271_I2C is not set
  3485. # CONFIG_SND_SOC_CS4271_SPI is not set
  3486. # CONFIG_SND_SOC_CS42XX8_I2C is not set
  3487. # CONFIG_SND_SOC_CS4349 is not set
  3488. # CONFIG_SND_SOC_CS53L30 is not set
  3489. CONFIG_SND_SOC_HDMI_CODEC=y
  3490. # CONFIG_SND_SOC_ES8328 is not set
  3491. # CONFIG_SND_SOC_GTM601 is not set
  3492. # CONFIG_SND_SOC_INNO_RK3036 is not set
  3493. # CONFIG_SND_SOC_MAX98504 is not set
  3494. # CONFIG_SND_SOC_MAX9860 is not set
  3495. # CONFIG_SND_SOC_PCM1681 is not set
  3496. # CONFIG_SND_SOC_PCM179X_I2C is not set
  3497. # CONFIG_SND_SOC_PCM179X_SPI is not set
  3498. # CONFIG_SND_SOC_PCM3168A_I2C is not set
  3499. # CONFIG_SND_SOC_PCM3168A_SPI is not set
  3500. # CONFIG_SND_SOC_PCM512x_I2C is not set
  3501. # CONFIG_SND_SOC_PCM512x_SPI is not set
  3502. # CONFIG_SND_SOC_RT5616 is not set
  3503. # CONFIG_SND_SOC_RT5631 is not set
  3504. # CONFIG_SND_SOC_RT5677_SPI is not set
  3505. CONFIG_SND_SOC_SGTL5000=m
  3506. # CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
  3507. CONFIG_SND_SOC_SPDIF=m
  3508. # CONFIG_SND_SOC_SSM2602_SPI is not set
  3509. # CONFIG_SND_SOC_SSM2602_I2C is not set
  3510. # CONFIG_SND_SOC_SSM4567 is not set
  3511. # CONFIG_SND_SOC_STA32X is not set
  3512. # CONFIG_SND_SOC_STA350 is not set
  3513. CONFIG_SND_SOC_STI_SAS=m
  3514. # CONFIG_SND_SOC_TAS2552 is not set
  3515. # CONFIG_SND_SOC_TAS5086 is not set
  3516. # CONFIG_SND_SOC_TAS571X is not set
  3517. # CONFIG_SND_SOC_TAS5720 is not set
  3518. # CONFIG_SND_SOC_TFA9879 is not set
  3519. # CONFIG_SND_SOC_TLV320AIC23_I2C is not set
  3520. # CONFIG_SND_SOC_TLV320AIC23_SPI is not set
  3521. CONFIG_SND_SOC_TLV320AIC31XX=m
  3522. CONFIG_SND_SOC_TLV320AIC3X=m
  3523. # CONFIG_SND_SOC_TS3A227E is not set
  3524. # CONFIG_SND_SOC_WM8510 is not set
  3525. # CONFIG_SND_SOC_WM8523 is not set
  3526. # CONFIG_SND_SOC_WM8580 is not set
  3527. # CONFIG_SND_SOC_WM8711 is not set
  3528. # CONFIG_SND_SOC_WM8728 is not set
  3529. # CONFIG_SND_SOC_WM8731 is not set
  3530. # CONFIG_SND_SOC_WM8737 is not set
  3531. # CONFIG_SND_SOC_WM8741 is not set
  3532. # CONFIG_SND_SOC_WM8750 is not set
  3533. # CONFIG_SND_SOC_WM8753 is not set
  3534. # CONFIG_SND_SOC_WM8770 is not set
  3535. # CONFIG_SND_SOC_WM8776 is not set
  3536. # CONFIG_SND_SOC_WM8804_I2C is not set
  3537. # CONFIG_SND_SOC_WM8804_SPI is not set
  3538. # CONFIG_SND_SOC_WM8903 is not set
  3539. # CONFIG_SND_SOC_WM8960 is not set
  3540. # CONFIG_SND_SOC_WM8962 is not set
  3541. # CONFIG_SND_SOC_WM8974 is not set
  3542. CONFIG_SND_SOC_WM8978=m
  3543. # CONFIG_SND_SOC_WM8985 is not set
  3544. # CONFIG_SND_SOC_NAU8810 is not set
  3545. # CONFIG_SND_SOC_TPA6130A2 is not set
  3546. CONFIG_SND_SIMPLE_CARD_UTILS=m
  3547. CONFIG_SND_SIMPLE_CARD=m
  3548. # CONFIG_SND_SIMPLE_SCU_CARD is not set
  3549. # CONFIG_SOUND_PRIME is not set
  3550. #
  3551. # HID support
  3552. #
  3553. CONFIG_HID=y
  3554. # CONFIG_HID_BATTERY_STRENGTH is not set
  3555. # CONFIG_HIDRAW is not set
  3556. # CONFIG_UHID is not set
  3557. CONFIG_HID_GENERIC=y
  3558. #
  3559. # Special HID drivers
  3560. #
  3561. # CONFIG_HID_A4TECH is not set
  3562. # CONFIG_HID_ACRUX is not set
  3563. # CONFIG_HID_APPLE is not set
  3564. # CONFIG_HID_APPLEIR is not set
  3565. # CONFIG_HID_AUREAL is not set
  3566. # CONFIG_HID_BELKIN is not set
  3567. # CONFIG_HID_BETOP_FF is not set
  3568. # CONFIG_HID_CHERRY is not set
  3569. # CONFIG_HID_CHICONY is not set
  3570. # CONFIG_HID_CORSAIR is not set
  3571. # CONFIG_HID_PRODIKEYS is not set
  3572. # CONFIG_HID_CMEDIA is not set
  3573. # CONFIG_HID_CP2112 is not set
  3574. # CONFIG_HID_CYPRESS is not set
  3575. # CONFIG_HID_DRAGONRISE is not set
  3576. # CONFIG_HID_EMS_FF is not set
  3577. # CONFIG_HID_ELECOM is not set
  3578. # CONFIG_HID_ELO is not set
  3579. # CONFIG_HID_EZKEY is not set
  3580. # CONFIG_HID_GEMBIRD is not set
  3581. # CONFIG_HID_GFRM is not set
  3582. # CONFIG_HID_HOLTEK is not set
  3583. # CONFIG_HID_GT683R is not set
  3584. # CONFIG_HID_KEYTOUCH is not set
  3585. # CONFIG_HID_KYE is not set
  3586. # CONFIG_HID_UCLOGIC is not set
  3587. # CONFIG_HID_WALTOP is not set
  3588. # CONFIG_HID_GYRATION is not set
  3589. # CONFIG_HID_ICADE is not set
  3590. # CONFIG_HID_TWINHAN is not set
  3591. # CONFIG_HID_KENSINGTON is not set
  3592. # CONFIG_HID_LCPOWER is not set
  3593. # CONFIG_HID_LED is not set
  3594. # CONFIG_HID_LENOVO is not set
  3595. # CONFIG_HID_LOGITECH is not set
  3596. # CONFIG_HID_MAGICMOUSE is not set
  3597. # CONFIG_HID_MICROSOFT is not set
  3598. # CONFIG_HID_MONTEREY is not set
  3599. # CONFIG_HID_MULTITOUCH is not set
  3600. # CONFIG_HID_NTRIG is not set
  3601. # CONFIG_HID_ORTEK is not set
  3602. # CONFIG_HID_PANTHERLORD is not set
  3603. # CONFIG_HID_PENMOUNT is not set
  3604. # CONFIG_HID_PETALYNX is not set
  3605. # CONFIG_HID_PICOLCD is not set
  3606. # CONFIG_HID_PLANTRONICS is not set
  3607. # CONFIG_HID_PRIMAX is not set
  3608. # CONFIG_HID_ROCCAT is not set
  3609. # CONFIG_HID_SAITEK is not set
  3610. # CONFIG_HID_SAMSUNG is not set
  3611. # CONFIG_HID_SONY is not set
  3612. # CONFIG_HID_SPEEDLINK is not set
  3613. # CONFIG_HID_STEELSERIES is not set
  3614. # CONFIG_HID_SUNPLUS is not set
  3615. # CONFIG_HID_RMI is not set
  3616. # CONFIG_HID_GREENASIA is not set
  3617. # CONFIG_HID_SMARTJOYPLUS is not set
  3618. # CONFIG_HID_TIVO is not set
  3619. # CONFIG_HID_TOPSEED is not set
  3620. # CONFIG_HID_THINGM is not set
  3621. # CONFIG_HID_THRUSTMASTER is not set
  3622. # CONFIG_HID_WACOM is not set
  3623. # CONFIG_HID_WIIMOTE is not set
  3624. # CONFIG_HID_XINMO is not set
  3625. # CONFIG_HID_ZEROPLUS is not set
  3626. # CONFIG_HID_ZYDACRON is not set
  3627. # CONFIG_HID_SENSOR_HUB is not set
  3628. # CONFIG_HID_ALPS is not set
  3629. #
  3630. # USB HID support
  3631. #
  3632. CONFIG_USB_HID=m
  3633. # CONFIG_HID_PID is not set
  3634. # CONFIG_USB_HIDDEV is not set
  3635. #
  3636. # USB HID Boot Protocol drivers
  3637. #
  3638. # CONFIG_USB_KBD is not set
  3639. # CONFIG_USB_MOUSE is not set
  3640. #
  3641. # I2C HID support
  3642. #
  3643. # CONFIG_I2C_HID is not set
  3644. CONFIG_USB_OHCI_LITTLE_ENDIAN=y
  3645. CONFIG_USB_SUPPORT=y
  3646. CONFIG_USB_COMMON=m
  3647. CONFIG_USB_ARCH_HAS_HCD=y
  3648. CONFIG_USB=m
  3649. # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
  3650. #
  3651. # Miscellaneous USB options
  3652. #
  3653. CONFIG_USB_DEFAULT_PERSIST=y
  3654. # CONFIG_USB_DYNAMIC_MINORS is not set
  3655. # CONFIG_USB_OTG is not set
  3656. # CONFIG_USB_OTG_WHITELIST is not set
  3657. # CONFIG_USB_OTG_BLACKLIST_HUB is not set
  3658. # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
  3659. # CONFIG_USB_MON is not set
  3660. # CONFIG_USB_WUSB_CBAF is not set
  3661. #
  3662. # USB Host Controller Drivers
  3663. #
  3664. # CONFIG_USB_C67X00_HCD is not set
  3665. CONFIG_USB_XHCI_HCD=m
  3666. CONFIG_USB_XHCI_PCI=m
  3667. CONFIG_USB_XHCI_PLATFORM=m
  3668. CONFIG_USB_EHCI_HCD=m
  3669. # CONFIG_USB_EHCI_ROOT_HUB_TT is not set
  3670. CONFIG_USB_EHCI_TT_NEWSCHED=y
  3671. CONFIG_USB_EHCI_PCI=m
  3672. CONFIG_USB_EHCI_HCD_OMAP=m
  3673. CONFIG_USB_EHCI_HCD_PLATFORM=m
  3674. # CONFIG_USB_OXU210HP_HCD is not set
  3675. # CONFIG_USB_ISP116X_HCD is not set
  3676. # CONFIG_USB_ISP1362_HCD is not set
  3677. # CONFIG_USB_FOTG210_HCD is not set
  3678. # CONFIG_USB_MAX3421_HCD is not set
  3679. CONFIG_USB_OHCI_HCD=m
  3680. CONFIG_USB_OHCI_HCD_PCI=m
  3681. CONFIG_USB_OHCI_HCD_PLATFORM=m
  3682. # CONFIG_USB_UHCI_HCD is not set
  3683. # CONFIG_USB_SL811_HCD is not set
  3684. CONFIG_USB_R8A66597_HCD=m
  3685. # CONFIG_USB_HCD_TEST_MODE is not set
  3686. #
  3687. # USB Device Class drivers
  3688. #
  3689. CONFIG_USB_ACM=m
  3690. # CONFIG_USB_PRINTER is not set
  3691. # CONFIG_USB_WDM is not set
  3692. # CONFIG_USB_TMC is not set
  3693. #
  3694. # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
  3695. #
  3696. #
  3697. # also be needed; see USB_STORAGE Help for more info
  3698. #
  3699. CONFIG_USB_STORAGE=m
  3700. # CONFIG_USB_STORAGE_DEBUG is not set
  3701. # CONFIG_USB_STORAGE_REALTEK is not set
  3702. # CONFIG_USB_STORAGE_DATAFAB is not set
  3703. # CONFIG_USB_STORAGE_FREECOM is not set
  3704. # CONFIG_USB_STORAGE_ISD200 is not set
  3705. # CONFIG_USB_STORAGE_USBAT is not set
  3706. # CONFIG_USB_STORAGE_SDDR09 is not set
  3707. # CONFIG_USB_STORAGE_SDDR55 is not set
  3708. # CONFIG_USB_STORAGE_JUMPSHOT is not set
  3709. # CONFIG_USB_STORAGE_ALAUDA is not set
  3710. # CONFIG_USB_STORAGE_ONETOUCH is not set
  3711. # CONFIG_USB_STORAGE_KARMA is not set
  3712. # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
  3713. # CONFIG_USB_STORAGE_ENE_UB6250 is not set
  3714. # CONFIG_USB_UAS is not set
  3715. #
  3716. # USB Imaging devices
  3717. #
  3718. # CONFIG_USB_MDC800 is not set
  3719. # CONFIG_USB_MICROTEK is not set
  3720. # CONFIG_USBIP_CORE is not set
  3721. CONFIG_USB_MUSB_HDRC=m
  3722. # CONFIG_USB_MUSB_HOST is not set
  3723. # CONFIG_USB_MUSB_GADGET is not set
  3724. CONFIG_USB_MUSB_DUAL_ROLE=y
  3725. #
  3726. # Platform Glue Layer
  3727. #
  3728. # CONFIG_USB_MUSB_TUSB6010 is not set
  3729. CONFIG_USB_MUSB_OMAP2PLUS=m
  3730. CONFIG_USB_MUSB_AM35X=m
  3731. CONFIG_USB_MUSB_DSPS=m
  3732. CONFIG_USB_MUSB_AM335X_CHILD=m
  3733. #
  3734. # MUSB DMA mode
  3735. #
  3736. # CONFIG_MUSB_PIO_ONLY is not set
  3737. # CONFIG_USB_INVENTRA_DMA is not set
  3738. CONFIG_USB_TI_CPPI41_DMA=y
  3739. CONFIG_USB_DWC3=m
  3740. # CONFIG_USB_DWC3_HOST is not set
  3741. # CONFIG_USB_DWC3_GADGET is not set
  3742. CONFIG_USB_DWC3_DUAL_ROLE=y
  3743. #
  3744. # Platform Glue Driver Support
  3745. #
  3746. CONFIG_USB_DWC3_OMAP=m
  3747. # CONFIG_USB_DWC3_PCI is not set
  3748. CONFIG_USB_DWC3_OF_SIMPLE=m
  3749. # CONFIG_USB_DWC2 is not set
  3750. # CONFIG_USB_CHIPIDEA is not set
  3751. CONFIG_USB_ISP1760=m
  3752. CONFIG_USB_ISP1760_HCD=y
  3753. CONFIG_USB_ISP1761_UDC=y
  3754. # CONFIG_USB_ISP1760_HOST_ROLE is not set
  3755. # CONFIG_USB_ISP1760_GADGET_ROLE is not set
  3756. CONFIG_USB_ISP1760_DUAL_ROLE=y
  3757. #
  3758. # USB port drivers
  3759. #
  3760. CONFIG_USB_SERIAL=m
  3761. # CONFIG_USB_SERIAL_GENERIC is not set
  3762. # CONFIG_USB_SERIAL_SIMPLE is not set
  3763. # CONFIG_USB_SERIAL_AIRCABLE is not set
  3764. # CONFIG_USB_SERIAL_ARK3116 is not set
  3765. # CONFIG_USB_SERIAL_BELKIN is not set
  3766. # CONFIG_USB_SERIAL_CH341 is not set
  3767. # CONFIG_USB_SERIAL_WHITEHEAT is not set
  3768. # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
  3769. # CONFIG_USB_SERIAL_CP210X is not set
  3770. # CONFIG_USB_SERIAL_CYPRESS_M8 is not set
  3771. # CONFIG_USB_SERIAL_EMPEG is not set
  3772. # CONFIG_USB_SERIAL_FTDI_SIO is not set
  3773. # CONFIG_USB_SERIAL_VISOR is not set
  3774. # CONFIG_USB_SERIAL_IPAQ is not set
  3775. # CONFIG_USB_SERIAL_IR is not set
  3776. # CONFIG_USB_SERIAL_EDGEPORT is not set
  3777. # CONFIG_USB_SERIAL_EDGEPORT_TI is not set
  3778. # CONFIG_USB_SERIAL_F81232 is not set
  3779. # CONFIG_USB_SERIAL_GARMIN is not set
  3780. # CONFIG_USB_SERIAL_IPW is not set
  3781. # CONFIG_USB_SERIAL_IUU is not set
  3782. # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
  3783. # CONFIG_USB_SERIAL_KEYSPAN is not set
  3784. # CONFIG_USB_SERIAL_KLSI is not set
  3785. # CONFIG_USB_SERIAL_KOBIL_SCT is not set
  3786. # CONFIG_USB_SERIAL_MCT_U232 is not set
  3787. # CONFIG_USB_SERIAL_METRO is not set
  3788. # CONFIG_USB_SERIAL_MOS7720 is not set
  3789. # CONFIG_USB_SERIAL_MOS7840 is not set
  3790. # CONFIG_USB_SERIAL_MXUPORT is not set
  3791. # CONFIG_USB_SERIAL_NAVMAN is not set
  3792. # CONFIG_USB_SERIAL_PL2303 is not set
  3793. # CONFIG_USB_SERIAL_OTI6858 is not set
  3794. # CONFIG_USB_SERIAL_QCAUX is not set
  3795. # CONFIG_USB_SERIAL_QUALCOMM is not set
  3796. # CONFIG_USB_SERIAL_SPCP8X5 is not set
  3797. # CONFIG_USB_SERIAL_SAFE is not set
  3798. # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
  3799. # CONFIG_USB_SERIAL_SYMBOL is not set
  3800. # CONFIG_USB_SERIAL_TI is not set
  3801. # CONFIG_USB_SERIAL_CYBERJACK is not set
  3802. # CONFIG_USB_SERIAL_XIRCOM is not set
  3803. # CONFIG_USB_SERIAL_OPTION is not set
  3804. # CONFIG_USB_SERIAL_OMNINET is not set
  3805. # CONFIG_USB_SERIAL_OPTICON is not set
  3806. # CONFIG_USB_SERIAL_XSENS_MT is not set
  3807. # CONFIG_USB_SERIAL_WISHBONE is not set
  3808. # CONFIG_USB_SERIAL_SSU100 is not set
  3809. # CONFIG_USB_SERIAL_QT2 is not set
  3810. # CONFIG_USB_SERIAL_DEBUG is not set
  3811. #
  3812. # USB Miscellaneous drivers
  3813. #
  3814. # CONFIG_USB_EMI62 is not set
  3815. # CONFIG_USB_EMI26 is not set
  3816. # CONFIG_USB_ADUTUX is not set
  3817. # CONFIG_USB_SEVSEG is not set
  3818. # CONFIG_USB_RIO500 is not set
  3819. # CONFIG_USB_LEGOTOWER is not set
  3820. # CONFIG_USB_LCD is not set
  3821. # CONFIG_USB_CYPRESS_CY7C63 is not set
  3822. # CONFIG_USB_CYTHERM is not set
  3823. # CONFIG_USB_IDMOUSE is not set
  3824. # CONFIG_USB_FTDI_ELAN is not set
  3825. # CONFIG_USB_APPLEDISPLAY is not set
  3826. # CONFIG_USB_SISUSBVGA is not set
  3827. # CONFIG_USB_LD is not set
  3828. # CONFIG_USB_TRANCEVIBRATOR is not set
  3829. # CONFIG_USB_IOWARRIOR is not set
  3830. CONFIG_USB_TEST=m
  3831. # CONFIG_USB_EHSET_TEST_FIXTURE is not set
  3832. # CONFIG_USB_ISIGHTFW is not set
  3833. # CONFIG_USB_YUREX is not set
  3834. # CONFIG_USB_EZUSB_FX2 is not set
  3835. # CONFIG_USB_HSIC_USB3503 is not set
  3836. # CONFIG_USB_HSIC_USB4604 is not set
  3837. # CONFIG_USB_LINK_LAYER_TEST is not set
  3838. # CONFIG_USB_CHAOSKEY is not set
  3839. #
  3840. # USB Physical Layer drivers
  3841. #
  3842. CONFIG_USB_PHY=y
  3843. CONFIG_NOP_USB_XCEIV=m
  3844. CONFIG_AM335X_CONTROL_USB=m
  3845. CONFIG_AM335X_PHY_USB=m
  3846. CONFIG_USB_GPIO_VBUS=m
  3847. CONFIG_USB_ISP1301=m
  3848. # CONFIG_USB_ULPI is not set
  3849. CONFIG_USB_GADGET=m
  3850. # CONFIG_USB_GADGET_DEBUG is not set
  3851. # CONFIG_USB_GADGET_DEBUG_FILES is not set
  3852. # CONFIG_USB_GADGET_DEBUG_FS is not set
  3853. CONFIG_USB_GADGET_VBUS_DRAW=2
  3854. CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=32
  3855. # CONFIG_U_SERIAL_CONSOLE is not set
  3856. #
  3857. # USB Peripheral Controller
  3858. #
  3859. # CONFIG_USB_FUSB300 is not set
  3860. # CONFIG_USB_FOTG210_UDC is not set
  3861. # CONFIG_USB_GR_UDC is not set
  3862. # CONFIG_USB_R8A66597 is not set
  3863. # CONFIG_USB_PXA27X is not set
  3864. # CONFIG_USB_MV_UDC is not set
  3865. # CONFIG_USB_MV_U3D is not set
  3866. # CONFIG_USB_M66592 is not set
  3867. # CONFIG_USB_BDC_UDC is not set
  3868. # CONFIG_USB_AMD5536UDC is not set
  3869. # CONFIG_USB_NET2272 is not set
  3870. # CONFIG_USB_NET2280 is not set
  3871. # CONFIG_USB_GOKU is not set
  3872. # CONFIG_USB_EG20T is not set
  3873. # CONFIG_USB_GADGET_XILINX is not set
  3874. # CONFIG_USB_DUMMY_HCD is not set
  3875. CONFIG_USB_LIBCOMPOSITE=m
  3876. CONFIG_USB_F_ACM=m
  3877. CONFIG_USB_F_SS_LB=m
  3878. CONFIG_USB_U_SERIAL=m
  3879. CONFIG_USB_U_ETHER=m
  3880. CONFIG_USB_F_SERIAL=m
  3881. CONFIG_USB_F_OBEX=m
  3882. CONFIG_USB_F_NCM=m
  3883. CONFIG_USB_F_ECM=m
  3884. CONFIG_USB_F_EEM=m
  3885. CONFIG_USB_F_SUBSET=m
  3886. CONFIG_USB_F_RNDIS=m
  3887. CONFIG_USB_F_MASS_STORAGE=m
  3888. CONFIG_USB_F_FS=m
  3889. CONFIG_USB_F_UAC1=m
  3890. CONFIG_USB_F_UAC2=m
  3891. CONFIG_USB_F_UVC=m
  3892. CONFIG_USB_F_MIDI=m
  3893. CONFIG_USB_F_HID=m
  3894. CONFIG_USB_F_PRINTER=m
  3895. CONFIG_USB_CONFIGFS=m
  3896. CONFIG_USB_CONFIGFS_SERIAL=y
  3897. CONFIG_USB_CONFIGFS_ACM=y
  3898. CONFIG_USB_CONFIGFS_OBEX=y
  3899. CONFIG_USB_CONFIGFS_NCM=y
  3900. CONFIG_USB_CONFIGFS_ECM=y
  3901. CONFIG_USB_CONFIGFS_ECM_SUBSET=y
  3902. CONFIG_USB_CONFIGFS_RNDIS=y
  3903. CONFIG_USB_CONFIGFS_EEM=y
  3904. CONFIG_USB_CONFIGFS_MASS_STORAGE=y
  3905. CONFIG_USB_CONFIGFS_F_LB_SS=y
  3906. CONFIG_USB_CONFIGFS_F_FS=y
  3907. CONFIG_USB_CONFIGFS_F_UAC1=y
  3908. CONFIG_USB_CONFIGFS_F_UAC2=y
  3909. CONFIG_USB_CONFIGFS_F_MIDI=y
  3910. CONFIG_USB_CONFIGFS_F_HID=y
  3911. CONFIG_USB_CONFIGFS_F_UVC=y
  3912. CONFIG_USB_CONFIGFS_F_PRINTER=y
  3913. CONFIG_USB_ZERO=m
  3914. CONFIG_USB_AUDIO=m
  3915. # CONFIG_GADGET_UAC1 is not set
  3916. CONFIG_USB_ETH=m
  3917. CONFIG_USB_ETH_RNDIS=y
  3918. # CONFIG_USB_ETH_EEM is not set
  3919. CONFIG_USB_G_NCM=m
  3920. CONFIG_USB_GADGETFS=m
  3921. CONFIG_USB_FUNCTIONFS=m
  3922. CONFIG_USB_FUNCTIONFS_ETH=y
  3923. CONFIG_USB_FUNCTIONFS_RNDIS=y
  3924. CONFIG_USB_FUNCTIONFS_GENERIC=y
  3925. CONFIG_USB_MASS_STORAGE=m
  3926. CONFIG_USB_G_SERIAL=m
  3927. CONFIG_USB_MIDI_GADGET=m
  3928. CONFIG_USB_G_PRINTER=m
  3929. CONFIG_USB_CDC_COMPOSITE=m
  3930. CONFIG_USB_G_ACM_MS=m
  3931. CONFIG_USB_G_MULTI=m
  3932. CONFIG_USB_G_MULTI_RNDIS=y
  3933. CONFIG_USB_G_MULTI_CDC=y
  3934. CONFIG_USB_G_HID=m
  3935. CONFIG_USB_G_DBGP=m
  3936. # CONFIG_USB_G_DBGP_PRINTK is not set
  3937. CONFIG_USB_G_DBGP_SERIAL=y
  3938. CONFIG_USB_G_WEBCAM=m
  3939. # CONFIG_USB_LED_TRIG is not set
  3940. # CONFIG_USB_ULPI_BUS is not set
  3941. # CONFIG_UWB is not set
  3942. CONFIG_MMC=y
  3943. # CONFIG_MMC_DEBUG is not set
  3944. CONFIG_PWRSEQ_EMMC=y
  3945. CONFIG_PWRSEQ_SIMPLE=y
  3946. #
  3947. # MMC/SD/SDIO Card Drivers
  3948. #
  3949. CONFIG_MMC_BLOCK=y
  3950. CONFIG_MMC_BLOCK_MINORS=16
  3951. CONFIG_MMC_BLOCK_BOUNCE=y
  3952. # CONFIG_SDIO_UART is not set
  3953. # CONFIG_MMC_TEST is not set
  3954. #
  3955. # MMC/SD/SDIO Host Controller Drivers
  3956. #
  3957. # CONFIG_MMC_SDHCI is not set
  3958. CONFIG_MMC_OMAP=y
  3959. CONFIG_MMC_OMAP_HS=y
  3960. # CONFIG_MMC_TIFM_SD is not set
  3961. # CONFIG_MMC_CB710 is not set
  3962. # CONFIG_MMC_VIA_SDMMC is not set
  3963. # CONFIG_MMC_DW is not set
  3964. # CONFIG_MMC_VUB300 is not set
  3965. # CONFIG_MMC_USHC is not set
  3966. # CONFIG_MMC_USDHI6ROL0 is not set
  3967. # CONFIG_MMC_TOSHIBA_PCI is not set
  3968. # CONFIG_MMC_MTK is not set
  3969. # CONFIG_MEMSTICK is not set
  3970. CONFIG_NEW_LEDS=y
  3971. CONFIG_LEDS_CLASS=y
  3972. CONFIG_LEDS_CLASS_FLASH=m
  3973. #
  3974. # LED drivers
  3975. #
  3976. # CONFIG_LEDS_AAT1290 is not set
  3977. # CONFIG_LEDS_BCM6328 is not set
  3978. # CONFIG_LEDS_BCM6358 is not set
  3979. # CONFIG_LEDS_LM3530 is not set
  3980. # CONFIG_LEDS_LM3642 is not set
  3981. # CONFIG_LEDS_PCA9532 is not set
  3982. CONFIG_LEDS_GPIO=y
  3983. # CONFIG_LEDS_LP3944 is not set
  3984. # CONFIG_LEDS_LP5521 is not set
  3985. # CONFIG_LEDS_LP5523 is not set
  3986. # CONFIG_LEDS_LP5562 is not set
  3987. # CONFIG_LEDS_LP8501 is not set
  3988. # CONFIG_LEDS_LP8860 is not set
  3989. # CONFIG_LEDS_PCA955X is not set
  3990. # CONFIG_LEDS_PCA963X is not set
  3991. # CONFIG_LEDS_DAC124S085 is not set
  3992. CONFIG_LEDS_PWM=y
  3993. # CONFIG_LEDS_REGULATOR is not set
  3994. # CONFIG_LEDS_BD2802 is not set
  3995. # CONFIG_LEDS_LT3593 is not set
  3996. # CONFIG_LEDS_TCA6507 is not set
  3997. CONFIG_LEDS_TLC591XX=y
  3998. # CONFIG_LEDS_LM355x is not set
  3999. # CONFIG_LEDS_KTD2692 is not set
  4000. # CONFIG_LEDS_IS31FL319X is not set
  4001. # CONFIG_LEDS_IS31FL32XX is not set
  4002. #
  4003. # LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
  4004. #
  4005. # CONFIG_LEDS_BLINKM is not set
  4006. # CONFIG_LEDS_SYSCON is not set
  4007. #
  4008. # LED Triggers
  4009. #
  4010. CONFIG_LEDS_TRIGGERS=y
  4011. CONFIG_LEDS_TRIGGER_TIMER=y
  4012. CONFIG_LEDS_TRIGGER_ONESHOT=y
  4013. # CONFIG_LEDS_TRIGGER_DISK is not set
  4014. # CONFIG_LEDS_TRIGGER_MTD is not set
  4015. CONFIG_LEDS_TRIGGER_HEARTBEAT=y
  4016. CONFIG_LEDS_TRIGGER_BACKLIGHT=y
  4017. CONFIG_LEDS_TRIGGER_CPU=y
  4018. CONFIG_LEDS_TRIGGER_GPIO=y
  4019. CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
  4020. #
  4021. # iptables trigger is under Netfilter config (LED target)
  4022. #
  4023. CONFIG_LEDS_TRIGGER_TRANSIENT=y
  4024. CONFIG_LEDS_TRIGGER_CAMERA=y
  4025. # CONFIG_LEDS_TRIGGER_PANIC is not set
  4026. # CONFIG_ACCESSIBILITY is not set
  4027. # CONFIG_INFINIBAND is not set
  4028. CONFIG_EDAC_ATOMIC_SCRUB=y
  4029. CONFIG_EDAC_SUPPORT=y
  4030. CONFIG_EDAC=y
  4031. CONFIG_EDAC_LEGACY_SYSFS=y
  4032. # CONFIG_EDAC_DEBUG is not set
  4033. CONFIG_EDAC_MM_EDAC=y
  4034. CONFIG_RTC_LIB=y
  4035. CONFIG_RTC_CLASS=y
  4036. CONFIG_RTC_HCTOSYS=y
  4037. CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
  4038. CONFIG_RTC_SYSTOHC=y
  4039. CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
  4040. CONFIG_RTC_DEBUG=y
  4041. #
  4042. # RTC interfaces
  4043. #
  4044. CONFIG_RTC_INTF_SYSFS=y
  4045. CONFIG_RTC_INTF_PROC=y
  4046. CONFIG_RTC_INTF_DEV=y
  4047. # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
  4048. # CONFIG_RTC_DRV_TEST is not set
  4049. #
  4050. # I2C RTC drivers
  4051. #
  4052. # CONFIG_RTC_DRV_ABB5ZES3 is not set
  4053. # CONFIG_RTC_DRV_ABX80X is not set
  4054. CONFIG_RTC_DRV_DS1307=m
  4055. CONFIG_RTC_DRV_DS1307_HWMON=y
  4056. # CONFIG_RTC_DRV_DS1307_CENTURY is not set
  4057. # CONFIG_RTC_DRV_DS1374 is not set
  4058. # CONFIG_RTC_DRV_DS1672 is not set
  4059. # CONFIG_RTC_DRV_HYM8563 is not set
  4060. # CONFIG_RTC_DRV_MAX6900 is not set
  4061. # CONFIG_RTC_DRV_RS5C372 is not set
  4062. # CONFIG_RTC_DRV_ISL1208 is not set
  4063. # CONFIG_RTC_DRV_ISL12022 is not set
  4064. # CONFIG_RTC_DRV_X1205 is not set
  4065. # CONFIG_RTC_DRV_PCF8523 is not set
  4066. # CONFIG_RTC_DRV_PCF85063 is not set
  4067. # CONFIG_RTC_DRV_PCF8563 is not set
  4068. # CONFIG_RTC_DRV_PCF8583 is not set
  4069. # CONFIG_RTC_DRV_M41T80 is not set
  4070. # CONFIG_RTC_DRV_BQ32K is not set
  4071. CONFIG_RTC_DRV_PALMAS=m
  4072. CONFIG_RTC_DRV_TPS6586X=m
  4073. CONFIG_RTC_DRV_TPS65910=m
  4074. # CONFIG_RTC_DRV_S35390A is not set
  4075. # CONFIG_RTC_DRV_FM3130 is not set
  4076. # CONFIG_RTC_DRV_RX8010 is not set
  4077. # CONFIG_RTC_DRV_RX8581 is not set
  4078. # CONFIG_RTC_DRV_RX8025 is not set
  4079. # CONFIG_RTC_DRV_EM3027 is not set
  4080. # CONFIG_RTC_DRV_RV8803 is not set
  4081. #
  4082. # SPI RTC drivers
  4083. #
  4084. # CONFIG_RTC_DRV_M41T93 is not set
  4085. # CONFIG_RTC_DRV_M41T94 is not set
  4086. # CONFIG_RTC_DRV_DS1302 is not set
  4087. # CONFIG_RTC_DRV_DS1305 is not set
  4088. # CONFIG_RTC_DRV_DS1343 is not set
  4089. # CONFIG_RTC_DRV_DS1347 is not set
  4090. # CONFIG_RTC_DRV_DS1390 is not set
  4091. # CONFIG_RTC_DRV_MAX6916 is not set
  4092. # CONFIG_RTC_DRV_R9701 is not set
  4093. # CONFIG_RTC_DRV_RX4581 is not set
  4094. # CONFIG_RTC_DRV_RX6110 is not set
  4095. # CONFIG_RTC_DRV_RS5C348 is not set
  4096. # CONFIG_RTC_DRV_MAX6902 is not set
  4097. # CONFIG_RTC_DRV_PCF2123 is not set
  4098. # CONFIG_RTC_DRV_MCP795 is not set
  4099. CONFIG_RTC_I2C_AND_SPI=y
  4100. #
  4101. # SPI and I2C RTC drivers
  4102. #
  4103. # CONFIG_RTC_DRV_DS3232 is not set
  4104. # CONFIG_RTC_DRV_PCF2127 is not set
  4105. # CONFIG_RTC_DRV_RV3029C2 is not set
  4106. #
  4107. # Platform RTC drivers
  4108. #
  4109. # CONFIG_RTC_DRV_CMOS is not set
  4110. # CONFIG_RTC_DRV_DS1286 is not set
  4111. # CONFIG_RTC_DRV_DS1511 is not set
  4112. # CONFIG_RTC_DRV_DS1553 is not set
  4113. # CONFIG_RTC_DRV_DS1685_FAMILY is not set
  4114. # CONFIG_RTC_DRV_DS1742 is not set
  4115. # CONFIG_RTC_DRV_DS2404 is not set
  4116. CONFIG_RTC_DRV_EFI=m
  4117. # CONFIG_RTC_DRV_STK17TA8 is not set
  4118. # CONFIG_RTC_DRV_M48T86 is not set
  4119. # CONFIG_RTC_DRV_M48T35 is not set
  4120. # CONFIG_RTC_DRV_M48T59 is not set
  4121. # CONFIG_RTC_DRV_MSM6242 is not set
  4122. # CONFIG_RTC_DRV_BQ4802 is not set
  4123. # CONFIG_RTC_DRV_RP5C01 is not set
  4124. # CONFIG_RTC_DRV_V3020 is not set
  4125. # CONFIG_RTC_DRV_ZYNQMP is not set
  4126. #
  4127. # on-CPU RTC drivers
  4128. #
  4129. CONFIG_RTC_DRV_OMAP=m
  4130. # CONFIG_RTC_DRV_SNVS is not set
  4131. #
  4132. # HID Sensor RTC drivers
  4133. #
  4134. # CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
  4135. CONFIG_DMADEVICES=y
  4136. # CONFIG_DMADEVICES_DEBUG is not set
  4137. #
  4138. # DMA Devices
  4139. #
  4140. CONFIG_DMA_ENGINE=y
  4141. CONFIG_DMA_VIRTUAL_CHANNELS=y
  4142. CONFIG_DMA_OF=y
  4143. CONFIG_DMA_OMAP=y
  4144. CONFIG_FSL_EDMA=y
  4145. # CONFIG_INTEL_IDMA64 is not set
  4146. # CONFIG_NBPFAXI_DMA is not set
  4147. CONFIG_TI_CPPI41=y
  4148. CONFIG_TI_DMA_CROSSBAR=y
  4149. CONFIG_TI_EDMA=y
  4150. # CONFIG_QCOM_HIDMA_MGMT is not set
  4151. # CONFIG_QCOM_HIDMA is not set
  4152. CONFIG_DW_DMAC_CORE=y
  4153. CONFIG_DW_DMAC=y
  4154. # CONFIG_DW_DMAC_PCI is not set
  4155. #
  4156. # DMA Clients
  4157. #
  4158. # CONFIG_ASYNC_TX_DMA is not set
  4159. # CONFIG_DMATEST is not set
  4160. #
  4161. # DMABUF options
  4162. #
  4163. # CONFIG_SYNC_FILE is not set
  4164. # CONFIG_AUXDISPLAY is not set
  4165. CONFIG_UIO=m
  4166. # CONFIG_UIO_CIF is not set
  4167. # CONFIG_UIO_PDRV_GENIRQ is not set
  4168. # CONFIG_UIO_DMEM_GENIRQ is not set
  4169. # CONFIG_UIO_AEC is not set
  4170. # CONFIG_UIO_SERCOS3 is not set
  4171. # CONFIG_UIO_PCI_GENERIC is not set
  4172. # CONFIG_UIO_NETX is not set
  4173. # CONFIG_UIO_PRUSS is not set
  4174. # CONFIG_UIO_MF624 is not set
  4175. # CONFIG_VFIO is not set
  4176. # CONFIG_VIRT_DRIVERS is not set
  4177. CONFIG_VIRTIO=y
  4178. #
  4179. # Virtio drivers
  4180. #
  4181. CONFIG_VIRTIO_PCI=y
  4182. CONFIG_VIRTIO_PCI_LEGACY=y
  4183. # CONFIG_VIRTIO_BALLOON is not set
  4184. # CONFIG_VIRTIO_INPUT is not set
  4185. CONFIG_VIRTIO_MMIO=y
  4186. # CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
  4187. #
  4188. # Microsoft Hyper-V guest support
  4189. #
  4190. CONFIG_STAGING=y
  4191. # CONFIG_PRISM2_USB is not set
  4192. # CONFIG_COMEDI is not set
  4193. # CONFIG_RTL8192U is not set
  4194. # CONFIG_RTLLIB is not set
  4195. # CONFIG_R8712U is not set
  4196. # CONFIG_R8188EU is not set
  4197. # CONFIG_RTS5208 is not set
  4198. # CONFIG_VT6655 is not set
  4199. # CONFIG_VT6656 is not set
  4200. #
  4201. # IIO staging drivers
  4202. #
  4203. #
  4204. # Accelerometers
  4205. #
  4206. # CONFIG_ADIS16201 is not set
  4207. # CONFIG_ADIS16203 is not set
  4208. # CONFIG_ADIS16209 is not set
  4209. # CONFIG_ADIS16240 is not set
  4210. # CONFIG_SCA3000 is not set
  4211. #
  4212. # Analog to digital converters
  4213. #
  4214. # CONFIG_AD7606 is not set
  4215. # CONFIG_AD7780 is not set
  4216. # CONFIG_AD7816 is not set
  4217. # CONFIG_AD7192 is not set
  4218. # CONFIG_AD7280 is not set
  4219. #
  4220. # Analog digital bi-direction converters
  4221. #
  4222. # CONFIG_ADT7316 is not set
  4223. #
  4224. # Capacitance to digital converters
  4225. #
  4226. # CONFIG_AD7150 is not set
  4227. # CONFIG_AD7152 is not set
  4228. # CONFIG_AD7746 is not set
  4229. #
  4230. # Direct Digital Synthesis
  4231. #
  4232. # CONFIG_AD9832 is not set
  4233. # CONFIG_AD9834 is not set
  4234. #
  4235. # Digital gyroscope sensors
  4236. #
  4237. # CONFIG_ADIS16060 is not set
  4238. #
  4239. # Network Analyzer, Impedance Converters
  4240. #
  4241. # CONFIG_AD5933 is not set
  4242. #
  4243. # Light sensors
  4244. #
  4245. # CONFIG_SENSORS_ISL29018 is not set
  4246. # CONFIG_SENSORS_ISL29028 is not set
  4247. # CONFIG_TSL2583 is not set
  4248. # CONFIG_TSL2x7x is not set
  4249. #
  4250. # Active energy metering IC
  4251. #
  4252. # CONFIG_ADE7753 is not set
  4253. # CONFIG_ADE7754 is not set
  4254. # CONFIG_ADE7758 is not set
  4255. # CONFIG_ADE7759 is not set
  4256. # CONFIG_ADE7854 is not set
  4257. #
  4258. # Resolver to digital converters
  4259. #
  4260. # CONFIG_AD2S90 is not set
  4261. # CONFIG_AD2S1200 is not set
  4262. # CONFIG_AD2S1210 is not set
  4263. #
  4264. # Triggers - standalone
  4265. #
  4266. # CONFIG_FB_SM750 is not set
  4267. # CONFIG_FB_XGI is not set
  4268. #
  4269. # Speakup console speech
  4270. #
  4271. # CONFIG_SPEAKUP is not set
  4272. # CONFIG_STAGING_MEDIA is not set
  4273. #
  4274. # Android
  4275. #
  4276. # CONFIG_ASHMEM is not set
  4277. # CONFIG_ANDROID_LOW_MEMORY_KILLER is not set
  4278. CONFIG_ION=y
  4279. # CONFIG_ION_TEST is not set
  4280. # CONFIG_ION_DUMMY is not set
  4281. CONFIG_ION_TI=y
  4282. # CONFIG_ION_OF is not set
  4283. # CONFIG_ION_UNMAPPED_HEAP is not set
  4284. # CONFIG_STAGING_BOARD is not set
  4285. # CONFIG_LTE_GDM724X is not set
  4286. # CONFIG_MTD_SPINAND_MT29F is not set
  4287. # CONFIG_LNET is not set
  4288. # CONFIG_DGNC is not set
  4289. # CONFIG_GS_FPGABOOT is not set
  4290. # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
  4291. # CONFIG_FB_TFT is not set
  4292. # CONFIG_WILC1000_SDIO is not set
  4293. # CONFIG_WILC1000_SPI is not set
  4294. # CONFIG_MOST is not set
  4295. # CONFIG_KS7010 is not set
  4296. # CONFIG_GREYBUS is not set
  4297. # CONFIG_GOLDFISH is not set
  4298. # CONFIG_CHROME_PLATFORMS is not set
  4299. CONFIG_CLKDEV_LOOKUP=y
  4300. CONFIG_HAVE_CLK_PREPARE=y
  4301. CONFIG_COMMON_CLK=y
  4302. #
  4303. # Common Clock Framework
  4304. #
  4305. # CONFIG_COMMON_CLK_SI5351 is not set
  4306. # CONFIG_COMMON_CLK_SI514 is not set
  4307. # CONFIG_COMMON_CLK_SI570 is not set
  4308. # CONFIG_COMMON_CLK_CDCE706 is not set
  4309. # CONFIG_COMMON_CLK_CDCE925 is not set
  4310. # CONFIG_COMMON_CLK_CS2000_CP is not set
  4311. # CONFIG_CLK_TWL6040 is not set
  4312. # CONFIG_CLK_QORIQ is not set
  4313. # CONFIG_COMMON_CLK_NXP is not set
  4314. CONFIG_COMMON_CLK_PALMAS=y
  4315. # CONFIG_COMMON_CLK_PWM is not set
  4316. # CONFIG_COMMON_CLK_PXA is not set
  4317. # CONFIG_COMMON_CLK_PIC32 is not set
  4318. # CONFIG_COMMON_CLK_TI_ADPLL is not set
  4319. CONFIG_HWSPINLOCK=y
  4320. #
  4321. # Hardware Spinlock drivers
  4322. #
  4323. CONFIG_HWSPINLOCK_OMAP=y
  4324. #
  4325. # Clock Source drivers
  4326. #
  4327. CONFIG_CLKSRC_OF=y
  4328. CONFIG_CLKSRC_PROBE=y
  4329. CONFIG_CLKSRC_MMIO=y
  4330. CONFIG_CLKSRC_TI_32K=y
  4331. # CONFIG_ARM_GLOBAL_TIMER is not set
  4332. # CONFIG_ARM_TIMER_SP804 is not set
  4333. # CONFIG_ATMEL_PIT is not set
  4334. # CONFIG_SH_TIMER_CMT is not set
  4335. # CONFIG_SH_TIMER_MTU2 is not set
  4336. # CONFIG_SH_TIMER_TMU is not set
  4337. # CONFIG_EM_TIMER_STI is not set
  4338. CONFIG_MAILBOX=y
  4339. # CONFIG_PLATFORM_MHU is not set
  4340. CONFIG_OMAP2PLUS_MBOX=y
  4341. CONFIG_OMAP_MBOX_KFIFO_SIZE=256
  4342. # CONFIG_ALTERA_MBOX is not set
  4343. # CONFIG_MAILBOX_TEST is not set
  4344. CONFIG_IOMMU_API=y
  4345. CONFIG_IOMMU_SUPPORT=y
  4346. #
  4347. # Generic IOMMU Pagetable Support
  4348. #
  4349. # CONFIG_IOMMU_IO_PGTABLE_LPAE is not set
  4350. # CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
  4351. CONFIG_OF_IOMMU=y
  4352. CONFIG_OMAP_IOMMU=y
  4353. CONFIG_OMAP_IOMMU_DEBUG=y
  4354. # CONFIG_ARM_SMMU is not set
  4355. #
  4356. # Remoteproc drivers
  4357. #
  4358. CONFIG_REMOTEPROC=m
  4359. CONFIG_WKUP_M3_RPROC=m
  4360. CONFIG_PRUSS_REMOTEPROC=m
  4361. #
  4362. # Rpmsg drivers
  4363. #
  4364. CONFIG_RPMSG=m
  4365. CONFIG_RPMSG_VIRTIO=m
  4366. CONFIG_RPMSG_PRU=m
  4367. #
  4368. # SOC (System On Chip) specific Drivers
  4369. #
  4370. #
  4371. # Broadcom SoC drivers
  4372. #
  4373. # CONFIG_SOC_BRCMSTB is not set
  4374. # CONFIG_SUNXI_SRAM is not set
  4375. CONFIG_SOC_TI=y
  4376. CONFIG_AMX3_PM=m
  4377. CONFIG_WKUP_M3_IPC=m
  4378. # CONFIG_PM_DEVFREQ is not set
  4379. CONFIG_EXTCON=m
  4380. #
  4381. # Extcon Device Drivers
  4382. #
  4383. # CONFIG_EXTCON_ADC_JACK is not set
  4384. # CONFIG_EXTCON_AXP288 is not set
  4385. # CONFIG_EXTCON_GPIO is not set
  4386. # CONFIG_EXTCON_MAX3355 is not set
  4387. CONFIG_EXTCON_PALMAS=m
  4388. # CONFIG_EXTCON_QCOM_SPMI_MISC is not set
  4389. # CONFIG_EXTCON_RT8973A is not set
  4390. # CONFIG_EXTCON_SM5502 is not set
  4391. CONFIG_EXTCON_USB_GPIO=m
  4392. CONFIG_MEMORY=y
  4393. # CONFIG_TI_EMIF is not set
  4394. CONFIG_OMAP_GPMC=y
  4395. # CONFIG_OMAP_GPMC_DEBUG is not set
  4396. CONFIG_TI_EMIF_SRAM=m
  4397. CONFIG_IIO=y
  4398. CONFIG_IIO_BUFFER=y
  4399. # CONFIG_IIO_BUFFER_CB is not set
  4400. CONFIG_IIO_KFIFO_BUF=y
  4401. CONFIG_IIO_TRIGGERED_BUFFER=y
  4402. # CONFIG_IIO_CONFIGFS is not set
  4403. CONFIG_IIO_TRIGGER=y
  4404. CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
  4405. # CONFIG_IIO_SW_DEVICE is not set
  4406. # CONFIG_IIO_SW_TRIGGER is not set
  4407. #
  4408. # Accelerometers
  4409. #
  4410. # CONFIG_BMA180 is not set
  4411. # CONFIG_BMA220 is not set
  4412. # CONFIG_BMC150_ACCEL is not set
  4413. # CONFIG_DMARD06 is not set
  4414. # CONFIG_DMARD09 is not set
  4415. # CONFIG_IIO_ST_ACCEL_3AXIS is not set
  4416. # CONFIG_KXSD9 is not set
  4417. # CONFIG_KXCJK1013 is not set
  4418. # CONFIG_MC3230 is not set
  4419. # CONFIG_MMA7455_I2C is not set
  4420. # CONFIG_MMA7455_SPI is not set
  4421. # CONFIG_MMA7660 is not set
  4422. # CONFIG_MMA8452 is not set
  4423. # CONFIG_MMA9551 is not set
  4424. # CONFIG_MMA9553 is not set
  4425. # CONFIG_MXC4005 is not set
  4426. # CONFIG_MXC6255 is not set
  4427. # CONFIG_STK8312 is not set
  4428. # CONFIG_STK8BA50 is not set
  4429. #
  4430. # Analog to digital converters
  4431. #
  4432. # CONFIG_AD7266 is not set
  4433. # CONFIG_AD7291 is not set
  4434. # CONFIG_AD7298 is not set
  4435. # CONFIG_AD7476 is not set
  4436. # CONFIG_AD7791 is not set
  4437. # CONFIG_AD7793 is not set
  4438. # CONFIG_AD7887 is not set
  4439. # CONFIG_AD7923 is not set
  4440. # CONFIG_AD799X is not set
  4441. # CONFIG_AXP288_ADC is not set
  4442. # CONFIG_CC10001_ADC is not set
  4443. # CONFIG_HI8435 is not set
  4444. # CONFIG_INA2XX_ADC is not set
  4445. # CONFIG_LTC2485 is not set
  4446. # CONFIG_MAX1027 is not set
  4447. # CONFIG_MAX1363 is not set
  4448. # CONFIG_MCP320X is not set
  4449. # CONFIG_MCP3422 is not set
  4450. # CONFIG_NAU7802 is not set
  4451. # CONFIG_PALMAS_GPADC is not set
  4452. # CONFIG_QCOM_SPMI_IADC is not set
  4453. # CONFIG_QCOM_SPMI_VADC is not set
  4454. # CONFIG_TI_ADC081C is not set
  4455. # CONFIG_TI_ADC0832 is not set
  4456. # CONFIG_TI_ADC12138 is not set
  4457. # CONFIG_TI_ADC128S052 is not set
  4458. # CONFIG_TI_ADC161S626 is not set
  4459. # CONFIG_TI_ADS1015 is not set
  4460. # CONFIG_TI_ADS8688 is not set
  4461. CONFIG_TI_AM335X_ADC=m
  4462. CONFIG_VF610_ADC=m
  4463. #
  4464. # Amplifiers
  4465. #
  4466. # CONFIG_AD8366 is not set
  4467. #
  4468. # Chemical Sensors
  4469. #
  4470. # CONFIG_ATLAS_PH_SENSOR is not set
  4471. # CONFIG_IAQCORE is not set
  4472. # CONFIG_VZ89X is not set
  4473. #
  4474. # Hid Sensor IIO Common
  4475. #
  4476. #
  4477. # SSP Sensor Common
  4478. #
  4479. # CONFIG_IIO_SSP_SENSORHUB is not set
  4480. #
  4481. # Digital to analog converters
  4482. #
  4483. # CONFIG_AD5064 is not set
  4484. # CONFIG_AD5360 is not set
  4485. # CONFIG_AD5380 is not set
  4486. # CONFIG_AD5421 is not set
  4487. # CONFIG_AD5446 is not set
  4488. # CONFIG_AD5449 is not set
  4489. # CONFIG_AD5592R is not set
  4490. # CONFIG_AD5593R is not set
  4491. # CONFIG_AD5504 is not set
  4492. # CONFIG_AD5624R_SPI is not set
  4493. # CONFIG_AD5686 is not set
  4494. # CONFIG_AD5755 is not set
  4495. # CONFIG_AD5761 is not set
  4496. # CONFIG_AD5764 is not set
  4497. # CONFIG_AD5791 is not set
  4498. # CONFIG_AD7303 is not set
  4499. # CONFIG_AD8801 is not set
  4500. # CONFIG_M62332 is not set
  4501. # CONFIG_MAX517 is not set
  4502. # CONFIG_MAX5821 is not set
  4503. # CONFIG_MCP4725 is not set
  4504. # CONFIG_MCP4922 is not set
  4505. # CONFIG_VF610_DAC is not set
  4506. #
  4507. # IIO dummy driver
  4508. #
  4509. #
  4510. # Frequency Synthesizers DDS/PLL
  4511. #
  4512. #
  4513. # Clock Generator/Distribution
  4514. #
  4515. # CONFIG_AD9523 is not set
  4516. #
  4517. # Phase-Locked Loop (PLL) frequency synthesizers
  4518. #
  4519. # CONFIG_ADF4350 is not set
  4520. #
  4521. # Digital gyroscope sensors
  4522. #
  4523. # CONFIG_ADIS16080 is not set
  4524. # CONFIG_ADIS16130 is not set
  4525. # CONFIG_ADIS16136 is not set
  4526. # CONFIG_ADIS16260 is not set
  4527. # CONFIG_ADXRS450 is not set
  4528. # CONFIG_BMG160 is not set
  4529. # CONFIG_IIO_ST_GYRO_3AXIS is not set
  4530. # CONFIG_ITG3200 is not set
  4531. #
  4532. # Health Sensors
  4533. #
  4534. #
  4535. # Heart Rate Monitors
  4536. #
  4537. # CONFIG_AFE4403 is not set
  4538. # CONFIG_AFE4404 is not set
  4539. # CONFIG_MAX30100 is not set
  4540. #
  4541. # Humidity sensors
  4542. #
  4543. # CONFIG_AM2315 is not set
  4544. # CONFIG_DHT11 is not set
  4545. # CONFIG_HDC100X is not set
  4546. # CONFIG_HTU21 is not set
  4547. # CONFIG_SI7005 is not set
  4548. # CONFIG_SI7020 is not set
  4549. #
  4550. # Inertial measurement units
  4551. #
  4552. # CONFIG_ADIS16400 is not set
  4553. # CONFIG_ADIS16480 is not set
  4554. # CONFIG_BMI160_I2C is not set
  4555. # CONFIG_BMI160_SPI is not set
  4556. # CONFIG_KMX61 is not set
  4557. # CONFIG_INV_MPU6050_SPI is not set
  4558. #
  4559. # Light sensors
  4560. #
  4561. # CONFIG_ADJD_S311 is not set
  4562. # CONFIG_AL3320A is not set
  4563. # CONFIG_APDS9300 is not set
  4564. # CONFIG_APDS9960 is not set
  4565. # CONFIG_BH1750 is not set
  4566. # CONFIG_BH1780 is not set
  4567. # CONFIG_CM32181 is not set
  4568. # CONFIG_CM3232 is not set
  4569. # CONFIG_CM3323 is not set
  4570. CONFIG_CM36651=m
  4571. # CONFIG_GP2AP020A00F is not set
  4572. # CONFIG_ISL29125 is not set
  4573. # CONFIG_JSA1212 is not set
  4574. # CONFIG_RPR0521 is not set
  4575. # CONFIG_LTR501 is not set
  4576. # CONFIG_MAX44000 is not set
  4577. # CONFIG_OPT3001 is not set
  4578. # CONFIG_PA12203001 is not set
  4579. # CONFIG_SI1145 is not set
  4580. # CONFIG_STK3310 is not set
  4581. # CONFIG_TCS3414 is not set
  4582. # CONFIG_TCS3472 is not set
  4583. # CONFIG_SENSORS_TSL2563 is not set
  4584. # CONFIG_TSL4531 is not set
  4585. # CONFIG_US5182D is not set
  4586. # CONFIG_VCNL4000 is not set
  4587. # CONFIG_VEML6070 is not set
  4588. #
  4589. # Magnetometer sensors
  4590. #
  4591. # CONFIG_AK8974 is not set
  4592. CONFIG_AK8975=y
  4593. # CONFIG_AK09911 is not set
  4594. # CONFIG_BMC150_MAGN_I2C is not set
  4595. # CONFIG_BMC150_MAGN_SPI is not set
  4596. # CONFIG_MAG3110 is not set
  4597. # CONFIG_MMC35240 is not set
  4598. # CONFIG_IIO_ST_MAGN_3AXIS is not set
  4599. # CONFIG_SENSORS_HMC5843_I2C is not set
  4600. # CONFIG_SENSORS_HMC5843_SPI is not set
  4601. #
  4602. # Inclinometer sensors
  4603. #
  4604. #
  4605. # Triggers - standalone
  4606. #
  4607. # CONFIG_IIO_INTERRUPT_TRIGGER is not set
  4608. # CONFIG_IIO_SYSFS_TRIGGER is not set
  4609. #
  4610. # Digital potentiometers
  4611. #
  4612. # CONFIG_DS1803 is not set
  4613. # CONFIG_MAX5487 is not set
  4614. # CONFIG_MCP4131 is not set
  4615. # CONFIG_MCP4531 is not set
  4616. # CONFIG_TPL0102 is not set
  4617. #
  4618. # Pressure sensors
  4619. #
  4620. # CONFIG_BMP280 is not set
  4621. # CONFIG_HP03 is not set
  4622. # CONFIG_MPL115_I2C is not set
  4623. # CONFIG_MPL115_SPI is not set
  4624. # CONFIG_MPL3115 is not set
  4625. # CONFIG_MS5611 is not set
  4626. # CONFIG_MS5637 is not set
  4627. # CONFIG_IIO_ST_PRESS is not set
  4628. # CONFIG_T5403 is not set
  4629. # CONFIG_HP206C is not set
  4630. # CONFIG_ZPA2326 is not set
  4631. #
  4632. # Lightning sensors
  4633. #
  4634. # CONFIG_AS3935 is not set
  4635. #
  4636. # Proximity sensors
  4637. #
  4638. # CONFIG_LIDAR_LITE_V2 is not set
  4639. # CONFIG_SX9500 is not set
  4640. #
  4641. # Temperature sensors
  4642. #
  4643. # CONFIG_MAXIM_THERMOCOUPLE is not set
  4644. # CONFIG_MLX90614 is not set
  4645. # CONFIG_TMP006 is not set
  4646. # CONFIG_TSYS01 is not set
  4647. # CONFIG_TSYS02D is not set
  4648. # CONFIG_NTB is not set
  4649. # CONFIG_VME_BUS is not set
  4650. CONFIG_PWM=y
  4651. CONFIG_PWM_SYSFS=y
  4652. CONFIG_PWM_FSL_FTM=m
  4653. # CONFIG_PWM_OMAP_DMTIMER is not set
  4654. # CONFIG_PWM_PCA9685 is not set
  4655. CONFIG_PWM_TIECAP=y
  4656. CONFIG_PWM_TIEHRPWM=y
  4657. CONFIG_PWM_TIPWMSS=y
  4658. CONFIG_IRQCHIP=y
  4659. CONFIG_ARM_GIC_MAX_NR=1
  4660. CONFIG_OMAP_IRQCHIP=y
  4661. # CONFIG_IPACK_BUS is not set
  4662. CONFIG_RESET_CONTROLLER=y
  4663. # CONFIG_RESET_ATH79 is not set
  4664. # CONFIG_RESET_BERLIN is not set
  4665. # CONFIG_RESET_LPC18XX is not set
  4666. # CONFIG_RESET_MESON is not set
  4667. # CONFIG_RESET_PISTACHIO is not set
  4668. # CONFIG_RESET_SOCFPGA is not set
  4669. # CONFIG_RESET_STM32 is not set
  4670. # CONFIG_RESET_SUNXI is not set
  4671. CONFIG_RESET_TI_SYSCON=y
  4672. # CONFIG_RESET_ZYNQ is not set
  4673. # CONFIG_FMC is not set
  4674. #
  4675. # PHY Subsystem
  4676. #
  4677. CONFIG_GENERIC_PHY=y
  4678. # CONFIG_PHY_DM816X_USB is not set
  4679. # CONFIG_PHY_PXA_28NM_HSIC is not set
  4680. # CONFIG_PHY_PXA_28NM_USB2 is not set
  4681. CONFIG_OMAP_CONTROL_PHY=y
  4682. CONFIG_OMAP_USB2=y
  4683. CONFIG_TI_PIPE3=y
  4684. # CONFIG_BCM_KONA_USB2_PHY is not set
  4685. # CONFIG_POWERCAP is not set
  4686. # CONFIG_MCB is not set
  4687. #
  4688. # Performance monitor support
  4689. #
  4690. CONFIG_ARM_PMU=y
  4691. CONFIG_RAS=y
  4692. # CONFIG_THUNDERBOLT is not set
  4693. #
  4694. # Android
  4695. #
  4696. CONFIG_ANDROID=y
  4697. # CONFIG_ANDROID_BINDER_IPC is not set
  4698. CONFIG_NVMEM=y
  4699. # CONFIG_STM is not set
  4700. # CONFIG_INTEL_TH is not set
  4701. #
  4702. # FPGA Configuration Support
  4703. #
  4704. # CONFIG_FPGA is not set
  4705. CONFIG_TEE=y
  4706. #
  4707. # TEE drivers
  4708. #
  4709. CONFIG_OPTEE=y
  4710. #
  4711. # Firmware Drivers
  4712. #
  4713. # CONFIG_ARM_SCPI_PROTOCOL is not set
  4714. # CONFIG_FIRMWARE_MEMMAP is not set
  4715. # CONFIG_FW_CFG_SYSFS is not set
  4716. CONFIG_HAVE_ARM_SMCCC=y
  4717. #
  4718. # EFI (Extensible Firmware Interface) Support
  4719. #
  4720. CONFIG_EFI_VARS=m
  4721. CONFIG_EFI_ESRT=y
  4722. CONFIG_EFI_PARAMS_FROM_FDT=y
  4723. CONFIG_EFI_RUNTIME_WRAPPERS=y
  4724. CONFIG_EFI_ARMSTUB=y
  4725. # CONFIG_EFI_BOOTLOADER_CONTROL is not set
  4726. CONFIG_EFI_CAPSULE_LOADER=m
  4727. # CONFIG_EFI_TEST is not set
  4728. #
  4729. # File systems
  4730. #
  4731. CONFIG_DCACHE_WORD_ACCESS=y
  4732. # CONFIG_EXT2_FS is not set
  4733. # CONFIG_EXT3_FS is not set
  4734. CONFIG_EXT4_FS=y
  4735. CONFIG_EXT4_USE_FOR_EXT2=y
  4736. CONFIG_EXT4_FS_POSIX_ACL=y
  4737. CONFIG_EXT4_FS_SECURITY=y
  4738. # CONFIG_EXT4_ENCRYPTION is not set
  4739. # CONFIG_EXT4_DEBUG is not set
  4740. CONFIG_JBD2=y
  4741. # CONFIG_JBD2_DEBUG is not set
  4742. CONFIG_FS_MBCACHE=y
  4743. # CONFIG_REISERFS_FS is not set
  4744. # CONFIG_JFS_FS is not set
  4745. # CONFIG_XFS_FS is not set
  4746. # CONFIG_GFS2_FS is not set
  4747. # CONFIG_OCFS2_FS is not set
  4748. # CONFIG_BTRFS_FS is not set
  4749. # CONFIG_NILFS2_FS is not set
  4750. # CONFIG_F2FS_FS is not set
  4751. CONFIG_FS_POSIX_ACL=y
  4752. CONFIG_EXPORTFS=y
  4753. # CONFIG_EXPORTFS_BLOCK_OPS is not set
  4754. CONFIG_FILE_LOCKING=y
  4755. CONFIG_MANDATORY_FILE_LOCKING=y
  4756. # CONFIG_FS_ENCRYPTION is not set
  4757. CONFIG_FSNOTIFY=y
  4758. CONFIG_DNOTIFY=y
  4759. CONFIG_INOTIFY_USER=y
  4760. # CONFIG_FANOTIFY is not set
  4761. # CONFIG_QUOTA is not set
  4762. # CONFIG_QUOTACTL is not set
  4763. CONFIG_AUTOFS4_FS=y
  4764. # CONFIG_FUSE_FS is not set
  4765. # CONFIG_OVERLAY_FS is not set
  4766. #
  4767. # Caches
  4768. #
  4769. CONFIG_FSCACHE=m
  4770. # CONFIG_FSCACHE_STATS is not set
  4771. # CONFIG_FSCACHE_HISTOGRAM is not set
  4772. # CONFIG_FSCACHE_DEBUG is not set
  4773. # CONFIG_FSCACHE_OBJECT_LIST is not set
  4774. # CONFIG_CACHEFILES is not set
  4775. #
  4776. # CD-ROM/DVD Filesystems
  4777. #
  4778. # CONFIG_ISO9660_FS is not set
  4779. # CONFIG_UDF_FS is not set
  4780. #
  4781. # DOS/FAT/NT Filesystems
  4782. #
  4783. CONFIG_FAT_FS=y
  4784. CONFIG_MSDOS_FS=y
  4785. CONFIG_VFAT_FS=y
  4786. CONFIG_FAT_DEFAULT_CODEPAGE=437
  4787. CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
  4788. # CONFIG_FAT_DEFAULT_UTF8 is not set
  4789. CONFIG_NTFS_FS=y
  4790. # CONFIG_NTFS_DEBUG is not set
  4791. # CONFIG_NTFS_RW is not set
  4792. #
  4793. # Pseudo filesystems
  4794. #
  4795. CONFIG_PROC_FS=y
  4796. CONFIG_PROC_SYSCTL=y
  4797. CONFIG_PROC_PAGE_MONITOR=y
  4798. CONFIG_PROC_CHILDREN=y
  4799. CONFIG_KERNFS=y
  4800. CONFIG_SYSFS=y
  4801. CONFIG_TMPFS=y
  4802. CONFIG_TMPFS_POSIX_ACL=y
  4803. CONFIG_TMPFS_XATTR=y
  4804. # CONFIG_HUGETLB_PAGE is not set
  4805. CONFIG_CONFIGFS_FS=y
  4806. CONFIG_EFIVAR_FS=m
  4807. CONFIG_MISC_FILESYSTEMS=y
  4808. # CONFIG_ORANGEFS_FS is not set
  4809. # CONFIG_ADFS_FS is not set
  4810. # CONFIG_AFFS_FS is not set
  4811. # CONFIG_ECRYPT_FS is not set
  4812. # CONFIG_HFS_FS is not set
  4813. # CONFIG_HFSPLUS_FS is not set
  4814. # CONFIG_BEFS_FS is not set
  4815. # CONFIG_BFS_FS is not set
  4816. # CONFIG_EFS_FS is not set
  4817. # CONFIG_JFFS2_FS is not set
  4818. CONFIG_UBIFS_FS=y
  4819. # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set
  4820. CONFIG_UBIFS_FS_LZO=y
  4821. CONFIG_UBIFS_FS_ZLIB=y
  4822. # CONFIG_UBIFS_ATIME_SUPPORT is not set
  4823. # CONFIG_LOGFS is not set
  4824. # CONFIG_CRAMFS is not set
  4825. CONFIG_SQUASHFS=y
  4826. CONFIG_SQUASHFS_FILE_CACHE=y
  4827. # CONFIG_SQUASHFS_FILE_DIRECT is not set
  4828. CONFIG_SQUASHFS_DECOMP_SINGLE=y
  4829. # CONFIG_SQUASHFS_DECOMP_MULTI is not set
  4830. # CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
  4831. # CONFIG_SQUASHFS_XATTR is not set
  4832. CONFIG_SQUASHFS_ZLIB=y
  4833. # CONFIG_SQUASHFS_LZ4 is not set
  4834. CONFIG_SQUASHFS_LZO=y
  4835. CONFIG_SQUASHFS_XZ=y
  4836. # CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
  4837. # CONFIG_SQUASHFS_EMBEDDED is not set
  4838. CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
  4839. # CONFIG_VXFS_FS is not set
  4840. # CONFIG_MINIX_FS is not set
  4841. # CONFIG_OMFS_FS is not set
  4842. # CONFIG_HPFS_FS is not set
  4843. # CONFIG_QNX4FS_FS is not set
  4844. # CONFIG_QNX6FS_FS is not set
  4845. # CONFIG_ROMFS_FS is not set
  4846. # CONFIG_PSTORE is not set
  4847. # CONFIG_SYSV_FS is not set
  4848. # CONFIG_UFS_FS is not set
  4849. CONFIG_NETWORK_FILESYSTEMS=y
  4850. CONFIG_NFS_FS=y
  4851. CONFIG_NFS_V2=y
  4852. CONFIG_NFS_V3=y
  4853. CONFIG_NFS_V3_ACL=y
  4854. CONFIG_NFS_V4=y
  4855. # CONFIG_NFS_SWAP is not set
  4856. # CONFIG_NFS_V4_1 is not set
  4857. CONFIG_ROOT_NFS=y
  4858. # CONFIG_NFS_USE_LEGACY_DNS is not set
  4859. CONFIG_NFS_USE_KERNEL_DNS=y
  4860. # CONFIG_NFSD is not set
  4861. CONFIG_GRACE_PERIOD=y
  4862. CONFIG_LOCKD=y
  4863. CONFIG_LOCKD_V4=y
  4864. CONFIG_NFS_ACL_SUPPORT=y
  4865. CONFIG_NFS_COMMON=y
  4866. CONFIG_SUNRPC=y
  4867. CONFIG_SUNRPC_GSS=y
  4868. # CONFIG_SUNRPC_DEBUG is not set
  4869. # CONFIG_CEPH_FS is not set
  4870. CONFIG_CIFS=m
  4871. CONFIG_CIFS_STATS=y
  4872. # CONFIG_CIFS_STATS2 is not set
  4873. # CONFIG_CIFS_WEAK_PW_HASH is not set
  4874. # CONFIG_CIFS_UPCALL is not set
  4875. CONFIG_CIFS_XATTR=y
  4876. CONFIG_CIFS_POSIX=y
  4877. CONFIG_CIFS_ACL=y
  4878. CONFIG_CIFS_DEBUG=y
  4879. # CONFIG_CIFS_DEBUG2 is not set
  4880. # CONFIG_CIFS_DFS_UPCALL is not set
  4881. CONFIG_CIFS_SMB2=y
  4882. # CONFIG_CIFS_SMB311 is not set
  4883. # CONFIG_CIFS_FSCACHE is not set
  4884. # CONFIG_NCP_FS is not set
  4885. # CONFIG_CODA_FS is not set
  4886. # CONFIG_AFS_FS is not set
  4887. CONFIG_NLS=y
  4888. CONFIG_NLS_DEFAULT="iso8859-1"
  4889. CONFIG_NLS_CODEPAGE_437=y
  4890. # CONFIG_NLS_CODEPAGE_737 is not set
  4891. # CONFIG_NLS_CODEPAGE_775 is not set
  4892. # CONFIG_NLS_CODEPAGE_850 is not set
  4893. # CONFIG_NLS_CODEPAGE_852 is not set
  4894. # CONFIG_NLS_CODEPAGE_855 is not set
  4895. # CONFIG_NLS_CODEPAGE_857 is not set
  4896. # CONFIG_NLS_CODEPAGE_860 is not set
  4897. # CONFIG_NLS_CODEPAGE_861 is not set
  4898. # CONFIG_NLS_CODEPAGE_862 is not set
  4899. # CONFIG_NLS_CODEPAGE_863 is not set
  4900. # CONFIG_NLS_CODEPAGE_864 is not set
  4901. # CONFIG_NLS_CODEPAGE_865 is not set
  4902. # CONFIG_NLS_CODEPAGE_866 is not set
  4903. # CONFIG_NLS_CODEPAGE_869 is not set
  4904. # CONFIG_NLS_CODEPAGE_936 is not set
  4905. # CONFIG_NLS_CODEPAGE_950 is not set
  4906. # CONFIG_NLS_CODEPAGE_932 is not set
  4907. # CONFIG_NLS_CODEPAGE_949 is not set
  4908. # CONFIG_NLS_CODEPAGE_874 is not set
  4909. # CONFIG_NLS_ISO8859_8 is not set
  4910. # CONFIG_NLS_CODEPAGE_1250 is not set
  4911. # CONFIG_NLS_CODEPAGE_1251 is not set
  4912. # CONFIG_NLS_ASCII is not set
  4913. CONFIG_NLS_ISO8859_1=y
  4914. # CONFIG_NLS_ISO8859_2 is not set
  4915. # CONFIG_NLS_ISO8859_3 is not set
  4916. # CONFIG_NLS_ISO8859_4 is not set
  4917. # CONFIG_NLS_ISO8859_5 is not set
  4918. # CONFIG_NLS_ISO8859_6 is not set
  4919. # CONFIG_NLS_ISO8859_7 is not set
  4920. # CONFIG_NLS_ISO8859_9 is not set
  4921. # CONFIG_NLS_ISO8859_13 is not set
  4922. # CONFIG_NLS_ISO8859_14 is not set
  4923. # CONFIG_NLS_ISO8859_15 is not set
  4924. # CONFIG_NLS_KOI8_R is not set
  4925. # CONFIG_NLS_KOI8_U is not set
  4926. # CONFIG_NLS_MAC_ROMAN is not set
  4927. # CONFIG_NLS_MAC_CELTIC is not set
  4928. # CONFIG_NLS_MAC_CENTEURO is not set
  4929. # CONFIG_NLS_MAC_CROATIAN is not set
  4930. # CONFIG_NLS_MAC_CYRILLIC is not set
  4931. # CONFIG_NLS_MAC_GAELIC is not set
  4932. # CONFIG_NLS_MAC_GREEK is not set
  4933. # CONFIG_NLS_MAC_ICELAND is not set
  4934. # CONFIG_NLS_MAC_INUIT is not set
  4935. # CONFIG_NLS_MAC_ROMANIAN is not set
  4936. # CONFIG_NLS_MAC_TURKISH is not set
  4937. CONFIG_NLS_UTF8=y
  4938. # CONFIG_DLM is not set
  4939. #
  4940. # Kernel hacking
  4941. #
  4942. #
  4943. # printk and dmesg options
  4944. #
  4945. CONFIG_PRINTK_TIME=y
  4946. CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
  4947. # CONFIG_BOOT_PRINTK_DELAY is not set
  4948. # CONFIG_DYNAMIC_DEBUG is not set
  4949. #
  4950. # Compile-time checks and compiler options
  4951. #
  4952. # CONFIG_DEBUG_INFO is not set
  4953. CONFIG_ENABLE_WARN_DEPRECATED=y
  4954. CONFIG_ENABLE_MUST_CHECK=y
  4955. CONFIG_FRAME_WARN=1024
  4956. # CONFIG_STRIP_ASM_SYMS is not set
  4957. # CONFIG_READABLE_ASM is not set
  4958. # CONFIG_UNUSED_SYMBOLS is not set
  4959. # CONFIG_PAGE_OWNER is not set
  4960. CONFIG_DEBUG_FS=y
  4961. # CONFIG_HEADERS_CHECK is not set
  4962. # CONFIG_DEBUG_SECTION_MISMATCH is not set
  4963. CONFIG_SECTION_MISMATCH_WARN_ONLY=y
  4964. CONFIG_FRAME_POINTER=y
  4965. # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
  4966. CONFIG_MAGIC_SYSRQ=y
  4967. CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
  4968. CONFIG_DEBUG_KERNEL=y
  4969. #
  4970. # Memory Debugging
  4971. #
  4972. # CONFIG_PAGE_EXTENSION is not set
  4973. # CONFIG_DEBUG_PAGEALLOC is not set
  4974. # CONFIG_PAGE_POISONING is not set
  4975. # CONFIG_DEBUG_OBJECTS is not set
  4976. # CONFIG_SLUB_STATS is not set
  4977. CONFIG_HAVE_DEBUG_KMEMLEAK=y
  4978. # CONFIG_DEBUG_KMEMLEAK is not set
  4979. # CONFIG_DEBUG_STACK_USAGE is not set
  4980. # CONFIG_DEBUG_VM is not set
  4981. # CONFIG_DEBUG_MEMORY_INIT is not set
  4982. # CONFIG_DEBUG_HIGHMEM is not set
  4983. # CONFIG_DEBUG_SHIRQ is not set
  4984. #
  4985. # Debug Lockups and Hangs
  4986. #
  4987. # CONFIG_LOCKUP_DETECTOR is not set
  4988. # CONFIG_DETECT_HUNG_TASK is not set
  4989. # CONFIG_WQ_WATCHDOG is not set
  4990. # CONFIG_PANIC_ON_OOPS is not set
  4991. CONFIG_PANIC_ON_OOPS_VALUE=0
  4992. CONFIG_PANIC_TIMEOUT=0
  4993. CONFIG_SCHED_DEBUG=y
  4994. CONFIG_SCHED_INFO=y
  4995. CONFIG_SCHEDSTATS=y
  4996. # CONFIG_SCHED_STACK_END_CHECK is not set
  4997. # CONFIG_DEBUG_TIMEKEEPING is not set
  4998. # CONFIG_TIMER_STATS is not set
  4999. # CONFIG_DEBUG_PREEMPT is not set
  5000. #
  5001. # Lock Debugging (spinlocks, mutexes, etc...)
  5002. #
  5003. # CONFIG_DEBUG_RT_MUTEXES is not set
  5004. # CONFIG_DEBUG_SPINLOCK is not set
  5005. # CONFIG_DEBUG_MUTEXES is not set
  5006. # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
  5007. # CONFIG_DEBUG_LOCK_ALLOC is not set
  5008. # CONFIG_PROVE_LOCKING is not set
  5009. # CONFIG_LOCK_STAT is not set
  5010. # CONFIG_DEBUG_ATOMIC_SLEEP is not set
  5011. # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
  5012. # CONFIG_LOCK_TORTURE_TEST is not set
  5013. # CONFIG_STACKTRACE is not set
  5014. # CONFIG_DEBUG_KOBJECT is not set
  5015. # CONFIG_DEBUG_BUGVERBOSE is not set
  5016. # CONFIG_DEBUG_LIST is not set
  5017. # CONFIG_DEBUG_PI_LIST is not set
  5018. # CONFIG_DEBUG_SG is not set
  5019. # CONFIG_DEBUG_NOTIFIERS is not set
  5020. # CONFIG_DEBUG_CREDENTIALS is not set
  5021. #
  5022. # RCU Debugging
  5023. #
  5024. # CONFIG_PROVE_RCU is not set
  5025. # CONFIG_SPARSE_RCU_POINTER is not set
  5026. # CONFIG_TORTURE_TEST is not set
  5027. # CONFIG_RCU_PERF_TEST is not set
  5028. # CONFIG_RCU_TORTURE_TEST is not set
  5029. CONFIG_RCU_CPU_STALL_TIMEOUT=21
  5030. # CONFIG_RCU_TRACE is not set
  5031. # CONFIG_RCU_EQS_DEBUG is not set
  5032. # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
  5033. # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
  5034. # CONFIG_NOTIFIER_ERROR_INJECTION is not set
  5035. # CONFIG_FAULT_INJECTION is not set
  5036. # CONFIG_LATENCYTOP is not set
  5037. CONFIG_HAVE_FUNCTION_TRACER=y
  5038. CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
  5039. CONFIG_HAVE_DYNAMIC_FTRACE=y
  5040. CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
  5041. CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
  5042. CONFIG_HAVE_C_RECORDMCOUNT=y
  5043. CONFIG_TRACING_SUPPORT=y
  5044. # CONFIG_FTRACE is not set
  5045. #
  5046. # Runtime Testing
  5047. #
  5048. # CONFIG_LKDTM is not set
  5049. # CONFIG_TEST_LIST_SORT is not set
  5050. # CONFIG_BACKTRACE_SELF_TEST is not set
  5051. # CONFIG_RBTREE_TEST is not set
  5052. # CONFIG_INTERVAL_TREE_TEST is not set
  5053. # CONFIG_PERCPU_TEST is not set
  5054. # CONFIG_ATOMIC64_SELFTEST is not set
  5055. # CONFIG_TEST_HEXDUMP is not set
  5056. # CONFIG_TEST_STRING_HELPERS is not set
  5057. # CONFIG_TEST_KSTRTOX is not set
  5058. # CONFIG_TEST_PRINTF is not set
  5059. # CONFIG_TEST_BITMAP is not set
  5060. # CONFIG_TEST_UUID is not set
  5061. # CONFIG_TEST_RHASHTABLE is not set
  5062. # CONFIG_TEST_HASH is not set
  5063. # CONFIG_DMA_API_DEBUG is not set
  5064. # CONFIG_TEST_LKM is not set
  5065. # CONFIG_TEST_USER_COPY is not set
  5066. # CONFIG_TEST_BPF is not set
  5067. # CONFIG_TEST_FIRMWARE is not set
  5068. # CONFIG_TEST_UDELAY is not set
  5069. # CONFIG_MEMTEST is not set
  5070. # CONFIG_TEST_STATIC_KEYS is not set
  5071. # CONFIG_SAMPLES is not set
  5072. CONFIG_HAVE_ARCH_KGDB=y
  5073. # CONFIG_KGDB is not set
  5074. # CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set
  5075. # CONFIG_UBSAN is not set
  5076. CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
  5077. # CONFIG_STRICT_DEVMEM is not set
  5078. # CONFIG_ARM_PTDUMP is not set
  5079. # CONFIG_ARM_UNWIND is not set
  5080. # CONFIG_DEBUG_USER is not set
  5081. # CONFIG_DEBUG_LL is not set
  5082. CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
  5083. # CONFIG_DEBUG_UART_8250 is not set
  5084. CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
  5085. # CONFIG_PID_IN_CONTEXTIDR is not set
  5086. # CONFIG_DEBUG_SET_MODULE_RONX is not set
  5087. # CONFIG_CORESIGHT is not set
  5088. #
  5089. # Security options
  5090. #
  5091. CONFIG_KEYS=y
  5092. # CONFIG_PERSISTENT_KEYRINGS is not set
  5093. # CONFIG_BIG_KEYS is not set
  5094. # CONFIG_ENCRYPTED_KEYS is not set
  5095. # CONFIG_KEY_DH_OPERATIONS is not set
  5096. # CONFIG_SECURITY_DMESG_RESTRICT is not set
  5097. # CONFIG_SECURITY is not set
  5098. # CONFIG_SECURITYFS is not set
  5099. CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
  5100. CONFIG_HAVE_ARCH_HARDENED_USERCOPY=y
  5101. # CONFIG_HARDENED_USERCOPY is not set
  5102. CONFIG_DEFAULT_SECURITY_DAC=y
  5103. CONFIG_DEFAULT_SECURITY=""
  5104. CONFIG_CRYPTO=y
  5105. #
  5106. # Crypto core or helper
  5107. #
  5108. CONFIG_CRYPTO_ALGAPI=y
  5109. CONFIG_CRYPTO_ALGAPI2=y
  5110. CONFIG_CRYPTO_AEAD=m
  5111. CONFIG_CRYPTO_AEAD2=y
  5112. CONFIG_CRYPTO_BLKCIPHER=m
  5113. CONFIG_CRYPTO_BLKCIPHER2=y
  5114. CONFIG_CRYPTO_HASH=y
  5115. CONFIG_CRYPTO_HASH2=y
  5116. CONFIG_CRYPTO_RNG=m
  5117. CONFIG_CRYPTO_RNG2=y
  5118. CONFIG_CRYPTO_RNG_DEFAULT=m
  5119. CONFIG_CRYPTO_AKCIPHER2=y
  5120. CONFIG_CRYPTO_KPP2=y
  5121. # CONFIG_CRYPTO_RSA is not set
  5122. # CONFIG_CRYPTO_DH is not set
  5123. # CONFIG_CRYPTO_ECDH is not set
  5124. CONFIG_CRYPTO_MANAGER=m
  5125. CONFIG_CRYPTO_MANAGER2=y
  5126. # CONFIG_CRYPTO_USER is not set
  5127. CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
  5128. CONFIG_CRYPTO_GF128MUL=m
  5129. CONFIG_CRYPTO_NULL=m
  5130. CONFIG_CRYPTO_NULL2=y
  5131. CONFIG_CRYPTO_WORKQUEUE=y
  5132. CONFIG_CRYPTO_CRYPTD=m
  5133. # CONFIG_CRYPTO_MCRYPTD is not set
  5134. CONFIG_CRYPTO_AUTHENC=m
  5135. CONFIG_CRYPTO_TEST=m
  5136. CONFIG_CRYPTO_ABLK_HELPER=m
  5137. CONFIG_CRYPTO_ENGINE=m
  5138. #
  5139. # Authenticated Encryption with Associated Data
  5140. #
  5141. CONFIG_CRYPTO_CCM=m
  5142. CONFIG_CRYPTO_GCM=m
  5143. # CONFIG_CRYPTO_CHACHA20POLY1305 is not set
  5144. CONFIG_CRYPTO_SEQIV=m
  5145. CONFIG_CRYPTO_ECHAINIV=m
  5146. #
  5147. # Block modes
  5148. #
  5149. CONFIG_CRYPTO_CBC=m
  5150. CONFIG_CRYPTO_CTR=m
  5151. # CONFIG_CRYPTO_CTS is not set
  5152. CONFIG_CRYPTO_ECB=m
  5153. # CONFIG_CRYPTO_LRW is not set
  5154. # CONFIG_CRYPTO_PCBC is not set
  5155. # CONFIG_CRYPTO_XTS is not set
  5156. # CONFIG_CRYPTO_KEYWRAP is not set
  5157. #
  5158. # Hash modes
  5159. #
  5160. CONFIG_CRYPTO_CMAC=m
  5161. CONFIG_CRYPTO_HMAC=m
  5162. # CONFIG_CRYPTO_XCBC is not set
  5163. # CONFIG_CRYPTO_VMAC is not set
  5164. #
  5165. # Digest
  5166. #
  5167. CONFIG_CRYPTO_CRC32C=y
  5168. # CONFIG_CRYPTO_CRC32 is not set
  5169. # CONFIG_CRYPTO_CRCT10DIF is not set
  5170. CONFIG_CRYPTO_GHASH=m
  5171. # CONFIG_CRYPTO_POLY1305 is not set
  5172. CONFIG_CRYPTO_MD4=m
  5173. CONFIG_CRYPTO_MD5=m
  5174. # CONFIG_CRYPTO_MICHAEL_MIC is not set
  5175. # CONFIG_CRYPTO_RMD128 is not set
  5176. # CONFIG_CRYPTO_RMD160 is not set
  5177. # CONFIG_CRYPTO_RMD256 is not set
  5178. # CONFIG_CRYPTO_RMD320 is not set
  5179. CONFIG_CRYPTO_SHA1=m
  5180. CONFIG_CRYPTO_SHA256=m
  5181. CONFIG_CRYPTO_SHA512=m
  5182. # CONFIG_CRYPTO_SHA3 is not set
  5183. # CONFIG_CRYPTO_TGR192 is not set
  5184. # CONFIG_CRYPTO_WP512 is not set
  5185. #
  5186. # Ciphers
  5187. #
  5188. CONFIG_CRYPTO_AES=y
  5189. # CONFIG_CRYPTO_ANUBIS is not set
  5190. CONFIG_CRYPTO_ARC4=m
  5191. # CONFIG_CRYPTO_BLOWFISH is not set
  5192. # CONFIG_CRYPTO_CAMELLIA is not set
  5193. # CONFIG_CRYPTO_CAST5 is not set
  5194. # CONFIG_CRYPTO_CAST6 is not set
  5195. CONFIG_CRYPTO_DES=m
  5196. # CONFIG_CRYPTO_FCRYPT is not set
  5197. # CONFIG_CRYPTO_KHAZAD is not set
  5198. # CONFIG_CRYPTO_SALSA20 is not set
  5199. # CONFIG_CRYPTO_CHACHA20 is not set
  5200. # CONFIG_CRYPTO_SEED is not set
  5201. # CONFIG_CRYPTO_SERPENT is not set
  5202. # CONFIG_CRYPTO_TEA is not set
  5203. # CONFIG_CRYPTO_TWOFISH is not set
  5204. #
  5205. # Compression
  5206. #
  5207. CONFIG_CRYPTO_DEFLATE=y
  5208. CONFIG_CRYPTO_LZO=y
  5209. # CONFIG_CRYPTO_842 is not set
  5210. # CONFIG_CRYPTO_LZ4 is not set
  5211. # CONFIG_CRYPTO_LZ4HC is not set
  5212. #
  5213. # Random Number Generation
  5214. #
  5215. # CONFIG_CRYPTO_ANSI_CPRNG is not set
  5216. CONFIG_CRYPTO_DRBG_MENU=m
  5217. CONFIG_CRYPTO_DRBG_HMAC=y
  5218. # CONFIG_CRYPTO_DRBG_HASH is not set
  5219. # CONFIG_CRYPTO_DRBG_CTR is not set
  5220. CONFIG_CRYPTO_DRBG=m
  5221. CONFIG_CRYPTO_JITTERENTROPY=m
  5222. CONFIG_CRYPTO_USER_API=m
  5223. CONFIG_CRYPTO_USER_API_HASH=m
  5224. CONFIG_CRYPTO_USER_API_SKCIPHER=m
  5225. # CONFIG_CRYPTO_USER_API_RNG is not set
  5226. # CONFIG_CRYPTO_USER_API_AEAD is not set
  5227. CONFIG_CRYPTO_HW=y
  5228. # CONFIG_CRYPTO_DEV_HIFN_795X is not set
  5229. CONFIG_CRYPTO_DEV_OMAP_SHAM=m
  5230. CONFIG_CRYPTO_DEV_OMAP_AES=m
  5231. CONFIG_CRYPTO_DEV_OMAP_DES=m
  5232. # CONFIG_ASYMMETRIC_KEY_TYPE is not set
  5233. #
  5234. # Certificates for signature checking
  5235. #
  5236. CONFIG_ARM_CRYPTO=y
  5237. CONFIG_CRYPTO_SHA1_ARM=m
  5238. CONFIG_CRYPTO_SHA1_ARM_NEON=m
  5239. CONFIG_CRYPTO_SHA1_ARM_CE=m
  5240. CONFIG_CRYPTO_SHA2_ARM_CE=m
  5241. CONFIG_CRYPTO_SHA256_ARM=m
  5242. CONFIG_CRYPTO_SHA512_ARM=m
  5243. CONFIG_CRYPTO_AES_ARM=m
  5244. CONFIG_CRYPTO_AES_ARM_BS=m
  5245. CONFIG_CRYPTO_AES_ARM_CE=m
  5246. CONFIG_CRYPTO_GHASH_ARM_CE=m
  5247. # CONFIG_BINARY_PRINTF is not set
  5248. #
  5249. # Library routines
  5250. #
  5251. CONFIG_BITREVERSE=y
  5252. CONFIG_HAVE_ARCH_BITREVERSE=y
  5253. CONFIG_RATIONAL=y
  5254. CONFIG_GENERIC_STRNCPY_FROM_USER=y
  5255. CONFIG_GENERIC_STRNLEN_USER=y
  5256. CONFIG_GENERIC_NET_UTILS=y
  5257. CONFIG_GENERIC_PCI_IOMAP=y
  5258. CONFIG_GENERIC_IO=y
  5259. CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
  5260. CONFIG_CRC_CCITT=m
  5261. CONFIG_CRC16=y
  5262. # CONFIG_CRC_T10DIF is not set
  5263. CONFIG_CRC_ITU_T=m
  5264. CONFIG_CRC32=y
  5265. # CONFIG_CRC32_SELFTEST is not set
  5266. CONFIG_CRC32_SLICEBY8=y
  5267. # CONFIG_CRC32_SLICEBY4 is not set
  5268. # CONFIG_CRC32_SARWATE is not set
  5269. # CONFIG_CRC32_BIT is not set
  5270. CONFIG_CRC7=m
  5271. CONFIG_LIBCRC32C=m
  5272. # CONFIG_CRC8 is not set
  5273. # CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
  5274. # CONFIG_RANDOM32_SELFTEST is not set
  5275. CONFIG_ZLIB_INFLATE=y
  5276. CONFIG_ZLIB_DEFLATE=y
  5277. CONFIG_LZO_COMPRESS=y
  5278. CONFIG_LZO_DECOMPRESS=y
  5279. CONFIG_LZ4_DECOMPRESS=y
  5280. CONFIG_XZ_DEC=y
  5281. CONFIG_XZ_DEC_X86=y
  5282. CONFIG_XZ_DEC_POWERPC=y
  5283. CONFIG_XZ_DEC_IA64=y
  5284. CONFIG_XZ_DEC_ARM=y
  5285. CONFIG_XZ_DEC_ARMTHUMB=y
  5286. CONFIG_XZ_DEC_SPARC=y
  5287. CONFIG_XZ_DEC_BCJ=y
  5288. # CONFIG_XZ_DEC_TEST is not set
  5289. CONFIG_DECOMPRESS_GZIP=y
  5290. CONFIG_DECOMPRESS_BZIP2=y
  5291. CONFIG_DECOMPRESS_LZMA=y
  5292. CONFIG_DECOMPRESS_XZ=y
  5293. CONFIG_DECOMPRESS_LZO=y
  5294. CONFIG_DECOMPRESS_LZ4=y
  5295. CONFIG_GENERIC_ALLOCATOR=y
  5296. CONFIG_BCH=y
  5297. CONFIG_TEXTSEARCH=y
  5298. CONFIG_TEXTSEARCH_KMP=m
  5299. CONFIG_TEXTSEARCH_BM=m
  5300. CONFIG_TEXTSEARCH_FSM=m
  5301. CONFIG_ASSOCIATIVE_ARRAY=y
  5302. CONFIG_HAS_IOMEM=y
  5303. CONFIG_HAS_IOPORT_MAP=y
  5304. CONFIG_HAS_DMA=y
  5305. CONFIG_DQL=y
  5306. CONFIG_GLOB=y
  5307. # CONFIG_GLOB_SELFTEST is not set
  5308. CONFIG_NLATTR=y
  5309. # CONFIG_CORDIC is not set
  5310. # CONFIG_DDR is not set
  5311. # CONFIG_IRQ_POLL is not set
  5312. CONFIG_LIBFDT=y
  5313. CONFIG_OID_REGISTRY=y
  5314. CONFIG_UCS2_STRING=y
  5315. CONFIG_FONT_SUPPORT=y
  5316. # CONFIG_FONTS is not set
  5317. CONFIG_FONT_8x8=y
  5318. CONFIG_FONT_8x16=y
  5319. CONFIG_SG_SPLIT=y
  5320. CONFIG_SG_POOL=y
  5321. CONFIG_ARCH_HAS_SG_CHAIN=y
  5322. CONFIG_SBITMAP=y
  5323. # CONFIG_VIRTUALIZATION is not set