dce_v8_0.c 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657
  1. /*
  2. * Copyright 2014 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. */
  23. #include <drm/drmP.h>
  24. #include "amdgpu.h"
  25. #include "amdgpu_pm.h"
  26. #include "amdgpu_i2c.h"
  27. #include "cikd.h"
  28. #include "atom.h"
  29. #include "amdgpu_atombios.h"
  30. #include "atombios_crtc.h"
  31. #include "atombios_encoders.h"
  32. #include "amdgpu_pll.h"
  33. #include "amdgpu_connectors.h"
  34. #include "dce_v8_0.h"
  35. #include "dce/dce_8_0_d.h"
  36. #include "dce/dce_8_0_sh_mask.h"
  37. #include "gca/gfx_7_2_enum.h"
  38. #include "gmc/gmc_7_1_d.h"
  39. #include "gmc/gmc_7_1_sh_mask.h"
  40. #include "oss/oss_2_0_d.h"
  41. #include "oss/oss_2_0_sh_mask.h"
  42. static void dce_v8_0_set_display_funcs(struct amdgpu_device *adev);
  43. static void dce_v8_0_set_irq_funcs(struct amdgpu_device *adev);
  44. static const u32 crtc_offsets[6] =
  45. {
  46. CRTC0_REGISTER_OFFSET,
  47. CRTC1_REGISTER_OFFSET,
  48. CRTC2_REGISTER_OFFSET,
  49. CRTC3_REGISTER_OFFSET,
  50. CRTC4_REGISTER_OFFSET,
  51. CRTC5_REGISTER_OFFSET
  52. };
  53. static const u32 hpd_offsets[] =
  54. {
  55. HPD0_REGISTER_OFFSET,
  56. HPD1_REGISTER_OFFSET,
  57. HPD2_REGISTER_OFFSET,
  58. HPD3_REGISTER_OFFSET,
  59. HPD4_REGISTER_OFFSET,
  60. HPD5_REGISTER_OFFSET
  61. };
  62. static const uint32_t dig_offsets[] = {
  63. CRTC0_REGISTER_OFFSET,
  64. CRTC1_REGISTER_OFFSET,
  65. CRTC2_REGISTER_OFFSET,
  66. CRTC3_REGISTER_OFFSET,
  67. CRTC4_REGISTER_OFFSET,
  68. CRTC5_REGISTER_OFFSET,
  69. (0x13830 - 0x7030) >> 2,
  70. };
  71. static const struct {
  72. uint32_t reg;
  73. uint32_t vblank;
  74. uint32_t vline;
  75. uint32_t hpd;
  76. } interrupt_status_offsets[6] = { {
  77. .reg = mmDISP_INTERRUPT_STATUS,
  78. .vblank = DISP_INTERRUPT_STATUS__LB_D1_VBLANK_INTERRUPT_MASK,
  79. .vline = DISP_INTERRUPT_STATUS__LB_D1_VLINE_INTERRUPT_MASK,
  80. .hpd = DISP_INTERRUPT_STATUS__DC_HPD1_INTERRUPT_MASK
  81. }, {
  82. .reg = mmDISP_INTERRUPT_STATUS_CONTINUE,
  83. .vblank = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VBLANK_INTERRUPT_MASK,
  84. .vline = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VLINE_INTERRUPT_MASK,
  85. .hpd = DISP_INTERRUPT_STATUS_CONTINUE__DC_HPD2_INTERRUPT_MASK
  86. }, {
  87. .reg = mmDISP_INTERRUPT_STATUS_CONTINUE2,
  88. .vblank = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VBLANK_INTERRUPT_MASK,
  89. .vline = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VLINE_INTERRUPT_MASK,
  90. .hpd = DISP_INTERRUPT_STATUS_CONTINUE2__DC_HPD3_INTERRUPT_MASK
  91. }, {
  92. .reg = mmDISP_INTERRUPT_STATUS_CONTINUE3,
  93. .vblank = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VBLANK_INTERRUPT_MASK,
  94. .vline = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VLINE_INTERRUPT_MASK,
  95. .hpd = DISP_INTERRUPT_STATUS_CONTINUE3__DC_HPD4_INTERRUPT_MASK
  96. }, {
  97. .reg = mmDISP_INTERRUPT_STATUS_CONTINUE4,
  98. .vblank = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VBLANK_INTERRUPT_MASK,
  99. .vline = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VLINE_INTERRUPT_MASK,
  100. .hpd = DISP_INTERRUPT_STATUS_CONTINUE4__DC_HPD5_INTERRUPT_MASK
  101. }, {
  102. .reg = mmDISP_INTERRUPT_STATUS_CONTINUE5,
  103. .vblank = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VBLANK_INTERRUPT_MASK,
  104. .vline = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VLINE_INTERRUPT_MASK,
  105. .hpd = DISP_INTERRUPT_STATUS_CONTINUE5__DC_HPD6_INTERRUPT_MASK
  106. } };
  107. static u32 dce_v8_0_audio_endpt_rreg(struct amdgpu_device *adev,
  108. u32 block_offset, u32 reg)
  109. {
  110. unsigned long flags;
  111. u32 r;
  112. spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
  113. WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
  114. r = RREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset);
  115. spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
  116. return r;
  117. }
  118. static void dce_v8_0_audio_endpt_wreg(struct amdgpu_device *adev,
  119. u32 block_offset, u32 reg, u32 v)
  120. {
  121. unsigned long flags;
  122. spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
  123. WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
  124. WREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset, v);
  125. spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
  126. }
  127. static bool dce_v8_0_is_in_vblank(struct amdgpu_device *adev, int crtc)
  128. {
  129. if (RREG32(mmCRTC_STATUS + crtc_offsets[crtc]) &
  130. CRTC_V_BLANK_START_END__CRTC_V_BLANK_START_MASK)
  131. return true;
  132. else
  133. return false;
  134. }
  135. static bool dce_v8_0_is_counter_moving(struct amdgpu_device *adev, int crtc)
  136. {
  137. u32 pos1, pos2;
  138. pos1 = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
  139. pos2 = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
  140. if (pos1 != pos2)
  141. return true;
  142. else
  143. return false;
  144. }
  145. /**
  146. * dce_v8_0_vblank_wait - vblank wait asic callback.
  147. *
  148. * @adev: amdgpu_device pointer
  149. * @crtc: crtc to wait for vblank on
  150. *
  151. * Wait for vblank on the requested crtc (evergreen+).
  152. */
  153. static void dce_v8_0_vblank_wait(struct amdgpu_device *adev, int crtc)
  154. {
  155. unsigned i = 100;
  156. if (crtc >= adev->mode_info.num_crtc)
  157. return;
  158. if (!(RREG32(mmCRTC_CONTROL + crtc_offsets[crtc]) & CRTC_CONTROL__CRTC_MASTER_EN_MASK))
  159. return;
  160. /* depending on when we hit vblank, we may be close to active; if so,
  161. * wait for another frame.
  162. */
  163. while (dce_v8_0_is_in_vblank(adev, crtc)) {
  164. if (i++ == 100) {
  165. i = 0;
  166. if (!dce_v8_0_is_counter_moving(adev, crtc))
  167. break;
  168. }
  169. }
  170. while (!dce_v8_0_is_in_vblank(adev, crtc)) {
  171. if (i++ == 100) {
  172. i = 0;
  173. if (!dce_v8_0_is_counter_moving(adev, crtc))
  174. break;
  175. }
  176. }
  177. }
  178. static u32 dce_v8_0_vblank_get_counter(struct amdgpu_device *adev, int crtc)
  179. {
  180. if (crtc >= adev->mode_info.num_crtc)
  181. return 0;
  182. else
  183. return RREG32(mmCRTC_STATUS_FRAME_COUNT + crtc_offsets[crtc]);
  184. }
  185. static void dce_v8_0_pageflip_interrupt_init(struct amdgpu_device *adev)
  186. {
  187. unsigned i;
  188. /* Enable pflip interrupts */
  189. for (i = 0; i < adev->mode_info.num_crtc; i++)
  190. amdgpu_irq_get(adev, &adev->pageflip_irq, i);
  191. }
  192. static void dce_v8_0_pageflip_interrupt_fini(struct amdgpu_device *adev)
  193. {
  194. unsigned i;
  195. /* Disable pflip interrupts */
  196. for (i = 0; i < adev->mode_info.num_crtc; i++)
  197. amdgpu_irq_put(adev, &adev->pageflip_irq, i);
  198. }
  199. /**
  200. * dce_v8_0_page_flip - pageflip callback.
  201. *
  202. * @adev: amdgpu_device pointer
  203. * @crtc_id: crtc to cleanup pageflip on
  204. * @crtc_base: new address of the crtc (GPU MC address)
  205. *
  206. * Triggers the actual pageflip by updating the primary
  207. * surface base address.
  208. */
  209. static void dce_v8_0_page_flip(struct amdgpu_device *adev,
  210. int crtc_id, u64 crtc_base, bool async)
  211. {
  212. struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
  213. /* flip at hsync for async, default is vsync */
  214. WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, async ?
  215. GRPH_FLIP_CONTROL__GRPH_SURFACE_UPDATE_H_RETRACE_EN_MASK : 0);
  216. /* update the primary scanout addresses */
  217. WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
  218. upper_32_bits(crtc_base));
  219. /* writing to the low address triggers the update */
  220. WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
  221. lower_32_bits(crtc_base));
  222. /* post the write */
  223. RREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset);
  224. }
  225. static int dce_v8_0_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
  226. u32 *vbl, u32 *position)
  227. {
  228. if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
  229. return -EINVAL;
  230. *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]);
  231. *position = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
  232. return 0;
  233. }
  234. /**
  235. * dce_v8_0_hpd_sense - hpd sense callback.
  236. *
  237. * @adev: amdgpu_device pointer
  238. * @hpd: hpd (hotplug detect) pin
  239. *
  240. * Checks if a digital monitor is connected (evergreen+).
  241. * Returns true if connected, false if not connected.
  242. */
  243. static bool dce_v8_0_hpd_sense(struct amdgpu_device *adev,
  244. enum amdgpu_hpd_id hpd)
  245. {
  246. bool connected = false;
  247. if (hpd >= adev->mode_info.num_hpd)
  248. return connected;
  249. if (RREG32(mmDC_HPD1_INT_STATUS + hpd_offsets[hpd]) &
  250. DC_HPD1_INT_STATUS__DC_HPD1_SENSE_MASK)
  251. connected = true;
  252. return connected;
  253. }
  254. /**
  255. * dce_v8_0_hpd_set_polarity - hpd set polarity callback.
  256. *
  257. * @adev: amdgpu_device pointer
  258. * @hpd: hpd (hotplug detect) pin
  259. *
  260. * Set the polarity of the hpd pin (evergreen+).
  261. */
  262. static void dce_v8_0_hpd_set_polarity(struct amdgpu_device *adev,
  263. enum amdgpu_hpd_id hpd)
  264. {
  265. u32 tmp;
  266. bool connected = dce_v8_0_hpd_sense(adev, hpd);
  267. if (hpd >= adev->mode_info.num_hpd)
  268. return;
  269. tmp = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd]);
  270. if (connected)
  271. tmp &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_POLARITY_MASK;
  272. else
  273. tmp |= DC_HPD1_INT_CONTROL__DC_HPD1_INT_POLARITY_MASK;
  274. WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd], tmp);
  275. }
  276. /**
  277. * dce_v8_0_hpd_init - hpd setup callback.
  278. *
  279. * @adev: amdgpu_device pointer
  280. *
  281. * Setup the hpd pins used by the card (evergreen+).
  282. * Enable the pin, set the polarity, and enable the hpd interrupts.
  283. */
  284. static void dce_v8_0_hpd_init(struct amdgpu_device *adev)
  285. {
  286. struct drm_device *dev = adev->ddev;
  287. struct drm_connector *connector;
  288. u32 tmp;
  289. list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
  290. struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
  291. if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
  292. continue;
  293. tmp = RREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
  294. tmp |= DC_HPD1_CONTROL__DC_HPD1_EN_MASK;
  295. WREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
  296. if (connector->connector_type == DRM_MODE_CONNECTOR_eDP ||
  297. connector->connector_type == DRM_MODE_CONNECTOR_LVDS) {
  298. /* don't try to enable hpd on eDP or LVDS avoid breaking the
  299. * aux dp channel on imac and help (but not completely fix)
  300. * https://bugzilla.redhat.com/show_bug.cgi?id=726143
  301. * also avoid interrupt storms during dpms.
  302. */
  303. tmp = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
  304. tmp &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK;
  305. WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
  306. continue;
  307. }
  308. dce_v8_0_hpd_set_polarity(adev, amdgpu_connector->hpd.hpd);
  309. amdgpu_irq_get(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
  310. }
  311. }
  312. /**
  313. * dce_v8_0_hpd_fini - hpd tear down callback.
  314. *
  315. * @adev: amdgpu_device pointer
  316. *
  317. * Tear down the hpd pins used by the card (evergreen+).
  318. * Disable the hpd interrupts.
  319. */
  320. static void dce_v8_0_hpd_fini(struct amdgpu_device *adev)
  321. {
  322. struct drm_device *dev = adev->ddev;
  323. struct drm_connector *connector;
  324. u32 tmp;
  325. list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
  326. struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
  327. if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
  328. continue;
  329. tmp = RREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
  330. tmp &= ~DC_HPD1_CONTROL__DC_HPD1_EN_MASK;
  331. WREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], 0);
  332. amdgpu_irq_put(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
  333. }
  334. }
  335. static u32 dce_v8_0_hpd_get_gpio_reg(struct amdgpu_device *adev)
  336. {
  337. return mmDC_GPIO_HPD_A;
  338. }
  339. static bool dce_v8_0_is_display_hung(struct amdgpu_device *adev)
  340. {
  341. u32 crtc_hung = 0;
  342. u32 crtc_status[6];
  343. u32 i, j, tmp;
  344. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  345. if (RREG32(mmCRTC_CONTROL + crtc_offsets[i]) & CRTC_CONTROL__CRTC_MASTER_EN_MASK) {
  346. crtc_status[i] = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
  347. crtc_hung |= (1 << i);
  348. }
  349. }
  350. for (j = 0; j < 10; j++) {
  351. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  352. if (crtc_hung & (1 << i)) {
  353. tmp = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
  354. if (tmp != crtc_status[i])
  355. crtc_hung &= ~(1 << i);
  356. }
  357. }
  358. if (crtc_hung == 0)
  359. return false;
  360. udelay(100);
  361. }
  362. return true;
  363. }
  364. static void dce_v8_0_stop_mc_access(struct amdgpu_device *adev,
  365. struct amdgpu_mode_mc_save *save)
  366. {
  367. u32 crtc_enabled, tmp;
  368. int i;
  369. save->vga_render_control = RREG32(mmVGA_RENDER_CONTROL);
  370. save->vga_hdp_control = RREG32(mmVGA_HDP_CONTROL);
  371. /* disable VGA render */
  372. tmp = RREG32(mmVGA_RENDER_CONTROL);
  373. tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
  374. WREG32(mmVGA_RENDER_CONTROL, tmp);
  375. /* blank the display controllers */
  376. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  377. crtc_enabled = REG_GET_FIELD(RREG32(mmCRTC_CONTROL + crtc_offsets[i]),
  378. CRTC_CONTROL, CRTC_MASTER_EN);
  379. if (crtc_enabled) {
  380. #if 1
  381. save->crtc_enabled[i] = true;
  382. tmp = RREG32(mmCRTC_BLANK_CONTROL + crtc_offsets[i]);
  383. if (REG_GET_FIELD(tmp, CRTC_BLANK_CONTROL, CRTC_BLANK_DATA_EN) == 0) {
  384. /*it is correct only for RGB ; black is 0*/
  385. WREG32(mmCRTC_BLANK_DATA_COLOR + crtc_offsets[i], 0);
  386. tmp = REG_SET_FIELD(tmp, CRTC_BLANK_CONTROL, CRTC_BLANK_DATA_EN, 1);
  387. WREG32(mmCRTC_BLANK_CONTROL + crtc_offsets[i], tmp);
  388. }
  389. mdelay(20);
  390. #else
  391. /* XXX this is a hack to avoid strange behavior with EFI on certain systems */
  392. WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 1);
  393. tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
  394. tmp = REG_SET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN, 0);
  395. WREG32(mmCRTC_CONTROL + crtc_offsets[i], tmp);
  396. WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 0);
  397. save->crtc_enabled[i] = false;
  398. /* ***** */
  399. #endif
  400. } else {
  401. save->crtc_enabled[i] = false;
  402. }
  403. }
  404. }
  405. static void dce_v8_0_resume_mc_access(struct amdgpu_device *adev,
  406. struct amdgpu_mode_mc_save *save)
  407. {
  408. u32 tmp;
  409. int i;
  410. /* update crtc base addresses */
  411. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  412. WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + crtc_offsets[i],
  413. upper_32_bits(adev->mc.vram_start));
  414. WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + crtc_offsets[i],
  415. (u32)adev->mc.vram_start);
  416. if (save->crtc_enabled[i]) {
  417. tmp = RREG32(mmCRTC_BLANK_CONTROL + crtc_offsets[i]);
  418. tmp = REG_SET_FIELD(tmp, CRTC_BLANK_CONTROL, CRTC_BLANK_DATA_EN, 0);
  419. WREG32(mmCRTC_BLANK_CONTROL + crtc_offsets[i], tmp);
  420. }
  421. mdelay(20);
  422. }
  423. WREG32(mmVGA_MEMORY_BASE_ADDRESS_HIGH, upper_32_bits(adev->mc.vram_start));
  424. WREG32(mmVGA_MEMORY_BASE_ADDRESS, lower_32_bits(adev->mc.vram_start));
  425. /* Unlock vga access */
  426. WREG32(mmVGA_HDP_CONTROL, save->vga_hdp_control);
  427. mdelay(1);
  428. WREG32(mmVGA_RENDER_CONTROL, save->vga_render_control);
  429. }
  430. static void dce_v8_0_set_vga_render_state(struct amdgpu_device *adev,
  431. bool render)
  432. {
  433. u32 tmp;
  434. /* Lockout access through VGA aperture*/
  435. tmp = RREG32(mmVGA_HDP_CONTROL);
  436. if (render)
  437. tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 0);
  438. else
  439. tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 1);
  440. WREG32(mmVGA_HDP_CONTROL, tmp);
  441. /* disable VGA render */
  442. tmp = RREG32(mmVGA_RENDER_CONTROL);
  443. if (render)
  444. tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 1);
  445. else
  446. tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
  447. WREG32(mmVGA_RENDER_CONTROL, tmp);
  448. }
  449. static int dce_v8_0_get_num_crtc(struct amdgpu_device *adev)
  450. {
  451. int num_crtc = 0;
  452. switch (adev->asic_type) {
  453. case CHIP_BONAIRE:
  454. case CHIP_HAWAII:
  455. num_crtc = 6;
  456. break;
  457. case CHIP_KAVERI:
  458. num_crtc = 4;
  459. break;
  460. case CHIP_KABINI:
  461. case CHIP_MULLINS:
  462. num_crtc = 2;
  463. break;
  464. default:
  465. num_crtc = 0;
  466. }
  467. return num_crtc;
  468. }
  469. void dce_v8_0_disable_dce(struct amdgpu_device *adev)
  470. {
  471. /*Disable VGA render and enabled crtc, if has DCE engine*/
  472. if (amdgpu_atombios_has_dce_engine_info(adev)) {
  473. u32 tmp;
  474. int crtc_enabled, i;
  475. dce_v8_0_set_vga_render_state(adev, false);
  476. /*Disable crtc*/
  477. for (i = 0; i < dce_v8_0_get_num_crtc(adev); i++) {
  478. crtc_enabled = REG_GET_FIELD(RREG32(mmCRTC_CONTROL + crtc_offsets[i]),
  479. CRTC_CONTROL, CRTC_MASTER_EN);
  480. if (crtc_enabled) {
  481. WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 1);
  482. tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
  483. tmp = REG_SET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN, 0);
  484. WREG32(mmCRTC_CONTROL + crtc_offsets[i], tmp);
  485. WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 0);
  486. }
  487. }
  488. }
  489. }
  490. static void dce_v8_0_program_fmt(struct drm_encoder *encoder)
  491. {
  492. struct drm_device *dev = encoder->dev;
  493. struct amdgpu_device *adev = dev->dev_private;
  494. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  495. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
  496. struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
  497. int bpc = 0;
  498. u32 tmp = 0;
  499. enum amdgpu_connector_dither dither = AMDGPU_FMT_DITHER_DISABLE;
  500. if (connector) {
  501. struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
  502. bpc = amdgpu_connector_get_monitor_bpc(connector);
  503. dither = amdgpu_connector->dither;
  504. }
  505. /* LVDS/eDP FMT is set up by atom */
  506. if (amdgpu_encoder->devices & ATOM_DEVICE_LCD_SUPPORT)
  507. return;
  508. /* not needed for analog */
  509. if ((amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1) ||
  510. (amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2))
  511. return;
  512. if (bpc == 0)
  513. return;
  514. switch (bpc) {
  515. case 6:
  516. if (dither == AMDGPU_FMT_DITHER_ENABLE)
  517. /* XXX sort out optimal dither settings */
  518. tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_FRAME_RANDOM_ENABLE_MASK |
  519. FMT_BIT_DEPTH_CONTROL__FMT_HIGHPASS_RANDOM_ENABLE_MASK |
  520. FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_EN_MASK |
  521. (0 << FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_DEPTH__SHIFT));
  522. else
  523. tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_EN_MASK |
  524. (0 << FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_DEPTH__SHIFT));
  525. break;
  526. case 8:
  527. if (dither == AMDGPU_FMT_DITHER_ENABLE)
  528. /* XXX sort out optimal dither settings */
  529. tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_FRAME_RANDOM_ENABLE_MASK |
  530. FMT_BIT_DEPTH_CONTROL__FMT_HIGHPASS_RANDOM_ENABLE_MASK |
  531. FMT_BIT_DEPTH_CONTROL__FMT_RGB_RANDOM_ENABLE_MASK |
  532. FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_EN_MASK |
  533. (1 << FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_DEPTH__SHIFT));
  534. else
  535. tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_EN_MASK |
  536. (1 << FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_DEPTH__SHIFT));
  537. break;
  538. case 10:
  539. if (dither == AMDGPU_FMT_DITHER_ENABLE)
  540. /* XXX sort out optimal dither settings */
  541. tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_FRAME_RANDOM_ENABLE_MASK |
  542. FMT_BIT_DEPTH_CONTROL__FMT_HIGHPASS_RANDOM_ENABLE_MASK |
  543. FMT_BIT_DEPTH_CONTROL__FMT_RGB_RANDOM_ENABLE_MASK |
  544. FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_EN_MASK |
  545. (2 << FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_DEPTH__SHIFT));
  546. else
  547. tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_EN_MASK |
  548. (2 << FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_DEPTH__SHIFT));
  549. break;
  550. default:
  551. /* not needed */
  552. break;
  553. }
  554. WREG32(mmFMT_BIT_DEPTH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
  555. }
  556. /* display watermark setup */
  557. /**
  558. * dce_v8_0_line_buffer_adjust - Set up the line buffer
  559. *
  560. * @adev: amdgpu_device pointer
  561. * @amdgpu_crtc: the selected display controller
  562. * @mode: the current display mode on the selected display
  563. * controller
  564. *
  565. * Setup up the line buffer allocation for
  566. * the selected display controller (CIK).
  567. * Returns the line buffer size in pixels.
  568. */
  569. static u32 dce_v8_0_line_buffer_adjust(struct amdgpu_device *adev,
  570. struct amdgpu_crtc *amdgpu_crtc,
  571. struct drm_display_mode *mode)
  572. {
  573. u32 tmp, buffer_alloc, i;
  574. u32 pipe_offset = amdgpu_crtc->crtc_id * 0x8;
  575. /*
  576. * Line Buffer Setup
  577. * There are 6 line buffers, one for each display controllers.
  578. * There are 3 partitions per LB. Select the number of partitions
  579. * to enable based on the display width. For display widths larger
  580. * than 4096, you need use to use 2 display controllers and combine
  581. * them using the stereo blender.
  582. */
  583. if (amdgpu_crtc->base.enabled && mode) {
  584. if (mode->crtc_hdisplay < 1920) {
  585. tmp = 1;
  586. buffer_alloc = 2;
  587. } else if (mode->crtc_hdisplay < 2560) {
  588. tmp = 2;
  589. buffer_alloc = 2;
  590. } else if (mode->crtc_hdisplay < 4096) {
  591. tmp = 0;
  592. buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
  593. } else {
  594. DRM_DEBUG_KMS("Mode too big for LB!\n");
  595. tmp = 0;
  596. buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
  597. }
  598. } else {
  599. tmp = 1;
  600. buffer_alloc = 0;
  601. }
  602. WREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset,
  603. (tmp << LB_MEMORY_CTRL__LB_MEMORY_CONFIG__SHIFT) |
  604. (0x6B0 << LB_MEMORY_CTRL__LB_MEMORY_SIZE__SHIFT));
  605. WREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset,
  606. (buffer_alloc << PIPE0_DMIF_BUFFER_CONTROL__DMIF_BUFFERS_ALLOCATED__SHIFT));
  607. for (i = 0; i < adev->usec_timeout; i++) {
  608. if (RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset) &
  609. PIPE0_DMIF_BUFFER_CONTROL__DMIF_BUFFERS_ALLOCATION_COMPLETED_MASK)
  610. break;
  611. udelay(1);
  612. }
  613. if (amdgpu_crtc->base.enabled && mode) {
  614. switch (tmp) {
  615. case 0:
  616. default:
  617. return 4096 * 2;
  618. case 1:
  619. return 1920 * 2;
  620. case 2:
  621. return 2560 * 2;
  622. }
  623. }
  624. /* controller not enabled, so no lb used */
  625. return 0;
  626. }
  627. /**
  628. * cik_get_number_of_dram_channels - get the number of dram channels
  629. *
  630. * @adev: amdgpu_device pointer
  631. *
  632. * Look up the number of video ram channels (CIK).
  633. * Used for display watermark bandwidth calculations
  634. * Returns the number of dram channels
  635. */
  636. static u32 cik_get_number_of_dram_channels(struct amdgpu_device *adev)
  637. {
  638. u32 tmp = RREG32(mmMC_SHARED_CHMAP);
  639. switch ((tmp & MC_SHARED_CHMAP__NOOFCHAN_MASK) >> MC_SHARED_CHMAP__NOOFCHAN__SHIFT) {
  640. case 0:
  641. default:
  642. return 1;
  643. case 1:
  644. return 2;
  645. case 2:
  646. return 4;
  647. case 3:
  648. return 8;
  649. case 4:
  650. return 3;
  651. case 5:
  652. return 6;
  653. case 6:
  654. return 10;
  655. case 7:
  656. return 12;
  657. case 8:
  658. return 16;
  659. }
  660. }
  661. struct dce8_wm_params {
  662. u32 dram_channels; /* number of dram channels */
  663. u32 yclk; /* bandwidth per dram data pin in kHz */
  664. u32 sclk; /* engine clock in kHz */
  665. u32 disp_clk; /* display clock in kHz */
  666. u32 src_width; /* viewport width */
  667. u32 active_time; /* active display time in ns */
  668. u32 blank_time; /* blank time in ns */
  669. bool interlaced; /* mode is interlaced */
  670. fixed20_12 vsc; /* vertical scale ratio */
  671. u32 num_heads; /* number of active crtcs */
  672. u32 bytes_per_pixel; /* bytes per pixel display + overlay */
  673. u32 lb_size; /* line buffer allocated to pipe */
  674. u32 vtaps; /* vertical scaler taps */
  675. };
  676. /**
  677. * dce_v8_0_dram_bandwidth - get the dram bandwidth
  678. *
  679. * @wm: watermark calculation data
  680. *
  681. * Calculate the raw dram bandwidth (CIK).
  682. * Used for display watermark bandwidth calculations
  683. * Returns the dram bandwidth in MBytes/s
  684. */
  685. static u32 dce_v8_0_dram_bandwidth(struct dce8_wm_params *wm)
  686. {
  687. /* Calculate raw DRAM Bandwidth */
  688. fixed20_12 dram_efficiency; /* 0.7 */
  689. fixed20_12 yclk, dram_channels, bandwidth;
  690. fixed20_12 a;
  691. a.full = dfixed_const(1000);
  692. yclk.full = dfixed_const(wm->yclk);
  693. yclk.full = dfixed_div(yclk, a);
  694. dram_channels.full = dfixed_const(wm->dram_channels * 4);
  695. a.full = dfixed_const(10);
  696. dram_efficiency.full = dfixed_const(7);
  697. dram_efficiency.full = dfixed_div(dram_efficiency, a);
  698. bandwidth.full = dfixed_mul(dram_channels, yclk);
  699. bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
  700. return dfixed_trunc(bandwidth);
  701. }
  702. /**
  703. * dce_v8_0_dram_bandwidth_for_display - get the dram bandwidth for display
  704. *
  705. * @wm: watermark calculation data
  706. *
  707. * Calculate the dram bandwidth used for display (CIK).
  708. * Used for display watermark bandwidth calculations
  709. * Returns the dram bandwidth for display in MBytes/s
  710. */
  711. static u32 dce_v8_0_dram_bandwidth_for_display(struct dce8_wm_params *wm)
  712. {
  713. /* Calculate DRAM Bandwidth and the part allocated to display. */
  714. fixed20_12 disp_dram_allocation; /* 0.3 to 0.7 */
  715. fixed20_12 yclk, dram_channels, bandwidth;
  716. fixed20_12 a;
  717. a.full = dfixed_const(1000);
  718. yclk.full = dfixed_const(wm->yclk);
  719. yclk.full = dfixed_div(yclk, a);
  720. dram_channels.full = dfixed_const(wm->dram_channels * 4);
  721. a.full = dfixed_const(10);
  722. disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */
  723. disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a);
  724. bandwidth.full = dfixed_mul(dram_channels, yclk);
  725. bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation);
  726. return dfixed_trunc(bandwidth);
  727. }
  728. /**
  729. * dce_v8_0_data_return_bandwidth - get the data return bandwidth
  730. *
  731. * @wm: watermark calculation data
  732. *
  733. * Calculate the data return bandwidth used for display (CIK).
  734. * Used for display watermark bandwidth calculations
  735. * Returns the data return bandwidth in MBytes/s
  736. */
  737. static u32 dce_v8_0_data_return_bandwidth(struct dce8_wm_params *wm)
  738. {
  739. /* Calculate the display Data return Bandwidth */
  740. fixed20_12 return_efficiency; /* 0.8 */
  741. fixed20_12 sclk, bandwidth;
  742. fixed20_12 a;
  743. a.full = dfixed_const(1000);
  744. sclk.full = dfixed_const(wm->sclk);
  745. sclk.full = dfixed_div(sclk, a);
  746. a.full = dfixed_const(10);
  747. return_efficiency.full = dfixed_const(8);
  748. return_efficiency.full = dfixed_div(return_efficiency, a);
  749. a.full = dfixed_const(32);
  750. bandwidth.full = dfixed_mul(a, sclk);
  751. bandwidth.full = dfixed_mul(bandwidth, return_efficiency);
  752. return dfixed_trunc(bandwidth);
  753. }
  754. /**
  755. * dce_v8_0_dmif_request_bandwidth - get the dmif bandwidth
  756. *
  757. * @wm: watermark calculation data
  758. *
  759. * Calculate the dmif bandwidth used for display (CIK).
  760. * Used for display watermark bandwidth calculations
  761. * Returns the dmif bandwidth in MBytes/s
  762. */
  763. static u32 dce_v8_0_dmif_request_bandwidth(struct dce8_wm_params *wm)
  764. {
  765. /* Calculate the DMIF Request Bandwidth */
  766. fixed20_12 disp_clk_request_efficiency; /* 0.8 */
  767. fixed20_12 disp_clk, bandwidth;
  768. fixed20_12 a, b;
  769. a.full = dfixed_const(1000);
  770. disp_clk.full = dfixed_const(wm->disp_clk);
  771. disp_clk.full = dfixed_div(disp_clk, a);
  772. a.full = dfixed_const(32);
  773. b.full = dfixed_mul(a, disp_clk);
  774. a.full = dfixed_const(10);
  775. disp_clk_request_efficiency.full = dfixed_const(8);
  776. disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a);
  777. bandwidth.full = dfixed_mul(b, disp_clk_request_efficiency);
  778. return dfixed_trunc(bandwidth);
  779. }
  780. /**
  781. * dce_v8_0_available_bandwidth - get the min available bandwidth
  782. *
  783. * @wm: watermark calculation data
  784. *
  785. * Calculate the min available bandwidth used for display (CIK).
  786. * Used for display watermark bandwidth calculations
  787. * Returns the min available bandwidth in MBytes/s
  788. */
  789. static u32 dce_v8_0_available_bandwidth(struct dce8_wm_params *wm)
  790. {
  791. /* Calculate the Available bandwidth. Display can use this temporarily but not in average. */
  792. u32 dram_bandwidth = dce_v8_0_dram_bandwidth(wm);
  793. u32 data_return_bandwidth = dce_v8_0_data_return_bandwidth(wm);
  794. u32 dmif_req_bandwidth = dce_v8_0_dmif_request_bandwidth(wm);
  795. return min(dram_bandwidth, min(data_return_bandwidth, dmif_req_bandwidth));
  796. }
  797. /**
  798. * dce_v8_0_average_bandwidth - get the average available bandwidth
  799. *
  800. * @wm: watermark calculation data
  801. *
  802. * Calculate the average available bandwidth used for display (CIK).
  803. * Used for display watermark bandwidth calculations
  804. * Returns the average available bandwidth in MBytes/s
  805. */
  806. static u32 dce_v8_0_average_bandwidth(struct dce8_wm_params *wm)
  807. {
  808. /* Calculate the display mode Average Bandwidth
  809. * DisplayMode should contain the source and destination dimensions,
  810. * timing, etc.
  811. */
  812. fixed20_12 bpp;
  813. fixed20_12 line_time;
  814. fixed20_12 src_width;
  815. fixed20_12 bandwidth;
  816. fixed20_12 a;
  817. a.full = dfixed_const(1000);
  818. line_time.full = dfixed_const(wm->active_time + wm->blank_time);
  819. line_time.full = dfixed_div(line_time, a);
  820. bpp.full = dfixed_const(wm->bytes_per_pixel);
  821. src_width.full = dfixed_const(wm->src_width);
  822. bandwidth.full = dfixed_mul(src_width, bpp);
  823. bandwidth.full = dfixed_mul(bandwidth, wm->vsc);
  824. bandwidth.full = dfixed_div(bandwidth, line_time);
  825. return dfixed_trunc(bandwidth);
  826. }
  827. /**
  828. * dce_v8_0_latency_watermark - get the latency watermark
  829. *
  830. * @wm: watermark calculation data
  831. *
  832. * Calculate the latency watermark (CIK).
  833. * Used for display watermark bandwidth calculations
  834. * Returns the latency watermark in ns
  835. */
  836. static u32 dce_v8_0_latency_watermark(struct dce8_wm_params *wm)
  837. {
  838. /* First calculate the latency in ns */
  839. u32 mc_latency = 2000; /* 2000 ns. */
  840. u32 available_bandwidth = dce_v8_0_available_bandwidth(wm);
  841. u32 worst_chunk_return_time = (512 * 8 * 1000) / available_bandwidth;
  842. u32 cursor_line_pair_return_time = (128 * 4 * 1000) / available_bandwidth;
  843. u32 dc_latency = 40000000 / wm->disp_clk; /* dc pipe latency */
  844. u32 other_heads_data_return_time = ((wm->num_heads + 1) * worst_chunk_return_time) +
  845. (wm->num_heads * cursor_line_pair_return_time);
  846. u32 latency = mc_latency + other_heads_data_return_time + dc_latency;
  847. u32 max_src_lines_per_dst_line, lb_fill_bw, line_fill_time;
  848. u32 tmp, dmif_size = 12288;
  849. fixed20_12 a, b, c;
  850. if (wm->num_heads == 0)
  851. return 0;
  852. a.full = dfixed_const(2);
  853. b.full = dfixed_const(1);
  854. if ((wm->vsc.full > a.full) ||
  855. ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) ||
  856. (wm->vtaps >= 5) ||
  857. ((wm->vsc.full >= a.full) && wm->interlaced))
  858. max_src_lines_per_dst_line = 4;
  859. else
  860. max_src_lines_per_dst_line = 2;
  861. a.full = dfixed_const(available_bandwidth);
  862. b.full = dfixed_const(wm->num_heads);
  863. a.full = dfixed_div(a, b);
  864. tmp = div_u64((u64) dmif_size * (u64) wm->disp_clk, mc_latency + 512);
  865. tmp = min(dfixed_trunc(a), tmp);
  866. lb_fill_bw = min(tmp, wm->disp_clk * wm->bytes_per_pixel / 1000);
  867. a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel);
  868. b.full = dfixed_const(1000);
  869. c.full = dfixed_const(lb_fill_bw);
  870. b.full = dfixed_div(c, b);
  871. a.full = dfixed_div(a, b);
  872. line_fill_time = dfixed_trunc(a);
  873. if (line_fill_time < wm->active_time)
  874. return latency;
  875. else
  876. return latency + (line_fill_time - wm->active_time);
  877. }
  878. /**
  879. * dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display - check
  880. * average and available dram bandwidth
  881. *
  882. * @wm: watermark calculation data
  883. *
  884. * Check if the display average bandwidth fits in the display
  885. * dram bandwidth (CIK).
  886. * Used for display watermark bandwidth calculations
  887. * Returns true if the display fits, false if not.
  888. */
  889. static bool dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display(struct dce8_wm_params *wm)
  890. {
  891. if (dce_v8_0_average_bandwidth(wm) <=
  892. (dce_v8_0_dram_bandwidth_for_display(wm) / wm->num_heads))
  893. return true;
  894. else
  895. return false;
  896. }
  897. /**
  898. * dce_v8_0_average_bandwidth_vs_available_bandwidth - check
  899. * average and available bandwidth
  900. *
  901. * @wm: watermark calculation data
  902. *
  903. * Check if the display average bandwidth fits in the display
  904. * available bandwidth (CIK).
  905. * Used for display watermark bandwidth calculations
  906. * Returns true if the display fits, false if not.
  907. */
  908. static bool dce_v8_0_average_bandwidth_vs_available_bandwidth(struct dce8_wm_params *wm)
  909. {
  910. if (dce_v8_0_average_bandwidth(wm) <=
  911. (dce_v8_0_available_bandwidth(wm) / wm->num_heads))
  912. return true;
  913. else
  914. return false;
  915. }
  916. /**
  917. * dce_v8_0_check_latency_hiding - check latency hiding
  918. *
  919. * @wm: watermark calculation data
  920. *
  921. * Check latency hiding (CIK).
  922. * Used for display watermark bandwidth calculations
  923. * Returns true if the display fits, false if not.
  924. */
  925. static bool dce_v8_0_check_latency_hiding(struct dce8_wm_params *wm)
  926. {
  927. u32 lb_partitions = wm->lb_size / wm->src_width;
  928. u32 line_time = wm->active_time + wm->blank_time;
  929. u32 latency_tolerant_lines;
  930. u32 latency_hiding;
  931. fixed20_12 a;
  932. a.full = dfixed_const(1);
  933. if (wm->vsc.full > a.full)
  934. latency_tolerant_lines = 1;
  935. else {
  936. if (lb_partitions <= (wm->vtaps + 1))
  937. latency_tolerant_lines = 1;
  938. else
  939. latency_tolerant_lines = 2;
  940. }
  941. latency_hiding = (latency_tolerant_lines * line_time + wm->blank_time);
  942. if (dce_v8_0_latency_watermark(wm) <= latency_hiding)
  943. return true;
  944. else
  945. return false;
  946. }
  947. /**
  948. * dce_v8_0_program_watermarks - program display watermarks
  949. *
  950. * @adev: amdgpu_device pointer
  951. * @amdgpu_crtc: the selected display controller
  952. * @lb_size: line buffer size
  953. * @num_heads: number of display controllers in use
  954. *
  955. * Calculate and program the display watermarks for the
  956. * selected display controller (CIK).
  957. */
  958. static void dce_v8_0_program_watermarks(struct amdgpu_device *adev,
  959. struct amdgpu_crtc *amdgpu_crtc,
  960. u32 lb_size, u32 num_heads)
  961. {
  962. struct drm_display_mode *mode = &amdgpu_crtc->base.mode;
  963. struct dce8_wm_params wm_low, wm_high;
  964. u32 active_time;
  965. u32 line_time = 0;
  966. u32 latency_watermark_a = 0, latency_watermark_b = 0;
  967. u32 tmp, wm_mask, lb_vblank_lead_lines = 0;
  968. if (amdgpu_crtc->base.enabled && num_heads && mode) {
  969. active_time = (u32) div_u64((u64)mode->crtc_hdisplay * 1000000,
  970. (u32)mode->clock);
  971. line_time = (u32) div_u64((u64)mode->crtc_htotal * 1000000,
  972. (u32)mode->clock);
  973. line_time = min(line_time, (u32)65535);
  974. /* watermark for high clocks */
  975. if (adev->pm.dpm_enabled) {
  976. wm_high.yclk =
  977. amdgpu_dpm_get_mclk(adev, false) * 10;
  978. wm_high.sclk =
  979. amdgpu_dpm_get_sclk(adev, false) * 10;
  980. } else {
  981. wm_high.yclk = adev->pm.current_mclk * 10;
  982. wm_high.sclk = adev->pm.current_sclk * 10;
  983. }
  984. wm_high.disp_clk = mode->clock;
  985. wm_high.src_width = mode->crtc_hdisplay;
  986. wm_high.active_time = active_time;
  987. wm_high.blank_time = line_time - wm_high.active_time;
  988. wm_high.interlaced = false;
  989. if (mode->flags & DRM_MODE_FLAG_INTERLACE)
  990. wm_high.interlaced = true;
  991. wm_high.vsc = amdgpu_crtc->vsc;
  992. wm_high.vtaps = 1;
  993. if (amdgpu_crtc->rmx_type != RMX_OFF)
  994. wm_high.vtaps = 2;
  995. wm_high.bytes_per_pixel = 4; /* XXX: get this from fb config */
  996. wm_high.lb_size = lb_size;
  997. wm_high.dram_channels = cik_get_number_of_dram_channels(adev);
  998. wm_high.num_heads = num_heads;
  999. /* set for high clocks */
  1000. latency_watermark_a = min(dce_v8_0_latency_watermark(&wm_high), (u32)65535);
  1001. /* possibly force display priority to high */
  1002. /* should really do this at mode validation time... */
  1003. if (!dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_high) ||
  1004. !dce_v8_0_average_bandwidth_vs_available_bandwidth(&wm_high) ||
  1005. !dce_v8_0_check_latency_hiding(&wm_high) ||
  1006. (adev->mode_info.disp_priority == 2)) {
  1007. DRM_DEBUG_KMS("force priority to high\n");
  1008. }
  1009. /* watermark for low clocks */
  1010. if (adev->pm.dpm_enabled) {
  1011. wm_low.yclk =
  1012. amdgpu_dpm_get_mclk(adev, true) * 10;
  1013. wm_low.sclk =
  1014. amdgpu_dpm_get_sclk(adev, true) * 10;
  1015. } else {
  1016. wm_low.yclk = adev->pm.current_mclk * 10;
  1017. wm_low.sclk = adev->pm.current_sclk * 10;
  1018. }
  1019. wm_low.disp_clk = mode->clock;
  1020. wm_low.src_width = mode->crtc_hdisplay;
  1021. wm_low.active_time = active_time;
  1022. wm_low.blank_time = line_time - wm_low.active_time;
  1023. wm_low.interlaced = false;
  1024. if (mode->flags & DRM_MODE_FLAG_INTERLACE)
  1025. wm_low.interlaced = true;
  1026. wm_low.vsc = amdgpu_crtc->vsc;
  1027. wm_low.vtaps = 1;
  1028. if (amdgpu_crtc->rmx_type != RMX_OFF)
  1029. wm_low.vtaps = 2;
  1030. wm_low.bytes_per_pixel = 4; /* XXX: get this from fb config */
  1031. wm_low.lb_size = lb_size;
  1032. wm_low.dram_channels = cik_get_number_of_dram_channels(adev);
  1033. wm_low.num_heads = num_heads;
  1034. /* set for low clocks */
  1035. latency_watermark_b = min(dce_v8_0_latency_watermark(&wm_low), (u32)65535);
  1036. /* possibly force display priority to high */
  1037. /* should really do this at mode validation time... */
  1038. if (!dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_low) ||
  1039. !dce_v8_0_average_bandwidth_vs_available_bandwidth(&wm_low) ||
  1040. !dce_v8_0_check_latency_hiding(&wm_low) ||
  1041. (adev->mode_info.disp_priority == 2)) {
  1042. DRM_DEBUG_KMS("force priority to high\n");
  1043. }
  1044. lb_vblank_lead_lines = DIV_ROUND_UP(lb_size, mode->crtc_hdisplay);
  1045. }
  1046. /* select wm A */
  1047. wm_mask = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
  1048. tmp = wm_mask;
  1049. tmp &= ~(3 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
  1050. tmp |= (1 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
  1051. WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
  1052. WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset,
  1053. ((latency_watermark_a << DPG_PIPE_URGENCY_CONTROL__URGENCY_LOW_WATERMARK__SHIFT) |
  1054. (line_time << DPG_PIPE_URGENCY_CONTROL__URGENCY_HIGH_WATERMARK__SHIFT)));
  1055. /* select wm B */
  1056. tmp = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
  1057. tmp &= ~(3 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
  1058. tmp |= (2 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
  1059. WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
  1060. WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset,
  1061. ((latency_watermark_b << DPG_PIPE_URGENCY_CONTROL__URGENCY_LOW_WATERMARK__SHIFT) |
  1062. (line_time << DPG_PIPE_URGENCY_CONTROL__URGENCY_HIGH_WATERMARK__SHIFT)));
  1063. /* restore original selection */
  1064. WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, wm_mask);
  1065. /* save values for DPM */
  1066. amdgpu_crtc->line_time = line_time;
  1067. amdgpu_crtc->wm_high = latency_watermark_a;
  1068. amdgpu_crtc->wm_low = latency_watermark_b;
  1069. /* Save number of lines the linebuffer leads before the scanout */
  1070. amdgpu_crtc->lb_vblank_lead_lines = lb_vblank_lead_lines;
  1071. }
  1072. /**
  1073. * dce_v8_0_bandwidth_update - program display watermarks
  1074. *
  1075. * @adev: amdgpu_device pointer
  1076. *
  1077. * Calculate and program the display watermarks and line
  1078. * buffer allocation (CIK).
  1079. */
  1080. static void dce_v8_0_bandwidth_update(struct amdgpu_device *adev)
  1081. {
  1082. struct drm_display_mode *mode = NULL;
  1083. u32 num_heads = 0, lb_size;
  1084. int i;
  1085. amdgpu_update_display_priority(adev);
  1086. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  1087. if (adev->mode_info.crtcs[i]->base.enabled)
  1088. num_heads++;
  1089. }
  1090. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  1091. mode = &adev->mode_info.crtcs[i]->base.mode;
  1092. lb_size = dce_v8_0_line_buffer_adjust(adev, adev->mode_info.crtcs[i], mode);
  1093. dce_v8_0_program_watermarks(adev, adev->mode_info.crtcs[i],
  1094. lb_size, num_heads);
  1095. }
  1096. }
  1097. static void dce_v8_0_audio_get_connected_pins(struct amdgpu_device *adev)
  1098. {
  1099. int i;
  1100. u32 offset, tmp;
  1101. for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
  1102. offset = adev->mode_info.audio.pin[i].offset;
  1103. tmp = RREG32_AUDIO_ENDPT(offset,
  1104. ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT);
  1105. if (((tmp &
  1106. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY_MASK) >>
  1107. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY__SHIFT) == 1)
  1108. adev->mode_info.audio.pin[i].connected = false;
  1109. else
  1110. adev->mode_info.audio.pin[i].connected = true;
  1111. }
  1112. }
  1113. static struct amdgpu_audio_pin *dce_v8_0_audio_get_pin(struct amdgpu_device *adev)
  1114. {
  1115. int i;
  1116. dce_v8_0_audio_get_connected_pins(adev);
  1117. for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
  1118. if (adev->mode_info.audio.pin[i].connected)
  1119. return &adev->mode_info.audio.pin[i];
  1120. }
  1121. DRM_ERROR("No connected audio pins found!\n");
  1122. return NULL;
  1123. }
  1124. static void dce_v8_0_afmt_audio_select_pin(struct drm_encoder *encoder)
  1125. {
  1126. struct amdgpu_device *adev = encoder->dev->dev_private;
  1127. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1128. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1129. u32 offset;
  1130. if (!dig || !dig->afmt || !dig->afmt->pin)
  1131. return;
  1132. offset = dig->afmt->offset;
  1133. WREG32(mmAFMT_AUDIO_SRC_CONTROL + offset,
  1134. (dig->afmt->pin->id << AFMT_AUDIO_SRC_CONTROL__AFMT_AUDIO_SRC_SELECT__SHIFT));
  1135. }
  1136. static void dce_v8_0_audio_write_latency_fields(struct drm_encoder *encoder,
  1137. struct drm_display_mode *mode)
  1138. {
  1139. struct amdgpu_device *adev = encoder->dev->dev_private;
  1140. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1141. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1142. struct drm_connector *connector;
  1143. struct amdgpu_connector *amdgpu_connector = NULL;
  1144. u32 tmp = 0, offset;
  1145. if (!dig || !dig->afmt || !dig->afmt->pin)
  1146. return;
  1147. offset = dig->afmt->pin->offset;
  1148. list_for_each_entry(connector, &encoder->dev->mode_config.connector_list, head) {
  1149. if (connector->encoder == encoder) {
  1150. amdgpu_connector = to_amdgpu_connector(connector);
  1151. break;
  1152. }
  1153. }
  1154. if (!amdgpu_connector) {
  1155. DRM_ERROR("Couldn't find encoder's connector\n");
  1156. return;
  1157. }
  1158. if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
  1159. if (connector->latency_present[1])
  1160. tmp =
  1161. (connector->video_latency[1] <<
  1162. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
  1163. (connector->audio_latency[1] <<
  1164. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
  1165. else
  1166. tmp =
  1167. (0 <<
  1168. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
  1169. (0 <<
  1170. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
  1171. } else {
  1172. if (connector->latency_present[0])
  1173. tmp =
  1174. (connector->video_latency[0] <<
  1175. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
  1176. (connector->audio_latency[0] <<
  1177. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
  1178. else
  1179. tmp =
  1180. (0 <<
  1181. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
  1182. (0 <<
  1183. AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
  1184. }
  1185. WREG32_AUDIO_ENDPT(offset, ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC, tmp);
  1186. }
  1187. static void dce_v8_0_audio_write_speaker_allocation(struct drm_encoder *encoder)
  1188. {
  1189. struct amdgpu_device *adev = encoder->dev->dev_private;
  1190. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1191. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1192. struct drm_connector *connector;
  1193. struct amdgpu_connector *amdgpu_connector = NULL;
  1194. u32 offset, tmp;
  1195. u8 *sadb = NULL;
  1196. int sad_count;
  1197. if (!dig || !dig->afmt || !dig->afmt->pin)
  1198. return;
  1199. offset = dig->afmt->pin->offset;
  1200. list_for_each_entry(connector, &encoder->dev->mode_config.connector_list, head) {
  1201. if (connector->encoder == encoder) {
  1202. amdgpu_connector = to_amdgpu_connector(connector);
  1203. break;
  1204. }
  1205. }
  1206. if (!amdgpu_connector) {
  1207. DRM_ERROR("Couldn't find encoder's connector\n");
  1208. return;
  1209. }
  1210. sad_count = drm_edid_to_speaker_allocation(amdgpu_connector_edid(connector), &sadb);
  1211. if (sad_count < 0) {
  1212. DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
  1213. sad_count = 0;
  1214. }
  1215. /* program the speaker allocation */
  1216. tmp = RREG32_AUDIO_ENDPT(offset, ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER);
  1217. tmp &= ~(AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__DP_CONNECTION_MASK |
  1218. AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__SPEAKER_ALLOCATION_MASK);
  1219. /* set HDMI mode */
  1220. tmp |= AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__HDMI_CONNECTION_MASK;
  1221. if (sad_count)
  1222. tmp |= (sadb[0] << AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__SPEAKER_ALLOCATION__SHIFT);
  1223. else
  1224. tmp |= (5 << AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__SPEAKER_ALLOCATION__SHIFT); /* stereo */
  1225. WREG32_AUDIO_ENDPT(offset, ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER, tmp);
  1226. kfree(sadb);
  1227. }
  1228. static void dce_v8_0_audio_write_sad_regs(struct drm_encoder *encoder)
  1229. {
  1230. struct amdgpu_device *adev = encoder->dev->dev_private;
  1231. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1232. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1233. u32 offset;
  1234. struct drm_connector *connector;
  1235. struct amdgpu_connector *amdgpu_connector = NULL;
  1236. struct cea_sad *sads;
  1237. int i, sad_count;
  1238. static const u16 eld_reg_to_type[][2] = {
  1239. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0, HDMI_AUDIO_CODING_TYPE_PCM },
  1240. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR1, HDMI_AUDIO_CODING_TYPE_AC3 },
  1241. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR2, HDMI_AUDIO_CODING_TYPE_MPEG1 },
  1242. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR3, HDMI_AUDIO_CODING_TYPE_MP3 },
  1243. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR4, HDMI_AUDIO_CODING_TYPE_MPEG2 },
  1244. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR5, HDMI_AUDIO_CODING_TYPE_AAC_LC },
  1245. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR6, HDMI_AUDIO_CODING_TYPE_DTS },
  1246. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR7, HDMI_AUDIO_CODING_TYPE_ATRAC },
  1247. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR9, HDMI_AUDIO_CODING_TYPE_EAC3 },
  1248. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR10, HDMI_AUDIO_CODING_TYPE_DTS_HD },
  1249. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR11, HDMI_AUDIO_CODING_TYPE_MLP },
  1250. { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR13, HDMI_AUDIO_CODING_TYPE_WMA_PRO },
  1251. };
  1252. if (!dig || !dig->afmt || !dig->afmt->pin)
  1253. return;
  1254. offset = dig->afmt->pin->offset;
  1255. list_for_each_entry(connector, &encoder->dev->mode_config.connector_list, head) {
  1256. if (connector->encoder == encoder) {
  1257. amdgpu_connector = to_amdgpu_connector(connector);
  1258. break;
  1259. }
  1260. }
  1261. if (!amdgpu_connector) {
  1262. DRM_ERROR("Couldn't find encoder's connector\n");
  1263. return;
  1264. }
  1265. sad_count = drm_edid_to_sad(amdgpu_connector_edid(connector), &sads);
  1266. if (sad_count <= 0) {
  1267. DRM_ERROR("Couldn't read SADs: %d\n", sad_count);
  1268. return;
  1269. }
  1270. BUG_ON(!sads);
  1271. for (i = 0; i < ARRAY_SIZE(eld_reg_to_type); i++) {
  1272. u32 value = 0;
  1273. u8 stereo_freqs = 0;
  1274. int max_channels = -1;
  1275. int j;
  1276. for (j = 0; j < sad_count; j++) {
  1277. struct cea_sad *sad = &sads[j];
  1278. if (sad->format == eld_reg_to_type[i][1]) {
  1279. if (sad->channels > max_channels) {
  1280. value = (sad->channels <<
  1281. AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__MAX_CHANNELS__SHIFT) |
  1282. (sad->byte2 <<
  1283. AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__DESCRIPTOR_BYTE_2__SHIFT) |
  1284. (sad->freq <<
  1285. AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__SUPPORTED_FREQUENCIES__SHIFT);
  1286. max_channels = sad->channels;
  1287. }
  1288. if (sad->format == HDMI_AUDIO_CODING_TYPE_PCM)
  1289. stereo_freqs |= sad->freq;
  1290. else
  1291. break;
  1292. }
  1293. }
  1294. value |= (stereo_freqs <<
  1295. AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__SUPPORTED_FREQUENCIES_STEREO__SHIFT);
  1296. WREG32_AUDIO_ENDPT(offset, eld_reg_to_type[i][0], value);
  1297. }
  1298. kfree(sads);
  1299. }
  1300. static void dce_v8_0_audio_enable(struct amdgpu_device *adev,
  1301. struct amdgpu_audio_pin *pin,
  1302. bool enable)
  1303. {
  1304. if (!pin)
  1305. return;
  1306. WREG32_AUDIO_ENDPT(pin->offset, ixAZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL,
  1307. enable ? AZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL__AUDIO_ENABLED_MASK : 0);
  1308. }
  1309. static const u32 pin_offsets[7] =
  1310. {
  1311. (0x1780 - 0x1780),
  1312. (0x1786 - 0x1780),
  1313. (0x178c - 0x1780),
  1314. (0x1792 - 0x1780),
  1315. (0x1798 - 0x1780),
  1316. (0x179d - 0x1780),
  1317. (0x17a4 - 0x1780),
  1318. };
  1319. static int dce_v8_0_audio_init(struct amdgpu_device *adev)
  1320. {
  1321. int i;
  1322. if (!amdgpu_audio)
  1323. return 0;
  1324. adev->mode_info.audio.enabled = true;
  1325. if (adev->asic_type == CHIP_KAVERI) /* KV: 4 streams, 7 endpoints */
  1326. adev->mode_info.audio.num_pins = 7;
  1327. else if ((adev->asic_type == CHIP_KABINI) ||
  1328. (adev->asic_type == CHIP_MULLINS)) /* KB/ML: 2 streams, 3 endpoints */
  1329. adev->mode_info.audio.num_pins = 3;
  1330. else if ((adev->asic_type == CHIP_BONAIRE) ||
  1331. (adev->asic_type == CHIP_HAWAII))/* BN/HW: 6 streams, 7 endpoints */
  1332. adev->mode_info.audio.num_pins = 7;
  1333. else
  1334. adev->mode_info.audio.num_pins = 3;
  1335. for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
  1336. adev->mode_info.audio.pin[i].channels = -1;
  1337. adev->mode_info.audio.pin[i].rate = -1;
  1338. adev->mode_info.audio.pin[i].bits_per_sample = -1;
  1339. adev->mode_info.audio.pin[i].status_bits = 0;
  1340. adev->mode_info.audio.pin[i].category_code = 0;
  1341. adev->mode_info.audio.pin[i].connected = false;
  1342. adev->mode_info.audio.pin[i].offset = pin_offsets[i];
  1343. adev->mode_info.audio.pin[i].id = i;
  1344. /* disable audio. it will be set up later */
  1345. /* XXX remove once we switch to ip funcs */
  1346. dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
  1347. }
  1348. return 0;
  1349. }
  1350. static void dce_v8_0_audio_fini(struct amdgpu_device *adev)
  1351. {
  1352. int i;
  1353. if (!amdgpu_audio)
  1354. return;
  1355. if (!adev->mode_info.audio.enabled)
  1356. return;
  1357. for (i = 0; i < adev->mode_info.audio.num_pins; i++)
  1358. dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
  1359. adev->mode_info.audio.enabled = false;
  1360. }
  1361. /*
  1362. * update the N and CTS parameters for a given pixel clock rate
  1363. */
  1364. static void dce_v8_0_afmt_update_ACR(struct drm_encoder *encoder, uint32_t clock)
  1365. {
  1366. struct drm_device *dev = encoder->dev;
  1367. struct amdgpu_device *adev = dev->dev_private;
  1368. struct amdgpu_afmt_acr acr = amdgpu_afmt_acr(clock);
  1369. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1370. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1371. uint32_t offset = dig->afmt->offset;
  1372. WREG32(mmHDMI_ACR_32_0 + offset, (acr.cts_32khz << HDMI_ACR_32_0__HDMI_ACR_CTS_32__SHIFT));
  1373. WREG32(mmHDMI_ACR_32_1 + offset, acr.n_32khz);
  1374. WREG32(mmHDMI_ACR_44_0 + offset, (acr.cts_44_1khz << HDMI_ACR_44_0__HDMI_ACR_CTS_44__SHIFT));
  1375. WREG32(mmHDMI_ACR_44_1 + offset, acr.n_44_1khz);
  1376. WREG32(mmHDMI_ACR_48_0 + offset, (acr.cts_48khz << HDMI_ACR_48_0__HDMI_ACR_CTS_48__SHIFT));
  1377. WREG32(mmHDMI_ACR_48_1 + offset, acr.n_48khz);
  1378. }
  1379. /*
  1380. * build a HDMI Video Info Frame
  1381. */
  1382. static void dce_v8_0_afmt_update_avi_infoframe(struct drm_encoder *encoder,
  1383. void *buffer, size_t size)
  1384. {
  1385. struct drm_device *dev = encoder->dev;
  1386. struct amdgpu_device *adev = dev->dev_private;
  1387. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1388. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1389. uint32_t offset = dig->afmt->offset;
  1390. uint8_t *frame = buffer + 3;
  1391. uint8_t *header = buffer;
  1392. WREG32(mmAFMT_AVI_INFO0 + offset,
  1393. frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
  1394. WREG32(mmAFMT_AVI_INFO1 + offset,
  1395. frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
  1396. WREG32(mmAFMT_AVI_INFO2 + offset,
  1397. frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
  1398. WREG32(mmAFMT_AVI_INFO3 + offset,
  1399. frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
  1400. }
  1401. static void dce_v8_0_audio_set_dto(struct drm_encoder *encoder, u32 clock)
  1402. {
  1403. struct drm_device *dev = encoder->dev;
  1404. struct amdgpu_device *adev = dev->dev_private;
  1405. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1406. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1407. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
  1408. u32 dto_phase = 24 * 1000;
  1409. u32 dto_modulo = clock;
  1410. if (!dig || !dig->afmt)
  1411. return;
  1412. /* XXX two dtos; generally use dto0 for hdmi */
  1413. /* Express [24MHz / target pixel clock] as an exact rational
  1414. * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE
  1415. * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
  1416. */
  1417. WREG32(mmDCCG_AUDIO_DTO_SOURCE, (amdgpu_crtc->crtc_id << DCCG_AUDIO_DTO_SOURCE__DCCG_AUDIO_DTO0_SOURCE_SEL__SHIFT));
  1418. WREG32(mmDCCG_AUDIO_DTO0_PHASE, dto_phase);
  1419. WREG32(mmDCCG_AUDIO_DTO0_MODULE, dto_modulo);
  1420. }
  1421. /*
  1422. * update the info frames with the data from the current display mode
  1423. */
  1424. static void dce_v8_0_afmt_setmode(struct drm_encoder *encoder,
  1425. struct drm_display_mode *mode)
  1426. {
  1427. struct drm_device *dev = encoder->dev;
  1428. struct amdgpu_device *adev = dev->dev_private;
  1429. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1430. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1431. struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
  1432. u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
  1433. struct hdmi_avi_infoframe frame;
  1434. uint32_t offset, val;
  1435. ssize_t err;
  1436. int bpc = 8;
  1437. if (!dig || !dig->afmt)
  1438. return;
  1439. /* Silent, r600_hdmi_enable will raise WARN for us */
  1440. if (!dig->afmt->enabled)
  1441. return;
  1442. offset = dig->afmt->offset;
  1443. /* hdmi deep color mode general control packets setup, if bpc > 8 */
  1444. if (encoder->crtc) {
  1445. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
  1446. bpc = amdgpu_crtc->bpc;
  1447. }
  1448. /* disable audio prior to setting up hw */
  1449. dig->afmt->pin = dce_v8_0_audio_get_pin(adev);
  1450. dce_v8_0_audio_enable(adev, dig->afmt->pin, false);
  1451. dce_v8_0_audio_set_dto(encoder, mode->clock);
  1452. WREG32(mmHDMI_VBI_PACKET_CONTROL + offset,
  1453. HDMI_VBI_PACKET_CONTROL__HDMI_NULL_SEND_MASK); /* send null packets when required */
  1454. WREG32(mmAFMT_AUDIO_CRC_CONTROL + offset, 0x1000);
  1455. val = RREG32(mmHDMI_CONTROL + offset);
  1456. val &= ~HDMI_CONTROL__HDMI_DEEP_COLOR_ENABLE_MASK;
  1457. val &= ~HDMI_CONTROL__HDMI_DEEP_COLOR_DEPTH_MASK;
  1458. switch (bpc) {
  1459. case 0:
  1460. case 6:
  1461. case 8:
  1462. case 16:
  1463. default:
  1464. DRM_DEBUG("%s: Disabling hdmi deep color for %d bpc.\n",
  1465. connector->name, bpc);
  1466. break;
  1467. case 10:
  1468. val |= HDMI_CONTROL__HDMI_DEEP_COLOR_ENABLE_MASK;
  1469. val |= 1 << HDMI_CONTROL__HDMI_DEEP_COLOR_DEPTH__SHIFT;
  1470. DRM_DEBUG("%s: Enabling hdmi deep color 30 for 10 bpc.\n",
  1471. connector->name);
  1472. break;
  1473. case 12:
  1474. val |= HDMI_CONTROL__HDMI_DEEP_COLOR_ENABLE_MASK;
  1475. val |= 2 << HDMI_CONTROL__HDMI_DEEP_COLOR_DEPTH__SHIFT;
  1476. DRM_DEBUG("%s: Enabling hdmi deep color 36 for 12 bpc.\n",
  1477. connector->name);
  1478. break;
  1479. }
  1480. WREG32(mmHDMI_CONTROL + offset, val);
  1481. WREG32(mmHDMI_VBI_PACKET_CONTROL + offset,
  1482. HDMI_VBI_PACKET_CONTROL__HDMI_NULL_SEND_MASK | /* send null packets when required */
  1483. HDMI_VBI_PACKET_CONTROL__HDMI_GC_SEND_MASK | /* send general control packets */
  1484. HDMI_VBI_PACKET_CONTROL__HDMI_GC_CONT_MASK); /* send general control packets every frame */
  1485. WREG32(mmHDMI_INFOFRAME_CONTROL0 + offset,
  1486. HDMI_INFOFRAME_CONTROL0__HDMI_AUDIO_INFO_SEND_MASK | /* enable audio info frames (frames won't be set until audio is enabled) */
  1487. HDMI_INFOFRAME_CONTROL0__HDMI_AUDIO_INFO_CONT_MASK); /* required for audio info values to be updated */
  1488. WREG32(mmAFMT_INFOFRAME_CONTROL0 + offset,
  1489. AFMT_INFOFRAME_CONTROL0__AFMT_AUDIO_INFO_UPDATE_MASK); /* required for audio info values to be updated */
  1490. WREG32(mmHDMI_INFOFRAME_CONTROL1 + offset,
  1491. (2 << HDMI_INFOFRAME_CONTROL1__HDMI_AUDIO_INFO_LINE__SHIFT)); /* anything other than 0 */
  1492. WREG32(mmHDMI_GC + offset, 0); /* unset HDMI_GC_AVMUTE */
  1493. WREG32(mmHDMI_AUDIO_PACKET_CONTROL + offset,
  1494. (1 << HDMI_AUDIO_PACKET_CONTROL__HDMI_AUDIO_DELAY_EN__SHIFT) | /* set the default audio delay */
  1495. (3 << HDMI_AUDIO_PACKET_CONTROL__HDMI_AUDIO_PACKETS_PER_LINE__SHIFT)); /* should be suffient for all audio modes and small enough for all hblanks */
  1496. WREG32(mmAFMT_AUDIO_PACKET_CONTROL + offset,
  1497. AFMT_AUDIO_PACKET_CONTROL__AFMT_60958_CS_UPDATE_MASK); /* allow 60958 channel status fields to be updated */
  1498. /* fglrx clears sth in AFMT_AUDIO_PACKET_CONTROL2 here */
  1499. if (bpc > 8)
  1500. WREG32(mmHDMI_ACR_PACKET_CONTROL + offset,
  1501. HDMI_ACR_PACKET_CONTROL__HDMI_ACR_AUTO_SEND_MASK); /* allow hw to sent ACR packets when required */
  1502. else
  1503. WREG32(mmHDMI_ACR_PACKET_CONTROL + offset,
  1504. HDMI_ACR_PACKET_CONTROL__HDMI_ACR_SOURCE_MASK | /* select SW CTS value */
  1505. HDMI_ACR_PACKET_CONTROL__HDMI_ACR_AUTO_SEND_MASK); /* allow hw to sent ACR packets when required */
  1506. dce_v8_0_afmt_update_ACR(encoder, mode->clock);
  1507. WREG32(mmAFMT_60958_0 + offset,
  1508. (1 << AFMT_60958_0__AFMT_60958_CS_CHANNEL_NUMBER_L__SHIFT));
  1509. WREG32(mmAFMT_60958_1 + offset,
  1510. (2 << AFMT_60958_1__AFMT_60958_CS_CHANNEL_NUMBER_R__SHIFT));
  1511. WREG32(mmAFMT_60958_2 + offset,
  1512. (3 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_2__SHIFT) |
  1513. (4 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_3__SHIFT) |
  1514. (5 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_4__SHIFT) |
  1515. (6 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_5__SHIFT) |
  1516. (7 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_6__SHIFT) |
  1517. (8 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_7__SHIFT));
  1518. dce_v8_0_audio_write_speaker_allocation(encoder);
  1519. WREG32(mmAFMT_AUDIO_PACKET_CONTROL2 + offset,
  1520. (0xff << AFMT_AUDIO_PACKET_CONTROL2__AFMT_AUDIO_CHANNEL_ENABLE__SHIFT));
  1521. dce_v8_0_afmt_audio_select_pin(encoder);
  1522. dce_v8_0_audio_write_sad_regs(encoder);
  1523. dce_v8_0_audio_write_latency_fields(encoder, mode);
  1524. err = drm_hdmi_avi_infoframe_from_display_mode(&frame, mode, false);
  1525. if (err < 0) {
  1526. DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
  1527. return;
  1528. }
  1529. err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
  1530. if (err < 0) {
  1531. DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
  1532. return;
  1533. }
  1534. dce_v8_0_afmt_update_avi_infoframe(encoder, buffer, sizeof(buffer));
  1535. WREG32_OR(mmHDMI_INFOFRAME_CONTROL0 + offset,
  1536. HDMI_INFOFRAME_CONTROL0__HDMI_AVI_INFO_SEND_MASK | /* enable AVI info frames */
  1537. HDMI_INFOFRAME_CONTROL0__HDMI_AVI_INFO_CONT_MASK); /* required for audio info values to be updated */
  1538. WREG32_P(mmHDMI_INFOFRAME_CONTROL1 + offset,
  1539. (2 << HDMI_INFOFRAME_CONTROL1__HDMI_AVI_INFO_LINE__SHIFT), /* anything other than 0 */
  1540. ~HDMI_INFOFRAME_CONTROL1__HDMI_AVI_INFO_LINE_MASK);
  1541. WREG32_OR(mmAFMT_AUDIO_PACKET_CONTROL + offset,
  1542. AFMT_AUDIO_PACKET_CONTROL__AFMT_AUDIO_SAMPLE_SEND_MASK); /* send audio packets */
  1543. WREG32(mmAFMT_RAMP_CONTROL0 + offset, 0x00FFFFFF);
  1544. WREG32(mmAFMT_RAMP_CONTROL1 + offset, 0x007FFFFF);
  1545. WREG32(mmAFMT_RAMP_CONTROL2 + offset, 0x00000001);
  1546. WREG32(mmAFMT_RAMP_CONTROL3 + offset, 0x00000001);
  1547. /* enable audio after setting up hw */
  1548. dce_v8_0_audio_enable(adev, dig->afmt->pin, true);
  1549. }
  1550. static void dce_v8_0_afmt_enable(struct drm_encoder *encoder, bool enable)
  1551. {
  1552. struct drm_device *dev = encoder->dev;
  1553. struct amdgpu_device *adev = dev->dev_private;
  1554. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1555. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1556. if (!dig || !dig->afmt)
  1557. return;
  1558. /* Silent, r600_hdmi_enable will raise WARN for us */
  1559. if (enable && dig->afmt->enabled)
  1560. return;
  1561. if (!enable && !dig->afmt->enabled)
  1562. return;
  1563. if (!enable && dig->afmt->pin) {
  1564. dce_v8_0_audio_enable(adev, dig->afmt->pin, false);
  1565. dig->afmt->pin = NULL;
  1566. }
  1567. dig->afmt->enabled = enable;
  1568. DRM_DEBUG("%sabling AFMT interface @ 0x%04X for encoder 0x%x\n",
  1569. enable ? "En" : "Dis", dig->afmt->offset, amdgpu_encoder->encoder_id);
  1570. }
  1571. static int dce_v8_0_afmt_init(struct amdgpu_device *adev)
  1572. {
  1573. int i;
  1574. for (i = 0; i < adev->mode_info.num_dig; i++)
  1575. adev->mode_info.afmt[i] = NULL;
  1576. /* DCE8 has audio blocks tied to DIG encoders */
  1577. for (i = 0; i < adev->mode_info.num_dig; i++) {
  1578. adev->mode_info.afmt[i] = kzalloc(sizeof(struct amdgpu_afmt), GFP_KERNEL);
  1579. if (adev->mode_info.afmt[i]) {
  1580. adev->mode_info.afmt[i]->offset = dig_offsets[i];
  1581. adev->mode_info.afmt[i]->id = i;
  1582. } else {
  1583. int j;
  1584. for (j = 0; j < i; j++) {
  1585. kfree(adev->mode_info.afmt[j]);
  1586. adev->mode_info.afmt[j] = NULL;
  1587. }
  1588. return -ENOMEM;
  1589. }
  1590. }
  1591. return 0;
  1592. }
  1593. static void dce_v8_0_afmt_fini(struct amdgpu_device *adev)
  1594. {
  1595. int i;
  1596. for (i = 0; i < adev->mode_info.num_dig; i++) {
  1597. kfree(adev->mode_info.afmt[i]);
  1598. adev->mode_info.afmt[i] = NULL;
  1599. }
  1600. }
  1601. static const u32 vga_control_regs[6] =
  1602. {
  1603. mmD1VGA_CONTROL,
  1604. mmD2VGA_CONTROL,
  1605. mmD3VGA_CONTROL,
  1606. mmD4VGA_CONTROL,
  1607. mmD5VGA_CONTROL,
  1608. mmD6VGA_CONTROL,
  1609. };
  1610. static void dce_v8_0_vga_enable(struct drm_crtc *crtc, bool enable)
  1611. {
  1612. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  1613. struct drm_device *dev = crtc->dev;
  1614. struct amdgpu_device *adev = dev->dev_private;
  1615. u32 vga_control;
  1616. vga_control = RREG32(vga_control_regs[amdgpu_crtc->crtc_id]) & ~1;
  1617. if (enable)
  1618. WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control | 1);
  1619. else
  1620. WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control);
  1621. }
  1622. static void dce_v8_0_grph_enable(struct drm_crtc *crtc, bool enable)
  1623. {
  1624. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  1625. struct drm_device *dev = crtc->dev;
  1626. struct amdgpu_device *adev = dev->dev_private;
  1627. if (enable)
  1628. WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 1);
  1629. else
  1630. WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 0);
  1631. }
  1632. static int dce_v8_0_crtc_do_set_base(struct drm_crtc *crtc,
  1633. struct drm_framebuffer *fb,
  1634. int x, int y, int atomic)
  1635. {
  1636. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  1637. struct drm_device *dev = crtc->dev;
  1638. struct amdgpu_device *adev = dev->dev_private;
  1639. struct amdgpu_framebuffer *amdgpu_fb;
  1640. struct drm_framebuffer *target_fb;
  1641. struct drm_gem_object *obj;
  1642. struct amdgpu_bo *abo;
  1643. uint64_t fb_location, tiling_flags;
  1644. uint32_t fb_format, fb_pitch_pixels;
  1645. u32 fb_swap = (GRPH_ENDIAN_NONE << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1646. u32 pipe_config;
  1647. u32 viewport_w, viewport_h;
  1648. int r;
  1649. bool bypass_lut = false;
  1650. struct drm_format_name_buf format_name;
  1651. /* no fb bound */
  1652. if (!atomic && !crtc->primary->fb) {
  1653. DRM_DEBUG_KMS("No FB bound\n");
  1654. return 0;
  1655. }
  1656. if (atomic) {
  1657. amdgpu_fb = to_amdgpu_framebuffer(fb);
  1658. target_fb = fb;
  1659. } else {
  1660. amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
  1661. target_fb = crtc->primary->fb;
  1662. }
  1663. /* If atomic, assume fb object is pinned & idle & fenced and
  1664. * just update base pointers
  1665. */
  1666. obj = amdgpu_fb->obj;
  1667. abo = gem_to_amdgpu_bo(obj);
  1668. r = amdgpu_bo_reserve(abo, false);
  1669. if (unlikely(r != 0))
  1670. return r;
  1671. if (atomic) {
  1672. fb_location = amdgpu_bo_gpu_offset(abo);
  1673. } else {
  1674. r = amdgpu_bo_pin(abo, AMDGPU_GEM_DOMAIN_VRAM, &fb_location);
  1675. if (unlikely(r != 0)) {
  1676. amdgpu_bo_unreserve(abo);
  1677. return -EINVAL;
  1678. }
  1679. }
  1680. amdgpu_bo_get_tiling_flags(abo, &tiling_flags);
  1681. amdgpu_bo_unreserve(abo);
  1682. pipe_config = AMDGPU_TILING_GET(tiling_flags, PIPE_CONFIG);
  1683. switch (target_fb->format->format) {
  1684. case DRM_FORMAT_C8:
  1685. fb_format = ((GRPH_DEPTH_8BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1686. (GRPH_FORMAT_INDEXED << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1687. break;
  1688. case DRM_FORMAT_XRGB4444:
  1689. case DRM_FORMAT_ARGB4444:
  1690. fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1691. (GRPH_FORMAT_ARGB4444 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1692. #ifdef __BIG_ENDIAN
  1693. fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1694. #endif
  1695. break;
  1696. case DRM_FORMAT_XRGB1555:
  1697. case DRM_FORMAT_ARGB1555:
  1698. fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1699. (GRPH_FORMAT_ARGB1555 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1700. #ifdef __BIG_ENDIAN
  1701. fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1702. #endif
  1703. break;
  1704. case DRM_FORMAT_BGRX5551:
  1705. case DRM_FORMAT_BGRA5551:
  1706. fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1707. (GRPH_FORMAT_BGRA5551 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1708. #ifdef __BIG_ENDIAN
  1709. fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1710. #endif
  1711. break;
  1712. case DRM_FORMAT_RGB565:
  1713. fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1714. (GRPH_FORMAT_ARGB565 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1715. #ifdef __BIG_ENDIAN
  1716. fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1717. #endif
  1718. break;
  1719. case DRM_FORMAT_XRGB8888:
  1720. case DRM_FORMAT_ARGB8888:
  1721. fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1722. (GRPH_FORMAT_ARGB8888 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1723. #ifdef __BIG_ENDIAN
  1724. fb_swap = (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1725. #endif
  1726. break;
  1727. case DRM_FORMAT_XRGB2101010:
  1728. case DRM_FORMAT_ARGB2101010:
  1729. fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1730. (GRPH_FORMAT_ARGB2101010 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1731. #ifdef __BIG_ENDIAN
  1732. fb_swap = (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1733. #endif
  1734. /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
  1735. bypass_lut = true;
  1736. break;
  1737. case DRM_FORMAT_BGRX1010102:
  1738. case DRM_FORMAT_BGRA1010102:
  1739. fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
  1740. (GRPH_FORMAT_BGRA1010102 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
  1741. #ifdef __BIG_ENDIAN
  1742. fb_swap = (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
  1743. #endif
  1744. /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
  1745. bypass_lut = true;
  1746. break;
  1747. default:
  1748. DRM_ERROR("Unsupported screen format %s\n",
  1749. drm_get_format_name(target_fb->format->format, &format_name));
  1750. return -EINVAL;
  1751. }
  1752. if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_2D_TILED_THIN1) {
  1753. unsigned bankw, bankh, mtaspect, tile_split, num_banks;
  1754. bankw = AMDGPU_TILING_GET(tiling_flags, BANK_WIDTH);
  1755. bankh = AMDGPU_TILING_GET(tiling_flags, BANK_HEIGHT);
  1756. mtaspect = AMDGPU_TILING_GET(tiling_flags, MACRO_TILE_ASPECT);
  1757. tile_split = AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT);
  1758. num_banks = AMDGPU_TILING_GET(tiling_flags, NUM_BANKS);
  1759. fb_format |= (num_banks << GRPH_CONTROL__GRPH_NUM_BANKS__SHIFT);
  1760. fb_format |= (GRPH_ARRAY_2D_TILED_THIN1 << GRPH_CONTROL__GRPH_ARRAY_MODE__SHIFT);
  1761. fb_format |= (tile_split << GRPH_CONTROL__GRPH_TILE_SPLIT__SHIFT);
  1762. fb_format |= (bankw << GRPH_CONTROL__GRPH_BANK_WIDTH__SHIFT);
  1763. fb_format |= (bankh << GRPH_CONTROL__GRPH_BANK_HEIGHT__SHIFT);
  1764. fb_format |= (mtaspect << GRPH_CONTROL__GRPH_MACRO_TILE_ASPECT__SHIFT);
  1765. fb_format |= (DISPLAY_MICRO_TILING << GRPH_CONTROL__GRPH_MICRO_TILE_MODE__SHIFT);
  1766. } else if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_1D_TILED_THIN1) {
  1767. fb_format |= (GRPH_ARRAY_1D_TILED_THIN1 << GRPH_CONTROL__GRPH_ARRAY_MODE__SHIFT);
  1768. }
  1769. fb_format |= (pipe_config << GRPH_CONTROL__GRPH_PIPE_CONFIG__SHIFT);
  1770. dce_v8_0_vga_enable(crtc, false);
  1771. /* Make sure surface address is updated at vertical blank rather than
  1772. * horizontal blank
  1773. */
  1774. WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, 0);
  1775. WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
  1776. upper_32_bits(fb_location));
  1777. WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
  1778. upper_32_bits(fb_location));
  1779. WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
  1780. (u32)fb_location & GRPH_PRIMARY_SURFACE_ADDRESS__GRPH_PRIMARY_SURFACE_ADDRESS_MASK);
  1781. WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
  1782. (u32) fb_location & GRPH_SECONDARY_SURFACE_ADDRESS__GRPH_SECONDARY_SURFACE_ADDRESS_MASK);
  1783. WREG32(mmGRPH_CONTROL + amdgpu_crtc->crtc_offset, fb_format);
  1784. WREG32(mmGRPH_SWAP_CNTL + amdgpu_crtc->crtc_offset, fb_swap);
  1785. /*
  1786. * The LUT only has 256 slots for indexing by a 8 bpc fb. Bypass the LUT
  1787. * for > 8 bpc scanout to avoid truncation of fb indices to 8 msb's, to
  1788. * retain the full precision throughout the pipeline.
  1789. */
  1790. WREG32_P(mmGRPH_LUT_10BIT_BYPASS_CONTROL + amdgpu_crtc->crtc_offset,
  1791. (bypass_lut ? LUT_10BIT_BYPASS_EN : 0),
  1792. ~LUT_10BIT_BYPASS_EN);
  1793. if (bypass_lut)
  1794. DRM_DEBUG_KMS("Bypassing hardware LUT due to 10 bit fb scanout.\n");
  1795. WREG32(mmGRPH_SURFACE_OFFSET_X + amdgpu_crtc->crtc_offset, 0);
  1796. WREG32(mmGRPH_SURFACE_OFFSET_Y + amdgpu_crtc->crtc_offset, 0);
  1797. WREG32(mmGRPH_X_START + amdgpu_crtc->crtc_offset, 0);
  1798. WREG32(mmGRPH_Y_START + amdgpu_crtc->crtc_offset, 0);
  1799. WREG32(mmGRPH_X_END + amdgpu_crtc->crtc_offset, target_fb->width);
  1800. WREG32(mmGRPH_Y_END + amdgpu_crtc->crtc_offset, target_fb->height);
  1801. fb_pitch_pixels = target_fb->pitches[0] / target_fb->format->cpp[0];
  1802. WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset, fb_pitch_pixels);
  1803. dce_v8_0_grph_enable(crtc, true);
  1804. WREG32(mmLB_DESKTOP_HEIGHT + amdgpu_crtc->crtc_offset,
  1805. target_fb->height);
  1806. x &= ~3;
  1807. y &= ~1;
  1808. WREG32(mmVIEWPORT_START + amdgpu_crtc->crtc_offset,
  1809. (x << 16) | y);
  1810. viewport_w = crtc->mode.hdisplay;
  1811. viewport_h = (crtc->mode.vdisplay + 1) & ~1;
  1812. WREG32(mmVIEWPORT_SIZE + amdgpu_crtc->crtc_offset,
  1813. (viewport_w << 16) | viewport_h);
  1814. /* set pageflip to happen anywhere in vblank interval */
  1815. WREG32(mmMASTER_UPDATE_MODE + amdgpu_crtc->crtc_offset, 0);
  1816. if (!atomic && fb && fb != crtc->primary->fb) {
  1817. amdgpu_fb = to_amdgpu_framebuffer(fb);
  1818. abo = gem_to_amdgpu_bo(amdgpu_fb->obj);
  1819. r = amdgpu_bo_reserve(abo, true);
  1820. if (unlikely(r != 0))
  1821. return r;
  1822. amdgpu_bo_unpin(abo);
  1823. amdgpu_bo_unreserve(abo);
  1824. }
  1825. /* Bytes per pixel may have changed */
  1826. dce_v8_0_bandwidth_update(adev);
  1827. return 0;
  1828. }
  1829. static void dce_v8_0_set_interleave(struct drm_crtc *crtc,
  1830. struct drm_display_mode *mode)
  1831. {
  1832. struct drm_device *dev = crtc->dev;
  1833. struct amdgpu_device *adev = dev->dev_private;
  1834. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  1835. if (mode->flags & DRM_MODE_FLAG_INTERLACE)
  1836. WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset,
  1837. LB_DATA_FORMAT__INTERLEAVE_EN__SHIFT);
  1838. else
  1839. WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset, 0);
  1840. }
  1841. static void dce_v8_0_crtc_load_lut(struct drm_crtc *crtc)
  1842. {
  1843. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  1844. struct drm_device *dev = crtc->dev;
  1845. struct amdgpu_device *adev = dev->dev_private;
  1846. u16 *r, *g, *b;
  1847. int i;
  1848. DRM_DEBUG_KMS("%d\n", amdgpu_crtc->crtc_id);
  1849. WREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset,
  1850. ((INPUT_CSC_BYPASS << INPUT_CSC_CONTROL__INPUT_CSC_GRPH_MODE__SHIFT) |
  1851. (INPUT_CSC_BYPASS << INPUT_CSC_CONTROL__INPUT_CSC_OVL_MODE__SHIFT)));
  1852. WREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset,
  1853. PRESCALE_GRPH_CONTROL__GRPH_PRESCALE_BYPASS_MASK);
  1854. WREG32(mmPRESCALE_OVL_CONTROL + amdgpu_crtc->crtc_offset,
  1855. PRESCALE_OVL_CONTROL__OVL_PRESCALE_BYPASS_MASK);
  1856. WREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset,
  1857. ((INPUT_GAMMA_USE_LUT << INPUT_GAMMA_CONTROL__GRPH_INPUT_GAMMA_MODE__SHIFT) |
  1858. (INPUT_GAMMA_USE_LUT << INPUT_GAMMA_CONTROL__OVL_INPUT_GAMMA_MODE__SHIFT)));
  1859. WREG32(mmDC_LUT_CONTROL + amdgpu_crtc->crtc_offset, 0);
  1860. WREG32(mmDC_LUT_BLACK_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0);
  1861. WREG32(mmDC_LUT_BLACK_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0);
  1862. WREG32(mmDC_LUT_BLACK_OFFSET_RED + amdgpu_crtc->crtc_offset, 0);
  1863. WREG32(mmDC_LUT_WHITE_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0xffff);
  1864. WREG32(mmDC_LUT_WHITE_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0xffff);
  1865. WREG32(mmDC_LUT_WHITE_OFFSET_RED + amdgpu_crtc->crtc_offset, 0xffff);
  1866. WREG32(mmDC_LUT_RW_MODE + amdgpu_crtc->crtc_offset, 0);
  1867. WREG32(mmDC_LUT_WRITE_EN_MASK + amdgpu_crtc->crtc_offset, 0x00000007);
  1868. WREG32(mmDC_LUT_RW_INDEX + amdgpu_crtc->crtc_offset, 0);
  1869. r = crtc->gamma_store;
  1870. g = r + crtc->gamma_size;
  1871. b = g + crtc->gamma_size;
  1872. for (i = 0; i < 256; i++) {
  1873. WREG32(mmDC_LUT_30_COLOR + amdgpu_crtc->crtc_offset,
  1874. ((*r++ & 0xffc0) << 14) |
  1875. ((*g++ & 0xffc0) << 4) |
  1876. (*b++ >> 6));
  1877. }
  1878. WREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset,
  1879. ((DEGAMMA_BYPASS << DEGAMMA_CONTROL__GRPH_DEGAMMA_MODE__SHIFT) |
  1880. (DEGAMMA_BYPASS << DEGAMMA_CONTROL__OVL_DEGAMMA_MODE__SHIFT) |
  1881. (DEGAMMA_BYPASS << DEGAMMA_CONTROL__CURSOR_DEGAMMA_MODE__SHIFT)));
  1882. WREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset,
  1883. ((GAMUT_REMAP_BYPASS << GAMUT_REMAP_CONTROL__GRPH_GAMUT_REMAP_MODE__SHIFT) |
  1884. (GAMUT_REMAP_BYPASS << GAMUT_REMAP_CONTROL__OVL_GAMUT_REMAP_MODE__SHIFT)));
  1885. WREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset,
  1886. ((REGAMMA_BYPASS << REGAMMA_CONTROL__GRPH_REGAMMA_MODE__SHIFT) |
  1887. (REGAMMA_BYPASS << REGAMMA_CONTROL__OVL_REGAMMA_MODE__SHIFT)));
  1888. WREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset,
  1889. ((OUTPUT_CSC_BYPASS << OUTPUT_CSC_CONTROL__OUTPUT_CSC_GRPH_MODE__SHIFT) |
  1890. (OUTPUT_CSC_BYPASS << OUTPUT_CSC_CONTROL__OUTPUT_CSC_OVL_MODE__SHIFT)));
  1891. /* XXX match this to the depth of the crtc fmt block, move to modeset? */
  1892. WREG32(0x1a50 + amdgpu_crtc->crtc_offset, 0);
  1893. /* XXX this only needs to be programmed once per crtc at startup,
  1894. * not sure where the best place for it is
  1895. */
  1896. WREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset,
  1897. ALPHA_CONTROL__CURSOR_ALPHA_BLND_ENA_MASK);
  1898. }
  1899. static int dce_v8_0_pick_dig_encoder(struct drm_encoder *encoder)
  1900. {
  1901. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  1902. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  1903. switch (amdgpu_encoder->encoder_id) {
  1904. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
  1905. if (dig->linkb)
  1906. return 1;
  1907. else
  1908. return 0;
  1909. break;
  1910. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
  1911. if (dig->linkb)
  1912. return 3;
  1913. else
  1914. return 2;
  1915. break;
  1916. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
  1917. if (dig->linkb)
  1918. return 5;
  1919. else
  1920. return 4;
  1921. break;
  1922. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
  1923. return 6;
  1924. break;
  1925. default:
  1926. DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
  1927. return 0;
  1928. }
  1929. }
  1930. /**
  1931. * dce_v8_0_pick_pll - Allocate a PPLL for use by the crtc.
  1932. *
  1933. * @crtc: drm crtc
  1934. *
  1935. * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
  1936. * a single PPLL can be used for all DP crtcs/encoders. For non-DP
  1937. * monitors a dedicated PPLL must be used. If a particular board has
  1938. * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
  1939. * as there is no need to program the PLL itself. If we are not able to
  1940. * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
  1941. * avoid messing up an existing monitor.
  1942. *
  1943. * Asic specific PLL information
  1944. *
  1945. * DCE 8.x
  1946. * KB/KV
  1947. * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
  1948. * CI
  1949. * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
  1950. *
  1951. */
  1952. static u32 dce_v8_0_pick_pll(struct drm_crtc *crtc)
  1953. {
  1954. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  1955. struct drm_device *dev = crtc->dev;
  1956. struct amdgpu_device *adev = dev->dev_private;
  1957. u32 pll_in_use;
  1958. int pll;
  1959. if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder))) {
  1960. if (adev->clock.dp_extclk)
  1961. /* skip PPLL programming if using ext clock */
  1962. return ATOM_PPLL_INVALID;
  1963. else {
  1964. /* use the same PPLL for all DP monitors */
  1965. pll = amdgpu_pll_get_shared_dp_ppll(crtc);
  1966. if (pll != ATOM_PPLL_INVALID)
  1967. return pll;
  1968. }
  1969. } else {
  1970. /* use the same PPLL for all monitors with the same clock */
  1971. pll = amdgpu_pll_get_shared_nondp_ppll(crtc);
  1972. if (pll != ATOM_PPLL_INVALID)
  1973. return pll;
  1974. }
  1975. /* otherwise, pick one of the plls */
  1976. if ((adev->asic_type == CHIP_KABINI) ||
  1977. (adev->asic_type == CHIP_MULLINS)) {
  1978. /* KB/ML has PPLL1 and PPLL2 */
  1979. pll_in_use = amdgpu_pll_get_use_mask(crtc);
  1980. if (!(pll_in_use & (1 << ATOM_PPLL2)))
  1981. return ATOM_PPLL2;
  1982. if (!(pll_in_use & (1 << ATOM_PPLL1)))
  1983. return ATOM_PPLL1;
  1984. DRM_ERROR("unable to allocate a PPLL\n");
  1985. return ATOM_PPLL_INVALID;
  1986. } else {
  1987. /* CI/KV has PPLL0, PPLL1, and PPLL2 */
  1988. pll_in_use = amdgpu_pll_get_use_mask(crtc);
  1989. if (!(pll_in_use & (1 << ATOM_PPLL2)))
  1990. return ATOM_PPLL2;
  1991. if (!(pll_in_use & (1 << ATOM_PPLL1)))
  1992. return ATOM_PPLL1;
  1993. if (!(pll_in_use & (1 << ATOM_PPLL0)))
  1994. return ATOM_PPLL0;
  1995. DRM_ERROR("unable to allocate a PPLL\n");
  1996. return ATOM_PPLL_INVALID;
  1997. }
  1998. return ATOM_PPLL_INVALID;
  1999. }
  2000. static void dce_v8_0_lock_cursor(struct drm_crtc *crtc, bool lock)
  2001. {
  2002. struct amdgpu_device *adev = crtc->dev->dev_private;
  2003. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2004. uint32_t cur_lock;
  2005. cur_lock = RREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset);
  2006. if (lock)
  2007. cur_lock |= CUR_UPDATE__CURSOR_UPDATE_LOCK_MASK;
  2008. else
  2009. cur_lock &= ~CUR_UPDATE__CURSOR_UPDATE_LOCK_MASK;
  2010. WREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset, cur_lock);
  2011. }
  2012. static void dce_v8_0_hide_cursor(struct drm_crtc *crtc)
  2013. {
  2014. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2015. struct amdgpu_device *adev = crtc->dev->dev_private;
  2016. WREG32_IDX(mmCUR_CONTROL + amdgpu_crtc->crtc_offset,
  2017. (CURSOR_24_8_PRE_MULT << CUR_CONTROL__CURSOR_MODE__SHIFT) |
  2018. (CURSOR_URGENT_1_2 << CUR_CONTROL__CURSOR_URGENT_CONTROL__SHIFT));
  2019. }
  2020. static void dce_v8_0_show_cursor(struct drm_crtc *crtc)
  2021. {
  2022. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2023. struct amdgpu_device *adev = crtc->dev->dev_private;
  2024. WREG32(mmCUR_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
  2025. upper_32_bits(amdgpu_crtc->cursor_addr));
  2026. WREG32(mmCUR_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
  2027. lower_32_bits(amdgpu_crtc->cursor_addr));
  2028. WREG32_IDX(mmCUR_CONTROL + amdgpu_crtc->crtc_offset,
  2029. CUR_CONTROL__CURSOR_EN_MASK |
  2030. (CURSOR_24_8_PRE_MULT << CUR_CONTROL__CURSOR_MODE__SHIFT) |
  2031. (CURSOR_URGENT_1_2 << CUR_CONTROL__CURSOR_URGENT_CONTROL__SHIFT));
  2032. }
  2033. static int dce_v8_0_cursor_move_locked(struct drm_crtc *crtc,
  2034. int x, int y)
  2035. {
  2036. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2037. struct amdgpu_device *adev = crtc->dev->dev_private;
  2038. int xorigin = 0, yorigin = 0;
  2039. amdgpu_crtc->cursor_x = x;
  2040. amdgpu_crtc->cursor_y = y;
  2041. /* avivo cursor are offset into the total surface */
  2042. x += crtc->x;
  2043. y += crtc->y;
  2044. DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y);
  2045. if (x < 0) {
  2046. xorigin = min(-x, amdgpu_crtc->max_cursor_width - 1);
  2047. x = 0;
  2048. }
  2049. if (y < 0) {
  2050. yorigin = min(-y, amdgpu_crtc->max_cursor_height - 1);
  2051. y = 0;
  2052. }
  2053. WREG32(mmCUR_POSITION + amdgpu_crtc->crtc_offset, (x << 16) | y);
  2054. WREG32(mmCUR_HOT_SPOT + amdgpu_crtc->crtc_offset, (xorigin << 16) | yorigin);
  2055. WREG32(mmCUR_SIZE + amdgpu_crtc->crtc_offset,
  2056. ((amdgpu_crtc->cursor_width - 1) << 16) | (amdgpu_crtc->cursor_height - 1));
  2057. return 0;
  2058. }
  2059. static int dce_v8_0_crtc_cursor_move(struct drm_crtc *crtc,
  2060. int x, int y)
  2061. {
  2062. int ret;
  2063. dce_v8_0_lock_cursor(crtc, true);
  2064. ret = dce_v8_0_cursor_move_locked(crtc, x, y);
  2065. dce_v8_0_lock_cursor(crtc, false);
  2066. return ret;
  2067. }
  2068. static int dce_v8_0_crtc_cursor_set2(struct drm_crtc *crtc,
  2069. struct drm_file *file_priv,
  2070. uint32_t handle,
  2071. uint32_t width,
  2072. uint32_t height,
  2073. int32_t hot_x,
  2074. int32_t hot_y)
  2075. {
  2076. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2077. struct drm_gem_object *obj;
  2078. struct amdgpu_bo *aobj;
  2079. int ret;
  2080. if (!handle) {
  2081. /* turn off cursor */
  2082. dce_v8_0_hide_cursor(crtc);
  2083. obj = NULL;
  2084. goto unpin;
  2085. }
  2086. if ((width > amdgpu_crtc->max_cursor_width) ||
  2087. (height > amdgpu_crtc->max_cursor_height)) {
  2088. DRM_ERROR("bad cursor width or height %d x %d\n", width, height);
  2089. return -EINVAL;
  2090. }
  2091. obj = drm_gem_object_lookup(file_priv, handle);
  2092. if (!obj) {
  2093. DRM_ERROR("Cannot find cursor object %x for crtc %d\n", handle, amdgpu_crtc->crtc_id);
  2094. return -ENOENT;
  2095. }
  2096. aobj = gem_to_amdgpu_bo(obj);
  2097. ret = amdgpu_bo_reserve(aobj, false);
  2098. if (ret != 0) {
  2099. drm_gem_object_unreference_unlocked(obj);
  2100. return ret;
  2101. }
  2102. ret = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM, &amdgpu_crtc->cursor_addr);
  2103. amdgpu_bo_unreserve(aobj);
  2104. if (ret) {
  2105. DRM_ERROR("Failed to pin new cursor BO (%d)\n", ret);
  2106. drm_gem_object_unreference_unlocked(obj);
  2107. return ret;
  2108. }
  2109. dce_v8_0_lock_cursor(crtc, true);
  2110. if (width != amdgpu_crtc->cursor_width ||
  2111. height != amdgpu_crtc->cursor_height ||
  2112. hot_x != amdgpu_crtc->cursor_hot_x ||
  2113. hot_y != amdgpu_crtc->cursor_hot_y) {
  2114. int x, y;
  2115. x = amdgpu_crtc->cursor_x + amdgpu_crtc->cursor_hot_x - hot_x;
  2116. y = amdgpu_crtc->cursor_y + amdgpu_crtc->cursor_hot_y - hot_y;
  2117. dce_v8_0_cursor_move_locked(crtc, x, y);
  2118. amdgpu_crtc->cursor_width = width;
  2119. amdgpu_crtc->cursor_height = height;
  2120. amdgpu_crtc->cursor_hot_x = hot_x;
  2121. amdgpu_crtc->cursor_hot_y = hot_y;
  2122. }
  2123. dce_v8_0_show_cursor(crtc);
  2124. dce_v8_0_lock_cursor(crtc, false);
  2125. unpin:
  2126. if (amdgpu_crtc->cursor_bo) {
  2127. struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
  2128. ret = amdgpu_bo_reserve(aobj, true);
  2129. if (likely(ret == 0)) {
  2130. amdgpu_bo_unpin(aobj);
  2131. amdgpu_bo_unreserve(aobj);
  2132. }
  2133. drm_gem_object_unreference_unlocked(amdgpu_crtc->cursor_bo);
  2134. }
  2135. amdgpu_crtc->cursor_bo = obj;
  2136. return 0;
  2137. }
  2138. static void dce_v8_0_cursor_reset(struct drm_crtc *crtc)
  2139. {
  2140. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2141. if (amdgpu_crtc->cursor_bo) {
  2142. dce_v8_0_lock_cursor(crtc, true);
  2143. dce_v8_0_cursor_move_locked(crtc, amdgpu_crtc->cursor_x,
  2144. amdgpu_crtc->cursor_y);
  2145. dce_v8_0_show_cursor(crtc);
  2146. dce_v8_0_lock_cursor(crtc, false);
  2147. }
  2148. }
  2149. static int dce_v8_0_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
  2150. u16 *blue, uint32_t size,
  2151. struct drm_modeset_acquire_ctx *ctx)
  2152. {
  2153. dce_v8_0_crtc_load_lut(crtc);
  2154. return 0;
  2155. }
  2156. static void dce_v8_0_crtc_destroy(struct drm_crtc *crtc)
  2157. {
  2158. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2159. drm_crtc_cleanup(crtc);
  2160. kfree(amdgpu_crtc);
  2161. }
  2162. static const struct drm_crtc_funcs dce_v8_0_crtc_funcs = {
  2163. .cursor_set2 = dce_v8_0_crtc_cursor_set2,
  2164. .cursor_move = dce_v8_0_crtc_cursor_move,
  2165. .gamma_set = dce_v8_0_crtc_gamma_set,
  2166. .set_config = amdgpu_crtc_set_config,
  2167. .destroy = dce_v8_0_crtc_destroy,
  2168. .page_flip_target = amdgpu_crtc_page_flip_target,
  2169. };
  2170. static void dce_v8_0_crtc_dpms(struct drm_crtc *crtc, int mode)
  2171. {
  2172. struct drm_device *dev = crtc->dev;
  2173. struct amdgpu_device *adev = dev->dev_private;
  2174. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2175. unsigned type;
  2176. switch (mode) {
  2177. case DRM_MODE_DPMS_ON:
  2178. amdgpu_crtc->enabled = true;
  2179. amdgpu_atombios_crtc_enable(crtc, ATOM_ENABLE);
  2180. dce_v8_0_vga_enable(crtc, true);
  2181. amdgpu_atombios_crtc_blank(crtc, ATOM_DISABLE);
  2182. dce_v8_0_vga_enable(crtc, false);
  2183. /* Make sure VBLANK and PFLIP interrupts are still enabled */
  2184. type = amdgpu_crtc_idx_to_irq_type(adev, amdgpu_crtc->crtc_id);
  2185. amdgpu_irq_update(adev, &adev->crtc_irq, type);
  2186. amdgpu_irq_update(adev, &adev->pageflip_irq, type);
  2187. drm_crtc_vblank_on(crtc);
  2188. dce_v8_0_crtc_load_lut(crtc);
  2189. break;
  2190. case DRM_MODE_DPMS_STANDBY:
  2191. case DRM_MODE_DPMS_SUSPEND:
  2192. case DRM_MODE_DPMS_OFF:
  2193. drm_crtc_vblank_off(crtc);
  2194. if (amdgpu_crtc->enabled) {
  2195. dce_v8_0_vga_enable(crtc, true);
  2196. amdgpu_atombios_crtc_blank(crtc, ATOM_ENABLE);
  2197. dce_v8_0_vga_enable(crtc, false);
  2198. }
  2199. amdgpu_atombios_crtc_enable(crtc, ATOM_DISABLE);
  2200. amdgpu_crtc->enabled = false;
  2201. break;
  2202. }
  2203. /* adjust pm to dpms */
  2204. amdgpu_pm_compute_clocks(adev);
  2205. }
  2206. static void dce_v8_0_crtc_prepare(struct drm_crtc *crtc)
  2207. {
  2208. /* disable crtc pair power gating before programming */
  2209. amdgpu_atombios_crtc_powergate(crtc, ATOM_DISABLE);
  2210. amdgpu_atombios_crtc_lock(crtc, ATOM_ENABLE);
  2211. dce_v8_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
  2212. }
  2213. static void dce_v8_0_crtc_commit(struct drm_crtc *crtc)
  2214. {
  2215. dce_v8_0_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
  2216. amdgpu_atombios_crtc_lock(crtc, ATOM_DISABLE);
  2217. }
  2218. static void dce_v8_0_crtc_disable(struct drm_crtc *crtc)
  2219. {
  2220. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2221. struct drm_device *dev = crtc->dev;
  2222. struct amdgpu_device *adev = dev->dev_private;
  2223. struct amdgpu_atom_ss ss;
  2224. int i;
  2225. dce_v8_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
  2226. if (crtc->primary->fb) {
  2227. int r;
  2228. struct amdgpu_framebuffer *amdgpu_fb;
  2229. struct amdgpu_bo *abo;
  2230. amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
  2231. abo = gem_to_amdgpu_bo(amdgpu_fb->obj);
  2232. r = amdgpu_bo_reserve(abo, true);
  2233. if (unlikely(r))
  2234. DRM_ERROR("failed to reserve abo before unpin\n");
  2235. else {
  2236. amdgpu_bo_unpin(abo);
  2237. amdgpu_bo_unreserve(abo);
  2238. }
  2239. }
  2240. /* disable the GRPH */
  2241. dce_v8_0_grph_enable(crtc, false);
  2242. amdgpu_atombios_crtc_powergate(crtc, ATOM_ENABLE);
  2243. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  2244. if (adev->mode_info.crtcs[i] &&
  2245. adev->mode_info.crtcs[i]->enabled &&
  2246. i != amdgpu_crtc->crtc_id &&
  2247. amdgpu_crtc->pll_id == adev->mode_info.crtcs[i]->pll_id) {
  2248. /* one other crtc is using this pll don't turn
  2249. * off the pll
  2250. */
  2251. goto done;
  2252. }
  2253. }
  2254. switch (amdgpu_crtc->pll_id) {
  2255. case ATOM_PPLL1:
  2256. case ATOM_PPLL2:
  2257. /* disable the ppll */
  2258. amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
  2259. 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
  2260. break;
  2261. case ATOM_PPLL0:
  2262. /* disable the ppll */
  2263. if ((adev->asic_type == CHIP_KAVERI) ||
  2264. (adev->asic_type == CHIP_BONAIRE) ||
  2265. (adev->asic_type == CHIP_HAWAII))
  2266. amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
  2267. 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
  2268. break;
  2269. default:
  2270. break;
  2271. }
  2272. done:
  2273. amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
  2274. amdgpu_crtc->adjusted_clock = 0;
  2275. amdgpu_crtc->encoder = NULL;
  2276. amdgpu_crtc->connector = NULL;
  2277. }
  2278. static int dce_v8_0_crtc_mode_set(struct drm_crtc *crtc,
  2279. struct drm_display_mode *mode,
  2280. struct drm_display_mode *adjusted_mode,
  2281. int x, int y, struct drm_framebuffer *old_fb)
  2282. {
  2283. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2284. if (!amdgpu_crtc->adjusted_clock)
  2285. return -EINVAL;
  2286. amdgpu_atombios_crtc_set_pll(crtc, adjusted_mode);
  2287. amdgpu_atombios_crtc_set_dtd_timing(crtc, adjusted_mode);
  2288. dce_v8_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
  2289. amdgpu_atombios_crtc_overscan_setup(crtc, mode, adjusted_mode);
  2290. amdgpu_atombios_crtc_scaler_setup(crtc);
  2291. dce_v8_0_cursor_reset(crtc);
  2292. /* update the hw version fpr dpm */
  2293. amdgpu_crtc->hw_mode = *adjusted_mode;
  2294. return 0;
  2295. }
  2296. static bool dce_v8_0_crtc_mode_fixup(struct drm_crtc *crtc,
  2297. const struct drm_display_mode *mode,
  2298. struct drm_display_mode *adjusted_mode)
  2299. {
  2300. struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
  2301. struct drm_device *dev = crtc->dev;
  2302. struct drm_encoder *encoder;
  2303. /* assign the encoder to the amdgpu crtc to avoid repeated lookups later */
  2304. list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
  2305. if (encoder->crtc == crtc) {
  2306. amdgpu_crtc->encoder = encoder;
  2307. amdgpu_crtc->connector = amdgpu_get_connector_for_encoder(encoder);
  2308. break;
  2309. }
  2310. }
  2311. if ((amdgpu_crtc->encoder == NULL) || (amdgpu_crtc->connector == NULL)) {
  2312. amdgpu_crtc->encoder = NULL;
  2313. amdgpu_crtc->connector = NULL;
  2314. return false;
  2315. }
  2316. if (!amdgpu_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
  2317. return false;
  2318. if (amdgpu_atombios_crtc_prepare_pll(crtc, adjusted_mode))
  2319. return false;
  2320. /* pick pll */
  2321. amdgpu_crtc->pll_id = dce_v8_0_pick_pll(crtc);
  2322. /* if we can't get a PPLL for a non-DP encoder, fail */
  2323. if ((amdgpu_crtc->pll_id == ATOM_PPLL_INVALID) &&
  2324. !ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
  2325. return false;
  2326. return true;
  2327. }
  2328. static int dce_v8_0_crtc_set_base(struct drm_crtc *crtc, int x, int y,
  2329. struct drm_framebuffer *old_fb)
  2330. {
  2331. return dce_v8_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
  2332. }
  2333. static int dce_v8_0_crtc_set_base_atomic(struct drm_crtc *crtc,
  2334. struct drm_framebuffer *fb,
  2335. int x, int y, enum mode_set_atomic state)
  2336. {
  2337. return dce_v8_0_crtc_do_set_base(crtc, fb, x, y, 1);
  2338. }
  2339. static const struct drm_crtc_helper_funcs dce_v8_0_crtc_helper_funcs = {
  2340. .dpms = dce_v8_0_crtc_dpms,
  2341. .mode_fixup = dce_v8_0_crtc_mode_fixup,
  2342. .mode_set = dce_v8_0_crtc_mode_set,
  2343. .mode_set_base = dce_v8_0_crtc_set_base,
  2344. .mode_set_base_atomic = dce_v8_0_crtc_set_base_atomic,
  2345. .prepare = dce_v8_0_crtc_prepare,
  2346. .commit = dce_v8_0_crtc_commit,
  2347. .disable = dce_v8_0_crtc_disable,
  2348. };
  2349. static int dce_v8_0_crtc_init(struct amdgpu_device *adev, int index)
  2350. {
  2351. struct amdgpu_crtc *amdgpu_crtc;
  2352. amdgpu_crtc = kzalloc(sizeof(struct amdgpu_crtc) +
  2353. (AMDGPUFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
  2354. if (amdgpu_crtc == NULL)
  2355. return -ENOMEM;
  2356. drm_crtc_init(adev->ddev, &amdgpu_crtc->base, &dce_v8_0_crtc_funcs);
  2357. drm_mode_crtc_set_gamma_size(&amdgpu_crtc->base, 256);
  2358. amdgpu_crtc->crtc_id = index;
  2359. adev->mode_info.crtcs[index] = amdgpu_crtc;
  2360. amdgpu_crtc->max_cursor_width = CIK_CURSOR_WIDTH;
  2361. amdgpu_crtc->max_cursor_height = CIK_CURSOR_HEIGHT;
  2362. adev->ddev->mode_config.cursor_width = amdgpu_crtc->max_cursor_width;
  2363. adev->ddev->mode_config.cursor_height = amdgpu_crtc->max_cursor_height;
  2364. amdgpu_crtc->crtc_offset = crtc_offsets[amdgpu_crtc->crtc_id];
  2365. amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
  2366. amdgpu_crtc->adjusted_clock = 0;
  2367. amdgpu_crtc->encoder = NULL;
  2368. amdgpu_crtc->connector = NULL;
  2369. drm_crtc_helper_add(&amdgpu_crtc->base, &dce_v8_0_crtc_helper_funcs);
  2370. return 0;
  2371. }
  2372. static int dce_v8_0_early_init(void *handle)
  2373. {
  2374. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2375. adev->audio_endpt_rreg = &dce_v8_0_audio_endpt_rreg;
  2376. adev->audio_endpt_wreg = &dce_v8_0_audio_endpt_wreg;
  2377. dce_v8_0_set_display_funcs(adev);
  2378. dce_v8_0_set_irq_funcs(adev);
  2379. adev->mode_info.num_crtc = dce_v8_0_get_num_crtc(adev);
  2380. switch (adev->asic_type) {
  2381. case CHIP_BONAIRE:
  2382. case CHIP_HAWAII:
  2383. adev->mode_info.num_hpd = 6;
  2384. adev->mode_info.num_dig = 6;
  2385. break;
  2386. case CHIP_KAVERI:
  2387. adev->mode_info.num_hpd = 6;
  2388. adev->mode_info.num_dig = 7;
  2389. break;
  2390. case CHIP_KABINI:
  2391. case CHIP_MULLINS:
  2392. adev->mode_info.num_hpd = 6;
  2393. adev->mode_info.num_dig = 6; /* ? */
  2394. break;
  2395. default:
  2396. /* FIXME: not supported yet */
  2397. return -EINVAL;
  2398. }
  2399. return 0;
  2400. }
  2401. static int dce_v8_0_sw_init(void *handle)
  2402. {
  2403. int r, i;
  2404. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2405. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  2406. r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, i + 1, &adev->crtc_irq);
  2407. if (r)
  2408. return r;
  2409. }
  2410. for (i = 8; i < 20; i += 2) {
  2411. r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, i, &adev->pageflip_irq);
  2412. if (r)
  2413. return r;
  2414. }
  2415. /* HPD hotplug */
  2416. r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, 42, &adev->hpd_irq);
  2417. if (r)
  2418. return r;
  2419. adev->ddev->mode_config.funcs = &amdgpu_mode_funcs;
  2420. adev->ddev->mode_config.async_page_flip = true;
  2421. adev->ddev->mode_config.max_width = 16384;
  2422. adev->ddev->mode_config.max_height = 16384;
  2423. adev->ddev->mode_config.preferred_depth = 24;
  2424. adev->ddev->mode_config.prefer_shadow = 1;
  2425. adev->ddev->mode_config.fb_base = adev->mc.aper_base;
  2426. r = amdgpu_modeset_create_props(adev);
  2427. if (r)
  2428. return r;
  2429. adev->ddev->mode_config.max_width = 16384;
  2430. adev->ddev->mode_config.max_height = 16384;
  2431. /* allocate crtcs */
  2432. for (i = 0; i < adev->mode_info.num_crtc; i++) {
  2433. r = dce_v8_0_crtc_init(adev, i);
  2434. if (r)
  2435. return r;
  2436. }
  2437. if (amdgpu_atombios_get_connector_info_from_object_table(adev))
  2438. amdgpu_print_display_setup(adev->ddev);
  2439. else
  2440. return -EINVAL;
  2441. /* setup afmt */
  2442. r = dce_v8_0_afmt_init(adev);
  2443. if (r)
  2444. return r;
  2445. r = dce_v8_0_audio_init(adev);
  2446. if (r)
  2447. return r;
  2448. drm_kms_helper_poll_init(adev->ddev);
  2449. adev->mode_info.mode_config_initialized = true;
  2450. return 0;
  2451. }
  2452. static int dce_v8_0_sw_fini(void *handle)
  2453. {
  2454. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2455. kfree(adev->mode_info.bios_hardcoded_edid);
  2456. drm_kms_helper_poll_fini(adev->ddev);
  2457. dce_v8_0_audio_fini(adev);
  2458. dce_v8_0_afmt_fini(adev);
  2459. drm_mode_config_cleanup(adev->ddev);
  2460. adev->mode_info.mode_config_initialized = false;
  2461. return 0;
  2462. }
  2463. static int dce_v8_0_hw_init(void *handle)
  2464. {
  2465. int i;
  2466. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2467. /* init dig PHYs, disp eng pll */
  2468. amdgpu_atombios_encoder_init_dig(adev);
  2469. amdgpu_atombios_crtc_set_disp_eng_pll(adev, adev->clock.default_dispclk);
  2470. /* initialize hpd */
  2471. dce_v8_0_hpd_init(adev);
  2472. for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
  2473. dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
  2474. }
  2475. dce_v8_0_pageflip_interrupt_init(adev);
  2476. return 0;
  2477. }
  2478. static int dce_v8_0_hw_fini(void *handle)
  2479. {
  2480. int i;
  2481. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2482. dce_v8_0_hpd_fini(adev);
  2483. for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
  2484. dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
  2485. }
  2486. dce_v8_0_pageflip_interrupt_fini(adev);
  2487. return 0;
  2488. }
  2489. static int dce_v8_0_suspend(void *handle)
  2490. {
  2491. return dce_v8_0_hw_fini(handle);
  2492. }
  2493. static int dce_v8_0_resume(void *handle)
  2494. {
  2495. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2496. int ret;
  2497. ret = dce_v8_0_hw_init(handle);
  2498. /* turn on the BL */
  2499. if (adev->mode_info.bl_encoder) {
  2500. u8 bl_level = amdgpu_display_backlight_get_level(adev,
  2501. adev->mode_info.bl_encoder);
  2502. amdgpu_display_backlight_set_level(adev, adev->mode_info.bl_encoder,
  2503. bl_level);
  2504. }
  2505. return ret;
  2506. }
  2507. static bool dce_v8_0_is_idle(void *handle)
  2508. {
  2509. return true;
  2510. }
  2511. static int dce_v8_0_wait_for_idle(void *handle)
  2512. {
  2513. return 0;
  2514. }
  2515. static int dce_v8_0_soft_reset(void *handle)
  2516. {
  2517. u32 srbm_soft_reset = 0, tmp;
  2518. struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  2519. if (dce_v8_0_is_display_hung(adev))
  2520. srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_DC_MASK;
  2521. if (srbm_soft_reset) {
  2522. tmp = RREG32(mmSRBM_SOFT_RESET);
  2523. tmp |= srbm_soft_reset;
  2524. dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
  2525. WREG32(mmSRBM_SOFT_RESET, tmp);
  2526. tmp = RREG32(mmSRBM_SOFT_RESET);
  2527. udelay(50);
  2528. tmp &= ~srbm_soft_reset;
  2529. WREG32(mmSRBM_SOFT_RESET, tmp);
  2530. tmp = RREG32(mmSRBM_SOFT_RESET);
  2531. /* Wait a little for things to settle down */
  2532. udelay(50);
  2533. }
  2534. return 0;
  2535. }
  2536. static void dce_v8_0_set_crtc_vblank_interrupt_state(struct amdgpu_device *adev,
  2537. int crtc,
  2538. enum amdgpu_interrupt_state state)
  2539. {
  2540. u32 reg_block, lb_interrupt_mask;
  2541. if (crtc >= adev->mode_info.num_crtc) {
  2542. DRM_DEBUG("invalid crtc %d\n", crtc);
  2543. return;
  2544. }
  2545. switch (crtc) {
  2546. case 0:
  2547. reg_block = CRTC0_REGISTER_OFFSET;
  2548. break;
  2549. case 1:
  2550. reg_block = CRTC1_REGISTER_OFFSET;
  2551. break;
  2552. case 2:
  2553. reg_block = CRTC2_REGISTER_OFFSET;
  2554. break;
  2555. case 3:
  2556. reg_block = CRTC3_REGISTER_OFFSET;
  2557. break;
  2558. case 4:
  2559. reg_block = CRTC4_REGISTER_OFFSET;
  2560. break;
  2561. case 5:
  2562. reg_block = CRTC5_REGISTER_OFFSET;
  2563. break;
  2564. default:
  2565. DRM_DEBUG("invalid crtc %d\n", crtc);
  2566. return;
  2567. }
  2568. switch (state) {
  2569. case AMDGPU_IRQ_STATE_DISABLE:
  2570. lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
  2571. lb_interrupt_mask &= ~LB_INTERRUPT_MASK__VBLANK_INTERRUPT_MASK_MASK;
  2572. WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
  2573. break;
  2574. case AMDGPU_IRQ_STATE_ENABLE:
  2575. lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
  2576. lb_interrupt_mask |= LB_INTERRUPT_MASK__VBLANK_INTERRUPT_MASK_MASK;
  2577. WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
  2578. break;
  2579. default:
  2580. break;
  2581. }
  2582. }
  2583. static void dce_v8_0_set_crtc_vline_interrupt_state(struct amdgpu_device *adev,
  2584. int crtc,
  2585. enum amdgpu_interrupt_state state)
  2586. {
  2587. u32 reg_block, lb_interrupt_mask;
  2588. if (crtc >= adev->mode_info.num_crtc) {
  2589. DRM_DEBUG("invalid crtc %d\n", crtc);
  2590. return;
  2591. }
  2592. switch (crtc) {
  2593. case 0:
  2594. reg_block = CRTC0_REGISTER_OFFSET;
  2595. break;
  2596. case 1:
  2597. reg_block = CRTC1_REGISTER_OFFSET;
  2598. break;
  2599. case 2:
  2600. reg_block = CRTC2_REGISTER_OFFSET;
  2601. break;
  2602. case 3:
  2603. reg_block = CRTC3_REGISTER_OFFSET;
  2604. break;
  2605. case 4:
  2606. reg_block = CRTC4_REGISTER_OFFSET;
  2607. break;
  2608. case 5:
  2609. reg_block = CRTC5_REGISTER_OFFSET;
  2610. break;
  2611. default:
  2612. DRM_DEBUG("invalid crtc %d\n", crtc);
  2613. return;
  2614. }
  2615. switch (state) {
  2616. case AMDGPU_IRQ_STATE_DISABLE:
  2617. lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
  2618. lb_interrupt_mask &= ~LB_INTERRUPT_MASK__VLINE_INTERRUPT_MASK_MASK;
  2619. WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
  2620. break;
  2621. case AMDGPU_IRQ_STATE_ENABLE:
  2622. lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
  2623. lb_interrupt_mask |= LB_INTERRUPT_MASK__VLINE_INTERRUPT_MASK_MASK;
  2624. WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
  2625. break;
  2626. default:
  2627. break;
  2628. }
  2629. }
  2630. static int dce_v8_0_set_hpd_interrupt_state(struct amdgpu_device *adev,
  2631. struct amdgpu_irq_src *src,
  2632. unsigned type,
  2633. enum amdgpu_interrupt_state state)
  2634. {
  2635. u32 dc_hpd_int_cntl;
  2636. if (type >= adev->mode_info.num_hpd) {
  2637. DRM_DEBUG("invalid hdp %d\n", type);
  2638. return 0;
  2639. }
  2640. switch (state) {
  2641. case AMDGPU_IRQ_STATE_DISABLE:
  2642. dc_hpd_int_cntl = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type]);
  2643. dc_hpd_int_cntl &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK;
  2644. WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type], dc_hpd_int_cntl);
  2645. break;
  2646. case AMDGPU_IRQ_STATE_ENABLE:
  2647. dc_hpd_int_cntl = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type]);
  2648. dc_hpd_int_cntl |= DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK;
  2649. WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type], dc_hpd_int_cntl);
  2650. break;
  2651. default:
  2652. break;
  2653. }
  2654. return 0;
  2655. }
  2656. static int dce_v8_0_set_crtc_interrupt_state(struct amdgpu_device *adev,
  2657. struct amdgpu_irq_src *src,
  2658. unsigned type,
  2659. enum amdgpu_interrupt_state state)
  2660. {
  2661. switch (type) {
  2662. case AMDGPU_CRTC_IRQ_VBLANK1:
  2663. dce_v8_0_set_crtc_vblank_interrupt_state(adev, 0, state);
  2664. break;
  2665. case AMDGPU_CRTC_IRQ_VBLANK2:
  2666. dce_v8_0_set_crtc_vblank_interrupt_state(adev, 1, state);
  2667. break;
  2668. case AMDGPU_CRTC_IRQ_VBLANK3:
  2669. dce_v8_0_set_crtc_vblank_interrupt_state(adev, 2, state);
  2670. break;
  2671. case AMDGPU_CRTC_IRQ_VBLANK4:
  2672. dce_v8_0_set_crtc_vblank_interrupt_state(adev, 3, state);
  2673. break;
  2674. case AMDGPU_CRTC_IRQ_VBLANK5:
  2675. dce_v8_0_set_crtc_vblank_interrupt_state(adev, 4, state);
  2676. break;
  2677. case AMDGPU_CRTC_IRQ_VBLANK6:
  2678. dce_v8_0_set_crtc_vblank_interrupt_state(adev, 5, state);
  2679. break;
  2680. case AMDGPU_CRTC_IRQ_VLINE1:
  2681. dce_v8_0_set_crtc_vline_interrupt_state(adev, 0, state);
  2682. break;
  2683. case AMDGPU_CRTC_IRQ_VLINE2:
  2684. dce_v8_0_set_crtc_vline_interrupt_state(adev, 1, state);
  2685. break;
  2686. case AMDGPU_CRTC_IRQ_VLINE3:
  2687. dce_v8_0_set_crtc_vline_interrupt_state(adev, 2, state);
  2688. break;
  2689. case AMDGPU_CRTC_IRQ_VLINE4:
  2690. dce_v8_0_set_crtc_vline_interrupt_state(adev, 3, state);
  2691. break;
  2692. case AMDGPU_CRTC_IRQ_VLINE5:
  2693. dce_v8_0_set_crtc_vline_interrupt_state(adev, 4, state);
  2694. break;
  2695. case AMDGPU_CRTC_IRQ_VLINE6:
  2696. dce_v8_0_set_crtc_vline_interrupt_state(adev, 5, state);
  2697. break;
  2698. default:
  2699. break;
  2700. }
  2701. return 0;
  2702. }
  2703. static int dce_v8_0_crtc_irq(struct amdgpu_device *adev,
  2704. struct amdgpu_irq_src *source,
  2705. struct amdgpu_iv_entry *entry)
  2706. {
  2707. unsigned crtc = entry->src_id - 1;
  2708. uint32_t disp_int = RREG32(interrupt_status_offsets[crtc].reg);
  2709. unsigned irq_type = amdgpu_crtc_idx_to_irq_type(adev, crtc);
  2710. switch (entry->src_data[0]) {
  2711. case 0: /* vblank */
  2712. if (disp_int & interrupt_status_offsets[crtc].vblank)
  2713. WREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc], LB_VBLANK_STATUS__VBLANK_ACK_MASK);
  2714. else
  2715. DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
  2716. if (amdgpu_irq_enabled(adev, source, irq_type)) {
  2717. drm_handle_vblank(adev->ddev, crtc);
  2718. }
  2719. DRM_DEBUG("IH: D%d vblank\n", crtc + 1);
  2720. break;
  2721. case 1: /* vline */
  2722. if (disp_int & interrupt_status_offsets[crtc].vline)
  2723. WREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc], LB_VLINE_STATUS__VLINE_ACK_MASK);
  2724. else
  2725. DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
  2726. DRM_DEBUG("IH: D%d vline\n", crtc + 1);
  2727. break;
  2728. default:
  2729. DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
  2730. break;
  2731. }
  2732. return 0;
  2733. }
  2734. static int dce_v8_0_set_pageflip_interrupt_state(struct amdgpu_device *adev,
  2735. struct amdgpu_irq_src *src,
  2736. unsigned type,
  2737. enum amdgpu_interrupt_state state)
  2738. {
  2739. u32 reg;
  2740. if (type >= adev->mode_info.num_crtc) {
  2741. DRM_ERROR("invalid pageflip crtc %d\n", type);
  2742. return -EINVAL;
  2743. }
  2744. reg = RREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type]);
  2745. if (state == AMDGPU_IRQ_STATE_DISABLE)
  2746. WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
  2747. reg & ~GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
  2748. else
  2749. WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
  2750. reg | GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
  2751. return 0;
  2752. }
  2753. static int dce_v8_0_pageflip_irq(struct amdgpu_device *adev,
  2754. struct amdgpu_irq_src *source,
  2755. struct amdgpu_iv_entry *entry)
  2756. {
  2757. unsigned long flags;
  2758. unsigned crtc_id;
  2759. struct amdgpu_crtc *amdgpu_crtc;
  2760. struct amdgpu_flip_work *works;
  2761. crtc_id = (entry->src_id - 8) >> 1;
  2762. amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
  2763. if (crtc_id >= adev->mode_info.num_crtc) {
  2764. DRM_ERROR("invalid pageflip crtc %d\n", crtc_id);
  2765. return -EINVAL;
  2766. }
  2767. if (RREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id]) &
  2768. GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_OCCURRED_MASK)
  2769. WREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id],
  2770. GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_CLEAR_MASK);
  2771. /* IRQ could occur when in initial stage */
  2772. if (amdgpu_crtc == NULL)
  2773. return 0;
  2774. spin_lock_irqsave(&adev->ddev->event_lock, flags);
  2775. works = amdgpu_crtc->pflip_works;
  2776. if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){
  2777. DRM_DEBUG_DRIVER("amdgpu_crtc->pflip_status = %d != "
  2778. "AMDGPU_FLIP_SUBMITTED(%d)\n",
  2779. amdgpu_crtc->pflip_status,
  2780. AMDGPU_FLIP_SUBMITTED);
  2781. spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
  2782. return 0;
  2783. }
  2784. /* page flip completed. clean up */
  2785. amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
  2786. amdgpu_crtc->pflip_works = NULL;
  2787. /* wakeup usersapce */
  2788. if (works->event)
  2789. drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
  2790. spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
  2791. drm_crtc_vblank_put(&amdgpu_crtc->base);
  2792. schedule_work(&works->unpin_work);
  2793. return 0;
  2794. }
  2795. static int dce_v8_0_hpd_irq(struct amdgpu_device *adev,
  2796. struct amdgpu_irq_src *source,
  2797. struct amdgpu_iv_entry *entry)
  2798. {
  2799. uint32_t disp_int, mask, tmp;
  2800. unsigned hpd;
  2801. if (entry->src_data[0] >= adev->mode_info.num_hpd) {
  2802. DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
  2803. return 0;
  2804. }
  2805. hpd = entry->src_data[0];
  2806. disp_int = RREG32(interrupt_status_offsets[hpd].reg);
  2807. mask = interrupt_status_offsets[hpd].hpd;
  2808. if (disp_int & mask) {
  2809. tmp = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd]);
  2810. tmp |= DC_HPD1_INT_CONTROL__DC_HPD1_INT_ACK_MASK;
  2811. WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd], tmp);
  2812. schedule_work(&adev->hotplug_work);
  2813. DRM_DEBUG("IH: HPD%d\n", hpd + 1);
  2814. }
  2815. return 0;
  2816. }
  2817. static int dce_v8_0_set_clockgating_state(void *handle,
  2818. enum amd_clockgating_state state)
  2819. {
  2820. return 0;
  2821. }
  2822. static int dce_v8_0_set_powergating_state(void *handle,
  2823. enum amd_powergating_state state)
  2824. {
  2825. return 0;
  2826. }
  2827. static const struct amd_ip_funcs dce_v8_0_ip_funcs = {
  2828. .name = "dce_v8_0",
  2829. .early_init = dce_v8_0_early_init,
  2830. .late_init = NULL,
  2831. .sw_init = dce_v8_0_sw_init,
  2832. .sw_fini = dce_v8_0_sw_fini,
  2833. .hw_init = dce_v8_0_hw_init,
  2834. .hw_fini = dce_v8_0_hw_fini,
  2835. .suspend = dce_v8_0_suspend,
  2836. .resume = dce_v8_0_resume,
  2837. .is_idle = dce_v8_0_is_idle,
  2838. .wait_for_idle = dce_v8_0_wait_for_idle,
  2839. .soft_reset = dce_v8_0_soft_reset,
  2840. .set_clockgating_state = dce_v8_0_set_clockgating_state,
  2841. .set_powergating_state = dce_v8_0_set_powergating_state,
  2842. };
  2843. static void
  2844. dce_v8_0_encoder_mode_set(struct drm_encoder *encoder,
  2845. struct drm_display_mode *mode,
  2846. struct drm_display_mode *adjusted_mode)
  2847. {
  2848. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  2849. amdgpu_encoder->pixel_clock = adjusted_mode->clock;
  2850. /* need to call this here rather than in prepare() since we need some crtc info */
  2851. amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
  2852. /* set scaler clears this on some chips */
  2853. dce_v8_0_set_interleave(encoder->crtc, mode);
  2854. if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI) {
  2855. dce_v8_0_afmt_enable(encoder, true);
  2856. dce_v8_0_afmt_setmode(encoder, adjusted_mode);
  2857. }
  2858. }
  2859. static void dce_v8_0_encoder_prepare(struct drm_encoder *encoder)
  2860. {
  2861. struct amdgpu_device *adev = encoder->dev->dev_private;
  2862. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  2863. struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
  2864. if ((amdgpu_encoder->active_device &
  2865. (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) ||
  2866. (amdgpu_encoder_get_dp_bridge_encoder_id(encoder) !=
  2867. ENCODER_OBJECT_ID_NONE)) {
  2868. struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
  2869. if (dig) {
  2870. dig->dig_encoder = dce_v8_0_pick_dig_encoder(encoder);
  2871. if (amdgpu_encoder->active_device & ATOM_DEVICE_DFP_SUPPORT)
  2872. dig->afmt = adev->mode_info.afmt[dig->dig_encoder];
  2873. }
  2874. }
  2875. amdgpu_atombios_scratch_regs_lock(adev, true);
  2876. if (connector) {
  2877. struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
  2878. /* select the clock/data port if it uses a router */
  2879. if (amdgpu_connector->router.cd_valid)
  2880. amdgpu_i2c_router_select_cd_port(amdgpu_connector);
  2881. /* turn eDP panel on for mode set */
  2882. if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
  2883. amdgpu_atombios_encoder_set_edp_panel_power(connector,
  2884. ATOM_TRANSMITTER_ACTION_POWER_ON);
  2885. }
  2886. /* this is needed for the pll/ss setup to work correctly in some cases */
  2887. amdgpu_atombios_encoder_set_crtc_source(encoder);
  2888. /* set up the FMT blocks */
  2889. dce_v8_0_program_fmt(encoder);
  2890. }
  2891. static void dce_v8_0_encoder_commit(struct drm_encoder *encoder)
  2892. {
  2893. struct drm_device *dev = encoder->dev;
  2894. struct amdgpu_device *adev = dev->dev_private;
  2895. /* need to call this here as we need the crtc set up */
  2896. amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_ON);
  2897. amdgpu_atombios_scratch_regs_lock(adev, false);
  2898. }
  2899. static void dce_v8_0_encoder_disable(struct drm_encoder *encoder)
  2900. {
  2901. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  2902. struct amdgpu_encoder_atom_dig *dig;
  2903. amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
  2904. if (amdgpu_atombios_encoder_is_digital(encoder)) {
  2905. if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI)
  2906. dce_v8_0_afmt_enable(encoder, false);
  2907. dig = amdgpu_encoder->enc_priv;
  2908. dig->dig_encoder = -1;
  2909. }
  2910. amdgpu_encoder->active_device = 0;
  2911. }
  2912. /* these are handled by the primary encoders */
  2913. static void dce_v8_0_ext_prepare(struct drm_encoder *encoder)
  2914. {
  2915. }
  2916. static void dce_v8_0_ext_commit(struct drm_encoder *encoder)
  2917. {
  2918. }
  2919. static void
  2920. dce_v8_0_ext_mode_set(struct drm_encoder *encoder,
  2921. struct drm_display_mode *mode,
  2922. struct drm_display_mode *adjusted_mode)
  2923. {
  2924. }
  2925. static void dce_v8_0_ext_disable(struct drm_encoder *encoder)
  2926. {
  2927. }
  2928. static void
  2929. dce_v8_0_ext_dpms(struct drm_encoder *encoder, int mode)
  2930. {
  2931. }
  2932. static const struct drm_encoder_helper_funcs dce_v8_0_ext_helper_funcs = {
  2933. .dpms = dce_v8_0_ext_dpms,
  2934. .prepare = dce_v8_0_ext_prepare,
  2935. .mode_set = dce_v8_0_ext_mode_set,
  2936. .commit = dce_v8_0_ext_commit,
  2937. .disable = dce_v8_0_ext_disable,
  2938. /* no detect for TMDS/LVDS yet */
  2939. };
  2940. static const struct drm_encoder_helper_funcs dce_v8_0_dig_helper_funcs = {
  2941. .dpms = amdgpu_atombios_encoder_dpms,
  2942. .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
  2943. .prepare = dce_v8_0_encoder_prepare,
  2944. .mode_set = dce_v8_0_encoder_mode_set,
  2945. .commit = dce_v8_0_encoder_commit,
  2946. .disable = dce_v8_0_encoder_disable,
  2947. .detect = amdgpu_atombios_encoder_dig_detect,
  2948. };
  2949. static const struct drm_encoder_helper_funcs dce_v8_0_dac_helper_funcs = {
  2950. .dpms = amdgpu_atombios_encoder_dpms,
  2951. .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
  2952. .prepare = dce_v8_0_encoder_prepare,
  2953. .mode_set = dce_v8_0_encoder_mode_set,
  2954. .commit = dce_v8_0_encoder_commit,
  2955. .detect = amdgpu_atombios_encoder_dac_detect,
  2956. };
  2957. static void dce_v8_0_encoder_destroy(struct drm_encoder *encoder)
  2958. {
  2959. struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
  2960. if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
  2961. amdgpu_atombios_encoder_fini_backlight(amdgpu_encoder);
  2962. kfree(amdgpu_encoder->enc_priv);
  2963. drm_encoder_cleanup(encoder);
  2964. kfree(amdgpu_encoder);
  2965. }
  2966. static const struct drm_encoder_funcs dce_v8_0_encoder_funcs = {
  2967. .destroy = dce_v8_0_encoder_destroy,
  2968. };
  2969. static void dce_v8_0_encoder_add(struct amdgpu_device *adev,
  2970. uint32_t encoder_enum,
  2971. uint32_t supported_device,
  2972. u16 caps)
  2973. {
  2974. struct drm_device *dev = adev->ddev;
  2975. struct drm_encoder *encoder;
  2976. struct amdgpu_encoder *amdgpu_encoder;
  2977. /* see if we already added it */
  2978. list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
  2979. amdgpu_encoder = to_amdgpu_encoder(encoder);
  2980. if (amdgpu_encoder->encoder_enum == encoder_enum) {
  2981. amdgpu_encoder->devices |= supported_device;
  2982. return;
  2983. }
  2984. }
  2985. /* add a new one */
  2986. amdgpu_encoder = kzalloc(sizeof(struct amdgpu_encoder), GFP_KERNEL);
  2987. if (!amdgpu_encoder)
  2988. return;
  2989. encoder = &amdgpu_encoder->base;
  2990. switch (adev->mode_info.num_crtc) {
  2991. case 1:
  2992. encoder->possible_crtcs = 0x1;
  2993. break;
  2994. case 2:
  2995. default:
  2996. encoder->possible_crtcs = 0x3;
  2997. break;
  2998. case 4:
  2999. encoder->possible_crtcs = 0xf;
  3000. break;
  3001. case 6:
  3002. encoder->possible_crtcs = 0x3f;
  3003. break;
  3004. }
  3005. amdgpu_encoder->enc_priv = NULL;
  3006. amdgpu_encoder->encoder_enum = encoder_enum;
  3007. amdgpu_encoder->encoder_id = (encoder_enum & OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
  3008. amdgpu_encoder->devices = supported_device;
  3009. amdgpu_encoder->rmx_type = RMX_OFF;
  3010. amdgpu_encoder->underscan_type = UNDERSCAN_OFF;
  3011. amdgpu_encoder->is_ext_encoder = false;
  3012. amdgpu_encoder->caps = caps;
  3013. switch (amdgpu_encoder->encoder_id) {
  3014. case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1:
  3015. case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2:
  3016. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3017. DRM_MODE_ENCODER_DAC, NULL);
  3018. drm_encoder_helper_add(encoder, &dce_v8_0_dac_helper_funcs);
  3019. break;
  3020. case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
  3021. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
  3022. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
  3023. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
  3024. case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
  3025. if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
  3026. amdgpu_encoder->rmx_type = RMX_FULL;
  3027. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3028. DRM_MODE_ENCODER_LVDS, NULL);
  3029. amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_lcd_info(amdgpu_encoder);
  3030. } else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT)) {
  3031. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3032. DRM_MODE_ENCODER_DAC, NULL);
  3033. amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
  3034. } else {
  3035. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3036. DRM_MODE_ENCODER_TMDS, NULL);
  3037. amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
  3038. }
  3039. drm_encoder_helper_add(encoder, &dce_v8_0_dig_helper_funcs);
  3040. break;
  3041. case ENCODER_OBJECT_ID_SI170B:
  3042. case ENCODER_OBJECT_ID_CH7303:
  3043. case ENCODER_OBJECT_ID_EXTERNAL_SDVOA:
  3044. case ENCODER_OBJECT_ID_EXTERNAL_SDVOB:
  3045. case ENCODER_OBJECT_ID_TITFP513:
  3046. case ENCODER_OBJECT_ID_VT1623:
  3047. case ENCODER_OBJECT_ID_HDMI_SI1930:
  3048. case ENCODER_OBJECT_ID_TRAVIS:
  3049. case ENCODER_OBJECT_ID_NUTMEG:
  3050. /* these are handled by the primary encoders */
  3051. amdgpu_encoder->is_ext_encoder = true;
  3052. if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
  3053. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3054. DRM_MODE_ENCODER_LVDS, NULL);
  3055. else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT))
  3056. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3057. DRM_MODE_ENCODER_DAC, NULL);
  3058. else
  3059. drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
  3060. DRM_MODE_ENCODER_TMDS, NULL);
  3061. drm_encoder_helper_add(encoder, &dce_v8_0_ext_helper_funcs);
  3062. break;
  3063. }
  3064. }
  3065. static const struct amdgpu_display_funcs dce_v8_0_display_funcs = {
  3066. .set_vga_render_state = &dce_v8_0_set_vga_render_state,
  3067. .bandwidth_update = &dce_v8_0_bandwidth_update,
  3068. .vblank_get_counter = &dce_v8_0_vblank_get_counter,
  3069. .vblank_wait = &dce_v8_0_vblank_wait,
  3070. .backlight_set_level = &amdgpu_atombios_encoder_set_backlight_level,
  3071. .backlight_get_level = &amdgpu_atombios_encoder_get_backlight_level,
  3072. .hpd_sense = &dce_v8_0_hpd_sense,
  3073. .hpd_set_polarity = &dce_v8_0_hpd_set_polarity,
  3074. .hpd_get_gpio_reg = &dce_v8_0_hpd_get_gpio_reg,
  3075. .page_flip = &dce_v8_0_page_flip,
  3076. .page_flip_get_scanoutpos = &dce_v8_0_crtc_get_scanoutpos,
  3077. .add_encoder = &dce_v8_0_encoder_add,
  3078. .add_connector = &amdgpu_connector_add,
  3079. .stop_mc_access = &dce_v8_0_stop_mc_access,
  3080. .resume_mc_access = &dce_v8_0_resume_mc_access,
  3081. };
  3082. static void dce_v8_0_set_display_funcs(struct amdgpu_device *adev)
  3083. {
  3084. if (adev->mode_info.funcs == NULL)
  3085. adev->mode_info.funcs = &dce_v8_0_display_funcs;
  3086. }
  3087. static const struct amdgpu_irq_src_funcs dce_v8_0_crtc_irq_funcs = {
  3088. .set = dce_v8_0_set_crtc_interrupt_state,
  3089. .process = dce_v8_0_crtc_irq,
  3090. };
  3091. static const struct amdgpu_irq_src_funcs dce_v8_0_pageflip_irq_funcs = {
  3092. .set = dce_v8_0_set_pageflip_interrupt_state,
  3093. .process = dce_v8_0_pageflip_irq,
  3094. };
  3095. static const struct amdgpu_irq_src_funcs dce_v8_0_hpd_irq_funcs = {
  3096. .set = dce_v8_0_set_hpd_interrupt_state,
  3097. .process = dce_v8_0_hpd_irq,
  3098. };
  3099. static void dce_v8_0_set_irq_funcs(struct amdgpu_device *adev)
  3100. {
  3101. adev->crtc_irq.num_types = AMDGPU_CRTC_IRQ_LAST;
  3102. adev->crtc_irq.funcs = &dce_v8_0_crtc_irq_funcs;
  3103. adev->pageflip_irq.num_types = AMDGPU_PAGEFLIP_IRQ_LAST;
  3104. adev->pageflip_irq.funcs = &dce_v8_0_pageflip_irq_funcs;
  3105. adev->hpd_irq.num_types = AMDGPU_HPD_LAST;
  3106. adev->hpd_irq.funcs = &dce_v8_0_hpd_irq_funcs;
  3107. }
  3108. const struct amdgpu_ip_block_version dce_v8_0_ip_block =
  3109. {
  3110. .type = AMD_IP_BLOCK_TYPE_DCE,
  3111. .major = 8,
  3112. .minor = 0,
  3113. .rev = 0,
  3114. .funcs = &dce_v8_0_ip_funcs,
  3115. };
  3116. const struct amdgpu_ip_block_version dce_v8_1_ip_block =
  3117. {
  3118. .type = AMD_IP_BLOCK_TYPE_DCE,
  3119. .major = 8,
  3120. .minor = 1,
  3121. .rev = 0,
  3122. .funcs = &dce_v8_0_ip_funcs,
  3123. };
  3124. const struct amdgpu_ip_block_version dce_v8_2_ip_block =
  3125. {
  3126. .type = AMD_IP_BLOCK_TYPE_DCE,
  3127. .major = 8,
  3128. .minor = 2,
  3129. .rev = 0,
  3130. .funcs = &dce_v8_0_ip_funcs,
  3131. };
  3132. const struct amdgpu_ip_block_version dce_v8_3_ip_block =
  3133. {
  3134. .type = AMD_IP_BLOCK_TYPE_DCE,
  3135. .major = 8,
  3136. .minor = 3,
  3137. .rev = 0,
  3138. .funcs = &dce_v8_0_ip_funcs,
  3139. };
  3140. const struct amdgpu_ip_block_version dce_v8_5_ip_block =
  3141. {
  3142. .type = AMD_IP_BLOCK_TYPE_DCE,
  3143. .major = 8,
  3144. .minor = 5,
  3145. .rev = 0,
  3146. .funcs = &dce_v8_0_ip_funcs,
  3147. };