atomfirmware.h 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  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 smc_dpm_info;
  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. struct atom_firmware_info_v3_2 {
  457. struct atom_common_table_header table_header;
  458. uint32_t firmware_revision;
  459. uint32_t bootup_sclk_in10khz;
  460. uint32_t bootup_mclk_in10khz;
  461. uint32_t firmware_capability; // enum atombios_firmware_capability
  462. uint32_t main_call_parser_entry; /* direct address of main parser call in VBIOS binary. */
  463. uint32_t bios_scratch_reg_startaddr; // 1st bios scratch register dword address
  464. uint16_t bootup_vddc_mv;
  465. uint16_t bootup_vddci_mv;
  466. uint16_t bootup_mvddc_mv;
  467. uint16_t bootup_vddgfx_mv;
  468. uint8_t mem_module_id;
  469. uint8_t coolingsolution_id; /*0: Air cooling; 1: Liquid cooling ... */
  470. uint8_t reserved1[2];
  471. uint32_t mc_baseaddr_high;
  472. uint32_t mc_baseaddr_low;
  473. uint8_t board_i2c_feature_id; // enum of atom_board_i2c_feature_id_def
  474. uint8_t board_i2c_feature_gpio_id; // i2c id find in gpio_lut data table gpio_id
  475. uint8_t board_i2c_feature_slave_addr;
  476. uint8_t reserved3;
  477. uint16_t bootup_mvddq_mv;
  478. uint16_t bootup_mvpp_mv;
  479. uint32_t zfbstartaddrin16mb;
  480. uint32_t reserved2[3];
  481. };
  482. /*
  483. ***************************************************************************
  484. Data Table lcd_info structure
  485. ***************************************************************************
  486. */
  487. struct lcd_info_v2_1
  488. {
  489. struct atom_common_table_header table_header;
  490. struct atom_dtd_format lcd_timing;
  491. uint16_t backlight_pwm;
  492. uint16_t special_handle_cap;
  493. uint16_t panel_misc;
  494. uint16_t lvds_max_slink_pclk;
  495. uint16_t lvds_ss_percentage;
  496. uint16_t lvds_ss_rate_10hz;
  497. uint8_t pwr_on_digon_to_de; /*all pwr sequence numbers below are in uint of 4ms*/
  498. uint8_t pwr_on_de_to_vary_bl;
  499. uint8_t pwr_down_vary_bloff_to_de;
  500. uint8_t pwr_down_de_to_digoff;
  501. uint8_t pwr_off_delay;
  502. uint8_t pwr_on_vary_bl_to_blon;
  503. uint8_t pwr_down_bloff_to_vary_bloff;
  504. uint8_t panel_bpc;
  505. uint8_t dpcd_edp_config_cap;
  506. uint8_t dpcd_max_link_rate;
  507. uint8_t dpcd_max_lane_count;
  508. uint8_t dpcd_max_downspread;
  509. uint8_t min_allowed_bl_level;
  510. uint8_t max_allowed_bl_level;
  511. uint8_t bootup_bl_level;
  512. uint8_t dplvdsrxid;
  513. uint32_t reserved1[8];
  514. };
  515. /* lcd_info_v2_1.panel_misc defintion */
  516. enum atom_lcd_info_panel_misc{
  517. ATOM_PANEL_MISC_FPDI =0x0002,
  518. };
  519. //uceDPToLVDSRxId
  520. enum atom_lcd_info_dptolvds_rx_id
  521. {
  522. eDP_TO_LVDS_RX_DISABLE = 0x00, // no eDP->LVDS translator chip
  523. eDP_TO_LVDS_COMMON_ID = 0x01, // common eDP->LVDS translator chip without AMD SW init
  524. eDP_TO_LVDS_REALTEK_ID = 0x02, // Realtek tansaltor which require AMD SW init
  525. };
  526. /*
  527. ***************************************************************************
  528. Data Table gpio_pin_lut structure
  529. ***************************************************************************
  530. */
  531. struct atom_gpio_pin_assignment
  532. {
  533. uint32_t data_a_reg_index;
  534. uint8_t gpio_bitshift;
  535. uint8_t gpio_mask_bitshift;
  536. uint8_t gpio_id;
  537. uint8_t reserved;
  538. };
  539. /* atom_gpio_pin_assignment.gpio_id definition */
  540. enum atom_gpio_pin_assignment_gpio_id {
  541. I2C_HW_LANE_MUX =0x0f, /* only valid when bit7=1 */
  542. I2C_HW_ENGINE_ID_MASK =0x70, /* only valid when bit7=1 */
  543. 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 */
  544. /* gpio_id pre-define id for multiple usage */
  545. /* GPIO use to control PCIE_VDDC in certain SLT board */
  546. PCIE_VDDC_CONTROL_GPIO_PINID = 56,
  547. /* if PP_AC_DC_SWITCH_GPIO_PINID in Gpio_Pin_LutTable, AC/DC swithing feature is enable */
  548. PP_AC_DC_SWITCH_GPIO_PINID = 60,
  549. /* VDDC_REGULATOR_VRHOT_GPIO_PINID in Gpio_Pin_LutTable, VRHot feature is enable */
  550. VDDC_VRHOT_GPIO_PINID = 61,
  551. /*if VDDC_PCC_GPIO_PINID in GPIO_LUTable, Peak Current Control feature is enabled */
  552. VDDC_PCC_GPIO_PINID = 62,
  553. /* Only used on certain SLT/PA board to allow utility to cut Efuse. */
  554. EFUSE_CUT_ENABLE_GPIO_PINID = 63,
  555. /* ucGPIO=DRAM_SELF_REFRESH_GPIO_PIND uses for memory self refresh (ucGPIO=0, DRAM self-refresh; ucGPIO= */
  556. DRAM_SELF_REFRESH_GPIO_PINID = 64,
  557. /* Thermal interrupt output->system thermal chip GPIO pin */
  558. THERMAL_INT_OUTPUT_GPIO_PINID =65,
  559. };
  560. struct atom_gpio_pin_lut_v2_1
  561. {
  562. struct atom_common_table_header table_header;
  563. /*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 */
  564. struct atom_gpio_pin_assignment gpio_pin[8];
  565. };
  566. /*
  567. ***************************************************************************
  568. Data Table vram_usagebyfirmware structure
  569. ***************************************************************************
  570. */
  571. struct vram_usagebyfirmware_v2_1
  572. {
  573. struct atom_common_table_header table_header;
  574. uint32_t start_address_in_kb;
  575. uint16_t used_by_firmware_in_kb;
  576. uint16_t used_by_driver_in_kb;
  577. };
  578. /*
  579. ***************************************************************************
  580. Data Table displayobjectinfo structure
  581. ***************************************************************************
  582. */
  583. enum atom_object_record_type_id
  584. {
  585. ATOM_I2C_RECORD_TYPE =1,
  586. ATOM_HPD_INT_RECORD_TYPE =2,
  587. ATOM_OBJECT_GPIO_CNTL_RECORD_TYPE =9,
  588. ATOM_CONNECTOR_HPDPIN_LUT_RECORD_TYPE =16,
  589. ATOM_CONNECTOR_AUXDDC_LUT_RECORD_TYPE =17,
  590. ATOM_ENCODER_CAP_RECORD_TYPE=20,
  591. ATOM_BRACKET_LAYOUT_RECORD_TYPE=21,
  592. ATOM_CONNECTOR_FORCED_TMDS_CAP_RECORD_TYPE=22,
  593. ATOM_RECORD_END_TYPE =0xFF,
  594. };
  595. struct atom_common_record_header
  596. {
  597. uint8_t record_type; //An emun to indicate the record type
  598. uint8_t record_size; //The size of the whole record in byte
  599. };
  600. struct atom_i2c_record
  601. {
  602. struct atom_common_record_header record_header; //record_type = ATOM_I2C_RECORD_TYPE
  603. uint8_t i2c_id;
  604. uint8_t i2c_slave_addr; //The slave address, it's 0 when the record is attached to connector for DDC
  605. };
  606. struct atom_hpd_int_record
  607. {
  608. struct atom_common_record_header record_header; //record_type = ATOM_HPD_INT_RECORD_TYPE
  609. uint8_t pin_id; //Corresponding block in GPIO_PIN_INFO table gives the pin info
  610. uint8_t plugin_pin_state;
  611. };
  612. // Bit maps for ATOM_ENCODER_CAP_RECORD.usEncoderCap
  613. enum atom_encoder_caps_def
  614. {
  615. 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
  616. ATOM_ENCODER_CAP_RECORD_MST_EN =0x01, // from SI, this bit means DP MST is enable or not.
  617. ATOM_ENCODER_CAP_RECORD_HBR2_EN =0x02, // DP1.2 HBR2 setting is qualified and HBR2 can be enabled
  618. ATOM_ENCODER_CAP_RECORD_HDMI6Gbps_EN =0x04, // HDMI2.0 6Gbps enable or not.
  619. ATOM_ENCODER_CAP_RECORD_HBR3_EN =0x08, // DP1.3 HBR3 is supported by board.
  620. };
  621. struct atom_encoder_caps_record
  622. {
  623. struct atom_common_record_header record_header; //record_type = ATOM_ENCODER_CAP_RECORD_TYPE
  624. uint32_t encodercaps;
  625. };
  626. enum atom_connector_caps_def
  627. {
  628. ATOM_CONNECTOR_CAP_INTERNAL_DISPLAY = 0x01, //a cap bit to indicate that this non-embedded display connector is an internal display
  629. 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
  630. };
  631. struct atom_disp_connector_caps_record
  632. {
  633. struct atom_common_record_header record_header;
  634. uint32_t connectcaps;
  635. };
  636. //The following generic object gpio pin control record type will replace JTAG_RECORD/FPGA_CONTROL_RECORD/DVI_EXT_INPUT_RECORD above gradually
  637. struct atom_gpio_pin_control_pair
  638. {
  639. uint8_t gpio_id; // GPIO_ID, find the corresponding ID in GPIO_LUT table
  640. uint8_t gpio_pinstate; // Pin state showing how to set-up the pin
  641. };
  642. struct atom_object_gpio_cntl_record
  643. {
  644. struct atom_common_record_header record_header;
  645. uint8_t flag; // Future expnadibility
  646. uint8_t number_of_pins; // Number of GPIO pins used to control the object
  647. struct atom_gpio_pin_control_pair gpio[1]; // the real gpio pin pair determined by number of pins ucNumberOfPins
  648. };
  649. //Definitions for GPIO pin state
  650. enum atom_gpio_pin_control_pinstate_def
  651. {
  652. GPIO_PIN_TYPE_INPUT = 0x00,
  653. GPIO_PIN_TYPE_OUTPUT = 0x10,
  654. GPIO_PIN_TYPE_HW_CONTROL = 0x20,
  655. //For GPIO_PIN_TYPE_OUTPUT the following is defined
  656. GPIO_PIN_OUTPUT_STATE_MASK = 0x01,
  657. GPIO_PIN_OUTPUT_STATE_SHIFT = 0,
  658. GPIO_PIN_STATE_ACTIVE_LOW = 0x0,
  659. GPIO_PIN_STATE_ACTIVE_HIGH = 0x1,
  660. };
  661. // Indexes to GPIO array in GLSync record
  662. // GLSync record is for Frame Lock/Gen Lock feature.
  663. enum atom_glsync_record_gpio_index_def
  664. {
  665. ATOM_GPIO_INDEX_GLSYNC_REFCLK = 0,
  666. ATOM_GPIO_INDEX_GLSYNC_HSYNC = 1,
  667. ATOM_GPIO_INDEX_GLSYNC_VSYNC = 2,
  668. ATOM_GPIO_INDEX_GLSYNC_SWAP_REQ = 3,
  669. ATOM_GPIO_INDEX_GLSYNC_SWAP_GNT = 4,
  670. ATOM_GPIO_INDEX_GLSYNC_INTERRUPT = 5,
  671. ATOM_GPIO_INDEX_GLSYNC_V_RESET = 6,
  672. ATOM_GPIO_INDEX_GLSYNC_SWAP_CNTL = 7,
  673. ATOM_GPIO_INDEX_GLSYNC_SWAP_SEL = 8,
  674. ATOM_GPIO_INDEX_GLSYNC_MAX = 9,
  675. };
  676. struct atom_connector_hpdpin_lut_record //record for ATOM_CONNECTOR_HPDPIN_LUT_RECORD_TYPE
  677. {
  678. struct atom_common_record_header record_header;
  679. uint8_t hpd_pin_map[8];
  680. };
  681. struct atom_connector_auxddc_lut_record //record for ATOM_CONNECTOR_AUXDDC_LUT_RECORD_TYPE
  682. {
  683. struct atom_common_record_header record_header;
  684. uint8_t aux_ddc_map[8];
  685. };
  686. struct atom_connector_forced_tmds_cap_record
  687. {
  688. struct atom_common_record_header record_header;
  689. // override TMDS capability on this connector when it operate in TMDS mode. usMaxTmdsClkRate = max TMDS Clock in Mhz/2.5
  690. uint8_t maxtmdsclkrate_in2_5mhz;
  691. uint8_t reserved;
  692. };
  693. struct atom_connector_layout_info
  694. {
  695. uint16_t connectorobjid;
  696. uint8_t connector_type;
  697. uint8_t position;
  698. };
  699. // define ATOM_CONNECTOR_LAYOUT_INFO.ucConnectorType to describe the display connector size
  700. enum atom_connector_layout_info_connector_type_def
  701. {
  702. CONNECTOR_TYPE_DVI_D = 1,
  703. CONNECTOR_TYPE_HDMI = 4,
  704. CONNECTOR_TYPE_DISPLAY_PORT = 5,
  705. CONNECTOR_TYPE_MINI_DISPLAY_PORT = 6,
  706. };
  707. struct atom_bracket_layout_record
  708. {
  709. struct atom_common_record_header record_header;
  710. uint8_t bracketlen;
  711. uint8_t bracketwidth;
  712. uint8_t conn_num;
  713. uint8_t reserved;
  714. struct atom_connector_layout_info conn_info[1];
  715. };
  716. enum atom_display_device_tag_def{
  717. ATOM_DISPLAY_LCD1_SUPPORT = 0x0002, //an embedded display is either an LVDS or eDP signal type of display
  718. ATOM_DISPLAY_DFP1_SUPPORT = 0x0008,
  719. ATOM_DISPLAY_DFP2_SUPPORT = 0x0080,
  720. ATOM_DISPLAY_DFP3_SUPPORT = 0x0200,
  721. ATOM_DISPLAY_DFP4_SUPPORT = 0x0400,
  722. ATOM_DISPLAY_DFP5_SUPPORT = 0x0800,
  723. ATOM_DISPLAY_DFP6_SUPPORT = 0x0040,
  724. ATOM_DISPLAY_DFPx_SUPPORT = 0x0ec8,
  725. };
  726. struct atom_display_object_path_v2
  727. {
  728. uint16_t display_objid; //Connector Object ID or Misc Object ID
  729. uint16_t disp_recordoffset;
  730. uint16_t encoderobjid; //first encoder closer to the connector, could be either an external or intenal encoder
  731. uint16_t extencoderobjid; //2nd encoder after the first encoder, from the connector point of view;
  732. uint16_t encoder_recordoffset;
  733. uint16_t extencoder_recordoffset;
  734. 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
  735. uint8_t priority_id;
  736. uint8_t reserved;
  737. };
  738. struct display_object_info_table_v1_4
  739. {
  740. struct atom_common_table_header table_header;
  741. uint16_t supporteddevices;
  742. uint8_t number_of_path;
  743. uint8_t reserved;
  744. 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
  745. };
  746. /*
  747. ***************************************************************************
  748. Data Table dce_info structure
  749. ***************************************************************************
  750. */
  751. struct atom_display_controller_info_v4_1
  752. {
  753. struct atom_common_table_header table_header;
  754. uint32_t display_caps;
  755. uint32_t bootup_dispclk_10khz;
  756. uint16_t dce_refclk_10khz;
  757. uint16_t i2c_engine_refclk_10khz;
  758. uint16_t dvi_ss_percentage; // in unit of 0.001%
  759. uint16_t dvi_ss_rate_10hz;
  760. uint16_t hdmi_ss_percentage; // in unit of 0.001%
  761. uint16_t hdmi_ss_rate_10hz;
  762. uint16_t dp_ss_percentage; // in unit of 0.001%
  763. uint16_t dp_ss_rate_10hz;
  764. uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode
  765. uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode
  766. uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode
  767. uint8_t ss_reserved;
  768. uint8_t hardcode_mode_num; // a hardcode mode number defined in StandardVESA_TimingTable when a CRT or DFP EDID is not available
  769. uint8_t reserved1[3];
  770. uint16_t dpphy_refclk_10khz;
  771. uint16_t reserved2;
  772. uint8_t dceip_min_ver;
  773. uint8_t dceip_max_ver;
  774. uint8_t max_disp_pipe_num;
  775. uint8_t max_vbios_active_disp_pipe_num;
  776. uint8_t max_ppll_num;
  777. uint8_t max_disp_phy_num;
  778. uint8_t max_aux_pairs;
  779. uint8_t remotedisplayconfig;
  780. uint8_t reserved3[8];
  781. };
  782. struct atom_display_controller_info_v4_2
  783. {
  784. struct atom_common_table_header table_header;
  785. uint32_t display_caps;
  786. uint32_t bootup_dispclk_10khz;
  787. uint16_t dce_refclk_10khz;
  788. uint16_t i2c_engine_refclk_10khz;
  789. uint16_t dvi_ss_percentage; // in unit of 0.001%
  790. uint16_t dvi_ss_rate_10hz;
  791. uint16_t hdmi_ss_percentage; // in unit of 0.001%
  792. uint16_t hdmi_ss_rate_10hz;
  793. uint16_t dp_ss_percentage; // in unit of 0.001%
  794. uint16_t dp_ss_rate_10hz;
  795. uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode
  796. uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode
  797. uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode
  798. uint8_t ss_reserved;
  799. uint8_t dfp_hardcode_mode_num; // DFP hardcode mode number defined in StandardVESA_TimingTable when EDID is not available
  800. uint8_t dfp_hardcode_refreshrate;// DFP hardcode mode refreshrate defined in StandardVESA_TimingTable when EDID is not available
  801. uint8_t vga_hardcode_mode_num; // VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable
  802. uint8_t vga_hardcode_refreshrate;// VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable
  803. uint16_t dpphy_refclk_10khz;
  804. uint16_t reserved2;
  805. uint8_t dcnip_min_ver;
  806. uint8_t dcnip_max_ver;
  807. uint8_t max_disp_pipe_num;
  808. uint8_t max_vbios_active_disp_pipe_num;
  809. uint8_t max_ppll_num;
  810. uint8_t max_disp_phy_num;
  811. uint8_t max_aux_pairs;
  812. uint8_t remotedisplayconfig;
  813. uint8_t reserved3[8];
  814. };
  815. enum dce_info_caps_def
  816. {
  817. // only for VBIOS
  818. DCE_INFO_CAPS_FORCE_DISPDEV_CONNECTED =0x02,
  819. // only for VBIOS
  820. DCE_INFO_CAPS_DISABLE_DFP_DP_HBR2 =0x04,
  821. // only for VBIOS
  822. DCE_INFO_CAPS_ENABLE_INTERLAC_TIMING =0x08,
  823. };
  824. /*
  825. ***************************************************************************
  826. Data Table ATOM_EXTERNAL_DISPLAY_CONNECTION_INFO structure
  827. ***************************************************************************
  828. */
  829. struct atom_ext_display_path
  830. {
  831. uint16_t device_tag; //A bit vector to show what devices are supported
  832. uint16_t device_acpi_enum; //16bit device ACPI id.
  833. uint16_t connectorobjid; //A physical connector for displays to plug in, using object connector definitions
  834. uint8_t auxddclut_index; //An index into external AUX/DDC channel LUT
  835. uint8_t hpdlut_index; //An index into external HPD pin LUT
  836. uint16_t ext_encoder_objid; //external encoder object id
  837. uint8_t channelmapping; // if ucChannelMapping=0, using default one to one mapping
  838. uint8_t chpninvert; // bit vector for up to 8 lanes, =0: P and N is not invert, =1 P and N is inverted
  839. uint16_t caps;
  840. uint16_t reserved;
  841. };
  842. //usCaps
  843. enum ext_display_path_cap_def
  844. {
  845. EXT_DISPLAY_PATH_CAPS__HBR2_DISABLE =0x0001,
  846. EXT_DISPLAY_PATH_CAPS__DP_FIXED_VS_EN =0x0002,
  847. EXT_DISPLAY_PATH_CAPS__EXT_CHIP_MASK =0x007C,
  848. };
  849. struct atom_external_display_connection_info
  850. {
  851. struct atom_common_table_header table_header;
  852. uint8_t guid[16]; // a GUID is a 16 byte long string
  853. struct atom_ext_display_path path[7]; // total of fixed 7 entries.
  854. uint8_t checksum; // a simple Checksum of the sum of whole structure equal to 0x0.
  855. uint8_t stereopinid; // use for eDP panel
  856. uint8_t remotedisplayconfig;
  857. uint8_t edptolvdsrxid;
  858. uint8_t fixdpvoltageswing; // usCaps[1]=1, this indicate DP_LANE_SET value
  859. uint8_t reserved[3]; // for potential expansion
  860. };
  861. /*
  862. ***************************************************************************
  863. Data Table integratedsysteminfo structure
  864. ***************************************************************************
  865. */
  866. struct atom_camera_dphy_timing_param
  867. {
  868. uint8_t profile_id; // SENSOR_PROFILES
  869. uint32_t param;
  870. };
  871. struct atom_camera_dphy_elec_param
  872. {
  873. uint16_t param[3];
  874. };
  875. struct atom_camera_module_info
  876. {
  877. uint8_t module_id; // 0: Rear, 1: Front right of user, 2: Front left of user
  878. uint8_t module_name[8];
  879. struct atom_camera_dphy_timing_param timingparam[6]; // Exact number is under estimation and confirmation from sensor vendor
  880. };
  881. struct atom_camera_flashlight_info
  882. {
  883. uint8_t flashlight_id; // 0: Rear, 1: Front
  884. uint8_t name[8];
  885. };
  886. struct atom_camera_data
  887. {
  888. uint32_t versionCode;
  889. struct atom_camera_module_info cameraInfo[3]; // Assuming 3 camera sensors max
  890. struct atom_camera_flashlight_info flashInfo; // Assuming 1 flashlight max
  891. struct atom_camera_dphy_elec_param dphy_param;
  892. uint32_t crc_val; // CRC
  893. };
  894. struct atom_14nm_dpphy_dvihdmi_tuningset
  895. {
  896. uint32_t max_symclk_in10khz;
  897. uint8_t encoder_mode; //atom_encode_mode_def, =2: DVI, =3: HDMI mode
  898. uint8_t phy_sel; //bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf
  899. uint16_t margindeemph; //COMMON_MAR_DEEMPH_NOM[7:0]tx_margin_nom [15:8]deemph_gen1_nom
  900. uint8_t deemph_6db_4; //COMMON_SELDEEMPH60[31:24]deemph_6db_4
  901. 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
  902. uint8_t tx_driver_fifty_ohms; //COMMON_ZCALCODE_CTRL[21].tx_driver_fifty_ohms
  903. uint8_t deemph_sel; //MARGIN_DEEMPH_LANE0.DEEMPH_SEL
  904. };
  905. struct atom_14nm_dpphy_dp_setting{
  906. uint8_t dp_vs_pemph_level; //enum of atom_dp_vs_preemph_def
  907. uint16_t margindeemph; //COMMON_MAR_DEEMPH_NOM[7:0]tx_margin_nom [15:8]deemph_gen1_nom
  908. uint8_t deemph_6db_4; //COMMON_SELDEEMPH60[31:24]deemph_6db_4
  909. 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
  910. };
  911. struct atom_14nm_dpphy_dp_tuningset{
  912. uint8_t phy_sel; // bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf
  913. uint8_t version;
  914. uint16_t table_size; // size of atom_14nm_dpphy_dp_tuningset
  915. uint16_t reserved;
  916. struct atom_14nm_dpphy_dp_setting dptuning[10];
  917. };
  918. struct atom_14nm_dig_transmitter_info_header_v4_0{
  919. struct atom_common_table_header table_header;
  920. uint16_t pcie_phy_tmds_hdmi_macro_settings_offset; // offset of PCIEPhyTMDSHDMIMacroSettingsTbl
  921. uint16_t uniphy_vs_emph_lookup_table_offset; // offset of UniphyVSEmphLookUpTbl
  922. uint16_t uniphy_xbar_settings_table_offset; // offset of UniphyXbarSettingsTbl
  923. };
  924. struct atom_14nm_combphy_tmds_vs_set
  925. {
  926. uint8_t sym_clk;
  927. uint8_t dig_mode;
  928. uint8_t phy_sel;
  929. uint16_t common_mar_deemph_nom__margin_deemph_val;
  930. uint8_t common_seldeemph60__deemph_6db_4_val;
  931. uint8_t cmd_bus_global_for_tx_lane0__boostadj_val ;
  932. uint8_t common_zcalcode_ctrl__tx_driver_fifty_ohms_val;
  933. uint8_t margin_deemph_lane0__deemph_sel_val;
  934. };
  935. struct atom_i2c_reg_info {
  936. uint8_t ucI2cRegIndex;
  937. uint8_t ucI2cRegVal;
  938. };
  939. struct atom_hdmi_retimer_redriver_set {
  940. uint8_t HdmiSlvAddr;
  941. uint8_t HdmiRegNum;
  942. uint8_t Hdmi6GRegNum;
  943. struct atom_i2c_reg_info HdmiRegSetting[9]; //For non 6G Hz use
  944. struct atom_i2c_reg_info Hdmi6GhzRegSetting[3]; //For 6G Hz use.
  945. };
  946. struct atom_integrated_system_info_v1_11
  947. {
  948. struct atom_common_table_header table_header;
  949. uint32_t vbios_misc; //enum of atom_system_vbiosmisc_def
  950. uint32_t gpucapinfo; //enum of atom_system_gpucapinf_def
  951. uint32_t system_config;
  952. uint32_t cpucapinfo;
  953. uint16_t gpuclk_ss_percentage; //unit of 0.001%, 1000 mean 1%
  954. uint16_t gpuclk_ss_type;
  955. uint16_t lvds_ss_percentage; //unit of 0.001%, 1000 mean 1%
  956. uint16_t lvds_ss_rate_10hz;
  957. uint16_t hdmi_ss_percentage; //unit of 0.001%, 1000 mean 1%
  958. uint16_t hdmi_ss_rate_10hz;
  959. uint16_t dvi_ss_percentage; //unit of 0.001%, 1000 mean 1%
  960. uint16_t dvi_ss_rate_10hz;
  961. uint16_t dpphy_override; // bit vector, enum of atom_sysinfo_dpphy_override_def
  962. uint16_t lvds_misc; // enum of atom_sys_info_lvds_misc_def
  963. uint16_t backlight_pwm_hz; // pwm frequency in hz
  964. uint8_t memorytype; // enum of atom_sys_mem_type
  965. uint8_t umachannelnumber; // number of memory channels
  966. uint8_t pwr_on_digon_to_de; /* all pwr sequence numbers below are in uint of 4ms */
  967. uint8_t pwr_on_de_to_vary_bl;
  968. uint8_t pwr_down_vary_bloff_to_de;
  969. uint8_t pwr_down_de_to_digoff;
  970. uint8_t pwr_off_delay;
  971. uint8_t pwr_on_vary_bl_to_blon;
  972. uint8_t pwr_down_bloff_to_vary_bloff;
  973. uint8_t min_allowed_bl_level;
  974. struct atom_external_display_connection_info extdispconninfo;
  975. struct atom_14nm_dpphy_dvihdmi_tuningset dvi_tuningset;
  976. struct atom_14nm_dpphy_dvihdmi_tuningset hdmi_tuningset;
  977. struct atom_14nm_dpphy_dvihdmi_tuningset hdmi6g_tuningset;
  978. struct atom_14nm_dpphy_dp_tuningset dp_tuningset;
  979. struct atom_14nm_dpphy_dp_tuningset dp_hbr3_tuningset;
  980. struct atom_camera_data camera_info;
  981. struct atom_hdmi_retimer_redriver_set dp0_retimer_set; //for DP0
  982. struct atom_hdmi_retimer_redriver_set dp1_retimer_set; //for DP1
  983. struct atom_hdmi_retimer_redriver_set dp2_retimer_set; //for DP2
  984. struct atom_hdmi_retimer_redriver_set dp3_retimer_set; //for DP3
  985. uint32_t reserved[108];
  986. };
  987. // system_config
  988. enum atom_system_vbiosmisc_def{
  989. INTEGRATED_SYSTEM_INFO__GET_EDID_CALLBACK_FUNC_SUPPORT = 0x01,
  990. };
  991. // gpucapinfo
  992. enum atom_system_gpucapinf_def{
  993. SYS_INFO_GPUCAPS__ENABEL_DFS_BYPASS = 0x10,
  994. };
  995. //dpphy_override
  996. enum atom_sysinfo_dpphy_override_def{
  997. ATOM_ENABLE_DVI_TUNINGSET = 0x01,
  998. ATOM_ENABLE_HDMI_TUNINGSET = 0x02,
  999. ATOM_ENABLE_HDMI6G_TUNINGSET = 0x04,
  1000. ATOM_ENABLE_DP_TUNINGSET = 0x08,
  1001. ATOM_ENABLE_DP_HBR3_TUNINGSET = 0x10,
  1002. };
  1003. //lvds_misc
  1004. enum atom_sys_info_lvds_misc_def
  1005. {
  1006. SYS_INFO_LVDS_MISC_888_FPDI_MODE =0x01,
  1007. SYS_INFO_LVDS_MISC_888_BPC_MODE =0x04,
  1008. SYS_INFO_LVDS_MISC_OVERRIDE_EN =0x08,
  1009. };
  1010. //memorytype DMI Type 17 offset 12h - Memory Type
  1011. enum atom_dmi_t17_mem_type_def{
  1012. OtherMemType = 0x01, ///< Assign 01 to Other
  1013. UnknownMemType, ///< Assign 02 to Unknown
  1014. DramMemType, ///< Assign 03 to DRAM
  1015. EdramMemType, ///< Assign 04 to EDRAM
  1016. VramMemType, ///< Assign 05 to VRAM
  1017. SramMemType, ///< Assign 06 to SRAM
  1018. RamMemType, ///< Assign 07 to RAM
  1019. RomMemType, ///< Assign 08 to ROM
  1020. FlashMemType, ///< Assign 09 to Flash
  1021. EepromMemType, ///< Assign 10 to EEPROM
  1022. FepromMemType, ///< Assign 11 to FEPROM
  1023. EpromMemType, ///< Assign 12 to EPROM
  1024. CdramMemType, ///< Assign 13 to CDRAM
  1025. ThreeDramMemType, ///< Assign 14 to 3DRAM
  1026. SdramMemType, ///< Assign 15 to SDRAM
  1027. SgramMemType, ///< Assign 16 to SGRAM
  1028. RdramMemType, ///< Assign 17 to RDRAM
  1029. DdrMemType, ///< Assign 18 to DDR
  1030. Ddr2MemType, ///< Assign 19 to DDR2
  1031. Ddr2FbdimmMemType, ///< Assign 20 to DDR2 FB-DIMM
  1032. Ddr3MemType = 0x18, ///< Assign 24 to DDR3
  1033. Fbd2MemType, ///< Assign 25 to FBD2
  1034. Ddr4MemType, ///< Assign 26 to DDR4
  1035. LpDdrMemType, ///< Assign 27 to LPDDR
  1036. LpDdr2MemType, ///< Assign 28 to LPDDR2
  1037. LpDdr3MemType, ///< Assign 29 to LPDDR3
  1038. LpDdr4MemType, ///< Assign 30 to LPDDR4
  1039. };
  1040. // this Table is used starting from NL/AM, used by SBIOS and pass the IntegratedSystemInfoTable/PowerPlayInfoTable/SystemCameraInfoTable
  1041. struct atom_fusion_system_info_v4
  1042. {
  1043. struct atom_integrated_system_info_v1_11 sysinfo; // refer to ATOM_INTEGRATED_SYSTEM_INFO_V1_8 definition
  1044. uint32_t powerplayinfo[256]; // Reserve 1024 bytes space for PowerPlayInfoTable
  1045. };
  1046. /*
  1047. ***************************************************************************
  1048. Data Table gfx_info structure
  1049. ***************************************************************************
  1050. */
  1051. struct atom_gfx_info_v2_2
  1052. {
  1053. struct atom_common_table_header table_header;
  1054. uint8_t gfxip_min_ver;
  1055. uint8_t gfxip_max_ver;
  1056. uint8_t max_shader_engines;
  1057. uint8_t max_tile_pipes;
  1058. uint8_t max_cu_per_sh;
  1059. uint8_t max_sh_per_se;
  1060. uint8_t max_backends_per_se;
  1061. uint8_t max_texture_channel_caches;
  1062. uint32_t regaddr_cp_dma_src_addr;
  1063. uint32_t regaddr_cp_dma_src_addr_hi;
  1064. uint32_t regaddr_cp_dma_dst_addr;
  1065. uint32_t regaddr_cp_dma_dst_addr_hi;
  1066. uint32_t regaddr_cp_dma_command;
  1067. uint32_t regaddr_cp_status;
  1068. uint32_t regaddr_rlc_gpu_clock_32;
  1069. uint32_t rlc_gpu_timer_refclk;
  1070. };
  1071. struct atom_gfx_info_v2_3 {
  1072. struct atom_common_table_header table_header;
  1073. uint8_t gfxip_min_ver;
  1074. uint8_t gfxip_max_ver;
  1075. uint8_t max_shader_engines;
  1076. uint8_t max_tile_pipes;
  1077. uint8_t max_cu_per_sh;
  1078. uint8_t max_sh_per_se;
  1079. uint8_t max_backends_per_se;
  1080. uint8_t max_texture_channel_caches;
  1081. uint32_t regaddr_cp_dma_src_addr;
  1082. uint32_t regaddr_cp_dma_src_addr_hi;
  1083. uint32_t regaddr_cp_dma_dst_addr;
  1084. uint32_t regaddr_cp_dma_dst_addr_hi;
  1085. uint32_t regaddr_cp_dma_command;
  1086. uint32_t regaddr_cp_status;
  1087. uint32_t regaddr_rlc_gpu_clock_32;
  1088. uint32_t rlc_gpu_timer_refclk;
  1089. uint8_t active_cu_per_sh;
  1090. uint8_t active_rb_per_se;
  1091. uint16_t gcgoldenoffset;
  1092. uint32_t rm21_sram_vmin_value;
  1093. };
  1094. /*
  1095. ***************************************************************************
  1096. Data Table smu_info structure
  1097. ***************************************************************************
  1098. */
  1099. struct atom_smu_info_v3_1
  1100. {
  1101. struct atom_common_table_header table_header;
  1102. uint8_t smuip_min_ver;
  1103. uint8_t smuip_max_ver;
  1104. uint8_t smu_rsd1;
  1105. uint8_t gpuclk_ss_mode; // enum of atom_spread_spectrum_mode
  1106. uint16_t sclk_ss_percentage;
  1107. uint16_t sclk_ss_rate_10hz;
  1108. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1109. uint16_t gpuclk_ss_rate_10hz;
  1110. uint32_t core_refclk_10khz;
  1111. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1112. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1113. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1114. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1115. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1116. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1117. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1118. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1119. };
  1120. struct atom_smu_info_v3_2 {
  1121. struct atom_common_table_header table_header;
  1122. uint8_t smuip_min_ver;
  1123. uint8_t smuip_max_ver;
  1124. uint8_t smu_rsd1;
  1125. uint8_t gpuclk_ss_mode;
  1126. uint16_t sclk_ss_percentage;
  1127. uint16_t sclk_ss_rate_10hz;
  1128. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1129. uint16_t gpuclk_ss_rate_10hz;
  1130. uint32_t core_refclk_10khz;
  1131. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1132. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1133. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1134. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1135. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1136. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1137. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1138. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1139. uint8_t pcc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for PCC, =0xff means invalid
  1140. uint8_t pcc_gpio_polarity; // GPIO polarity for CTF
  1141. uint16_t smugoldenoffset;
  1142. uint32_t gpupll_vco_freq_10khz;
  1143. uint32_t bootup_smnclk_10khz;
  1144. uint32_t bootup_socclk_10khz;
  1145. uint32_t bootup_mp0clk_10khz;
  1146. uint32_t bootup_mp1clk_10khz;
  1147. uint32_t bootup_lclk_10khz;
  1148. uint32_t bootup_dcefclk_10khz;
  1149. uint32_t ctf_threshold_override_value;
  1150. uint32_t reserved[5];
  1151. };
  1152. struct atom_smu_info_v3_3 {
  1153. struct atom_common_table_header table_header;
  1154. uint8_t smuip_min_ver;
  1155. uint8_t smuip_max_ver;
  1156. uint8_t smu_rsd1;
  1157. uint8_t gpuclk_ss_mode;
  1158. uint16_t sclk_ss_percentage;
  1159. uint16_t sclk_ss_rate_10hz;
  1160. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1161. uint16_t gpuclk_ss_rate_10hz;
  1162. uint32_t core_refclk_10khz;
  1163. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1164. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1165. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1166. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1167. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1168. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1169. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1170. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1171. uint8_t pcc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for PCC, =0xff means invalid
  1172. uint8_t pcc_gpio_polarity; // GPIO polarity for CTF
  1173. uint16_t smugoldenoffset;
  1174. uint32_t gpupll_vco_freq_10khz;
  1175. uint32_t bootup_smnclk_10khz;
  1176. uint32_t bootup_socclk_10khz;
  1177. uint32_t bootup_mp0clk_10khz;
  1178. uint32_t bootup_mp1clk_10khz;
  1179. uint32_t bootup_lclk_10khz;
  1180. uint32_t bootup_dcefclk_10khz;
  1181. uint32_t ctf_threshold_override_value;
  1182. uint32_t syspll3_0_vco_freq_10khz;
  1183. uint32_t syspll3_1_vco_freq_10khz;
  1184. uint32_t bootup_fclk_10khz;
  1185. uint32_t bootup_waflclk_10khz;
  1186. uint32_t reserved[3];
  1187. };
  1188. /*
  1189. ***************************************************************************
  1190. Data Table smc_dpm_info structure
  1191. ***************************************************************************
  1192. */
  1193. struct atom_smc_dpm_info_v4_1
  1194. {
  1195. struct atom_common_table_header table_header;
  1196. uint8_t liquid1_i2c_address;
  1197. uint8_t liquid2_i2c_address;
  1198. uint8_t vr_i2c_address;
  1199. uint8_t plx_i2c_address;
  1200. uint8_t liquid_i2c_linescl;
  1201. uint8_t liquid_i2c_linesda;
  1202. uint8_t vr_i2c_linescl;
  1203. uint8_t vr_i2c_linesda;
  1204. uint8_t plx_i2c_linescl;
  1205. uint8_t plx_i2c_linesda;
  1206. uint8_t vrsensorpresent;
  1207. uint8_t liquidsensorpresent;
  1208. uint16_t maxvoltagestepgfx;
  1209. uint16_t maxvoltagestepsoc;
  1210. uint8_t vddgfxvrmapping;
  1211. uint8_t vddsocvrmapping;
  1212. uint8_t vddmem0vrmapping;
  1213. uint8_t vddmem1vrmapping;
  1214. uint8_t gfxulvphasesheddingmask;
  1215. uint8_t soculvphasesheddingmask;
  1216. uint8_t padding8_v[2];
  1217. uint16_t gfxmaxcurrent;
  1218. uint8_t gfxoffset;
  1219. uint8_t padding_telemetrygfx;
  1220. uint16_t socmaxcurrent;
  1221. uint8_t socoffset;
  1222. uint8_t padding_telemetrysoc;
  1223. uint16_t mem0maxcurrent;
  1224. uint8_t mem0offset;
  1225. uint8_t padding_telemetrymem0;
  1226. uint16_t mem1maxcurrent;
  1227. uint8_t mem1offset;
  1228. uint8_t padding_telemetrymem1;
  1229. uint8_t acdcgpio;
  1230. uint8_t acdcpolarity;
  1231. uint8_t vr0hotgpio;
  1232. uint8_t vr0hotpolarity;
  1233. uint8_t vr1hotgpio;
  1234. uint8_t vr1hotpolarity;
  1235. uint8_t padding1;
  1236. uint8_t padding2;
  1237. uint8_t ledpin0;
  1238. uint8_t ledpin1;
  1239. uint8_t ledpin2;
  1240. uint8_t padding8_4;
  1241. uint8_t pllgfxclkspreadenabled;
  1242. uint8_t pllgfxclkspreadpercent;
  1243. uint16_t pllgfxclkspreadfreq;
  1244. uint8_t uclkspreadenabled;
  1245. uint8_t uclkspreadpercent;
  1246. uint16_t uclkspreadfreq;
  1247. uint8_t socclkspreadenabled;
  1248. uint8_t socclkspreadpercent;
  1249. uint16_t socclkspreadfreq;
  1250. uint8_t acggfxclkspreadenabled;
  1251. uint8_t acggfxclkspreadpercent;
  1252. uint16_t acggfxclkspreadfreq;
  1253. uint32_t boardreserved[10];
  1254. };
  1255. /*
  1256. ***************************************************************************
  1257. Data Table asic_profiling_info structure
  1258. ***************************************************************************
  1259. */
  1260. struct atom_asic_profiling_info_v4_1
  1261. {
  1262. struct atom_common_table_header table_header;
  1263. uint32_t maxvddc;
  1264. uint32_t minvddc;
  1265. uint32_t avfs_meannsigma_acontant0;
  1266. uint32_t avfs_meannsigma_acontant1;
  1267. uint32_t avfs_meannsigma_acontant2;
  1268. uint16_t avfs_meannsigma_dc_tol_sigma;
  1269. uint16_t avfs_meannsigma_platform_mean;
  1270. uint16_t avfs_meannsigma_platform_sigma;
  1271. uint32_t gb_vdroop_table_cksoff_a0;
  1272. uint32_t gb_vdroop_table_cksoff_a1;
  1273. uint32_t gb_vdroop_table_cksoff_a2;
  1274. uint32_t gb_vdroop_table_ckson_a0;
  1275. uint32_t gb_vdroop_table_ckson_a1;
  1276. uint32_t gb_vdroop_table_ckson_a2;
  1277. uint32_t avfsgb_fuse_table_cksoff_m1;
  1278. uint32_t avfsgb_fuse_table_cksoff_m2;
  1279. uint32_t avfsgb_fuse_table_cksoff_b;
  1280. uint32_t avfsgb_fuse_table_ckson_m1;
  1281. uint32_t avfsgb_fuse_table_ckson_m2;
  1282. uint32_t avfsgb_fuse_table_ckson_b;
  1283. uint16_t max_voltage_0_25mv;
  1284. uint8_t enable_gb_vdroop_table_cksoff;
  1285. uint8_t enable_gb_vdroop_table_ckson;
  1286. uint8_t enable_gb_fuse_table_cksoff;
  1287. uint8_t enable_gb_fuse_table_ckson;
  1288. uint16_t psm_age_comfactor;
  1289. uint8_t enable_apply_avfs_cksoff_voltage;
  1290. uint8_t reserved;
  1291. uint32_t dispclk2gfxclk_a;
  1292. uint32_t dispclk2gfxclk_b;
  1293. uint32_t dispclk2gfxclk_c;
  1294. uint32_t pixclk2gfxclk_a;
  1295. uint32_t pixclk2gfxclk_b;
  1296. uint32_t pixclk2gfxclk_c;
  1297. uint32_t dcefclk2gfxclk_a;
  1298. uint32_t dcefclk2gfxclk_b;
  1299. uint32_t dcefclk2gfxclk_c;
  1300. uint32_t phyclk2gfxclk_a;
  1301. uint32_t phyclk2gfxclk_b;
  1302. uint32_t phyclk2gfxclk_c;
  1303. };
  1304. struct atom_asic_profiling_info_v4_2 {
  1305. struct atom_common_table_header table_header;
  1306. uint32_t maxvddc;
  1307. uint32_t minvddc;
  1308. uint32_t avfs_meannsigma_acontant0;
  1309. uint32_t avfs_meannsigma_acontant1;
  1310. uint32_t avfs_meannsigma_acontant2;
  1311. uint16_t avfs_meannsigma_dc_tol_sigma;
  1312. uint16_t avfs_meannsigma_platform_mean;
  1313. uint16_t avfs_meannsigma_platform_sigma;
  1314. uint32_t gb_vdroop_table_cksoff_a0;
  1315. uint32_t gb_vdroop_table_cksoff_a1;
  1316. uint32_t gb_vdroop_table_cksoff_a2;
  1317. uint32_t gb_vdroop_table_ckson_a0;
  1318. uint32_t gb_vdroop_table_ckson_a1;
  1319. uint32_t gb_vdroop_table_ckson_a2;
  1320. uint32_t avfsgb_fuse_table_cksoff_m1;
  1321. uint32_t avfsgb_fuse_table_cksoff_m2;
  1322. uint32_t avfsgb_fuse_table_cksoff_b;
  1323. uint32_t avfsgb_fuse_table_ckson_m1;
  1324. uint32_t avfsgb_fuse_table_ckson_m2;
  1325. uint32_t avfsgb_fuse_table_ckson_b;
  1326. uint16_t max_voltage_0_25mv;
  1327. uint8_t enable_gb_vdroop_table_cksoff;
  1328. uint8_t enable_gb_vdroop_table_ckson;
  1329. uint8_t enable_gb_fuse_table_cksoff;
  1330. uint8_t enable_gb_fuse_table_ckson;
  1331. uint16_t psm_age_comfactor;
  1332. uint8_t enable_apply_avfs_cksoff_voltage;
  1333. uint8_t reserved;
  1334. uint32_t dispclk2gfxclk_a;
  1335. uint32_t dispclk2gfxclk_b;
  1336. uint32_t dispclk2gfxclk_c;
  1337. uint32_t pixclk2gfxclk_a;
  1338. uint32_t pixclk2gfxclk_b;
  1339. uint32_t pixclk2gfxclk_c;
  1340. uint32_t dcefclk2gfxclk_a;
  1341. uint32_t dcefclk2gfxclk_b;
  1342. uint32_t dcefclk2gfxclk_c;
  1343. uint32_t phyclk2gfxclk_a;
  1344. uint32_t phyclk2gfxclk_b;
  1345. uint32_t phyclk2gfxclk_c;
  1346. uint32_t acg_gb_vdroop_table_a0;
  1347. uint32_t acg_gb_vdroop_table_a1;
  1348. uint32_t acg_gb_vdroop_table_a2;
  1349. uint32_t acg_avfsgb_fuse_table_m1;
  1350. uint32_t acg_avfsgb_fuse_table_m2;
  1351. uint32_t acg_avfsgb_fuse_table_b;
  1352. uint8_t enable_acg_gb_vdroop_table;
  1353. uint8_t enable_acg_gb_fuse_table;
  1354. uint32_t acg_dispclk2gfxclk_a;
  1355. uint32_t acg_dispclk2gfxclk_b;
  1356. uint32_t acg_dispclk2gfxclk_c;
  1357. uint32_t acg_pixclk2gfxclk_a;
  1358. uint32_t acg_pixclk2gfxclk_b;
  1359. uint32_t acg_pixclk2gfxclk_c;
  1360. uint32_t acg_dcefclk2gfxclk_a;
  1361. uint32_t acg_dcefclk2gfxclk_b;
  1362. uint32_t acg_dcefclk2gfxclk_c;
  1363. uint32_t acg_phyclk2gfxclk_a;
  1364. uint32_t acg_phyclk2gfxclk_b;
  1365. uint32_t acg_phyclk2gfxclk_c;
  1366. };
  1367. /*
  1368. ***************************************************************************
  1369. Data Table multimedia_info structure
  1370. ***************************************************************************
  1371. */
  1372. struct atom_multimedia_info_v2_1
  1373. {
  1374. struct atom_common_table_header table_header;
  1375. uint8_t uvdip_min_ver;
  1376. uint8_t uvdip_max_ver;
  1377. uint8_t vceip_min_ver;
  1378. uint8_t vceip_max_ver;
  1379. uint16_t uvd_enc_max_input_width_pixels;
  1380. uint16_t uvd_enc_max_input_height_pixels;
  1381. uint16_t vce_enc_max_input_width_pixels;
  1382. uint16_t vce_enc_max_input_height_pixels;
  1383. uint32_t uvd_enc_max_bandwidth; // 16x16 pixels/sec, codec independent
  1384. uint32_t vce_enc_max_bandwidth; // 16x16 pixels/sec, codec independent
  1385. };
  1386. /*
  1387. ***************************************************************************
  1388. Data Table umc_info structure
  1389. ***************************************************************************
  1390. */
  1391. struct atom_umc_info_v3_1
  1392. {
  1393. struct atom_common_table_header table_header;
  1394. uint32_t ucode_version;
  1395. uint32_t ucode_rom_startaddr;
  1396. uint32_t ucode_length;
  1397. uint16_t umc_reg_init_offset;
  1398. uint16_t customer_ucode_name_offset;
  1399. uint16_t mclk_ss_percentage;
  1400. uint16_t mclk_ss_rate_10hz;
  1401. uint8_t umcip_min_ver;
  1402. uint8_t umcip_max_ver;
  1403. uint8_t vram_type; //enum of atom_dgpu_vram_type
  1404. uint8_t umc_config;
  1405. uint32_t mem_refclk_10khz;
  1406. };
  1407. /*
  1408. ***************************************************************************
  1409. Data Table vram_info structure
  1410. ***************************************************************************
  1411. */
  1412. struct atom_vram_module_v9
  1413. {
  1414. // Design Specific Values
  1415. uint32_t memory_size; // Total memory size in unit of MB for CONFIG_MEMSIZE zeros
  1416. uint32_t channel_enable; // for 32 channel ASIC usage
  1417. uint32_t umcch_addrcfg;
  1418. uint32_t umcch_addrsel;
  1419. uint32_t umcch_colsel;
  1420. uint16_t vram_module_size; // Size of atom_vram_module_v9
  1421. uint8_t ext_memory_id; // Current memory module ID
  1422. uint8_t memory_type; // enum of atom_dgpu_vram_type
  1423. uint8_t channel_num; // Number of mem. channels supported in this module
  1424. uint8_t channel_width; // CHANNEL_16BIT/CHANNEL_32BIT/CHANNEL_64BIT
  1425. uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16
  1426. uint8_t tunningset_id; // MC phy registers set per.
  1427. uint8_t vender_rev_id; // [7:4] Revision, [3:0] Vendor code
  1428. uint8_t refreshrate; // [1:0]=RefreshFactor (00=8ms, 01=16ms, 10=32ms,11=64ms)
  1429. uint16_t vram_rsd2; // reserved
  1430. char dram_pnstring[20]; // part number end with '0'.
  1431. };
  1432. struct atom_vram_info_header_v2_3
  1433. {
  1434. struct atom_common_table_header table_header;
  1435. uint16_t mem_adjust_tbloffset; // offset of atom_umc_init_reg_block structure for memory vendor specific UMC adjust setting
  1436. uint16_t mem_clk_patch_tbloffset; // offset of atom_umc_init_reg_block structure for memory clock specific UMC setting
  1437. uint16_t mc_adjust_pertile_tbloffset; // offset of atom_umc_init_reg_block structure for Per Byte Offset Preset Settings
  1438. uint16_t mc_phyinit_tbloffset; // offset of atom_umc_init_reg_block structure for MC phy init set
  1439. uint16_t dram_data_remap_tbloffset; // reserved for now
  1440. uint16_t vram_rsd2[3];
  1441. uint8_t vram_module_num; // indicate number of VRAM module
  1442. uint8_t vram_rsd1[2];
  1443. uint8_t mc_phy_tile_num; // indicate the MCD tile number which use in DramDataRemapTbl and usMcAdjustPerTileTblOffset
  1444. struct atom_vram_module_v9 vram_module[16]; // just for allocation, real number of blocks is in ucNumOfVRAMModule;
  1445. };
  1446. struct atom_umc_register_addr_info{
  1447. uint32_t umc_register_addr:24;
  1448. uint32_t umc_reg_type_ind:1;
  1449. uint32_t umc_reg_rsvd:7;
  1450. };
  1451. //atom_umc_register_addr_info.
  1452. enum atom_umc_register_addr_info_flag{
  1453. b3ATOM_UMC_REG_ADD_INFO_INDIRECT_ACCESS =0x01,
  1454. };
  1455. union atom_umc_register_addr_info_access
  1456. {
  1457. struct atom_umc_register_addr_info umc_reg_addr;
  1458. uint32_t u32umc_reg_addr;
  1459. };
  1460. struct atom_umc_reg_setting_id_config{
  1461. uint32_t memclockrange:24;
  1462. uint32_t mem_blk_id:8;
  1463. };
  1464. union atom_umc_reg_setting_id_config_access
  1465. {
  1466. struct atom_umc_reg_setting_id_config umc_id_access;
  1467. uint32_t u32umc_id_access;
  1468. };
  1469. struct atom_umc_reg_setting_data_block{
  1470. union atom_umc_reg_setting_id_config_access block_id;
  1471. uint32_t u32umc_reg_data[1];
  1472. };
  1473. struct atom_umc_init_reg_block{
  1474. uint16_t umc_reg_num;
  1475. uint16_t reserved;
  1476. union atom_umc_register_addr_info_access umc_reg_list[1]; //for allocation purpose, the real number come from umc_reg_num;
  1477. struct atom_umc_reg_setting_data_block umc_reg_setting_list[1];
  1478. };
  1479. /*
  1480. ***************************************************************************
  1481. Data Table voltageobject_info structure
  1482. ***************************************************************************
  1483. */
  1484. struct atom_i2c_data_entry
  1485. {
  1486. uint16_t i2c_reg_index; // i2c register address, can be up to 16bit
  1487. uint16_t i2c_reg_data; // i2c register data, can be up to 16bit
  1488. };
  1489. struct atom_voltage_object_header_v4{
  1490. uint8_t voltage_type; //enum atom_voltage_type
  1491. uint8_t voltage_mode; //enum atom_voltage_object_mode
  1492. uint16_t object_size; //Size of Object
  1493. };
  1494. // atom_voltage_object_header_v4.voltage_mode
  1495. enum atom_voltage_object_mode
  1496. {
  1497. VOLTAGE_OBJ_GPIO_LUT = 0, //VOLTAGE and GPIO Lookup table ->atom_gpio_voltage_object_v4
  1498. VOLTAGE_OBJ_VR_I2C_INIT_SEQ = 3, //VOLTAGE REGULATOR INIT sequece through I2C -> atom_i2c_voltage_object_v4
  1499. VOLTAGE_OBJ_PHASE_LUT = 4, //Set Vregulator Phase lookup table ->atom_gpio_voltage_object_v4
  1500. VOLTAGE_OBJ_SVID2 = 7, //Indicate voltage control by SVID2 ->atom_svid2_voltage_object_v4
  1501. VOLTAGE_OBJ_EVV = 8,
  1502. VOLTAGE_OBJ_MERGED_POWER = 9,
  1503. };
  1504. struct atom_i2c_voltage_object_v4
  1505. {
  1506. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_VR_I2C_INIT_SEQ
  1507. uint8_t regulator_id; //Indicate Voltage Regulator Id
  1508. uint8_t i2c_id;
  1509. uint8_t i2c_slave_addr;
  1510. uint8_t i2c_control_offset;
  1511. uint8_t i2c_flag; // Bit0: 0 - One byte data; 1 - Two byte data
  1512. uint8_t i2c_speed; // =0, use default i2c speed, otherwise use it in unit of kHz.
  1513. uint8_t reserved[2];
  1514. struct atom_i2c_data_entry i2cdatalut[1]; // end with 0xff
  1515. };
  1516. // ATOM_I2C_VOLTAGE_OBJECT_V3.ucVoltageControlFlag
  1517. enum atom_i2c_voltage_control_flag
  1518. {
  1519. VOLTAGE_DATA_ONE_BYTE = 0,
  1520. VOLTAGE_DATA_TWO_BYTE = 1,
  1521. };
  1522. struct atom_voltage_gpio_map_lut
  1523. {
  1524. uint32_t voltage_gpio_reg_val; // The Voltage ID which is used to program GPIO register
  1525. uint16_t voltage_level_mv; // The corresponding Voltage Value, in mV
  1526. };
  1527. struct atom_gpio_voltage_object_v4
  1528. {
  1529. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_GPIO_LUT or VOLTAGE_OBJ_PHASE_LUT
  1530. uint8_t gpio_control_id; // default is 0 which indicate control through CG VID mode
  1531. uint8_t gpio_entry_num; // indiate the entry numbers of Votlage/Gpio value Look up table
  1532. uint8_t phase_delay_us; // phase delay in unit of micro second
  1533. uint8_t reserved;
  1534. uint32_t gpio_mask_val; // GPIO Mask value
  1535. struct atom_voltage_gpio_map_lut voltage_gpio_lut[1];
  1536. };
  1537. struct atom_svid2_voltage_object_v4
  1538. {
  1539. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_SVID2
  1540. uint8_t loadline_psi1; // bit4:0= loadline setting ( Core Loadline trim and offset trim ), bit5=0:PSI1_L disable =1: PSI1_L enable
  1541. uint8_t psi0_l_vid_thresd; // VR PSI0_L VID threshold
  1542. uint8_t psi0_enable; //
  1543. uint8_t maxvstep;
  1544. uint8_t telemetry_offset;
  1545. uint8_t telemetry_gain;
  1546. uint16_t reserved1;
  1547. };
  1548. struct atom_merged_voltage_object_v4
  1549. {
  1550. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_MERGED_POWER
  1551. uint8_t merged_powerrail_type; //enum atom_voltage_type
  1552. uint8_t reserved[3];
  1553. };
  1554. union atom_voltage_object_v4{
  1555. struct atom_gpio_voltage_object_v4 gpio_voltage_obj;
  1556. struct atom_i2c_voltage_object_v4 i2c_voltage_obj;
  1557. struct atom_svid2_voltage_object_v4 svid2_voltage_obj;
  1558. struct atom_merged_voltage_object_v4 merged_voltage_obj;
  1559. };
  1560. struct atom_voltage_objects_info_v4_1
  1561. {
  1562. struct atom_common_table_header table_header;
  1563. union atom_voltage_object_v4 voltage_object[1]; //Info for Voltage control
  1564. };
  1565. /*
  1566. ***************************************************************************
  1567. All Command Function structure definition
  1568. ***************************************************************************
  1569. */
  1570. /*
  1571. ***************************************************************************
  1572. Structures used by asic_init
  1573. ***************************************************************************
  1574. */
  1575. struct asic_init_engine_parameters
  1576. {
  1577. uint32_t sclkfreqin10khz:24;
  1578. uint32_t engineflag:8; /* enum atom_asic_init_engine_flag */
  1579. };
  1580. struct asic_init_mem_parameters
  1581. {
  1582. uint32_t mclkfreqin10khz:24;
  1583. uint32_t memflag:8; /* enum atom_asic_init_mem_flag */
  1584. };
  1585. struct asic_init_parameters_v2_1
  1586. {
  1587. struct asic_init_engine_parameters engineparam;
  1588. struct asic_init_mem_parameters memparam;
  1589. };
  1590. struct asic_init_ps_allocation_v2_1
  1591. {
  1592. struct asic_init_parameters_v2_1 param;
  1593. uint32_t reserved[16];
  1594. };
  1595. enum atom_asic_init_engine_flag
  1596. {
  1597. b3NORMAL_ENGINE_INIT = 0,
  1598. b3SRIOV_SKIP_ASIC_INIT = 0x02,
  1599. b3SRIOV_LOAD_UCODE = 0x40,
  1600. };
  1601. enum atom_asic_init_mem_flag
  1602. {
  1603. b3NORMAL_MEM_INIT = 0,
  1604. b3DRAM_SELF_REFRESH_EXIT =0x20,
  1605. };
  1606. /*
  1607. ***************************************************************************
  1608. Structures used by setengineclock
  1609. ***************************************************************************
  1610. */
  1611. struct set_engine_clock_parameters_v2_1
  1612. {
  1613. uint32_t sclkfreqin10khz:24;
  1614. uint32_t sclkflag:8; /* enum atom_set_engine_mem_clock_flag, */
  1615. uint32_t reserved[10];
  1616. };
  1617. struct set_engine_clock_ps_allocation_v2_1
  1618. {
  1619. struct set_engine_clock_parameters_v2_1 clockinfo;
  1620. uint32_t reserved[10];
  1621. };
  1622. enum atom_set_engine_mem_clock_flag
  1623. {
  1624. b3NORMAL_CHANGE_CLOCK = 0,
  1625. b3FIRST_TIME_CHANGE_CLOCK = 0x08,
  1626. b3STORE_DPM_TRAINGING = 0x40, //Applicable to memory clock change,when set, it store specific DPM mode training result
  1627. };
  1628. /*
  1629. ***************************************************************************
  1630. Structures used by getengineclock
  1631. ***************************************************************************
  1632. */
  1633. struct get_engine_clock_parameter
  1634. {
  1635. uint32_t sclk_10khz; // current engine speed in 10KHz unit
  1636. uint32_t reserved;
  1637. };
  1638. /*
  1639. ***************************************************************************
  1640. Structures used by setmemoryclock
  1641. ***************************************************************************
  1642. */
  1643. struct set_memory_clock_parameters_v2_1
  1644. {
  1645. uint32_t mclkfreqin10khz:24;
  1646. uint32_t mclkflag:8; /* enum atom_set_engine_mem_clock_flag, */
  1647. uint32_t reserved[10];
  1648. };
  1649. struct set_memory_clock_ps_allocation_v2_1
  1650. {
  1651. struct set_memory_clock_parameters_v2_1 clockinfo;
  1652. uint32_t reserved[10];
  1653. };
  1654. /*
  1655. ***************************************************************************
  1656. Structures used by getmemoryclock
  1657. ***************************************************************************
  1658. */
  1659. struct get_memory_clock_parameter
  1660. {
  1661. uint32_t mclk_10khz; // current engine speed in 10KHz unit
  1662. uint32_t reserved;
  1663. };
  1664. /*
  1665. ***************************************************************************
  1666. Structures used by setvoltage
  1667. ***************************************************************************
  1668. */
  1669. struct set_voltage_parameters_v1_4
  1670. {
  1671. uint8_t voltagetype; /* enum atom_voltage_type */
  1672. uint8_t command; /* Indicate action: Set voltage level, enum atom_set_voltage_command */
  1673. uint16_t vlevel_mv; /* real voltage level in unit of mv or Voltage Phase (0, 1, 2, .. ) */
  1674. };
  1675. //set_voltage_parameters_v2_1.voltagemode
  1676. enum atom_set_voltage_command{
  1677. ATOM_SET_VOLTAGE = 0,
  1678. ATOM_INIT_VOLTAGE_REGULATOR = 3,
  1679. ATOM_SET_VOLTAGE_PHASE = 4,
  1680. ATOM_GET_LEAKAGE_ID = 8,
  1681. };
  1682. struct set_voltage_ps_allocation_v1_4
  1683. {
  1684. struct set_voltage_parameters_v1_4 setvoltageparam;
  1685. uint32_t reserved[10];
  1686. };
  1687. /*
  1688. ***************************************************************************
  1689. Structures used by computegpuclockparam
  1690. ***************************************************************************
  1691. */
  1692. //ATOM_COMPUTE_CLOCK_FREQ.ulComputeClockFlag
  1693. enum atom_gpu_clock_type
  1694. {
  1695. COMPUTE_GPUCLK_INPUT_FLAG_DEFAULT_GPUCLK =0x00,
  1696. COMPUTE_GPUCLK_INPUT_FLAG_GFXCLK =0x01,
  1697. COMPUTE_GPUCLK_INPUT_FLAG_UCLK =0x02,
  1698. };
  1699. struct compute_gpu_clock_input_parameter_v1_8
  1700. {
  1701. uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock
  1702. uint32_t gpu_clock_type:8; //Input indicate clock type: enum atom_gpu_clock_type
  1703. uint32_t reserved[5];
  1704. };
  1705. struct compute_gpu_clock_output_parameter_v1_8
  1706. {
  1707. uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock
  1708. uint32_t dfs_did:8; //return parameter: DFS divider which is used to program to register directly
  1709. uint32_t pll_fb_mult; //Feedback Multiplier, bit 8:0 int, bit 15:12 post_div, bit 31:16 frac
  1710. uint32_t pll_ss_fbsmult; // Spread FB Mult: bit 8:0 int, bit 31:16 frac
  1711. uint16_t pll_ss_slew_frac;
  1712. uint8_t pll_ss_enable;
  1713. uint8_t reserved;
  1714. uint32_t reserved1[2];
  1715. };
  1716. /*
  1717. ***************************************************************************
  1718. Structures used by ReadEfuseValue
  1719. ***************************************************************************
  1720. */
  1721. struct read_efuse_input_parameters_v3_1
  1722. {
  1723. uint16_t efuse_start_index;
  1724. uint8_t reserved;
  1725. uint8_t bitslen;
  1726. };
  1727. // ReadEfuseValue input/output parameter
  1728. union read_efuse_value_parameters_v3_1
  1729. {
  1730. struct read_efuse_input_parameters_v3_1 efuse_info;
  1731. uint32_t efusevalue;
  1732. };
  1733. /*
  1734. ***************************************************************************
  1735. Structures used by getsmuclockinfo
  1736. ***************************************************************************
  1737. */
  1738. struct atom_get_smu_clock_info_parameters_v3_1
  1739. {
  1740. uint8_t syspll_id; // 0= syspll0, 1=syspll1, 2=syspll2
  1741. uint8_t clk_id; // atom_smu9_syspll0_clock_id (only valid when command == GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ )
  1742. uint8_t command; // enum of atom_get_smu_clock_info_command
  1743. 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 )
  1744. };
  1745. enum atom_get_smu_clock_info_command
  1746. {
  1747. GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ = 0,
  1748. GET_SMU_CLOCK_INFO_V3_1_GET_PLLVCO_FREQ = 1,
  1749. GET_SMU_CLOCK_INFO_V3_1_GET_PLLREFCLK_FREQ = 2,
  1750. };
  1751. enum atom_smu9_syspll0_clock_id
  1752. {
  1753. SMU9_SYSPLL0_SMNCLK_ID = 0, // SMNCLK
  1754. SMU9_SYSPLL0_SOCCLK_ID = 1, // SOCCLK (FCLK)
  1755. SMU9_SYSPLL0_MP0CLK_ID = 2, // MP0CLK
  1756. SMU9_SYSPLL0_MP1CLK_ID = 3, // MP1CLK
  1757. SMU9_SYSPLL0_LCLK_ID = 4, // LCLK
  1758. SMU9_SYSPLL0_DCLK_ID = 5, // DCLK
  1759. SMU9_SYSPLL0_VCLK_ID = 6, // VCLK
  1760. SMU9_SYSPLL0_ECLK_ID = 7, // ECLK
  1761. SMU9_SYSPLL0_DCEFCLK_ID = 8, // DCEFCLK
  1762. SMU9_SYSPLL0_DPREFCLK_ID = 10, // DPREFCLK
  1763. SMU9_SYSPLL0_DISPCLK_ID = 11, // DISPCLK
  1764. };
  1765. enum atom_smu11_syspll_id {
  1766. SMU11_SYSPLL0_ID = 0,
  1767. SMU11_SYSPLL1_0_ID = 1,
  1768. SMU11_SYSPLL1_1_ID = 2,
  1769. SMU11_SYSPLL1_2_ID = 3,
  1770. SMU11_SYSPLL2_ID = 4,
  1771. SMU11_SYSPLL3_0_ID = 5,
  1772. SMU11_SYSPLL3_1_ID = 6,
  1773. };
  1774. enum atom_smu11_syspll0_clock_id {
  1775. SMU11_SYSPLL0_SOCCLK_ID = 0, // SOCCLK
  1776. SMU11_SYSPLL0_MP0CLK_ID = 1, // MP0CLK
  1777. SMU11_SYSPLL0_DCLK_ID = 2, // DCLK
  1778. SMU11_SYSPLL0_VCLK_ID = 3, // VCLK
  1779. SMU11_SYSPLL0_ECLK_ID = 4, // ECLK
  1780. SMU11_SYSPLL0_DCEFCLK_ID = 5, // DCEFCLK
  1781. };
  1782. enum atom_smu11_syspll1_0_clock_id {
  1783. SMU11_SYSPLL1_0_UCLKA_ID = 0, // UCLK_a
  1784. };
  1785. enum atom_smu11_syspll1_1_clock_id {
  1786. SMU11_SYSPLL1_0_UCLKB_ID = 0, // UCLK_b
  1787. };
  1788. enum atom_smu11_syspll1_2_clock_id {
  1789. SMU11_SYSPLL1_0_FCLK_ID = 0, // FCLK
  1790. };
  1791. enum atom_smu11_syspll2_clock_id {
  1792. SMU11_SYSPLL2_GFXCLK_ID = 0, // GFXCLK
  1793. };
  1794. enum atom_smu11_syspll3_0_clock_id {
  1795. SMU11_SYSPLL3_0_WAFCLK_ID = 0, // WAFCLK
  1796. SMU11_SYSPLL3_0_DISPCLK_ID = 1, // DISPCLK
  1797. SMU11_SYSPLL3_0_DPREFCLK_ID = 2, // DPREFCLK
  1798. };
  1799. enum atom_smu11_syspll3_1_clock_id {
  1800. SMU11_SYSPLL3_1_MP1CLK_ID = 0, // MP1CLK
  1801. SMU11_SYSPLL3_1_SMNCLK_ID = 1, // SMNCLK
  1802. SMU11_SYSPLL3_1_LCLK_ID = 2, // LCLK
  1803. };
  1804. struct atom_get_smu_clock_info_output_parameters_v3_1
  1805. {
  1806. union {
  1807. uint32_t smu_clock_freq_hz;
  1808. uint32_t syspllvcofreq_10khz;
  1809. uint32_t sysspllrefclk_10khz;
  1810. }atom_smu_outputclkfreq;
  1811. };
  1812. /*
  1813. ***************************************************************************
  1814. Structures used by dynamicmemorysettings
  1815. ***************************************************************************
  1816. */
  1817. enum atom_dynamic_memory_setting_command
  1818. {
  1819. COMPUTE_MEMORY_PLL_PARAM = 1,
  1820. COMPUTE_ENGINE_PLL_PARAM = 2,
  1821. ADJUST_MC_SETTING_PARAM = 3,
  1822. };
  1823. /* when command = COMPUTE_MEMORY_PLL_PARAM or ADJUST_MC_SETTING_PARAM */
  1824. struct dynamic_mclk_settings_parameters_v2_1
  1825. {
  1826. uint32_t mclk_10khz:24; //Input= target mclk
  1827. uint32_t command:8; //command enum of atom_dynamic_memory_setting_command
  1828. uint32_t reserved;
  1829. };
  1830. /* when command = COMPUTE_ENGINE_PLL_PARAM */
  1831. struct dynamic_sclk_settings_parameters_v2_1
  1832. {
  1833. uint32_t sclk_10khz:24; //Input= target mclk
  1834. uint32_t command:8; //command enum of atom_dynamic_memory_setting_command
  1835. uint32_t mclk_10khz;
  1836. uint32_t reserved;
  1837. };
  1838. union dynamic_memory_settings_parameters_v2_1
  1839. {
  1840. struct dynamic_mclk_settings_parameters_v2_1 mclk_setting;
  1841. struct dynamic_sclk_settings_parameters_v2_1 sclk_setting;
  1842. };
  1843. /*
  1844. ***************************************************************************
  1845. Structures used by memorytraining
  1846. ***************************************************************************
  1847. */
  1848. enum atom_umc6_0_ucode_function_call_enum_id
  1849. {
  1850. UMC60_UCODE_FUNC_ID_REINIT = 0,
  1851. UMC60_UCODE_FUNC_ID_ENTER_SELFREFRESH = 1,
  1852. UMC60_UCODE_FUNC_ID_EXIT_SELFREFRESH = 2,
  1853. };
  1854. struct memory_training_parameters_v2_1
  1855. {
  1856. uint8_t ucode_func_id;
  1857. uint8_t ucode_reserved[3];
  1858. uint32_t reserved[5];
  1859. };
  1860. /*
  1861. ***************************************************************************
  1862. Structures used by setpixelclock
  1863. ***************************************************************************
  1864. */
  1865. struct set_pixel_clock_parameter_v1_7
  1866. {
  1867. uint32_t pixclk_100hz; // target the pixel clock to drive the CRTC timing in unit of 100Hz.
  1868. uint8_t pll_id; // ATOM_PHY_PLL0/ATOM_PHY_PLL1/ATOM_PPLL0
  1869. uint8_t encoderobjid; // ASIC encoder id defined in objectId.h,
  1870. // indicate which graphic encoder will be used.
  1871. uint8_t encoder_mode; // Encoder mode:
  1872. uint8_t miscinfo; // enum atom_set_pixel_clock_v1_7_misc_info
  1873. uint8_t crtc_id; // enum of atom_crtc_def
  1874. uint8_t deep_color_ratio; // HDMI panel bit depth: enum atom_set_pixel_clock_v1_7_deepcolor_ratio
  1875. uint8_t reserved1[2];
  1876. uint32_t reserved2;
  1877. };
  1878. //ucMiscInfo
  1879. enum atom_set_pixel_clock_v1_7_misc_info
  1880. {
  1881. PIXEL_CLOCK_V7_MISC_FORCE_PROG_PPLL = 0x01,
  1882. PIXEL_CLOCK_V7_MISC_PROG_PHYPLL = 0x02,
  1883. PIXEL_CLOCK_V7_MISC_YUV420_MODE = 0x04,
  1884. PIXEL_CLOCK_V7_MISC_DVI_DUALLINK_EN = 0x08,
  1885. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC = 0x30,
  1886. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_XTALIN = 0x00,
  1887. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_PCIE = 0x10,
  1888. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_GENLK = 0x20,
  1889. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_REFPAD = 0x30,
  1890. PIXEL_CLOCK_V7_MISC_ATOMIC_UPDATE = 0x40,
  1891. PIXEL_CLOCK_V7_MISC_FORCE_SS_DIS = 0x80,
  1892. };
  1893. /* deep_color_ratio */
  1894. enum atom_set_pixel_clock_v1_7_deepcolor_ratio
  1895. {
  1896. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO
  1897. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4
  1898. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2
  1899. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1
  1900. };
  1901. /*
  1902. ***************************************************************************
  1903. Structures used by setdceclock
  1904. ***************************************************************************
  1905. */
  1906. // SetDCEClock input parameter for DCE11.2( ELM and BF ) and above
  1907. struct set_dce_clock_parameters_v2_1
  1908. {
  1909. uint32_t dceclk_10khz; // target DCE frequency in unit of 10KHZ, return real DISPCLK/DPREFCLK frequency.
  1910. uint8_t dceclktype; // =0: DISPCLK =1: DPREFCLK =2: PIXCLK
  1911. uint8_t dceclksrc; // ATOM_PLL0 or ATOM_GCK_DFS or ATOM_FCH_CLK or ATOM_COMBOPHY_PLLx
  1912. uint8_t dceclkflag; // Bit [1:0] = PPLL ref clock source ( when ucDCEClkSrc= ATOM_PPLL0 )
  1913. uint8_t crtc_id; // ucDisp Pipe Id, ATOM_CRTC0/1/2/..., use only when ucDCEClkType = PIXCLK
  1914. };
  1915. //ucDCEClkType
  1916. enum atom_set_dce_clock_clock_type
  1917. {
  1918. DCE_CLOCK_TYPE_DISPCLK = 0,
  1919. DCE_CLOCK_TYPE_DPREFCLK = 1,
  1920. DCE_CLOCK_TYPE_PIXELCLK = 2, // used by VBIOS internally, called by SetPixelClock
  1921. };
  1922. //ucDCEClkFlag when ucDCEClkType == DPREFCLK
  1923. enum atom_set_dce_clock_dprefclk_flag
  1924. {
  1925. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_MASK = 0x03,
  1926. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENERICA = 0x00,
  1927. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENLK = 0x01,
  1928. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_PCIE = 0x02,
  1929. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_XTALIN = 0x03,
  1930. };
  1931. //ucDCEClkFlag when ucDCEClkType == PIXCLK
  1932. enum atom_set_dce_clock_pixclk_flag
  1933. {
  1934. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_MASK = 0x03,
  1935. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO
  1936. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4
  1937. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2
  1938. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1
  1939. DCE_CLOCK_FLAG_PIXCLK_YUV420_MODE = 0x04,
  1940. };
  1941. struct set_dce_clock_ps_allocation_v2_1
  1942. {
  1943. struct set_dce_clock_parameters_v2_1 param;
  1944. uint32_t ulReserved[2];
  1945. };
  1946. /****************************************************************************/
  1947. // Structures used by BlankCRTC
  1948. /****************************************************************************/
  1949. struct blank_crtc_parameters
  1950. {
  1951. uint8_t crtc_id; // enum atom_crtc_def
  1952. uint8_t blanking; // enum atom_blank_crtc_command
  1953. uint16_t reserved;
  1954. uint32_t reserved1;
  1955. };
  1956. enum atom_blank_crtc_command
  1957. {
  1958. ATOM_BLANKING = 1,
  1959. ATOM_BLANKING_OFF = 0,
  1960. };
  1961. /****************************************************************************/
  1962. // Structures used by enablecrtc
  1963. /****************************************************************************/
  1964. struct enable_crtc_parameters
  1965. {
  1966. uint8_t crtc_id; // enum atom_crtc_def
  1967. uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE
  1968. uint8_t padding[2];
  1969. };
  1970. /****************************************************************************/
  1971. // Structure used by EnableDispPowerGating
  1972. /****************************************************************************/
  1973. struct enable_disp_power_gating_parameters_v2_1
  1974. {
  1975. uint8_t disp_pipe_id; // ATOM_CRTC1, ATOM_CRTC2, ...
  1976. uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE
  1977. uint8_t padding[2];
  1978. };
  1979. struct enable_disp_power_gating_ps_allocation
  1980. {
  1981. struct enable_disp_power_gating_parameters_v2_1 param;
  1982. uint32_t ulReserved[4];
  1983. };
  1984. /****************************************************************************/
  1985. // Structure used in setcrtc_usingdtdtiming
  1986. /****************************************************************************/
  1987. struct set_crtc_using_dtd_timing_parameters
  1988. {
  1989. uint16_t h_size;
  1990. uint16_t h_blanking_time;
  1991. uint16_t v_size;
  1992. uint16_t v_blanking_time;
  1993. uint16_t h_syncoffset;
  1994. uint16_t h_syncwidth;
  1995. uint16_t v_syncoffset;
  1996. uint16_t v_syncwidth;
  1997. uint16_t modemiscinfo;
  1998. uint8_t h_border;
  1999. uint8_t v_border;
  2000. uint8_t crtc_id; // enum atom_crtc_def
  2001. uint8_t encoder_mode; // atom_encode_mode_def
  2002. uint8_t padding[2];
  2003. };
  2004. /****************************************************************************/
  2005. // Structures used by processi2cchanneltransaction
  2006. /****************************************************************************/
  2007. struct process_i2c_channel_transaction_parameters
  2008. {
  2009. uint8_t i2cspeed_khz;
  2010. union {
  2011. uint8_t regindex;
  2012. uint8_t status; /* enum atom_process_i2c_flag */
  2013. } regind_status;
  2014. uint16_t i2c_data_out;
  2015. uint8_t flag; /* enum atom_process_i2c_status */
  2016. uint8_t trans_bytes;
  2017. uint8_t slave_addr;
  2018. uint8_t i2c_id;
  2019. };
  2020. //ucFlag
  2021. enum atom_process_i2c_flag
  2022. {
  2023. HW_I2C_WRITE = 1,
  2024. HW_I2C_READ = 0,
  2025. I2C_2BYTE_ADDR = 0x02,
  2026. HW_I2C_SMBUS_BYTE_WR = 0x04,
  2027. };
  2028. //status
  2029. enum atom_process_i2c_status
  2030. {
  2031. HW_ASSISTED_I2C_STATUS_FAILURE =2,
  2032. HW_ASSISTED_I2C_STATUS_SUCCESS =1,
  2033. };
  2034. /****************************************************************************/
  2035. // Structures used by processauxchanneltransaction
  2036. /****************************************************************************/
  2037. struct process_aux_channel_transaction_parameters_v1_2
  2038. {
  2039. uint16_t aux_request;
  2040. uint16_t dataout;
  2041. uint8_t channelid;
  2042. union {
  2043. uint8_t reply_status;
  2044. uint8_t aux_delay;
  2045. } aux_status_delay;
  2046. uint8_t dataout_len;
  2047. uint8_t hpd_id; //=0: HPD1, =1: HPD2, =2: HPD3, =3: HPD4, =4: HPD5, =5: HPD6
  2048. };
  2049. /****************************************************************************/
  2050. // Structures used by selectcrtc_source
  2051. /****************************************************************************/
  2052. struct select_crtc_source_parameters_v2_3
  2053. {
  2054. uint8_t crtc_id; // enum atom_crtc_def
  2055. uint8_t encoder_id; // enum atom_dig_def
  2056. uint8_t encode_mode; // enum atom_encode_mode_def
  2057. uint8_t dst_bpc; // enum atom_panel_bit_per_color
  2058. };
  2059. /****************************************************************************/
  2060. // Structures used by digxencodercontrol
  2061. /****************************************************************************/
  2062. // ucAction:
  2063. enum atom_dig_encoder_control_action
  2064. {
  2065. ATOM_ENCODER_CMD_DISABLE_DIG = 0,
  2066. ATOM_ENCODER_CMD_ENABLE_DIG = 1,
  2067. ATOM_ENCODER_CMD_DP_LINK_TRAINING_START = 0x08,
  2068. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1 = 0x09,
  2069. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2 = 0x0a,
  2070. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3 = 0x13,
  2071. ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE = 0x0b,
  2072. ATOM_ENCODER_CMD_DP_VIDEO_OFF = 0x0c,
  2073. ATOM_ENCODER_CMD_DP_VIDEO_ON = 0x0d,
  2074. ATOM_ENCODER_CMD_SETUP_PANEL_MODE = 0x10,
  2075. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN4 = 0x14,
  2076. ATOM_ENCODER_CMD_STREAM_SETUP = 0x0F,
  2077. ATOM_ENCODER_CMD_LINK_SETUP = 0x11,
  2078. ATOM_ENCODER_CMD_ENCODER_BLANK = 0x12,
  2079. };
  2080. //define ucPanelMode
  2081. enum atom_dig_encoder_control_panelmode
  2082. {
  2083. DP_PANEL_MODE_DISABLE = 0x00,
  2084. DP_PANEL_MODE_ENABLE_eDP_MODE = 0x01,
  2085. DP_PANEL_MODE_ENABLE_LVLINK_MODE = 0x11,
  2086. };
  2087. //ucDigId
  2088. enum atom_dig_encoder_control_v5_digid
  2089. {
  2090. ATOM_ENCODER_CONFIG_V5_DIG0_ENCODER = 0x00,
  2091. ATOM_ENCODER_CONFIG_V5_DIG1_ENCODER = 0x01,
  2092. ATOM_ENCODER_CONFIG_V5_DIG2_ENCODER = 0x02,
  2093. ATOM_ENCODER_CONFIG_V5_DIG3_ENCODER = 0x03,
  2094. ATOM_ENCODER_CONFIG_V5_DIG4_ENCODER = 0x04,
  2095. ATOM_ENCODER_CONFIG_V5_DIG5_ENCODER = 0x05,
  2096. ATOM_ENCODER_CONFIG_V5_DIG6_ENCODER = 0x06,
  2097. ATOM_ENCODER_CONFIG_V5_DIG7_ENCODER = 0x07,
  2098. };
  2099. struct dig_encoder_stream_setup_parameters_v1_5
  2100. {
  2101. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2102. uint8_t action; // = ATOM_ENOCODER_CMD_STREAM_SETUP
  2103. uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI
  2104. uint8_t lanenum; // Lane number
  2105. uint32_t pclk_10khz; // Pixel Clock in 10Khz
  2106. uint8_t bitpercolor;
  2107. uint8_t dplinkrate_270mhz;//= DP link rate/270Mhz, =6: 1.62G = 10: 2.7G, =20: 5.4Ghz, =30: 8.1Ghz etc
  2108. uint8_t reserved[2];
  2109. };
  2110. struct dig_encoder_link_setup_parameters_v1_5
  2111. {
  2112. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2113. uint8_t action; // = ATOM_ENOCODER_CMD_LINK_SETUP
  2114. uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI
  2115. uint8_t lanenum; // Lane number
  2116. uint8_t symclk_10khz; // Symbol Clock in 10Khz
  2117. uint8_t hpd_sel;
  2118. uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable,
  2119. uint8_t reserved[2];
  2120. };
  2121. struct dp_panel_mode_set_parameters_v1_5
  2122. {
  2123. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2124. uint8_t action; // = ATOM_ENCODER_CMD_DPLINK_SETUP
  2125. uint8_t panelmode; // enum atom_dig_encoder_control_panelmode
  2126. uint8_t reserved1;
  2127. uint32_t reserved2[2];
  2128. };
  2129. struct dig_encoder_generic_cmd_parameters_v1_5
  2130. {
  2131. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2132. uint8_t action; // = rest of generic encoder command which does not carry any parameters
  2133. uint8_t reserved1[2];
  2134. uint32_t reserved2[2];
  2135. };
  2136. union dig_encoder_control_parameters_v1_5
  2137. {
  2138. struct dig_encoder_generic_cmd_parameters_v1_5 cmd_param;
  2139. struct dig_encoder_stream_setup_parameters_v1_5 stream_param;
  2140. struct dig_encoder_link_setup_parameters_v1_5 link_param;
  2141. struct dp_panel_mode_set_parameters_v1_5 dppanel_param;
  2142. };
  2143. /*
  2144. ***************************************************************************
  2145. Structures used by dig1transmittercontrol
  2146. ***************************************************************************
  2147. */
  2148. struct dig_transmitter_control_parameters_v1_6
  2149. {
  2150. uint8_t phyid; // 0=UNIPHYA, 1=UNIPHYB, 2=UNIPHYC, 3=UNIPHYD, 4= UNIPHYE 5=UNIPHYF
  2151. uint8_t action; // define as ATOM_TRANSMITER_ACTION_xxx
  2152. union {
  2153. uint8_t digmode; // enum atom_encode_mode_def
  2154. uint8_t dplaneset; // DP voltage swing and pre-emphasis value defined in DPCD DP_LANE_SET, "DP_LANE_SET__xDB_y_zV"
  2155. } mode_laneset;
  2156. uint8_t lanenum; // Lane number 1, 2, 4, 8
  2157. uint32_t symclk_10khz; // Symbol Clock in 10Khz
  2158. uint8_t hpdsel; // =1: HPD1, =2: HPD2, .... =6: HPD6, =0: HPD is not assigned
  2159. uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable,
  2160. uint8_t connobj_id; // Connector Object Id defined in ObjectId.h
  2161. uint8_t reserved;
  2162. uint32_t reserved1;
  2163. };
  2164. struct dig_transmitter_control_ps_allocation_v1_6
  2165. {
  2166. struct dig_transmitter_control_parameters_v1_6 param;
  2167. uint32_t reserved[4];
  2168. };
  2169. //ucAction
  2170. enum atom_dig_transmitter_control_action
  2171. {
  2172. ATOM_TRANSMITTER_ACTION_DISABLE = 0,
  2173. ATOM_TRANSMITTER_ACTION_ENABLE = 1,
  2174. ATOM_TRANSMITTER_ACTION_LCD_BLOFF = 2,
  2175. ATOM_TRANSMITTER_ACTION_LCD_BLON = 3,
  2176. ATOM_TRANSMITTER_ACTION_BL_BRIGHTNESS_CONTROL = 4,
  2177. ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_START = 5,
  2178. ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_STOP = 6,
  2179. ATOM_TRANSMITTER_ACTION_INIT = 7,
  2180. ATOM_TRANSMITTER_ACTION_DISABLE_OUTPUT = 8,
  2181. ATOM_TRANSMITTER_ACTION_ENABLE_OUTPUT = 9,
  2182. ATOM_TRANSMITTER_ACTION_SETUP = 10,
  2183. ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH = 11,
  2184. ATOM_TRANSMITTER_ACTION_POWER_ON = 12,
  2185. ATOM_TRANSMITTER_ACTION_POWER_OFF = 13,
  2186. };
  2187. // digfe_sel
  2188. enum atom_dig_transmitter_control_digfe_sel
  2189. {
  2190. ATOM_TRANMSITTER_V6__DIGA_SEL = 0x01,
  2191. ATOM_TRANMSITTER_V6__DIGB_SEL = 0x02,
  2192. ATOM_TRANMSITTER_V6__DIGC_SEL = 0x04,
  2193. ATOM_TRANMSITTER_V6__DIGD_SEL = 0x08,
  2194. ATOM_TRANMSITTER_V6__DIGE_SEL = 0x10,
  2195. ATOM_TRANMSITTER_V6__DIGF_SEL = 0x20,
  2196. ATOM_TRANMSITTER_V6__DIGG_SEL = 0x40,
  2197. };
  2198. //ucHPDSel
  2199. enum atom_dig_transmitter_control_hpd_sel
  2200. {
  2201. ATOM_TRANSMITTER_V6_NO_HPD_SEL = 0x00,
  2202. ATOM_TRANSMITTER_V6_HPD1_SEL = 0x01,
  2203. ATOM_TRANSMITTER_V6_HPD2_SEL = 0x02,
  2204. ATOM_TRANSMITTER_V6_HPD3_SEL = 0x03,
  2205. ATOM_TRANSMITTER_V6_HPD4_SEL = 0x04,
  2206. ATOM_TRANSMITTER_V6_HPD5_SEL = 0x05,
  2207. ATOM_TRANSMITTER_V6_HPD6_SEL = 0x06,
  2208. };
  2209. // ucDPLaneSet
  2210. enum atom_dig_transmitter_control_dplaneset
  2211. {
  2212. DP_LANE_SET__0DB_0_4V = 0x00,
  2213. DP_LANE_SET__0DB_0_6V = 0x01,
  2214. DP_LANE_SET__0DB_0_8V = 0x02,
  2215. DP_LANE_SET__0DB_1_2V = 0x03,
  2216. DP_LANE_SET__3_5DB_0_4V = 0x08,
  2217. DP_LANE_SET__3_5DB_0_6V = 0x09,
  2218. DP_LANE_SET__3_5DB_0_8V = 0x0a,
  2219. DP_LANE_SET__6DB_0_4V = 0x10,
  2220. DP_LANE_SET__6DB_0_6V = 0x11,
  2221. DP_LANE_SET__9_5DB_0_4V = 0x18,
  2222. };
  2223. /****************************************************************************/
  2224. // Structures used by ExternalEncoderControl V2.4
  2225. /****************************************************************************/
  2226. struct external_encoder_control_parameters_v2_4
  2227. {
  2228. uint16_t pixelclock_10khz; // pixel clock in 10Khz, valid when ucAction=SETUP/ENABLE_OUTPUT
  2229. uint8_t config; // indicate which encoder, and DP link rate when ucAction = SETUP/ENABLE_OUTPUT
  2230. uint8_t action; //
  2231. uint8_t encodermode; // encoder mode, only used when ucAction = SETUP/ENABLE_OUTPUT
  2232. uint8_t lanenum; // lane number, only used when ucAction = SETUP/ENABLE_OUTPUT
  2233. uint8_t bitpercolor; // output bit per color, only valid when ucAction = SETUP/ENABLE_OUTPUT and ucEncodeMode= DP
  2234. uint8_t hpd_id;
  2235. };
  2236. // ucAction
  2237. enum external_encoder_control_action_def
  2238. {
  2239. EXTERNAL_ENCODER_ACTION_V3_DISABLE_OUTPUT = 0x00,
  2240. EXTERNAL_ENCODER_ACTION_V3_ENABLE_OUTPUT = 0x01,
  2241. EXTERNAL_ENCODER_ACTION_V3_ENCODER_INIT = 0x07,
  2242. EXTERNAL_ENCODER_ACTION_V3_ENCODER_SETUP = 0x0f,
  2243. EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING_OFF = 0x10,
  2244. EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING = 0x11,
  2245. EXTERNAL_ENCODER_ACTION_V3_DACLOAD_DETECTION = 0x12,
  2246. EXTERNAL_ENCODER_ACTION_V3_DDC_SETUP = 0x14,
  2247. };
  2248. // ucConfig
  2249. enum external_encoder_control_v2_4_config_def
  2250. {
  2251. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_MASK = 0x03,
  2252. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_1_62GHZ = 0x00,
  2253. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_2_70GHZ = 0x01,
  2254. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_5_40GHZ = 0x02,
  2255. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_3_24GHZ = 0x03,
  2256. EXTERNAL_ENCODER_CONFIG_V3_ENCODER_SEL_MAKS = 0x70,
  2257. EXTERNAL_ENCODER_CONFIG_V3_ENCODER1 = 0x00,
  2258. EXTERNAL_ENCODER_CONFIG_V3_ENCODER2 = 0x10,
  2259. EXTERNAL_ENCODER_CONFIG_V3_ENCODER3 = 0x20,
  2260. };
  2261. struct external_encoder_control_ps_allocation_v2_4
  2262. {
  2263. struct external_encoder_control_parameters_v2_4 sExtEncoder;
  2264. uint32_t reserved[2];
  2265. };
  2266. /*
  2267. ***************************************************************************
  2268. AMD ACPI Table
  2269. ***************************************************************************
  2270. */
  2271. struct amd_acpi_description_header{
  2272. uint32_t signature;
  2273. uint32_t tableLength; //Length
  2274. uint8_t revision;
  2275. uint8_t checksum;
  2276. uint8_t oemId[6];
  2277. uint8_t oemTableId[8]; //UINT64 OemTableId;
  2278. uint32_t oemRevision;
  2279. uint32_t creatorId;
  2280. uint32_t creatorRevision;
  2281. };
  2282. struct uefi_acpi_vfct{
  2283. struct amd_acpi_description_header sheader;
  2284. uint8_t tableUUID[16]; //0x24
  2285. uint32_t vbiosimageoffset; //0x34. Offset to the first GOP_VBIOS_CONTENT block from the beginning of the stucture.
  2286. uint32_t lib1Imageoffset; //0x38. Offset to the first GOP_LIB1_CONTENT block from the beginning of the stucture.
  2287. uint32_t reserved[4]; //0x3C
  2288. };
  2289. struct vfct_image_header{
  2290. uint32_t pcibus; //0x4C
  2291. uint32_t pcidevice; //0x50
  2292. uint32_t pcifunction; //0x54
  2293. uint16_t vendorid; //0x58
  2294. uint16_t deviceid; //0x5A
  2295. uint16_t ssvid; //0x5C
  2296. uint16_t ssid; //0x5E
  2297. uint32_t revision; //0x60
  2298. uint32_t imagelength; //0x64
  2299. };
  2300. struct gop_vbios_content {
  2301. struct vfct_image_header vbiosheader;
  2302. uint8_t vbioscontent[1];
  2303. };
  2304. struct gop_lib1_content {
  2305. struct vfct_image_header lib1header;
  2306. uint8_t lib1content[1];
  2307. };
  2308. /*
  2309. ***************************************************************************
  2310. Scratch Register definitions
  2311. Each number below indicates which scratch regiser request, Active and
  2312. Connect all share the same definitions as display_device_tag defines
  2313. ***************************************************************************
  2314. */
  2315. enum scratch_register_def{
  2316. ATOM_DEVICE_CONNECT_INFO_DEF = 0,
  2317. ATOM_BL_BRI_LEVEL_INFO_DEF = 2,
  2318. ATOM_ACTIVE_INFO_DEF = 3,
  2319. ATOM_LCD_INFO_DEF = 4,
  2320. ATOM_DEVICE_REQ_INFO_DEF = 5,
  2321. ATOM_ACC_CHANGE_INFO_DEF = 6,
  2322. ATOM_PRE_OS_MODE_INFO_DEF = 7,
  2323. ATOM_PRE_OS_ASSERTION_DEF = 8, //For GOP to record a 32bit assertion code, this is enabled by default in prodution GOP drivers.
  2324. ATOM_INTERNAL_TIMER_INFO_DEF = 10,
  2325. };
  2326. enum scratch_device_connect_info_bit_def{
  2327. ATOM_DISPLAY_LCD1_CONNECT =0x0002,
  2328. ATOM_DISPLAY_DFP1_CONNECT =0x0008,
  2329. ATOM_DISPLAY_DFP2_CONNECT =0x0080,
  2330. ATOM_DISPLAY_DFP3_CONNECT =0x0200,
  2331. ATOM_DISPLAY_DFP4_CONNECT =0x0400,
  2332. ATOM_DISPLAY_DFP5_CONNECT =0x0800,
  2333. ATOM_DISPLAY_DFP6_CONNECT =0x0040,
  2334. ATOM_DISPLAY_DFPx_CONNECT =0x0ec8,
  2335. ATOM_CONNECT_INFO_DEVICE_MASK =0x0fff,
  2336. };
  2337. enum scratch_bl_bri_level_info_bit_def{
  2338. ATOM_CURRENT_BL_LEVEL_SHIFT =0x8,
  2339. #ifndef _H2INC
  2340. ATOM_CURRENT_BL_LEVEL_MASK =0x0000ff00,
  2341. ATOM_DEVICE_DPMS_STATE =0x00010000,
  2342. #endif
  2343. };
  2344. enum scratch_active_info_bits_def{
  2345. ATOM_DISPLAY_LCD1_ACTIVE =0x0002,
  2346. ATOM_DISPLAY_DFP1_ACTIVE =0x0008,
  2347. ATOM_DISPLAY_DFP2_ACTIVE =0x0080,
  2348. ATOM_DISPLAY_DFP3_ACTIVE =0x0200,
  2349. ATOM_DISPLAY_DFP4_ACTIVE =0x0400,
  2350. ATOM_DISPLAY_DFP5_ACTIVE =0x0800,
  2351. ATOM_DISPLAY_DFP6_ACTIVE =0x0040,
  2352. ATOM_ACTIVE_INFO_DEVICE_MASK =0x0fff,
  2353. };
  2354. enum scratch_device_req_info_bits_def{
  2355. ATOM_DISPLAY_LCD1_REQ =0x0002,
  2356. ATOM_DISPLAY_DFP1_REQ =0x0008,
  2357. ATOM_DISPLAY_DFP2_REQ =0x0080,
  2358. ATOM_DISPLAY_DFP3_REQ =0x0200,
  2359. ATOM_DISPLAY_DFP4_REQ =0x0400,
  2360. ATOM_DISPLAY_DFP5_REQ =0x0800,
  2361. ATOM_DISPLAY_DFP6_REQ =0x0040,
  2362. ATOM_REQ_INFO_DEVICE_MASK =0x0fff,
  2363. };
  2364. enum scratch_acc_change_info_bitshift_def{
  2365. ATOM_ACC_CHANGE_ACC_MODE_SHIFT =4,
  2366. ATOM_ACC_CHANGE_LID_STATUS_SHIFT =6,
  2367. };
  2368. enum scratch_acc_change_info_bits_def{
  2369. ATOM_ACC_CHANGE_ACC_MODE =0x00000010,
  2370. ATOM_ACC_CHANGE_LID_STATUS =0x00000040,
  2371. };
  2372. enum scratch_pre_os_mode_info_bits_def{
  2373. ATOM_PRE_OS_MODE_MASK =0x00000003,
  2374. ATOM_PRE_OS_MODE_VGA =0x00000000,
  2375. ATOM_PRE_OS_MODE_VESA =0x00000001,
  2376. ATOM_PRE_OS_MODE_GOP =0x00000002,
  2377. ATOM_PRE_OS_MODE_PIXEL_DEPTH =0x0000000C,
  2378. ATOM_PRE_OS_MODE_PIXEL_FORMAT_MASK=0x000000F0,
  2379. ATOM_PRE_OS_MODE_8BIT_PAL_EN =0x00000100,
  2380. ATOM_ASIC_INIT_COMPLETE =0x00000200,
  2381. #ifndef _H2INC
  2382. ATOM_PRE_OS_MODE_NUMBER_MASK =0xFFFF0000,
  2383. #endif
  2384. };
  2385. /*
  2386. ***************************************************************************
  2387. ATOM firmware ID header file
  2388. !! Please keep it at end of the atomfirmware.h !!
  2389. ***************************************************************************
  2390. */
  2391. #include "atomfirmwareid.h"
  2392. #pragma pack()
  2393. #endif