Hi1620IortNoSmmu.asl 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740
  1. /*
  2. * Intel ACPI Component Architecture
  3. * iASL Compiler/Disassembler version 20151124-64
  4. * Copyright (c) 2018 Intel Corporation
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause-Patent
  7. *
  8. * Template for [IORT] ACPI Table (static data table)
  9. * Format: [ByteLength] FieldName : HexFieldValue
  10. */
  11. [0004] Signature : "IORT" [IO Remapping Table]
  12. [0004] Table Length : 01c8
  13. [0001] Revision : 00
  14. [0001] Checksum : BC
  15. [0006] Oem ID : "HISI " // ?
  16. [0008] Oem Table ID : "HIP08 " // ?
  17. [0004] Oem Revision : 00000000 // ?
  18. [0004] Asl Compiler ID : "INTL"
  19. [0004] Asl Compiler Revision : 20150410
  20. [0004] Node Count : 00000005 // ITS, SMMU and RC
  21. [0004] Node Offset : 00000034 // ?
  22. [0004] Reserved : 00000000
  23. [0004] Optional Padding : 00 00 00 00
  24. /* 0x34 ITS, for PCIe */
  25. /* Here we use the P680/Hi1620 ACPI table which includes MADT table to help to debuge */
  26. [0001] Type : 00
  27. [0002] Length : 0018
  28. [0001] Revision : 00
  29. [0004] Reserved : 00000000
  30. [0004] Mapping Count : 00000000 // ?
  31. [0004] Mapping Offset : 00000000 // ?
  32. [0004] ItsCount : 00000001 // ?
  33. [0004] Identifiers : 00000000 // how to refer to MADT ?
  34. /*0x4c RC 0 */
  35. [0001] Type : 02
  36. [0002] Length : 00A0
  37. [0001] Revision : 01
  38. [0004] Reserved : 00000000
  39. [0004] Mapping Count : 0000000C
  40. [0004] Mapping Offset : 00000024
  41. [0008] Memory Properties : [IORT Memory Access Properties]
  42. [0004] Cache Coherency : 00000001
  43. [0001] Hints (decoded below) : 00
  44. Transient : 0
  45. Write Allocate : 0
  46. Read Allocate : 0
  47. Override : 0
  48. [0002] Reserved : 0000
  49. [0001] Memory Flags (decoded below) : 00
  50. Coherency : 0
  51. Device Attribute : 0
  52. [0004] ATS Attribute : 00000000
  53. [0004] PCI Segment Number : 00000000 // should match with above MCFG
  54. Memory Size Limit : 00
  55. Reserved : 00000000
  56. /* BDF of pcie host 0 -> stream ID of pcie 0/1 SMMU */
  57. [0004] Input base : 00000000
  58. [0004] ID Count : 00004000 // the number of IDs in range
  59. [0004] Output Base : 00000000
  60. [0004] Output Reference : 00000034
  61. [0004] Flags (decoded below) : 00000000
  62. Single Mapping : 0
  63. /* BDF of pcie host 1 -> stream ID of pcie 0/1 SMMU */
  64. [0004] Input base : 00007b00
  65. [0004] ID Count : 00000100 // the number of IDs in range
  66. [0004] Output Base : 00007b00
  67. [0004] Output Reference : 00000034
  68. [0004] Flags (decoded below) : 00000000
  69. Single Mapping : 0
  70. /* BDF of pcie host 2 -> stream ID of pcie 0/1 ITS */
  71. [0004] Input base : 00007a00
  72. [0004] ID Count : 00000100 // the number of IDs in range
  73. [0004] Output Base : 00007a00
  74. [0004] Output Reference : 00000034
  75. [0004] Flags (decoded below) : 00000000
  76. Single Mapping : 0
  77. /* BDF of pcie host 3 -> stream ID of pcie 0/1 ITS */
  78. [0004] Input base : 00007800
  79. [0004] ID Count : 00000200 // the number of IDs in range
  80. [0004] Output Base : 00007800
  81. [0004] Output Reference : 00000034
  82. [0004] Flags (decoded below) : 00000000
  83. Single Mapping : 0
  84. /* BDF of pcie host 4 -> stream ID of pcie 4 SMMU */
  85. [0004] Input base : 00007c00
  86. [0004] ID Count : 00000200 // the number of IDs in range
  87. [0004] Output Base : 00007c00
  88. [0004] Output Reference : 00000034
  89. [0004] Flags (decoded below) : 00000000
  90. Single Mapping : 0
  91. /* BDF of pcie host 5 -> stream ID of pcie 5 SMMU */
  92. [0004] Input base : 00007400
  93. [0004] ID Count : 00000300 // the number of IDs in range
  94. [0004] Output Base : 00007400
  95. [0004] Output Reference : 00000034
  96. [0004] Flags (decoded below) : 00000000
  97. Single Mapping : 0
  98. /* BDF of pcie host 6 -> stream ID of pcie 6/7 SMMU */
  99. [0004] Input base : 00008000
  100. [0004] ID Count : 00002000 // the number of IDs in range
  101. [0004] Output Base : 00008000
  102. [0004] Output Reference : 00000034
  103. [0004] Flags (decoded below) : 00000000
  104. Single Mapping : 0
  105. /* BDF of pcie host 7 -> stream ID of pcie 6/7 SMMU */
  106. [0004] Input base : 0000BB00
  107. [0004] ID Count : 00000100 // the number of IDs in range
  108. [0004] Output Base : 0000BB00
  109. [0004] Output Reference : 00000034
  110. [0004] Flags (decoded below) : 00000000
  111. Single Mapping : 0
  112. /* BDF of pcie host 8 -> stream ID of pcie ITS */
  113. [0004] Input base : 0000BA00
  114. [0004] ID Count : 00000100 // the number of IDs in range
  115. [0004] Output Base : 0000BA00
  116. [0004] Output Reference : 00000034
  117. [0004] Flags (decoded below) : 00000000
  118. Single Mapping : 0
  119. /* BDF of pcie host 9 -> stream ID of pcie 0/1 ITS */
  120. [0004] Input base : 0000B800
  121. [0004] ID Count : 00000200 // the number of IDs in range
  122. [0004] Output Base : 0000B800
  123. [0004] Output Reference : 00000034
  124. [0004] Flags (decoded below) : 00000000
  125. Single Mapping : 0
  126. /* BDF of pcie host 10 -> stream ID of pcie 10 SMMU */
  127. [0004] Input base : 0000BC00
  128. [0004] ID Count : 00000200 // the number of IDs in range
  129. [0004] Output Base : 0000BC00
  130. [0004] Output Reference : 00000034
  131. [0004] Flags (decoded below) : 00000000
  132. Single Mapping : 0
  133. /* BDF of pcie host 11 -> stream ID of pcie 11 SMMU */
  134. [0004] Input base : 0000B400
  135. [0004] ID Count : 00000300 // the number of IDs in range
  136. [0004] Output Base : 0000B400
  137. [0004] Output Reference : 00000034
  138. [0004] Flags (decoded below) : 00000000
  139. Single Mapping : 0
  140. /* mbi-gen for S0-TB-L3T0, named component */
  141. [0001] Type : 01
  142. [0002] Length : 0046
  143. [0001] Revision : 00
  144. [0004] Reserved : 00000000
  145. [0004] Mapping Count : 00000001
  146. [0004] Mapping Offset : 00000032
  147. [0004] Node Flags : 00000000
  148. [0008] Memory Properties : [IORT Memory Access Properties]
  149. [0004] Cache Coherency : 00000000
  150. [0001] Hints (decoded below) : 00
  151. Transient : 0
  152. Write Allocate : 0
  153. Read Allocate : 0
  154. Override : 0
  155. [0002] Reserved : 0000
  156. [0001] Memory Flags (decoded below) : 00
  157. Coherency : 0
  158. Device Attribute : 0
  159. [0001] Memory Size Limit : 00
  160. [0016] Device Name : "\_SB_.MB30"
  161. [0004] Padding : 00 00 00 00
  162. [0004] Input base : 00000000
  163. [0004] ID Count : 00000001
  164. [0004] Output Base : 00007FD1 // PMU device id
  165. [0004] Output Reference : 00000034
  166. [0004] Flags (decoded below) : 00000001
  167. Single Mapping : 1
  168. /* mbi-gen for S0-TB-L3T1, named component */
  169. [0001] Type : 01
  170. [0002] Length : 0046
  171. [0001] Revision : 00
  172. [0004] Reserved : 00000000
  173. [0004] Mapping Count : 00000001
  174. [0004] Mapping Offset : 00000032
  175. [0004] Node Flags : 00000000
  176. [0008] Memory Properties : [IORT Memory Access Properties]
  177. [0004] Cache Coherency : 00000000
  178. [0001] Hints (decoded below) : 00
  179. Transient : 0
  180. Write Allocate : 0
  181. Read Allocate : 0
  182. Override : 0
  183. [0002] Reserved : 0000
  184. [0001] Memory Flags (decoded below) : 00
  185. Coherency : 0
  186. Device Attribute : 0
  187. [0001] Memory Size Limit : 00
  188. [0016] Device Name : "\_SB_.MB31"
  189. [0004] Padding : 00 00 00 00
  190. [0004] Input base : 00000000
  191. [0004] ID Count : 00000001
  192. [0004] Output Base : 00007FD2 // PMU device id
  193. [0004] Output Reference : 00000034
  194. [0004] Flags (decoded below) : 00000001
  195. Single Mapping : 1
  196. /* mbi-gen for S0-TB-L3T2, named component */
  197. [0001] Type : 01
  198. [0002] Length : 0046
  199. [0001] Revision : 00
  200. [0004] Reserved : 00000000
  201. [0004] Mapping Count : 00000001
  202. [0004] Mapping Offset : 00000032
  203. [0004] Node Flags : 00000000
  204. [0008] Memory Properties : [IORT Memory Access Properties]
  205. [0004] Cache Coherency : 00000000
  206. [0001] Hints (decoded below) : 00
  207. Transient : 0
  208. Write Allocate : 0
  209. Read Allocate : 0
  210. Override : 0
  211. [0002] Reserved : 0000
  212. [0001] Memory Flags (decoded below) : 00
  213. Coherency : 0
  214. Device Attribute : 0
  215. [0001] Memory Size Limit : 00
  216. [0016] Device Name : "\_SB_.MB32"
  217. [0004] Padding : 00 00 00 00
  218. [0004] Input base : 00000000
  219. [0004] ID Count : 00000001
  220. [0004] Output Base : 00007FD3 // PMU device id
  221. [0004] Output Reference : 00000034
  222. [0004] Flags (decoded below) : 00000001
  223. Single Mapping : 1
  224. /* mbi-gen for S0-TB-L3T3, named component */
  225. [0001] Type : 01
  226. [0002] Length : 0046
  227. [0001] Revision : 00
  228. [0004] Reserved : 00000000
  229. [0004] Mapping Count : 00000001
  230. [0004] Mapping Offset : 00000032
  231. [0004] Node Flags : 00000000
  232. [0008] Memory Properties : [IORT Memory Access Properties]
  233. [0004] Cache Coherency : 00000000
  234. [0001] Hints (decoded below) : 00
  235. Transient : 0
  236. Write Allocate : 0
  237. Read Allocate : 0
  238. Override : 0
  239. [0002] Reserved : 0000
  240. [0001] Memory Flags (decoded below) : 00
  241. Coherency : 0
  242. Device Attribute : 0
  243. [0001] Memory Size Limit : 00
  244. [0016] Device Name : "\_SB_.MB33"
  245. [0004] Padding : 00 00 00 00
  246. [0004] Input base : 00000000
  247. [0004] ID Count : 00000001
  248. [0004] Output Base : 00007FD4 // PMU device id
  249. [0004] Output Reference : 00000034
  250. [0004] Flags (decoded below) : 00000001
  251. Single Mapping : 1
  252. /* mbi-gen for S0-TB-L3T4, named component */
  253. [0001] Type : 01
  254. [0002] Length : 0046
  255. [0001] Revision : 00
  256. [0004] Reserved : 00000000
  257. [0004] Mapping Count : 00000001
  258. [0004] Mapping Offset : 00000032
  259. [0004] Node Flags : 00000000
  260. [0008] Memory Properties : [IORT Memory Access Properties]
  261. [0004] Cache Coherency : 00000000
  262. [0001] Hints (decoded below) : 00
  263. Transient : 0
  264. Write Allocate : 0
  265. Read Allocate : 0
  266. Override : 0
  267. [0002] Reserved : 0000
  268. [0001] Memory Flags (decoded below) : 00
  269. Coherency : 0
  270. Device Attribute : 0
  271. [0001] Memory Size Limit : 00
  272. [0016] Device Name : "\_SB_.MB34"
  273. [0004] Padding : 00 00 00 00
  274. [0004] Input base : 00000000
  275. [0004] ID Count : 00000001
  276. [0004] Output Base : 00007FD5 // PMU device id
  277. [0004] Output Reference : 00000034
  278. [0004] Flags (decoded below) : 00000001
  279. Single Mapping : 1
  280. /* mbi-gen for S0-TB-L3T5, named component */
  281. [0001] Type : 01
  282. [0002] Length : 0046
  283. [0001] Revision : 00
  284. [0004] Reserved : 00000000
  285. [0004] Mapping Count : 00000001
  286. [0004] Mapping Offset : 00000032
  287. [0004] Node Flags : 00000000
  288. [0008] Memory Properties : [IORT Memory Access Properties]
  289. [0004] Cache Coherency : 00000000
  290. [0001] Hints (decoded below) : 00
  291. Transient : 0
  292. Write Allocate : 0
  293. Read Allocate : 0
  294. Override : 0
  295. [0002] Reserved : 0000
  296. [0001] Memory Flags (decoded below) : 00
  297. Coherency : 0
  298. Device Attribute : 0
  299. [0001] Memory Size Limit : 00
  300. [0016] Device Name : "\_SB_.MB35"
  301. [0004] Padding : 00 00 00 00
  302. [0004] Input base : 00000000
  303. [0004] ID Count : 00000001
  304. [0004] Output Base : 00007FD6 // PMU device id
  305. [0004] Output Reference : 00000034
  306. [0004] Flags (decoded below) : 00000001
  307. Single Mapping : 1
  308. /* mbi-gen for S0-TB-DDRC0, named component */
  309. [0001] Type : 01
  310. [0002] Length : 0046
  311. [0001] Revision : 00
  312. [0004] Reserved : 00000000
  313. [0004] Mapping Count : 00000001
  314. [0004] Mapping Offset : 00000032
  315. [0004] Node Flags : 00000000
  316. [0008] Memory Properties : [IORT Memory Access Properties]
  317. [0004] Cache Coherency : 00000000
  318. [0001] Hints (decoded below) : 00
  319. Transient : 0
  320. Write Allocate : 0
  321. Read Allocate : 0
  322. Override : 0
  323. [0002] Reserved : 0000
  324. [0001] Memory Flags (decoded below) : 00
  325. Coherency : 0
  326. Device Attribute : 0
  327. [0001] Memory Size Limit : 00
  328. [0016] Device Name : "\_SB_.MB38"
  329. [0004] Padding : 00 00 00 00
  330. [0004] Input base : 00000000
  331. [0004] ID Count : 00000001
  332. [0004] Output Base : 00007FDD // PMU device id
  333. [0004] Output Reference : 00000034
  334. [0004] Flags (decoded below) : 00000001
  335. Single Mapping : 1
  336. /* mbi-gen for S0-TB-DDRC1, named component */
  337. [0001] Type : 01
  338. [0002] Length : 0046
  339. [0001] Revision : 00
  340. [0004] Reserved : 00000000
  341. [0004] Mapping Count : 00000001
  342. [0004] Mapping Offset : 00000032
  343. [0004] Node Flags : 00000000
  344. [0008] Memory Properties : [IORT Memory Access Properties]
  345. [0004] Cache Coherency : 00000000
  346. [0001] Hints (decoded below) : 00
  347. Transient : 0
  348. Write Allocate : 0
  349. Read Allocate : 0
  350. Override : 0
  351. [0002] Reserved : 0000
  352. [0001] Memory Flags (decoded below) : 00
  353. Coherency : 0
  354. Device Attribute : 0
  355. [0001] Memory Size Limit : 00
  356. [0016] Device Name : "\_SB_.MB39"
  357. [0004] Padding : 00 00 00 00
  358. [0004] Input base : 00000000
  359. [0004] ID Count : 00000001
  360. [0004] Output Base : 00007FDE // PMU device id
  361. [0004] Output Reference : 00000034
  362. [0004] Flags (decoded below) : 00000001
  363. Single Mapping : 1
  364. /* mbi-gen for S0-TB-DDRC2, named component */
  365. [0001] Type : 01
  366. [0002] Length : 0046
  367. [0001] Revision : 00
  368. [0004] Reserved : 00000000
  369. [0004] Mapping Count : 00000001
  370. [0004] Mapping Offset : 00000032
  371. [0004] Node Flags : 00000000
  372. [0008] Memory Properties : [IORT Memory Access Properties]
  373. [0004] Cache Coherency : 00000000
  374. [0001] Hints (decoded below) : 00
  375. Transient : 0
  376. Write Allocate : 0
  377. Read Allocate : 0
  378. Override : 0
  379. [0002] Reserved : 0000
  380. [0001] Memory Flags (decoded below) : 00
  381. Coherency : 0
  382. Device Attribute : 0
  383. [0001] Memory Size Limit : 00
  384. [0016] Device Name : "\_SB_.MB3A"
  385. [0004] Padding : 00 00 00 00
  386. [0004] Input base : 00000000
  387. [0004] ID Count : 00000001
  388. [0004] Output Base : 00007FDF // PMU device id
  389. [0004] Output Reference : 00000034
  390. [0004] Flags (decoded below) : 00000001
  391. Single Mapping : 1
  392. /* mbi-gen for S0-TB-DDRC3, named component */
  393. [0001] Type : 01
  394. [0002] Length : 0046
  395. [0001] Revision : 00
  396. [0004] Reserved : 00000000
  397. [0004] Mapping Count : 00000001
  398. [0004] Mapping Offset : 00000032
  399. [0004] Node Flags : 00000000
  400. [0008] Memory Properties : [IORT Memory Access Properties]
  401. [0004] Cache Coherency : 00000000
  402. [0001] Hints (decoded below) : 00
  403. Transient : 0
  404. Write Allocate : 0
  405. Read Allocate : 0
  406. Override : 0
  407. [0002] Reserved : 0000
  408. [0001] Memory Flags (decoded below) : 00
  409. Coherency : 0
  410. Device Attribute : 0
  411. [0001] Memory Size Limit : 00
  412. [0016] Device Name : "\_SB_.MB3B"
  413. [0004] Padding : 00 00 00 00
  414. [0004] Input base : 00000000
  415. [0004] ID Count : 00000001
  416. [0004] Output Base : 00007FC7 // PMU device id
  417. [0004] Output Reference : 00000034
  418. [0004] Flags (decoded below) : 00000001
  419. Single Mapping : 1
  420. /* mbi-gen for S0-TB-HHA0, named component */
  421. [0001] Type : 01
  422. [0002] Length : 0046
  423. [0001] Revision : 00
  424. [0004] Reserved : 00000000
  425. [0004] Mapping Count : 00000001
  426. [0004] Mapping Offset : 00000032
  427. [0004] Node Flags : 00000000
  428. [0008] Memory Properties : [IORT Memory Access Properties]
  429. [0004] Cache Coherency : 00000000
  430. [0001] Hints (decoded below) : 00
  431. Transient : 0
  432. Write Allocate : 0
  433. Read Allocate : 0
  434. Override : 0
  435. [0002] Reserved : 0000
  436. [0001] Memory Flags (decoded below) : 00
  437. Coherency : 0
  438. Device Attribute : 0
  439. [0001] Memory Size Limit : 00
  440. [0016] Device Name : "\_SB_.MB3C"
  441. [0004] Padding : 00 00 00 00
  442. [0004] Input base : 00000000
  443. [0004] ID Count : 00000001
  444. [0004] Output Base : 00007FC8 // PMU device id
  445. [0004] Output Reference : 00000034
  446. [0004] Flags (decoded below) : 00000001
  447. Single Mapping : 1
  448. /* mbi-gen for S0-TB-HHA1, named component */
  449. [0001] Type : 01
  450. [0002] Length : 0046
  451. [0001] Revision : 00
  452. [0004] Reserved : 00000000
  453. [0004] Mapping Count : 00000001
  454. [0004] Mapping Offset : 00000032
  455. [0004] Node Flags : 00000000
  456. [0008] Memory Properties : [IORT Memory Access Properties]
  457. [0004] Cache Coherency : 00000000
  458. [0001] Hints (decoded below) : 00
  459. Transient : 0
  460. Write Allocate : 0
  461. Read Allocate : 0
  462. Override : 0
  463. [0002] Reserved : 0000
  464. [0001] Memory Flags (decoded below) : 00
  465. Coherency : 0
  466. Device Attribute : 0
  467. [0001] Memory Size Limit : 00
  468. [0016] Device Name : "\_SB_.MB3D"
  469. [0004] Padding : 00 00 00 00
  470. [0004] Input base : 00000000
  471. [0004] ID Count : 00000001
  472. [0004] Output Base : 00007FC9 // PMU device id
  473. [0004] Output Reference : 00000034
  474. [0004] Flags (decoded below) : 00000001
  475. Single Mapping : 1
  476. /* mbi-gen for S0-TA-L3T0, named component */
  477. [0001] Type : 01
  478. [0002] Length : 0046
  479. [0001] Revision : 00
  480. [0004] Reserved : 00000000
  481. [0004] Mapping Count : 00000001
  482. [0004] Mapping Offset : 00000032
  483. [0004] Node Flags : 00000000
  484. [0008] Memory Properties : [IORT Memory Access Properties]
  485. [0004] Cache Coherency : 00000000
  486. [0001] Hints (decoded below) : 00
  487. Transient : 0
  488. Write Allocate : 0
  489. Read Allocate : 0
  490. Override : 0
  491. [0002] Reserved : 0000
  492. [0001] Memory Flags (decoded below) : 00
  493. Coherency : 0
  494. Device Attribute : 0
  495. [0001] Memory Size Limit : 00
  496. [0016] Device Name : "\_SB_.MB10"
  497. [0004] Padding : 00 00 00 00
  498. [0004] Input base : 00000000
  499. [0004] ID Count : 00000001
  500. [0004] Output Base : 00007F51 // PMU device id
  501. [0004] Output Reference : 00000034
  502. [0004] Flags (decoded below) : 00000001
  503. Single Mapping : 1
  504. /* mbi-gen for S0-TA-L3T1, named component */
  505. [0001] Type : 01
  506. [0002] Length : 0046
  507. [0001] Revision : 00
  508. [0004] Reserved : 00000000
  509. [0004] Mapping Count : 00000001
  510. [0004] Mapping Offset : 00000032
  511. [0004] Node Flags : 00000000
  512. [0008] Memory Properties : [IORT Memory Access Properties]
  513. [0004] Cache Coherency : 00000000
  514. [0001] Hints (decoded below) : 00
  515. Transient : 0
  516. Write Allocate : 0
  517. Read Allocate : 0
  518. Override : 0
  519. [0002] Reserved : 0000
  520. [0001] Memory Flags (decoded below) : 00
  521. Coherency : 0
  522. Device Attribute : 0
  523. [0001] Memory Size Limit : 00
  524. [0016] Device Name : "\_SB_.MB11"
  525. [0004] Padding : 00 00 00 00
  526. [0004] Input base : 00000000
  527. [0004] ID Count : 00000001
  528. [0004] Output Base : 00007F52 // PMU device id
  529. [0004] Output Reference : 00000034
  530. [0004] Flags (decoded below) : 00000001
  531. Single Mapping : 1
  532. /* mbi-gen for S0-TA-L3T2, named component */
  533. [0001] Type : 01
  534. [0002] Length : 0046
  535. [0001] Revision : 00
  536. [0004] Reserved : 00000000
  537. [0004] Mapping Count : 00000001
  538. [0004] Mapping Offset : 00000032
  539. [0004] Node Flags : 00000000
  540. [0008] Memory Properties : [IORT Memory Access Properties]
  541. [0004] Cache Coherency : 00000000
  542. [0001] Hints (decoded below) : 00
  543. Transient : 0
  544. Write Allocate : 0
  545. Read Allocate : 0
  546. Override : 0
  547. [0002] Reserved : 0000
  548. [0001] Memory Flags (decoded below) : 00
  549. Coherency : 0
  550. Device Attribute : 0
  551. [0001] Memory Size Limit : 00
  552. [0016] Device Name : "\_SB_.MB12"
  553. [0004] Padding : 00 00 00 00
  554. [0004] Input base : 00000000
  555. [0004] ID Count : 00000001
  556. [0004] Output Base : 00007F53 // PMU device id
  557. [0004] Output Reference : 00000034
  558. [0004] Flags (decoded below) : 00000001
  559. Single Mapping : 1
  560. /* mbi-gen for S0-TA-L3T3, named component */
  561. [0001] Type : 01
  562. [0002] Length : 0046
  563. [0001] Revision : 00
  564. [0004] Reserved : 00000000
  565. [0004] Mapping Count : 00000001
  566. [0004] Mapping Offset : 00000032
  567. [0004] Node Flags : 00000000
  568. [0008] Memory Properties : [IORT Memory Access Properties]
  569. [0004] Cache Coherency : 00000000
  570. [0001] Hints (decoded below) : 00
  571. Transient : 0
  572. Write Allocate : 0
  573. Read Allocate : 0
  574. Override : 0
  575. [0002] Reserved : 0000
  576. [0001] Memory Flags (decoded below) : 00
  577. Coherency : 0
  578. Device Attribute : 0
  579. [0001] Memory Size Limit : 00
  580. [0016] Device Name : "\_SB_.MB13"
  581. [0004] Padding : 00 00 00 00
  582. [0004] Input base : 00000000
  583. [0004] ID Count : 00000001
  584. [0004] Output Base : 00007F54 // PMU device id
  585. [0004] Output Reference : 00000034
  586. [0004] Flags (decoded below) : 00000001
  587. Single Mapping : 1
  588. /* mbi-gen for S0-TA-L3T4, named component */
  589. [0001] Type : 01
  590. [0002] Length : 0046
  591. [0001] Revision : 00
  592. [0004] Reserved : 00000000
  593. [0004] Mapping Count : 00000001
  594. [0004] Mapping Offset : 00000032
  595. [0004] Node Flags : 00000000
  596. [0008] Memory Properties : [IORT Memory Access Properties]
  597. [0004] Cache Coherency : 00000000
  598. [0001] Hints (decoded below) : 00
  599. Transient : 0
  600. Write Allocate : 0
  601. Read Allocate : 0
  602. Override : 0
  603. [0002] Reserved : 0000
  604. [0001] Memory Flags (decoded below) : 00
  605. Coherency : 0
  606. Device Attribute : 0
  607. [0001] Memory Size Limit : 00
  608. [0016] Device Name : "\_SB_.MB14"
  609. [0004] Padding : 00 00 00 00
  610. [0004] Input base : 00000000
  611. [0004] ID Count : 00000001
  612. [0004] Output Base : 00007F55 // PMU device id
  613. [0004] Output Reference : 00000034
  614. [0004] Flags (decoded below) : 00000001
  615. Single Mapping : 1
  616. /* mbi-gen for S0-TA-L3T5, named component */
  617. [0001] Type : 01
  618. [0002] Length : 0046
  619. [0001] Revision : 00
  620. [0004] Reserved : 00000000
  621. [0004] Mapping Count : 00000001
  622. [0004] Mapping Offset : 00000032
  623. [0004] Node Flags : 00000000
  624. [0008] Memory Properties : [IORT Memory Access Properties]
  625. [0004] Cache Coherency : 00000000
  626. [0001] Hints (decoded below) : 00
  627. Transient : 0
  628. Write Allocate : 0
  629. Read Allocate : 0
  630. Override : 0
  631. [0002] Reserved : 0000
  632. [0001] Memory Flags (decoded below) : 00
  633. Coherency : 0
  634. Device Attribute : 0
  635. [0001] Memory Size Limit : 00
  636. [0016] Device Name : "\_SB_.MB15"
  637. [0004] Padding : 00 00 00 00
  638. [0004] Input base : 00000000
  639. [0004] ID Count : 00000001
  640. [0004] Output Base : 00007F56 // PMU device id
  641. [0004] Output Reference : 00000034
  642. [0004] Flags (decoded below) : 00000001
  643. Single Mapping : 1
  644. /* mbi-gen for S0-TA-DDRC0, named component */
  645. [0001] Type : 01
  646. [0002] Length : 0046
  647. [0001] Revision : 00
  648. [0004] Reserved : 00000000
  649. [0004] Mapping Count : 00000001
  650. [0004] Mapping Offset : 00000032
  651. [0004] Node Flags : 00000000
  652. [0008] Memory Properties : [IORT Memory Access Properties]
  653. [0004] Cache Coherency : 00000000
  654. [0001] Hints (decoded below) : 00
  655. Transient : 0
  656. Write Allocate : 0
  657. Read Allocate : 0
  658. Override : 0
  659. [0002] Reserved : 0000
  660. [0001] Memory Flags (decoded below) : 00
  661. Coherency : 0
  662. Device Attribute : 0
  663. [0001] Memory Size Limit : 00
  664. [0016] Device Name : "\_SB_.MB18"
  665. [0004] Padding : 00 00 00 00
  666. [0004] Input base : 00000000
  667. [0004] ID Count : 00000001
  668. [0004] Output Base : 00007F5D // PMU device id
  669. [0004] Output Reference : 00000034
  670. [0004] Flags (decoded below) : 00000001
  671. Single Mapping : 1
  672. /* mbi-gen for S0-TA-DDRC1, named component */
  673. [0001] Type : 01
  674. [0002] Length : 0046
  675. [0001] Revision : 00
  676. [0004] Reserved : 00000000
  677. [0004] Mapping Count : 00000001
  678. [0004] Mapping Offset : 00000032
  679. [0004] Node Flags : 00000000
  680. [0008] Memory Properties : [IORT Memory Access Properties]
  681. [0004] Cache Coherency : 00000000
  682. [0001] Hints (decoded below) : 00
  683. Transient : 0
  684. Write Allocate : 0
  685. Read Allocate : 0
  686. Override : 0
  687. [0002] Reserved : 0000
  688. [0001] Memory Flags (decoded below) : 00
  689. Coherency : 0
  690. Device Attribute : 0
  691. [0001] Memory Size Limit : 00
  692. [0016] Device Name : "\_SB_.MB19"
  693. [0004] Padding : 00 00 00 00
  694. [0004] Input base : 00000000
  695. [0004] ID Count : 00000001
  696. [0004] Output Base : 00007F5E // PMU device id
  697. [0004] Output Reference : 00000034
  698. [0004] Flags (decoded below) : 00000001
  699. Single Mapping : 1
  700. /* mbi-gen for S0-TA-DDRC2, named component */
  701. [0001] Type : 01
  702. [0002] Length : 0046
  703. [0001] Revision : 00
  704. [0004] Reserved : 00000000
  705. [0004] Mapping Count : 00000001
  706. [0004] Mapping Offset : 00000032
  707. [0004] Node Flags : 00000000
  708. [0008] Memory Properties : [IORT Memory Access Properties]
  709. [0004] Cache Coherency : 00000000
  710. [0001] Hints (decoded below) : 00
  711. Transient : 0
  712. Write Allocate : 0
  713. Read Allocate : 0
  714. Override : 0
  715. [0002] Reserved : 0000
  716. [0001] Memory Flags (decoded below) : 00
  717. Coherency : 0
  718. Device Attribute : 0
  719. [0001] Memory Size Limit : 00
  720. [0016] Device Name : "\_SB_.MB1A"
  721. [0004] Padding : 00 00 00 00
  722. [0004] Input base : 00000000
  723. [0004] ID Count : 00000001
  724. [0004] Output Base : 00007F5F // PMU device id
  725. [0004] Output Reference : 00000034
  726. [0004] Flags (decoded below) : 00000001
  727. Single Mapping : 1
  728. /* mbi-gen for S0-TA-DDRC3, named component */
  729. [0001] Type : 01
  730. [0002] Length : 0046
  731. [0001] Revision : 00
  732. [0004] Reserved : 00000000
  733. [0004] Mapping Count : 00000001
  734. [0004] Mapping Offset : 00000032
  735. [0004] Node Flags : 00000000
  736. [0008] Memory Properties : [IORT Memory Access Properties]
  737. [0004] Cache Coherency : 00000000
  738. [0001] Hints (decoded below) : 00
  739. Transient : 0
  740. Write Allocate : 0
  741. Read Allocate : 0
  742. Override : 0
  743. [0002] Reserved : 0000
  744. [0001] Memory Flags (decoded below) : 00
  745. Coherency : 0
  746. Device Attribute : 0
  747. [0001] Memory Size Limit : 00
  748. [0016] Device Name : "\_SB_.MB1B"
  749. [0004] Padding : 00 00 00 00
  750. [0004] Input base : 00000000
  751. [0004] ID Count : 00000001
  752. [0004] Output Base : 00007F47 // PMU device id
  753. [0004] Output Reference : 00000034
  754. [0004] Flags (decoded below) : 00000001
  755. Single Mapping : 1
  756. /* mbi-gen for S0-TA-HHA0, named component */
  757. [0001] Type : 01
  758. [0002] Length : 0046
  759. [0001] Revision : 00
  760. [0004] Reserved : 00000000
  761. [0004] Mapping Count : 00000001
  762. [0004] Mapping Offset : 00000032
  763. [0004] Node Flags : 00000000
  764. [0008] Memory Properties : [IORT Memory Access Properties]
  765. [0004] Cache Coherency : 00000000
  766. [0001] Hints (decoded below) : 00
  767. Transient : 0
  768. Write Allocate : 0
  769. Read Allocate : 0
  770. Override : 0
  771. [0002] Reserved : 0000
  772. [0001] Memory Flags (decoded below) : 00
  773. Coherency : 0
  774. Device Attribute : 0
  775. [0001] Memory Size Limit : 00
  776. [0016] Device Name : "\_SB_.MB1C"
  777. [0004] Padding : 00 00 00 00
  778. [0004] Input base : 00000000
  779. [0004] ID Count : 00000001
  780. [0004] Output Base : 00007F48 // PMU device id
  781. [0004] Output Reference : 00000034
  782. [0004] Flags (decoded below) : 00000001
  783. Single Mapping : 1
  784. /* mbi-gen for S0-TA-HHA1, named component */
  785. [0001] Type : 01
  786. [0002] Length : 0046
  787. [0001] Revision : 00
  788. [0004] Reserved : 00000000
  789. [0004] Mapping Count : 00000001
  790. [0004] Mapping Offset : 00000032
  791. [0004] Node Flags : 00000000
  792. [0008] Memory Properties : [IORT Memory Access Properties]
  793. [0004] Cache Coherency : 00000000
  794. [0001] Hints (decoded below) : 00
  795. Transient : 0
  796. Write Allocate : 0
  797. Read Allocate : 0
  798. Override : 0
  799. [0002] Reserved : 0000
  800. [0001] Memory Flags (decoded below) : 00
  801. Coherency : 0
  802. Device Attribute : 0
  803. [0001] Memory Size Limit : 00
  804. [0016] Device Name : "\_SB_.MB1D"
  805. [0004] Padding : 00 00 00 00
  806. [0004] Input base : 00000000
  807. [0004] ID Count : 00000001
  808. [0004] Output Base : 00007F49 // PMU device id
  809. [0004] Output Reference : 00000034
  810. [0004] Flags (decoded below) : 00000001
  811. Single Mapping : 1
  812. /* mbi-gen for S1-TB-L3T0, named component */
  813. [0001] Type : 01
  814. [0002] Length : 0046
  815. [0001] Revision : 00
  816. [0004] Reserved : 00000000
  817. [0004] Mapping Count : 00000001
  818. [0004] Mapping Offset : 00000032
  819. [0004] Node Flags : 00000000
  820. [0008] Memory Properties : [IORT Memory Access Properties]
  821. [0004] Cache Coherency : 00000000
  822. [0001] Hints (decoded below) : 00
  823. Transient : 0
  824. Write Allocate : 0
  825. Read Allocate : 0
  826. Override : 0
  827. [0002] Reserved : 0000
  828. [0001] Memory Flags (decoded below) : 00
  829. Coherency : 0
  830. Device Attribute : 0
  831. [0001] Memory Size Limit : 00
  832. [0016] Device Name : "\_SB_.MB70"
  833. [0004] Padding : 00 00 00 00
  834. [0004] Input base : 00000000
  835. [0004] ID Count : 00000001
  836. [0004] Output Base : 0000BFD1 // PMU device id
  837. [0004] Output Reference : 00000034
  838. [0004] Flags (decoded below) : 00000001
  839. Single Mapping : 1
  840. /* mbi-gen for S1-TB-L3T1, named component */
  841. [0001] Type : 01
  842. [0002] Length : 0046
  843. [0001] Revision : 00
  844. [0004] Reserved : 00000000
  845. [0004] Mapping Count : 00000001
  846. [0004] Mapping Offset : 00000032
  847. [0004] Node Flags : 00000000
  848. [0008] Memory Properties : [IORT Memory Access Properties]
  849. [0004] Cache Coherency : 00000000
  850. [0001] Hints (decoded below) : 00
  851. Transient : 0
  852. Write Allocate : 0
  853. Read Allocate : 0
  854. Override : 0
  855. [0002] Reserved : 0000
  856. [0001] Memory Flags (decoded below) : 00
  857. Coherency : 0
  858. Device Attribute : 0
  859. [0001] Memory Size Limit : 00
  860. [0016] Device Name : "\_SB_.MB71"
  861. [0004] Padding : 00 00 00 00
  862. [0004] Input base : 00000000
  863. [0004] ID Count : 00000001
  864. [0004] Output Base : 0000BFD2 // PMU device id
  865. [0004] Output Reference : 00000034
  866. [0004] Flags (decoded below) : 00000001
  867. Single Mapping : 1
  868. /* mbi-gen for S1-TB-L3T2, named component */
  869. [0001] Type : 01
  870. [0002] Length : 0046
  871. [0001] Revision : 00
  872. [0004] Reserved : 00000000
  873. [0004] Mapping Count : 00000001
  874. [0004] Mapping Offset : 00000032
  875. [0004] Node Flags : 00000000
  876. [0008] Memory Properties : [IORT Memory Access Properties]
  877. [0004] Cache Coherency : 00000000
  878. [0001] Hints (decoded below) : 00
  879. Transient : 0
  880. Write Allocate : 0
  881. Read Allocate : 0
  882. Override : 0
  883. [0002] Reserved : 0000
  884. [0001] Memory Flags (decoded below) : 00
  885. Coherency : 0
  886. Device Attribute : 0
  887. [0001] Memory Size Limit : 00
  888. [0016] Device Name : "\_SB_.MB72"
  889. [0004] Padding : 00 00 00 00
  890. [0004] Input base : 00000000
  891. [0004] ID Count : 00000001
  892. [0004] Output Base : 0000BFD3 // PMU device id
  893. [0004] Output Reference : 00000034
  894. [0004] Flags (decoded below) : 00000001
  895. Single Mapping : 1
  896. /* mbi-gen for S1-TB-L3T3, named component */
  897. [0001] Type : 01
  898. [0002] Length : 0046
  899. [0001] Revision : 00
  900. [0004] Reserved : 00000000
  901. [0004] Mapping Count : 00000001
  902. [0004] Mapping Offset : 00000032
  903. [0004] Node Flags : 00000000
  904. [0008] Memory Properties : [IORT Memory Access Properties]
  905. [0004] Cache Coherency : 00000000
  906. [0001] Hints (decoded below) : 00
  907. Transient : 0
  908. Write Allocate : 0
  909. Read Allocate : 0
  910. Override : 0
  911. [0002] Reserved : 0000
  912. [0001] Memory Flags (decoded below) : 00
  913. Coherency : 0
  914. Device Attribute : 0
  915. [0001] Memory Size Limit : 00
  916. [0016] Device Name : "\_SB_.MB73"
  917. [0004] Padding : 00 00 00 00
  918. [0004] Input base : 00000000
  919. [0004] ID Count : 00000001
  920. [0004] Output Base : 0000BFD4 // PMU device id
  921. [0004] Output Reference : 00000034
  922. [0004] Flags (decoded below) : 00000001
  923. Single Mapping : 1
  924. /* mbi-gen for S1-TB-L3T4, named component */
  925. [0001] Type : 01
  926. [0002] Length : 0046
  927. [0001] Revision : 00
  928. [0004] Reserved : 00000000
  929. [0004] Mapping Count : 00000001
  930. [0004] Mapping Offset : 00000032
  931. [0004] Node Flags : 00000000
  932. [0008] Memory Properties : [IORT Memory Access Properties]
  933. [0004] Cache Coherency : 00000000
  934. [0001] Hints (decoded below) : 00
  935. Transient : 0
  936. Write Allocate : 0
  937. Read Allocate : 0
  938. Override : 0
  939. [0002] Reserved : 0000
  940. [0001] Memory Flags (decoded below) : 00
  941. Coherency : 0
  942. Device Attribute : 0
  943. [0001] Memory Size Limit : 00
  944. [0016] Device Name : "\_SB_.MB74"
  945. [0004] Padding : 00 00 00 00
  946. [0004] Input base : 00000000
  947. [0004] ID Count : 00000001
  948. [0004] Output Base : 0000BFD5 // PMU device id
  949. [0004] Output Reference : 00000034
  950. [0004] Flags (decoded below) : 00000001
  951. Single Mapping : 1
  952. /* mbi-gen for S1-TB-L3T5, named component */
  953. [0001] Type : 01
  954. [0002] Length : 0046
  955. [0001] Revision : 00
  956. [0004] Reserved : 00000000
  957. [0004] Mapping Count : 00000001
  958. [0004] Mapping Offset : 00000032
  959. [0004] Node Flags : 00000000
  960. [0008] Memory Properties : [IORT Memory Access Properties]
  961. [0004] Cache Coherency : 00000000
  962. [0001] Hints (decoded below) : 00
  963. Transient : 0
  964. Write Allocate : 0
  965. Read Allocate : 0
  966. Override : 0
  967. [0002] Reserved : 0000
  968. [0001] Memory Flags (decoded below) : 00
  969. Coherency : 0
  970. Device Attribute : 0
  971. [0001] Memory Size Limit : 00
  972. [0016] Device Name : "\_SB_.MB75"
  973. [0004] Padding : 00 00 00 00
  974. [0004] Input base : 00000000
  975. [0004] ID Count : 00000001
  976. [0004] Output Base : 0000BFD6 // PMU device id
  977. [0004] Output Reference : 00000034
  978. [0004] Flags (decoded below) : 00000001
  979. Single Mapping : 1
  980. /* mbi-gen for S1-TB-DDRC0, named component */
  981. [0001] Type : 01
  982. [0002] Length : 0046
  983. [0001] Revision : 00
  984. [0004] Reserved : 00000000
  985. [0004] Mapping Count : 00000001
  986. [0004] Mapping Offset : 00000032
  987. [0004] Node Flags : 00000000
  988. [0008] Memory Properties : [IORT Memory Access Properties]
  989. [0004] Cache Coherency : 00000000
  990. [0001] Hints (decoded below) : 00
  991. Transient : 0
  992. Write Allocate : 0
  993. Read Allocate : 0
  994. Override : 0
  995. [0002] Reserved : 0000
  996. [0001] Memory Flags (decoded below) : 00
  997. Coherency : 0
  998. Device Attribute : 0
  999. [0001] Memory Size Limit : 00
  1000. [0016] Device Name : "\_SB_.MB78"
  1001. [0004] Padding : 00 00 00 00
  1002. [0004] Input base : 00000000
  1003. [0004] ID Count : 00000001
  1004. [0004] Output Base : 0000BFDD // PMU device id
  1005. [0004] Output Reference : 00000034
  1006. [0004] Flags (decoded below) : 00000001
  1007. Single Mapping : 1
  1008. /* mbi-gen for S1-TB-DDRC1, named component */
  1009. [0001] Type : 01
  1010. [0002] Length : 0046
  1011. [0001] Revision : 00
  1012. [0004] Reserved : 00000000
  1013. [0004] Mapping Count : 00000001
  1014. [0004] Mapping Offset : 00000032
  1015. [0004] Node Flags : 00000000
  1016. [0008] Memory Properties : [IORT Memory Access Properties]
  1017. [0004] Cache Coherency : 00000000
  1018. [0001] Hints (decoded below) : 00
  1019. Transient : 0
  1020. Write Allocate : 0
  1021. Read Allocate : 0
  1022. Override : 0
  1023. [0002] Reserved : 0000
  1024. [0001] Memory Flags (decoded below) : 00
  1025. Coherency : 0
  1026. Device Attribute : 0
  1027. [0001] Memory Size Limit : 00
  1028. [0016] Device Name : "\_SB_.MB79"
  1029. [0004] Padding : 00 00 00 00
  1030. [0004] Input base : 00000000
  1031. [0004] ID Count : 00000001
  1032. [0004] Output Base : 0000BFDE // PMU device id
  1033. [0004] Output Reference : 00000034
  1034. [0004] Flags (decoded below) : 00000001
  1035. Single Mapping : 1
  1036. /* mbi-gen for S1-TB-DDRC2, named component */
  1037. [0001] Type : 01
  1038. [0002] Length : 0046
  1039. [0001] Revision : 00
  1040. [0004] Reserved : 00000000
  1041. [0004] Mapping Count : 00000001
  1042. [0004] Mapping Offset : 00000032
  1043. [0004] Node Flags : 00000000
  1044. [0008] Memory Properties : [IORT Memory Access Properties]
  1045. [0004] Cache Coherency : 00000000
  1046. [0001] Hints (decoded below) : 00
  1047. Transient : 0
  1048. Write Allocate : 0
  1049. Read Allocate : 0
  1050. Override : 0
  1051. [0002] Reserved : 0000
  1052. [0001] Memory Flags (decoded below) : 00
  1053. Coherency : 0
  1054. Device Attribute : 0
  1055. [0001] Memory Size Limit : 00
  1056. [0016] Device Name : "\_SB_.MB7A"
  1057. [0004] Padding : 00 00 00 00
  1058. [0004] Input base : 00000000
  1059. [0004] ID Count : 00000001
  1060. [0004] Output Base : 0000BFDF // PMU device id
  1061. [0004] Output Reference : 00000034
  1062. [0004] Flags (decoded below) : 00000001
  1063. Single Mapping : 1
  1064. /* mbi-gen for S1-TB-DDRC3, named component */
  1065. [0001] Type : 01
  1066. [0002] Length : 0046
  1067. [0001] Revision : 00
  1068. [0004] Reserved : 00000000
  1069. [0004] Mapping Count : 00000001
  1070. [0004] Mapping Offset : 00000032
  1071. [0004] Node Flags : 00000000
  1072. [0008] Memory Properties : [IORT Memory Access Properties]
  1073. [0004] Cache Coherency : 00000000
  1074. [0001] Hints (decoded below) : 00
  1075. Transient : 0
  1076. Write Allocate : 0
  1077. Read Allocate : 0
  1078. Override : 0
  1079. [0002] Reserved : 0000
  1080. [0001] Memory Flags (decoded below) : 00
  1081. Coherency : 0
  1082. Device Attribute : 0
  1083. [0001] Memory Size Limit : 00
  1084. [0016] Device Name : "\_SB_.MB7B"
  1085. [0004] Padding : 00 00 00 00
  1086. [0004] Input base : 00000000
  1087. [0004] ID Count : 00000001
  1088. [0004] Output Base : 0000BFC7 // PMU device id
  1089. [0004] Output Reference : 00000034
  1090. [0004] Flags (decoded below) : 00000001
  1091. Single Mapping : 1
  1092. /* mbi-gen for S1-TB-HHA0, named component */
  1093. [0001] Type : 01
  1094. [0002] Length : 0046
  1095. [0001] Revision : 00
  1096. [0004] Reserved : 00000000
  1097. [0004] Mapping Count : 00000001
  1098. [0004] Mapping Offset : 00000032
  1099. [0004] Node Flags : 00000000
  1100. [0008] Memory Properties : [IORT Memory Access Properties]
  1101. [0004] Cache Coherency : 00000000
  1102. [0001] Hints (decoded below) : 00
  1103. Transient : 0
  1104. Write Allocate : 0
  1105. Read Allocate : 0
  1106. Override : 0
  1107. [0002] Reserved : 0000
  1108. [0001] Memory Flags (decoded below) : 00
  1109. Coherency : 0
  1110. Device Attribute : 0
  1111. [0001] Memory Size Limit : 00
  1112. [0016] Device Name : "\_SB_.MB7C"
  1113. [0004] Padding : 00 00 00 00
  1114. [0004] Input base : 00000000
  1115. [0004] ID Count : 00000001
  1116. [0004] Output Base : 0000BFC8 // PMU device id
  1117. [0004] Output Reference : 00000034
  1118. [0004] Flags (decoded below) : 00000001
  1119. Single Mapping : 1
  1120. /* mbi-gen for S1-TB-HHA1, named component */
  1121. [0001] Type : 01
  1122. [0002] Length : 0046
  1123. [0001] Revision : 00
  1124. [0004] Reserved : 00000000
  1125. [0004] Mapping Count : 00000001
  1126. [0004] Mapping Offset : 00000032
  1127. [0004] Node Flags : 00000000
  1128. [0008] Memory Properties : [IORT Memory Access Properties]
  1129. [0004] Cache Coherency : 00000000
  1130. [0001] Hints (decoded below) : 00
  1131. Transient : 0
  1132. Write Allocate : 0
  1133. Read Allocate : 0
  1134. Override : 0
  1135. [0002] Reserved : 0000
  1136. [0001] Memory Flags (decoded below) : 00
  1137. Coherency : 0
  1138. Device Attribute : 0
  1139. [0001] Memory Size Limit : 00
  1140. [0016] Device Name : "\_SB_.MB7D"
  1141. [0004] Padding : 00 00 00 00
  1142. [0004] Input base : 00000000
  1143. [0004] ID Count : 00000001
  1144. [0004] Output Base : 0000BFC9 // PMU device id
  1145. [0004] Output Reference : 00000034
  1146. [0004] Flags (decoded below) : 00000001
  1147. Single Mapping : 1
  1148. /* mbi-gen for S1-TA-L3T0, named component */
  1149. [0001] Type : 01
  1150. [0002] Length : 0046
  1151. [0001] Revision : 00
  1152. [0004] Reserved : 00000000
  1153. [0004] Mapping Count : 00000001
  1154. [0004] Mapping Offset : 00000032
  1155. [0004] Node Flags : 00000000
  1156. [0008] Memory Properties : [IORT Memory Access Properties]
  1157. [0004] Cache Coherency : 00000000
  1158. [0001] Hints (decoded below) : 00
  1159. Transient : 0
  1160. Write Allocate : 0
  1161. Read Allocate : 0
  1162. Override : 0
  1163. [0002] Reserved : 0000
  1164. [0001] Memory Flags (decoded below) : 00
  1165. Coherency : 0
  1166. Device Attribute : 0
  1167. [0001] Memory Size Limit : 00
  1168. [0016] Device Name : "\_SB_.MB50"
  1169. [0004] Padding : 00 00 00 00
  1170. [0004] Input base : 00000000
  1171. [0004] ID Count : 00000001
  1172. [0004] Output Base : 0000BF51 // PMU device id
  1173. [0004] Output Reference : 00000034
  1174. [0004] Flags (decoded below) : 00000001
  1175. Single Mapping : 1
  1176. /* mbi-gen for S1-TA-L3T1, named component */
  1177. [0001] Type : 01
  1178. [0002] Length : 0046
  1179. [0001] Revision : 00
  1180. [0004] Reserved : 00000000
  1181. [0004] Mapping Count : 00000001
  1182. [0004] Mapping Offset : 00000032
  1183. [0004] Node Flags : 00000000
  1184. [0008] Memory Properties : [IORT Memory Access Properties]
  1185. [0004] Cache Coherency : 00000000
  1186. [0001] Hints (decoded below) : 00
  1187. Transient : 0
  1188. Write Allocate : 0
  1189. Read Allocate : 0
  1190. Override : 0
  1191. [0002] Reserved : 0000
  1192. [0001] Memory Flags (decoded below) : 00
  1193. Coherency : 0
  1194. Device Attribute : 0
  1195. [0001] Memory Size Limit : 00
  1196. [0016] Device Name : "\_SB_.MB51"
  1197. [0004] Padding : 00 00 00 00
  1198. [0004] Input base : 00000000
  1199. [0004] ID Count : 00000001
  1200. [0004] Output Base : 0000BF52 // PMU device id
  1201. [0004] Output Reference : 00000034
  1202. [0004] Flags (decoded below) : 00000001
  1203. Single Mapping : 1
  1204. /* mbi-gen for S1-TA-L3T2, named component */
  1205. [0001] Type : 01
  1206. [0002] Length : 0046
  1207. [0001] Revision : 00
  1208. [0004] Reserved : 00000000
  1209. [0004] Mapping Count : 00000001
  1210. [0004] Mapping Offset : 00000032
  1211. [0004] Node Flags : 00000000
  1212. [0008] Memory Properties : [IORT Memory Access Properties]
  1213. [0004] Cache Coherency : 00000000
  1214. [0001] Hints (decoded below) : 00
  1215. Transient : 0
  1216. Write Allocate : 0
  1217. Read Allocate : 0
  1218. Override : 0
  1219. [0002] Reserved : 0000
  1220. [0001] Memory Flags (decoded below) : 00
  1221. Coherency : 0
  1222. Device Attribute : 0
  1223. [0001] Memory Size Limit : 00
  1224. [0016] Device Name : "\_SB_.MB52"
  1225. [0004] Padding : 00 00 00 00
  1226. [0004] Input base : 00000000
  1227. [0004] ID Count : 00000001
  1228. [0004] Output Base : 0000BF53 // PMU device id
  1229. [0004] Output Reference : 00000034
  1230. [0004] Flags (decoded below) : 00000001
  1231. Single Mapping : 1
  1232. /* mbi-gen for S1-TA-L3T3, named component */
  1233. [0001] Type : 01
  1234. [0002] Length : 0046
  1235. [0001] Revision : 00
  1236. [0004] Reserved : 00000000
  1237. [0004] Mapping Count : 00000001
  1238. [0004] Mapping Offset : 00000032
  1239. [0004] Node Flags : 00000000
  1240. [0008] Memory Properties : [IORT Memory Access Properties]
  1241. [0004] Cache Coherency : 00000000
  1242. [0001] Hints (decoded below) : 00
  1243. Transient : 0
  1244. Write Allocate : 0
  1245. Read Allocate : 0
  1246. Override : 0
  1247. [0002] Reserved : 0000
  1248. [0001] Memory Flags (decoded below) : 00
  1249. Coherency : 0
  1250. Device Attribute : 0
  1251. [0001] Memory Size Limit : 00
  1252. [0016] Device Name : "\_SB_.MB53"
  1253. [0004] Padding : 00 00 00 00
  1254. [0004] Input base : 00000000
  1255. [0004] ID Count : 00000001
  1256. [0004] Output Base : 0000BF54 // PMU device id
  1257. [0004] Output Reference : 00000034
  1258. [0004] Flags (decoded below) : 00000001
  1259. Single Mapping : 1
  1260. /* mbi-gen for S1-TA-L3T4, named component */
  1261. [0001] Type : 01
  1262. [0002] Length : 0046
  1263. [0001] Revision : 00
  1264. [0004] Reserved : 00000000
  1265. [0004] Mapping Count : 00000001
  1266. [0004] Mapping Offset : 00000032
  1267. [0004] Node Flags : 00000000
  1268. [0008] Memory Properties : [IORT Memory Access Properties]
  1269. [0004] Cache Coherency : 00000000
  1270. [0001] Hints (decoded below) : 00
  1271. Transient : 0
  1272. Write Allocate : 0
  1273. Read Allocate : 0
  1274. Override : 0
  1275. [0002] Reserved : 0000
  1276. [0001] Memory Flags (decoded below) : 00
  1277. Coherency : 0
  1278. Device Attribute : 0
  1279. [0001] Memory Size Limit : 00
  1280. [0016] Device Name : "\_SB_.MB54"
  1281. [0004] Padding : 00 00 00 00
  1282. [0004] Input base : 00000000
  1283. [0004] ID Count : 00000001
  1284. [0004] Output Base : 0000BF55 // PMU device id
  1285. [0004] Output Reference : 00000034
  1286. [0004] Flags (decoded below) : 00000001
  1287. Single Mapping : 1
  1288. /* mbi-gen for S1-TA-L3T5, named component */
  1289. [0001] Type : 01
  1290. [0002] Length : 0046
  1291. [0001] Revision : 00
  1292. [0004] Reserved : 00000000
  1293. [0004] Mapping Count : 00000001
  1294. [0004] Mapping Offset : 00000032
  1295. [0004] Node Flags : 00000000
  1296. [0008] Memory Properties : [IORT Memory Access Properties]
  1297. [0004] Cache Coherency : 00000000
  1298. [0001] Hints (decoded below) : 00
  1299. Transient : 0
  1300. Write Allocate : 0
  1301. Read Allocate : 0
  1302. Override : 0
  1303. [0002] Reserved : 0000
  1304. [0001] Memory Flags (decoded below) : 00
  1305. Coherency : 0
  1306. Device Attribute : 0
  1307. [0001] Memory Size Limit : 00
  1308. [0016] Device Name : "\_SB_.MB55"
  1309. [0004] Padding : 00 00 00 00
  1310. [0004] Input base : 00000000
  1311. [0004] ID Count : 00000001
  1312. [0004] Output Base : 0000BF56 // PMU device id
  1313. [0004] Output Reference : 00000034
  1314. [0004] Flags (decoded below) : 00000001
  1315. Single Mapping : 1
  1316. /* mbi-gen for S1-TA-DDRC0, named component */
  1317. [0001] Type : 01
  1318. [0002] Length : 0046
  1319. [0001] Revision : 00
  1320. [0004] Reserved : 00000000
  1321. [0004] Mapping Count : 00000001
  1322. [0004] Mapping Offset : 00000032
  1323. [0004] Node Flags : 00000000
  1324. [0008] Memory Properties : [IORT Memory Access Properties]
  1325. [0004] Cache Coherency : 00000000
  1326. [0001] Hints (decoded below) : 00
  1327. Transient : 0
  1328. Write Allocate : 0
  1329. Read Allocate : 0
  1330. Override : 0
  1331. [0002] Reserved : 0000
  1332. [0001] Memory Flags (decoded below) : 00
  1333. Coherency : 0
  1334. Device Attribute : 0
  1335. [0001] Memory Size Limit : 00
  1336. [0016] Device Name : "\_SB_.MB58"
  1337. [0004] Padding : 00 00 00 00
  1338. [0004] Input base : 00000000
  1339. [0004] ID Count : 00000001
  1340. [0004] Output Base : 0000BF5D // PMU device id
  1341. [0004] Output Reference : 00000034
  1342. [0004] Flags (decoded below) : 00000001
  1343. Single Mapping : 1
  1344. /* mbi-gen for S1-TA-DDRC1, named component */
  1345. [0001] Type : 01
  1346. [0002] Length : 0046
  1347. [0001] Revision : 00
  1348. [0004] Reserved : 00000000
  1349. [0004] Mapping Count : 00000001
  1350. [0004] Mapping Offset : 00000032
  1351. [0004] Node Flags : 00000000
  1352. [0008] Memory Properties : [IORT Memory Access Properties]
  1353. [0004] Cache Coherency : 00000000
  1354. [0001] Hints (decoded below) : 00
  1355. Transient : 0
  1356. Write Allocate : 0
  1357. Read Allocate : 0
  1358. Override : 0
  1359. [0002] Reserved : 0000
  1360. [0001] Memory Flags (decoded below) : 00
  1361. Coherency : 0
  1362. Device Attribute : 0
  1363. [0001] Memory Size Limit : 00
  1364. [0016] Device Name : "\_SB_.MB59"
  1365. [0004] Padding : 00 00 00 00
  1366. [0004] Input base : 00000000
  1367. [0004] ID Count : 00000001
  1368. [0004] Output Base : 0000BF5E // PMU device id
  1369. [0004] Output Reference : 00000034
  1370. [0004] Flags (decoded below) : 00000001
  1371. Single Mapping : 1
  1372. /* mbi-gen for S1-TA-DDRC2, named component */
  1373. [0001] Type : 01
  1374. [0002] Length : 0046
  1375. [0001] Revision : 00
  1376. [0004] Reserved : 00000000
  1377. [0004] Mapping Count : 00000001
  1378. [0004] Mapping Offset : 00000032
  1379. [0004] Node Flags : 00000000
  1380. [0008] Memory Properties : [IORT Memory Access Properties]
  1381. [0004] Cache Coherency : 00000000
  1382. [0001] Hints (decoded below) : 00
  1383. Transient : 0
  1384. Write Allocate : 0
  1385. Read Allocate : 0
  1386. Override : 0
  1387. [0002] Reserved : 0000
  1388. [0001] Memory Flags (decoded below) : 00
  1389. Coherency : 0
  1390. Device Attribute : 0
  1391. [0001] Memory Size Limit : 00
  1392. [0016] Device Name : "\_SB_.MB5A"
  1393. [0004] Padding : 00 00 00 00
  1394. [0004] Input base : 00000000
  1395. [0004] ID Count : 00000001
  1396. [0004] Output Base : 0000BF5F // PMU device id
  1397. [0004] Output Reference : 00000034
  1398. [0004] Flags (decoded below) : 00000001
  1399. Single Mapping : 1
  1400. /* mbi-gen for S1-TA-DDRC3, named component */
  1401. [0001] Type : 01
  1402. [0002] Length : 0046
  1403. [0001] Revision : 00
  1404. [0004] Reserved : 00000000
  1405. [0004] Mapping Count : 00000001
  1406. [0004] Mapping Offset : 00000032
  1407. [0004] Node Flags : 00000000
  1408. [0008] Memory Properties : [IORT Memory Access Properties]
  1409. [0004] Cache Coherency : 00000000
  1410. [0001] Hints (decoded below) : 00
  1411. Transient : 0
  1412. Write Allocate : 0
  1413. Read Allocate : 0
  1414. Override : 0
  1415. [0002] Reserved : 0000
  1416. [0001] Memory Flags (decoded below) : 00
  1417. Coherency : 0
  1418. Device Attribute : 0
  1419. [0001] Memory Size Limit : 00
  1420. [0016] Device Name : "\_SB_.MB5B"
  1421. [0004] Padding : 00 00 00 00
  1422. [0004] Input base : 00000000
  1423. [0004] ID Count : 00000001
  1424. [0004] Output Base : 0000BF47 // PMU device id
  1425. [0004] Output Reference : 00000034
  1426. [0004] Flags (decoded below) : 00000001
  1427. Single Mapping : 1
  1428. /* mbi-gen for S1-TA-HHA0, named component */
  1429. [0001] Type : 01
  1430. [0002] Length : 0046
  1431. [0001] Revision : 00
  1432. [0004] Reserved : 00000000
  1433. [0004] Mapping Count : 00000001
  1434. [0004] Mapping Offset : 00000032
  1435. [0004] Node Flags : 00000000
  1436. [0008] Memory Properties : [IORT Memory Access Properties]
  1437. [0004] Cache Coherency : 00000000
  1438. [0001] Hints (decoded below) : 00
  1439. Transient : 0
  1440. Write Allocate : 0
  1441. Read Allocate : 0
  1442. Override : 0
  1443. [0002] Reserved : 0000
  1444. [0001] Memory Flags (decoded below) : 00
  1445. Coherency : 0
  1446. Device Attribute : 0
  1447. [0001] Memory Size Limit : 00
  1448. [0016] Device Name : "\_SB_.MB5C"
  1449. [0004] Padding : 00 00 00 00
  1450. [0004] Input base : 00000000
  1451. [0004] ID Count : 00000001
  1452. [0004] Output Base : 0000BF48 // PMU device id
  1453. [0004] Output Reference : 00000034
  1454. [0004] Flags (decoded below) : 00000001
  1455. Single Mapping : 1
  1456. /* mbi-gen for S1-TA-HHA1, named component */
  1457. [0001] Type : 01
  1458. [0002] Length : 0046
  1459. [0001] Revision : 00
  1460. [0004] Reserved : 00000000
  1461. [0004] Mapping Count : 00000001
  1462. [0004] Mapping Offset : 00000032
  1463. [0004] Node Flags : 00000000
  1464. [0008] Memory Properties : [IORT Memory Access Properties]
  1465. [0004] Cache Coherency : 00000000
  1466. [0001] Hints (decoded below) : 00
  1467. Transient : 0
  1468. Write Allocate : 0
  1469. Read Allocate : 0
  1470. Override : 0
  1471. [0002] Reserved : 0000
  1472. [0001] Memory Flags (decoded below) : 00
  1473. Coherency : 0
  1474. Device Attribute : 0
  1475. [0001] Memory Size Limit : 00
  1476. [0016] Device Name : "\_SB_.MB5D"
  1477. [0004] Padding : 00 00 00 00
  1478. [0004] Input base : 00000000
  1479. [0004] ID Count : 00000001
  1480. [0004] Output Base : 0000BF49 // PMU device id
  1481. [0004] Output Reference : 00000034
  1482. [0004] Flags (decoded below) : 00000001
  1483. Single Mapping : 1
  1484. [320h 0800 1] Type : 01
  1485. [321h 0801 2] Length : 0054
  1486. [323h 0803 1] Revision : 00
  1487. [324h 0804 4] Reserved : 00000000
  1488. [328h 0808 4] Mapping Count : 00000001
  1489. [32Ch 0812 4] Mapping Offset : 00000040
  1490. [330h 0816 4] Node Flags : 00000000
  1491. [334h 0820 8] Memory Properties : [IORT Memory Access Properties]
  1492. [334h 0820 4] Cache Coherency : 00000000
  1493. [338h 0824 1] Hints (decoded below) : 00
  1494. Transient : 0
  1495. Write Allocate : 0
  1496. Read Allocate : 0
  1497. Override : 0
  1498. [339h 0825 2] Reserved : 0000
  1499. [33Bh 0827 1] Memory Flags (decoded below) : 00
  1500. Coherency : 0
  1501. Device Attribute : 0
  1502. [33Ch 0828 1] Memory Size Limit : 00
  1503. [33Dh 0829 11] Device Name : "\_SB_.SEC0"
  1504. [348h 0840 24] Padding : \
  1505. 00 00 00 00 00 00 00 00 01 00 00 00 80 00 04 00 \
  1506. 4C 00 00 00 01 00 00 00
  1507. [34Ch 0844 4] Input base : 00000000
  1508. [350h 0848 4] ID Count : 00000001
  1509. [354h 0852 4] Output Base : 00000100
  1510. [358h 0856 4] Output Reference : 00000034
  1511. [35Ch 0860 4] Flags (decoded below) : 00000001
  1512. Single Mapping : 1
  1513. /* RDE device report++.*/
  1514. [320h 0800 1] Type : 01
  1515. [321h 0801 2] Length : 0054
  1516. [323h 0803 1] Revision : 00
  1517. [324h 0804 4] Reserved : 00000000
  1518. [328h 0808 4] Mapping Count : 00000001
  1519. [32Ch 0812 4] Mapping Offset : 00000040
  1520. [330h 0816 4] Node Flags : 00000000
  1521. [334h 0820 8] Memory Properties : [IORT Memory Access Properties]
  1522. [334h 0820 4] Cache Coherency : 00000000
  1523. [338h 0824 1] Hints (decoded below) : 00
  1524. Transient : 0
  1525. Write Allocate : 0
  1526. Read Allocate : 0
  1527. Override : 0
  1528. [339h 0825 2] Reserved : 0000
  1529. [33Bh 0827 1] Memory Flags (decoded below) : 00
  1530. Coherency : 0
  1531. Device Attribute : 0
  1532. [33Ch 0828 1] Memory Size Limit : 00
  1533. [33Dh 0829 11] Device Name : "\_SB_.RDE0"
  1534. [348h 0840 24] Padding : \
  1535. 00 00 00 00 00 00 00 00 01 00 00 00 80 00 04 00 \
  1536. 4C 00 00 00 01 00 00 00
  1537. [34Ch 0844 4] Input base : 00000000
  1538. [350h 0848 4] ID Count : 00000001
  1539. [354h 0852 4] Output Base : 00007f13
  1540. [358h 0856 4] Output Reference : 00000034
  1541. [35Ch 0860 4] Flags (decoded below) : 00000001
  1542. Single Mapping : 1
  1543. /* mbi-gen for MCTP, named component */
  1544. [0001] Type : 01
  1545. [0002] Length : 0046
  1546. [0001] Revision : 00
  1547. [0004] Reserved : 00000000
  1548. [0004] Mapping Count : 00000001
  1549. [0004] Mapping Offset : 00000032
  1550. [0004] Node Flags : 00000000
  1551. [0008] Memory Properties : [IORT Memory Access Properties]
  1552. [0004] Cache Coherency : 00000000
  1553. [0001] Hints (decoded below) : 00
  1554. Transient : 0
  1555. Write Allocate : 0
  1556. Read Allocate : 0
  1557. Override : 0
  1558. [0002] Reserved : 0000
  1559. [0001] Memory Flags (decoded below) : 00
  1560. Coherency : 0
  1561. Device Attribute : 0
  1562. [0001] Memory Size Limit : 00
  1563. [0016] Device Name : "\_SB_.MBI4"
  1564. [0004] Padding : 00 00 00 00
  1565. [0004] Input base : 00000000
  1566. [0004] ID Count : 00000001
  1567. [0004] Output Base : 00007F18 // MCTP device id
  1568. [0004] Output Reference : 00000034
  1569. [0004] Flags (decoded below) : 00000001
  1570. Single Mapping : 1