atomfirmware.h 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  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. struct atom_gfx_info_v2_4 {
  1095. struct atom_common_table_header table_header;
  1096. uint8_t gfxip_min_ver;
  1097. uint8_t gfxip_max_ver;
  1098. uint8_t gc_num_se;
  1099. uint8_t max_tile_pipes;
  1100. uint8_t gc_num_cu_per_sh;
  1101. uint8_t gc_num_sh_per_se;
  1102. uint8_t gc_num_rb_per_se;
  1103. uint8_t gc_num_tccs;
  1104. uint32_t regaddr_cp_dma_src_addr;
  1105. uint32_t regaddr_cp_dma_src_addr_hi;
  1106. uint32_t regaddr_cp_dma_dst_addr;
  1107. uint32_t regaddr_cp_dma_dst_addr_hi;
  1108. uint32_t regaddr_cp_dma_command;
  1109. uint32_t regaddr_cp_status;
  1110. uint32_t regaddr_rlc_gpu_clock_32;
  1111. uint32_t rlc_gpu_timer_refclk;
  1112. uint8_t active_cu_per_sh;
  1113. uint8_t active_rb_per_se;
  1114. uint16_t gcgoldenoffset;
  1115. uint16_t gc_num_gprs;
  1116. uint16_t gc_gsprim_buff_depth;
  1117. uint16_t gc_parameter_cache_depth;
  1118. uint16_t gc_wave_size;
  1119. uint16_t gc_max_waves_per_simd;
  1120. uint16_t gc_lds_size;
  1121. uint8_t gc_num_max_gs_thds;
  1122. uint8_t gc_gs_table_depth;
  1123. uint8_t gc_double_offchip_lds_buffer;
  1124. uint8_t gc_max_scratch_slots_per_cu;
  1125. uint32_t sram_rm_fuses_val;
  1126. uint32_t sram_custom_rm_fuses_val;
  1127. };
  1128. /*
  1129. ***************************************************************************
  1130. Data Table smu_info structure
  1131. ***************************************************************************
  1132. */
  1133. struct atom_smu_info_v3_1
  1134. {
  1135. struct atom_common_table_header table_header;
  1136. uint8_t smuip_min_ver;
  1137. uint8_t smuip_max_ver;
  1138. uint8_t smu_rsd1;
  1139. uint8_t gpuclk_ss_mode; // enum of atom_spread_spectrum_mode
  1140. uint16_t sclk_ss_percentage;
  1141. uint16_t sclk_ss_rate_10hz;
  1142. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1143. uint16_t gpuclk_ss_rate_10hz;
  1144. uint32_t core_refclk_10khz;
  1145. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1146. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1147. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1148. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1149. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1150. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1151. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1152. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1153. };
  1154. struct atom_smu_info_v3_2 {
  1155. struct atom_common_table_header table_header;
  1156. uint8_t smuip_min_ver;
  1157. uint8_t smuip_max_ver;
  1158. uint8_t smu_rsd1;
  1159. uint8_t gpuclk_ss_mode;
  1160. uint16_t sclk_ss_percentage;
  1161. uint16_t sclk_ss_rate_10hz;
  1162. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1163. uint16_t gpuclk_ss_rate_10hz;
  1164. uint32_t core_refclk_10khz;
  1165. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1166. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1167. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1168. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1169. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1170. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1171. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1172. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1173. uint8_t pcc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for PCC, =0xff means invalid
  1174. uint8_t pcc_gpio_polarity; // GPIO polarity for CTF
  1175. uint16_t smugoldenoffset;
  1176. uint32_t gpupll_vco_freq_10khz;
  1177. uint32_t bootup_smnclk_10khz;
  1178. uint32_t bootup_socclk_10khz;
  1179. uint32_t bootup_mp0clk_10khz;
  1180. uint32_t bootup_mp1clk_10khz;
  1181. uint32_t bootup_lclk_10khz;
  1182. uint32_t bootup_dcefclk_10khz;
  1183. uint32_t ctf_threshold_override_value;
  1184. uint32_t reserved[5];
  1185. };
  1186. struct atom_smu_info_v3_3 {
  1187. struct atom_common_table_header table_header;
  1188. uint8_t smuip_min_ver;
  1189. uint8_t smuip_max_ver;
  1190. uint8_t smu_rsd1;
  1191. uint8_t gpuclk_ss_mode;
  1192. uint16_t sclk_ss_percentage;
  1193. uint16_t sclk_ss_rate_10hz;
  1194. uint16_t gpuclk_ss_percentage; // in unit of 0.001%
  1195. uint16_t gpuclk_ss_rate_10hz;
  1196. uint32_t core_refclk_10khz;
  1197. uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid
  1198. uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching
  1199. uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid
  1200. uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event
  1201. uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid
  1202. uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event
  1203. uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid
  1204. uint8_t fw_ctf_polarity; // GPIO polarity for CTF
  1205. uint8_t pcc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for PCC, =0xff means invalid
  1206. uint8_t pcc_gpio_polarity; // GPIO polarity for CTF
  1207. uint16_t smugoldenoffset;
  1208. uint32_t gpupll_vco_freq_10khz;
  1209. uint32_t bootup_smnclk_10khz;
  1210. uint32_t bootup_socclk_10khz;
  1211. uint32_t bootup_mp0clk_10khz;
  1212. uint32_t bootup_mp1clk_10khz;
  1213. uint32_t bootup_lclk_10khz;
  1214. uint32_t bootup_dcefclk_10khz;
  1215. uint32_t ctf_threshold_override_value;
  1216. uint32_t syspll3_0_vco_freq_10khz;
  1217. uint32_t syspll3_1_vco_freq_10khz;
  1218. uint32_t bootup_fclk_10khz;
  1219. uint32_t bootup_waflclk_10khz;
  1220. uint32_t reserved[3];
  1221. };
  1222. /*
  1223. ***************************************************************************
  1224. Data Table smc_dpm_info structure
  1225. ***************************************************************************
  1226. */
  1227. struct atom_smc_dpm_info_v4_1
  1228. {
  1229. struct atom_common_table_header table_header;
  1230. uint8_t liquid1_i2c_address;
  1231. uint8_t liquid2_i2c_address;
  1232. uint8_t vr_i2c_address;
  1233. uint8_t plx_i2c_address;
  1234. uint8_t liquid_i2c_linescl;
  1235. uint8_t liquid_i2c_linesda;
  1236. uint8_t vr_i2c_linescl;
  1237. uint8_t vr_i2c_linesda;
  1238. uint8_t plx_i2c_linescl;
  1239. uint8_t plx_i2c_linesda;
  1240. uint8_t vrsensorpresent;
  1241. uint8_t liquidsensorpresent;
  1242. uint16_t maxvoltagestepgfx;
  1243. uint16_t maxvoltagestepsoc;
  1244. uint8_t vddgfxvrmapping;
  1245. uint8_t vddsocvrmapping;
  1246. uint8_t vddmem0vrmapping;
  1247. uint8_t vddmem1vrmapping;
  1248. uint8_t gfxulvphasesheddingmask;
  1249. uint8_t soculvphasesheddingmask;
  1250. uint8_t padding8_v[2];
  1251. uint16_t gfxmaxcurrent;
  1252. uint8_t gfxoffset;
  1253. uint8_t padding_telemetrygfx;
  1254. uint16_t socmaxcurrent;
  1255. uint8_t socoffset;
  1256. uint8_t padding_telemetrysoc;
  1257. uint16_t mem0maxcurrent;
  1258. uint8_t mem0offset;
  1259. uint8_t padding_telemetrymem0;
  1260. uint16_t mem1maxcurrent;
  1261. uint8_t mem1offset;
  1262. uint8_t padding_telemetrymem1;
  1263. uint8_t acdcgpio;
  1264. uint8_t acdcpolarity;
  1265. uint8_t vr0hotgpio;
  1266. uint8_t vr0hotpolarity;
  1267. uint8_t vr1hotgpio;
  1268. uint8_t vr1hotpolarity;
  1269. uint8_t padding1;
  1270. uint8_t padding2;
  1271. uint8_t ledpin0;
  1272. uint8_t ledpin1;
  1273. uint8_t ledpin2;
  1274. uint8_t padding8_4;
  1275. uint8_t pllgfxclkspreadenabled;
  1276. uint8_t pllgfxclkspreadpercent;
  1277. uint16_t pllgfxclkspreadfreq;
  1278. uint8_t uclkspreadenabled;
  1279. uint8_t uclkspreadpercent;
  1280. uint16_t uclkspreadfreq;
  1281. uint8_t socclkspreadenabled;
  1282. uint8_t socclkspreadpercent;
  1283. uint16_t socclkspreadfreq;
  1284. uint8_t acggfxclkspreadenabled;
  1285. uint8_t acggfxclkspreadpercent;
  1286. uint16_t acggfxclkspreadfreq;
  1287. uint32_t boardreserved[10];
  1288. };
  1289. /*
  1290. ***************************************************************************
  1291. Data Table asic_profiling_info structure
  1292. ***************************************************************************
  1293. */
  1294. struct atom_asic_profiling_info_v4_1
  1295. {
  1296. struct atom_common_table_header table_header;
  1297. uint32_t maxvddc;
  1298. uint32_t minvddc;
  1299. uint32_t avfs_meannsigma_acontant0;
  1300. uint32_t avfs_meannsigma_acontant1;
  1301. uint32_t avfs_meannsigma_acontant2;
  1302. uint16_t avfs_meannsigma_dc_tol_sigma;
  1303. uint16_t avfs_meannsigma_platform_mean;
  1304. uint16_t avfs_meannsigma_platform_sigma;
  1305. uint32_t gb_vdroop_table_cksoff_a0;
  1306. uint32_t gb_vdroop_table_cksoff_a1;
  1307. uint32_t gb_vdroop_table_cksoff_a2;
  1308. uint32_t gb_vdroop_table_ckson_a0;
  1309. uint32_t gb_vdroop_table_ckson_a1;
  1310. uint32_t gb_vdroop_table_ckson_a2;
  1311. uint32_t avfsgb_fuse_table_cksoff_m1;
  1312. uint32_t avfsgb_fuse_table_cksoff_m2;
  1313. uint32_t avfsgb_fuse_table_cksoff_b;
  1314. uint32_t avfsgb_fuse_table_ckson_m1;
  1315. uint32_t avfsgb_fuse_table_ckson_m2;
  1316. uint32_t avfsgb_fuse_table_ckson_b;
  1317. uint16_t max_voltage_0_25mv;
  1318. uint8_t enable_gb_vdroop_table_cksoff;
  1319. uint8_t enable_gb_vdroop_table_ckson;
  1320. uint8_t enable_gb_fuse_table_cksoff;
  1321. uint8_t enable_gb_fuse_table_ckson;
  1322. uint16_t psm_age_comfactor;
  1323. uint8_t enable_apply_avfs_cksoff_voltage;
  1324. uint8_t reserved;
  1325. uint32_t dispclk2gfxclk_a;
  1326. uint32_t dispclk2gfxclk_b;
  1327. uint32_t dispclk2gfxclk_c;
  1328. uint32_t pixclk2gfxclk_a;
  1329. uint32_t pixclk2gfxclk_b;
  1330. uint32_t pixclk2gfxclk_c;
  1331. uint32_t dcefclk2gfxclk_a;
  1332. uint32_t dcefclk2gfxclk_b;
  1333. uint32_t dcefclk2gfxclk_c;
  1334. uint32_t phyclk2gfxclk_a;
  1335. uint32_t phyclk2gfxclk_b;
  1336. uint32_t phyclk2gfxclk_c;
  1337. };
  1338. struct atom_asic_profiling_info_v4_2 {
  1339. struct atom_common_table_header table_header;
  1340. uint32_t maxvddc;
  1341. uint32_t minvddc;
  1342. uint32_t avfs_meannsigma_acontant0;
  1343. uint32_t avfs_meannsigma_acontant1;
  1344. uint32_t avfs_meannsigma_acontant2;
  1345. uint16_t avfs_meannsigma_dc_tol_sigma;
  1346. uint16_t avfs_meannsigma_platform_mean;
  1347. uint16_t avfs_meannsigma_platform_sigma;
  1348. uint32_t gb_vdroop_table_cksoff_a0;
  1349. uint32_t gb_vdroop_table_cksoff_a1;
  1350. uint32_t gb_vdroop_table_cksoff_a2;
  1351. uint32_t gb_vdroop_table_ckson_a0;
  1352. uint32_t gb_vdroop_table_ckson_a1;
  1353. uint32_t gb_vdroop_table_ckson_a2;
  1354. uint32_t avfsgb_fuse_table_cksoff_m1;
  1355. uint32_t avfsgb_fuse_table_cksoff_m2;
  1356. uint32_t avfsgb_fuse_table_cksoff_b;
  1357. uint32_t avfsgb_fuse_table_ckson_m1;
  1358. uint32_t avfsgb_fuse_table_ckson_m2;
  1359. uint32_t avfsgb_fuse_table_ckson_b;
  1360. uint16_t max_voltage_0_25mv;
  1361. uint8_t enable_gb_vdroop_table_cksoff;
  1362. uint8_t enable_gb_vdroop_table_ckson;
  1363. uint8_t enable_gb_fuse_table_cksoff;
  1364. uint8_t enable_gb_fuse_table_ckson;
  1365. uint16_t psm_age_comfactor;
  1366. uint8_t enable_apply_avfs_cksoff_voltage;
  1367. uint8_t reserved;
  1368. uint32_t dispclk2gfxclk_a;
  1369. uint32_t dispclk2gfxclk_b;
  1370. uint32_t dispclk2gfxclk_c;
  1371. uint32_t pixclk2gfxclk_a;
  1372. uint32_t pixclk2gfxclk_b;
  1373. uint32_t pixclk2gfxclk_c;
  1374. uint32_t dcefclk2gfxclk_a;
  1375. uint32_t dcefclk2gfxclk_b;
  1376. uint32_t dcefclk2gfxclk_c;
  1377. uint32_t phyclk2gfxclk_a;
  1378. uint32_t phyclk2gfxclk_b;
  1379. uint32_t phyclk2gfxclk_c;
  1380. uint32_t acg_gb_vdroop_table_a0;
  1381. uint32_t acg_gb_vdroop_table_a1;
  1382. uint32_t acg_gb_vdroop_table_a2;
  1383. uint32_t acg_avfsgb_fuse_table_m1;
  1384. uint32_t acg_avfsgb_fuse_table_m2;
  1385. uint32_t acg_avfsgb_fuse_table_b;
  1386. uint8_t enable_acg_gb_vdroop_table;
  1387. uint8_t enable_acg_gb_fuse_table;
  1388. uint32_t acg_dispclk2gfxclk_a;
  1389. uint32_t acg_dispclk2gfxclk_b;
  1390. uint32_t acg_dispclk2gfxclk_c;
  1391. uint32_t acg_pixclk2gfxclk_a;
  1392. uint32_t acg_pixclk2gfxclk_b;
  1393. uint32_t acg_pixclk2gfxclk_c;
  1394. uint32_t acg_dcefclk2gfxclk_a;
  1395. uint32_t acg_dcefclk2gfxclk_b;
  1396. uint32_t acg_dcefclk2gfxclk_c;
  1397. uint32_t acg_phyclk2gfxclk_a;
  1398. uint32_t acg_phyclk2gfxclk_b;
  1399. uint32_t acg_phyclk2gfxclk_c;
  1400. };
  1401. /*
  1402. ***************************************************************************
  1403. Data Table multimedia_info structure
  1404. ***************************************************************************
  1405. */
  1406. struct atom_multimedia_info_v2_1
  1407. {
  1408. struct atom_common_table_header table_header;
  1409. uint8_t uvdip_min_ver;
  1410. uint8_t uvdip_max_ver;
  1411. uint8_t vceip_min_ver;
  1412. uint8_t vceip_max_ver;
  1413. uint16_t uvd_enc_max_input_width_pixels;
  1414. uint16_t uvd_enc_max_input_height_pixels;
  1415. uint16_t vce_enc_max_input_width_pixels;
  1416. uint16_t vce_enc_max_input_height_pixels;
  1417. uint32_t uvd_enc_max_bandwidth; // 16x16 pixels/sec, codec independent
  1418. uint32_t vce_enc_max_bandwidth; // 16x16 pixels/sec, codec independent
  1419. };
  1420. /*
  1421. ***************************************************************************
  1422. Data Table umc_info structure
  1423. ***************************************************************************
  1424. */
  1425. struct atom_umc_info_v3_1
  1426. {
  1427. struct atom_common_table_header table_header;
  1428. uint32_t ucode_version;
  1429. uint32_t ucode_rom_startaddr;
  1430. uint32_t ucode_length;
  1431. uint16_t umc_reg_init_offset;
  1432. uint16_t customer_ucode_name_offset;
  1433. uint16_t mclk_ss_percentage;
  1434. uint16_t mclk_ss_rate_10hz;
  1435. uint8_t umcip_min_ver;
  1436. uint8_t umcip_max_ver;
  1437. uint8_t vram_type; //enum of atom_dgpu_vram_type
  1438. uint8_t umc_config;
  1439. uint32_t mem_refclk_10khz;
  1440. };
  1441. /*
  1442. ***************************************************************************
  1443. Data Table vram_info structure
  1444. ***************************************************************************
  1445. */
  1446. struct atom_vram_module_v9
  1447. {
  1448. // Design Specific Values
  1449. uint32_t memory_size; // Total memory size in unit of MB for CONFIG_MEMSIZE zeros
  1450. uint32_t channel_enable; // for 32 channel ASIC usage
  1451. uint32_t umcch_addrcfg;
  1452. uint32_t umcch_addrsel;
  1453. uint32_t umcch_colsel;
  1454. uint16_t vram_module_size; // Size of atom_vram_module_v9
  1455. uint8_t ext_memory_id; // Current memory module ID
  1456. uint8_t memory_type; // enum of atom_dgpu_vram_type
  1457. uint8_t channel_num; // Number of mem. channels supported in this module
  1458. uint8_t channel_width; // CHANNEL_16BIT/CHANNEL_32BIT/CHANNEL_64BIT
  1459. uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16
  1460. uint8_t tunningset_id; // MC phy registers set per.
  1461. uint8_t vender_rev_id; // [7:4] Revision, [3:0] Vendor code
  1462. uint8_t refreshrate; // [1:0]=RefreshFactor (00=8ms, 01=16ms, 10=32ms,11=64ms)
  1463. uint16_t vram_rsd2; // reserved
  1464. char dram_pnstring[20]; // part number end with '0'.
  1465. };
  1466. struct atom_vram_info_header_v2_3
  1467. {
  1468. struct atom_common_table_header table_header;
  1469. uint16_t mem_adjust_tbloffset; // offset of atom_umc_init_reg_block structure for memory vendor specific UMC adjust setting
  1470. uint16_t mem_clk_patch_tbloffset; // offset of atom_umc_init_reg_block structure for memory clock specific UMC setting
  1471. uint16_t mc_adjust_pertile_tbloffset; // offset of atom_umc_init_reg_block structure for Per Byte Offset Preset Settings
  1472. uint16_t mc_phyinit_tbloffset; // offset of atom_umc_init_reg_block structure for MC phy init set
  1473. uint16_t dram_data_remap_tbloffset; // reserved for now
  1474. uint16_t vram_rsd2[3];
  1475. uint8_t vram_module_num; // indicate number of VRAM module
  1476. uint8_t vram_rsd1[2];
  1477. uint8_t mc_phy_tile_num; // indicate the MCD tile number which use in DramDataRemapTbl and usMcAdjustPerTileTblOffset
  1478. struct atom_vram_module_v9 vram_module[16]; // just for allocation, real number of blocks is in ucNumOfVRAMModule;
  1479. };
  1480. struct atom_umc_register_addr_info{
  1481. uint32_t umc_register_addr:24;
  1482. uint32_t umc_reg_type_ind:1;
  1483. uint32_t umc_reg_rsvd:7;
  1484. };
  1485. //atom_umc_register_addr_info.
  1486. enum atom_umc_register_addr_info_flag{
  1487. b3ATOM_UMC_REG_ADD_INFO_INDIRECT_ACCESS =0x01,
  1488. };
  1489. union atom_umc_register_addr_info_access
  1490. {
  1491. struct atom_umc_register_addr_info umc_reg_addr;
  1492. uint32_t u32umc_reg_addr;
  1493. };
  1494. struct atom_umc_reg_setting_id_config{
  1495. uint32_t memclockrange:24;
  1496. uint32_t mem_blk_id:8;
  1497. };
  1498. union atom_umc_reg_setting_id_config_access
  1499. {
  1500. struct atom_umc_reg_setting_id_config umc_id_access;
  1501. uint32_t u32umc_id_access;
  1502. };
  1503. struct atom_umc_reg_setting_data_block{
  1504. union atom_umc_reg_setting_id_config_access block_id;
  1505. uint32_t u32umc_reg_data[1];
  1506. };
  1507. struct atom_umc_init_reg_block{
  1508. uint16_t umc_reg_num;
  1509. uint16_t reserved;
  1510. union atom_umc_register_addr_info_access umc_reg_list[1]; //for allocation purpose, the real number come from umc_reg_num;
  1511. struct atom_umc_reg_setting_data_block umc_reg_setting_list[1];
  1512. };
  1513. /*
  1514. ***************************************************************************
  1515. Data Table voltageobject_info structure
  1516. ***************************************************************************
  1517. */
  1518. struct atom_i2c_data_entry
  1519. {
  1520. uint16_t i2c_reg_index; // i2c register address, can be up to 16bit
  1521. uint16_t i2c_reg_data; // i2c register data, can be up to 16bit
  1522. };
  1523. struct atom_voltage_object_header_v4{
  1524. uint8_t voltage_type; //enum atom_voltage_type
  1525. uint8_t voltage_mode; //enum atom_voltage_object_mode
  1526. uint16_t object_size; //Size of Object
  1527. };
  1528. // atom_voltage_object_header_v4.voltage_mode
  1529. enum atom_voltage_object_mode
  1530. {
  1531. VOLTAGE_OBJ_GPIO_LUT = 0, //VOLTAGE and GPIO Lookup table ->atom_gpio_voltage_object_v4
  1532. VOLTAGE_OBJ_VR_I2C_INIT_SEQ = 3, //VOLTAGE REGULATOR INIT sequece through I2C -> atom_i2c_voltage_object_v4
  1533. VOLTAGE_OBJ_PHASE_LUT = 4, //Set Vregulator Phase lookup table ->atom_gpio_voltage_object_v4
  1534. VOLTAGE_OBJ_SVID2 = 7, //Indicate voltage control by SVID2 ->atom_svid2_voltage_object_v4
  1535. VOLTAGE_OBJ_EVV = 8,
  1536. VOLTAGE_OBJ_MERGED_POWER = 9,
  1537. };
  1538. struct atom_i2c_voltage_object_v4
  1539. {
  1540. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_VR_I2C_INIT_SEQ
  1541. uint8_t regulator_id; //Indicate Voltage Regulator Id
  1542. uint8_t i2c_id;
  1543. uint8_t i2c_slave_addr;
  1544. uint8_t i2c_control_offset;
  1545. uint8_t i2c_flag; // Bit0: 0 - One byte data; 1 - Two byte data
  1546. uint8_t i2c_speed; // =0, use default i2c speed, otherwise use it in unit of kHz.
  1547. uint8_t reserved[2];
  1548. struct atom_i2c_data_entry i2cdatalut[1]; // end with 0xff
  1549. };
  1550. // ATOM_I2C_VOLTAGE_OBJECT_V3.ucVoltageControlFlag
  1551. enum atom_i2c_voltage_control_flag
  1552. {
  1553. VOLTAGE_DATA_ONE_BYTE = 0,
  1554. VOLTAGE_DATA_TWO_BYTE = 1,
  1555. };
  1556. struct atom_voltage_gpio_map_lut
  1557. {
  1558. uint32_t voltage_gpio_reg_val; // The Voltage ID which is used to program GPIO register
  1559. uint16_t voltage_level_mv; // The corresponding Voltage Value, in mV
  1560. };
  1561. struct atom_gpio_voltage_object_v4
  1562. {
  1563. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_GPIO_LUT or VOLTAGE_OBJ_PHASE_LUT
  1564. uint8_t gpio_control_id; // default is 0 which indicate control through CG VID mode
  1565. uint8_t gpio_entry_num; // indiate the entry numbers of Votlage/Gpio value Look up table
  1566. uint8_t phase_delay_us; // phase delay in unit of micro second
  1567. uint8_t reserved;
  1568. uint32_t gpio_mask_val; // GPIO Mask value
  1569. struct atom_voltage_gpio_map_lut voltage_gpio_lut[1];
  1570. };
  1571. struct atom_svid2_voltage_object_v4
  1572. {
  1573. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_SVID2
  1574. uint8_t loadline_psi1; // bit4:0= loadline setting ( Core Loadline trim and offset trim ), bit5=0:PSI1_L disable =1: PSI1_L enable
  1575. uint8_t psi0_l_vid_thresd; // VR PSI0_L VID threshold
  1576. uint8_t psi0_enable; //
  1577. uint8_t maxvstep;
  1578. uint8_t telemetry_offset;
  1579. uint8_t telemetry_gain;
  1580. uint16_t reserved1;
  1581. };
  1582. struct atom_merged_voltage_object_v4
  1583. {
  1584. struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_MERGED_POWER
  1585. uint8_t merged_powerrail_type; //enum atom_voltage_type
  1586. uint8_t reserved[3];
  1587. };
  1588. union atom_voltage_object_v4{
  1589. struct atom_gpio_voltage_object_v4 gpio_voltage_obj;
  1590. struct atom_i2c_voltage_object_v4 i2c_voltage_obj;
  1591. struct atom_svid2_voltage_object_v4 svid2_voltage_obj;
  1592. struct atom_merged_voltage_object_v4 merged_voltage_obj;
  1593. };
  1594. struct atom_voltage_objects_info_v4_1
  1595. {
  1596. struct atom_common_table_header table_header;
  1597. union atom_voltage_object_v4 voltage_object[1]; //Info for Voltage control
  1598. };
  1599. /*
  1600. ***************************************************************************
  1601. All Command Function structure definition
  1602. ***************************************************************************
  1603. */
  1604. /*
  1605. ***************************************************************************
  1606. Structures used by asic_init
  1607. ***************************************************************************
  1608. */
  1609. struct asic_init_engine_parameters
  1610. {
  1611. uint32_t sclkfreqin10khz:24;
  1612. uint32_t engineflag:8; /* enum atom_asic_init_engine_flag */
  1613. };
  1614. struct asic_init_mem_parameters
  1615. {
  1616. uint32_t mclkfreqin10khz:24;
  1617. uint32_t memflag:8; /* enum atom_asic_init_mem_flag */
  1618. };
  1619. struct asic_init_parameters_v2_1
  1620. {
  1621. struct asic_init_engine_parameters engineparam;
  1622. struct asic_init_mem_parameters memparam;
  1623. };
  1624. struct asic_init_ps_allocation_v2_1
  1625. {
  1626. struct asic_init_parameters_v2_1 param;
  1627. uint32_t reserved[16];
  1628. };
  1629. enum atom_asic_init_engine_flag
  1630. {
  1631. b3NORMAL_ENGINE_INIT = 0,
  1632. b3SRIOV_SKIP_ASIC_INIT = 0x02,
  1633. b3SRIOV_LOAD_UCODE = 0x40,
  1634. };
  1635. enum atom_asic_init_mem_flag
  1636. {
  1637. b3NORMAL_MEM_INIT = 0,
  1638. b3DRAM_SELF_REFRESH_EXIT =0x20,
  1639. };
  1640. /*
  1641. ***************************************************************************
  1642. Structures used by setengineclock
  1643. ***************************************************************************
  1644. */
  1645. struct set_engine_clock_parameters_v2_1
  1646. {
  1647. uint32_t sclkfreqin10khz:24;
  1648. uint32_t sclkflag:8; /* enum atom_set_engine_mem_clock_flag, */
  1649. uint32_t reserved[10];
  1650. };
  1651. struct set_engine_clock_ps_allocation_v2_1
  1652. {
  1653. struct set_engine_clock_parameters_v2_1 clockinfo;
  1654. uint32_t reserved[10];
  1655. };
  1656. enum atom_set_engine_mem_clock_flag
  1657. {
  1658. b3NORMAL_CHANGE_CLOCK = 0,
  1659. b3FIRST_TIME_CHANGE_CLOCK = 0x08,
  1660. b3STORE_DPM_TRAINGING = 0x40, //Applicable to memory clock change,when set, it store specific DPM mode training result
  1661. };
  1662. /*
  1663. ***************************************************************************
  1664. Structures used by getengineclock
  1665. ***************************************************************************
  1666. */
  1667. struct get_engine_clock_parameter
  1668. {
  1669. uint32_t sclk_10khz; // current engine speed in 10KHz unit
  1670. uint32_t reserved;
  1671. };
  1672. /*
  1673. ***************************************************************************
  1674. Structures used by setmemoryclock
  1675. ***************************************************************************
  1676. */
  1677. struct set_memory_clock_parameters_v2_1
  1678. {
  1679. uint32_t mclkfreqin10khz:24;
  1680. uint32_t mclkflag:8; /* enum atom_set_engine_mem_clock_flag, */
  1681. uint32_t reserved[10];
  1682. };
  1683. struct set_memory_clock_ps_allocation_v2_1
  1684. {
  1685. struct set_memory_clock_parameters_v2_1 clockinfo;
  1686. uint32_t reserved[10];
  1687. };
  1688. /*
  1689. ***************************************************************************
  1690. Structures used by getmemoryclock
  1691. ***************************************************************************
  1692. */
  1693. struct get_memory_clock_parameter
  1694. {
  1695. uint32_t mclk_10khz; // current engine speed in 10KHz unit
  1696. uint32_t reserved;
  1697. };
  1698. /*
  1699. ***************************************************************************
  1700. Structures used by setvoltage
  1701. ***************************************************************************
  1702. */
  1703. struct set_voltage_parameters_v1_4
  1704. {
  1705. uint8_t voltagetype; /* enum atom_voltage_type */
  1706. uint8_t command; /* Indicate action: Set voltage level, enum atom_set_voltage_command */
  1707. uint16_t vlevel_mv; /* real voltage level in unit of mv or Voltage Phase (0, 1, 2, .. ) */
  1708. };
  1709. //set_voltage_parameters_v2_1.voltagemode
  1710. enum atom_set_voltage_command{
  1711. ATOM_SET_VOLTAGE = 0,
  1712. ATOM_INIT_VOLTAGE_REGULATOR = 3,
  1713. ATOM_SET_VOLTAGE_PHASE = 4,
  1714. ATOM_GET_LEAKAGE_ID = 8,
  1715. };
  1716. struct set_voltage_ps_allocation_v1_4
  1717. {
  1718. struct set_voltage_parameters_v1_4 setvoltageparam;
  1719. uint32_t reserved[10];
  1720. };
  1721. /*
  1722. ***************************************************************************
  1723. Structures used by computegpuclockparam
  1724. ***************************************************************************
  1725. */
  1726. //ATOM_COMPUTE_CLOCK_FREQ.ulComputeClockFlag
  1727. enum atom_gpu_clock_type
  1728. {
  1729. COMPUTE_GPUCLK_INPUT_FLAG_DEFAULT_GPUCLK =0x00,
  1730. COMPUTE_GPUCLK_INPUT_FLAG_GFXCLK =0x01,
  1731. COMPUTE_GPUCLK_INPUT_FLAG_UCLK =0x02,
  1732. };
  1733. struct compute_gpu_clock_input_parameter_v1_8
  1734. {
  1735. uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock
  1736. uint32_t gpu_clock_type:8; //Input indicate clock type: enum atom_gpu_clock_type
  1737. uint32_t reserved[5];
  1738. };
  1739. struct compute_gpu_clock_output_parameter_v1_8
  1740. {
  1741. uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock
  1742. uint32_t dfs_did:8; //return parameter: DFS divider which is used to program to register directly
  1743. uint32_t pll_fb_mult; //Feedback Multiplier, bit 8:0 int, bit 15:12 post_div, bit 31:16 frac
  1744. uint32_t pll_ss_fbsmult; // Spread FB Mult: bit 8:0 int, bit 31:16 frac
  1745. uint16_t pll_ss_slew_frac;
  1746. uint8_t pll_ss_enable;
  1747. uint8_t reserved;
  1748. uint32_t reserved1[2];
  1749. };
  1750. /*
  1751. ***************************************************************************
  1752. Structures used by ReadEfuseValue
  1753. ***************************************************************************
  1754. */
  1755. struct read_efuse_input_parameters_v3_1
  1756. {
  1757. uint16_t efuse_start_index;
  1758. uint8_t reserved;
  1759. uint8_t bitslen;
  1760. };
  1761. // ReadEfuseValue input/output parameter
  1762. union read_efuse_value_parameters_v3_1
  1763. {
  1764. struct read_efuse_input_parameters_v3_1 efuse_info;
  1765. uint32_t efusevalue;
  1766. };
  1767. /*
  1768. ***************************************************************************
  1769. Structures used by getsmuclockinfo
  1770. ***************************************************************************
  1771. */
  1772. struct atom_get_smu_clock_info_parameters_v3_1
  1773. {
  1774. uint8_t syspll_id; // 0= syspll0, 1=syspll1, 2=syspll2
  1775. uint8_t clk_id; // atom_smu9_syspll0_clock_id (only valid when command == GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ )
  1776. uint8_t command; // enum of atom_get_smu_clock_info_command
  1777. 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 )
  1778. };
  1779. enum atom_get_smu_clock_info_command
  1780. {
  1781. GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ = 0,
  1782. GET_SMU_CLOCK_INFO_V3_1_GET_PLLVCO_FREQ = 1,
  1783. GET_SMU_CLOCK_INFO_V3_1_GET_PLLREFCLK_FREQ = 2,
  1784. };
  1785. enum atom_smu9_syspll0_clock_id
  1786. {
  1787. SMU9_SYSPLL0_SMNCLK_ID = 0, // SMNCLK
  1788. SMU9_SYSPLL0_SOCCLK_ID = 1, // SOCCLK (FCLK)
  1789. SMU9_SYSPLL0_MP0CLK_ID = 2, // MP0CLK
  1790. SMU9_SYSPLL0_MP1CLK_ID = 3, // MP1CLK
  1791. SMU9_SYSPLL0_LCLK_ID = 4, // LCLK
  1792. SMU9_SYSPLL0_DCLK_ID = 5, // DCLK
  1793. SMU9_SYSPLL0_VCLK_ID = 6, // VCLK
  1794. SMU9_SYSPLL0_ECLK_ID = 7, // ECLK
  1795. SMU9_SYSPLL0_DCEFCLK_ID = 8, // DCEFCLK
  1796. SMU9_SYSPLL0_DPREFCLK_ID = 10, // DPREFCLK
  1797. SMU9_SYSPLL0_DISPCLK_ID = 11, // DISPCLK
  1798. };
  1799. enum atom_smu11_syspll_id {
  1800. SMU11_SYSPLL0_ID = 0,
  1801. SMU11_SYSPLL1_0_ID = 1,
  1802. SMU11_SYSPLL1_1_ID = 2,
  1803. SMU11_SYSPLL1_2_ID = 3,
  1804. SMU11_SYSPLL2_ID = 4,
  1805. SMU11_SYSPLL3_0_ID = 5,
  1806. SMU11_SYSPLL3_1_ID = 6,
  1807. };
  1808. enum atom_smu11_syspll0_clock_id {
  1809. SMU11_SYSPLL0_ECLK_ID = 0, // ECLK
  1810. SMU11_SYSPLL0_SOCCLK_ID = 1, // SOCCLK
  1811. SMU11_SYSPLL0_MP0CLK_ID = 2, // MP0CLK
  1812. SMU11_SYSPLL0_DCLK_ID = 3, // DCLK
  1813. SMU11_SYSPLL0_VCLK_ID = 4, // VCLK
  1814. SMU11_SYSPLL0_DCEFCLK_ID = 5, // DCEFCLK
  1815. };
  1816. enum atom_smu11_syspll1_0_clock_id {
  1817. SMU11_SYSPLL1_0_UCLKA_ID = 0, // UCLK_a
  1818. };
  1819. enum atom_smu11_syspll1_1_clock_id {
  1820. SMU11_SYSPLL1_0_UCLKB_ID = 0, // UCLK_b
  1821. };
  1822. enum atom_smu11_syspll1_2_clock_id {
  1823. SMU11_SYSPLL1_0_FCLK_ID = 0, // FCLK
  1824. };
  1825. enum atom_smu11_syspll2_clock_id {
  1826. SMU11_SYSPLL2_GFXCLK_ID = 0, // GFXCLK
  1827. };
  1828. enum atom_smu11_syspll3_0_clock_id {
  1829. SMU11_SYSPLL3_0_WAFCLK_ID = 0, // WAFCLK
  1830. SMU11_SYSPLL3_0_DISPCLK_ID = 1, // DISPCLK
  1831. SMU11_SYSPLL3_0_DPREFCLK_ID = 2, // DPREFCLK
  1832. };
  1833. enum atom_smu11_syspll3_1_clock_id {
  1834. SMU11_SYSPLL3_1_MP1CLK_ID = 0, // MP1CLK
  1835. SMU11_SYSPLL3_1_SMNCLK_ID = 1, // SMNCLK
  1836. SMU11_SYSPLL3_1_LCLK_ID = 2, // LCLK
  1837. };
  1838. struct atom_get_smu_clock_info_output_parameters_v3_1
  1839. {
  1840. union {
  1841. uint32_t smu_clock_freq_hz;
  1842. uint32_t syspllvcofreq_10khz;
  1843. uint32_t sysspllrefclk_10khz;
  1844. }atom_smu_outputclkfreq;
  1845. };
  1846. /*
  1847. ***************************************************************************
  1848. Structures used by dynamicmemorysettings
  1849. ***************************************************************************
  1850. */
  1851. enum atom_dynamic_memory_setting_command
  1852. {
  1853. COMPUTE_MEMORY_PLL_PARAM = 1,
  1854. COMPUTE_ENGINE_PLL_PARAM = 2,
  1855. ADJUST_MC_SETTING_PARAM = 3,
  1856. };
  1857. /* when command = COMPUTE_MEMORY_PLL_PARAM or ADJUST_MC_SETTING_PARAM */
  1858. struct dynamic_mclk_settings_parameters_v2_1
  1859. {
  1860. uint32_t mclk_10khz:24; //Input= target mclk
  1861. uint32_t command:8; //command enum of atom_dynamic_memory_setting_command
  1862. uint32_t reserved;
  1863. };
  1864. /* when command = COMPUTE_ENGINE_PLL_PARAM */
  1865. struct dynamic_sclk_settings_parameters_v2_1
  1866. {
  1867. uint32_t sclk_10khz:24; //Input= target mclk
  1868. uint32_t command:8; //command enum of atom_dynamic_memory_setting_command
  1869. uint32_t mclk_10khz;
  1870. uint32_t reserved;
  1871. };
  1872. union dynamic_memory_settings_parameters_v2_1
  1873. {
  1874. struct dynamic_mclk_settings_parameters_v2_1 mclk_setting;
  1875. struct dynamic_sclk_settings_parameters_v2_1 sclk_setting;
  1876. };
  1877. /*
  1878. ***************************************************************************
  1879. Structures used by memorytraining
  1880. ***************************************************************************
  1881. */
  1882. enum atom_umc6_0_ucode_function_call_enum_id
  1883. {
  1884. UMC60_UCODE_FUNC_ID_REINIT = 0,
  1885. UMC60_UCODE_FUNC_ID_ENTER_SELFREFRESH = 1,
  1886. UMC60_UCODE_FUNC_ID_EXIT_SELFREFRESH = 2,
  1887. };
  1888. struct memory_training_parameters_v2_1
  1889. {
  1890. uint8_t ucode_func_id;
  1891. uint8_t ucode_reserved[3];
  1892. uint32_t reserved[5];
  1893. };
  1894. /*
  1895. ***************************************************************************
  1896. Structures used by setpixelclock
  1897. ***************************************************************************
  1898. */
  1899. struct set_pixel_clock_parameter_v1_7
  1900. {
  1901. uint32_t pixclk_100hz; // target the pixel clock to drive the CRTC timing in unit of 100Hz.
  1902. uint8_t pll_id; // ATOM_PHY_PLL0/ATOM_PHY_PLL1/ATOM_PPLL0
  1903. uint8_t encoderobjid; // ASIC encoder id defined in objectId.h,
  1904. // indicate which graphic encoder will be used.
  1905. uint8_t encoder_mode; // Encoder mode:
  1906. uint8_t miscinfo; // enum atom_set_pixel_clock_v1_7_misc_info
  1907. uint8_t crtc_id; // enum of atom_crtc_def
  1908. uint8_t deep_color_ratio; // HDMI panel bit depth: enum atom_set_pixel_clock_v1_7_deepcolor_ratio
  1909. uint8_t reserved1[2];
  1910. uint32_t reserved2;
  1911. };
  1912. //ucMiscInfo
  1913. enum atom_set_pixel_clock_v1_7_misc_info
  1914. {
  1915. PIXEL_CLOCK_V7_MISC_FORCE_PROG_PPLL = 0x01,
  1916. PIXEL_CLOCK_V7_MISC_PROG_PHYPLL = 0x02,
  1917. PIXEL_CLOCK_V7_MISC_YUV420_MODE = 0x04,
  1918. PIXEL_CLOCK_V7_MISC_DVI_DUALLINK_EN = 0x08,
  1919. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC = 0x30,
  1920. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_XTALIN = 0x00,
  1921. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_PCIE = 0x10,
  1922. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_GENLK = 0x20,
  1923. PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_REFPAD = 0x30,
  1924. PIXEL_CLOCK_V7_MISC_ATOMIC_UPDATE = 0x40,
  1925. PIXEL_CLOCK_V7_MISC_FORCE_SS_DIS = 0x80,
  1926. };
  1927. /* deep_color_ratio */
  1928. enum atom_set_pixel_clock_v1_7_deepcolor_ratio
  1929. {
  1930. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO
  1931. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4
  1932. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2
  1933. PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1
  1934. };
  1935. /*
  1936. ***************************************************************************
  1937. Structures used by setdceclock
  1938. ***************************************************************************
  1939. */
  1940. // SetDCEClock input parameter for DCE11.2( ELM and BF ) and above
  1941. struct set_dce_clock_parameters_v2_1
  1942. {
  1943. uint32_t dceclk_10khz; // target DCE frequency in unit of 10KHZ, return real DISPCLK/DPREFCLK frequency.
  1944. uint8_t dceclktype; // =0: DISPCLK =1: DPREFCLK =2: PIXCLK
  1945. uint8_t dceclksrc; // ATOM_PLL0 or ATOM_GCK_DFS or ATOM_FCH_CLK or ATOM_COMBOPHY_PLLx
  1946. uint8_t dceclkflag; // Bit [1:0] = PPLL ref clock source ( when ucDCEClkSrc= ATOM_PPLL0 )
  1947. uint8_t crtc_id; // ucDisp Pipe Id, ATOM_CRTC0/1/2/..., use only when ucDCEClkType = PIXCLK
  1948. };
  1949. //ucDCEClkType
  1950. enum atom_set_dce_clock_clock_type
  1951. {
  1952. DCE_CLOCK_TYPE_DISPCLK = 0,
  1953. DCE_CLOCK_TYPE_DPREFCLK = 1,
  1954. DCE_CLOCK_TYPE_PIXELCLK = 2, // used by VBIOS internally, called by SetPixelClock
  1955. };
  1956. //ucDCEClkFlag when ucDCEClkType == DPREFCLK
  1957. enum atom_set_dce_clock_dprefclk_flag
  1958. {
  1959. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_MASK = 0x03,
  1960. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENERICA = 0x00,
  1961. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENLK = 0x01,
  1962. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_PCIE = 0x02,
  1963. DCE_CLOCK_FLAG_PLL_REFCLK_SRC_XTALIN = 0x03,
  1964. };
  1965. //ucDCEClkFlag when ucDCEClkType == PIXCLK
  1966. enum atom_set_dce_clock_pixclk_flag
  1967. {
  1968. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_MASK = 0x03,
  1969. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO
  1970. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4
  1971. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2
  1972. DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1
  1973. DCE_CLOCK_FLAG_PIXCLK_YUV420_MODE = 0x04,
  1974. };
  1975. struct set_dce_clock_ps_allocation_v2_1
  1976. {
  1977. struct set_dce_clock_parameters_v2_1 param;
  1978. uint32_t ulReserved[2];
  1979. };
  1980. /****************************************************************************/
  1981. // Structures used by BlankCRTC
  1982. /****************************************************************************/
  1983. struct blank_crtc_parameters
  1984. {
  1985. uint8_t crtc_id; // enum atom_crtc_def
  1986. uint8_t blanking; // enum atom_blank_crtc_command
  1987. uint16_t reserved;
  1988. uint32_t reserved1;
  1989. };
  1990. enum atom_blank_crtc_command
  1991. {
  1992. ATOM_BLANKING = 1,
  1993. ATOM_BLANKING_OFF = 0,
  1994. };
  1995. /****************************************************************************/
  1996. // Structures used by enablecrtc
  1997. /****************************************************************************/
  1998. struct enable_crtc_parameters
  1999. {
  2000. uint8_t crtc_id; // enum atom_crtc_def
  2001. uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE
  2002. uint8_t padding[2];
  2003. };
  2004. /****************************************************************************/
  2005. // Structure used by EnableDispPowerGating
  2006. /****************************************************************************/
  2007. struct enable_disp_power_gating_parameters_v2_1
  2008. {
  2009. uint8_t disp_pipe_id; // ATOM_CRTC1, ATOM_CRTC2, ...
  2010. uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE
  2011. uint8_t padding[2];
  2012. };
  2013. struct enable_disp_power_gating_ps_allocation
  2014. {
  2015. struct enable_disp_power_gating_parameters_v2_1 param;
  2016. uint32_t ulReserved[4];
  2017. };
  2018. /****************************************************************************/
  2019. // Structure used in setcrtc_usingdtdtiming
  2020. /****************************************************************************/
  2021. struct set_crtc_using_dtd_timing_parameters
  2022. {
  2023. uint16_t h_size;
  2024. uint16_t h_blanking_time;
  2025. uint16_t v_size;
  2026. uint16_t v_blanking_time;
  2027. uint16_t h_syncoffset;
  2028. uint16_t h_syncwidth;
  2029. uint16_t v_syncoffset;
  2030. uint16_t v_syncwidth;
  2031. uint16_t modemiscinfo;
  2032. uint8_t h_border;
  2033. uint8_t v_border;
  2034. uint8_t crtc_id; // enum atom_crtc_def
  2035. uint8_t encoder_mode; // atom_encode_mode_def
  2036. uint8_t padding[2];
  2037. };
  2038. /****************************************************************************/
  2039. // Structures used by processi2cchanneltransaction
  2040. /****************************************************************************/
  2041. struct process_i2c_channel_transaction_parameters
  2042. {
  2043. uint8_t i2cspeed_khz;
  2044. union {
  2045. uint8_t regindex;
  2046. uint8_t status; /* enum atom_process_i2c_flag */
  2047. } regind_status;
  2048. uint16_t i2c_data_out;
  2049. uint8_t flag; /* enum atom_process_i2c_status */
  2050. uint8_t trans_bytes;
  2051. uint8_t slave_addr;
  2052. uint8_t i2c_id;
  2053. };
  2054. //ucFlag
  2055. enum atom_process_i2c_flag
  2056. {
  2057. HW_I2C_WRITE = 1,
  2058. HW_I2C_READ = 0,
  2059. I2C_2BYTE_ADDR = 0x02,
  2060. HW_I2C_SMBUS_BYTE_WR = 0x04,
  2061. };
  2062. //status
  2063. enum atom_process_i2c_status
  2064. {
  2065. HW_ASSISTED_I2C_STATUS_FAILURE =2,
  2066. HW_ASSISTED_I2C_STATUS_SUCCESS =1,
  2067. };
  2068. /****************************************************************************/
  2069. // Structures used by processauxchanneltransaction
  2070. /****************************************************************************/
  2071. struct process_aux_channel_transaction_parameters_v1_2
  2072. {
  2073. uint16_t aux_request;
  2074. uint16_t dataout;
  2075. uint8_t channelid;
  2076. union {
  2077. uint8_t reply_status;
  2078. uint8_t aux_delay;
  2079. } aux_status_delay;
  2080. uint8_t dataout_len;
  2081. uint8_t hpd_id; //=0: HPD1, =1: HPD2, =2: HPD3, =3: HPD4, =4: HPD5, =5: HPD6
  2082. };
  2083. /****************************************************************************/
  2084. // Structures used by selectcrtc_source
  2085. /****************************************************************************/
  2086. struct select_crtc_source_parameters_v2_3
  2087. {
  2088. uint8_t crtc_id; // enum atom_crtc_def
  2089. uint8_t encoder_id; // enum atom_dig_def
  2090. uint8_t encode_mode; // enum atom_encode_mode_def
  2091. uint8_t dst_bpc; // enum atom_panel_bit_per_color
  2092. };
  2093. /****************************************************************************/
  2094. // Structures used by digxencodercontrol
  2095. /****************************************************************************/
  2096. // ucAction:
  2097. enum atom_dig_encoder_control_action
  2098. {
  2099. ATOM_ENCODER_CMD_DISABLE_DIG = 0,
  2100. ATOM_ENCODER_CMD_ENABLE_DIG = 1,
  2101. ATOM_ENCODER_CMD_DP_LINK_TRAINING_START = 0x08,
  2102. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1 = 0x09,
  2103. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2 = 0x0a,
  2104. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3 = 0x13,
  2105. ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE = 0x0b,
  2106. ATOM_ENCODER_CMD_DP_VIDEO_OFF = 0x0c,
  2107. ATOM_ENCODER_CMD_DP_VIDEO_ON = 0x0d,
  2108. ATOM_ENCODER_CMD_SETUP_PANEL_MODE = 0x10,
  2109. ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN4 = 0x14,
  2110. ATOM_ENCODER_CMD_STREAM_SETUP = 0x0F,
  2111. ATOM_ENCODER_CMD_LINK_SETUP = 0x11,
  2112. ATOM_ENCODER_CMD_ENCODER_BLANK = 0x12,
  2113. };
  2114. //define ucPanelMode
  2115. enum atom_dig_encoder_control_panelmode
  2116. {
  2117. DP_PANEL_MODE_DISABLE = 0x00,
  2118. DP_PANEL_MODE_ENABLE_eDP_MODE = 0x01,
  2119. DP_PANEL_MODE_ENABLE_LVLINK_MODE = 0x11,
  2120. };
  2121. //ucDigId
  2122. enum atom_dig_encoder_control_v5_digid
  2123. {
  2124. ATOM_ENCODER_CONFIG_V5_DIG0_ENCODER = 0x00,
  2125. ATOM_ENCODER_CONFIG_V5_DIG1_ENCODER = 0x01,
  2126. ATOM_ENCODER_CONFIG_V5_DIG2_ENCODER = 0x02,
  2127. ATOM_ENCODER_CONFIG_V5_DIG3_ENCODER = 0x03,
  2128. ATOM_ENCODER_CONFIG_V5_DIG4_ENCODER = 0x04,
  2129. ATOM_ENCODER_CONFIG_V5_DIG5_ENCODER = 0x05,
  2130. ATOM_ENCODER_CONFIG_V5_DIG6_ENCODER = 0x06,
  2131. ATOM_ENCODER_CONFIG_V5_DIG7_ENCODER = 0x07,
  2132. };
  2133. struct dig_encoder_stream_setup_parameters_v1_5
  2134. {
  2135. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2136. uint8_t action; // = ATOM_ENOCODER_CMD_STREAM_SETUP
  2137. uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI
  2138. uint8_t lanenum; // Lane number
  2139. uint32_t pclk_10khz; // Pixel Clock in 10Khz
  2140. uint8_t bitpercolor;
  2141. uint8_t dplinkrate_270mhz;//= DP link rate/270Mhz, =6: 1.62G = 10: 2.7G, =20: 5.4Ghz, =30: 8.1Ghz etc
  2142. uint8_t reserved[2];
  2143. };
  2144. struct dig_encoder_link_setup_parameters_v1_5
  2145. {
  2146. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2147. uint8_t action; // = ATOM_ENOCODER_CMD_LINK_SETUP
  2148. uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI
  2149. uint8_t lanenum; // Lane number
  2150. uint8_t symclk_10khz; // Symbol Clock in 10Khz
  2151. uint8_t hpd_sel;
  2152. uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable,
  2153. uint8_t reserved[2];
  2154. };
  2155. struct dp_panel_mode_set_parameters_v1_5
  2156. {
  2157. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2158. uint8_t action; // = ATOM_ENCODER_CMD_DPLINK_SETUP
  2159. uint8_t panelmode; // enum atom_dig_encoder_control_panelmode
  2160. uint8_t reserved1;
  2161. uint32_t reserved2[2];
  2162. };
  2163. struct dig_encoder_generic_cmd_parameters_v1_5
  2164. {
  2165. uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid
  2166. uint8_t action; // = rest of generic encoder command which does not carry any parameters
  2167. uint8_t reserved1[2];
  2168. uint32_t reserved2[2];
  2169. };
  2170. union dig_encoder_control_parameters_v1_5
  2171. {
  2172. struct dig_encoder_generic_cmd_parameters_v1_5 cmd_param;
  2173. struct dig_encoder_stream_setup_parameters_v1_5 stream_param;
  2174. struct dig_encoder_link_setup_parameters_v1_5 link_param;
  2175. struct dp_panel_mode_set_parameters_v1_5 dppanel_param;
  2176. };
  2177. /*
  2178. ***************************************************************************
  2179. Structures used by dig1transmittercontrol
  2180. ***************************************************************************
  2181. */
  2182. struct dig_transmitter_control_parameters_v1_6
  2183. {
  2184. uint8_t phyid; // 0=UNIPHYA, 1=UNIPHYB, 2=UNIPHYC, 3=UNIPHYD, 4= UNIPHYE 5=UNIPHYF
  2185. uint8_t action; // define as ATOM_TRANSMITER_ACTION_xxx
  2186. union {
  2187. uint8_t digmode; // enum atom_encode_mode_def
  2188. uint8_t dplaneset; // DP voltage swing and pre-emphasis value defined in DPCD DP_LANE_SET, "DP_LANE_SET__xDB_y_zV"
  2189. } mode_laneset;
  2190. uint8_t lanenum; // Lane number 1, 2, 4, 8
  2191. uint32_t symclk_10khz; // Symbol Clock in 10Khz
  2192. uint8_t hpdsel; // =1: HPD1, =2: HPD2, .... =6: HPD6, =0: HPD is not assigned
  2193. uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable,
  2194. uint8_t connobj_id; // Connector Object Id defined in ObjectId.h
  2195. uint8_t reserved;
  2196. uint32_t reserved1;
  2197. };
  2198. struct dig_transmitter_control_ps_allocation_v1_6
  2199. {
  2200. struct dig_transmitter_control_parameters_v1_6 param;
  2201. uint32_t reserved[4];
  2202. };
  2203. //ucAction
  2204. enum atom_dig_transmitter_control_action
  2205. {
  2206. ATOM_TRANSMITTER_ACTION_DISABLE = 0,
  2207. ATOM_TRANSMITTER_ACTION_ENABLE = 1,
  2208. ATOM_TRANSMITTER_ACTION_LCD_BLOFF = 2,
  2209. ATOM_TRANSMITTER_ACTION_LCD_BLON = 3,
  2210. ATOM_TRANSMITTER_ACTION_BL_BRIGHTNESS_CONTROL = 4,
  2211. ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_START = 5,
  2212. ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_STOP = 6,
  2213. ATOM_TRANSMITTER_ACTION_INIT = 7,
  2214. ATOM_TRANSMITTER_ACTION_DISABLE_OUTPUT = 8,
  2215. ATOM_TRANSMITTER_ACTION_ENABLE_OUTPUT = 9,
  2216. ATOM_TRANSMITTER_ACTION_SETUP = 10,
  2217. ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH = 11,
  2218. ATOM_TRANSMITTER_ACTION_POWER_ON = 12,
  2219. ATOM_TRANSMITTER_ACTION_POWER_OFF = 13,
  2220. };
  2221. // digfe_sel
  2222. enum atom_dig_transmitter_control_digfe_sel
  2223. {
  2224. ATOM_TRANMSITTER_V6__DIGA_SEL = 0x01,
  2225. ATOM_TRANMSITTER_V6__DIGB_SEL = 0x02,
  2226. ATOM_TRANMSITTER_V6__DIGC_SEL = 0x04,
  2227. ATOM_TRANMSITTER_V6__DIGD_SEL = 0x08,
  2228. ATOM_TRANMSITTER_V6__DIGE_SEL = 0x10,
  2229. ATOM_TRANMSITTER_V6__DIGF_SEL = 0x20,
  2230. ATOM_TRANMSITTER_V6__DIGG_SEL = 0x40,
  2231. };
  2232. //ucHPDSel
  2233. enum atom_dig_transmitter_control_hpd_sel
  2234. {
  2235. ATOM_TRANSMITTER_V6_NO_HPD_SEL = 0x00,
  2236. ATOM_TRANSMITTER_V6_HPD1_SEL = 0x01,
  2237. ATOM_TRANSMITTER_V6_HPD2_SEL = 0x02,
  2238. ATOM_TRANSMITTER_V6_HPD3_SEL = 0x03,
  2239. ATOM_TRANSMITTER_V6_HPD4_SEL = 0x04,
  2240. ATOM_TRANSMITTER_V6_HPD5_SEL = 0x05,
  2241. ATOM_TRANSMITTER_V6_HPD6_SEL = 0x06,
  2242. };
  2243. // ucDPLaneSet
  2244. enum atom_dig_transmitter_control_dplaneset
  2245. {
  2246. DP_LANE_SET__0DB_0_4V = 0x00,
  2247. DP_LANE_SET__0DB_0_6V = 0x01,
  2248. DP_LANE_SET__0DB_0_8V = 0x02,
  2249. DP_LANE_SET__0DB_1_2V = 0x03,
  2250. DP_LANE_SET__3_5DB_0_4V = 0x08,
  2251. DP_LANE_SET__3_5DB_0_6V = 0x09,
  2252. DP_LANE_SET__3_5DB_0_8V = 0x0a,
  2253. DP_LANE_SET__6DB_0_4V = 0x10,
  2254. DP_LANE_SET__6DB_0_6V = 0x11,
  2255. DP_LANE_SET__9_5DB_0_4V = 0x18,
  2256. };
  2257. /****************************************************************************/
  2258. // Structures used by ExternalEncoderControl V2.4
  2259. /****************************************************************************/
  2260. struct external_encoder_control_parameters_v2_4
  2261. {
  2262. uint16_t pixelclock_10khz; // pixel clock in 10Khz, valid when ucAction=SETUP/ENABLE_OUTPUT
  2263. uint8_t config; // indicate which encoder, and DP link rate when ucAction = SETUP/ENABLE_OUTPUT
  2264. uint8_t action; //
  2265. uint8_t encodermode; // encoder mode, only used when ucAction = SETUP/ENABLE_OUTPUT
  2266. uint8_t lanenum; // lane number, only used when ucAction = SETUP/ENABLE_OUTPUT
  2267. uint8_t bitpercolor; // output bit per color, only valid when ucAction = SETUP/ENABLE_OUTPUT and ucEncodeMode= DP
  2268. uint8_t hpd_id;
  2269. };
  2270. // ucAction
  2271. enum external_encoder_control_action_def
  2272. {
  2273. EXTERNAL_ENCODER_ACTION_V3_DISABLE_OUTPUT = 0x00,
  2274. EXTERNAL_ENCODER_ACTION_V3_ENABLE_OUTPUT = 0x01,
  2275. EXTERNAL_ENCODER_ACTION_V3_ENCODER_INIT = 0x07,
  2276. EXTERNAL_ENCODER_ACTION_V3_ENCODER_SETUP = 0x0f,
  2277. EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING_OFF = 0x10,
  2278. EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING = 0x11,
  2279. EXTERNAL_ENCODER_ACTION_V3_DACLOAD_DETECTION = 0x12,
  2280. EXTERNAL_ENCODER_ACTION_V3_DDC_SETUP = 0x14,
  2281. };
  2282. // ucConfig
  2283. enum external_encoder_control_v2_4_config_def
  2284. {
  2285. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_MASK = 0x03,
  2286. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_1_62GHZ = 0x00,
  2287. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_2_70GHZ = 0x01,
  2288. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_5_40GHZ = 0x02,
  2289. EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_3_24GHZ = 0x03,
  2290. EXTERNAL_ENCODER_CONFIG_V3_ENCODER_SEL_MAKS = 0x70,
  2291. EXTERNAL_ENCODER_CONFIG_V3_ENCODER1 = 0x00,
  2292. EXTERNAL_ENCODER_CONFIG_V3_ENCODER2 = 0x10,
  2293. EXTERNAL_ENCODER_CONFIG_V3_ENCODER3 = 0x20,
  2294. };
  2295. struct external_encoder_control_ps_allocation_v2_4
  2296. {
  2297. struct external_encoder_control_parameters_v2_4 sExtEncoder;
  2298. uint32_t reserved[2];
  2299. };
  2300. /*
  2301. ***************************************************************************
  2302. AMD ACPI Table
  2303. ***************************************************************************
  2304. */
  2305. struct amd_acpi_description_header{
  2306. uint32_t signature;
  2307. uint32_t tableLength; //Length
  2308. uint8_t revision;
  2309. uint8_t checksum;
  2310. uint8_t oemId[6];
  2311. uint8_t oemTableId[8]; //UINT64 OemTableId;
  2312. uint32_t oemRevision;
  2313. uint32_t creatorId;
  2314. uint32_t creatorRevision;
  2315. };
  2316. struct uefi_acpi_vfct{
  2317. struct amd_acpi_description_header sheader;
  2318. uint8_t tableUUID[16]; //0x24
  2319. uint32_t vbiosimageoffset; //0x34. Offset to the first GOP_VBIOS_CONTENT block from the beginning of the stucture.
  2320. uint32_t lib1Imageoffset; //0x38. Offset to the first GOP_LIB1_CONTENT block from the beginning of the stucture.
  2321. uint32_t reserved[4]; //0x3C
  2322. };
  2323. struct vfct_image_header{
  2324. uint32_t pcibus; //0x4C
  2325. uint32_t pcidevice; //0x50
  2326. uint32_t pcifunction; //0x54
  2327. uint16_t vendorid; //0x58
  2328. uint16_t deviceid; //0x5A
  2329. uint16_t ssvid; //0x5C
  2330. uint16_t ssid; //0x5E
  2331. uint32_t revision; //0x60
  2332. uint32_t imagelength; //0x64
  2333. };
  2334. struct gop_vbios_content {
  2335. struct vfct_image_header vbiosheader;
  2336. uint8_t vbioscontent[1];
  2337. };
  2338. struct gop_lib1_content {
  2339. struct vfct_image_header lib1header;
  2340. uint8_t lib1content[1];
  2341. };
  2342. /*
  2343. ***************************************************************************
  2344. Scratch Register definitions
  2345. Each number below indicates which scratch regiser request, Active and
  2346. Connect all share the same definitions as display_device_tag defines
  2347. ***************************************************************************
  2348. */
  2349. enum scratch_register_def{
  2350. ATOM_DEVICE_CONNECT_INFO_DEF = 0,
  2351. ATOM_BL_BRI_LEVEL_INFO_DEF = 2,
  2352. ATOM_ACTIVE_INFO_DEF = 3,
  2353. ATOM_LCD_INFO_DEF = 4,
  2354. ATOM_DEVICE_REQ_INFO_DEF = 5,
  2355. ATOM_ACC_CHANGE_INFO_DEF = 6,
  2356. ATOM_PRE_OS_MODE_INFO_DEF = 7,
  2357. ATOM_PRE_OS_ASSERTION_DEF = 8, //For GOP to record a 32bit assertion code, this is enabled by default in prodution GOP drivers.
  2358. ATOM_INTERNAL_TIMER_INFO_DEF = 10,
  2359. };
  2360. enum scratch_device_connect_info_bit_def{
  2361. ATOM_DISPLAY_LCD1_CONNECT =0x0002,
  2362. ATOM_DISPLAY_DFP1_CONNECT =0x0008,
  2363. ATOM_DISPLAY_DFP2_CONNECT =0x0080,
  2364. ATOM_DISPLAY_DFP3_CONNECT =0x0200,
  2365. ATOM_DISPLAY_DFP4_CONNECT =0x0400,
  2366. ATOM_DISPLAY_DFP5_CONNECT =0x0800,
  2367. ATOM_DISPLAY_DFP6_CONNECT =0x0040,
  2368. ATOM_DISPLAY_DFPx_CONNECT =0x0ec8,
  2369. ATOM_CONNECT_INFO_DEVICE_MASK =0x0fff,
  2370. };
  2371. enum scratch_bl_bri_level_info_bit_def{
  2372. ATOM_CURRENT_BL_LEVEL_SHIFT =0x8,
  2373. #ifndef _H2INC
  2374. ATOM_CURRENT_BL_LEVEL_MASK =0x0000ff00,
  2375. ATOM_DEVICE_DPMS_STATE =0x00010000,
  2376. #endif
  2377. };
  2378. enum scratch_active_info_bits_def{
  2379. ATOM_DISPLAY_LCD1_ACTIVE =0x0002,
  2380. ATOM_DISPLAY_DFP1_ACTIVE =0x0008,
  2381. ATOM_DISPLAY_DFP2_ACTIVE =0x0080,
  2382. ATOM_DISPLAY_DFP3_ACTIVE =0x0200,
  2383. ATOM_DISPLAY_DFP4_ACTIVE =0x0400,
  2384. ATOM_DISPLAY_DFP5_ACTIVE =0x0800,
  2385. ATOM_DISPLAY_DFP6_ACTIVE =0x0040,
  2386. ATOM_ACTIVE_INFO_DEVICE_MASK =0x0fff,
  2387. };
  2388. enum scratch_device_req_info_bits_def{
  2389. ATOM_DISPLAY_LCD1_REQ =0x0002,
  2390. ATOM_DISPLAY_DFP1_REQ =0x0008,
  2391. ATOM_DISPLAY_DFP2_REQ =0x0080,
  2392. ATOM_DISPLAY_DFP3_REQ =0x0200,
  2393. ATOM_DISPLAY_DFP4_REQ =0x0400,
  2394. ATOM_DISPLAY_DFP5_REQ =0x0800,
  2395. ATOM_DISPLAY_DFP6_REQ =0x0040,
  2396. ATOM_REQ_INFO_DEVICE_MASK =0x0fff,
  2397. };
  2398. enum scratch_acc_change_info_bitshift_def{
  2399. ATOM_ACC_CHANGE_ACC_MODE_SHIFT =4,
  2400. ATOM_ACC_CHANGE_LID_STATUS_SHIFT =6,
  2401. };
  2402. enum scratch_acc_change_info_bits_def{
  2403. ATOM_ACC_CHANGE_ACC_MODE =0x00000010,
  2404. ATOM_ACC_CHANGE_LID_STATUS =0x00000040,
  2405. };
  2406. enum scratch_pre_os_mode_info_bits_def{
  2407. ATOM_PRE_OS_MODE_MASK =0x00000003,
  2408. ATOM_PRE_OS_MODE_VGA =0x00000000,
  2409. ATOM_PRE_OS_MODE_VESA =0x00000001,
  2410. ATOM_PRE_OS_MODE_GOP =0x00000002,
  2411. ATOM_PRE_OS_MODE_PIXEL_DEPTH =0x0000000C,
  2412. ATOM_PRE_OS_MODE_PIXEL_FORMAT_MASK=0x000000F0,
  2413. ATOM_PRE_OS_MODE_8BIT_PAL_EN =0x00000100,
  2414. ATOM_ASIC_INIT_COMPLETE =0x00000200,
  2415. #ifndef _H2INC
  2416. ATOM_PRE_OS_MODE_NUMBER_MASK =0xFFFF0000,
  2417. #endif
  2418. };
  2419. /*
  2420. ***************************************************************************
  2421. ATOM firmware ID header file
  2422. !! Please keep it at end of the atomfirmware.h !!
  2423. ***************************************************************************
  2424. */
  2425. #include "atomfirmwareid.h"
  2426. #pragma pack()
  2427. #endif