atomfirmware.h 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. /****************************************************************************\
  2. *
  3. * File Name atomfirmware.h
  4. * Project This is an interface header file between atombios and OS GPU drivers for SoC15 products
  5. *
  6. * Description header file of general definitions for OS nd pre-OS video drivers
  7. *
  8. * Copyright 2014 Advanced Micro Devices, Inc.
  9. *
  10. * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
  11. * and associated documentation files (the "Software"), to deal in the Software without restriction,
  12. * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
  14. * subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be included in all copies or substantial
  17. * portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  22. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25. * OTHER DEALINGS IN THE SOFTWARE.
  26. *
  27. \****************************************************************************/
  28. /*IMPORTANT NOTES
  29. * If a change in VBIOS/Driver/Tool's interface is only needed for SoC15 and forward products, then the change is only needed in this atomfirmware.h header file.
  30. * If a change in VBIOS/Driver/Tool's interface is only needed for pre-SoC15 products, then the change is only needed in atombios.h header file.
  31. * If a change is needed for both pre and post SoC15 products, then the change has to be made separately and might be differently in both atomfirmware.h and atombios.h.
  32. */
  33. #ifndef _ATOMFIRMWARE_H_
  34. #define _ATOMFIRMWARE_H_
  35. enum atom_bios_header_version_def{
  36. ATOM_MAJOR_VERSION =0x0003,
  37. ATOM_MINOR_VERSION =0x0003,
  38. };
  39. #ifdef _H2INC
  40. #ifndef uint32_t
  41. typedef unsigned long uint32_t;
  42. #endif
  43. #ifndef uint16_t
  44. typedef unsigned short uint16_t;
  45. #endif
  46. #ifndef uint8_t
  47. typedef unsigned char uint8_t;
  48. #endif
  49. #endif
  50. enum atom_crtc_def{
  51. ATOM_CRTC1 =0,
  52. ATOM_CRTC2 =1,
  53. ATOM_CRTC3 =2,
  54. ATOM_CRTC4 =3,
  55. ATOM_CRTC5 =4,
  56. ATOM_CRTC6 =5,
  57. ATOM_CRTC_INVALID =0xff,
  58. };
  59. enum atom_ppll_def{
  60. ATOM_PPLL0 =2,
  61. ATOM_GCK_DFS =8,
  62. ATOM_FCH_CLK =9,
  63. ATOM_DP_DTO =11,
  64. ATOM_COMBOPHY_PLL0 =20,
  65. ATOM_COMBOPHY_PLL1 =21,
  66. ATOM_COMBOPHY_PLL2 =22,
  67. ATOM_COMBOPHY_PLL3 =23,
  68. ATOM_COMBOPHY_PLL4 =24,
  69. ATOM_COMBOPHY_PLL5 =25,
  70. ATOM_PPLL_INVALID =0xff,
  71. };
  72. // define ASIC internal encoder id ( bit vector ), used for CRTC_SourceSel
  73. enum atom_dig_def{
  74. ASIC_INT_DIG1_ENCODER_ID =0x03,
  75. ASIC_INT_DIG2_ENCODER_ID =0x09,
  76. ASIC_INT_DIG3_ENCODER_ID =0x0a,
  77. ASIC_INT_DIG4_ENCODER_ID =0x0b,
  78. ASIC_INT_DIG5_ENCODER_ID =0x0c,
  79. ASIC_INT_DIG6_ENCODER_ID =0x0d,
  80. ASIC_INT_DIG7_ENCODER_ID =0x0e,
  81. };
  82. //ucEncoderMode
  83. enum atom_encode_mode_def
  84. {
  85. ATOM_ENCODER_MODE_DP =0,
  86. ATOM_ENCODER_MODE_DP_SST =0,
  87. ATOM_ENCODER_MODE_LVDS =1,
  88. ATOM_ENCODER_MODE_DVI =2,
  89. ATOM_ENCODER_MODE_HDMI =3,
  90. ATOM_ENCODER_MODE_DP_AUDIO =5,
  91. ATOM_ENCODER_MODE_DP_MST =5,
  92. ATOM_ENCODER_MODE_CRT =15,
  93. ATOM_ENCODER_MODE_DVO =16,
  94. };
  95. enum atom_encoder_refclk_src_def{
  96. ENCODER_REFCLK_SRC_P1PLL =0,
  97. ENCODER_REFCLK_SRC_P2PLL =1,
  98. ENCODER_REFCLK_SRC_P3PLL =2,
  99. ENCODER_REFCLK_SRC_EXTCLK =3,
  100. ENCODER_REFCLK_SRC_INVALID =0xff,
  101. };
  102. enum atom_scaler_def{
  103. ATOM_SCALER_DISABLE =0, /*scaler bypass mode, auto-center & no replication*/
  104. ATOM_SCALER_CENTER =1, //For Fudo, it's bypass and auto-center & auto replication
  105. ATOM_SCALER_EXPANSION =2, /*scaler expansion by 2 tap alpha blending mode*/
  106. };
  107. enum atom_operation_def{
  108. ATOM_DISABLE = 0,
  109. ATOM_ENABLE = 1,
  110. ATOM_INIT = 7,
  111. ATOM_GET_STATUS = 8,
  112. };
  113. enum atom_embedded_display_op_def{
  114. ATOM_LCD_BL_OFF = 2,
  115. ATOM_LCD_BL_OM = 3,
  116. ATOM_LCD_BL_BRIGHTNESS_CONTROL = 4,
  117. ATOM_LCD_SELFTEST_START = 5,
  118. ATOM_LCD_SELFTEST_STOP = 6,
  119. };
  120. enum atom_spread_spectrum_mode{
  121. ATOM_SS_CENTER_OR_DOWN_MODE_MASK = 0x01,
  122. ATOM_SS_DOWN_SPREAD_MODE = 0x00,
  123. ATOM_SS_CENTRE_SPREAD_MODE = 0x01,
  124. ATOM_INT_OR_EXT_SS_MASK = 0x02,
  125. ATOM_INTERNAL_SS_MASK = 0x00,
  126. ATOM_EXTERNAL_SS_MASK = 0x02,
  127. };
  128. /* define panel bit per color */
  129. enum atom_panel_bit_per_color{
  130. PANEL_BPC_UNDEFINE =0x00,
  131. PANEL_6BIT_PER_COLOR =0x01,
  132. PANEL_8BIT_PER_COLOR =0x02,
  133. PANEL_10BIT_PER_COLOR =0x03,
  134. PANEL_12BIT_PER_COLOR =0x04,
  135. PANEL_16BIT_PER_COLOR =0x05,
  136. };
  137. //ucVoltageType
  138. enum atom_voltage_type
  139. {
  140. VOLTAGE_TYPE_VDDC = 1,
  141. VOLTAGE_TYPE_MVDDC = 2,
  142. VOLTAGE_TYPE_MVDDQ = 3,
  143. VOLTAGE_TYPE_VDDCI = 4,
  144. VOLTAGE_TYPE_VDDGFX = 5,
  145. VOLTAGE_TYPE_PCC = 6,
  146. VOLTAGE_TYPE_MVPP = 7,
  147. VOLTAGE_TYPE_LEDDPM = 8,
  148. VOLTAGE_TYPE_PCC_MVDD = 9,
  149. VOLTAGE_TYPE_PCIE_VDDC = 10,
  150. VOLTAGE_TYPE_PCIE_VDDR = 11,
  151. VOLTAGE_TYPE_GENERIC_I2C_1 = 0x11,
  152. VOLTAGE_TYPE_GENERIC_I2C_2 = 0x12,
  153. VOLTAGE_TYPE_GENERIC_I2C_3 = 0x13,
  154. VOLTAGE_TYPE_GENERIC_I2C_4 = 0x14,
  155. VOLTAGE_TYPE_GENERIC_I2C_5 = 0x15,
  156. VOLTAGE_TYPE_GENERIC_I2C_6 = 0x16,
  157. VOLTAGE_TYPE_GENERIC_I2C_7 = 0x17,
  158. VOLTAGE_TYPE_GENERIC_I2C_8 = 0x18,
  159. VOLTAGE_TYPE_GENERIC_I2C_9 = 0x19,
  160. VOLTAGE_TYPE_GENERIC_I2C_10 = 0x1A,
  161. };
  162. enum atom_dgpu_vram_type{
  163. ATOM_DGPU_VRAM_TYPE_GDDR5 = 0x50,
  164. ATOM_DGPU_VRAM_TYPE_HBM = 0x60,
  165. };
  166. enum atom_dp_vs_preemph_def{
  167. DP_VS_LEVEL0_PREEMPH_LEVEL0 = 0x00,
  168. DP_VS_LEVEL1_PREEMPH_LEVEL0 = 0x01,
  169. DP_VS_LEVEL2_PREEMPH_LEVEL0 = 0x02,
  170. DP_VS_LEVEL3_PREEMPH_LEVEL0 = 0x03,
  171. DP_VS_LEVEL0_PREEMPH_LEVEL1 = 0x08,
  172. DP_VS_LEVEL1_PREEMPH_LEVEL1 = 0x09,
  173. DP_VS_LEVEL2_PREEMPH_LEVEL1 = 0x0a,
  174. DP_VS_LEVEL0_PREEMPH_LEVEL2 = 0x10,
  175. DP_VS_LEVEL1_PREEMPH_LEVEL2 = 0x11,
  176. DP_VS_LEVEL0_PREEMPH_LEVEL3 = 0x18,
  177. };
  178. /*
  179. enum atom_string_def{
  180. asic_bus_type_pcie_string = "PCI_EXPRESS",
  181. atom_fire_gl_string = "FGL",
  182. atom_bios_string = "ATOM"
  183. };
  184. */
  185. #pragma pack(1) /* BIOS data must use byte aligment*/
  186. enum atombios_image_offset{
  187. OFFSET_TO_ATOM_ROM_HEADER_POINTER =0x00000048,
  188. OFFSET_TO_ATOM_ROM_IMAGE_SIZE =0x00000002,
  189. OFFSET_TO_ATOMBIOS_ASIC_BUS_MEM_TYPE =0x94,
  190. MAXSIZE_OF_ATOMBIOS_ASIC_BUS_MEM_TYPE =20, /*including the terminator 0x0!*/
  191. OFFSET_TO_GET_ATOMBIOS_NUMBER_OF_STRINGS =0x2f,
  192. OFFSET_TO_GET_ATOMBIOS_STRING_START =0x6e,
  193. };
  194. /****************************************************************************
  195. * Common header for all tables (Data table, Command function).
  196. * Every table pointed in _ATOM_MASTER_DATA_TABLE has this common header.
  197. * And the pointer actually points to this header.
  198. ****************************************************************************/
  199. struct atom_common_table_header
  200. {
  201. uint16_t structuresize;
  202. uint8_t format_revision; //mainly used for a hw function, when the parser is not backward compatible
  203. uint8_t content_revision; //change it when a data table has a structure change, or a hw function has a input/output parameter change
  204. };
  205. /****************************************************************************
  206. * Structure stores the ROM header.
  207. ****************************************************************************/
  208. struct atom_rom_header_v2_2
  209. {
  210. struct atom_common_table_header table_header;
  211. uint8_t atom_bios_string[4]; //enum atom_string_def atom_bios_string; //Signature to distinguish between Atombios and non-atombios,
  212. uint16_t bios_segment_address;
  213. uint16_t protectedmodeoffset;
  214. uint16_t configfilenameoffset;
  215. uint16_t crc_block_offset;
  216. uint16_t vbios_bootupmessageoffset;
  217. uint16_t int10_offset;
  218. uint16_t pcibusdevinitcode;
  219. uint16_t iobaseaddress;
  220. uint16_t subsystem_vendor_id;
  221. uint16_t subsystem_id;
  222. uint16_t pci_info_offset;
  223. uint16_t masterhwfunction_offset; //Offest for SW to get all command function offsets, Don't change the position
  224. uint16_t masterdatatable_offset; //Offest for SW to get all data table offsets, Don't change the position
  225. uint16_t reserved;
  226. uint32_t pspdirtableoffset;
  227. };
  228. /*==============================hw function portion======================================================================*/
  229. /****************************************************************************
  230. * Structures used in Command.mtb, each function name is not given here since those function could change from time to time
  231. * The real functionality of each function is associated with the parameter structure version when defined
  232. * For all internal cmd function definitions, please reference to atomstruct.h
  233. ****************************************************************************/
  234. struct atom_master_list_of_command_functions_v2_1{
  235. uint16_t asic_init; //Function
  236. uint16_t cmd_function1; //used as an internal one
  237. uint16_t cmd_function2; //used as an internal one
  238. uint16_t cmd_function3; //used as an internal one
  239. uint16_t digxencodercontrol; //Function
  240. uint16_t cmd_function5; //used as an internal one
  241. uint16_t cmd_function6; //used as an internal one
  242. uint16_t cmd_function7; //used as an internal one
  243. uint16_t cmd_function8; //used as an internal one
  244. uint16_t cmd_function9; //used as an internal one
  245. uint16_t setengineclock; //Function
  246. uint16_t setmemoryclock; //Function
  247. uint16_t setpixelclock; //Function
  248. uint16_t enabledisppowergating; //Function
  249. uint16_t cmd_function14; //used as an internal one
  250. uint16_t cmd_function15; //used as an internal one
  251. uint16_t cmd_function16; //used as an internal one
  252. uint16_t cmd_function17; //used as an internal one
  253. uint16_t cmd_function18; //used as an internal one
  254. uint16_t cmd_function19; //used as an internal one
  255. uint16_t cmd_function20; //used as an internal one
  256. uint16_t cmd_function21; //used as an internal one
  257. uint16_t cmd_function22; //used as an internal one
  258. uint16_t cmd_function23; //used as an internal one
  259. uint16_t cmd_function24; //used as an internal one
  260. uint16_t cmd_function25; //used as an internal one
  261. uint16_t cmd_function26; //used as an internal one
  262. uint16_t cmd_function27; //used as an internal one
  263. uint16_t cmd_function28; //used as an internal one
  264. uint16_t cmd_function29; //used as an internal one
  265. uint16_t cmd_function30; //used as an internal one
  266. uint16_t cmd_function31; //used as an internal one
  267. uint16_t cmd_function32; //used as an internal one
  268. uint16_t cmd_function33; //used as an internal one
  269. uint16_t blankcrtc; //Function
  270. uint16_t enablecrtc; //Function
  271. uint16_t cmd_function36; //used as an internal one
  272. uint16_t cmd_function37; //used as an internal one
  273. uint16_t cmd_function38; //used as an internal one
  274. uint16_t cmd_function39; //used as an internal one
  275. uint16_t cmd_function40; //used as an internal one
  276. uint16_t getsmuclockinfo; //Function
  277. uint16_t selectcrtc_source; //Function
  278. uint16_t cmd_function43; //used as an internal one
  279. uint16_t cmd_function44; //used as an internal one
  280. uint16_t cmd_function45; //used as an internal one
  281. uint16_t setdceclock; //Function
  282. uint16_t getmemoryclock; //Function
  283. uint16_t getengineclock; //Function
  284. uint16_t setcrtc_usingdtdtiming; //Function
  285. uint16_t externalencodercontrol; //Function
  286. uint16_t cmd_function51; //used as an internal one
  287. uint16_t cmd_function52; //used as an internal one
  288. uint16_t cmd_function53; //used as an internal one
  289. uint16_t processi2cchanneltransaction;//Function
  290. uint16_t cmd_function55; //used as an internal one
  291. uint16_t cmd_function56; //used as an internal one
  292. uint16_t cmd_function57; //used as an internal one
  293. uint16_t cmd_function58; //used as an internal one
  294. uint16_t cmd_function59; //used as an internal one
  295. uint16_t computegpuclockparam; //Function
  296. uint16_t cmd_function61; //used as an internal one
  297. uint16_t cmd_function62; //used as an internal one
  298. uint16_t dynamicmemorysettings; //Function function
  299. uint16_t memorytraining; //Function function
  300. uint16_t cmd_function65; //used as an internal one
  301. uint16_t cmd_function66; //used as an internal one
  302. uint16_t setvoltage; //Function
  303. uint16_t cmd_function68; //used as an internal one
  304. uint16_t readefusevalue; //Function
  305. uint16_t cmd_function70; //used as an internal one
  306. uint16_t cmd_function71; //used as an internal one
  307. uint16_t cmd_function72; //used as an internal one
  308. uint16_t cmd_function73; //used as an internal one
  309. uint16_t cmd_function74; //used as an internal one
  310. uint16_t cmd_function75; //used as an internal one
  311. uint16_t dig1transmittercontrol; //Function
  312. uint16_t cmd_function77; //used as an internal one
  313. uint16_t processauxchanneltransaction;//Function
  314. uint16_t cmd_function79; //used as an internal one
  315. uint16_t getvoltageinfo; //Function
  316. };
  317. struct atom_master_command_function_v2_1
  318. {
  319. struct atom_common_table_header table_header;
  320. struct atom_master_list_of_command_functions_v2_1 listofcmdfunctions;
  321. };
  322. /****************************************************************************
  323. * Structures used in every command function
  324. ****************************************************************************/
  325. struct atom_function_attribute
  326. {
  327. uint16_t ws_in_bytes:8; //[7:0]=Size of workspace in Bytes (in multiple of a dword),
  328. uint16_t ps_in_bytes:7; //[14:8]=Size of parameter space in Bytes (multiple of a dword),
  329. uint16_t updated_by_util:1; //[15]=flag to indicate the function is updated by util
  330. };
  331. /****************************************************************************
  332. * Common header for all hw functions.
  333. * Every function pointed by _master_list_of_hw_function has this common header.
  334. * And the pointer actually points to this header.
  335. ****************************************************************************/
  336. struct atom_rom_hw_function_header
  337. {
  338. struct atom_common_table_header func_header;
  339. struct atom_function_attribute func_attrib;
  340. };
  341. /*==============================sw data table portion======================================================================*/
  342. /****************************************************************************
  343. * Structures used in data.mtb, each data table name is not given here since those data table could change from time to time
  344. * The real name of each table is given when its data structure version is defined
  345. ****************************************************************************/
  346. struct atom_master_list_of_data_tables_v2_1{
  347. uint16_t utilitypipeline; /* Offest for the utility to get parser info,Don't change this position!*/
  348. uint16_t multimedia_info;
  349. uint16_t sw_datatable2;
  350. uint16_t sw_datatable3;
  351. uint16_t firmwareinfo; /* Shared by various SW components */
  352. uint16_t sw_datatable5;
  353. uint16_t lcd_info; /* Shared by various SW components */
  354. uint16_t sw_datatable7;
  355. uint16_t smu_info;
  356. uint16_t sw_datatable9;
  357. uint16_t sw_datatable10;
  358. uint16_t vram_usagebyfirmware; /* Shared by various SW components */
  359. uint16_t gpio_pin_lut; /* Shared by various SW components */
  360. uint16_t sw_datatable13;
  361. uint16_t gfx_info;
  362. uint16_t powerplayinfo; /* Shared by various SW components */
  363. uint16_t sw_datatable16;
  364. uint16_t sw_datatable17;
  365. uint16_t sw_datatable18;
  366. uint16_t sw_datatable19;
  367. uint16_t sw_datatable20;
  368. uint16_t sw_datatable21;
  369. uint16_t displayobjectinfo; /* Shared by various SW components */
  370. uint16_t indirectioaccess; /* used as an internal one */
  371. uint16_t umc_info; /* Shared by various SW components */
  372. uint16_t sw_datatable25;
  373. uint16_t sw_datatable26;
  374. uint16_t dce_info; /* Shared by various SW components */
  375. uint16_t vram_info; /* Shared by various SW components */
  376. uint16_t sw_datatable29;
  377. uint16_t integratedsysteminfo; /* Shared by various SW components */
  378. uint16_t asic_profiling_info; /* Shared by various SW components */
  379. uint16_t voltageobject_info; /* shared by various SW components */
  380. uint16_t sw_datatable33;
  381. uint16_t sw_datatable34;
  382. };
  383. struct atom_master_data_table_v2_1
  384. {
  385. struct atom_common_table_header table_header;
  386. struct atom_master_list_of_data_tables_v2_1 listOfdatatables;
  387. };
  388. struct atom_dtd_format
  389. {
  390. uint16_t pixclk;
  391. uint16_t h_active;
  392. uint16_t h_blanking_time;
  393. uint16_t v_active;
  394. uint16_t v_blanking_time;
  395. uint16_t h_sync_offset;
  396. uint16_t h_sync_width;
  397. uint16_t v_sync_offset;
  398. uint16_t v_syncwidth;
  399. uint16_t reserved;
  400. uint16_t reserved0;
  401. uint8_t h_border;
  402. uint8_t v_border;
  403. uint16_t miscinfo;
  404. uint8_t atom_mode_id;
  405. uint8_t refreshrate;
  406. };
  407. /* atom_dtd_format.modemiscinfo defintion */
  408. enum atom_dtd_format_modemiscinfo{
  409. ATOM_HSYNC_POLARITY = 0x0002,
  410. ATOM_VSYNC_POLARITY = 0x0004,
  411. ATOM_H_REPLICATIONBY2 = 0x0010,
  412. ATOM_V_REPLICATIONBY2 = 0x0020,
  413. ATOM_INTERLACE = 0x0080,
  414. ATOM_COMPOSITESYNC = 0x0040,
  415. };
  416. /* utilitypipeline
  417. * when format_revision==1 && content_revision==1, then this an info table for atomworks to use during debug session, no structure is associated with it.
  418. * the location of it can't change
  419. */
  420. /*
  421. ***************************************************************************
  422. Data Table firmwareinfo structure
  423. ***************************************************************************
  424. */
  425. struct atom_firmware_info_v3_1
  426. {
  427. struct atom_common_table_header table_header;
  428. uint32_t firmware_revision;
  429. uint32_t bootup_sclk_in10khz;
  430. uint32_t bootup_mclk_in10khz;
  431. uint32_t firmware_capability; // enum atombios_firmware_capability
  432. uint32_t main_call_parser_entry; /* direct address of main parser call in VBIOS binary. */
  433. uint32_t bios_scratch_reg_startaddr; // 1st bios scratch register dword address
  434. uint16_t bootup_vddc_mv;
  435. uint16_t bootup_vddci_mv;
  436. uint16_t bootup_mvddc_mv;
  437. uint16_t bootup_vddgfx_mv;
  438. uint8_t mem_module_id;
  439. uint8_t coolingsolution_id; /*0: Air cooling; 1: Liquid cooling ... */
  440. uint8_t reserved1[2];
  441. uint32_t mc_baseaddr_high;
  442. uint32_t mc_baseaddr_low;
  443. uint32_t reserved2[6];
  444. };
  445. /* Total 32bit cap indication */
  446. enum atombios_firmware_capability
  447. {
  448. ATOM_FIRMWARE_CAP_FIRMWARE_POSTED = 0x00000001,
  449. ATOM_FIRMWARE_CAP_GPU_VIRTUALIZATION = 0x00000002,
  450. ATOM_FIRMWARE_CAP_WMI_SUPPORT = 0x00000040,
  451. };
  452. enum atom_cooling_solution_id{
  453. AIR_COOLING = 0x00,
  454. LIQUID_COOLING = 0x01
  455. };
  456. /*
  457. ***************************************************************************
  458. Data Table lcd_info structure
  459. ***************************************************************************
  460. */
  461. struct lcd_info_v2_1
  462. {
  463. struct atom_common_table_header table_header;
  464. struct atom_dtd_format lcd_timing;
  465. uint16_t backlight_pwm;
  466. uint16_t special_handle_cap;
  467. uint16_t panel_misc;
  468. uint16_t lvds_max_slink_pclk;
  469. uint16_t lvds_ss_percentage;
  470. uint16_t lvds_ss_rate_10hz;
  471. uint8_t pwr_on_digon_to_de; /*all pwr sequence numbers below are in uint of 4ms*/
  472. uint8_t pwr_on_de_to_vary_bl;
  473. uint8_t pwr_down_vary_bloff_to_de;
  474. uint8_t pwr_down_de_to_digoff;
  475. uint8_t pwr_off_delay;
  476. uint8_t pwr_on_vary_bl_to_blon;
  477. uint8_t pwr_down_bloff_to_vary_bloff;
  478. uint8_t panel_bpc;
  479. uint8_t dpcd_edp_config_cap;
  480. uint8_t dpcd_max_link_rate;
  481. uint8_t dpcd_max_lane_count;
  482. uint8_t dpcd_max_downspread;
  483. uint8_t min_allowed_bl_level;
  484. uint8_t max_allowed_bl_level;
  485. uint8_t bootup_bl_level;
  486. uint8_t dplvdsrxid;
  487. uint32_t reserved1[8];
  488. };
  489. /* lcd_info_v2_1.panel_misc defintion */
  490. enum atom_lcd_info_panel_misc{
  491. ATOM_PANEL_MISC_FPDI =0x0002,
  492. };
  493. //uceDPToLVDSRxId
  494. enum atom_lcd_info_dptolvds_rx_id
  495. {
  496. eDP_TO_LVDS_RX_DISABLE = 0x00, // no eDP->LVDS translator chip
  497. eDP_TO_LVDS_COMMON_ID = 0x01, // common eDP->LVDS translator chip without AMD SW init
  498. eDP_TO_LVDS_REALTEK_ID = 0x02, // Realtek tansaltor which require AMD SW init
  499. };
  500. /*
  501. ***************************************************************************
  502. Data Table gpio_pin_lut structure
  503. ***************************************************************************
  504. */
  505. struct atom_gpio_pin_assignment
  506. {
  507. uint32_t data_a_reg_index;
  508. uint8_t gpio_bitshift;
  509. uint8_t gpio_mask_bitshift;
  510. uint8_t gpio_id;
  511. uint8_t reserved;
  512. };
  513. /* atom_gpio_pin_assignment.gpio_id definition */
  514. enum atom_gpio_pin_assignment_gpio_id {
  515. I2C_HW_LANE_MUX =0x0f, /* only valid when bit7=1 */
  516. I2C_HW_ENGINE_ID_MASK =0x70, /* only valid when bit7=1 */
  517. I2C_HW_CAP =0x80, /*only when the I2C_HW_CAP is set, the pin ID is assigned to an I2C pin pair, otherwise, it's an generic GPIO pin */
  518. /* gpio_id pre-define id for multiple usage */
  519. /* GPIO use to control PCIE_VDDC in certain SLT board */
  520. PCIE_VDDC_CONTROL_GPIO_PINID = 56,
  521. /* if PP_AC_DC_SWITCH_GPIO_PINID in Gpio_Pin_LutTable, AC/DC swithing feature is enable */
  522. PP_AC_DC_SWITCH_GPIO_PINID = 60,
  523. /* VDDC_REGULATOR_VRHOT_GPIO_PINID in Gpio_Pin_LutTable, VRHot feature is enable */
  524. VDDC_VRHOT_GPIO_PINID = 61,
  525. /*if VDDC_PCC_GPIO_PINID in GPIO_LUTable, Peak Current Control feature is enabled */
  526. VDDC_PCC_GPIO_PINID = 62,
  527. /* Only used on certain SLT/PA board to allow utility to cut Efuse. */
  528. EFUSE_CUT_ENABLE_GPIO_PINID = 63,
  529. /* ucGPIO=DRAM_SELF_REFRESH_GPIO_PIND uses for memory self refresh (ucGPIO=0, DRAM self-refresh; ucGPIO= */
  530. DRAM_SELF_REFRESH_GPIO_PINID = 64,
  531. /* Thermal interrupt output->system thermal chip GPIO pin */
  532. THERMAL_INT_OUTPUT_GPIO_PINID =65,
  533. };
  534. struct atom_gpio_pin_lut_v2_1
  535. {
  536. struct atom_common_table_header table_header;
  537. /*the real number of this included in the structure is calcualted by using the (whole structure size - the header size)/size of atom_gpio_pin_lut */
  538. struct atom_gpio_pin_assignment gpio_pin[8];
  539. };
  540. /*
  541. ***************************************************************************
  542. Data Table vram_usagebyfirmware structure
  543. ***************************************************************************
  544. */
  545. struct vram_usagebyfirmware_v2_1
  546. {
  547. struct atom_common_table_header table_header;
  548. uint32_t start_address_in_kb;
  549. uint16_t used_by_firmware_in_kb;
  550. uint16_t used_by_driver_in_kb;
  551. };
  552. /*
  553. ***************************************************************************
  554. Data Table displayobjectinfo structure
  555. ***************************************************************************
  556. */
  557. enum atom_object_record_type_id
  558. {
  559. ATOM_I2C_RECORD_TYPE =1,
  560. ATOM_HPD_INT_RECORD_TYPE =2,
  561. ATOM_OBJECT_GPIO_CNTL_RECORD_TYPE =9,
  562. ATOM_CONNECTOR_HPDPIN_LUT_RECORD_TYPE =16,
  563. ATOM_CONNECTOR_AUXDDC_LUT_RECORD_TYPE =17,
  564. ATOM_ENCODER_CAP_RECORD_TYPE=20,
  565. ATOM_BRACKET_LAYOUT_RECORD_TYPE=21,
  566. ATOM_CONNECTOR_FORCED_TMDS_CAP_RECORD_TYPE=22,
  567. ATOM_RECORD_END_TYPE =0xFF,
  568. };
  569. struct atom_common_record_header
  570. {
  571. uint8_t record_type; //An emun to indicate the record type
  572. uint8_t record_size; //The size of the whole record in byte
  573. };
  574. struct atom_i2c_record
  575. {
  576. struct atom_common_record_header record_header; //record_type = ATOM_I2C_RECORD_TYPE
  577. uint8_t i2c_id;
  578. uint8_t i2c_slave_addr; //The slave address, it's 0 when the record is attached to connector for DDC
  579. };
  580. struct atom_hpd_int_record
  581. {
  582. struct atom_common_record_header record_header; //record_type = ATOM_HPD_INT_RECORD_TYPE
  583. uint8_t pin_id; //Corresponding block in GPIO_PIN_INFO table gives the pin info
  584. uint8_t plugin_pin_state;
  585. };
  586. // Bit maps for ATOM_ENCODER_CAP_RECORD.usEncoderCap
  587. enum atom_encoder_caps_def
  588. {
  589. ATOM_ENCODER_CAP_RECORD_HBR2 =0x01, // DP1.2 HBR2 is supported by HW encoder, it is retired in NI. the real meaning from SI is MST_EN
  590. ATOM_ENCODER_CAP_RECORD_MST_EN =0x01, // from SI, this bit means DP MST is enable or not.
  591. ATOM_ENCODER_CAP_RECORD_HBR2_EN =0x02, // DP1.2 HBR2 setting is qualified and HBR2 can be enabled
  592. ATOM_ENCODER_CAP_RECORD_HDMI6Gbps_EN =0x04, // HDMI2.0 6Gbps enable or not.
  593. ATOM_ENCODER_CAP_RECORD_HBR3_EN =0x08, // DP1.3 HBR3 is supported by board.
  594. };
  595. struct atom_encoder_caps_record
  596. {
  597. struct atom_common_record_header record_header; //record_type = ATOM_ENCODER_CAP_RECORD_TYPE
  598. uint32_t encodercaps;
  599. };
  600. enum atom_connector_caps_def
  601. {
  602. ATOM_CONNECTOR_CAP_INTERNAL_DISPLAY = 0x01, //a cap bit to indicate that this non-embedded display connector is an internal display
  603. ATOM_CONNECTOR_CAP_INTERNAL_DISPLAY_BL = 0x02, //a cap bit to indicate that this internal display requires BL control from GPU, refers to lcd_info for BL PWM freq
  604. };
  605. struct atom_disp_connector_caps_record
  606. {
  607. struct atom_common_record_header record_header;
  608. uint32_t connectcaps;
  609. };
  610. //The following generic object gpio pin control record type will replace JTAG_RECORD/FPGA_CONTROL_RECORD/DVI_EXT_INPUT_RECORD above gradually
  611. struct atom_gpio_pin_control_pair
  612. {
  613. uint8_t gpio_id; // GPIO_ID, find the corresponding ID in GPIO_LUT table
  614. uint8_t gpio_pinstate; // Pin state showing how to set-up the pin
  615. };
  616. struct atom_object_gpio_cntl_record
  617. {
  618. struct atom_common_record_header record_header;
  619. uint8_t flag; // Future expnadibility
  620. uint8_t number_of_pins; // Number of GPIO pins used to control the object
  621. struct atom_gpio_pin_control_pair gpio[1]; // the real gpio pin pair determined by number of pins ucNumberOfPins
  622. };
  623. //Definitions for GPIO pin state
  624. enum atom_gpio_pin_control_pinstate_def
  625. {
  626. GPIO_PIN_TYPE_INPUT = 0x00,
  627. GPIO_PIN_TYPE_OUTPUT = 0x10,
  628. GPIO_PIN_TYPE_HW_CONTROL = 0x20,
  629. //For GPIO_PIN_TYPE_OUTPUT the following is defined
  630. GPIO_PIN_OUTPUT_STATE_MASK = 0x01,
  631. GPIO_PIN_OUTPUT_STATE_SHIFT = 0,
  632. GPIO_PIN_STATE_ACTIVE_LOW = 0x0,
  633. GPIO_PIN_STATE_ACTIVE_HIGH = 0x1,
  634. };
  635. // Indexes to GPIO array in GLSync record
  636. // GLSync record is for Frame Lock/Gen Lock feature.
  637. enum atom_glsync_record_gpio_index_def
  638. {
  639. ATOM_GPIO_INDEX_GLSYNC_REFCLK = 0,
  640. ATOM_GPIO_INDEX_GLSYNC_HSYNC = 1,
  641. ATOM_GPIO_INDEX_GLSYNC_VSYNC = 2,
  642. ATOM_GPIO_INDEX_GLSYNC_SWAP_REQ = 3,
  643. ATOM_GPIO_INDEX_GLSYNC_SWAP_GNT = 4,
  644. ATOM_GPIO_INDEX_GLSYNC_INTERRUPT = 5,
  645. ATOM_GPIO_INDEX_GLSYNC_V_RESET = 6,
  646. ATOM_GPIO_INDEX_GLSYNC_SWAP_CNTL = 7,
  647. ATOM_GPIO_INDEX_GLSYNC_SWAP_SEL = 8,
  648. ATOM_GPIO_INDEX_GLSYNC_MAX = 9,
  649. };
  650. struct atom_connector_hpdpin_lut_record //record for ATOM_CONNECTOR_HPDPIN_LUT_RECORD_TYPE
  651. {
  652. struct atom_common_record_header record_header;
  653. uint8_t hpd_pin_map[8];
  654. };
  655. struct atom_connector_auxddc_lut_record //record for ATOM_CONNECTOR_AUXDDC_LUT_RECORD_TYPE
  656. {
  657. struct atom_common_record_header record_header;
  658. uint8_t aux_ddc_map[8];
  659. };
  660. struct atom_connector_forced_tmds_cap_record
  661. {
  662. struct atom_common_record_header record_header;
  663. // override TMDS capability on this connector when it operate in TMDS mode. usMaxTmdsClkRate = max TMDS Clock in Mhz/2.5
  664. uint8_t maxtmdsclkrate_in2_5mhz;
  665. uint8_t reserved;
  666. };
  667. struct atom_connector_layout_info
  668. {
  669. uint16_t connectorobjid;
  670. uint8_t connector_type;
  671. uint8_t position;
  672. };
  673. // define ATOM_CONNECTOR_LAYOUT_INFO.ucConnectorType to describe the display connector size
  674. enum atom_connector_layout_info_connector_type_def
  675. {
  676. CONNECTOR_TYPE_DVI_D = 1,
  677. CONNECTOR_TYPE_HDMI = 4,
  678. CONNECTOR_TYPE_DISPLAY_PORT = 5,
  679. CONNECTOR_TYPE_MINI_DISPLAY_PORT = 6,
  680. };
  681. struct atom_bracket_layout_record
  682. {
  683. struct atom_common_record_header record_header;
  684. uint8_t bracketlen;
  685. uint8_t bracketwidth;
  686. uint8_t conn_num;
  687. uint8_t reserved;
  688. struct atom_connector_layout_info conn_info[1];
  689. };
  690. enum atom_display_device_tag_def{
  691. ATOM_DISPLAY_LCD1_SUPPORT = 0x0002, //an embedded display is either an LVDS or eDP signal type of display
  692. ATOM_DISPLAY_DFP1_SUPPORT = 0x0008,
  693. ATOM_DISPLAY_DFP2_SUPPORT = 0x0080,
  694. ATOM_DISPLAY_DFP3_SUPPORT = 0x0200,
  695. ATOM_DISPLAY_DFP4_SUPPORT = 0x0400,
  696. ATOM_DISPLAY_DFP5_SUPPORT = 0x0800,
  697. ATOM_DISPLAY_DFP6_SUPPORT = 0x0040,
  698. ATOM_DISPLAY_DFPx_SUPPORT = 0x0ec8,
  699. };
  700. struct atom_display_object_path_v2
  701. {
  702. uint16_t display_objid; //Connector Object ID or Misc Object ID
  703. uint16_t disp_recordoffset;
  704. uint16_t encoderobjid; //first encoder closer to the connector, could be either an external or intenal encoder
  705. uint16_t extencoderobjid; //2nd encoder after the first encoder, from the connector point of view;
  706. uint16_t encoder_recordoffset;
  707. uint16_t extencoder_recordoffset;
  708. uint16_t device_tag; //a supported device vector, each display path starts with this.the paths are enumerated in the way of priority, a path appears first
  709. uint8_t priority_id;
  710. uint8_t reserved;
  711. };
  712. struct display_object_info_table_v1_4
  713. {
  714. struct atom_common_table_header table_header;
  715. uint16_t supporteddevices;
  716. uint8_t number_of_path;
  717. uint8_t reserved;
  718. struct atom_display_object_path_v2 display_path[8]; //the real number of this included in the structure is calculated by using the (whole structure size - the header size- number_of_path)/size of atom_display_object_path
  719. };
  720. /*
  721. ***************************************************************************
  722. Data Table dce_info structure
  723. ***************************************************************************
  724. */
  725. struct atom_display_controller_info_v4_1
  726. {
  727. struct atom_common_table_header table_header;
  728. uint32_t display_caps;
  729. uint32_t bootup_dispclk_10khz;
  730. uint16_t dce_refclk_10khz;
  731. uint16_t i2c_engine_refclk_10khz;
  732. uint16_t dvi_ss_percentage; // in unit of 0.001%
  733. uint16_t dvi_ss_rate_10hz;
  734. uint16_t hdmi_ss_percentage; // in unit of 0.001%
  735. uint16_t hdmi_ss_rate_10hz;
  736. uint16_t dp_ss_percentage; // in unit of 0.001%
  737. uint16_t dp_ss_rate_10hz;
  738. uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode
  739. uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode
  740. uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode
  741. uint8_t ss_reserved;
  742. uint8_t hardcode_mode_num; // a hardcode mode number defined in StandardVESA_TimingTable when a CRT or DFP EDID is not available
  743. uint8_t reserved1[3];
  744. uint16_t dpphy_refclk_10khz;
  745. uint16_t reserved2;
  746. uint8_t dceip_min_ver;
  747. uint8_t dceip_max_ver;
  748. uint8_t max_disp_pipe_num;
  749. uint8_t max_vbios_active_disp_pipe_num;
  750. uint8_t max_ppll_num;
  751. uint8_t max_disp_phy_num;
  752. uint8_t max_aux_pairs;
  753. uint8_t remotedisplayconfig;
  754. uint8_t reserved3[8];
  755. };
  756. struct atom_display_controller_info_v4_2
  757. {
  758. struct atom_common_table_header table_header;
  759. uint32_t display_caps;
  760. uint32_t bootup_dispclk_10khz;
  761. uint16_t dce_refclk_10khz;
  762. uint16_t i2c_engine_refclk_10khz;
  763. uint16_t dvi_ss_percentage; // in unit of 0.001%
  764. uint16_t dvi_ss_rate_10hz;
  765. uint16_t hdmi_ss_percentage; // in unit of 0.001%
  766. uint16_t hdmi_ss_rate_10hz;
  767. uint16_t dp_ss_percentage; // in unit of 0.001%
  768. uint16_t dp_ss_rate_10hz;
  769. uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode
  770. uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode
  771. uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode
  772. uint8_t ss_reserved;
  773. uint8_t dfp_hardcode_mode_num; // DFP hardcode mode number defined in StandardVESA_TimingTable when EDID is not available
  774. uint8_t dfp_hardcode_refreshrate;// DFP hardcode mode refreshrate defined in StandardVESA_TimingTable when EDID is not available
  775. uint8_t vga_hardcode_mode_num; // VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable
  776. uint8_t vga_hardcode_refreshrate;// VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable
  777. uint16_t dpphy_refclk_10khz;
  778. uint16_t reserved2;
  779. uint8_t dcnip_min_ver;
  780. uint8_t dcnip_max_ver;
  781. uint8_t max_disp_pipe_num;
  782. uint8_t max_vbios_active_disp_pipe_num;
  783. uint8_t max_ppll_num;
  784. uint8_t max_disp_phy_num;
  785. uint8_t max_aux_pairs;
  786. uint8_t remotedisplayconfig;
  787. uint8_t reserved3[8];
  788. };
  789. enum dce_info_caps_def
  790. {
  791. // only for VBIOS
  792. DCE_INFO_CAPS_FORCE_DISPDEV_CONNECTED =0x02,
  793. // only for VBIOS
  794. DCE_INFO_CAPS_DISABLE_DFP_DP_HBR2 =0x04,
  795. // only for VBIOS
  796. DCE_INFO_CAPS_ENABLE_INTERLAC_TIMING =0x08,
  797. };
  798. /*
  799. ***************************************************************************
  800. Data Table ATOM_EXTERNAL_DISPLAY_CONNECTION_INFO structure
  801. ***************************************************************************
  802. */
  803. struct atom_ext_display_path
  804. {
  805. uint16_t device_tag; //A bit vector to show what devices are supported
  806. uint16_t device_acpi_enum; //16bit device ACPI id.
  807. uint16_t connectorobjid; //A physical connector for displays to plug in, using object connector definitions
  808. uint8_t auxddclut_index; //An index into external AUX/DDC channel LUT
  809. uint8_t hpdlut_index; //An index into external HPD pin LUT
  810. uint16_t ext_encoder_objid; //external encoder object id
  811. uint8_t channelmapping; // if ucChannelMapping=0, using default one to one mapping
  812. uint8_t chpninvert; // bit vector for up to 8 lanes, =0: P and N is not invert, =1 P and N is inverted
  813. uint16_t caps;
  814. uint16_t reserved;
  815. };
  816. //usCaps
  817. enum ext_display_path_cap_def
  818. {
  819. EXT_DISPLAY_PATH_CAPS__HBR2_DISABLE =0x0001,
  820. EXT_DISPLAY_PATH_CAPS__DP_FIXED_VS_EN =0x0002,
  821. EXT_DISPLAY_PATH_CAPS__EXT_CHIP_MASK =0x007C,
  822. };
  823. struct atom_external_display_connection_info
  824. {
  825. struct atom_common_table_header table_header;
  826. uint8_t guid[16]; // a GUID is a 16 byte long string
  827. struct atom_ext_display_path path[7]; // total of fixed 7 entries.
  828. uint8_t checksum; // a simple Checksum of the sum of whole structure equal to 0x0.
  829. uint8_t stereopinid; // use for eDP panel
  830. uint8_t remotedisplayconfig;
  831. uint8_t edptolvdsrxid;
  832. uint8_t fixdpvoltageswing; // usCaps[1]=1, this indicate DP_LANE_SET value
  833. uint8_t reserved[3]; // for potential expansion
  834. };
  835. /*
  836. ***************************************************************************
  837. Data Table integratedsysteminfo structure
  838. ***************************************************************************
  839. */
  840. struct atom_camera_dphy_timing_param
  841. {
  842. uint8_t profile_id; // SENSOR_PROFILES
  843. uint32_t param;
  844. };
  845. struct atom_camera_dphy_elec_param
  846. {
  847. uint16_t param[3];
  848. };
  849. struct atom_camera_module_info
  850. {
  851. uint8_t module_id; // 0: Rear, 1: Front right of user, 2: Front left of user
  852. uint8_t module_name[8];
  853. struct atom_camera_dphy_timing_param timingparam[6]; // Exact number is under estimation and confirmation from sensor vendor
  854. };
  855. struct atom_camera_flashlight_info
  856. {
  857. uint8_t flashlight_id; // 0: Rear, 1: Front
  858. uint8_t name[8];
  859. };
  860. struct atom_camera_data
  861. {
  862. uint32_t versionCode;
  863. struct atom_camera_module_info cameraInfo[3]; // Assuming 3 camera sensors max
  864. struct atom_camera_flashlight_info flashInfo; // Assuming 1 flashlight max
  865. struct atom_camera_dphy_elec_param dphy_param;
  866. uint32_t crc_val; // CRC
  867. };
  868. struct atom_14nm_dpphy_dvihdmi_tuningset
  869. {
  870. uint32_t max_symclk_in10khz;
  871. uint8_t encoder_mode; //atom_encode_mode_def, =2: DVI, =3: HDMI mode
  872. uint8_t phy_sel; //bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf
  873. uint16_t margindeemph; //COMMON_MAR_DEEMPH_NOM[7:0]tx_margin_nom [15:8]deemph_gen1_nom
  874. uint8_t deemph_6db_4; //COMMON_SELDEEMPH60[31:24]deemph_6db_4
  875. uint8_t boostadj; //CMD_BUS_GLOBAL_FOR_TX_LANE0 [19:16]tx_boost_adj [20]tx_boost_en [23:22]tx_binary_ron_code_offset
  876. uint8_t tx_driver_fifty_ohms; //COMMON_ZCALCODE_CTRL[21].tx_driver_fifty_ohms
  877. uint8_t deemph_sel; //MARGIN_DEEMPH_LANE0.DEEMPH_SEL
  878. };
  879. struct atom_14nm_dpphy_dp_setting{
  880. uint8_t dp_vs_pemph_level; //enum of atom_dp_vs_preemph_def
  881. uint16_t margindeemph; //COMMON_MAR_DEEMPH_NOM[7:0]tx_margin_nom [15:8]deemph_gen1_nom
  882. uint8_t deemph_6db_4; //COMMON_SELDEEMPH60[31:24]deemph_6db_4
  883. uint8_t boostadj; //CMD_BUS_GLOBAL_FOR_TX_LANE0 [19:16]tx_boost_adj [20]tx_boost_en [23:22]tx_binary_ron_code_offset
  884. };
  885. struct atom_14nm_dpphy_dp_tuningset{
  886. uint8_t phy_sel; // bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf
  887. uint8_t version;
  888. uint16_t table_size; // size of atom_14nm_dpphy_dp_tuningset
  889. uint16_t reserved;
  890. struct atom_14nm_dpphy_dp_setting dptuning[10];
  891. };
  892. struct atom_14nm_dig_transmitter_info_header_v4_0{
  893. struct atom_common_table_header table_header;
  894. uint16_t pcie_phy_tmds_hdmi_macro_settings_offset; // offset of PCIEPhyTMDSHDMIMacroSettingsTbl
  895. uint16_t uniphy_vs_emph_lookup_table_offset; // offset of UniphyVSEmphLookUpTbl
  896. uint16_t uniphy_xbar_settings_table_offset; // offset of UniphyXbarSettingsTbl
  897. };
  898. struct atom_14nm_combphy_tmds_vs_set
  899. {
  900. uint8_t sym_clk;
  901. uint8_t dig_mode;
  902. uint8_t phy_sel;
  903. uint16_t common_mar_deemph_nom__margin_deemph_val;
  904. uint8_t common_seldeemph60__deemph_6db_4_val;
  905. uint8_t cmd_bus_global_for_tx_lane0__boostadj_val ;
  906. uint8_t common_zcalcode_ctrl__tx_driver_fifty_ohms_val;
  907. uint8_t margin_deemph_lane0__deemph_sel_val;
  908. };
  909. struct atom_integrated_system_info_v1_11
  910. {
  911. struct atom_common_table_header table_header;
  912. uint32_t vbios_misc; //enum of atom_system_vbiosmisc_def
  913. uint32_t gpucapinfo; //enum of atom_system_gpucapinf_def
  914. uint32_t system_config;
  915. uint32_t cpucapinfo;
  916. uint16_t gpuclk_ss_percentage; //unit of 0.001%, 1000 mean 1%
  917. uint16_t gpuclk_ss_type;
  918. uint16_t lvds_ss_percentage; //unit of 0.001%, 1000 mean 1%
  919. uint16_t lvds_ss_rate_10hz;
  920. uint16_t hdmi_ss_percentage; //unit of 0.001%, 1000 mean 1%
  921. uint16_t hdmi_ss_rate_10hz;
  922. uint16_t dvi_ss_percentage; //unit of 0.001%, 1000 mean 1%
  923. uint16_t dvi_ss_rate_10hz;
  924. uint16_t dpphy_override; // bit vector, enum of atom_sysinfo_dpphy_override_def
  925. uint16_t lvds_misc; // enum of atom_sys_info_lvds_misc_def
  926. uint16_t backlight_pwm_hz; // pwm frequency in hz
  927. uint8_t memorytype; // enum of atom_sys_mem_type
  928. uint8_t umachannelnumber; // number of memory channels
  929. uint8_t pwr_on_digon_to_de; /* all pwr sequence numbers below are in uint of 4ms */
  930. uint8_t pwr_on_de_to_vary_bl;
  931. uint8_t pwr_down_vary_bloff_to_de;
  932. uint8_t pwr_down_de_to_digoff;
  933. uint8_t pwr_off_delay;
  934. uint8_t pwr_on_vary_bl_to_blon;
  935. uint8_t pwr_down_bloff_to_vary_bloff;
  936. uint8_t min_allowed_bl_level;
  937. struct atom_external_display_connection_info extdispconninfo;
  938. struct atom_14nm_dpphy_dvihdmi_tuningset dvi_tuningset;
  939. struct atom_14nm_dpphy_dvihdmi_tuningset hdmi_tuningset;
  940. struct atom_14nm_dpphy_dvihdmi_tuningset hdmi6g_tuningset;
  941. struct atom_14nm_dpphy_dp_tuningset dp_tuningset;
  942. struct atom_14nm_dpphy_dp_tuningset dp_hbr3_tuningset;
  943. struct atom_camera_data camera_info;
  944. uint32_t reserved[138];
  945. };
  946. // system_config
  947. enum atom_system_vbiosmisc_def{
  948. INTEGRATED_SYSTEM_INFO__GET_EDID_CALLBACK_FUNC_SUPPORT = 0x01,
  949. };
  950. // gpucapinfo
  951. enum atom_system_gpucapinf_def{
  952. SYS_INFO_GPUCAPS__ENABEL_DFS_BYPASS = 0x10,
  953. };
  954. //dpphy_override
  955. enum atom_sysinfo_dpphy_override_def{
  956. ATOM_ENABLE_DVI_TUNINGSET = 0x01,
  957. ATOM_ENABLE_HDMI_TUNINGSET = 0x02,
  958. ATOM_ENABLE_HDMI6G_TUNINGSET = 0x04,
  959. ATOM_ENABLE_DP_TUNINGSET = 0x08,
  960. ATOM_ENABLE_DP_HBR3_TUNINGSET = 0x10,
  961. };
  962. //lvds_misc
  963. enum atom_sys_info_lvds_misc_def
  964. {
  965. SYS_INFO_LVDS_MISC_888_FPDI_MODE =0x01,
  966. SYS_INFO_LVDS_MISC_888_BPC_MODE =0x04,
  967. SYS_INFO_LVDS_MISC_OVERRIDE_EN =0x08,
  968. };
  969. //memorytype DMI Type 17 offset 12h - Memory Type
  970. enum atom_dmi_t17_mem_type_def{
  971. OtherMemType = 0x01, ///< Assign 01 to Other
  972. UnknownMemType, ///< Assign 02 to Unknown
  973. DramMemType, ///< Assign 03 to DRAM
  974. EdramMemType, ///< Assign 04 to EDRAM
  975. VramMemType, ///< Assign 05 to VRAM
  976. SramMemType, ///< Assign 06 to SRAM
  977. RamMemType, ///< Assign 07 to RAM
  978. RomMemType, ///< Assign 08 to ROM
  979. FlashMemType, ///< Assign 09 to Flash
  980. EepromMemType, ///< Assign 10 to EEPROM
  981. FepromMemType, ///< Assign 11 to FEPROM
  982. EpromMemType, ///< Assign 12 to EPROM
  983. CdramMemType, ///< Assign 13 to CDRAM
  984. ThreeDramMemType, ///< Assign 14 to 3DRAM
  985. SdramMemType, ///< Assign 15 to SDRAM
  986. SgramMemType, ///< Assign 16 to SGRAM
  987. RdramMemType, ///< Assign 17 to RDRAM
  988. DdrMemType, ///< Assign 18 to DDR
  989. Ddr2MemType, ///< Assign 19 to DDR2
  990. Ddr2FbdimmMemType, ///< Assign 20 to DDR2 FB-DIMM
  991. Ddr3MemType = 0x18, ///< Assign 24 to DDR3
  992. Fbd2MemType, ///< Assign 25 to FBD2
  993. Ddr4MemType, ///< Assign 26 to DDR4
  994. LpDdrMemType, ///< Assign 27 to LPDDR
  995. LpDdr2MemType, ///< Assign 28 to LPDDR2
  996. LpDdr3MemType, ///< Assign 29 to LPDDR3
  997. LpDdr4MemType, ///< Assign 30 to LPDDR4
  998. };
  999. // this Table is used starting from NL/AM, used by SBIOS and pass the IntegratedSystemInfoTable/PowerPlayInfoTable/SystemCameraInfoTable
  1000. struct atom_fusion_system_info_v4
  1001. {
  1002. struct atom_integrated_system_info_v1_11 sysinfo; // refer to ATOM_INTEGRATED_SYSTEM_INFO_V1_8 definition
  1003. uint32_t powerplayinfo[256]; // Reserve 1024 bytes space for PowerPlayInfoTable
  1004. };
  1005. /*
  1006. ***************************************************************************
  1007. Data Table gfx_info structure
  1008. ***************************************************************************
  1009. */
  1010. struct atom_gfx_info_v2_2
  1011. {
  1012. struct atom_common_table_header table_header;
  1013. uint8_t gfxip_min_ver;
  1014. uint8_t gfxip_max_ver;
  1015. uint8_t max_shader_engines;
  1016. uint8_t max_tile_pipes;
  1017. uint8_t max_cu_per_sh;
  1018. uint8_t max_sh_per_se;
  1019. uint8_t max_backends_per_se;
  1020. uint8_t max_texture_channel_caches;
  1021. uint32_t regaddr_cp_dma_src_addr;
  1022. uint32_t regaddr_cp_dma_src_addr_hi;
  1023. uint32_t regaddr_cp_dma_dst_addr;
  1024. uint32_t regaddr_cp_dma_dst_addr_hi;
  1025. uint32_t regaddr_cp_dma_command;
  1026. uint32_t regaddr_cp_status;
  1027. uint32_t regaddr_rlc_gpu_clock_32;
  1028. uint32_t rlc_gpu_timer_refclk;
  1029. };
  1030. /*
  1031. ***************************************************************************
  1032. Data Table smu_info structure
  1033. ***************************************************************************
  1034. */
  1035. struct atom_smu_info_v3_1
  1036. {
  1037. struct atom_common_table_header table_header;
  1038. uint8_t smuip_min_ver;
  1039. uint8_t smuip_max_ver;
  1040. uint8_t smu_rsd1;
  1041. uint8_t gpuclk_ss_mode; // enum of atom_spread_spectrum_mode
  1042. uint16_t sclk_ss_percentage;
  1043. uint16_t sclk_ss_rate_10hz;
  1044. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1045. uint16_t gpuclk_ss_rate_10hz;
  1046. uint32_t core_refclk_10khz;
  1047. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1048. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1049. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1050. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1051. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1052. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1053. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1054. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1055. };
  1056. /*
  1057. ***************************************************************************
  1058. Data Table asic_profiling_info structure
  1059. ***************************************************************************
  1060. */
  1061. struct atom_asic_profiling_info_v4_1
  1062. {
  1063. struct atom_common_table_header table_header;
  1064. uint32_t maxvddc;
  1065. uint32_t minvddc;
  1066. uint32_t avfs_meannsigma_acontant0;
  1067. uint32_t avfs_meannsigma_acontant1;
  1068. uint32_t avfs_meannsigma_acontant2;
  1069. uint16_t avfs_meannsigma_dc_tol_sigma;
  1070. uint16_t avfs_meannsigma_platform_mean;
  1071. uint16_t avfs_meannsigma_platform_sigma;
  1072. uint32_t gb_vdroop_table_cksoff_a0;
  1073. uint32_t gb_vdroop_table_cksoff_a1;
  1074. uint32_t gb_vdroop_table_cksoff_a2;
  1075. uint32_t gb_vdroop_table_ckson_a0;
  1076. uint32_t gb_vdroop_table_ckson_a1;
  1077. uint32_t gb_vdroop_table_ckson_a2;
  1078. uint32_t avfsgb_fuse_table_cksoff_m1;
  1079. uint16_t avfsgb_fuse_table_cksoff_m2;
  1080. uint32_t avfsgb_fuse_table_cksoff_b;
  1081. uint32_t avfsgb_fuse_table_ckson_m1;
  1082. uint16_t avfsgb_fuse_table_ckson_m2;
  1083. uint32_t avfsgb_fuse_table_ckson_b;
  1084. uint16_t max_voltage_0_25mv;
  1085. uint8_t enable_gb_vdroop_table_cksoff;
  1086. uint8_t enable_gb_vdroop_table_ckson;
  1087. uint8_t enable_gb_fuse_table_cksoff;
  1088. uint8_t enable_gb_fuse_table_ckson;
  1089. uint16_t psm_age_comfactor;
  1090. uint8_t enable_apply_avfs_cksoff_voltage;
  1091. uint8_t reserved;
  1092. uint32_t dispclk2gfxclk_a;
  1093. uint16_t dispclk2gfxclk_b;
  1094. uint32_t dispclk2gfxclk_c;
  1095. uint32_t pixclk2gfxclk_a;
  1096. uint16_t pixclk2gfxclk_b;
  1097. uint32_t pixclk2gfxclk_c;
  1098. uint32_t dcefclk2gfxclk_a;
  1099. uint16_t dcefclk2gfxclk_b;
  1100. uint32_t dcefclk2gfxclk_c;
  1101. uint32_t phyclk2gfxclk_a;
  1102. uint16_t phyclk2gfxclk_b;
  1103. uint32_t phyclk2gfxclk_c;
  1104. };
  1105. /*
  1106. ***************************************************************************
  1107. Data Table multimedia_info structure
  1108. ***************************************************************************
  1109. */
  1110. struct atom_multimedia_info_v2_1
  1111. {
  1112. struct atom_common_table_header table_header;
  1113. uint8_t uvdip_min_ver;
  1114. uint8_t uvdip_max_ver;
  1115. uint8_t vceip_min_ver;
  1116. uint8_t vceip_max_ver;
  1117. uint16_t uvd_enc_max_input_width_pixels;
  1118. uint16_t uvd_enc_max_input_height_pixels;
  1119. uint16_t vce_enc_max_input_width_pixels;
  1120. uint16_t vce_enc_max_input_height_pixels;
  1121. uint32_t uvd_enc_max_bandwidth; // 16x16 pixels/sec, codec independent
  1122. uint32_t vce_enc_max_bandwidth; // 16x16 pixels/sec, codec independent
  1123. };
  1124. /*
  1125. ***************************************************************************
  1126. Data Table umc_info structure
  1127. ***************************************************************************
  1128. */
  1129. struct atom_umc_info_v3_1
  1130. {
  1131. struct atom_common_table_header table_header;
  1132. uint32_t ucode_version;
  1133. uint32_t ucode_rom_startaddr;
  1134. uint32_t ucode_length;
  1135. uint16_t umc_reg_init_offset;
  1136. uint16_t customer_ucode_name_offset;
  1137. uint16_t mclk_ss_percentage;
  1138. uint16_t mclk_ss_rate_10hz;
  1139. uint8_t umcip_min_ver;
  1140. uint8_t umcip_max_ver;
  1141. uint8_t vram_type; //enum of atom_dgpu_vram_type
  1142. uint8_t umc_config;
  1143. uint32_t mem_refclk_10khz;
  1144. };
  1145. /*
  1146. ***************************************************************************
  1147. Data Table vram_info structure
  1148. ***************************************************************************
  1149. */
  1150. struct atom_vram_module_v9
  1151. {
  1152. // Design Specific Values
  1153. uint32_t memory_size; // Total memory size in unit of MB for CONFIG_MEMSIZE zeros
  1154. uint32_t channel_enable; // for 32 channel ASIC usage
  1155. uint32_t umcch_addrcfg;
  1156. uint32_t umcch_addrsel;
  1157. uint32_t umcch_colsel;
  1158. uint16_t vram_module_size; // Size of atom_vram_module_v9
  1159. uint8_t ext_memory_id; // Current memory module ID
  1160. uint8_t memory_type; // enum of atom_dgpu_vram_type
  1161. uint8_t channel_num; // Number of mem. channels supported in this module
  1162. uint8_t channel_width; // CHANNEL_16BIT/CHANNEL_32BIT/CHANNEL_64BIT
  1163. uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16
  1164. uint8_t tunningset_id; // MC phy registers set per.
  1165. uint8_t vender_rev_id; // [7:4] Revision, [3:0] Vendor code
  1166. uint8_t refreshrate; // [1:0]=RefreshFactor (00=8ms, 01=16ms, 10=32ms,11=64ms)
  1167. uint16_t vram_rsd2; // reserved
  1168. char dram_pnstring[20]; // part number end with '0'.
  1169. };
  1170. struct atom_vram_info_header_v2_3
  1171. {
  1172. struct atom_common_table_header table_header;
  1173. uint16_t mem_adjust_tbloffset; // offset of atom_umc_init_reg_block structure for memory vendor specific UMC adjust setting
  1174. uint16_t mem_clk_patch_tbloffset; // offset of atom_umc_init_reg_block structure for memory clock specific UMC setting
  1175. uint16_t mc_adjust_pertile_tbloffset; // offset of atom_umc_init_reg_block structure for Per Byte Offset Preset Settings
  1176. uint16_t mc_phyinit_tbloffset; // offset of atom_umc_init_reg_block structure for MC phy init set
  1177. uint16_t dram_data_remap_tbloffset; // reserved for now
  1178. uint16_t vram_rsd2[3];
  1179. uint8_t vram_module_num; // indicate number of VRAM module
  1180. uint8_t vram_rsd1[2];
  1181. uint8_t mc_phy_tile_num; // indicate the MCD tile number which use in DramDataRemapTbl and usMcAdjustPerTileTblOffset
  1182. struct atom_vram_module_v9 vram_module[16]; // just for allocation, real number of blocks is in ucNumOfVRAMModule;
  1183. };
  1184. struct atom_umc_register_addr_info{
  1185. uint32_t umc_register_addr:24;
  1186. uint32_t umc_reg_type_ind:1;
  1187. uint32_t umc_reg_rsvd:7;
  1188. };
  1189. //atom_umc_register_addr_info.
  1190. enum atom_umc_register_addr_info_flag{
  1191. b3ATOM_UMC_REG_ADD_INFO_INDIRECT_ACCESS =0x01,
  1192. };
  1193. union atom_umc_register_addr_info_access
  1194. {
  1195. struct atom_umc_register_addr_info umc_reg_addr;
  1196. uint32_t u32umc_reg_addr;
  1197. };
  1198. struct atom_umc_reg_setting_id_config{
  1199. uint32_t memclockrange:24;
  1200. uint32_t mem_blk_id:8;
  1201. };
  1202. union atom_umc_reg_setting_id_config_access
  1203. {
  1204. struct atom_umc_reg_setting_id_config umc_id_access;
  1205. uint32_t u32umc_id_access;
  1206. };
  1207. struct atom_umc_reg_setting_data_block{
  1208. union atom_umc_reg_setting_id_config_access block_id;
  1209. uint32_t u32umc_reg_data[1];
  1210. };
  1211. struct atom_umc_init_reg_block{
  1212. uint16_t umc_reg_num;
  1213. uint16_t reserved;
  1214. union atom_umc_register_addr_info_access umc_reg_list[1]; //for allocation purpose, the real number come from umc_reg_num;
  1215. struct atom_umc_reg_setting_data_block umc_reg_setting_list[1];
  1216. };
  1217. /*
  1218. ***************************************************************************
  1219. Data Table voltageobject_info structure
  1220. ***************************************************************************
  1221. */
  1222. struct atom_i2c_data_entry
  1223. {
  1224. uint16_t i2c_reg_index; // i2c register address, can be up to 16bit
  1225. uint16_t i2c_reg_data; // i2c register data, can be up to 16bit
  1226. };
  1227. struct atom_voltage_object_header_v4{
  1228. uint8_t voltage_type; //enum atom_voltage_type
  1229. uint8_t voltage_mode; //enum atom_voltage_object_mode
  1230. uint16_t object_size; //Size of Object
  1231. };
  1232. // atom_voltage_object_header_v4.voltage_mode
  1233. enum atom_voltage_object_mode
  1234. {
  1235. VOLTAGE_OBJ_GPIO_LUT = 0, //VOLTAGE and GPIO Lookup table ->atom_gpio_voltage_object_v4
  1236. VOLTAGE_OBJ_VR_I2C_INIT_SEQ = 3, //VOLTAGE REGULATOR INIT sequece through I2C -> atom_i2c_voltage_object_v4
  1237. VOLTAGE_OBJ_PHASE_LUT = 4, //Set Vregulator Phase lookup table ->atom_gpio_voltage_object_v4
  1238. VOLTAGE_OBJ_SVID2 = 7, //Indicate voltage control by SVID2 ->atom_svid2_voltage_object_v4
  1239. VOLTAGE_OBJ_EVV = 8,
  1240. VOLTAGE_OBJ_MERGED_POWER = 9,
  1241. };
  1242. struct atom_i2c_voltage_object_v4
  1243. {
  1244. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_VR_I2C_INIT_SEQ
  1245. uint8_t regulator_id; //Indicate Voltage Regulator Id
  1246. uint8_t i2c_id;
  1247. uint8_t i2c_slave_addr;
  1248. uint8_t i2c_control_offset;
  1249. uint8_t i2c_flag; // Bit0: 0 - One byte data; 1 - Two byte data
  1250. uint8_t i2c_speed; // =0, use default i2c speed, otherwise use it in unit of kHz.
  1251. uint8_t reserved[2];
  1252. struct atom_i2c_data_entry i2cdatalut[1]; // end with 0xff
  1253. };
  1254. // ATOM_I2C_VOLTAGE_OBJECT_V3.ucVoltageControlFlag
  1255. enum atom_i2c_voltage_control_flag
  1256. {
  1257. VOLTAGE_DATA_ONE_BYTE = 0,
  1258. VOLTAGE_DATA_TWO_BYTE = 1,
  1259. };
  1260. struct atom_voltage_gpio_map_lut
  1261. {
  1262. uint32_t voltage_gpio_reg_val; // The Voltage ID which is used to program GPIO register
  1263. uint16_t voltage_level_mv; // The corresponding Voltage Value, in mV
  1264. };
  1265. struct atom_gpio_voltage_object_v4
  1266. {
  1267. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_GPIO_LUT or VOLTAGE_OBJ_PHASE_LUT
  1268. uint8_t gpio_control_id; // default is 0 which indicate control through CG VID mode
  1269. uint8_t gpio_entry_num; // indiate the entry numbers of Votlage/Gpio value Look up table
  1270. uint8_t phase_delay_us; // phase delay in unit of micro second
  1271. uint8_t reserved;
  1272. uint32_t gpio_mask_val; // GPIO Mask value
  1273. struct atom_voltage_gpio_map_lut voltage_gpio_lut[1];
  1274. };
  1275. struct atom_svid2_voltage_object_v4
  1276. {
  1277. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_SVID2
  1278. uint8_t loadline_psi1; // bit4:0= loadline setting ( Core Loadline trim and offset trim ), bit5=0:PSI1_L disable =1: PSI1_L enable
  1279. uint8_t psi0_l_vid_thresd; // VR PSI0_L VID threshold
  1280. uint8_t psi0_enable; //
  1281. uint8_t maxvstep;
  1282. uint8_t telemetry_offset;
  1283. uint8_t telemetry_gain;
  1284. uint16_t reserved1;
  1285. };
  1286. struct atom_merged_voltage_object_v4
  1287. {
  1288. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_MERGED_POWER
  1289. uint8_t merged_powerrail_type; //enum atom_voltage_type
  1290. uint8_t reserved[3];
  1291. };
  1292. union atom_voltage_object_v4{
  1293. struct atom_gpio_voltage_object_v4 gpio_voltage_obj;
  1294. struct atom_i2c_voltage_object_v4 i2c_voltage_obj;
  1295. struct atom_svid2_voltage_object_v4 svid2_voltage_obj;
  1296. struct atom_merged_voltage_object_v4 merged_voltage_obj;
  1297. };
  1298. struct atom_voltage_objects_info_v4_1
  1299. {
  1300. struct atom_common_table_header table_header;
  1301. union atom_voltage_object_v4 voltage_object[1]; //Info for Voltage control
  1302. };
  1303. /*
  1304. ***************************************************************************
  1305. All Command Function structure definition
  1306. ***************************************************************************
  1307. */
  1308. /*
  1309. ***************************************************************************
  1310. Structures used by asic_init
  1311. ***************************************************************************
  1312. */
  1313. struct asic_init_engine_parameters
  1314. {
  1315. uint32_t sclkfreqin10khz:24;
  1316. uint32_t engineflag:8; /* enum atom_asic_init_engine_flag */
  1317. };
  1318. struct asic_init_mem_parameters
  1319. {
  1320. uint32_t mclkfreqin10khz:24;
  1321. uint32_t memflag:8; /* enum atom_asic_init_mem_flag */
  1322. };
  1323. struct asic_init_parameters_v2_1
  1324. {
  1325. struct asic_init_engine_parameters engineparam;
  1326. struct asic_init_mem_parameters memparam;
  1327. };
  1328. struct asic_init_ps_allocation_v2_1
  1329. {
  1330. struct asic_init_parameters_v2_1 param;
  1331. uint32_t reserved[16];
  1332. };
  1333. enum atom_asic_init_engine_flag
  1334. {
  1335. b3NORMAL_ENGINE_INIT = 0,
  1336. b3SRIOV_SKIP_ASIC_INIT = 0x02,
  1337. b3SRIOV_LOAD_UCODE = 0x40,
  1338. };
  1339. enum atom_asic_init_mem_flag
  1340. {
  1341. b3NORMAL_MEM_INIT = 0,
  1342. b3DRAM_SELF_REFRESH_EXIT =0x20,
  1343. };
  1344. /*
  1345. ***************************************************************************
  1346. Structures used by setengineclock
  1347. ***************************************************************************
  1348. */
  1349. struct set_engine_clock_parameters_v2_1
  1350. {
  1351. uint32_t sclkfreqin10khz:24;
  1352. uint32_t sclkflag:8; /* enum atom_set_engine_mem_clock_flag, */
  1353. uint32_t reserved[10];
  1354. };
  1355. struct set_engine_clock_ps_allocation_v2_1
  1356. {
  1357. struct set_engine_clock_parameters_v2_1 clockinfo;
  1358. uint32_t reserved[10];
  1359. };
  1360. enum atom_set_engine_mem_clock_flag
  1361. {
  1362. b3NORMAL_CHANGE_CLOCK = 0,
  1363. b3FIRST_TIME_CHANGE_CLOCK = 0x08,
  1364. b3STORE_DPM_TRAINGING = 0x40, //Applicable to memory clock change,when set, it store specific DPM mode training result
  1365. };
  1366. /*
  1367. ***************************************************************************
  1368. Structures used by getengineclock
  1369. ***************************************************************************
  1370. */
  1371. struct get_engine_clock_parameter
  1372. {
  1373. uint32_t sclk_10khz; // current engine speed in 10KHz unit
  1374. uint32_t reserved;
  1375. };
  1376. /*
  1377. ***************************************************************************
  1378. Structures used by setmemoryclock
  1379. ***************************************************************************
  1380. */
  1381. struct set_memory_clock_parameters_v2_1
  1382. {
  1383. uint32_t mclkfreqin10khz:24;
  1384. uint32_t mclkflag:8; /* enum atom_set_engine_mem_clock_flag, */
  1385. uint32_t reserved[10];
  1386. };
  1387. struct set_memory_clock_ps_allocation_v2_1
  1388. {
  1389. struct set_memory_clock_parameters_v2_1 clockinfo;
  1390. uint32_t reserved[10];
  1391. };
  1392. /*
  1393. ***************************************************************************
  1394. Structures used by getmemoryclock
  1395. ***************************************************************************
  1396. */
  1397. struct get_memory_clock_parameter
  1398. {
  1399. uint32_t mclk_10khz; // current engine speed in 10KHz unit
  1400. uint32_t reserved;
  1401. };
  1402. /*
  1403. ***************************************************************************
  1404. Structures used by setvoltage
  1405. ***************************************************************************
  1406. */
  1407. struct set_voltage_parameters_v1_4
  1408. {
  1409. uint8_t voltagetype; /* enum atom_voltage_type */
  1410. uint8_t command; /* Indicate action: Set voltage level, enum atom_set_voltage_command */
  1411. uint16_t vlevel_mv; /* real voltage level in unit of mv or Voltage Phase (0, 1, 2, .. ) */
  1412. };
  1413. //set_voltage_parameters_v2_1.voltagemode
  1414. enum atom_set_voltage_command{
  1415. ATOM_SET_VOLTAGE = 0,
  1416. ATOM_INIT_VOLTAGE_REGULATOR = 3,
  1417. ATOM_SET_VOLTAGE_PHASE = 4,
  1418. ATOM_GET_LEAKAGE_ID = 8,
  1419. };
  1420. struct set_voltage_ps_allocation_v1_4
  1421. {
  1422. struct set_voltage_parameters_v1_4 setvoltageparam;
  1423. uint32_t reserved[10];
  1424. };
  1425. /*
  1426. ***************************************************************************
  1427. Structures used by computegpuclockparam
  1428. ***************************************************************************
  1429. */
  1430. //ATOM_COMPUTE_CLOCK_FREQ.ulComputeClockFlag
  1431. enum atom_gpu_clock_type
  1432. {
  1433. COMPUTE_GPUCLK_INPUT_FLAG_DEFAULT_GPUCLK =0x00,
  1434. COMPUTE_GPUCLK_INPUT_FLAG_GFXCLK =0x01,
  1435. COMPUTE_GPUCLK_INPUT_FLAG_UCLK =0x02,
  1436. };
  1437. struct compute_gpu_clock_input_parameter_v1_8
  1438. {
  1439. uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock
  1440. uint32_t gpu_clock_type:8; //Input indicate clock type: enum atom_gpu_clock_type
  1441. uint32_t reserved[5];
  1442. };
  1443. struct compute_gpu_clock_output_parameter_v1_8
  1444. {
  1445. uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock
  1446. uint32_t dfs_did:8; //return parameter: DFS divider which is used to program to register directly
  1447. uint32_t pll_fb_mult; //Feedback Multiplier, bit 8:0 int, bit 15:12 post_div, bit 31:16 frac
  1448. uint32_t pll_ss_fbsmult; // Spread FB Mult: bit 8:0 int, bit 31:16 frac
  1449. uint16_t pll_ss_slew_frac;
  1450. uint8_t pll_ss_enable;
  1451. uint8_t reserved;
  1452. uint32_t reserved1[2];
  1453. };
  1454. /*
  1455. ***************************************************************************
  1456. Structures used by ReadEfuseValue
  1457. ***************************************************************************
  1458. */
  1459. struct read_efuse_input_parameters_v3_1
  1460. {
  1461. uint16_t efuse_start_index;
  1462. uint8_t reserved;
  1463. uint8_t bitslen;
  1464. };
  1465. // ReadEfuseValue input/output parameter
  1466. union read_efuse_value_parameters_v3_1
  1467. {
  1468. struct read_efuse_input_parameters_v3_1 efuse_info;
  1469. uint32_t efusevalue;
  1470. };
  1471. /*
  1472. ***************************************************************************
  1473. Structures used by getsmuclockinfo
  1474. ***************************************************************************
  1475. */
  1476. struct atom_get_smu_clock_info_parameters_v3_1
  1477. {
  1478. uint8_t syspll_id; // 0= syspll0, 1=syspll1, 2=syspll2
  1479. uint8_t clk_id; // atom_smu9_syspll0_clock_id (only valid when command == GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ )
  1480. uint8_t command; // enum of atom_get_smu_clock_info_command
  1481. uint8_t dfsdid; // =0: get DFS DID from register, >0, give DFS divider, (only valid when command == GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ )
  1482. };
  1483. enum atom_get_smu_clock_info_command
  1484. {
  1485. GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ = 0,
  1486. GET_SMU_CLOCK_INFO_V3_1_GET_PLLVCO_FREQ = 1,
  1487. GET_SMU_CLOCK_INFO_V3_1_GET_PLLREFCLK_FREQ = 2,
  1488. };
  1489. enum atom_smu9_syspll0_clock_id
  1490. {
  1491. SMU9_SYSPLL0_SMNCLK_ID = 0, // SMNCLK
  1492. SMU9_SYSPLL0_SOCCLK_ID = 1, // SOCCLK (FCLK)
  1493. SMU9_SYSPLL0_MP0CLK_ID = 2, // MP0CLK
  1494. SMU9_SYSPLL0_MP1CLK_ID = 3, // MP1CLK
  1495. SMU9_SYSPLL0_LCLK_ID = 4, // LCLK
  1496. SMU9_SYSPLL0_DCLK_ID = 5, // DCLK
  1497. SMU9_SYSPLL0_VCLK_ID = 6, // VCLK
  1498. SMU9_SYSPLL0_ECLK_ID = 7, // ECLK
  1499. SMU9_SYSPLL0_DCEFCLK_ID = 8, // DCEFCLK
  1500. SMU9_SYSPLL0_DPREFCLK_ID = 10, // DPREFCLK
  1501. SMU9_SYSPLL0_DISPCLK_ID = 11, // DISPCLK
  1502. };
  1503. struct atom_get_smu_clock_info_output_parameters_v3_1
  1504. {
  1505. union {
  1506. uint32_t smu_clock_freq_hz;
  1507. uint32_t syspllvcofreq_10khz;
  1508. uint32_t sysspllrefclk_10khz;
  1509. }atom_smu_outputclkfreq;
  1510. };
  1511. /*
  1512. ***************************************************************************
  1513. Structures used by dynamicmemorysettings
  1514. ***************************************************************************
  1515. */
  1516. enum atom_dynamic_memory_setting_command
  1517. {
  1518. COMPUTE_MEMORY_PLL_PARAM = 1,
  1519. COMPUTE_ENGINE_PLL_PARAM = 2,
  1520. ADJUST_MC_SETTING_PARAM = 3,
  1521. };
  1522. /* when command = COMPUTE_MEMORY_PLL_PARAM or ADJUST_MC_SETTING_PARAM */
  1523. struct dynamic_mclk_settings_parameters_v2_1
  1524. {
  1525. uint32_t mclk_10khz:24; //Input= target mclk
  1526. uint32_t command:8; //command enum of atom_dynamic_memory_setting_command
  1527. uint32_t reserved;
  1528. };
  1529. /* when command = COMPUTE_ENGINE_PLL_PARAM */
  1530. struct dynamic_sclk_settings_parameters_v2_1
  1531. {
  1532. uint32_t sclk_10khz:24; //Input= target mclk
  1533. uint32_t command:8; //command enum of atom_dynamic_memory_setting_command
  1534. uint32_t mclk_10khz;
  1535. uint32_t reserved;
  1536. };
  1537. union dynamic_memory_settings_parameters_v2_1
  1538. {
  1539. struct dynamic_mclk_settings_parameters_v2_1 mclk_setting;
  1540. struct dynamic_sclk_settings_parameters_v2_1 sclk_setting;
  1541. };
  1542. /*
  1543. ***************************************************************************
  1544. Structures used by memorytraining
  1545. ***************************************************************************
  1546. */
  1547. enum atom_umc6_0_ucode_function_call_enum_id
  1548. {
  1549. UMC60_UCODE_FUNC_ID_REINIT = 0,
  1550. UMC60_UCODE_FUNC_ID_ENTER_SELFREFRESH = 1,
  1551. UMC60_UCODE_FUNC_ID_EXIT_SELFREFRESH = 2,
  1552. };
  1553. struct memory_training_parameters_v2_1
  1554. {
  1555. uint8_t ucode_func_id;
  1556. uint8_t ucode_reserved[3];
  1557. uint32_t reserved[5];
  1558. };
  1559. /*
  1560. ***************************************************************************
  1561. Structures used by setpixelclock
  1562. ***************************************************************************
  1563. */
  1564. struct set_pixel_clock_parameter_v1_7
  1565. {
  1566. uint32_t pixclk_100hz; // target the pixel clock to drive the CRTC timing in unit of 100Hz.
  1567. uint8_t pll_id; // ATOM_PHY_PLL0/ATOM_PHY_PLL1/ATOM_PPLL0
  1568. uint8_t encoderobjid; // ASIC encoder id defined in objectId.h,
  1569. // indicate which graphic encoder will be used.
  1570. uint8_t encoder_mode; // Encoder mode:
  1571. uint8_t miscinfo; // enum atom_set_pixel_clock_v1_7_misc_info
  1572. uint8_t crtc_id; // enum of atom_crtc_def
  1573. uint8_t deep_color_ratio; // HDMI panel bit depth: enum atom_set_pixel_clock_v1_7_deepcolor_ratio
  1574. uint8_t reserved1[2];
  1575. uint32_t reserved2;
  1576. };
  1577. //ucMiscInfo
  1578. enum atom_set_pixel_clock_v1_7_misc_info
  1579. {
  1580. PIXEL_CLOCK_V7_MISC_FORCE_PROG_PPLL = 0x01,
  1581. PIXEL_CLOCK_V7_MISC_PROG_PHYPLL = 0x02,
  1582. PIXEL_CLOCK_V7_MISC_YUV420_MODE = 0x04,
  1583. PIXEL_CLOCK_V7_MISC_DVI_DUALLINK_EN = 0x08,
  1584. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC = 0x30,
  1585. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_XTALIN = 0x00,
  1586. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_PCIE = 0x10,
  1587. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_GENLK = 0x20,
  1588. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_REFPAD = 0x30,
  1589. PIXEL_CLOCK_V7_MISC_ATOMIC_UPDATE = 0x40,
  1590. PIXEL_CLOCK_V7_MISC_FORCE_SS_DIS = 0x80,
  1591. };
  1592. /* deep_color_ratio */
  1593. enum atom_set_pixel_clock_v1_7_deepcolor_ratio
  1594. {
  1595. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO
  1596. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4
  1597. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2
  1598. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1
  1599. };
  1600. /*
  1601. ***************************************************************************
  1602. Structures used by setdceclock
  1603. ***************************************************************************
  1604. */
  1605. // SetDCEClock input parameter for DCE11.2( ELM and BF ) and above
  1606. struct set_dce_clock_parameters_v2_1
  1607. {
  1608. uint32_t dceclk_10khz; // target DCE frequency in unit of 10KHZ, return real DISPCLK/DPREFCLK frequency.
  1609. uint8_t dceclktype; // =0: DISPCLK =1: DPREFCLK =2: PIXCLK
  1610. uint8_t dceclksrc; // ATOM_PLL0 or ATOM_GCK_DFS or ATOM_FCH_CLK or ATOM_COMBOPHY_PLLx
  1611. uint8_t dceclkflag; // Bit [1:0] = PPLL ref clock source ( when ucDCEClkSrc= ATOM_PPLL0 )
  1612. uint8_t crtc_id; // ucDisp Pipe Id, ATOM_CRTC0/1/2/..., use only when ucDCEClkType = PIXCLK
  1613. };
  1614. //ucDCEClkType
  1615. enum atom_set_dce_clock_clock_type
  1616. {
  1617. DCE_CLOCK_TYPE_DISPCLK = 0,
  1618. DCE_CLOCK_TYPE_DPREFCLK = 1,
  1619. DCE_CLOCK_TYPE_PIXELCLK = 2, // used by VBIOS internally, called by SetPixelClock
  1620. };
  1621. //ucDCEClkFlag when ucDCEClkType == DPREFCLK
  1622. enum atom_set_dce_clock_dprefclk_flag
  1623. {
  1624. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_MASK = 0x03,
  1625. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENERICA = 0x00,
  1626. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENLK = 0x01,
  1627. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_PCIE = 0x02,
  1628. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_XTALIN = 0x03,
  1629. };
  1630. //ucDCEClkFlag when ucDCEClkType == PIXCLK
  1631. enum atom_set_dce_clock_pixclk_flag
  1632. {
  1633. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_MASK = 0x03,
  1634. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO
  1635. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4
  1636. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2
  1637. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1
  1638. DCE_CLOCK_FLAG_PIXCLK_YUV420_MODE = 0x04,
  1639. };
  1640. struct set_dce_clock_ps_allocation_v2_1
  1641. {
  1642. struct set_dce_clock_parameters_v2_1 param;
  1643. uint32_t ulReserved[2];
  1644. };
  1645. /****************************************************************************/
  1646. // Structures used by BlankCRTC
  1647. /****************************************************************************/
  1648. struct blank_crtc_parameters
  1649. {
  1650. uint8_t crtc_id; // enum atom_crtc_def
  1651. uint8_t blanking; // enum atom_blank_crtc_command
  1652. uint16_t reserved;
  1653. uint32_t reserved1;
  1654. };
  1655. enum atom_blank_crtc_command
  1656. {
  1657. ATOM_BLANKING = 1,
  1658. ATOM_BLANKING_OFF = 0,
  1659. };
  1660. /****************************************************************************/
  1661. // Structures used by enablecrtc
  1662. /****************************************************************************/
  1663. struct enable_crtc_parameters
  1664. {
  1665. uint8_t crtc_id; // enum atom_crtc_def
  1666. uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE
  1667. uint8_t padding[2];
  1668. };
  1669. /****************************************************************************/
  1670. // Structure used by EnableDispPowerGating
  1671. /****************************************************************************/
  1672. struct enable_disp_power_gating_parameters_v2_1
  1673. {
  1674. uint8_t disp_pipe_id; // ATOM_CRTC1, ATOM_CRTC2, ...
  1675. uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE
  1676. uint8_t padding[2];
  1677. };
  1678. struct enable_disp_power_gating_ps_allocation
  1679. {
  1680. struct enable_disp_power_gating_parameters_v2_1 param;
  1681. uint32_t ulReserved[4];
  1682. };
  1683. /****************************************************************************/
  1684. // Structure used in setcrtc_usingdtdtiming
  1685. /****************************************************************************/
  1686. struct set_crtc_using_dtd_timing_parameters
  1687. {
  1688. uint16_t h_size;
  1689. uint16_t h_blanking_time;
  1690. uint16_t v_size;
  1691. uint16_t v_blanking_time;
  1692. uint16_t h_syncoffset;
  1693. uint16_t h_syncwidth;
  1694. uint16_t v_syncoffset;
  1695. uint16_t v_syncwidth;
  1696. uint16_t modemiscinfo;
  1697. uint8_t h_border;
  1698. uint8_t v_border;
  1699. uint8_t crtc_id; // enum atom_crtc_def
  1700. uint8_t encoder_mode; // atom_encode_mode_def
  1701. uint8_t padding[2];
  1702. };
  1703. /****************************************************************************/
  1704. // Structures used by processi2cchanneltransaction
  1705. /****************************************************************************/
  1706. struct process_i2c_channel_transaction_parameters
  1707. {
  1708. uint8_t i2cspeed_khz;
  1709. union {
  1710. uint8_t regindex;
  1711. uint8_t status; /* enum atom_process_i2c_flag */
  1712. } regind_status;
  1713. uint16_t i2c_data_out;
  1714. uint8_t flag; /* enum atom_process_i2c_status */
  1715. uint8_t trans_bytes;
  1716. uint8_t slave_addr;
  1717. uint8_t i2c_id;
  1718. };
  1719. //ucFlag
  1720. enum atom_process_i2c_flag
  1721. {
  1722. HW_I2C_WRITE = 1,
  1723. HW_I2C_READ = 0,
  1724. I2C_2BYTE_ADDR = 0x02,
  1725. HW_I2C_SMBUS_BYTE_WR = 0x04,
  1726. };
  1727. //status
  1728. enum atom_process_i2c_status
  1729. {
  1730. HW_ASSISTED_I2C_STATUS_FAILURE =2,
  1731. HW_ASSISTED_I2C_STATUS_SUCCESS =1,
  1732. };
  1733. /****************************************************************************/
  1734. // Structures used by processauxchanneltransaction
  1735. /****************************************************************************/
  1736. struct process_aux_channel_transaction_parameters_v1_2
  1737. {
  1738. uint16_t aux_request;
  1739. uint16_t dataout;
  1740. uint8_t channelid;
  1741. union {
  1742. uint8_t reply_status;
  1743. uint8_t aux_delay;
  1744. } aux_status_delay;
  1745. uint8_t dataout_len;
  1746. uint8_t hpd_id; //=0: HPD1, =1: HPD2, =2: HPD3, =3: HPD4, =4: HPD5, =5: HPD6
  1747. };
  1748. /****************************************************************************/
  1749. // Structures used by selectcrtc_source
  1750. /****************************************************************************/
  1751. struct select_crtc_source_parameters_v2_3
  1752. {
  1753. uint8_t crtc_id; // enum atom_crtc_def
  1754. uint8_t encoder_id; // enum atom_dig_def
  1755. uint8_t encode_mode; // enum atom_encode_mode_def
  1756. uint8_t dst_bpc; // enum atom_panel_bit_per_color
  1757. };
  1758. /****************************************************************************/
  1759. // Structures used by digxencodercontrol
  1760. /****************************************************************************/
  1761. // ucAction:
  1762. enum atom_dig_encoder_control_action
  1763. {
  1764. ATOM_ENCODER_CMD_DISABLE_DIG = 0,
  1765. ATOM_ENCODER_CMD_ENABLE_DIG = 1,
  1766. ATOM_ENCODER_CMD_DP_LINK_TRAINING_START = 0x08,
  1767. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1 = 0x09,
  1768. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2 = 0x0a,
  1769. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3 = 0x13,
  1770. ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE = 0x0b,
  1771. ATOM_ENCODER_CMD_DP_VIDEO_OFF = 0x0c,
  1772. ATOM_ENCODER_CMD_DP_VIDEO_ON = 0x0d,
  1773. ATOM_ENCODER_CMD_SETUP_PANEL_MODE = 0x10,
  1774. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN4 = 0x14,
  1775. ATOM_ENCODER_CMD_STREAM_SETUP = 0x0F,
  1776. ATOM_ENCODER_CMD_LINK_SETUP = 0x11,
  1777. ATOM_ENCODER_CMD_ENCODER_BLANK = 0x12,
  1778. };
  1779. //define ucPanelMode
  1780. enum atom_dig_encoder_control_panelmode
  1781. {
  1782. DP_PANEL_MODE_DISABLE = 0x00,
  1783. DP_PANEL_MODE_ENABLE_eDP_MODE = 0x01,
  1784. DP_PANEL_MODE_ENABLE_LVLINK_MODE = 0x11,
  1785. };
  1786. //ucDigId
  1787. enum atom_dig_encoder_control_v5_digid
  1788. {
  1789. ATOM_ENCODER_CONFIG_V5_DIG0_ENCODER = 0x00,
  1790. ATOM_ENCODER_CONFIG_V5_DIG1_ENCODER = 0x01,
  1791. ATOM_ENCODER_CONFIG_V5_DIG2_ENCODER = 0x02,
  1792. ATOM_ENCODER_CONFIG_V5_DIG3_ENCODER = 0x03,
  1793. ATOM_ENCODER_CONFIG_V5_DIG4_ENCODER = 0x04,
  1794. ATOM_ENCODER_CONFIG_V5_DIG5_ENCODER = 0x05,
  1795. ATOM_ENCODER_CONFIG_V5_DIG6_ENCODER = 0x06,
  1796. ATOM_ENCODER_CONFIG_V5_DIG7_ENCODER = 0x07,
  1797. };
  1798. struct dig_encoder_stream_setup_parameters_v1_5
  1799. {
  1800. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  1801. uint8_t action; // = ATOM_ENOCODER_CMD_STREAM_SETUP
  1802. uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI
  1803. uint8_t lanenum; // Lane number
  1804. uint32_t pclk_10khz; // Pixel Clock in 10Khz
  1805. uint8_t bitpercolor;
  1806. uint8_t dplinkrate_270mhz;//= DP link rate/270Mhz, =6: 1.62G = 10: 2.7G, =20: 5.4Ghz, =30: 8.1Ghz etc
  1807. uint8_t reserved[2];
  1808. };
  1809. struct dig_encoder_link_setup_parameters_v1_5
  1810. {
  1811. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  1812. uint8_t action; // = ATOM_ENOCODER_CMD_LINK_SETUP
  1813. uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI
  1814. uint8_t lanenum; // Lane number
  1815. uint8_t symclk_10khz; // Symbol Clock in 10Khz
  1816. uint8_t hpd_sel;
  1817. uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable,
  1818. uint8_t reserved[2];
  1819. };
  1820. struct dp_panel_mode_set_parameters_v1_5
  1821. {
  1822. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  1823. uint8_t action; // = ATOM_ENCODER_CMD_DPLINK_SETUP
  1824. uint8_t panelmode; // enum atom_dig_encoder_control_panelmode
  1825. uint8_t reserved1;
  1826. uint32_t reserved2[2];
  1827. };
  1828. struct dig_encoder_generic_cmd_parameters_v1_5
  1829. {
  1830. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  1831. uint8_t action; // = rest of generic encoder command which does not carry any parameters
  1832. uint8_t reserved1[2];
  1833. uint32_t reserved2[2];
  1834. };
  1835. union dig_encoder_control_parameters_v1_5
  1836. {
  1837. struct dig_encoder_generic_cmd_parameters_v1_5 cmd_param;
  1838. struct dig_encoder_stream_setup_parameters_v1_5 stream_param;
  1839. struct dig_encoder_link_setup_parameters_v1_5 link_param;
  1840. struct dp_panel_mode_set_parameters_v1_5 dppanel_param;
  1841. };
  1842. /*
  1843. ***************************************************************************
  1844. Structures used by dig1transmittercontrol
  1845. ***************************************************************************
  1846. */
  1847. struct dig_transmitter_control_parameters_v1_6
  1848. {
  1849. uint8_t phyid; // 0=UNIPHYA, 1=UNIPHYB, 2=UNIPHYC, 3=UNIPHYD, 4= UNIPHYE 5=UNIPHYF
  1850. uint8_t action; // define as ATOM_TRANSMITER_ACTION_xxx
  1851. union {
  1852. uint8_t digmode; // enum atom_encode_mode_def
  1853. uint8_t dplaneset; // DP voltage swing and pre-emphasis value defined in DPCD DP_LANE_SET, "DP_LANE_SET__xDB_y_zV"
  1854. } mode_laneset;
  1855. uint8_t lanenum; // Lane number 1, 2, 4, 8
  1856. uint32_t symclk_10khz; // Symbol Clock in 10Khz
  1857. uint8_t hpdsel; // =1: HPD1, =2: HPD2, .... =6: HPD6, =0: HPD is not assigned
  1858. uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable,
  1859. uint8_t connobj_id; // Connector Object Id defined in ObjectId.h
  1860. uint8_t reserved;
  1861. uint32_t reserved1;
  1862. };
  1863. struct dig_transmitter_control_ps_allocation_v1_6
  1864. {
  1865. struct dig_transmitter_control_parameters_v1_6 param;
  1866. uint32_t reserved[4];
  1867. };
  1868. //ucAction
  1869. enum atom_dig_transmitter_control_action
  1870. {
  1871. ATOM_TRANSMITTER_ACTION_DISABLE = 0,
  1872. ATOM_TRANSMITTER_ACTION_ENABLE = 1,
  1873. ATOM_TRANSMITTER_ACTION_LCD_BLOFF = 2,
  1874. ATOM_TRANSMITTER_ACTION_LCD_BLON = 3,
  1875. ATOM_TRANSMITTER_ACTION_BL_BRIGHTNESS_CONTROL = 4,
  1876. ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_START = 5,
  1877. ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_STOP = 6,
  1878. ATOM_TRANSMITTER_ACTION_INIT = 7,
  1879. ATOM_TRANSMITTER_ACTION_DISABLE_OUTPUT = 8,
  1880. ATOM_TRANSMITTER_ACTION_ENABLE_OUTPUT = 9,
  1881. ATOM_TRANSMITTER_ACTION_SETUP = 10,
  1882. ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH = 11,
  1883. ATOM_TRANSMITTER_ACTION_POWER_ON = 12,
  1884. ATOM_TRANSMITTER_ACTION_POWER_OFF = 13,
  1885. };
  1886. // digfe_sel
  1887. enum atom_dig_transmitter_control_digfe_sel
  1888. {
  1889. ATOM_TRANMSITTER_V6__DIGA_SEL = 0x01,
  1890. ATOM_TRANMSITTER_V6__DIGB_SEL = 0x02,
  1891. ATOM_TRANMSITTER_V6__DIGC_SEL = 0x04,
  1892. ATOM_TRANMSITTER_V6__DIGD_SEL = 0x08,
  1893. ATOM_TRANMSITTER_V6__DIGE_SEL = 0x10,
  1894. ATOM_TRANMSITTER_V6__DIGF_SEL = 0x20,
  1895. ATOM_TRANMSITTER_V6__DIGG_SEL = 0x40,
  1896. };
  1897. //ucHPDSel
  1898. enum atom_dig_transmitter_control_hpd_sel
  1899. {
  1900. ATOM_TRANSMITTER_V6_NO_HPD_SEL = 0x00,
  1901. ATOM_TRANSMITTER_V6_HPD1_SEL = 0x01,
  1902. ATOM_TRANSMITTER_V6_HPD2_SEL = 0x02,
  1903. ATOM_TRANSMITTER_V6_HPD3_SEL = 0x03,
  1904. ATOM_TRANSMITTER_V6_HPD4_SEL = 0x04,
  1905. ATOM_TRANSMITTER_V6_HPD5_SEL = 0x05,
  1906. ATOM_TRANSMITTER_V6_HPD6_SEL = 0x06,
  1907. };
  1908. // ucDPLaneSet
  1909. enum atom_dig_transmitter_control_dplaneset
  1910. {
  1911. DP_LANE_SET__0DB_0_4V = 0x00,
  1912. DP_LANE_SET__0DB_0_6V = 0x01,
  1913. DP_LANE_SET__0DB_0_8V = 0x02,
  1914. DP_LANE_SET__0DB_1_2V = 0x03,
  1915. DP_LANE_SET__3_5DB_0_4V = 0x08,
  1916. DP_LANE_SET__3_5DB_0_6V = 0x09,
  1917. DP_LANE_SET__3_5DB_0_8V = 0x0a,
  1918. DP_LANE_SET__6DB_0_4V = 0x10,
  1919. DP_LANE_SET__6DB_0_6V = 0x11,
  1920. DP_LANE_SET__9_5DB_0_4V = 0x18,
  1921. };
  1922. /****************************************************************************/
  1923. // Structures used by ExternalEncoderControl V2.4
  1924. /****************************************************************************/
  1925. struct external_encoder_control_parameters_v2_4
  1926. {
  1927. uint16_t pixelclock_10khz; // pixel clock in 10Khz, valid when ucAction=SETUP/ENABLE_OUTPUT
  1928. uint8_t config; // indicate which encoder, and DP link rate when ucAction = SETUP/ENABLE_OUTPUT
  1929. uint8_t action; //
  1930. uint8_t encodermode; // encoder mode, only used when ucAction = SETUP/ENABLE_OUTPUT
  1931. uint8_t lanenum; // lane number, only used when ucAction = SETUP/ENABLE_OUTPUT
  1932. uint8_t bitpercolor; // output bit per color, only valid when ucAction = SETUP/ENABLE_OUTPUT and ucEncodeMode= DP
  1933. uint8_t hpd_id;
  1934. };
  1935. // ucAction
  1936. enum external_encoder_control_action_def
  1937. {
  1938. EXTERNAL_ENCODER_ACTION_V3_DISABLE_OUTPUT = 0x00,
  1939. EXTERNAL_ENCODER_ACTION_V3_ENABLE_OUTPUT = 0x01,
  1940. EXTERNAL_ENCODER_ACTION_V3_ENCODER_INIT = 0x07,
  1941. EXTERNAL_ENCODER_ACTION_V3_ENCODER_SETUP = 0x0f,
  1942. EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING_OFF = 0x10,
  1943. EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING = 0x11,
  1944. EXTERNAL_ENCODER_ACTION_V3_DACLOAD_DETECTION = 0x12,
  1945. EXTERNAL_ENCODER_ACTION_V3_DDC_SETUP = 0x14,
  1946. };
  1947. // ucConfig
  1948. enum external_encoder_control_v2_4_config_def
  1949. {
  1950. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_MASK = 0x03,
  1951. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_1_62GHZ = 0x00,
  1952. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_2_70GHZ = 0x01,
  1953. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_5_40GHZ = 0x02,
  1954. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_3_24GHZ = 0x03,
  1955. EXTERNAL_ENCODER_CONFIG_V3_ENCODER_SEL_MAKS = 0x70,
  1956. EXTERNAL_ENCODER_CONFIG_V3_ENCODER1 = 0x00,
  1957. EXTERNAL_ENCODER_CONFIG_V3_ENCODER2 = 0x10,
  1958. EXTERNAL_ENCODER_CONFIG_V3_ENCODER3 = 0x20,
  1959. };
  1960. struct external_encoder_control_ps_allocation_v2_4
  1961. {
  1962. struct external_encoder_control_parameters_v2_4 sExtEncoder;
  1963. uint32_t reserved[2];
  1964. };
  1965. /*
  1966. ***************************************************************************
  1967. AMD ACPI Table
  1968. ***************************************************************************
  1969. */
  1970. struct amd_acpi_description_header{
  1971. uint32_t signature;
  1972. uint32_t tableLength; //Length
  1973. uint8_t revision;
  1974. uint8_t checksum;
  1975. uint8_t oemId[6];
  1976. uint8_t oemTableId[8]; //UINT64 OemTableId;
  1977. uint32_t oemRevision;
  1978. uint32_t creatorId;
  1979. uint32_t creatorRevision;
  1980. };
  1981. struct uefi_acpi_vfct{
  1982. struct amd_acpi_description_header sheader;
  1983. uint8_t tableUUID[16]; //0x24
  1984. uint32_t vbiosimageoffset; //0x34. Offset to the first GOP_VBIOS_CONTENT block from the beginning of the stucture.
  1985. uint32_t lib1Imageoffset; //0x38. Offset to the first GOP_LIB1_CONTENT block from the beginning of the stucture.
  1986. uint32_t reserved[4]; //0x3C
  1987. };
  1988. struct vfct_image_header{
  1989. uint32_t pcibus; //0x4C
  1990. uint32_t pcidevice; //0x50
  1991. uint32_t pcifunction; //0x54
  1992. uint16_t vendorid; //0x58
  1993. uint16_t deviceid; //0x5A
  1994. uint16_t ssvid; //0x5C
  1995. uint16_t ssid; //0x5E
  1996. uint32_t revision; //0x60
  1997. uint32_t imagelength; //0x64
  1998. };
  1999. struct gop_vbios_content {
  2000. struct vfct_image_header vbiosheader;
  2001. uint8_t vbioscontent[1];
  2002. };
  2003. struct gop_lib1_content {
  2004. struct vfct_image_header lib1header;
  2005. uint8_t lib1content[1];
  2006. };
  2007. /*
  2008. ***************************************************************************
  2009. Scratch Register definitions
  2010. Each number below indicates which scratch regiser request, Active and
  2011. Connect all share the same definitions as display_device_tag defines
  2012. ***************************************************************************
  2013. */
  2014. enum scratch_register_def{
  2015. ATOM_DEVICE_CONNECT_INFO_DEF = 0,
  2016. ATOM_BL_BRI_LEVEL_INFO_DEF = 2,
  2017. ATOM_ACTIVE_INFO_DEF = 3,
  2018. ATOM_LCD_INFO_DEF = 4,
  2019. ATOM_DEVICE_REQ_INFO_DEF = 5,
  2020. ATOM_ACC_CHANGE_INFO_DEF = 6,
  2021. ATOM_PRE_OS_MODE_INFO_DEF = 7,
  2022. ATOM_PRE_OS_ASSERTION_DEF = 8, //For GOP to record a 32bit assertion code, this is enabled by default in prodution GOP drivers.
  2023. ATOM_INTERNAL_TIMER_INFO_DEF = 10,
  2024. };
  2025. enum scratch_device_connect_info_bit_def{
  2026. ATOM_DISPLAY_LCD1_CONNECT =0x0002,
  2027. ATOM_DISPLAY_DFP1_CONNECT =0x0008,
  2028. ATOM_DISPLAY_DFP2_CONNECT =0x0080,
  2029. ATOM_DISPLAY_DFP3_CONNECT =0x0200,
  2030. ATOM_DISPLAY_DFP4_CONNECT =0x0400,
  2031. ATOM_DISPLAY_DFP5_CONNECT =0x0800,
  2032. ATOM_DISPLAY_DFP6_CONNECT =0x0040,
  2033. ATOM_DISPLAY_DFPx_CONNECT =0x0ec8,
  2034. ATOM_CONNECT_INFO_DEVICE_MASK =0x0fff,
  2035. };
  2036. enum scratch_bl_bri_level_info_bit_def{
  2037. ATOM_CURRENT_BL_LEVEL_SHIFT =0x8,
  2038. #ifndef _H2INC
  2039. ATOM_CURRENT_BL_LEVEL_MASK =0x0000ff00,
  2040. ATOM_DEVICE_DPMS_STATE =0x00010000,
  2041. #endif
  2042. };
  2043. enum scratch_active_info_bits_def{
  2044. ATOM_DISPLAY_LCD1_ACTIVE =0x0002,
  2045. ATOM_DISPLAY_DFP1_ACTIVE =0x0008,
  2046. ATOM_DISPLAY_DFP2_ACTIVE =0x0080,
  2047. ATOM_DISPLAY_DFP3_ACTIVE =0x0200,
  2048. ATOM_DISPLAY_DFP4_ACTIVE =0x0400,
  2049. ATOM_DISPLAY_DFP5_ACTIVE =0x0800,
  2050. ATOM_DISPLAY_DFP6_ACTIVE =0x0040,
  2051. ATOM_ACTIVE_INFO_DEVICE_MASK =0x0fff,
  2052. };
  2053. enum scratch_device_req_info_bits_def{
  2054. ATOM_DISPLAY_LCD1_REQ =0x0002,
  2055. ATOM_DISPLAY_DFP1_REQ =0x0008,
  2056. ATOM_DISPLAY_DFP2_REQ =0x0080,
  2057. ATOM_DISPLAY_DFP3_REQ =0x0200,
  2058. ATOM_DISPLAY_DFP4_REQ =0x0400,
  2059. ATOM_DISPLAY_DFP5_REQ =0x0800,
  2060. ATOM_DISPLAY_DFP6_REQ =0x0040,
  2061. ATOM_REQ_INFO_DEVICE_MASK =0x0fff,
  2062. };
  2063. enum scratch_acc_change_info_bitshift_def{
  2064. ATOM_ACC_CHANGE_ACC_MODE_SHIFT =4,
  2065. ATOM_ACC_CHANGE_LID_STATUS_SHIFT =6,
  2066. };
  2067. enum scratch_acc_change_info_bits_def{
  2068. ATOM_ACC_CHANGE_ACC_MODE =0x00000010,
  2069. ATOM_ACC_CHANGE_LID_STATUS =0x00000040,
  2070. };
  2071. enum scratch_pre_os_mode_info_bits_def{
  2072. ATOM_PRE_OS_MODE_MASK =0x00000003,
  2073. ATOM_PRE_OS_MODE_VGA =0x00000000,
  2074. ATOM_PRE_OS_MODE_VESA =0x00000001,
  2075. ATOM_PRE_OS_MODE_GOP =0x00000002,
  2076. ATOM_PRE_OS_MODE_PIXEL_DEPTH =0x0000000C,
  2077. ATOM_PRE_OS_MODE_PIXEL_FORMAT_MASK=0x000000F0,
  2078. ATOM_PRE_OS_MODE_8BIT_PAL_EN =0x00000100,
  2079. ATOM_ASIC_INIT_COMPLETE =0x00000200,
  2080. #ifndef _H2INC
  2081. ATOM_PRE_OS_MODE_NUMBER_MASK =0xFFFF0000,
  2082. #endif
  2083. };
  2084. /*
  2085. ***************************************************************************
  2086. ATOM firmware ID header file
  2087. !! Please keep it at end of the atomfirmware.h !!
  2088. ***************************************************************************
  2089. */
  2090. #include "atomfirmwareid.h"
  2091. #pragma pack()
  2092. #endif