facter.json 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848
  1. {
  2. "version": 1,
  3. "system": "x86_64-linux",
  4. "virtualisation": "none",
  5. "hardware": {
  6. "bios": {
  7. "apm_info": {
  8. "supported": false,
  9. "enabled": false,
  10. "version": 0,
  11. "sub_version": 0,
  12. "bios_flags": 0
  13. },
  14. "vbe_info": {
  15. "version": 0,
  16. "video_memory": 0
  17. },
  18. "pnp": true,
  19. "pnp_id": 0,
  20. "lba_support": false,
  21. "low_memory_size": 644096,
  22. "smbios_version": 771
  23. },
  24. "bridge": [
  25. {
  26. "index": 21,
  27. "attached_to": 0,
  28. "class_list": [
  29. "pci",
  30. "bridge"
  31. ],
  32. "bus_type": {
  33. "hex": "0004",
  34. "name": "PCI",
  35. "value": 4
  36. },
  37. "slot": {
  38. "bus": 0,
  39. "number": 8
  40. },
  41. "base_class": {
  42. "hex": "0006",
  43. "name": "Bridge",
  44. "value": 6
  45. },
  46. "sub_class": {
  47. "hex": "0000",
  48. "name": "Host bridge",
  49. "value": 0
  50. },
  51. "vendor": {
  52. "hex": "1022",
  53. "name": "AMD",
  54. "value": 4130
  55. },
  56. "device": {
  57. "hex": "1632",
  58. "value": 5682
  59. },
  60. "model": "AMD Host bridge",
  61. "sysfs_id": "/devices/pci0000:00/0000:00:08.0",
  62. "sysfs_bus_id": "0000:00:08.0",
  63. "detail": {
  64. "function": 0,
  65. "command": 0,
  66. "header_type": 0,
  67. "secondary_bus": 0,
  68. "irq": 0,
  69. "prog_if": 0
  70. },
  71. "module_alias": "pci:v00001022d00001632sv00000000sd00000000bc06sc00i00"
  72. },
  73. {
  74. "index": 23,
  75. "attached_to": 0,
  76. "class_list": [
  77. "pci",
  78. "bridge"
  79. ],
  80. "bus_type": {
  81. "hex": "0004",
  82. "name": "PCI",
  83. "value": 4
  84. },
  85. "slot": {
  86. "bus": 0,
  87. "number": 24
  88. },
  89. "base_class": {
  90. "hex": "0006",
  91. "name": "Bridge",
  92. "value": 6
  93. },
  94. "sub_class": {
  95. "hex": "0000",
  96. "name": "Host bridge",
  97. "value": 0
  98. },
  99. "vendor": {
  100. "hex": "1022",
  101. "name": "AMD",
  102. "value": 4130
  103. },
  104. "device": {
  105. "hex": "166d",
  106. "value": 5741
  107. },
  108. "model": "AMD Host bridge",
  109. "sysfs_id": "/devices/pci0000:00/0000:00:18.3",
  110. "sysfs_bus_id": "0000:00:18.3",
  111. "detail": {
  112. "function": 3,
  113. "command": 0,
  114. "header_type": 0,
  115. "secondary_bus": 0,
  116. "irq": 0,
  117. "prog_if": 0
  118. },
  119. "driver": "k10temp",
  120. "driver_module": "k10temp",
  121. "drivers": [
  122. "k10temp"
  123. ],
  124. "driver_modules": [
  125. "k10temp"
  126. ],
  127. "module_alias": "pci:v00001022d0000166Dsv00000000sd00000000bc06sc00i00"
  128. },
  129. {
  130. "index": 25,
  131. "attached_to": 0,
  132. "class_list": [
  133. "pci",
  134. "bridge"
  135. ],
  136. "bus_type": {
  137. "hex": "0004",
  138. "name": "PCI",
  139. "value": 4
  140. },
  141. "slot": {
  142. "bus": 0,
  143. "number": 24
  144. },
  145. "base_class": {
  146. "hex": "0006",
  147. "name": "Bridge",
  148. "value": 6
  149. },
  150. "sub_class": {
  151. "hex": "0000",
  152. "name": "Host bridge",
  153. "value": 0
  154. },
  155. "vendor": {
  156. "hex": "1022",
  157. "name": "AMD",
  158. "value": 4130
  159. },
  160. "device": {
  161. "hex": "166b",
  162. "value": 5739
  163. },
  164. "model": "AMD Host bridge",
  165. "sysfs_id": "/devices/pci0000:00/0000:00:18.1",
  166. "sysfs_bus_id": "0000:00:18.1",
  167. "detail": {
  168. "function": 1,
  169. "command": 0,
  170. "header_type": 0,
  171. "secondary_bus": 0,
  172. "irq": 0,
  173. "prog_if": 0
  174. },
  175. "module_alias": "pci:v00001022d0000166Bsv00000000sd00000000bc06sc00i00"
  176. },
  177. {
  178. "index": 26,
  179. "attached_to": 0,
  180. "class_list": [
  181. "pci",
  182. "bridge"
  183. ],
  184. "bus_type": {
  185. "hex": "0004",
  186. "name": "PCI",
  187. "value": 4
  188. },
  189. "slot": {
  190. "bus": 0,
  191. "number": 1
  192. },
  193. "base_class": {
  194. "hex": "0006",
  195. "name": "Bridge",
  196. "value": 6
  197. },
  198. "sub_class": {
  199. "hex": "0000",
  200. "name": "Host bridge",
  201. "value": 0
  202. },
  203. "vendor": {
  204. "hex": "1022",
  205. "name": "AMD",
  206. "value": 4130
  207. },
  208. "device": {
  209. "hex": "1632",
  210. "value": 5682
  211. },
  212. "model": "AMD Host bridge",
  213. "sysfs_id": "/devices/pci0000:00/0000:00:01.0",
  214. "sysfs_bus_id": "0000:00:01.0",
  215. "detail": {
  216. "function": 0,
  217. "command": 0,
  218. "header_type": 0,
  219. "secondary_bus": 0,
  220. "irq": 0,
  221. "prog_if": 0
  222. },
  223. "module_alias": "pci:v00001022d00001632sv00000000sd00000000bc06sc00i00"
  224. },
  225. {
  226. "index": 27,
  227. "attached_to": 30,
  228. "class_list": [
  229. "pci",
  230. "bridge"
  231. ],
  232. "bus_type": {
  233. "hex": "0004",
  234. "name": "PCI",
  235. "value": 4
  236. },
  237. "slot": {
  238. "bus": 1,
  239. "number": 0
  240. },
  241. "base_class": {
  242. "hex": "0006",
  243. "name": "Bridge",
  244. "value": 6
  245. },
  246. "sub_class": {
  247. "hex": "0004",
  248. "name": "PCI bridge",
  249. "value": 4
  250. },
  251. "pci_interface": {
  252. "hex": "0000",
  253. "name": "Normal decode",
  254. "value": 0
  255. },
  256. "vendor": {
  257. "hex": "1022",
  258. "name": "AMD",
  259. "value": 4130
  260. },
  261. "sub_vendor": {
  262. "hex": "1b21",
  263. "value": 6945
  264. },
  265. "device": {
  266. "hex": "43e9",
  267. "value": 17385
  268. },
  269. "sub_device": {
  270. "hex": "0201",
  271. "value": 513
  272. },
  273. "model": "AMD PCI bridge",
  274. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.2",
  275. "sysfs_bus_id": "0000:01:00.2",
  276. "resources": [
  277. {
  278. "type": "irq",
  279. "base": 28,
  280. "triggered": 0,
  281. "enabled": true
  282. }
  283. ],
  284. "detail": {
  285. "function": 2,
  286. "command": 7,
  287. "header_type": 1,
  288. "secondary_bus": 2,
  289. "irq": 28,
  290. "prog_if": 0
  291. },
  292. "driver": "pcieport",
  293. "driver_module": "pcieportdrv",
  294. "drivers": [
  295. "pcieport"
  296. ],
  297. "driver_modules": [
  298. "pcieportdrv"
  299. ],
  300. "module_alias": "pci:v00001022d000043E9sv00001B21sd00000201bc06sc04i00"
  301. },
  302. {
  303. "index": 28,
  304. "attached_to": 0,
  305. "class_list": [
  306. "pci",
  307. "bridge"
  308. ],
  309. "bus_type": {
  310. "hex": "0004",
  311. "name": "PCI",
  312. "value": 4
  313. },
  314. "slot": {
  315. "bus": 0,
  316. "number": 20
  317. },
  318. "base_class": {
  319. "hex": "0006",
  320. "name": "Bridge",
  321. "value": 6
  322. },
  323. "sub_class": {
  324. "hex": "0001",
  325. "name": "ISA bridge",
  326. "value": 1
  327. },
  328. "vendor": {
  329. "hex": "1022",
  330. "name": "AMD",
  331. "value": 4130
  332. },
  333. "sub_vendor": {
  334. "hex": "1849",
  335. "value": 6217
  336. },
  337. "device": {
  338. "hex": "790e",
  339. "value": 30990
  340. },
  341. "sub_device": {
  342. "hex": "ffff",
  343. "value": 65535
  344. },
  345. "revision": {
  346. "hex": "0051",
  347. "value": 81
  348. },
  349. "model": "AMD ISA bridge",
  350. "sysfs_id": "/devices/pci0000:00/0000:00:14.3",
  351. "sysfs_bus_id": "0000:00:14.3",
  352. "detail": {
  353. "function": 3,
  354. "command": 15,
  355. "header_type": 0,
  356. "secondary_bus": 0,
  357. "irq": 0,
  358. "prog_if": 0
  359. },
  360. "module_alias": "pci:v00001022d0000790Esv00001849sd0000FFFFbc06sc01i00"
  361. },
  362. {
  363. "index": 30,
  364. "attached_to": 0,
  365. "class_list": [
  366. "pci",
  367. "bridge"
  368. ],
  369. "bus_type": {
  370. "hex": "0004",
  371. "name": "PCI",
  372. "value": 4
  373. },
  374. "slot": {
  375. "bus": 0,
  376. "number": 2
  377. },
  378. "base_class": {
  379. "hex": "0006",
  380. "name": "Bridge",
  381. "value": 6
  382. },
  383. "sub_class": {
  384. "hex": "0004",
  385. "name": "PCI bridge",
  386. "value": 4
  387. },
  388. "pci_interface": {
  389. "hex": "0000",
  390. "name": "Normal decode",
  391. "value": 0
  392. },
  393. "vendor": {
  394. "hex": "1022",
  395. "name": "AMD",
  396. "value": 4130
  397. },
  398. "sub_vendor": {
  399. "hex": "1022",
  400. "name": "AMD",
  401. "value": 4130
  402. },
  403. "device": {
  404. "hex": "1634",
  405. "value": 5684
  406. },
  407. "sub_device": {
  408. "hex": "1453",
  409. "value": 5203
  410. },
  411. "model": "AMD PCI bridge",
  412. "sysfs_id": "/devices/pci0000:00/0000:00:02.1",
  413. "sysfs_bus_id": "0000:00:02.1",
  414. "resources": [
  415. {
  416. "type": "irq",
  417. "base": 25,
  418. "triggered": 0,
  419. "enabled": true
  420. }
  421. ],
  422. "detail": {
  423. "function": 1,
  424. "command": 1031,
  425. "header_type": 1,
  426. "secondary_bus": 1,
  427. "irq": 25,
  428. "prog_if": 0
  429. },
  430. "driver": "pcieport",
  431. "driver_module": "pcieportdrv",
  432. "drivers": [
  433. "pcieport"
  434. ],
  435. "driver_modules": [
  436. "pcieportdrv"
  437. ],
  438. "module_alias": "pci:v00001022d00001634sv00001022sd00001453bc06sc04i00"
  439. },
  440. {
  441. "index": 32,
  442. "attached_to": 0,
  443. "class_list": [
  444. "pci",
  445. "bridge"
  446. ],
  447. "bus_type": {
  448. "hex": "0004",
  449. "name": "PCI",
  450. "value": 4
  451. },
  452. "slot": {
  453. "bus": 0,
  454. "number": 24
  455. },
  456. "base_class": {
  457. "hex": "0006",
  458. "name": "Bridge",
  459. "value": 6
  460. },
  461. "sub_class": {
  462. "hex": "0000",
  463. "name": "Host bridge",
  464. "value": 0
  465. },
  466. "vendor": {
  467. "hex": "1022",
  468. "name": "AMD",
  469. "value": 4130
  470. },
  471. "device": {
  472. "hex": "1670",
  473. "value": 5744
  474. },
  475. "model": "AMD Host bridge",
  476. "sysfs_id": "/devices/pci0000:00/0000:00:18.6",
  477. "sysfs_bus_id": "0000:00:18.6",
  478. "detail": {
  479. "function": 6,
  480. "command": 0,
  481. "header_type": 0,
  482. "secondary_bus": 0,
  483. "irq": 0,
  484. "prog_if": 0
  485. },
  486. "module_alias": "pci:v00001022d00001670sv00000000sd00000000bc06sc00i00"
  487. },
  488. {
  489. "index": 33,
  490. "attached_to": 0,
  491. "class_list": [
  492. "pci",
  493. "bridge"
  494. ],
  495. "bus_type": {
  496. "hex": "0004",
  497. "name": "PCI",
  498. "value": 4
  499. },
  500. "slot": {
  501. "bus": 0,
  502. "number": 0
  503. },
  504. "base_class": {
  505. "hex": "0006",
  506. "name": "Bridge",
  507. "value": 6
  508. },
  509. "sub_class": {
  510. "hex": "0000",
  511. "name": "Host bridge",
  512. "value": 0
  513. },
  514. "vendor": {
  515. "hex": "1022",
  516. "name": "AMD",
  517. "value": 4130
  518. },
  519. "sub_vendor": {
  520. "hex": "1022",
  521. "name": "AMD",
  522. "value": 4130
  523. },
  524. "device": {
  525. "hex": "1630",
  526. "value": 5680
  527. },
  528. "sub_device": {
  529. "hex": "1630",
  530. "value": 5680
  531. },
  532. "model": "AMD Host bridge",
  533. "sysfs_id": "/devices/pci0000:00/0000:00:00.0",
  534. "sysfs_bus_id": "0000:00:00.0",
  535. "detail": {
  536. "function": 0,
  537. "command": 0,
  538. "header_type": 0,
  539. "secondary_bus": 0,
  540. "irq": 0,
  541. "prog_if": 0
  542. },
  543. "module_alias": "pci:v00001022d00001630sv00001022sd00001630bc06sc00i00"
  544. },
  545. {
  546. "index": 34,
  547. "attached_to": 0,
  548. "class_list": [
  549. "pci",
  550. "bridge"
  551. ],
  552. "bus_type": {
  553. "hex": "0004",
  554. "name": "PCI",
  555. "value": 4
  556. },
  557. "slot": {
  558. "bus": 0,
  559. "number": 8
  560. },
  561. "base_class": {
  562. "hex": "0006",
  563. "name": "Bridge",
  564. "value": 6
  565. },
  566. "sub_class": {
  567. "hex": "0004",
  568. "name": "PCI bridge",
  569. "value": 4
  570. },
  571. "pci_interface": {
  572. "hex": "0000",
  573. "name": "Normal decode",
  574. "value": 0
  575. },
  576. "vendor": {
  577. "hex": "1022",
  578. "name": "AMD",
  579. "value": 4130
  580. },
  581. "sub_vendor": {
  582. "hex": "1022",
  583. "name": "AMD",
  584. "value": 4130
  585. },
  586. "device": {
  587. "hex": "1635",
  588. "value": 5685
  589. },
  590. "sub_device": {
  591. "hex": "1635",
  592. "value": 5685
  593. },
  594. "model": "AMD PCI bridge",
  595. "sysfs_id": "/devices/pci0000:00/0000:00:08.1",
  596. "sysfs_bus_id": "0000:00:08.1",
  597. "resources": [
  598. {
  599. "type": "irq",
  600. "base": 27,
  601. "triggered": 0,
  602. "enabled": true
  603. }
  604. ],
  605. "detail": {
  606. "function": 1,
  607. "command": 1031,
  608. "header_type": 1,
  609. "secondary_bus": 5,
  610. "irq": 27,
  611. "prog_if": 0
  612. },
  613. "driver": "pcieport",
  614. "driver_module": "pcieportdrv",
  615. "drivers": [
  616. "pcieport"
  617. ],
  618. "driver_modules": [
  619. "pcieportdrv"
  620. ],
  621. "module_alias": "pci:v00001022d00001635sv00001022sd00001635bc06sc04i00"
  622. },
  623. {
  624. "index": 36,
  625. "attached_to": 0,
  626. "class_list": [
  627. "pci",
  628. "bridge"
  629. ],
  630. "bus_type": {
  631. "hex": "0004",
  632. "name": "PCI",
  633. "value": 4
  634. },
  635. "slot": {
  636. "bus": 0,
  637. "number": 24
  638. },
  639. "base_class": {
  640. "hex": "0006",
  641. "name": "Bridge",
  642. "value": 6
  643. },
  644. "sub_class": {
  645. "hex": "0000",
  646. "name": "Host bridge",
  647. "value": 0
  648. },
  649. "vendor": {
  650. "hex": "1022",
  651. "name": "AMD",
  652. "value": 4130
  653. },
  654. "device": {
  655. "hex": "166e",
  656. "value": 5742
  657. },
  658. "model": "AMD Host bridge",
  659. "sysfs_id": "/devices/pci0000:00/0000:00:18.4",
  660. "sysfs_bus_id": "0000:00:18.4",
  661. "detail": {
  662. "function": 4,
  663. "command": 0,
  664. "header_type": 0,
  665. "secondary_bus": 0,
  666. "irq": 0,
  667. "prog_if": 0
  668. },
  669. "module_alias": "pci:v00001022d0000166Esv00000000sd00000000bc06sc00i00"
  670. },
  671. {
  672. "index": 38,
  673. "attached_to": 0,
  674. "class_list": [
  675. "pci",
  676. "bridge"
  677. ],
  678. "bus_type": {
  679. "hex": "0004",
  680. "name": "PCI",
  681. "value": 4
  682. },
  683. "slot": {
  684. "bus": 0,
  685. "number": 24
  686. },
  687. "base_class": {
  688. "hex": "0006",
  689. "name": "Bridge",
  690. "value": 6
  691. },
  692. "sub_class": {
  693. "hex": "0000",
  694. "name": "Host bridge",
  695. "value": 0
  696. },
  697. "vendor": {
  698. "hex": "1022",
  699. "name": "AMD",
  700. "value": 4130
  701. },
  702. "device": {
  703. "hex": "166c",
  704. "value": 5740
  705. },
  706. "model": "AMD Host bridge",
  707. "sysfs_id": "/devices/pci0000:00/0000:00:18.2",
  708. "sysfs_bus_id": "0000:00:18.2",
  709. "detail": {
  710. "function": 2,
  711. "command": 0,
  712. "header_type": 0,
  713. "secondary_bus": 0,
  714. "irq": 0,
  715. "prog_if": 0
  716. },
  717. "module_alias": "pci:v00001022d0000166Csv00000000sd00000000bc06sc00i00"
  718. },
  719. {
  720. "index": 40,
  721. "attached_to": 0,
  722. "class_list": [
  723. "pci",
  724. "bridge"
  725. ],
  726. "bus_type": {
  727. "hex": "0004",
  728. "name": "PCI",
  729. "value": 4
  730. },
  731. "slot": {
  732. "bus": 0,
  733. "number": 24
  734. },
  735. "base_class": {
  736. "hex": "0006",
  737. "name": "Bridge",
  738. "value": 6
  739. },
  740. "sub_class": {
  741. "hex": "0000",
  742. "name": "Host bridge",
  743. "value": 0
  744. },
  745. "vendor": {
  746. "hex": "1022",
  747. "name": "AMD",
  748. "value": 4130
  749. },
  750. "device": {
  751. "hex": "166a",
  752. "value": 5738
  753. },
  754. "model": "AMD Host bridge",
  755. "sysfs_id": "/devices/pci0000:00/0000:00:18.0",
  756. "sysfs_bus_id": "0000:00:18.0",
  757. "detail": {
  758. "function": 0,
  759. "command": 0,
  760. "header_type": 0,
  761. "secondary_bus": 0,
  762. "irq": 0,
  763. "prog_if": 0
  764. },
  765. "module_alias": "pci:v00001022d0000166Asv00000000sd00000000bc06sc00i00"
  766. },
  767. {
  768. "index": 41,
  769. "attached_to": 27,
  770. "class_list": [
  771. "pci",
  772. "bridge"
  773. ],
  774. "bus_type": {
  775. "hex": "0004",
  776. "name": "PCI",
  777. "value": 4
  778. },
  779. "slot": {
  780. "bus": 2,
  781. "number": 8
  782. },
  783. "base_class": {
  784. "hex": "0006",
  785. "name": "Bridge",
  786. "value": 6
  787. },
  788. "sub_class": {
  789. "hex": "0004",
  790. "name": "PCI bridge",
  791. "value": 4
  792. },
  793. "pci_interface": {
  794. "hex": "0000",
  795. "name": "Normal decode",
  796. "value": 0
  797. },
  798. "vendor": {
  799. "hex": "1022",
  800. "name": "AMD",
  801. "value": 4130
  802. },
  803. "sub_vendor": {
  804. "hex": "1b21",
  805. "value": 6945
  806. },
  807. "device": {
  808. "hex": "43ea",
  809. "value": 17386
  810. },
  811. "sub_device": {
  812. "hex": "3308",
  813. "value": 13064
  814. },
  815. "model": "AMD PCI bridge",
  816. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:08.0",
  817. "sysfs_bus_id": "0000:02:08.0",
  818. "resources": [
  819. {
  820. "type": "irq",
  821. "base": 30,
  822. "triggered": 0,
  823. "enabled": true
  824. }
  825. ],
  826. "detail": {
  827. "function": 0,
  828. "command": 1031,
  829. "header_type": 1,
  830. "secondary_bus": 3,
  831. "irq": 30,
  832. "prog_if": 0
  833. },
  834. "driver": "pcieport",
  835. "driver_module": "pcieportdrv",
  836. "drivers": [
  837. "pcieport"
  838. ],
  839. "driver_modules": [
  840. "pcieportdrv"
  841. ],
  842. "module_alias": "pci:v00001022d000043EAsv00001B21sd00003308bc06sc04i00"
  843. },
  844. {
  845. "index": 43,
  846. "attached_to": 0,
  847. "class_list": [
  848. "pci",
  849. "bridge"
  850. ],
  851. "bus_type": {
  852. "hex": "0004",
  853. "name": "PCI",
  854. "value": 4
  855. },
  856. "slot": {
  857. "bus": 0,
  858. "number": 2
  859. },
  860. "base_class": {
  861. "hex": "0006",
  862. "name": "Bridge",
  863. "value": 6
  864. },
  865. "sub_class": {
  866. "hex": "0004",
  867. "name": "PCI bridge",
  868. "value": 4
  869. },
  870. "pci_interface": {
  871. "hex": "0000",
  872. "name": "Normal decode",
  873. "value": 0
  874. },
  875. "vendor": {
  876. "hex": "1022",
  877. "name": "AMD",
  878. "value": 4130
  879. },
  880. "sub_vendor": {
  881. "hex": "1022",
  882. "name": "AMD",
  883. "value": 4130
  884. },
  885. "device": {
  886. "hex": "1634",
  887. "value": 5684
  888. },
  889. "sub_device": {
  890. "hex": "1453",
  891. "value": 5203
  892. },
  893. "model": "AMD PCI bridge",
  894. "sysfs_id": "/devices/pci0000:00/0000:00:02.2",
  895. "sysfs_bus_id": "0000:00:02.2",
  896. "resources": [
  897. {
  898. "type": "irq",
  899. "base": 26,
  900. "triggered": 0,
  901. "enabled": true
  902. }
  903. ],
  904. "detail": {
  905. "function": 2,
  906. "command": 1031,
  907. "header_type": 1,
  908. "secondary_bus": 4,
  909. "irq": 26,
  910. "prog_if": 0
  911. },
  912. "driver": "pcieport",
  913. "driver_module": "pcieportdrv",
  914. "drivers": [
  915. "pcieport"
  916. ],
  917. "driver_modules": [
  918. "pcieportdrv"
  919. ],
  920. "module_alias": "pci:v00001022d00001634sv00001022sd00001453bc06sc04i00"
  921. },
  922. {
  923. "index": 45,
  924. "attached_to": 0,
  925. "class_list": [
  926. "pci",
  927. "bridge"
  928. ],
  929. "bus_type": {
  930. "hex": "0004",
  931. "name": "PCI",
  932. "value": 4
  933. },
  934. "slot": {
  935. "bus": 0,
  936. "number": 2
  937. },
  938. "base_class": {
  939. "hex": "0006",
  940. "name": "Bridge",
  941. "value": 6
  942. },
  943. "sub_class": {
  944. "hex": "0000",
  945. "name": "Host bridge",
  946. "value": 0
  947. },
  948. "vendor": {
  949. "hex": "1022",
  950. "name": "AMD",
  951. "value": 4130
  952. },
  953. "device": {
  954. "hex": "1632",
  955. "value": 5682
  956. },
  957. "model": "AMD Host bridge",
  958. "sysfs_id": "/devices/pci0000:00/0000:00:02.0",
  959. "sysfs_bus_id": "0000:00:02.0",
  960. "detail": {
  961. "function": 0,
  962. "command": 0,
  963. "header_type": 0,
  964. "secondary_bus": 0,
  965. "irq": 0,
  966. "prog_if": 0
  967. },
  968. "module_alias": "pci:v00001022d00001632sv00000000sd00000000bc06sc00i00"
  969. },
  970. {
  971. "index": 46,
  972. "attached_to": 0,
  973. "class_list": [
  974. "pci",
  975. "bridge"
  976. ],
  977. "bus_type": {
  978. "hex": "0004",
  979. "name": "PCI",
  980. "value": 4
  981. },
  982. "slot": {
  983. "bus": 0,
  984. "number": 24
  985. },
  986. "base_class": {
  987. "hex": "0006",
  988. "name": "Bridge",
  989. "value": 6
  990. },
  991. "sub_class": {
  992. "hex": "0000",
  993. "name": "Host bridge",
  994. "value": 0
  995. },
  996. "vendor": {
  997. "hex": "1022",
  998. "name": "AMD",
  999. "value": 4130
  1000. },
  1001. "device": {
  1002. "hex": "1671",
  1003. "value": 5745
  1004. },
  1005. "model": "AMD Host bridge",
  1006. "sysfs_id": "/devices/pci0000:00/0000:00:18.7",
  1007. "sysfs_bus_id": "0000:00:18.7",
  1008. "detail": {
  1009. "function": 7,
  1010. "command": 0,
  1011. "header_type": 0,
  1012. "secondary_bus": 0,
  1013. "irq": 0,
  1014. "prog_if": 0
  1015. },
  1016. "module_alias": "pci:v00001022d00001671sv00000000sd00000000bc06sc00i00"
  1017. },
  1018. {
  1019. "index": 48,
  1020. "attached_to": 0,
  1021. "class_list": [
  1022. "pci",
  1023. "bridge"
  1024. ],
  1025. "bus_type": {
  1026. "hex": "0004",
  1027. "name": "PCI",
  1028. "value": 4
  1029. },
  1030. "slot": {
  1031. "bus": 0,
  1032. "number": 24
  1033. },
  1034. "base_class": {
  1035. "hex": "0006",
  1036. "name": "Bridge",
  1037. "value": 6
  1038. },
  1039. "sub_class": {
  1040. "hex": "0000",
  1041. "name": "Host bridge",
  1042. "value": 0
  1043. },
  1044. "vendor": {
  1045. "hex": "1022",
  1046. "name": "AMD",
  1047. "value": 4130
  1048. },
  1049. "device": {
  1050. "hex": "166f",
  1051. "value": 5743
  1052. },
  1053. "model": "AMD Host bridge",
  1054. "sysfs_id": "/devices/pci0000:00/0000:00:18.5",
  1055. "sysfs_bus_id": "0000:00:18.5",
  1056. "detail": {
  1057. "function": 5,
  1058. "command": 0,
  1059. "header_type": 0,
  1060. "secondary_bus": 0,
  1061. "irq": 0,
  1062. "prog_if": 0
  1063. },
  1064. "module_alias": "pci:v00001022d0000166Fsv00000000sd00000000bc06sc00i00"
  1065. }
  1066. ],
  1067. "cdrom": [
  1068. {
  1069. "index": 55,
  1070. "attached_to": 29,
  1071. "class_list": [
  1072. "cdrom",
  1073. "usb",
  1074. "scsi",
  1075. "block_device"
  1076. ],
  1077. "bus_type": {
  1078. "hex": "0084",
  1079. "name": "SCSI",
  1080. "value": 132
  1081. },
  1082. "slot": {
  1083. "bus": 6,
  1084. "number": 0
  1085. },
  1086. "base_class": {
  1087. "hex": "0106",
  1088. "name": "Mass Storage Device",
  1089. "value": 262
  1090. },
  1091. "sub_class": {
  1092. "hex": "0002",
  1093. "name": "CD-ROM",
  1094. "value": 2
  1095. },
  1096. "pci_interface": {
  1097. "hex": "0003",
  1098. "name": "DVD",
  1099. "value": 3
  1100. },
  1101. "vendor": {
  1102. "hex": "1d6b",
  1103. "name": "JetKVM",
  1104. "value": 7531
  1105. },
  1106. "device": {
  1107. "hex": "0104",
  1108. "name": "Virtual Media",
  1109. "value": 260
  1110. },
  1111. "model": "JetKVM Virtual Media",
  1112. "sysfs_id": "/class/block/sr1",
  1113. "sysfs_bus_id": "6:0:0:0",
  1114. "sysfs_device_link": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6:1.3/host6/target6:0:0/6:0:0:0",
  1115. "unix_device_name": "/dev/sr1",
  1116. "unix_device_number": {
  1117. "type": 98,
  1118. "major": 11,
  1119. "minor": 1,
  1120. "range": 1
  1121. },
  1122. "unix_device_names": [
  1123. "/dev/disk/by-id/usb-JetKVM_Virtual_Media-0:0",
  1124. "/dev/disk/by-path/pci-0000:01:00.0-usb-0:6:1.3-scsi-0:0:0:0",
  1125. "/dev/disk/by-path/pci-0000:01:00.0-usbv2-0:6:1.3-scsi-0:0:0:0",
  1126. "/dev/sr1"
  1127. ],
  1128. "unix_device_name2": "/dev/sg3",
  1129. "unix_device_number2": {
  1130. "type": 99,
  1131. "major": 21,
  1132. "minor": 3,
  1133. "range": 1
  1134. },
  1135. "resources": [
  1136. {
  1137. "type": "baud",
  1138. "speed": 480000000,
  1139. "bits": 0,
  1140. "stop_bits": 0,
  1141. "parity": 0,
  1142. "handshake": 0
  1143. }
  1144. ],
  1145. "driver": "usb-storage",
  1146. "driver_module": "usb_storage",
  1147. "drivers": [
  1148. "sr",
  1149. "usb-storage"
  1150. ],
  1151. "driver_modules": [
  1152. "sr_mod",
  1153. "usb_storage"
  1154. ],
  1155. "module_alias": "usb:v1D6Bp0104d0040dc00dsc00dp00ic08isc06ip50in03"
  1156. }
  1157. ],
  1158. "cpu": [
  1159. {
  1160. "architecture": "x86_64",
  1161. "vendor_name": "AuthenticAMD",
  1162. "family": 25,
  1163. "model": 80,
  1164. "stepping": 0,
  1165. "features": [
  1166. "fpu",
  1167. "vme",
  1168. "de",
  1169. "pse",
  1170. "tsc",
  1171. "msr",
  1172. "pae",
  1173. "mce",
  1174. "cx8",
  1175. "apic",
  1176. "sep",
  1177. "mtrr",
  1178. "pge",
  1179. "mca",
  1180. "cmov",
  1181. "pat",
  1182. "pse36",
  1183. "clflush",
  1184. "mmx",
  1185. "fxsr",
  1186. "sse",
  1187. "sse2",
  1188. "ht",
  1189. "syscall",
  1190. "nx",
  1191. "mmxext",
  1192. "fxsr_opt",
  1193. "pdpe1gb",
  1194. "rdtscp",
  1195. "lm",
  1196. "constant_tsc",
  1197. "rep_good",
  1198. "nopl",
  1199. "xtopology",
  1200. "nonstop_tsc",
  1201. "cpuid",
  1202. "extd_apicid",
  1203. "aperfmperf",
  1204. "rapl",
  1205. "pni",
  1206. "pclmulqdq",
  1207. "monitor",
  1208. "ssse3",
  1209. "fma",
  1210. "cx16",
  1211. "sse4_1",
  1212. "sse4_2",
  1213. "x2apic",
  1214. "movbe",
  1215. "popcnt",
  1216. "aes",
  1217. "xsave",
  1218. "avx",
  1219. "f16c",
  1220. "rdrand",
  1221. "lahf_lm",
  1222. "cmp_legacy",
  1223. "svm",
  1224. "extapic",
  1225. "cr8_legacy",
  1226. "abm",
  1227. "sse4a",
  1228. "misalignsse",
  1229. "3dnowprefetch",
  1230. "osvw",
  1231. "ibs",
  1232. "skinit",
  1233. "wdt",
  1234. "tce",
  1235. "topoext",
  1236. "perfctr_core",
  1237. "perfctr_nb",
  1238. "bpext",
  1239. "perfctr_llc",
  1240. "mwaitx",
  1241. "cpb",
  1242. "cat_l3",
  1243. "cdp_l3",
  1244. "hw_pstate",
  1245. "ssbd",
  1246. "mba",
  1247. "ibrs",
  1248. "ibpb",
  1249. "stibp",
  1250. "vmmcall",
  1251. "fsgsbase",
  1252. "bmi1",
  1253. "avx2",
  1254. "smep",
  1255. "bmi2",
  1256. "erms",
  1257. "invpcid",
  1258. "cqm",
  1259. "rdt_a",
  1260. "rdseed",
  1261. "adx",
  1262. "smap",
  1263. "clflushopt",
  1264. "clwb",
  1265. "sha_ni",
  1266. "xsaveopt",
  1267. "xsavec",
  1268. "xgetbv1",
  1269. "xsaves",
  1270. "cqm_llc",
  1271. "cqm_occup_llc",
  1272. "cqm_mbm_total",
  1273. "cqm_mbm_local",
  1274. "user_shstk",
  1275. "clzero",
  1276. "irperf",
  1277. "xsaveerptr",
  1278. "rdpru",
  1279. "wbnoinvd",
  1280. "cppc",
  1281. "arat",
  1282. "npt",
  1283. "lbrv",
  1284. "svm_lock",
  1285. "nrip_save",
  1286. "tsc_scale",
  1287. "vmcb_clean",
  1288. "flushbyasid",
  1289. "decodeassists",
  1290. "pausefilter",
  1291. "pfthreshold",
  1292. "avic",
  1293. "v_vmsave_vmload",
  1294. "vgif",
  1295. "v_spec_ctrl",
  1296. "umip",
  1297. "pku",
  1298. "ospke",
  1299. "vaes",
  1300. "vpclmulqdq",
  1301. "rdpid",
  1302. "overflow_recov",
  1303. "succor",
  1304. "smca",
  1305. "fsrm",
  1306. "debug_swap"
  1307. ],
  1308. "bugs": [
  1309. "sysret_ss_attrs",
  1310. "spectre_v1",
  1311. "spectre_v2",
  1312. "spec_store_bypass",
  1313. "srso",
  1314. "ibpb_no_ret",
  1315. "tsa"
  1316. ],
  1317. "power_management": [
  1318. "ts",
  1319. "ttp",
  1320. "tm",
  1321. "hwpstate",
  1322. "cpb",
  1323. "eff_freq_ro",
  1324. "[13]",
  1325. "[14]"
  1326. ],
  1327. "bogo": 7585.94,
  1328. "cache": 512,
  1329. "units": 16,
  1330. "physical_id": 0,
  1331. "siblings": 16,
  1332. "cores": 8,
  1333. "fpu": true,
  1334. "fpu_exception": true,
  1335. "cpuid_level": 16,
  1336. "write_protect": false,
  1337. "tlb_size": 2560,
  1338. "clflush_size": 64,
  1339. "cache_alignment": 64,
  1340. "address_sizes": {
  1341. "physical": "0x30",
  1342. "virtual": "0x30"
  1343. }
  1344. }
  1345. ],
  1346. "disk": [
  1347. {
  1348. "index": 51,
  1349. "attached_to": 44,
  1350. "class_list": [
  1351. "disk",
  1352. "block_device",
  1353. "nvme"
  1354. ],
  1355. "bus_type": {
  1356. "hex": "0096",
  1357. "name": "NVME",
  1358. "value": 150
  1359. },
  1360. "slot": {
  1361. "bus": 0,
  1362. "number": 0
  1363. },
  1364. "base_class": {
  1365. "hex": "0106",
  1366. "name": "Mass Storage Device",
  1367. "value": 262
  1368. },
  1369. "sub_class": {
  1370. "hex": "0000",
  1371. "name": "Disk",
  1372. "value": 0
  1373. },
  1374. "vendor": {
  1375. "hex": "2646",
  1376. "value": 9798
  1377. },
  1378. "sub_vendor": {
  1379. "hex": "2646",
  1380. "value": 9798
  1381. },
  1382. "device": {
  1383. "hex": "5025",
  1384. "name": "KINGSTON SNV3S1000G",
  1385. "value": 20517
  1386. },
  1387. "sub_device": {
  1388. "hex": "5025",
  1389. "value": 20517
  1390. },
  1391. "serial": "50026B7383CC0908",
  1392. "model": "KINGSTON SNV3S1000G",
  1393. "sysfs_id": "/class/block/nvme0n1",
  1394. "sysfs_bus_id": "nvme0",
  1395. "sysfs_device_link": "/devices/pci0000:00/0000:00:02.2/0000:04:00.0/nvme/nvme0",
  1396. "unix_device_name": "/dev/nvme0n1",
  1397. "unix_device_number": {
  1398. "type": 98,
  1399. "major": 259,
  1400. "minor": 0,
  1401. "range": 0
  1402. },
  1403. "unix_device_names": [
  1404. "/dev/disk/by-id/nvme-KINGSTON_SNV3S1000G_50026B7383CC0908",
  1405. "/dev/disk/by-id/nvme-KINGSTON_SNV3S1000G_50026B7383CC0908_1",
  1406. "/dev/disk/by-id/nvme-eui.00000000000000000026b7383cc09085",
  1407. "/dev/disk/by-path/pci-0000:04:00.0-nvme-1",
  1408. "/dev/nvme0n1"
  1409. ],
  1410. "resources": [
  1411. {
  1412. "type": "disk_geo",
  1413. "cylinders": 953869,
  1414. "heads": 64,
  1415. "sectors": 32,
  1416. "size": "0x0",
  1417. "geo_type": "logical"
  1418. },
  1419. {
  1420. "type": "size",
  1421. "unit": "sectors",
  1422. "value_1": 1953525168,
  1423. "value_2": 512
  1424. }
  1425. ],
  1426. "driver": "nvme",
  1427. "driver_module": "nvme",
  1428. "drivers": [
  1429. "nvme"
  1430. ],
  1431. "driver_modules": [
  1432. "nvme"
  1433. ]
  1434. },
  1435. {
  1436. "index": 52,
  1437. "attached_to": 42,
  1438. "class_list": [
  1439. "disk",
  1440. "ide",
  1441. "block_device"
  1442. ],
  1443. "bus_type": {
  1444. "hex": "0085",
  1445. "name": "IDE",
  1446. "value": 133
  1447. },
  1448. "slot": {
  1449. "bus": 3,
  1450. "number": 0
  1451. },
  1452. "base_class": {
  1453. "hex": "0106",
  1454. "name": "Mass Storage Device",
  1455. "value": 262
  1456. },
  1457. "sub_class": {
  1458. "hex": "0000",
  1459. "name": "Disk",
  1460. "value": 0
  1461. },
  1462. "device": {
  1463. "hex": "0000",
  1464. "name": "ST8000VN002-2ZM1",
  1465. "value": 0
  1466. },
  1467. "revision": {
  1468. "hex": "0000",
  1469. "name": "SC60",
  1470. "value": 0
  1471. },
  1472. "serial": "WPV023WG",
  1473. "model": "ST8000VN002-2ZM1",
  1474. "sysfs_id": "/class/block/sdb",
  1475. "sysfs_bus_id": "3:0:0:0",
  1476. "sysfs_device_link": "/devices/pci0000:00/0000:00:02.1/0000:01:00.1/ata4/host3/target3:0:0/3:0:0:0",
  1477. "unix_device_name": "/dev/sdb",
  1478. "unix_device_number": {
  1479. "type": 98,
  1480. "major": 8,
  1481. "minor": 16,
  1482. "range": 16
  1483. },
  1484. "unix_device_names": [
  1485. "/dev/disk/by-id/ata-ST8000VN002-2ZM188_WPV023WG",
  1486. "/dev/disk/by-id/wwn-0x5000c500f13e3af2",
  1487. "/dev/disk/by-path/pci-0000:01:00.1-ata-4",
  1488. "/dev/disk/by-path/pci-0000:01:00.1-ata-4.0",
  1489. "/dev/sdb"
  1490. ],
  1491. "resources": [
  1492. {
  1493. "type": "disk_geo",
  1494. "cylinders": 972801,
  1495. "heads": 255,
  1496. "sectors": 63,
  1497. "size": "0x0",
  1498. "geo_type": "logical"
  1499. },
  1500. {
  1501. "type": "size",
  1502. "unit": "sectors",
  1503. "value_1": 15628053168,
  1504. "value_2": 512
  1505. }
  1506. ],
  1507. "driver": "ahci",
  1508. "driver_module": "ahci",
  1509. "drivers": [
  1510. "ahci",
  1511. "sd"
  1512. ],
  1513. "driver_modules": [
  1514. "ahci",
  1515. "sd_mod"
  1516. ]
  1517. },
  1518. {
  1519. "index": 53,
  1520. "attached_to": 42,
  1521. "class_list": [
  1522. "disk",
  1523. "ide",
  1524. "block_device"
  1525. ],
  1526. "bus_type": {
  1527. "hex": "0085",
  1528. "name": "IDE",
  1529. "value": 133
  1530. },
  1531. "slot": {
  1532. "bus": 0,
  1533. "number": 0
  1534. },
  1535. "base_class": {
  1536. "hex": "0106",
  1537. "name": "Mass Storage Device",
  1538. "value": 262
  1539. },
  1540. "sub_class": {
  1541. "hex": "0000",
  1542. "name": "Disk",
  1543. "value": 0
  1544. },
  1545. "device": {
  1546. "hex": "0000",
  1547. "name": "ST8000VN002-2ZM1",
  1548. "value": 0
  1549. },
  1550. "revision": {
  1551. "hex": "0000",
  1552. "name": "SC60",
  1553. "value": 0
  1554. },
  1555. "serial": "WPV07RMA",
  1556. "model": "ST8000VN002-2ZM1",
  1557. "sysfs_id": "/class/block/sdc",
  1558. "sysfs_bus_id": "0:0:0:0",
  1559. "sysfs_device_link": "/devices/pci0000:00/0000:00:02.1/0000:01:00.1/ata1/host0/target0:0:0/0:0:0:0",
  1560. "unix_device_name": "/dev/sdc",
  1561. "unix_device_number": {
  1562. "type": 98,
  1563. "major": 8,
  1564. "minor": 32,
  1565. "range": 16
  1566. },
  1567. "unix_device_names": [
  1568. "/dev/disk/by-id/ata-ST8000VN002-2ZM188_WPV07RMA",
  1569. "/dev/disk/by-id/wwn-0x5000c500f1ece0c8",
  1570. "/dev/disk/by-path/pci-0000:01:00.1-ata-1",
  1571. "/dev/disk/by-path/pci-0000:01:00.1-ata-1.0",
  1572. "/dev/sdc"
  1573. ],
  1574. "resources": [
  1575. {
  1576. "type": "disk_geo",
  1577. "cylinders": 972801,
  1578. "heads": 255,
  1579. "sectors": 63,
  1580. "size": "0x0",
  1581. "geo_type": "logical"
  1582. },
  1583. {
  1584. "type": "size",
  1585. "unit": "sectors",
  1586. "value_1": 15628053168,
  1587. "value_2": 512
  1588. }
  1589. ],
  1590. "driver": "ahci",
  1591. "driver_module": "ahci",
  1592. "drivers": [
  1593. "ahci",
  1594. "sd"
  1595. ],
  1596. "driver_modules": [
  1597. "ahci",
  1598. "sd_mod"
  1599. ]
  1600. },
  1601. {
  1602. "index": 54,
  1603. "attached_to": 42,
  1604. "class_list": [
  1605. "disk",
  1606. "ide",
  1607. "block_device"
  1608. ],
  1609. "bus_type": {
  1610. "hex": "0085",
  1611. "name": "IDE",
  1612. "value": 133
  1613. },
  1614. "slot": {
  1615. "bus": 1,
  1616. "number": 0
  1617. },
  1618. "base_class": {
  1619. "hex": "0106",
  1620. "name": "Mass Storage Device",
  1621. "value": 262
  1622. },
  1623. "sub_class": {
  1624. "hex": "0000",
  1625. "name": "Disk",
  1626. "value": 0
  1627. },
  1628. "device": {
  1629. "hex": "0000",
  1630. "name": "ST8000VN002-2ZM1",
  1631. "value": 0
  1632. },
  1633. "revision": {
  1634. "hex": "0000",
  1635. "name": "SC60",
  1636. "value": 0
  1637. },
  1638. "serial": "WPV020CG",
  1639. "model": "ST8000VN002-2ZM1",
  1640. "sysfs_id": "/class/block/sda",
  1641. "sysfs_bus_id": "1:0:0:0",
  1642. "sysfs_device_link": "/devices/pci0000:00/0000:00:02.1/0000:01:00.1/ata2/host1/target1:0:0/1:0:0:0",
  1643. "unix_device_name": "/dev/sda",
  1644. "unix_device_number": {
  1645. "type": 98,
  1646. "major": 8,
  1647. "minor": 0,
  1648. "range": 16
  1649. },
  1650. "unix_device_names": [
  1651. "/dev/disk/by-id/ata-ST8000VN002-2ZM188_WPV020CG",
  1652. "/dev/disk/by-id/wwn-0x5000c500f13cd205",
  1653. "/dev/disk/by-path/pci-0000:01:00.1-ata-2",
  1654. "/dev/disk/by-path/pci-0000:01:00.1-ata-2.0",
  1655. "/dev/sda"
  1656. ],
  1657. "resources": [
  1658. {
  1659. "type": "disk_geo",
  1660. "cylinders": 972801,
  1661. "heads": 255,
  1662. "sectors": 63,
  1663. "size": "0x0",
  1664. "geo_type": "logical"
  1665. },
  1666. {
  1667. "type": "size",
  1668. "unit": "sectors",
  1669. "value_1": 15628053168,
  1670. "value_2": 512
  1671. }
  1672. ],
  1673. "driver": "ahci",
  1674. "driver_module": "ahci",
  1675. "drivers": [
  1676. "ahci",
  1677. "sd"
  1678. ],
  1679. "driver_modules": [
  1680. "ahci",
  1681. "sd_mod"
  1682. ]
  1683. }
  1684. ],
  1685. "graphics_card": [
  1686. {
  1687. "index": 39,
  1688. "attached_to": 34,
  1689. "class_list": [
  1690. "graphics_card",
  1691. "pci"
  1692. ],
  1693. "bus_type": {
  1694. "hex": "0004",
  1695. "name": "PCI",
  1696. "value": 4
  1697. },
  1698. "slot": {
  1699. "bus": 5,
  1700. "number": 0
  1701. },
  1702. "base_class": {
  1703. "hex": "0003",
  1704. "name": "Display controller",
  1705. "value": 3
  1706. },
  1707. "sub_class": {
  1708. "hex": "0000",
  1709. "name": "VGA compatible controller",
  1710. "value": 0
  1711. },
  1712. "pci_interface": {
  1713. "hex": "0000",
  1714. "name": "VGA",
  1715. "value": 0
  1716. },
  1717. "vendor": {
  1718. "hex": "1002",
  1719. "name": "ATI Technologies Inc",
  1720. "value": 4098
  1721. },
  1722. "sub_vendor": {
  1723. "hex": "1002",
  1724. "name": "ATI Technologies Inc",
  1725. "value": 4098
  1726. },
  1727. "device": {
  1728. "hex": "1638",
  1729. "value": 5688
  1730. },
  1731. "sub_device": {
  1732. "hex": "1636",
  1733. "value": 5686
  1734. },
  1735. "revision": {
  1736. "hex": "00c8",
  1737. "value": 200
  1738. },
  1739. "model": "ATI VGA compatible controller",
  1740. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.0",
  1741. "sysfs_bus_id": "0000:05:00.0",
  1742. "resources": [
  1743. {
  1744. "type": "io",
  1745. "base": 57344,
  1746. "range": 256,
  1747. "enabled": true,
  1748. "access": "read_write"
  1749. },
  1750. {
  1751. "type": "irq",
  1752. "base": 28,
  1753. "triggered": 0,
  1754. "enabled": true
  1755. },
  1756. {
  1757. "type": "mem",
  1758. "base": 3489660928,
  1759. "range": 268435456,
  1760. "enabled": true,
  1761. "access": "read_only",
  1762. "prefetch": "no"
  1763. },
  1764. {
  1765. "type": "mem",
  1766. "base": 3758096384,
  1767. "range": 2097152,
  1768. "enabled": true,
  1769. "access": "read_only",
  1770. "prefetch": "no"
  1771. },
  1772. {
  1773. "type": "mem",
  1774. "base": 4240441344,
  1775. "range": 524288,
  1776. "enabled": true,
  1777. "access": "read_write",
  1778. "prefetch": "no"
  1779. },
  1780. {
  1781. "type": "mem",
  1782. "base": 786432,
  1783. "range": 131072,
  1784. "enabled": false,
  1785. "access": "read_write",
  1786. "prefetch": "no"
  1787. }
  1788. ],
  1789. "detail": {
  1790. "function": 0,
  1791. "command": 1031,
  1792. "header_type": 0,
  1793. "secondary_bus": 0,
  1794. "irq": 28,
  1795. "prog_if": 0
  1796. },
  1797. "driver": "amdgpu",
  1798. "driver_module": "amdgpu",
  1799. "drivers": [
  1800. "amdgpu"
  1801. ],
  1802. "driver_modules": [
  1803. "amdgpu"
  1804. ],
  1805. "module_alias": "pci:v00001002d00001638sv00001002sd00001636bc03sc00i00"
  1806. }
  1807. ],
  1808. "hub": [
  1809. {
  1810. "index": 56,
  1811. "attached_to": 62,
  1812. "class_list": [
  1813. "usb",
  1814. "hub"
  1815. ],
  1816. "bus_type": {
  1817. "hex": "0086",
  1818. "name": "USB",
  1819. "value": 134
  1820. },
  1821. "slot": {
  1822. "bus": 0,
  1823. "number": 0
  1824. },
  1825. "base_class": {
  1826. "hex": "010a",
  1827. "name": "Hub",
  1828. "value": 266
  1829. },
  1830. "vendor": {
  1831. "hex": "174c",
  1832. "name": "Asmedia",
  1833. "value": 5964
  1834. },
  1835. "device": {
  1836. "hex": "3074",
  1837. "name": "ASM107x",
  1838. "value": 12404
  1839. },
  1840. "revision": {
  1841. "hex": "0000",
  1842. "name": "2.00",
  1843. "value": 0
  1844. },
  1845. "model": "Asmedia ASM107x",
  1846. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb4/4-2/4-2:1.0",
  1847. "sysfs_bus_id": "4-2:1.0",
  1848. "detail": {
  1849. "device_class": {
  1850. "hex": "0009",
  1851. "name": "hub",
  1852. "value": 9
  1853. },
  1854. "device_subclass": {
  1855. "hex": "0000",
  1856. "name": "per_interface",
  1857. "value": 0
  1858. },
  1859. "device_protocol": 3,
  1860. "interface_class": {
  1861. "hex": "0009",
  1862. "name": "hub",
  1863. "value": 9
  1864. },
  1865. "interface_subclass": {
  1866. "hex": "0000",
  1867. "name": "per_interface",
  1868. "value": 0
  1869. },
  1870. "interface_protocol": 0,
  1871. "interface_number": 0,
  1872. "interface_alternate_setting": 0
  1873. },
  1874. "hotplug": "usb",
  1875. "driver": "hub",
  1876. "driver_module": "usbcore",
  1877. "drivers": [
  1878. "hub"
  1879. ],
  1880. "driver_modules": [
  1881. "usbcore"
  1882. ],
  1883. "module_alias": "usb:v174Cp3074d0200dc09dsc00dp03ic09isc00ip00in00"
  1884. },
  1885. {
  1886. "index": 57,
  1887. "attached_to": 35,
  1888. "class_list": [
  1889. "usb",
  1890. "hub"
  1891. ],
  1892. "bus_type": {
  1893. "hex": "0086",
  1894. "name": "USB",
  1895. "value": 134
  1896. },
  1897. "slot": {
  1898. "bus": 0,
  1899. "number": 0
  1900. },
  1901. "base_class": {
  1902. "hex": "010a",
  1903. "name": "Hub",
  1904. "value": 266
  1905. },
  1906. "vendor": {
  1907. "hex": "1d6b",
  1908. "name": "Linux 6.12.41 xhci-hcd",
  1909. "value": 7531
  1910. },
  1911. "device": {
  1912. "hex": "0003",
  1913. "name": "xHCI Host Controller",
  1914. "value": 3
  1915. },
  1916. "revision": {
  1917. "hex": "0000",
  1918. "name": "6.12",
  1919. "value": 0
  1920. },
  1921. "serial": "0000:05:00.4",
  1922. "model": "Linux 6.12.41 xhci-hcd xHCI Host Controller",
  1923. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb6/6-0:1.0",
  1924. "sysfs_bus_id": "6-0:1.0",
  1925. "detail": {
  1926. "device_class": {
  1927. "hex": "0009",
  1928. "name": "hub",
  1929. "value": 9
  1930. },
  1931. "device_subclass": {
  1932. "hex": "0000",
  1933. "name": "per_interface",
  1934. "value": 0
  1935. },
  1936. "device_protocol": 3,
  1937. "interface_class": {
  1938. "hex": "0009",
  1939. "name": "hub",
  1940. "value": 9
  1941. },
  1942. "interface_subclass": {
  1943. "hex": "0000",
  1944. "name": "per_interface",
  1945. "value": 0
  1946. },
  1947. "interface_protocol": 0,
  1948. "interface_number": 0,
  1949. "interface_alternate_setting": 0
  1950. },
  1951. "hotplug": "usb",
  1952. "driver": "hub",
  1953. "driver_module": "usbcore",
  1954. "drivers": [
  1955. "hub"
  1956. ],
  1957. "driver_modules": [
  1958. "usbcore"
  1959. ],
  1960. "module_alias": "usb:v1D6Bp0003d0612dc09dsc00dp03ic09isc00ip00in00"
  1961. },
  1962. {
  1963. "index": 60,
  1964. "attached_to": 22,
  1965. "class_list": [
  1966. "usb",
  1967. "hub"
  1968. ],
  1969. "bus_type": {
  1970. "hex": "0086",
  1971. "name": "USB",
  1972. "value": 134
  1973. },
  1974. "slot": {
  1975. "bus": 0,
  1976. "number": 0
  1977. },
  1978. "base_class": {
  1979. "hex": "010a",
  1980. "name": "Hub",
  1981. "value": 266
  1982. },
  1983. "vendor": {
  1984. "hex": "1d6b",
  1985. "name": "Linux 6.12.41 xhci-hcd",
  1986. "value": 7531
  1987. },
  1988. "device": {
  1989. "hex": "0002",
  1990. "name": "xHCI Host Controller",
  1991. "value": 2
  1992. },
  1993. "revision": {
  1994. "hex": "0000",
  1995. "name": "6.12",
  1996. "value": 0
  1997. },
  1998. "serial": "0000:05:00.3",
  1999. "model": "Linux 6.12.41 xhci-hcd xHCI Host Controller",
  2000. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb3/3-0:1.0",
  2001. "sysfs_bus_id": "3-0:1.0",
  2002. "resources": [
  2003. {
  2004. "type": "baud",
  2005. "speed": 480000000,
  2006. "bits": 0,
  2007. "stop_bits": 0,
  2008. "parity": 0,
  2009. "handshake": 0
  2010. }
  2011. ],
  2012. "detail": {
  2013. "device_class": {
  2014. "hex": "0009",
  2015. "name": "hub",
  2016. "value": 9
  2017. },
  2018. "device_subclass": {
  2019. "hex": "0000",
  2020. "name": "per_interface",
  2021. "value": 0
  2022. },
  2023. "device_protocol": 1,
  2024. "interface_class": {
  2025. "hex": "0009",
  2026. "name": "hub",
  2027. "value": 9
  2028. },
  2029. "interface_subclass": {
  2030. "hex": "0000",
  2031. "name": "per_interface",
  2032. "value": 0
  2033. },
  2034. "interface_protocol": 0,
  2035. "interface_number": 0,
  2036. "interface_alternate_setting": 0
  2037. },
  2038. "hotplug": "usb",
  2039. "driver": "hub",
  2040. "driver_module": "usbcore",
  2041. "drivers": [
  2042. "hub"
  2043. ],
  2044. "driver_modules": [
  2045. "usbcore"
  2046. ],
  2047. "module_alias": "usb:v1D6Bp0002d0612dc09dsc00dp01ic09isc00ip00in00"
  2048. },
  2049. {
  2050. "index": 61,
  2051. "attached_to": 64,
  2052. "class_list": [
  2053. "usb",
  2054. "hub"
  2055. ],
  2056. "bus_type": {
  2057. "hex": "0086",
  2058. "name": "USB",
  2059. "value": 134
  2060. },
  2061. "slot": {
  2062. "bus": 0,
  2063. "number": 0
  2064. },
  2065. "base_class": {
  2066. "hex": "010a",
  2067. "name": "Hub",
  2068. "value": 266
  2069. },
  2070. "vendor": {
  2071. "hex": "05e3",
  2072. "value": 1507
  2073. },
  2074. "device": {
  2075. "hex": "0610",
  2076. "name": "USB2.0 Hub",
  2077. "value": 1552
  2078. },
  2079. "revision": {
  2080. "hex": "0000",
  2081. "name": "60.60",
  2082. "value": 0
  2083. },
  2084. "model": "USB2.0 Hub",
  2085. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-7/1-7:1.0",
  2086. "sysfs_bus_id": "1-7:1.0",
  2087. "resources": [
  2088. {
  2089. "type": "baud",
  2090. "speed": 480000000,
  2091. "bits": 0,
  2092. "stop_bits": 0,
  2093. "parity": 0,
  2094. "handshake": 0
  2095. }
  2096. ],
  2097. "detail": {
  2098. "device_class": {
  2099. "hex": "0009",
  2100. "name": "hub",
  2101. "value": 9
  2102. },
  2103. "device_subclass": {
  2104. "hex": "0000",
  2105. "name": "per_interface",
  2106. "value": 0
  2107. },
  2108. "device_protocol": 2,
  2109. "interface_class": {
  2110. "hex": "0009",
  2111. "name": "hub",
  2112. "value": 9
  2113. },
  2114. "interface_subclass": {
  2115. "hex": "0000",
  2116. "name": "per_interface",
  2117. "value": 0
  2118. },
  2119. "interface_protocol": 2,
  2120. "interface_number": 0,
  2121. "interface_alternate_setting": 1
  2122. },
  2123. "hotplug": "usb",
  2124. "driver": "hub",
  2125. "driver_module": "usbcore",
  2126. "drivers": [
  2127. "hub"
  2128. ],
  2129. "driver_modules": [
  2130. "usbcore"
  2131. ],
  2132. "module_alias": "usb:v05E3p0610d6060dc09dsc00dp02ic09isc00ip02in00"
  2133. },
  2134. {
  2135. "index": 62,
  2136. "attached_to": 22,
  2137. "class_list": [
  2138. "usb",
  2139. "hub"
  2140. ],
  2141. "bus_type": {
  2142. "hex": "0086",
  2143. "name": "USB",
  2144. "value": 134
  2145. },
  2146. "slot": {
  2147. "bus": 0,
  2148. "number": 0
  2149. },
  2150. "base_class": {
  2151. "hex": "010a",
  2152. "name": "Hub",
  2153. "value": 266
  2154. },
  2155. "vendor": {
  2156. "hex": "1d6b",
  2157. "name": "Linux 6.12.41 xhci-hcd",
  2158. "value": 7531
  2159. },
  2160. "device": {
  2161. "hex": "0003",
  2162. "name": "xHCI Host Controller",
  2163. "value": 3
  2164. },
  2165. "revision": {
  2166. "hex": "0000",
  2167. "name": "6.12",
  2168. "value": 0
  2169. },
  2170. "serial": "0000:05:00.3",
  2171. "model": "Linux 6.12.41 xhci-hcd xHCI Host Controller",
  2172. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb4/4-0:1.0",
  2173. "sysfs_bus_id": "4-0:1.0",
  2174. "detail": {
  2175. "device_class": {
  2176. "hex": "0009",
  2177. "name": "hub",
  2178. "value": 9
  2179. },
  2180. "device_subclass": {
  2181. "hex": "0000",
  2182. "name": "per_interface",
  2183. "value": 0
  2184. },
  2185. "device_protocol": 3,
  2186. "interface_class": {
  2187. "hex": "0009",
  2188. "name": "hub",
  2189. "value": 9
  2190. },
  2191. "interface_subclass": {
  2192. "hex": "0000",
  2193. "name": "per_interface",
  2194. "value": 0
  2195. },
  2196. "interface_protocol": 0,
  2197. "interface_number": 0,
  2198. "interface_alternate_setting": 0
  2199. },
  2200. "hotplug": "usb",
  2201. "driver": "hub",
  2202. "driver_module": "usbcore",
  2203. "drivers": [
  2204. "hub"
  2205. ],
  2206. "driver_modules": [
  2207. "usbcore"
  2208. ],
  2209. "module_alias": "usb:v1D6Bp0003d0612dc09dsc00dp03ic09isc00ip00in00"
  2210. },
  2211. {
  2212. "index": 64,
  2213. "attached_to": 29,
  2214. "class_list": [
  2215. "usb",
  2216. "hub"
  2217. ],
  2218. "bus_type": {
  2219. "hex": "0086",
  2220. "name": "USB",
  2221. "value": 134
  2222. },
  2223. "slot": {
  2224. "bus": 0,
  2225. "number": 0
  2226. },
  2227. "base_class": {
  2228. "hex": "010a",
  2229. "name": "Hub",
  2230. "value": 266
  2231. },
  2232. "vendor": {
  2233. "hex": "1d6b",
  2234. "name": "Linux 6.12.41 xhci-hcd",
  2235. "value": 7531
  2236. },
  2237. "device": {
  2238. "hex": "0002",
  2239. "name": "xHCI Host Controller",
  2240. "value": 2
  2241. },
  2242. "revision": {
  2243. "hex": "0000",
  2244. "name": "6.12",
  2245. "value": 0
  2246. },
  2247. "serial": "0000:01:00.0",
  2248. "model": "Linux 6.12.41 xhci-hcd xHCI Host Controller",
  2249. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-0:1.0",
  2250. "sysfs_bus_id": "1-0:1.0",
  2251. "resources": [
  2252. {
  2253. "type": "baud",
  2254. "speed": 480000000,
  2255. "bits": 0,
  2256. "stop_bits": 0,
  2257. "parity": 0,
  2258. "handshake": 0
  2259. }
  2260. ],
  2261. "detail": {
  2262. "device_class": {
  2263. "hex": "0009",
  2264. "name": "hub",
  2265. "value": 9
  2266. },
  2267. "device_subclass": {
  2268. "hex": "0000",
  2269. "name": "per_interface",
  2270. "value": 0
  2271. },
  2272. "device_protocol": 1,
  2273. "interface_class": {
  2274. "hex": "0009",
  2275. "name": "hub",
  2276. "value": 9
  2277. },
  2278. "interface_subclass": {
  2279. "hex": "0000",
  2280. "name": "per_interface",
  2281. "value": 0
  2282. },
  2283. "interface_protocol": 0,
  2284. "interface_number": 0,
  2285. "interface_alternate_setting": 0
  2286. },
  2287. "hotplug": "usb",
  2288. "driver": "hub",
  2289. "driver_module": "usbcore",
  2290. "drivers": [
  2291. "hub"
  2292. ],
  2293. "driver_modules": [
  2294. "usbcore"
  2295. ],
  2296. "module_alias": "usb:v1D6Bp0002d0612dc09dsc00dp01ic09isc00ip00in00"
  2297. },
  2298. {
  2299. "index": 67,
  2300. "attached_to": 60,
  2301. "class_list": [
  2302. "usb",
  2303. "hub"
  2304. ],
  2305. "bus_type": {
  2306. "hex": "0086",
  2307. "name": "USB",
  2308. "value": 134
  2309. },
  2310. "slot": {
  2311. "bus": 0,
  2312. "number": 0
  2313. },
  2314. "base_class": {
  2315. "hex": "010a",
  2316. "name": "Hub",
  2317. "value": 266
  2318. },
  2319. "vendor": {
  2320. "hex": "174c",
  2321. "name": "Asmedia",
  2322. "value": 5964
  2323. },
  2324. "device": {
  2325. "hex": "2074",
  2326. "name": "ASM107x",
  2327. "value": 8308
  2328. },
  2329. "revision": {
  2330. "hex": "0000",
  2331. "name": "2.00",
  2332. "value": 0
  2333. },
  2334. "model": "Asmedia ASM107x",
  2335. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb3/3-2/3-2:1.0",
  2336. "sysfs_bus_id": "3-2:1.0",
  2337. "resources": [
  2338. {
  2339. "type": "baud",
  2340. "speed": 480000000,
  2341. "bits": 0,
  2342. "stop_bits": 0,
  2343. "parity": 0,
  2344. "handshake": 0
  2345. }
  2346. ],
  2347. "detail": {
  2348. "device_class": {
  2349. "hex": "0009",
  2350. "name": "hub",
  2351. "value": 9
  2352. },
  2353. "device_subclass": {
  2354. "hex": "0000",
  2355. "name": "per_interface",
  2356. "value": 0
  2357. },
  2358. "device_protocol": 2,
  2359. "interface_class": {
  2360. "hex": "0009",
  2361. "name": "hub",
  2362. "value": 9
  2363. },
  2364. "interface_subclass": {
  2365. "hex": "0000",
  2366. "name": "per_interface",
  2367. "value": 0
  2368. },
  2369. "interface_protocol": 2,
  2370. "interface_number": 0,
  2371. "interface_alternate_setting": 1
  2372. },
  2373. "hotplug": "usb",
  2374. "driver": "hub",
  2375. "driver_module": "usbcore",
  2376. "drivers": [
  2377. "hub"
  2378. ],
  2379. "driver_modules": [
  2380. "usbcore"
  2381. ],
  2382. "module_alias": "usb:v174Cp2074d0200dc09dsc00dp02ic09isc00ip02in00"
  2383. },
  2384. {
  2385. "index": 68,
  2386. "attached_to": 35,
  2387. "class_list": [
  2388. "usb",
  2389. "hub"
  2390. ],
  2391. "bus_type": {
  2392. "hex": "0086",
  2393. "name": "USB",
  2394. "value": 134
  2395. },
  2396. "slot": {
  2397. "bus": 0,
  2398. "number": 0
  2399. },
  2400. "base_class": {
  2401. "hex": "010a",
  2402. "name": "Hub",
  2403. "value": 266
  2404. },
  2405. "vendor": {
  2406. "hex": "1d6b",
  2407. "name": "Linux 6.12.41 xhci-hcd",
  2408. "value": 7531
  2409. },
  2410. "device": {
  2411. "hex": "0002",
  2412. "name": "xHCI Host Controller",
  2413. "value": 2
  2414. },
  2415. "revision": {
  2416. "hex": "0000",
  2417. "name": "6.12",
  2418. "value": 0
  2419. },
  2420. "serial": "0000:05:00.4",
  2421. "model": "Linux 6.12.41 xhci-hcd xHCI Host Controller",
  2422. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb5/5-0:1.0",
  2423. "sysfs_bus_id": "5-0:1.0",
  2424. "resources": [
  2425. {
  2426. "type": "baud",
  2427. "speed": 480000000,
  2428. "bits": 0,
  2429. "stop_bits": 0,
  2430. "parity": 0,
  2431. "handshake": 0
  2432. }
  2433. ],
  2434. "detail": {
  2435. "device_class": {
  2436. "hex": "0009",
  2437. "name": "hub",
  2438. "value": 9
  2439. },
  2440. "device_subclass": {
  2441. "hex": "0000",
  2442. "name": "per_interface",
  2443. "value": 0
  2444. },
  2445. "device_protocol": 1,
  2446. "interface_class": {
  2447. "hex": "0009",
  2448. "name": "hub",
  2449. "value": 9
  2450. },
  2451. "interface_subclass": {
  2452. "hex": "0000",
  2453. "name": "per_interface",
  2454. "value": 0
  2455. },
  2456. "interface_protocol": 0,
  2457. "interface_number": 0,
  2458. "interface_alternate_setting": 0
  2459. },
  2460. "hotplug": "usb",
  2461. "driver": "hub",
  2462. "driver_module": "usbcore",
  2463. "drivers": [
  2464. "hub"
  2465. ],
  2466. "driver_modules": [
  2467. "usbcore"
  2468. ],
  2469. "module_alias": "usb:v1D6Bp0002d0612dc09dsc00dp01ic09isc00ip00in00"
  2470. },
  2471. {
  2472. "index": 69,
  2473. "attached_to": 29,
  2474. "class_list": [
  2475. "usb",
  2476. "hub"
  2477. ],
  2478. "bus_type": {
  2479. "hex": "0086",
  2480. "name": "USB",
  2481. "value": 134
  2482. },
  2483. "slot": {
  2484. "bus": 0,
  2485. "number": 0
  2486. },
  2487. "base_class": {
  2488. "hex": "010a",
  2489. "name": "Hub",
  2490. "value": 266
  2491. },
  2492. "vendor": {
  2493. "hex": "1d6b",
  2494. "name": "Linux 6.12.41 xhci-hcd",
  2495. "value": 7531
  2496. },
  2497. "device": {
  2498. "hex": "0003",
  2499. "name": "xHCI Host Controller",
  2500. "value": 3
  2501. },
  2502. "revision": {
  2503. "hex": "0000",
  2504. "name": "6.12",
  2505. "value": 0
  2506. },
  2507. "serial": "0000:01:00.0",
  2508. "model": "Linux 6.12.41 xhci-hcd xHCI Host Controller",
  2509. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb2/2-0:1.0",
  2510. "sysfs_bus_id": "2-0:1.0",
  2511. "detail": {
  2512. "device_class": {
  2513. "hex": "0009",
  2514. "name": "hub",
  2515. "value": 9
  2516. },
  2517. "device_subclass": {
  2518. "hex": "0000",
  2519. "name": "per_interface",
  2520. "value": 0
  2521. },
  2522. "device_protocol": 3,
  2523. "interface_class": {
  2524. "hex": "0009",
  2525. "name": "hub",
  2526. "value": 9
  2527. },
  2528. "interface_subclass": {
  2529. "hex": "0000",
  2530. "name": "per_interface",
  2531. "value": 0
  2532. },
  2533. "interface_protocol": 0,
  2534. "interface_number": 0,
  2535. "interface_alternate_setting": 0
  2536. },
  2537. "hotplug": "usb",
  2538. "driver": "hub",
  2539. "driver_module": "usbcore",
  2540. "drivers": [
  2541. "hub"
  2542. ],
  2543. "driver_modules": [
  2544. "usbcore"
  2545. ],
  2546. "module_alias": "usb:v1D6Bp0003d0612dc09dsc00dp03ic09isc00ip00in00"
  2547. }
  2548. ],
  2549. "keyboard": [
  2550. {
  2551. "index": 59,
  2552. "attached_to": 64,
  2553. "class_list": [
  2554. "keyboard",
  2555. "usb"
  2556. ],
  2557. "bus_type": {
  2558. "hex": "0086",
  2559. "name": "USB",
  2560. "value": 134
  2561. },
  2562. "slot": {
  2563. "bus": 0,
  2564. "number": 0
  2565. },
  2566. "base_class": {
  2567. "hex": "0108",
  2568. "name": "Keyboard",
  2569. "value": 264
  2570. },
  2571. "sub_class": {
  2572. "hex": "0000",
  2573. "name": "Keyboard",
  2574. "value": 0
  2575. },
  2576. "vendor": {
  2577. "hex": "1d6b",
  2578. "name": "JetKVM",
  2579. "value": 7531
  2580. },
  2581. "device": {
  2582. "hex": "0104",
  2583. "name": "USB Emulation Device",
  2584. "value": 260
  2585. },
  2586. "revision": {
  2587. "hex": "0000",
  2588. "name": "0.40",
  2589. "value": 0
  2590. },
  2591. "model": "JetKVM USB Emulation Device",
  2592. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6:1.0",
  2593. "sysfs_bus_id": "1-6:1.0",
  2594. "unix_device_name": "/dev/input/event0",
  2595. "unix_device_number": {
  2596. "type": 99,
  2597. "major": 13,
  2598. "minor": 64,
  2599. "range": 1
  2600. },
  2601. "unix_device_names": [
  2602. "/dev/input/by-id/usb-JetKVM_USB_Emulation_Device-event-kbd",
  2603. "/dev/input/by-path/pci-0000:01:00.0-usb-0:6:1.0-event-kbd",
  2604. "/dev/input/by-path/pci-0000:01:00.0-usbv2-0:6:1.0-event-kbd",
  2605. "/dev/input/event0"
  2606. ],
  2607. "resources": [
  2608. {
  2609. "type": "baud",
  2610. "speed": 480000000,
  2611. "bits": 0,
  2612. "stop_bits": 0,
  2613. "parity": 0,
  2614. "handshake": 0
  2615. }
  2616. ],
  2617. "detail": {
  2618. "device_class": {
  2619. "hex": "0000",
  2620. "name": "per_interface",
  2621. "value": 0
  2622. },
  2623. "device_subclass": {
  2624. "hex": "0000",
  2625. "name": "per_interface",
  2626. "value": 0
  2627. },
  2628. "device_protocol": 0,
  2629. "interface_class": {
  2630. "hex": "0003",
  2631. "name": "hid",
  2632. "value": 3
  2633. },
  2634. "interface_subclass": {
  2635. "hex": "0001",
  2636. "name": "audio",
  2637. "value": 1
  2638. },
  2639. "interface_protocol": 1,
  2640. "interface_number": 0,
  2641. "interface_alternate_setting": 0
  2642. },
  2643. "hotplug": "usb",
  2644. "driver": "usbhid",
  2645. "driver_module": "usbhid",
  2646. "drivers": [
  2647. "usbhid"
  2648. ],
  2649. "driver_modules": [
  2650. "usbhid"
  2651. ],
  2652. "driver_info": {
  2653. "type": "keyboard",
  2654. "xkb_rules": "xfree86",
  2655. "xkb_model": "pc104"
  2656. },
  2657. "module_alias": "usb:v1D6Bp0104d0040dc00dsc00dp00ic03isc01ip01in00"
  2658. }
  2659. ],
  2660. "memory": [
  2661. {
  2662. "index": 19,
  2663. "attached_to": 0,
  2664. "class_list": [
  2665. "memory"
  2666. ],
  2667. "base_class": {
  2668. "hex": "0101",
  2669. "name": "Internally Used Class",
  2670. "value": 257
  2671. },
  2672. "sub_class": {
  2673. "hex": "0002",
  2674. "name": "Main Memory",
  2675. "value": 2
  2676. },
  2677. "model": "Main Memory",
  2678. "resources": [
  2679. {
  2680. "type": "mem",
  2681. "base": 0,
  2682. "range": 32989208576,
  2683. "enabled": true,
  2684. "access": "read_write",
  2685. "prefetch": "unknown"
  2686. },
  2687. {
  2688. "type": "phys_mem",
  2689. "range": 32212254720
  2690. }
  2691. ]
  2692. }
  2693. ],
  2694. "monitor": [
  2695. {
  2696. "index": 49,
  2697. "attached_to": 39,
  2698. "class_list": [
  2699. "monitor"
  2700. ],
  2701. "base_class": {
  2702. "hex": "0100",
  2703. "name": "Monitor",
  2704. "value": 256
  2705. },
  2706. "sub_class": {
  2707. "hex": "0002",
  2708. "name": "LCD Monitor",
  2709. "value": 2
  2710. },
  2711. "vendor": {
  2712. "hex": "5262",
  2713. "name": "TOSHIBA",
  2714. "value": 21090
  2715. },
  2716. "device": {
  2717. "hex": "8801",
  2718. "name": "T749-fHD720",
  2719. "value": 34817
  2720. },
  2721. "serial": "2290649088",
  2722. "model": "TOSHIBA T749-fHD720",
  2723. "resources": [
  2724. {
  2725. "type": "monitor",
  2726. "width": 1280,
  2727. "height": 720,
  2728. "vertical_frequency": 60,
  2729. "interlaced": false
  2730. },
  2731. {
  2732. "type": "monitor",
  2733. "width": 1920,
  2734. "height": 1080,
  2735. "vertical_frequency": 60,
  2736. "interlaced": false
  2737. },
  2738. {
  2739. "type": "size",
  2740. "unit": "mm",
  2741. "value_1": 708,
  2742. "value_2": 398
  2743. }
  2744. ],
  2745. "detail": {
  2746. "manufacture_year": 2011,
  2747. "manufacture_week": 28,
  2748. "vertical_sync": {
  2749. "min": 20,
  2750. "max": 120
  2751. },
  2752. "horizontal_sync": {
  2753. "min": 1,
  2754. "max": 255
  2755. },
  2756. "horizontal_sync_timings": {
  2757. "disp": 1920,
  2758. "sync_start": 2008,
  2759. "sync_end": 2052,
  2760. "total": 2200
  2761. },
  2762. "vertical_sync_timings": {
  2763. "disp": 1080,
  2764. "sync_start": 1084,
  2765. "sync_end": 1089,
  2766. "total": 1125
  2767. },
  2768. "clock": 148500,
  2769. "width": 1920,
  2770. "height": 1080,
  2771. "width_millimetres": 708,
  2772. "height_millimetres": 398,
  2773. "horizontal_flag": 43,
  2774. "vertical_flag": 43,
  2775. "vendor": "",
  2776. "name": "T749-fHD720"
  2777. },
  2778. "driver_info": {
  2779. "type": "display",
  2780. "width": 1920,
  2781. "height": 1080,
  2782. "vertical_sync": {
  2783. "min": 20,
  2784. "max": 120
  2785. },
  2786. "horizontal_sync": {
  2787. "min": 1,
  2788. "max": 255
  2789. },
  2790. "bandwidth": 0,
  2791. "horizontal_sync_timings": {
  2792. "disp": 1920,
  2793. "sync_start": 2008,
  2794. "sync_end": 2052,
  2795. "total": 2200
  2796. },
  2797. "vertical_sync_timings": {
  2798. "disp": 1080,
  2799. "sync_start": 1084,
  2800. "sync_end": 1089,
  2801. "total": 1125
  2802. },
  2803. "horizontal_flag": 43,
  2804. "vertical_flag": 43
  2805. }
  2806. }
  2807. ],
  2808. "mouse": [
  2809. {
  2810. "index": 58,
  2811. "attached_to": 64,
  2812. "class_list": [
  2813. "mouse",
  2814. "usb"
  2815. ],
  2816. "bus_type": {
  2817. "hex": "0086",
  2818. "name": "USB",
  2819. "value": 134
  2820. },
  2821. "slot": {
  2822. "bus": 0,
  2823. "number": 0
  2824. },
  2825. "base_class": {
  2826. "hex": "0105",
  2827. "name": "Mouse",
  2828. "value": 261
  2829. },
  2830. "sub_class": {
  2831. "hex": "0003",
  2832. "name": "USB Mouse",
  2833. "value": 3
  2834. },
  2835. "vendor": {
  2836. "hex": "1d6b",
  2837. "name": "JetKVM",
  2838. "value": 7531
  2839. },
  2840. "device": {
  2841. "hex": "0104",
  2842. "name": "USB Emulation Device",
  2843. "value": 260
  2844. },
  2845. "revision": {
  2846. "hex": "0000",
  2847. "name": "0.40",
  2848. "value": 0
  2849. },
  2850. "compat_vendor": "Unknown",
  2851. "compat_device": "Generic USB Mouse",
  2852. "model": "JetKVM USB Emulation Device",
  2853. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6:1.2",
  2854. "sysfs_bus_id": "1-6:1.2",
  2855. "unix_device_name": "/dev/input/mice",
  2856. "unix_device_number": {
  2857. "type": 99,
  2858. "major": 13,
  2859. "minor": 63,
  2860. "range": 1
  2861. },
  2862. "unix_device_names": [
  2863. "/dev/input/mice"
  2864. ],
  2865. "unix_device_name2": "/dev/input/mouse1",
  2866. "unix_device_number2": {
  2867. "type": 99,
  2868. "major": 13,
  2869. "minor": 33,
  2870. "range": 1
  2871. },
  2872. "resources": [
  2873. {
  2874. "type": "baud",
  2875. "speed": 480000000,
  2876. "bits": 0,
  2877. "stop_bits": 0,
  2878. "parity": 0,
  2879. "handshake": 0
  2880. }
  2881. ],
  2882. "detail": {
  2883. "device_class": {
  2884. "hex": "0000",
  2885. "name": "per_interface",
  2886. "value": 0
  2887. },
  2888. "device_subclass": {
  2889. "hex": "0000",
  2890. "name": "per_interface",
  2891. "value": 0
  2892. },
  2893. "device_protocol": 0,
  2894. "interface_class": {
  2895. "hex": "0003",
  2896. "name": "hid",
  2897. "value": 3
  2898. },
  2899. "interface_subclass": {
  2900. "hex": "0001",
  2901. "name": "audio",
  2902. "value": 1
  2903. },
  2904. "interface_protocol": 2,
  2905. "interface_number": 2,
  2906. "interface_alternate_setting": 0
  2907. },
  2908. "hotplug": "usb",
  2909. "driver": "usbhid",
  2910. "driver_module": "usbhid",
  2911. "drivers": [
  2912. "usbhid"
  2913. ],
  2914. "driver_modules": [
  2915. "usbhid"
  2916. ],
  2917. "driver_info": {
  2918. "type": "mouse",
  2919. "db_entry_0": [
  2920. "explorerps/2",
  2921. "exps2"
  2922. ],
  2923. "xf86": "explorerps/2",
  2924. "gpm": "exps2",
  2925. "buttons": -1,
  2926. "wheels": -1
  2927. },
  2928. "module_alias": "usb:v1D6Bp0104d0040dc00dsc00dp00ic03isc01ip02in02"
  2929. },
  2930. {
  2931. "index": 65,
  2932. "attached_to": 64,
  2933. "class_list": [
  2934. "mouse",
  2935. "usb"
  2936. ],
  2937. "bus_type": {
  2938. "hex": "0086",
  2939. "name": "USB",
  2940. "value": 134
  2941. },
  2942. "slot": {
  2943. "bus": 0,
  2944. "number": 0
  2945. },
  2946. "base_class": {
  2947. "hex": "0105",
  2948. "name": "Mouse",
  2949. "value": 261
  2950. },
  2951. "sub_class": {
  2952. "hex": "0003",
  2953. "name": "USB Mouse",
  2954. "value": 3
  2955. },
  2956. "vendor": {
  2957. "hex": "1d6b",
  2958. "name": "JetKVM",
  2959. "value": 7531
  2960. },
  2961. "device": {
  2962. "hex": "0104",
  2963. "name": "USB Emulation Device",
  2964. "value": 260
  2965. },
  2966. "revision": {
  2967. "hex": "0000",
  2968. "name": "0.40",
  2969. "value": 0
  2970. },
  2971. "compat_vendor": "Unknown",
  2972. "compat_device": "Generic USB Mouse",
  2973. "model": "JetKVM USB Emulation Device",
  2974. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6:1.1",
  2975. "sysfs_bus_id": "1-6:1.1",
  2976. "unix_device_name": "/dev/input/mice",
  2977. "unix_device_number": {
  2978. "type": 99,
  2979. "major": 13,
  2980. "minor": 63,
  2981. "range": 1
  2982. },
  2983. "unix_device_names": [
  2984. "/dev/input/mice"
  2985. ],
  2986. "unix_device_name2": "/dev/input/mouse0",
  2987. "unix_device_number2": {
  2988. "type": 99,
  2989. "major": 13,
  2990. "minor": 32,
  2991. "range": 1
  2992. },
  2993. "resources": [
  2994. {
  2995. "type": "baud",
  2996. "speed": 480000000,
  2997. "bits": 0,
  2998. "stop_bits": 0,
  2999. "parity": 0,
  3000. "handshake": 0
  3001. }
  3002. ],
  3003. "detail": {
  3004. "device_class": {
  3005. "hex": "0000",
  3006. "name": "per_interface",
  3007. "value": 0
  3008. },
  3009. "device_subclass": {
  3010. "hex": "0000",
  3011. "name": "per_interface",
  3012. "value": 0
  3013. },
  3014. "device_protocol": 0,
  3015. "interface_class": {
  3016. "hex": "0003",
  3017. "name": "hid",
  3018. "value": 3
  3019. },
  3020. "interface_subclass": {
  3021. "hex": "0000",
  3022. "name": "per_interface",
  3023. "value": 0
  3024. },
  3025. "interface_protocol": 2,
  3026. "interface_number": 1,
  3027. "interface_alternate_setting": 0
  3028. },
  3029. "hotplug": "usb",
  3030. "driver": "usbhid",
  3031. "driver_module": "usbhid",
  3032. "drivers": [
  3033. "usbhid"
  3034. ],
  3035. "driver_modules": [
  3036. "usbhid"
  3037. ],
  3038. "driver_info": {
  3039. "type": "mouse",
  3040. "db_entry_0": [
  3041. "explorerps/2",
  3042. "exps2"
  3043. ],
  3044. "xf86": "explorerps/2",
  3045. "gpm": "exps2",
  3046. "buttons": -1,
  3047. "wheels": -1
  3048. },
  3049. "module_alias": "usb:v1D6Bp0104d0040dc00dsc00dp00ic03isc00ip02in01"
  3050. }
  3051. ],
  3052. "network_controller": [
  3053. {
  3054. "index": 20,
  3055. "attached_to": 41,
  3056. "class_list": [
  3057. "network_controller",
  3058. "pci"
  3059. ],
  3060. "bus_type": {
  3061. "hex": "0004",
  3062. "name": "PCI",
  3063. "value": 4
  3064. },
  3065. "slot": {
  3066. "bus": 3,
  3067. "number": 0
  3068. },
  3069. "base_class": {
  3070. "hex": "0002",
  3071. "name": "Network controller",
  3072. "value": 2
  3073. },
  3074. "sub_class": {
  3075. "hex": "0000",
  3076. "name": "Ethernet controller",
  3077. "value": 0
  3078. },
  3079. "vendor": {
  3080. "hex": "10ec",
  3081. "value": 4332
  3082. },
  3083. "sub_vendor": {
  3084. "hex": "1849",
  3085. "value": 6217
  3086. },
  3087. "device": {
  3088. "hex": "8168",
  3089. "value": 33128
  3090. },
  3091. "sub_device": {
  3092. "hex": "8168",
  3093. "value": 33128
  3094. },
  3095. "revision": {
  3096. "hex": "0015",
  3097. "value": 21
  3098. },
  3099. "model": "Ethernet controller",
  3100. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:08.0/0000:03:00.0",
  3101. "sysfs_bus_id": "0000:03:00.0",
  3102. "unix_device_name": "enp3s0",
  3103. "unix_device_names": [
  3104. "enp3s0"
  3105. ],
  3106. "resources": [
  3107. {
  3108. "type": "hwaddr",
  3109. "address": 57
  3110. },
  3111. {
  3112. "type": "io",
  3113. "base": 61440,
  3114. "range": 256,
  3115. "enabled": true,
  3116. "access": "read_write"
  3117. },
  3118. {
  3119. "type": "irq",
  3120. "base": 29,
  3121. "triggered": 0,
  3122. "enabled": true
  3123. },
  3124. {
  3125. "type": "mem",
  3126. "base": 4241489920,
  3127. "range": 16384,
  3128. "enabled": true,
  3129. "access": "read_write",
  3130. "prefetch": "no"
  3131. },
  3132. {
  3133. "type": "mem",
  3134. "base": 4241506304,
  3135. "range": 4096,
  3136. "enabled": true,
  3137. "access": "read_write",
  3138. "prefetch": "no"
  3139. },
  3140. {
  3141. "type": "phwaddr",
  3142. "address": 57
  3143. }
  3144. ],
  3145. "detail": {
  3146. "function": 0,
  3147. "command": 1031,
  3148. "header_type": 0,
  3149. "secondary_bus": 0,
  3150. "irq": 29,
  3151. "prog_if": 0
  3152. },
  3153. "driver": "r8169",
  3154. "driver_module": "r8169",
  3155. "drivers": [
  3156. "r8169"
  3157. ],
  3158. "driver_modules": [
  3159. "r8169"
  3160. ],
  3161. "module_alias": "pci:v000010ECd00008168sv00001849sd00008168bc02sc00i00"
  3162. }
  3163. ],
  3164. "network_interface": [
  3165. {
  3166. "index": 70,
  3167. "attached_to": 0,
  3168. "class_list": [
  3169. "network_interface"
  3170. ],
  3171. "base_class": {
  3172. "hex": "0107",
  3173. "name": "Network Interface",
  3174. "value": 263
  3175. },
  3176. "sub_class": {
  3177. "hex": "0000",
  3178. "name": "Loopback",
  3179. "value": 0
  3180. },
  3181. "model": "Loopback network interface",
  3182. "sysfs_id": "/class/net/lo",
  3183. "unix_device_name": "lo",
  3184. "unix_device_names": [
  3185. "lo"
  3186. ]
  3187. },
  3188. {
  3189. "index": 71,
  3190. "attached_to": 20,
  3191. "class_list": [
  3192. "network_interface"
  3193. ],
  3194. "base_class": {
  3195. "hex": "0107",
  3196. "name": "Network Interface",
  3197. "value": 263
  3198. },
  3199. "sub_class": {
  3200. "hex": "0001",
  3201. "name": "Ethernet",
  3202. "value": 1
  3203. },
  3204. "model": "Ethernet network interface",
  3205. "sysfs_id": "/class/net/enp3s0",
  3206. "sysfs_device_link": "/devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:08.0/0000:03:00.0",
  3207. "unix_device_name": "enp3s0",
  3208. "unix_device_names": [
  3209. "enp3s0"
  3210. ],
  3211. "resources": [
  3212. {
  3213. "type": "hwaddr",
  3214. "address": 57
  3215. },
  3216. {
  3217. "type": "phwaddr",
  3218. "address": 57
  3219. }
  3220. ],
  3221. "driver": "r8169",
  3222. "driver_module": "r8169",
  3223. "drivers": [
  3224. "r8169"
  3225. ],
  3226. "driver_modules": [
  3227. "r8169"
  3228. ]
  3229. }
  3230. ],
  3231. "pci": [
  3232. {
  3233. "index": 37,
  3234. "attached_to": 34,
  3235. "class_list": [
  3236. "pci",
  3237. "unknown"
  3238. ],
  3239. "bus_type": {
  3240. "hex": "0004",
  3241. "name": "PCI",
  3242. "value": 4
  3243. },
  3244. "slot": {
  3245. "bus": 5,
  3246. "number": 0
  3247. },
  3248. "base_class": {
  3249. "hex": "0010",
  3250. "name": "Encryption controller",
  3251. "value": 16
  3252. },
  3253. "sub_class": {
  3254. "hex": "0080",
  3255. "name": "Encryption controller",
  3256. "value": 128
  3257. },
  3258. "vendor": {
  3259. "hex": "1022",
  3260. "name": "AMD",
  3261. "value": 4130
  3262. },
  3263. "sub_vendor": {
  3264. "hex": "1022",
  3265. "name": "AMD",
  3266. "value": 4130
  3267. },
  3268. "device": {
  3269. "hex": "15df",
  3270. "value": 5599
  3271. },
  3272. "sub_device": {
  3273. "hex": "15df",
  3274. "value": 5599
  3275. },
  3276. "model": "AMD Encryption controller",
  3277. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.2",
  3278. "sysfs_bus_id": "0000:05:00.2",
  3279. "resources": [
  3280. {
  3281. "type": "irq",
  3282. "base": 29,
  3283. "triggered": 0,
  3284. "enabled": true
  3285. },
  3286. {
  3287. "type": "mem",
  3288. "base": 4239392768,
  3289. "range": 1048576,
  3290. "enabled": true,
  3291. "access": "read_write",
  3292. "prefetch": "no"
  3293. },
  3294. {
  3295. "type": "mem",
  3296. "base": 4241014784,
  3297. "range": 8192,
  3298. "enabled": true,
  3299. "access": "read_write",
  3300. "prefetch": "no"
  3301. }
  3302. ],
  3303. "detail": {
  3304. "function": 2,
  3305. "command": 1031,
  3306. "header_type": 0,
  3307. "secondary_bus": 0,
  3308. "irq": 29,
  3309. "prog_if": 0
  3310. },
  3311. "driver": "ccp",
  3312. "driver_module": "ccp",
  3313. "drivers": [
  3314. "ccp"
  3315. ],
  3316. "driver_modules": [
  3317. "ccp"
  3318. ],
  3319. "module_alias": "pci:v00001022d000015DFsv00001022sd000015DFbc10sc80i00"
  3320. },
  3321. {
  3322. "index": 47,
  3323. "attached_to": 0,
  3324. "class_list": [
  3325. "pci",
  3326. "unknown"
  3327. ],
  3328. "bus_type": {
  3329. "hex": "0004",
  3330. "name": "PCI",
  3331. "value": 4
  3332. },
  3333. "slot": {
  3334. "bus": 0,
  3335. "number": 20
  3336. },
  3337. "base_class": {
  3338. "hex": "000c",
  3339. "name": "Serial bus controller",
  3340. "value": 12
  3341. },
  3342. "sub_class": {
  3343. "hex": "0005",
  3344. "name": "SMBus",
  3345. "value": 5
  3346. },
  3347. "vendor": {
  3348. "hex": "1022",
  3349. "name": "AMD",
  3350. "value": 4130
  3351. },
  3352. "sub_vendor": {
  3353. "hex": "1849",
  3354. "value": 6217
  3355. },
  3356. "device": {
  3357. "hex": "790b",
  3358. "value": 30987
  3359. },
  3360. "sub_device": {
  3361. "hex": "ffff",
  3362. "value": 65535
  3363. },
  3364. "revision": {
  3365. "hex": "0051",
  3366. "value": 81
  3367. },
  3368. "model": "AMD SMBus",
  3369. "sysfs_id": "/devices/pci0000:00/0000:00:14.0",
  3370. "sysfs_bus_id": "0000:00:14.0",
  3371. "detail": {
  3372. "function": 0,
  3373. "command": 1027,
  3374. "header_type": 0,
  3375. "secondary_bus": 0,
  3376. "irq": 0,
  3377. "prog_if": 0
  3378. },
  3379. "driver": "piix4_smbus",
  3380. "driver_module": "i2c_piix4",
  3381. "drivers": [
  3382. "piix4_smbus"
  3383. ],
  3384. "driver_modules": [
  3385. "i2c_piix4"
  3386. ],
  3387. "module_alias": "pci:v00001022d0000790Bsv00001849sd0000FFFFbc0Csc05i00"
  3388. }
  3389. ],
  3390. "sound": [
  3391. {
  3392. "index": 24,
  3393. "attached_to": 34,
  3394. "class_list": [
  3395. "sound",
  3396. "pci"
  3397. ],
  3398. "bus_type": {
  3399. "hex": "0004",
  3400. "name": "PCI",
  3401. "value": 4
  3402. },
  3403. "slot": {
  3404. "bus": 5,
  3405. "number": 0
  3406. },
  3407. "base_class": {
  3408. "hex": "0004",
  3409. "name": "Multimedia controller",
  3410. "value": 4
  3411. },
  3412. "sub_class": {
  3413. "hex": "0003",
  3414. "value": 3
  3415. },
  3416. "vendor": {
  3417. "hex": "1002",
  3418. "name": "ATI Technologies Inc",
  3419. "value": 4098
  3420. },
  3421. "sub_vendor": {
  3422. "hex": "1002",
  3423. "name": "ATI Technologies Inc",
  3424. "value": 4098
  3425. },
  3426. "device": {
  3427. "hex": "1637",
  3428. "value": 5687
  3429. },
  3430. "sub_device": {
  3431. "hex": "1637",
  3432. "value": 5687
  3433. },
  3434. "model": "ATI Multimedia controller",
  3435. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.1",
  3436. "sysfs_bus_id": "0000:05:00.1",
  3437. "resources": [
  3438. {
  3439. "type": "irq",
  3440. "base": 79,
  3441. "triggered": 0,
  3442. "enabled": true
  3443. },
  3444. {
  3445. "type": "mem",
  3446. "base": 4240998400,
  3447. "range": 16384,
  3448. "enabled": true,
  3449. "access": "read_write",
  3450. "prefetch": "no"
  3451. }
  3452. ],
  3453. "detail": {
  3454. "function": 1,
  3455. "command": 1031,
  3456. "header_type": 0,
  3457. "secondary_bus": 0,
  3458. "irq": 79,
  3459. "prog_if": 0
  3460. },
  3461. "driver": "snd_hda_intel",
  3462. "driver_module": "snd_hda_intel",
  3463. "drivers": [
  3464. "snd_hda_intel"
  3465. ],
  3466. "driver_modules": [
  3467. "snd_hda_intel"
  3468. ],
  3469. "module_alias": "pci:v00001002d00001637sv00001002sd00001637bc04sc03i00"
  3470. },
  3471. {
  3472. "index": 31,
  3473. "attached_to": 34,
  3474. "class_list": [
  3475. "sound",
  3476. "pci"
  3477. ],
  3478. "bus_type": {
  3479. "hex": "0004",
  3480. "name": "PCI",
  3481. "value": 4
  3482. },
  3483. "slot": {
  3484. "bus": 5,
  3485. "number": 0
  3486. },
  3487. "base_class": {
  3488. "hex": "0004",
  3489. "name": "Multimedia controller",
  3490. "value": 4
  3491. },
  3492. "sub_class": {
  3493. "hex": "0003",
  3494. "value": 3
  3495. },
  3496. "vendor": {
  3497. "hex": "1022",
  3498. "name": "AMD",
  3499. "value": 4130
  3500. },
  3501. "sub_vendor": {
  3502. "hex": "1849",
  3503. "value": 6217
  3504. },
  3505. "device": {
  3506. "hex": "15e3",
  3507. "value": 5603
  3508. },
  3509. "sub_device": {
  3510. "hex": "2228",
  3511. "value": 8744
  3512. },
  3513. "model": "AMD Multimedia controller",
  3514. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.6",
  3515. "sysfs_bus_id": "0000:05:00.6",
  3516. "resources": [
  3517. {
  3518. "type": "irq",
  3519. "base": 80,
  3520. "triggered": 0,
  3521. "enabled": true
  3522. },
  3523. {
  3524. "type": "mem",
  3525. "base": 4240965632,
  3526. "range": 32768,
  3527. "enabled": true,
  3528. "access": "read_write",
  3529. "prefetch": "no"
  3530. }
  3531. ],
  3532. "detail": {
  3533. "function": 6,
  3534. "command": 1031,
  3535. "header_type": 0,
  3536. "secondary_bus": 0,
  3537. "irq": 80,
  3538. "prog_if": 0
  3539. },
  3540. "driver": "snd_hda_intel",
  3541. "driver_module": "snd_hda_intel",
  3542. "drivers": [
  3543. "snd_hda_intel"
  3544. ],
  3545. "driver_modules": [
  3546. "snd_hda_intel"
  3547. ],
  3548. "module_alias": "pci:v00001022d000015E3sv00001849sd00002228bc04sc03i00"
  3549. }
  3550. ],
  3551. "storage_controller": [
  3552. {
  3553. "index": 42,
  3554. "attached_to": 30,
  3555. "class_list": [
  3556. "storage_controller",
  3557. "pci"
  3558. ],
  3559. "bus_type": {
  3560. "hex": "0004",
  3561. "name": "PCI",
  3562. "value": 4
  3563. },
  3564. "slot": {
  3565. "bus": 1,
  3566. "number": 0
  3567. },
  3568. "base_class": {
  3569. "hex": "0001",
  3570. "name": "Mass storage controller",
  3571. "value": 1
  3572. },
  3573. "sub_class": {
  3574. "hex": "0006",
  3575. "value": 6
  3576. },
  3577. "pci_interface": {
  3578. "hex": "0001",
  3579. "value": 1
  3580. },
  3581. "vendor": {
  3582. "hex": "1022",
  3583. "name": "AMD",
  3584. "value": 4130
  3585. },
  3586. "sub_vendor": {
  3587. "hex": "1b21",
  3588. "value": 6945
  3589. },
  3590. "device": {
  3591. "hex": "43eb",
  3592. "value": 17387
  3593. },
  3594. "sub_device": {
  3595. "hex": "1062",
  3596. "value": 4194
  3597. },
  3598. "model": "AMD Mass storage controller",
  3599. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.1",
  3600. "sysfs_bus_id": "0000:01:00.1",
  3601. "resources": [
  3602. {
  3603. "type": "irq",
  3604. "base": 50,
  3605. "triggered": 0,
  3606. "enabled": true
  3607. },
  3608. {
  3609. "type": "mem",
  3610. "base": 4242538496,
  3611. "range": 524288,
  3612. "enabled": false,
  3613. "access": "read_only",
  3614. "prefetch": "no"
  3615. },
  3616. {
  3617. "type": "mem",
  3618. "base": 4243062784,
  3619. "range": 131072,
  3620. "enabled": true,
  3621. "access": "read_write",
  3622. "prefetch": "no"
  3623. }
  3624. ],
  3625. "detail": {
  3626. "function": 1,
  3627. "command": 1030,
  3628. "header_type": 0,
  3629. "secondary_bus": 0,
  3630. "irq": 50,
  3631. "prog_if": 1
  3632. },
  3633. "driver": "ahci",
  3634. "driver_module": "ahci",
  3635. "drivers": [
  3636. "ahci"
  3637. ],
  3638. "driver_modules": [
  3639. "ahci"
  3640. ],
  3641. "module_alias": "pci:v00001022d000043EBsv00001B21sd00001062bc01sc06i01"
  3642. },
  3643. {
  3644. "index": 44,
  3645. "attached_to": 43,
  3646. "class_list": [
  3647. "storage_controller",
  3648. "pci"
  3649. ],
  3650. "bus_type": {
  3651. "hex": "0004",
  3652. "name": "PCI",
  3653. "value": 4
  3654. },
  3655. "slot": {
  3656. "bus": 4,
  3657. "number": 0
  3658. },
  3659. "base_class": {
  3660. "hex": "0001",
  3661. "name": "Mass storage controller",
  3662. "value": 1
  3663. },
  3664. "sub_class": {
  3665. "hex": "0008",
  3666. "value": 8
  3667. },
  3668. "pci_interface": {
  3669. "hex": "0002",
  3670. "value": 2
  3671. },
  3672. "vendor": {
  3673. "hex": "2646",
  3674. "value": 9798
  3675. },
  3676. "sub_vendor": {
  3677. "hex": "2646",
  3678. "value": 9798
  3679. },
  3680. "device": {
  3681. "hex": "5025",
  3682. "value": 20517
  3683. },
  3684. "sub_device": {
  3685. "hex": "5025",
  3686. "value": 20517
  3687. },
  3688. "model": "Mass storage controller",
  3689. "sysfs_id": "/devices/pci0000:00/0000:00:02.2/0000:04:00.0",
  3690. "sysfs_bus_id": "0000:04:00.0",
  3691. "resources": [
  3692. {
  3693. "type": "irq",
  3694. "base": 31,
  3695. "triggered": 0,
  3696. "enabled": true
  3697. },
  3698. {
  3699. "type": "mem",
  3700. "base": 4243587072,
  3701. "range": 16384,
  3702. "enabled": true,
  3703. "access": "read_write",
  3704. "prefetch": "no"
  3705. }
  3706. ],
  3707. "detail": {
  3708. "function": 0,
  3709. "command": 1030,
  3710. "header_type": 0,
  3711. "secondary_bus": 0,
  3712. "irq": 31,
  3713. "prog_if": 2
  3714. },
  3715. "driver": "nvme",
  3716. "driver_module": "nvme",
  3717. "drivers": [
  3718. "nvme"
  3719. ],
  3720. "driver_modules": [
  3721. "nvme"
  3722. ],
  3723. "module_alias": "pci:v00002646d00005025sv00002646sd00005025bc01sc08i02"
  3724. }
  3725. ],
  3726. "system": {
  3727. "form_factor": "desktop"
  3728. },
  3729. "unknown": [
  3730. {
  3731. "index": 50,
  3732. "attached_to": 0,
  3733. "class_list": [
  3734. "unknown"
  3735. ],
  3736. "base_class": {
  3737. "hex": "0007",
  3738. "name": "Communication controller",
  3739. "value": 7
  3740. },
  3741. "sub_class": {
  3742. "hex": "0000",
  3743. "name": "Serial controller",
  3744. "value": 0
  3745. },
  3746. "pci_interface": {
  3747. "hex": "0002",
  3748. "name": "16550",
  3749. "value": 2
  3750. },
  3751. "device": {
  3752. "hex": "0000",
  3753. "name": "16550A",
  3754. "value": 0
  3755. },
  3756. "model": "16550A",
  3757. "unix_device_name": "/dev/ttyS0",
  3758. "unix_device_names": [
  3759. "/dev/ttyS0"
  3760. ],
  3761. "resources": [
  3762. {
  3763. "type": "io",
  3764. "base": 1016,
  3765. "range": 0,
  3766. "enabled": true,
  3767. "access": "read_write"
  3768. },
  3769. {
  3770. "type": "irq",
  3771. "base": 4,
  3772. "triggered": 0,
  3773. "enabled": true
  3774. }
  3775. ]
  3776. }
  3777. ],
  3778. "usb": [
  3779. {
  3780. "index": 66,
  3781. "attached_to": 64,
  3782. "class_list": [
  3783. "usb",
  3784. "unknown"
  3785. ],
  3786. "bus_type": {
  3787. "hex": "0086",
  3788. "name": "USB",
  3789. "value": 134
  3790. },
  3791. "slot": {
  3792. "bus": 0,
  3793. "number": 0
  3794. },
  3795. "base_class": {
  3796. "hex": "0000",
  3797. "name": "Unclassified device",
  3798. "value": 0
  3799. },
  3800. "sub_class": {
  3801. "hex": "0000",
  3802. "name": "Unclassified device",
  3803. "value": 0
  3804. },
  3805. "vendor": {
  3806. "hex": "26ce",
  3807. "name": "ASRock",
  3808. "value": 9934
  3809. },
  3810. "device": {
  3811. "hex": "01a2",
  3812. "name": "LED Controller",
  3813. "value": 418
  3814. },
  3815. "serial": "A02019100900",
  3816. "model": "ASRock LED Controller",
  3817. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-8/1-8:1.0",
  3818. "sysfs_bus_id": "1-8:1.0",
  3819. "unix_device_name": "/dev/input/event3",
  3820. "unix_device_number": {
  3821. "type": 99,
  3822. "major": 13,
  3823. "minor": 67,
  3824. "range": 1
  3825. },
  3826. "unix_device_names": [
  3827. "/dev/input/by-id/usb-ASRock_LED_Controller_A02019100900-event-if00",
  3828. "/dev/input/by-path/pci-0000:01:00.0-usb-0:8:1.0-event",
  3829. "/dev/input/by-path/pci-0000:01:00.0-usbv2-0:8:1.0-event",
  3830. "/dev/input/event3"
  3831. ],
  3832. "resources": [
  3833. {
  3834. "type": "baud",
  3835. "speed": 12000000,
  3836. "bits": 0,
  3837. "stop_bits": 0,
  3838. "parity": 0,
  3839. "handshake": 0
  3840. }
  3841. ],
  3842. "detail": {
  3843. "device_class": {
  3844. "hex": "0000",
  3845. "name": "per_interface",
  3846. "value": 0
  3847. },
  3848. "device_subclass": {
  3849. "hex": "0000",
  3850. "name": "per_interface",
  3851. "value": 0
  3852. },
  3853. "device_protocol": 0,
  3854. "interface_class": {
  3855. "hex": "0003",
  3856. "name": "hid",
  3857. "value": 3
  3858. },
  3859. "interface_subclass": {
  3860. "hex": "0000",
  3861. "name": "per_interface",
  3862. "value": 0
  3863. },
  3864. "interface_protocol": 0,
  3865. "interface_number": 0,
  3866. "interface_alternate_setting": 0
  3867. },
  3868. "hotplug": "usb",
  3869. "driver": "usbhid",
  3870. "driver_module": "usbhid",
  3871. "drivers": [
  3872. "usbhid"
  3873. ],
  3874. "driver_modules": [
  3875. "usbhid"
  3876. ],
  3877. "module_alias": "usb:v26CEp01A2d0000dc00dsc00dp00ic03isc00ip00in00"
  3878. }
  3879. ],
  3880. "usb_controller": [
  3881. {
  3882. "index": 22,
  3883. "attached_to": 34,
  3884. "class_list": [
  3885. "usb_controller",
  3886. "pci"
  3887. ],
  3888. "bus_type": {
  3889. "hex": "0004",
  3890. "name": "PCI",
  3891. "value": 4
  3892. },
  3893. "slot": {
  3894. "bus": 5,
  3895. "number": 0
  3896. },
  3897. "base_class": {
  3898. "hex": "000c",
  3899. "name": "Serial bus controller",
  3900. "value": 12
  3901. },
  3902. "sub_class": {
  3903. "hex": "0003",
  3904. "name": "USB Controller",
  3905. "value": 3
  3906. },
  3907. "pci_interface": {
  3908. "hex": "0030",
  3909. "value": 48
  3910. },
  3911. "vendor": {
  3912. "hex": "1022",
  3913. "name": "AMD",
  3914. "value": 4130
  3915. },
  3916. "sub_vendor": {
  3917. "hex": "1849",
  3918. "value": 6217
  3919. },
  3920. "device": {
  3921. "hex": "1639",
  3922. "value": 5689
  3923. },
  3924. "sub_device": {
  3925. "hex": "ffff",
  3926. "value": 65535
  3927. },
  3928. "model": "AMD USB Controller",
  3929. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.3",
  3930. "sysfs_bus_id": "0000:05:00.3",
  3931. "resources": [
  3932. {
  3933. "type": "irq",
  3934. "base": 49,
  3935. "triggered": 0,
  3936. "enabled": true
  3937. },
  3938. {
  3939. "type": "mem",
  3940. "base": 4238344192,
  3941. "range": 1048576,
  3942. "enabled": true,
  3943. "access": "read_write",
  3944. "prefetch": "no"
  3945. }
  3946. ],
  3947. "detail": {
  3948. "function": 3,
  3949. "command": 1031,
  3950. "header_type": 0,
  3951. "secondary_bus": 0,
  3952. "irq": 49,
  3953. "prog_if": 48
  3954. },
  3955. "driver": "xhci_hcd",
  3956. "driver_module": "xhci_pci",
  3957. "drivers": [
  3958. "xhci_hcd"
  3959. ],
  3960. "driver_modules": [
  3961. "xhci_pci"
  3962. ],
  3963. "module_alias": "pci:v00001022d00001639sv00001849sd0000FFFFbc0Csc03i30"
  3964. },
  3965. {
  3966. "index": 29,
  3967. "attached_to": 30,
  3968. "class_list": [
  3969. "usb_controller",
  3970. "pci"
  3971. ],
  3972. "bus_type": {
  3973. "hex": "0004",
  3974. "name": "PCI",
  3975. "value": 4
  3976. },
  3977. "slot": {
  3978. "bus": 1,
  3979. "number": 0
  3980. },
  3981. "base_class": {
  3982. "hex": "000c",
  3983. "name": "Serial bus controller",
  3984. "value": 12
  3985. },
  3986. "sub_class": {
  3987. "hex": "0003",
  3988. "name": "USB Controller",
  3989. "value": 3
  3990. },
  3991. "pci_interface": {
  3992. "hex": "0030",
  3993. "value": 48
  3994. },
  3995. "vendor": {
  3996. "hex": "1022",
  3997. "name": "AMD",
  3998. "value": 4130
  3999. },
  4000. "sub_vendor": {
  4001. "hex": "1b21",
  4002. "value": 6945
  4003. },
  4004. "device": {
  4005. "hex": "43ee",
  4006. "value": 17390
  4007. },
  4008. "sub_device": {
  4009. "hex": "1142",
  4010. "value": 4418
  4011. },
  4012. "model": "AMD USB Controller",
  4013. "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:01:00.0",
  4014. "sysfs_bus_id": "0000:01:00.0",
  4015. "resources": [
  4016. {
  4017. "type": "irq",
  4018. "base": 29,
  4019. "triggered": 0,
  4020. "enabled": true
  4021. },
  4022. {
  4023. "type": "mem",
  4024. "base": 4243193856,
  4025. "range": 32768,
  4026. "enabled": true,
  4027. "access": "read_write",
  4028. "prefetch": "no"
  4029. }
  4030. ],
  4031. "detail": {
  4032. "function": 0,
  4033. "command": 1030,
  4034. "header_type": 0,
  4035. "secondary_bus": 0,
  4036. "irq": 29,
  4037. "prog_if": 48
  4038. },
  4039. "driver": "xhci_hcd",
  4040. "driver_module": "xhci_pci",
  4041. "drivers": [
  4042. "xhci_hcd"
  4043. ],
  4044. "driver_modules": [
  4045. "xhci_pci"
  4046. ],
  4047. "module_alias": "pci:v00001022d000043EEsv00001B21sd00001142bc0Csc03i30"
  4048. },
  4049. {
  4050. "index": 35,
  4051. "attached_to": 34,
  4052. "class_list": [
  4053. "usb_controller",
  4054. "pci"
  4055. ],
  4056. "bus_type": {
  4057. "hex": "0004",
  4058. "name": "PCI",
  4059. "value": 4
  4060. },
  4061. "slot": {
  4062. "bus": 5,
  4063. "number": 0
  4064. },
  4065. "base_class": {
  4066. "hex": "000c",
  4067. "name": "Serial bus controller",
  4068. "value": 12
  4069. },
  4070. "sub_class": {
  4071. "hex": "0003",
  4072. "name": "USB Controller",
  4073. "value": 3
  4074. },
  4075. "pci_interface": {
  4076. "hex": "0030",
  4077. "value": 48
  4078. },
  4079. "vendor": {
  4080. "hex": "1022",
  4081. "name": "AMD",
  4082. "value": 4130
  4083. },
  4084. "sub_vendor": {
  4085. "hex": "1849",
  4086. "value": 6217
  4087. },
  4088. "device": {
  4089. "hex": "1639",
  4090. "value": 5689
  4091. },
  4092. "sub_device": {
  4093. "hex": "ffff",
  4094. "value": 65535
  4095. },
  4096. "model": "AMD USB Controller",
  4097. "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:05:00.4",
  4098. "sysfs_bus_id": "0000:05:00.4",
  4099. "resources": [
  4100. {
  4101. "type": "irq",
  4102. "base": 28,
  4103. "triggered": 0,
  4104. "enabled": true
  4105. },
  4106. {
  4107. "type": "mem",
  4108. "base": 4237295616,
  4109. "range": 1048576,
  4110. "enabled": true,
  4111. "access": "read_write",
  4112. "prefetch": "no"
  4113. }
  4114. ],
  4115. "detail": {
  4116. "function": 4,
  4117. "command": 1031,
  4118. "header_type": 0,
  4119. "secondary_bus": 0,
  4120. "irq": 28,
  4121. "prog_if": 48
  4122. },
  4123. "driver": "xhci_hcd",
  4124. "driver_module": "xhci_pci",
  4125. "drivers": [
  4126. "xhci_hcd"
  4127. ],
  4128. "driver_modules": [
  4129. "xhci_pci"
  4130. ],
  4131. "module_alias": "pci:v00001022d00001639sv00001849sd0000FFFFbc0Csc03i30"
  4132. }
  4133. ]
  4134. },
  4135. "smbios": {
  4136. "bios": {
  4137. "handle": 0,
  4138. "vendor": "American Megatrends International, LLC.",
  4139. "version": "P3.40",
  4140. "date": "01/18/2024",
  4141. "features": [
  4142. "PCI supported",
  4143. "BIOS flashable",
  4144. "BIOS shadowing allowed",
  4145. "CD boot supported",
  4146. "Selectable boot supported",
  4147. "BIOS ROM socketed",
  4148. "EDD spec supported",
  4149. "1.2MB NEC 9800 Japanese Floppy supported",
  4150. "1.2MB Toshiba Japanese Floppy supported",
  4151. "360kB Floppy supported",
  4152. "1.2MB Floppy supported",
  4153. "720kB Floppy supported",
  4154. "2.88MB Floppy supported",
  4155. "Print Screen supported",
  4156. "8042 Keyboard Services supported",
  4157. "Serial Services supported",
  4158. "Printer Services supported",
  4159. "CGA/Mono Video supported",
  4160. "ACPI supported",
  4161. "USB Legacy supported",
  4162. "BIOS Boot Spec supported"
  4163. ],
  4164. "start_address": "0xf0000",
  4165. "rom_size": 16777216
  4166. },
  4167. "board": {
  4168. "handle": 2,
  4169. "manufacturer": "ASRock",
  4170. "product": "B550M Pro4",
  4171. "version": "",
  4172. "board_type": {
  4173. "hex": "000a",
  4174. "name": "Motherboard",
  4175. "value": 10
  4176. },
  4177. "features": [
  4178. "Hosting Board",
  4179. "Replaceable"
  4180. ],
  4181. "location": "",
  4182. "chassis": 3
  4183. },
  4184. "cache": [
  4185. {
  4186. "handle": 18,
  4187. "socket": "L1 - Cache",
  4188. "size_max": 512,
  4189. "size_current": 512,
  4190. "speed": 1,
  4191. "mode": {
  4192. "hex": "0001",
  4193. "name": "Write Back",
  4194. "value": 1
  4195. },
  4196. "enabled": true,
  4197. "location": {
  4198. "hex": "0000",
  4199. "name": "Internal",
  4200. "value": 0
  4201. },
  4202. "socketed": false,
  4203. "level": 0,
  4204. "ecc": {
  4205. "hex": "0006",
  4206. "name": "Multi-bit",
  4207. "value": 6
  4208. },
  4209. "cache_type": {
  4210. "hex": "0005",
  4211. "name": "Unified",
  4212. "value": 5
  4213. },
  4214. "associativity": {
  4215. "hex": "0007",
  4216. "name": "8-way Set-Associative",
  4217. "value": 7
  4218. },
  4219. "sram_type_current": [
  4220. "Pipeline Burst"
  4221. ],
  4222. "sram_type_supported": [
  4223. "Pipeline Burst"
  4224. ]
  4225. },
  4226. {
  4227. "handle": 19,
  4228. "socket": "L2 - Cache",
  4229. "size_max": 4096,
  4230. "size_current": 4096,
  4231. "speed": 1,
  4232. "mode": {
  4233. "hex": "0001",
  4234. "name": "Write Back",
  4235. "value": 1
  4236. },
  4237. "enabled": true,
  4238. "location": {
  4239. "hex": "0000",
  4240. "name": "Internal",
  4241. "value": 0
  4242. },
  4243. "socketed": false,
  4244. "level": 1,
  4245. "ecc": {
  4246. "hex": "0006",
  4247. "name": "Multi-bit",
  4248. "value": 6
  4249. },
  4250. "cache_type": {
  4251. "hex": "0005",
  4252. "name": "Unified",
  4253. "value": 5
  4254. },
  4255. "associativity": {
  4256. "hex": "0007",
  4257. "name": "8-way Set-Associative",
  4258. "value": 7
  4259. },
  4260. "sram_type_current": [
  4261. "Pipeline Burst"
  4262. ],
  4263. "sram_type_supported": [
  4264. "Pipeline Burst"
  4265. ]
  4266. },
  4267. {
  4268. "handle": 20,
  4269. "socket": "L3 - Cache",
  4270. "size_max": 16384,
  4271. "size_current": 16384,
  4272. "speed": 1,
  4273. "mode": {
  4274. "hex": "0001",
  4275. "name": "Write Back",
  4276. "value": 1
  4277. },
  4278. "enabled": true,
  4279. "location": {
  4280. "hex": "0000",
  4281. "name": "Internal",
  4282. "value": 0
  4283. },
  4284. "socketed": false,
  4285. "level": 2,
  4286. "ecc": {
  4287. "hex": "0006",
  4288. "name": "Multi-bit",
  4289. "value": 6
  4290. },
  4291. "cache_type": {
  4292. "hex": "0005",
  4293. "name": "Unified",
  4294. "value": 5
  4295. },
  4296. "associativity": {
  4297. "hex": "0008",
  4298. "name": "16-way Set-Associative",
  4299. "value": 8
  4300. },
  4301. "sram_type_current": [
  4302. "Pipeline Burst"
  4303. ],
  4304. "sram_type_supported": [
  4305. "Pipeline Burst"
  4306. ]
  4307. }
  4308. ],
  4309. "chassis": [
  4310. {
  4311. "handle": 3,
  4312. "manufacturer": "To Be Filled By O.E.M.",
  4313. "version": "To Be Filled By O.E.M.",
  4314. "chassis_type": {
  4315. "hex": "0003",
  4316. "name": "Desktop",
  4317. "value": 3
  4318. },
  4319. "lock_present": false,
  4320. "bootup_state": {
  4321. "hex": "0003",
  4322. "name": "Safe",
  4323. "value": 3
  4324. },
  4325. "power_state": {
  4326. "hex": "0003",
  4327. "name": "Safe",
  4328. "value": 3
  4329. },
  4330. "thermal_state": {
  4331. "hex": "0003",
  4332. "name": "Safe",
  4333. "value": 3
  4334. },
  4335. "security_state": {
  4336. "hex": "0003",
  4337. "name": "None",
  4338. "value": 3
  4339. },
  4340. "oem": "0x0"
  4341. }
  4342. ],
  4343. "memory_array": [
  4344. {
  4345. "handle": 16,
  4346. "location": {
  4347. "hex": "0003",
  4348. "name": "Motherboard",
  4349. "value": 3
  4350. },
  4351. "usage": {
  4352. "hex": "0003",
  4353. "name": "System memory",
  4354. "value": 3
  4355. },
  4356. "ecc": {
  4357. "hex": "0003",
  4358. "name": "None",
  4359. "value": 3
  4360. },
  4361. "max_size": "0x8000000",
  4362. "error_handle": 15,
  4363. "slots": 4
  4364. }
  4365. ],
  4366. "memory_array_mapped_address": [
  4367. {
  4368. "handle": 17,
  4369. "array_handle": 16,
  4370. "start_address": "0x0",
  4371. "end_address": "0x800000000",
  4372. "part_width": 2
  4373. }
  4374. ],
  4375. "memory_device": [
  4376. {
  4377. "handle": 23,
  4378. "location": "DIMM 0",
  4379. "bank_location": "P0 CHANNEL A",
  4380. "manufacturer": "Unknown",
  4381. "part_number": "Unknown",
  4382. "array_handle": 16,
  4383. "error_handle": 22,
  4384. "width": 0,
  4385. "ecc_bits": 0,
  4386. "size": 0,
  4387. "form_factor": {
  4388. "hex": "0002",
  4389. "name": "Unknown",
  4390. "value": 2
  4391. },
  4392. "set": 0,
  4393. "memory_type": {
  4394. "hex": "0002",
  4395. "name": "Unknown",
  4396. "value": 2
  4397. },
  4398. "memory_type_details": [
  4399. "Unknown"
  4400. ],
  4401. "speed": 0
  4402. },
  4403. {
  4404. "handle": 25,
  4405. "location": "DIMM 1",
  4406. "bank_location": "P0 CHANNEL A",
  4407. "manufacturer": "Micron Technology",
  4408. "part_number": "9ASF2G72AZ-3G2B1",
  4409. "array_handle": 16,
  4410. "error_handle": 24,
  4411. "width": 64,
  4412. "ecc_bits": 8,
  4413. "size": 16777216,
  4414. "form_factor": {
  4415. "hex": "0009",
  4416. "name": "DIMM",
  4417. "value": 9
  4418. },
  4419. "set": 0,
  4420. "memory_type": {
  4421. "hex": "001a",
  4422. "name": "Other",
  4423. "value": 26
  4424. },
  4425. "memory_type_details": [
  4426. "Synchronous"
  4427. ],
  4428. "speed": 3200
  4429. },
  4430. {
  4431. "handle": 28,
  4432. "location": "DIMM 0",
  4433. "bank_location": "P0 CHANNEL B",
  4434. "manufacturer": "Unknown",
  4435. "part_number": "Unknown",
  4436. "array_handle": 16,
  4437. "error_handle": 27,
  4438. "width": 0,
  4439. "ecc_bits": 0,
  4440. "size": 0,
  4441. "form_factor": {
  4442. "hex": "0002",
  4443. "name": "Unknown",
  4444. "value": 2
  4445. },
  4446. "set": 0,
  4447. "memory_type": {
  4448. "hex": "0002",
  4449. "name": "Unknown",
  4450. "value": 2
  4451. },
  4452. "memory_type_details": [
  4453. "Unknown"
  4454. ],
  4455. "speed": 0
  4456. },
  4457. {
  4458. "handle": 30,
  4459. "location": "DIMM 1",
  4460. "bank_location": "P0 CHANNEL B",
  4461. "manufacturer": "Micron Technology",
  4462. "part_number": "9ASF2G72AZ-3G2B1",
  4463. "array_handle": 16,
  4464. "error_handle": 29,
  4465. "width": 64,
  4466. "ecc_bits": 8,
  4467. "size": 16777216,
  4468. "form_factor": {
  4469. "hex": "0009",
  4470. "name": "DIMM",
  4471. "value": 9
  4472. },
  4473. "set": 0,
  4474. "memory_type": {
  4475. "hex": "001a",
  4476. "name": "Other",
  4477. "value": 26
  4478. },
  4479. "memory_type_details": [
  4480. "Synchronous"
  4481. ],
  4482. "speed": 3200
  4483. }
  4484. ],
  4485. "memory_device_mapped_address": [
  4486. {
  4487. "handle": 26,
  4488. "memory_device_handle": 25,
  4489. "array_map_handle": 17,
  4490. "start_address": "0x0",
  4491. "end_address": "0x800000000",
  4492. "row_position": 255,
  4493. "interleave_position": 255,
  4494. "interleave_depth": 255
  4495. },
  4496. {
  4497. "handle": 31,
  4498. "memory_device_handle": 30,
  4499. "array_map_handle": 17,
  4500. "start_address": "0x0",
  4501. "end_address": "0x800000000",
  4502. "row_position": 255,
  4503. "interleave_position": 255,
  4504. "interleave_depth": 255
  4505. }
  4506. ],
  4507. "memory_error": [
  4508. {
  4509. "handle": 15,
  4510. "error_type": {
  4511. "hex": "0003",
  4512. "name": "OK",
  4513. "value": 3
  4514. },
  4515. "granularity": {
  4516. "hex": "0002",
  4517. "name": "Unknown",
  4518. "value": 2
  4519. },
  4520. "operation": {
  4521. "hex": "0002",
  4522. "name": "Unknown",
  4523. "value": 2
  4524. },
  4525. "syndrome": 0,
  4526. "array_address": "0x80000000",
  4527. "device_address": "0x80000000",
  4528. "range": 2147483648
  4529. },
  4530. {
  4531. "handle": 22,
  4532. "error_type": {
  4533. "hex": "0003",
  4534. "name": "OK",
  4535. "value": 3
  4536. },
  4537. "granularity": {
  4538. "hex": "0002",
  4539. "name": "Unknown",
  4540. "value": 2
  4541. },
  4542. "operation": {
  4543. "hex": "0002",
  4544. "name": "Unknown",
  4545. "value": 2
  4546. },
  4547. "syndrome": 0,
  4548. "array_address": "0x80000000",
  4549. "device_address": "0x80000000",
  4550. "range": 2147483648
  4551. },
  4552. {
  4553. "handle": 24,
  4554. "error_type": {
  4555. "hex": "0003",
  4556. "name": "OK",
  4557. "value": 3
  4558. },
  4559. "granularity": {
  4560. "hex": "0002",
  4561. "name": "Unknown",
  4562. "value": 2
  4563. },
  4564. "operation": {
  4565. "hex": "0002",
  4566. "name": "Unknown",
  4567. "value": 2
  4568. },
  4569. "syndrome": 0,
  4570. "array_address": "0x80000000",
  4571. "device_address": "0x80000000",
  4572. "range": 2147483648
  4573. },
  4574. {
  4575. "handle": 27,
  4576. "error_type": {
  4577. "hex": "0003",
  4578. "name": "OK",
  4579. "value": 3
  4580. },
  4581. "granularity": {
  4582. "hex": "0002",
  4583. "name": "Unknown",
  4584. "value": 2
  4585. },
  4586. "operation": {
  4587. "hex": "0002",
  4588. "name": "Unknown",
  4589. "value": 2
  4590. },
  4591. "syndrome": 0,
  4592. "array_address": "0x80000000",
  4593. "device_address": "0x80000000",
  4594. "range": 2147483648
  4595. },
  4596. {
  4597. "handle": 29,
  4598. "error_type": {
  4599. "hex": "0003",
  4600. "name": "OK",
  4601. "value": 3
  4602. },
  4603. "granularity": {
  4604. "hex": "0002",
  4605. "name": "Unknown",
  4606. "value": 2
  4607. },
  4608. "operation": {
  4609. "hex": "0002",
  4610. "name": "Unknown",
  4611. "value": 2
  4612. },
  4613. "syndrome": 0,
  4614. "array_address": "0x80000000",
  4615. "device_address": "0x80000000",
  4616. "range": 2147483648
  4617. }
  4618. ],
  4619. "processor": [
  4620. {
  4621. "handle": 21,
  4622. "socket": "AM4",
  4623. "socket_type": {
  4624. "hex": "0031",
  4625. "name": "Other",
  4626. "value": 49
  4627. },
  4628. "socket_populated": true,
  4629. "manufacturer": "Advanced Micro Devices, Inc.",
  4630. "version": "AMD Ryzen 7 5700G with Radeon Graphics",
  4631. "part": "Unknown",
  4632. "processor_type": {
  4633. "hex": "0003",
  4634. "name": "CPU",
  4635. "value": 3
  4636. },
  4637. "processor_family": {
  4638. "hex": "006b",
  4639. "name": "Other",
  4640. "value": 107
  4641. },
  4642. "processor_status": {
  4643. "hex": "0001",
  4644. "name": "Enabled",
  4645. "value": 1
  4646. },
  4647. "clock_ext": 100,
  4648. "clock_max": 4650,
  4649. "cache_handle_l1": 18,
  4650. "cache_handle_l2": 19,
  4651. "cache_handle_l3": 20
  4652. }
  4653. ],
  4654. "slot": [
  4655. {
  4656. "handle": 4,
  4657. "designation": "J6B2",
  4658. "slot_type": {
  4659. "hex": "00a5",
  4660. "name": "Other",
  4661. "value": 165
  4662. },
  4663. "bus_width": {
  4664. "hex": "000d",
  4665. "name": "Other",
  4666. "value": 13
  4667. },
  4668. "usage": {
  4669. "hex": "0004",
  4670. "name": "In Use",
  4671. "value": 4
  4672. },
  4673. "length": {
  4674. "hex": "0004",
  4675. "name": "Long",
  4676. "value": 4
  4677. },
  4678. "id": 0,
  4679. "features": [
  4680. "3.3 V",
  4681. "Shared",
  4682. "PME#"
  4683. ]
  4684. },
  4685. {
  4686. "handle": 5,
  4687. "designation": "J6B1",
  4688. "slot_type": {
  4689. "hex": "00a5",
  4690. "name": "Other",
  4691. "value": 165
  4692. },
  4693. "bus_width": {
  4694. "hex": "0008",
  4695. "name": "Other",
  4696. "value": 8
  4697. },
  4698. "usage": {
  4699. "hex": "0004",
  4700. "name": "In Use",
  4701. "value": 4
  4702. },
  4703. "length": {
  4704. "hex": "0003",
  4705. "name": "Short",
  4706. "value": 3
  4707. },
  4708. "id": 1,
  4709. "features": [
  4710. "3.3 V",
  4711. "Shared",
  4712. "PME#"
  4713. ]
  4714. },
  4715. {
  4716. "handle": 6,
  4717. "designation": "J6D1",
  4718. "slot_type": {
  4719. "hex": "00a5",
  4720. "name": "Other",
  4721. "value": 165
  4722. },
  4723. "bus_width": {
  4724. "hex": "0008",
  4725. "name": "Other",
  4726. "value": 8
  4727. },
  4728. "usage": {
  4729. "hex": "0004",
  4730. "name": "In Use",
  4731. "value": 4
  4732. },
  4733. "length": {
  4734. "hex": "0003",
  4735. "name": "Short",
  4736. "value": 3
  4737. },
  4738. "id": 2,
  4739. "features": [
  4740. "3.3 V",
  4741. "Shared",
  4742. "PME#"
  4743. ]
  4744. },
  4745. {
  4746. "handle": 7,
  4747. "designation": "J7B1",
  4748. "slot_type": {
  4749. "hex": "00a5",
  4750. "name": "Other",
  4751. "value": 165
  4752. },
  4753. "bus_width": {
  4754. "hex": "0008",
  4755. "name": "Other",
  4756. "value": 8
  4757. },
  4758. "usage": {
  4759. "hex": "0004",
  4760. "name": "In Use",
  4761. "value": 4
  4762. },
  4763. "length": {
  4764. "hex": "0003",
  4765. "name": "Short",
  4766. "value": 3
  4767. },
  4768. "id": 3,
  4769. "features": [
  4770. "3.3 V",
  4771. "Shared",
  4772. "PME#"
  4773. ]
  4774. },
  4775. {
  4776. "handle": 8,
  4777. "designation": "J8B4",
  4778. "slot_type": {
  4779. "hex": "00a5",
  4780. "name": "Other",
  4781. "value": 165
  4782. },
  4783. "bus_width": {
  4784. "hex": "0008",
  4785. "name": "Other",
  4786. "value": 8
  4787. },
  4788. "usage": {
  4789. "hex": "0004",
  4790. "name": "In Use",
  4791. "value": 4
  4792. },
  4793. "length": {
  4794. "hex": "0003",
  4795. "name": "Short",
  4796. "value": 3
  4797. },
  4798. "id": 4,
  4799. "features": [
  4800. "3.3 V",
  4801. "Shared",
  4802. "PME#"
  4803. ]
  4804. },
  4805. {
  4806. "handle": 9,
  4807. "designation": "J8D1",
  4808. "slot_type": {
  4809. "hex": "00a5",
  4810. "name": "Other",
  4811. "value": 165
  4812. },
  4813. "bus_width": {
  4814. "hex": "0008",
  4815. "name": "Other",
  4816. "value": 8
  4817. },
  4818. "usage": {
  4819. "hex": "0004",
  4820. "name": "In Use",
  4821. "value": 4
  4822. },
  4823. "length": {
  4824. "hex": "0003",
  4825. "name": "Short",
  4826. "value": 3
  4827. },
  4828. "id": 5,
  4829. "features": [
  4830. "3.3 V",
  4831. "Shared",
  4832. "PME#"
  4833. ]
  4834. }
  4835. ],
  4836. "system": {
  4837. "handle": 1,
  4838. "manufacturer": "To Be Filled By O.E.M.",
  4839. "product": "B550M Pro4",
  4840. "version": "To Be Filled By O.E.M.",
  4841. "wake_up": {
  4842. "hex": "0006",
  4843. "name": "Power Switch",
  4844. "value": 6
  4845. }
  4846. }
  4847. }
  4848. }