sde_encoder_phys_wb.c 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  4. * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  5. */
  6. #define pr_fmt(fmt) "[drm:%s:%d] " fmt, __func__, __LINE__
  7. #include <linux/debugfs.h>
  8. #include <drm/sde_drm.h>
  9. #include "sde_encoder_phys.h"
  10. #include "sde_formats.h"
  11. #include "sde_hw_top.h"
  12. #include "sde_hw_interrupts.h"
  13. #include "sde_core_irq.h"
  14. #include "sde_wb.h"
  15. #include "sde_vbif.h"
  16. #include "sde_crtc.h"
  17. #include "sde_hw_dnsc_blur.h"
  18. #include "sde_trace.h"
  19. #define to_sde_encoder_phys_wb(x) \
  20. container_of(x, struct sde_encoder_phys_wb, base)
  21. #define WBID(wb_enc) \
  22. ((wb_enc && wb_enc->wb_dev) ? wb_enc->wb_dev->wb_idx - WB_0 : -1)
  23. #define TO_S15D16(_x_) ((_x_) << 7)
  24. #define SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg) \
  25. ((SDE_FORMAT_IS_UBWC(fmt) || SDE_FORMAT_IS_YUV(fmt)) ? wb_cfg->sblk->maxlinewidth : \
  26. wb_cfg->sblk->maxlinewidth_linear)
  27. /* a5x mini-tile width and height */
  28. #define MINI_TILE_W 4
  29. #define MINI_TILE_H 4
  30. #define SDE_WB_ROT_MAX_SRCW 4096
  31. #define SDE_WB_ROT_MAX_SRCH 4096
  32. static const u32 cwb_irq_tbl[PINGPONG_MAX] = {SDE_NONE, INTR_IDX_PP1_OVFL,
  33. INTR_IDX_PP2_OVFL, INTR_IDX_PP3_OVFL, INTR_IDX_PP4_OVFL,
  34. INTR_IDX_PP5_OVFL, SDE_NONE, SDE_NONE};
  35. static const u32 dcwb_irq_tbl[PINGPONG_MAX] = {SDE_NONE, SDE_NONE,
  36. SDE_NONE, SDE_NONE, SDE_NONE, SDE_NONE,
  37. INTR_IDX_PP_CWB_OVFL, SDE_NONE, INTR_IDX_PP_CWB2_OVFL, SDE_NONE};
  38. /**
  39. * sde_rgb2yuv_601l - rgb to yuv color space conversion matrix
  40. *
  41. */
  42. static struct sde_csc_cfg sde_encoder_phys_wb_rgb2yuv_601l = {
  43. {
  44. TO_S15D16(0x0083), TO_S15D16(0x0102), TO_S15D16(0x0032),
  45. TO_S15D16(0x1fb5), TO_S15D16(0x1f6c), TO_S15D16(0x00e1),
  46. TO_S15D16(0x00e1), TO_S15D16(0x1f45), TO_S15D16(0x1fdc)
  47. },
  48. { 0x00, 0x00, 0x00 },
  49. { 0x0040, 0x0200, 0x0200 },
  50. { 0x000, 0x3ff, 0x000, 0x3ff, 0x000, 0x3ff },
  51. { 0x040, 0x3ac, 0x040, 0x3c0, 0x040, 0x3c0 },
  52. };
  53. /**
  54. * sde_encoder_phys_wb_is_master - report wb always as master encoder
  55. */
  56. static bool sde_encoder_phys_wb_is_master(struct sde_encoder_phys *phys_enc)
  57. {
  58. return true;
  59. }
  60. /**
  61. * sde_encoder_phys_wb_get_intr_type - get interrupt type based on block mode
  62. * @hw_wb: Pointer to h/w writeback driver
  63. */
  64. static enum sde_intr_type sde_encoder_phys_wb_get_intr_type(
  65. struct sde_hw_wb *hw_wb)
  66. {
  67. return (hw_wb->caps->features & BIT(SDE_WB_BLOCK_MODE)) ?
  68. SDE_IRQ_TYPE_WB_ROT_COMP : SDE_IRQ_TYPE_WB_WFD_COMP;
  69. }
  70. /**
  71. * sde_encoder_phys_wb_set_ot_limit - set OT limit for writeback interface
  72. * @phys_enc: Pointer to physical encoder
  73. */
  74. static void sde_encoder_phys_wb_set_ot_limit(struct sde_encoder_phys *phys_enc)
  75. {
  76. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  77. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  78. struct drm_connector_state *conn_state;
  79. struct sde_vbif_set_ot_params ot_params;
  80. enum sde_wb_usage_type usage_type;
  81. conn_state = phys_enc->connector->state;
  82. usage_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_USAGE_TYPE);
  83. memset(&ot_params, 0, sizeof(ot_params));
  84. ot_params.xin_id = hw_wb->caps->xin_id;
  85. ot_params.num = hw_wb->idx - WB_0;
  86. ot_params.width = wb_enc->wb_roi.w;
  87. ot_params.height = wb_enc->wb_roi.h;
  88. ot_params.is_wfd = (usage_type == WB_USAGE_WFD);
  89. ot_params.frame_rate = drm_mode_vrefresh(&phys_enc->cached_mode);
  90. ot_params.vbif_idx = hw_wb->caps->vbif_idx;
  91. ot_params.clk_ctrl = hw_wb->caps->clk_ctrl;
  92. ot_params.rd = false;
  93. sde_vbif_set_ot_limit(phys_enc->sde_kms, &ot_params);
  94. }
  95. /**
  96. * sde_encoder_phys_wb_set_qos_remap - set QoS remapper for writeback
  97. * @phys_enc: Pointer to physical encoder
  98. */
  99. static void sde_encoder_phys_wb_set_qos_remap(struct sde_encoder_phys *phys_enc)
  100. {
  101. struct sde_encoder_phys_wb *wb_enc;
  102. struct sde_hw_wb *hw_wb;
  103. struct drm_crtc *crtc;
  104. struct drm_connector_state *conn_state;
  105. struct sde_vbif_set_qos_params qos_params;
  106. enum sde_wb_usage_type usage_type;
  107. if (!phys_enc || !phys_enc->parent || !phys_enc->parent->crtc) {
  108. SDE_ERROR("invalid arguments\n");
  109. return;
  110. }
  111. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  112. if (!wb_enc->crtc) {
  113. SDE_ERROR("[enc:%d, wb:%d] invalid crtc\n", DRMID(phys_enc->parent), WBID(wb_enc));
  114. return;
  115. }
  116. crtc = wb_enc->crtc;
  117. conn_state = phys_enc->connector->state;
  118. usage_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_USAGE_TYPE);
  119. if (!wb_enc->hw_wb || !wb_enc->hw_wb->caps) {
  120. SDE_ERROR("[enc:%d wb:%d] invalid WB HW\n", DRMID(phys_enc->parent), WBID(wb_enc));
  121. return;
  122. }
  123. hw_wb = wb_enc->hw_wb;
  124. memset(&qos_params, 0, sizeof(qos_params));
  125. qos_params.vbif_idx = hw_wb->caps->vbif_idx;
  126. qos_params.xin_id = hw_wb->caps->xin_id;
  127. qos_params.clk_ctrl = hw_wb->caps->clk_ctrl;
  128. qos_params.num = hw_wb->idx - WB_0;
  129. if (phys_enc->in_clone_mode)
  130. qos_params.client_type = VBIF_CWB_CLIENT;
  131. else if (usage_type == WB_USAGE_OFFLINE_WB)
  132. qos_params.client_type = VBIF_OFFLINE_WB_CLIENT;
  133. else if (usage_type == WB_USAGE_ROT)
  134. qos_params.client_type = VBIF_WB_ROT_CLIENT;
  135. else
  136. qos_params.client_type = VBIF_NRT_CLIENT;
  137. SDE_DEBUG("[enc:%d wb:%d] qos_remap - wb:%d vbif:%d xin:%d clone:%d\n",
  138. DRMID(phys_enc->parent), WBID(wb_enc), qos_params.num,
  139. qos_params.vbif_idx, qos_params.xin_id, qos_params.client_type);
  140. sde_vbif_set_qos_remap(phys_enc->sde_kms, &qos_params);
  141. }
  142. /**
  143. * sde_encoder_phys_wb_set_qos - set QoS/danger/safe LUTs for writeback
  144. * @phys_enc: Pointer to physical encoder
  145. */
  146. static void sde_encoder_phys_wb_set_qos(struct sde_encoder_phys *phys_enc)
  147. {
  148. struct sde_encoder_phys_wb *wb_enc;
  149. struct sde_hw_wb *hw_wb;
  150. struct drm_connector_state *conn_state;
  151. struct sde_hw_wb_qos_cfg qos_cfg = {0};
  152. struct sde_perf_cfg *perf;
  153. u32 fps_index = 0, lut_index, creq_index, ds_index, frame_rate, qos_count;
  154. enum sde_wb_usage_type usage_type;
  155. if (!phys_enc || !phys_enc->sde_kms || !phys_enc->sde_kms->catalog) {
  156. SDE_ERROR("invalid parameter(s)\n");
  157. return;
  158. }
  159. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  160. if (!wb_enc->hw_wb) {
  161. SDE_ERROR("[enc:%d wb:%d] invalid WB HW\n", DRMID(phys_enc->parent), WBID(wb_enc));
  162. return;
  163. }
  164. conn_state = phys_enc->connector->state;
  165. usage_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_USAGE_TYPE);
  166. perf = &phys_enc->sde_kms->catalog->perf;
  167. frame_rate = drm_mode_vrefresh(&phys_enc->cached_mode);
  168. hw_wb = wb_enc->hw_wb;
  169. qos_count = perf->qos_refresh_count;
  170. while ((fps_index < qos_count) && perf->qos_refresh_rate) {
  171. if ((frame_rate <= perf->qos_refresh_rate[fps_index]) ||
  172. (fps_index == qos_count - 1))
  173. break;
  174. fps_index++;
  175. }
  176. qos_cfg.danger_safe_en = true;
  177. if (usage_type == WB_USAGE_ROT) {
  178. qos_cfg.qos_mode = SDE_WB_QOS_MODE_DYNAMIC;
  179. qos_cfg.bytes_per_clk = sde_connector_get_property(conn_state,
  180. CONNECTOR_PROP_WB_ROT_BYTES_PER_CLK);
  181. }
  182. if (phys_enc->in_clone_mode)
  183. lut_index = (SDE_FORMAT_IS_TILE(wb_enc->wb_fmt)
  184. || SDE_FORMAT_IS_UBWC(wb_enc->wb_fmt)) ?
  185. SDE_QOS_LUT_USAGE_CWB_TILE : SDE_QOS_LUT_USAGE_CWB;
  186. else if (usage_type == WB_USAGE_ROT)
  187. lut_index = SDE_QOS_LUT_USAGE_WB_ROT;
  188. else
  189. lut_index = (usage_type == WB_USAGE_OFFLINE_WB) ?
  190. SDE_QOS_LUT_USAGE_OFFLINE_WB : SDE_QOS_LUT_USAGE_NRT;
  191. creq_index = lut_index * SDE_CREQ_LUT_TYPE_MAX;
  192. creq_index += (fps_index * SDE_QOS_LUT_USAGE_MAX * SDE_CREQ_LUT_TYPE_MAX);
  193. qos_cfg.creq_lut = perf->creq_lut[creq_index];
  194. ds_index = lut_index * SDE_DANGER_SAFE_LUT_TYPE_MAX;
  195. ds_index += (fps_index * SDE_QOS_LUT_USAGE_MAX * SDE_DANGER_SAFE_LUT_TYPE_MAX);
  196. qos_cfg.danger_lut = perf->danger_lut[ds_index];
  197. qos_cfg.safe_lut = (u32) perf->safe_lut[ds_index];
  198. SDE_DEBUG("[enc:%d wb:%d] fps:%d mode:%d type:%d luts[0x%x,0x%x 0x%llx]\n",
  199. DRMID(phys_enc->parent), WBID(wb_enc), frame_rate, phys_enc->in_clone_mode,
  200. usage_type, qos_cfg.danger_lut, qos_cfg.safe_lut, qos_cfg.creq_lut);
  201. if (hw_wb->ops.setup_qos_lut)
  202. hw_wb->ops.setup_qos_lut(hw_wb, &qos_cfg);
  203. }
  204. /**
  205. * sde_encoder_phys_setup_cdm - setup chroma down block
  206. * @phys_enc: Pointer to physical encoder
  207. * @fb: Pointer to output framebuffer
  208. * @format: Output format
  209. */
  210. void sde_encoder_phys_setup_cdm(struct sde_encoder_phys *phys_enc, struct drm_framebuffer *fb,
  211. const struct sde_format *format, struct sde_rect *wb_roi)
  212. {
  213. struct sde_hw_cdm *hw_cdm;
  214. struct sde_hw_cdm_cfg *cdm_cfg;
  215. struct sde_hw_pingpong *hw_pp;
  216. struct sde_encoder_phys_wb *wb_enc;
  217. int ret;
  218. if (!phys_enc || !format)
  219. return;
  220. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  221. cdm_cfg = &phys_enc->cdm_cfg;
  222. hw_pp = phys_enc->hw_pp;
  223. hw_cdm = phys_enc->hw_cdm;
  224. if (!hw_cdm)
  225. return;
  226. if (!SDE_FORMAT_IS_YUV(format)) {
  227. SDE_DEBUG("[enc:%d wb:%d] cdm_disable fmt:%x\n", DRMID(phys_enc->parent),
  228. WBID(wb_enc), format->base.pixel_format);
  229. if (hw_cdm && hw_cdm->ops.disable)
  230. hw_cdm->ops.disable(hw_cdm);
  231. return;
  232. }
  233. memset(cdm_cfg, 0, sizeof(struct sde_hw_cdm_cfg));
  234. if (!wb_roi)
  235. return;
  236. cdm_cfg->output_width = wb_roi->w;
  237. cdm_cfg->output_height = wb_roi->h;
  238. cdm_cfg->output_fmt = format;
  239. cdm_cfg->output_type = CDM_CDWN_OUTPUT_WB;
  240. cdm_cfg->output_bit_depth = SDE_FORMAT_IS_DX(format) ?
  241. CDM_CDWN_OUTPUT_10BIT : CDM_CDWN_OUTPUT_8BIT;
  242. /* enable 10 bit logic */
  243. switch (cdm_cfg->output_fmt->chroma_sample) {
  244. case SDE_CHROMA_RGB:
  245. cdm_cfg->h_cdwn_type = CDM_CDWN_DISABLE;
  246. cdm_cfg->v_cdwn_type = CDM_CDWN_DISABLE;
  247. break;
  248. case SDE_CHROMA_H2V1:
  249. cdm_cfg->h_cdwn_type = CDM_CDWN_COSITE;
  250. cdm_cfg->v_cdwn_type = CDM_CDWN_DISABLE;
  251. break;
  252. case SDE_CHROMA_420:
  253. cdm_cfg->h_cdwn_type = CDM_CDWN_COSITE;
  254. cdm_cfg->v_cdwn_type = CDM_CDWN_OFFSITE;
  255. break;
  256. case SDE_CHROMA_H1V2:
  257. default:
  258. SDE_ERROR("[enc:%d wb:%d] unsupported chroma sampling type\n",
  259. DRMID(phys_enc->parent), WBID(wb_enc));
  260. cdm_cfg->h_cdwn_type = CDM_CDWN_DISABLE;
  261. cdm_cfg->v_cdwn_type = CDM_CDWN_DISABLE;
  262. break;
  263. }
  264. SDE_DEBUG("[enc:%d wb:%d] cdm_enable:%d,%d,%X,%d,%d,%d,%d]\n",
  265. DRMID(phys_enc->parent), WBID(wb_enc), cdm_cfg->output_width,
  266. cdm_cfg->output_height, cdm_cfg->output_fmt->base.pixel_format,
  267. cdm_cfg->output_type, cdm_cfg->output_bit_depth,
  268. cdm_cfg->h_cdwn_type, cdm_cfg->v_cdwn_type);
  269. if (hw_cdm && hw_cdm->ops.setup_csc_data) {
  270. ret = hw_cdm->ops.setup_csc_data(hw_cdm, &sde_encoder_phys_wb_rgb2yuv_601l);
  271. if (ret < 0) {
  272. SDE_ERROR("[enc:%d wb:%d] failed to setup CSC; ret:%d\n",
  273. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  274. return;
  275. }
  276. }
  277. if (hw_cdm && hw_cdm->ops.setup_cdwn) {
  278. ret = hw_cdm->ops.setup_cdwn(hw_cdm, cdm_cfg);
  279. if (ret < 0) {
  280. SDE_ERROR("[enc:%d wb:%d] failed to setup CDWN; ret:%d\n",
  281. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  282. return;
  283. }
  284. }
  285. if (hw_cdm && hw_pp && hw_cdm->ops.enable) {
  286. cdm_cfg->pp_id = hw_pp->idx;
  287. ret = hw_cdm->ops.enable(hw_cdm, cdm_cfg);
  288. if (ret < 0) {
  289. SDE_ERROR("[enc:%d wb:%d] failed to enable CDM; ret:%d\n",
  290. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  291. return;
  292. }
  293. }
  294. }
  295. static void _sde_enc_phys_wb_get_out_resolution(struct drm_crtc_state *crtc_state,
  296. struct drm_connector_state *conn_state, u32 *out_width, u32 *out_height)
  297. {
  298. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  299. const struct drm_display_mode *mode = &crtc_state->mode;
  300. struct sde_io_res ds_res = {0, }, dnsc_blur_res = {0, };
  301. u32 ds_tap_pt = sde_crtc_get_property(cstate, CRTC_PROP_CAPTURE_OUTPUT);
  302. enum sde_wb_rot_type rotation_type;
  303. sde_crtc_get_ds_io_res(crtc_state, &ds_res);
  304. sde_connector_get_dnsc_blur_io_res(conn_state, &dnsc_blur_res);
  305. rotation_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_ROT_TYPE);
  306. if (dnsc_blur_res.enabled) {
  307. *out_width = dnsc_blur_res.dst_w;
  308. *out_height = dnsc_blur_res.dst_h;
  309. } else if (ds_res.enabled) {
  310. if (ds_tap_pt == CAPTURE_DSPP_OUT) {
  311. *out_width = ds_res.dst_w;
  312. *out_height = ds_res.dst_h;
  313. } else if (ds_tap_pt == CAPTURE_MIXER_OUT) {
  314. *out_width = ds_res.src_w;
  315. *out_height = ds_res.src_h;
  316. } else {
  317. *out_width = mode->hdisplay;
  318. *out_height = mode->vdisplay;
  319. }
  320. } else {
  321. *out_width = mode->hdisplay;
  322. *out_height = mode->vdisplay;
  323. }
  324. if (rotation_type != WB_ROT_NONE)
  325. swap(*out_width, *out_height);
  326. }
  327. static void _sde_encoder_phys_wb_setup_cdp(struct sde_encoder_phys *phys_enc,
  328. struct sde_hw_wb_cfg *wb_cfg)
  329. {
  330. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  331. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  332. struct sde_hw_wb_cdp_cfg *cdp_cfg = &wb_enc->cdp_cfg;
  333. u32 cdp_index;
  334. if (!hw_wb->ops.setup_cdp)
  335. return;
  336. memset(cdp_cfg, 0, sizeof(struct sde_hw_wb_cdp_cfg));
  337. cdp_index = phys_enc->in_clone_mode ? SDE_PERF_CDP_USAGE_RT : SDE_PERF_CDP_USAGE_NRT;
  338. cdp_cfg->enable = phys_enc->sde_kms->catalog->perf.cdp_cfg[cdp_index].wr_enable;
  339. cdp_cfg->ubwc_meta_enable = SDE_FORMAT_IS_UBWC(wb_cfg->dest.format);
  340. cdp_cfg->tile_amortize_enable = SDE_FORMAT_IS_UBWC(wb_cfg->dest.format) ||
  341. SDE_FORMAT_IS_TILE(wb_cfg->dest.format);
  342. cdp_cfg->preload_ahead = SDE_WB_CDP_PRELOAD_AHEAD_64;
  343. hw_wb->ops.setup_cdp(hw_wb, cdp_cfg);
  344. }
  345. static void _sde_encoder_phys_wb_setup_roi(struct sde_encoder_phys *phys_enc,
  346. struct sde_hw_wb_cfg *wb_cfg, u32 out_width, u32 out_height)
  347. {
  348. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  349. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  350. struct drm_crtc_state *crtc_state = wb_enc->crtc->state;
  351. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  352. struct sde_rect pu_roi = {0,};
  353. if (!hw_wb->ops.setup_roi)
  354. return;
  355. if (hw_wb->ops.setup_crop && phys_enc->in_clone_mode) {
  356. wb_cfg->crop.x = wb_cfg->roi.x;
  357. wb_cfg->crop.y = wb_cfg->roi.y;
  358. if (cstate->user_roi_list.num_rects) {
  359. sde_kms_rect_merge_rectangles(&cstate->user_roi_list, &pu_roi);
  360. if ((wb_cfg->roi.w != pu_roi.w) || (wb_cfg->roi.h != pu_roi.h)) {
  361. /* offset cropping region to PU region */
  362. wb_cfg->crop.x = wb_cfg->crop.x - pu_roi.x;
  363. wb_cfg->crop.y = wb_cfg->crop.y - pu_roi.y;
  364. hw_wb->ops.setup_crop(hw_wb, wb_cfg, true);
  365. } else {
  366. hw_wb->ops.setup_crop(hw_wb, wb_cfg, false);
  367. }
  368. } else if ((wb_cfg->roi.w != out_width) || (wb_cfg->roi.h != out_height)) {
  369. hw_wb->ops.setup_crop(hw_wb, wb_cfg, true);
  370. } else {
  371. hw_wb->ops.setup_crop(hw_wb, wb_cfg, false);
  372. }
  373. /* If output buffer is less than source size, align roi at top left corner */
  374. if (wb_cfg->dest.width < out_width || wb_cfg->dest.height < out_height) {
  375. wb_cfg->roi.x = 0;
  376. wb_cfg->roi.y = 0;
  377. }
  378. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), wb_cfg->crop.x, wb_cfg->crop.y,
  379. pu_roi.x, pu_roi.y, pu_roi.w, pu_roi.h);
  380. }
  381. hw_wb->ops.setup_roi(hw_wb, wb_cfg);
  382. }
  383. static void _sde_encoder_phys_wb_setup_out_cfg(struct sde_encoder_phys *phys_enc,
  384. struct sde_hw_wb_cfg *wb_cfg)
  385. {
  386. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  387. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  388. SDE_DEBUG("[enc:%d wb:%d] [fb_offset:%8.8x,%8.8x,%8.8x,%8.8x], fb_sec:%d\n",
  389. DRMID(phys_enc->parent), WBID(wb_enc), wb_cfg->dest.plane_addr[0],
  390. wb_cfg->dest.plane_addr[1], wb_cfg->dest.plane_addr[2],
  391. wb_cfg->dest.plane_addr[3], wb_cfg->is_secure);
  392. SDE_DEBUG("[fb_stride:%8.8x,%8.8x,%8.8x,%8.8x]\n", wb_cfg->dest.plane_pitch[0],
  393. wb_cfg->dest.plane_pitch[1], wb_cfg->dest.plane_pitch[2],
  394. wb_cfg->dest.plane_pitch[3]);
  395. if (hw_wb->ops.setup_outformat)
  396. hw_wb->ops.setup_outformat(hw_wb, wb_cfg);
  397. if (hw_wb->ops.setup_outaddress) {
  398. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc),
  399. wb_cfg->dest.width, wb_cfg->dest.height,
  400. wb_cfg->dest.plane_addr[0], wb_cfg->dest.plane_size[0],
  401. wb_cfg->dest.plane_addr[1], wb_cfg->dest.plane_size[1],
  402. wb_cfg->dest.plane_addr[2], wb_cfg->dest.plane_size[2],
  403. wb_cfg->dest.plane_addr[3], wb_cfg->dest.plane_size[3],
  404. wb_cfg->roi.x, wb_cfg->roi.y, wb_cfg->roi.w, wb_cfg->roi.h);
  405. hw_wb->ops.setup_outaddress(hw_wb, wb_cfg);
  406. }
  407. }
  408. /**
  409. * sde_encoder_phys_wb_setup_fb - setup output framebuffer
  410. * @phys_enc: Pointer to physical encoder
  411. * @fb: Pointer to output framebuffer
  412. * @wb_roi: Pointer to output region of interest
  413. */
  414. static void sde_encoder_phys_wb_setup_fb(struct sde_encoder_phys *phys_enc,
  415. struct drm_framebuffer *fb, struct sde_rect *wb_roi, u32 out_width, u32 out_height)
  416. {
  417. struct sde_encoder_phys_wb *wb_enc;
  418. struct sde_hw_wb *hw_wb;
  419. struct sde_hw_wb_cfg *wb_cfg;
  420. const struct msm_format *format;
  421. enum sde_wb_rot_type rotation_type;
  422. struct msm_gem_address_space *aspace;
  423. u32 fb_mode;
  424. int ret;
  425. if (!phys_enc || !phys_enc->sde_kms || !phys_enc->sde_kms->catalog ||
  426. !phys_enc->connector) {
  427. SDE_ERROR("invalid encoder\n");
  428. return;
  429. }
  430. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  431. hw_wb = wb_enc->hw_wb;
  432. wb_cfg = &wb_enc->wb_cfg;
  433. memset(wb_cfg, 0, sizeof(struct sde_hw_wb_cfg));
  434. wb_cfg->intf_mode = phys_enc->intf_mode;
  435. fb_mode = sde_connector_get_property(phys_enc->connector->state,
  436. CONNECTOR_PROP_FB_TRANSLATION_MODE);
  437. if (phys_enc->enable_state == SDE_ENC_DISABLING)
  438. wb_cfg->is_secure = false;
  439. else
  440. wb_cfg->is_secure = (fb_mode == SDE_DRM_FB_SEC) ? true : false;
  441. aspace = (wb_cfg->is_secure) ? wb_enc->aspace[SDE_IOMMU_DOMAIN_SECURE] :
  442. wb_enc->aspace[SDE_IOMMU_DOMAIN_UNSECURE];
  443. ret = msm_framebuffer_prepare(fb, aspace);
  444. if (ret) {
  445. SDE_ERROR("[enc:%d wb:%d] prep fb failed; fb_sec:%d, ret:%d\n",
  446. DRMID(phys_enc->parent), WBID(wb_enc), wb_cfg->is_secure, ret);
  447. return;
  448. }
  449. /* cache framebuffer for cleanup in writeback done */
  450. wb_enc->wb_fb = fb;
  451. wb_enc->wb_aspace = aspace;
  452. drm_framebuffer_get(fb);
  453. format = msm_framebuffer_format(fb);
  454. if (!format) {
  455. SDE_DEBUG("[enc:%d wb:%d] invalid fb fmt\n", DRMID(phys_enc->parent), WBID(wb_enc));
  456. return;
  457. }
  458. rotation_type = sde_connector_get_property(phys_enc->connector->state,
  459. CONNECTOR_PROP_WB_ROT_TYPE);
  460. wb_cfg->rotate_90 = (rotation_type != WB_ROT_NONE);
  461. SDE_DEBUG("[enc:%d wb:%d] conn:%d rotation_type:%d format %4.4s and modifier 0x%llX\n",
  462. DRMID(phys_enc->parent), WBID(wb_enc), DRMID(phys_enc->connector),
  463. rotation_type, (char *)&format->pixel_format, fb->modifier);
  464. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), rotation_type, out_width, out_height,
  465. fb->width, fb->height);
  466. wb_cfg->dest.format = sde_get_sde_format_ext(format->pixel_format, fb->modifier);
  467. if (!wb_cfg->dest.format) {
  468. /* this error should be detected during atomic_check */
  469. SDE_ERROR("[enc:%d wb:%d] failed to get format:%x\n",
  470. DRMID(phys_enc->parent), WBID(wb_enc), format->pixel_format);
  471. return;
  472. }
  473. wb_cfg->roi = *wb_roi;
  474. ret = sde_format_populate_layout(aspace, fb, &wb_cfg->dest);
  475. if (ret) {
  476. SDE_DEBUG("[enc:%d wb:%d] failed to populate layout; ret:%d\n",
  477. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  478. return;
  479. }
  480. wb_cfg->dest.width = fb->width;
  481. wb_cfg->dest.height = fb->height;
  482. wb_cfg->dest.num_planes = wb_cfg->dest.format->num_planes;
  483. if ((wb_cfg->dest.format->fetch_planes == SDE_PLANE_PLANAR) &&
  484. (wb_cfg->dest.format->element[0] == C1_B_Cb))
  485. swap(wb_cfg->dest.plane_addr[1], wb_cfg->dest.plane_addr[2]);
  486. _sde_encoder_phys_wb_setup_roi(phys_enc, wb_cfg, out_width, out_height);
  487. _sde_encoder_phys_wb_setup_cdp(phys_enc, wb_cfg);
  488. _sde_encoder_phys_wb_setup_out_cfg(phys_enc, wb_cfg);
  489. }
  490. static void _sde_encoder_phys_wb_setup_cwb(struct sde_encoder_phys *phys_enc, bool enable)
  491. {
  492. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  493. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  494. struct sde_hw_wb_cfg *wb_cfg = &wb_enc->wb_cfg;
  495. struct sde_hw_ctl *hw_ctl = phys_enc->hw_ctl;
  496. struct sde_crtc *crtc = to_sde_crtc(wb_enc->crtc);
  497. struct sde_hw_pingpong *hw_pp = phys_enc->hw_pp;
  498. struct sde_hw_dnsc_blur *hw_dnsc_blur = phys_enc->hw_dnsc_blur;
  499. bool need_merge = (crtc->num_mixers > 1);
  500. enum sde_dcwb;
  501. int i = 0;
  502. const int num_wb = 1;
  503. if (!phys_enc->in_clone_mode) {
  504. SDE_DEBUG("[enc:%d wb:%d] not in CWB mode. early return\n",
  505. DRMID(phys_enc->parent), WBID(wb_enc));
  506. return;
  507. }
  508. if (!hw_pp || !hw_ctl || !hw_wb || hw_pp->idx >= PINGPONG_MAX) {
  509. SDE_ERROR("[enc:%d wb:%d] invalid hw resources - return\n",
  510. DRMID(phys_enc->parent), WBID(wb_enc));
  511. return;
  512. }
  513. if (crtc->num_mixers > MAX_CWB_PER_CTL_V1) {
  514. SDE_ERROR("[enc:%d wb:%d] %d LM %d CWB case not supported\n",
  515. DRMID(phys_enc->parent), WBID(wb_enc),
  516. crtc->num_mixers, MAX_CWB_PER_CTL_V1);
  517. return;
  518. }
  519. hw_ctl = crtc->mixers[0].hw_ctl;
  520. if (hw_ctl && hw_ctl->ops.setup_intf_cfg_v1 &&
  521. (test_bit(SDE_WB_CWB_CTRL, &hw_wb->caps->features) ||
  522. test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features))) {
  523. struct sde_hw_intf_cfg_v1 intf_cfg = { 0, };
  524. intf_cfg.wb_count = num_wb;
  525. intf_cfg.wb[0] = hw_wb->idx;
  526. for (i = 0; i < crtc->num_mixers; i++) {
  527. if (test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features))
  528. intf_cfg.cwb[intf_cfg.cwb_count++] =
  529. (enum sde_cwb)(hw_pp->dcwb_idx + i);
  530. else
  531. intf_cfg.cwb[intf_cfg.cwb_count++] = (enum sde_cwb)(hw_pp->idx + i);
  532. }
  533. if (hw_pp->merge_3d && (intf_cfg.merge_3d_count <
  534. MAX_MERGE_3D_PER_CTL_V1) && need_merge)
  535. intf_cfg.merge_3d[intf_cfg.merge_3d_count++] = hw_pp->merge_3d->idx;
  536. if (hw_dnsc_blur)
  537. intf_cfg.dnsc_blur[intf_cfg.dnsc_blur_count++] = hw_dnsc_blur->idx;
  538. if (hw_pp->ops.setup_3d_mode)
  539. hw_pp->ops.setup_3d_mode(hw_pp, (enable && need_merge) ?
  540. BLEND_3D_H_ROW_INT : 0);
  541. if ((hw_wb->ops.bind_pingpong_blk) &&
  542. test_bit(SDE_WB_CWB_CTRL, &hw_wb->caps->features))
  543. hw_wb->ops.bind_pingpong_blk(hw_wb, enable, hw_pp->idx);
  544. if ((hw_wb->ops.bind_dcwb_pp_blk) &&
  545. test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features))
  546. hw_wb->ops.bind_dcwb_pp_blk(hw_wb, enable, hw_pp->idx);
  547. if (hw_wb->ops.setup_crop && !enable)
  548. hw_wb->ops.setup_crop(hw_wb, wb_cfg, false);
  549. if (phys_enc->hw_dnsc_blur &&
  550. phys_enc->hw_dnsc_blur->ops.setup_dnsc_blur && !enable)
  551. phys_enc->hw_dnsc_blur->ops.setup_dnsc_blur(
  552. phys_enc->hw_dnsc_blur, NULL, 0);
  553. if (hw_ctl->ops.update_intf_cfg) {
  554. hw_ctl->ops.update_intf_cfg(hw_ctl, &intf_cfg, enable);
  555. SDE_DEBUG("[enc:%d wb:%d] in CWB/DCWB mode on CTL_%d PP-%d merge3d:%d\n",
  556. DRMID(phys_enc->parent), WBID(wb_enc),
  557. hw_ctl->idx - CTL_0, hw_pp->idx - PINGPONG_0,
  558. hw_pp->merge_3d ? hw_pp->merge_3d->idx - MERGE_3D_0 : -1);
  559. }
  560. } else {
  561. struct sde_hw_intf_cfg *intf_cfg = &phys_enc->intf_cfg;
  562. memset(intf_cfg, 0, sizeof(struct sde_hw_intf_cfg));
  563. intf_cfg->intf = SDE_NONE;
  564. intf_cfg->wb = hw_wb->idx;
  565. if (hw_ctl && hw_ctl->ops.update_wb_cfg) {
  566. hw_ctl->ops.update_wb_cfg(hw_ctl, intf_cfg, enable);
  567. SDE_DEBUG("[enc:%d wb:%d] in CWB/DCWB mode adding WB for CTL_%d\n",
  568. DRMID(phys_enc->parent), WBID(wb_enc), hw_ctl->idx - CTL_0);
  569. }
  570. }
  571. }
  572. static void _sde_encoder_phys_wb_setup_ctl(struct sde_encoder_phys *phys_enc,
  573. const struct sde_format *format)
  574. {
  575. struct sde_encoder_phys_wb *wb_enc;
  576. struct sde_hw_wb *hw_wb;
  577. struct sde_hw_cdm *hw_cdm;
  578. struct sde_hw_dnsc_blur *hw_dnsc_blur;
  579. struct sde_hw_ctl *ctl;
  580. const int num_wb = 1;
  581. if (!phys_enc) {
  582. SDE_ERROR("invalid encoder\n");
  583. return;
  584. }
  585. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  586. if (phys_enc->in_clone_mode) {
  587. SDE_DEBUG("[enc:%d wb:%d] in CWB mode. early return\n",
  588. DRMID(phys_enc->parent), WBID(wb_enc));
  589. return;
  590. }
  591. hw_wb = wb_enc->hw_wb;
  592. hw_cdm = phys_enc->hw_cdm;
  593. hw_dnsc_blur = phys_enc->hw_dnsc_blur;
  594. ctl = phys_enc->hw_ctl;
  595. if (test_bit(SDE_CTL_ACTIVE_CFG, &ctl->caps->features) &&
  596. (phys_enc->hw_ctl && phys_enc->hw_ctl->ops.setup_intf_cfg_v1)) {
  597. struct sde_hw_intf_cfg_v1 *intf_cfg_v1 = &phys_enc->intf_cfg_v1;
  598. struct sde_hw_pingpong *hw_pp = phys_enc->hw_pp;
  599. enum sde_3d_blend_mode mode_3d;
  600. memset(intf_cfg_v1, 0, sizeof(struct sde_hw_intf_cfg_v1));
  601. mode_3d = sde_encoder_helper_get_3d_blend_mode(phys_enc);
  602. intf_cfg_v1->intf_count = SDE_NONE;
  603. intf_cfg_v1->wb_count = num_wb;
  604. intf_cfg_v1->wb[0] = hw_wb->idx;
  605. if (SDE_FORMAT_IS_YUV(format)) {
  606. intf_cfg_v1->cdm_count = num_wb;
  607. intf_cfg_v1->cdm[0] = hw_cdm->idx;
  608. }
  609. if (hw_dnsc_blur) {
  610. intf_cfg_v1->dnsc_blur_count = num_wb;
  611. intf_cfg_v1->dnsc_blur[0] = hw_dnsc_blur->idx;
  612. }
  613. if (mode_3d && hw_pp && hw_pp->merge_3d &&
  614. intf_cfg_v1->merge_3d_count < MAX_MERGE_3D_PER_CTL_V1)
  615. intf_cfg_v1->merge_3d[intf_cfg_v1->merge_3d_count++] = hw_pp->merge_3d->idx;
  616. if (hw_pp && hw_pp->ops.setup_3d_mode)
  617. hw_pp->ops.setup_3d_mode(hw_pp, mode_3d);
  618. /* setup which pp blk will connect to this wb */
  619. if (hw_pp && hw_wb->ops.bind_pingpong_blk)
  620. hw_wb->ops.bind_pingpong_blk(hw_wb, true, hw_pp->idx);
  621. phys_enc->hw_ctl->ops.setup_intf_cfg_v1(phys_enc->hw_ctl, intf_cfg_v1);
  622. } else if (phys_enc->hw_ctl && phys_enc->hw_ctl->ops.setup_intf_cfg) {
  623. struct sde_hw_intf_cfg *intf_cfg = &phys_enc->intf_cfg;
  624. memset(intf_cfg, 0, sizeof(struct sde_hw_intf_cfg));
  625. intf_cfg->intf = SDE_NONE;
  626. intf_cfg->wb = hw_wb->idx;
  627. intf_cfg->mode_3d = sde_encoder_helper_get_3d_blend_mode(phys_enc);
  628. phys_enc->hw_ctl->ops.setup_intf_cfg(phys_enc->hw_ctl, intf_cfg);
  629. }
  630. }
  631. static void _sde_enc_phys_wb_detect_cwb(struct sde_encoder_phys *phys_enc,
  632. struct drm_crtc_state *crtc_state)
  633. {
  634. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  635. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  636. const struct sde_wb_cfg *wb_cfg = wb_enc->hw_wb->caps;
  637. u32 encoder_mask = 0;
  638. /* Check if WB has CWB support */
  639. if ((wb_cfg->features & BIT(SDE_WB_HAS_CWB)) || (wb_cfg->features & BIT(SDE_WB_HAS_DCWB))) {
  640. encoder_mask = crtc_state->encoder_mask;
  641. encoder_mask &= ~drm_encoder_mask(phys_enc->parent);
  642. }
  643. cstate->cwb_enc_mask = encoder_mask ? drm_encoder_mask(phys_enc->parent) : 0;
  644. SDE_DEBUG("[enc:%d wb:%d] detect CWB - status:%d, phys state:%d in_clone_mode:%d\n",
  645. DRMID(phys_enc->parent), WBID(wb_enc), cstate->cwb_enc_mask,
  646. phys_enc->enable_state, phys_enc->in_clone_mode);
  647. }
  648. static int _sde_enc_phys_wb_validate_dnsc_blur_filter(
  649. struct sde_dnsc_blur_filter_info *filter_info, u32 src, u32 dst)
  650. {
  651. u32 dnsc_ratio;
  652. if (!src || !dst || (src < dst)) {
  653. SDE_ERROR("invalid dnsc_blur src:%u, dst:%u\n", src, dst);
  654. return -EINVAL;
  655. }
  656. dnsc_ratio = DIV_ROUND_UP(src, dst);
  657. if ((src < filter_info->src_min) || (src > filter_info->src_max)
  658. || (dst < filter_info->dst_min) || (dst > filter_info->dst_max)) {
  659. SDE_ERROR(
  660. "invalid dnsc_blur size, fil:%d, src/dst:%u/%u, [min/max-src:%u/%u, dst:%u/%u]\n",
  661. filter_info->filter, src, dst, filter_info->src_min,
  662. filter_info->src_max, filter_info->dst_min, filter_info->dst_max);
  663. return -EINVAL;
  664. } else if ((dnsc_ratio < filter_info->min_ratio)
  665. || (dnsc_ratio > filter_info->max_ratio)) {
  666. SDE_ERROR(
  667. "invalid dnsc_blur ratio, fil:%d, src/dst:%u/%u, ratio:%u, ratio-min/max:%u/%u\n",
  668. filter_info->filter, src, dst, dnsc_ratio,
  669. filter_info->min_ratio, filter_info->max_ratio);
  670. return -EINVAL;
  671. }
  672. return 0;
  673. }
  674. static int _sde_enc_phys_wb_validate_dnsc_blur_filters(struct drm_crtc_state *crtc_state,
  675. struct drm_connector_state *conn_state)
  676. {
  677. struct sde_connector_state *sde_conn_state = to_sde_connector_state(conn_state);
  678. struct sde_dnsc_blur_filter_info *filter_info;
  679. struct sde_drm_dnsc_blur_cfg *cfg;
  680. struct sde_kms *sde_kms;
  681. int ret = 0, i, j;
  682. sde_kms = sde_connector_get_kms(conn_state->connector);
  683. if (!sde_kms) {
  684. SDE_ERROR("invalid kms\n");
  685. return -EINVAL;
  686. }
  687. for (i = 0; i < sde_conn_state->dnsc_blur_count; i++) {
  688. cfg = &sde_conn_state->dnsc_blur_cfg[i];
  689. for (j = 0; j < sde_kms->catalog->dnsc_blur_filter_count; j++) {
  690. filter_info = &sde_kms->catalog->dnsc_blur_filters[i];
  691. if (cfg->flags_h == filter_info->filter) {
  692. ret = _sde_enc_phys_wb_validate_dnsc_blur_filter(filter_info,
  693. cfg->src_width, cfg->dst_width);
  694. if (ret)
  695. break;
  696. }
  697. if (cfg->flags_v == filter_info->filter) {
  698. ret = _sde_enc_phys_wb_validate_dnsc_blur_filter(filter_info,
  699. cfg->src_height, cfg->dst_height);
  700. if (ret)
  701. break;
  702. }
  703. }
  704. }
  705. return ret;
  706. }
  707. static int _sde_enc_phys_wb_validate_dnsc_blur_ds(struct drm_crtc_state *crtc_state,
  708. struct drm_connector_state *conn_state, const struct sde_format *fmt,
  709. struct sde_rect *wb_roi)
  710. {
  711. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  712. const struct drm_display_mode *mode = &crtc_state->mode;
  713. struct sde_io_res ds_res = {0, }, dnsc_blur_res = {0, };
  714. enum sde_wb_rot_type rotation_type;
  715. u32 ds_tap_pt = sde_crtc_get_property(cstate, CRTC_PROP_CAPTURE_OUTPUT);
  716. sde_crtc_get_ds_io_res(crtc_state, &ds_res);
  717. sde_connector_get_dnsc_blur_io_res(conn_state, &dnsc_blur_res);
  718. rotation_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_ROT_TYPE);
  719. /* wb_roi should match with mode w/h if none of these features are enabled */
  720. if ((rotation_type == WB_ROT_NONE) &&
  721. (!ds_res.enabled && !dnsc_blur_res.enabled && !cstate->cwb_enc_mask)
  722. && ((wb_roi->w && (wb_roi->w != mode->hdisplay))
  723. || (wb_roi->h && (wb_roi->h != mode->vdisplay)))) {
  724. SDE_ERROR("invalid wb-roi {%u,%u,%u,%u} mode:%ux%u\n",
  725. wb_roi->x, wb_roi->y, wb_roi->w, wb_roi->h,
  726. mode->hdisplay, mode->vdisplay);
  727. return -EINVAL;
  728. }
  729. if (!dnsc_blur_res.enabled)
  730. return 0;
  731. if (!dnsc_blur_res.src_w || !dnsc_blur_res.src_h
  732. || !dnsc_blur_res.dst_w || !dnsc_blur_res.dst_h
  733. || (dnsc_blur_res.src_w < dnsc_blur_res.dst_w)
  734. || (dnsc_blur_res.src_h < dnsc_blur_res.dst_h)) {
  735. SDE_ERROR("invalid dnsc_blur cfg src:%ux%u dst:%ux%u\n",
  736. dnsc_blur_res.src_w, dnsc_blur_res.src_h,
  737. dnsc_blur_res.dst_w, dnsc_blur_res.dst_h);
  738. return -EINVAL;
  739. } else if (ds_res.enabled && (ds_tap_pt == CAPTURE_DSPP_OUT)
  740. && ((ds_res.dst_w != dnsc_blur_res.src_w)
  741. || (ds_res.dst_h != dnsc_blur_res.src_h))) {
  742. SDE_ERROR("invalid DSPP OUT cfg: ds dst:%ux%u dnsc_blur src:%ux%u\n",
  743. ds_res.dst_w, ds_res.dst_h,
  744. dnsc_blur_res.src_w, dnsc_blur_res.src_h);
  745. return -EINVAL;
  746. } else if (ds_res.enabled && (ds_tap_pt == CAPTURE_MIXER_OUT)
  747. && ((ds_res.src_w != dnsc_blur_res.src_w)
  748. || (ds_res.src_h != dnsc_blur_res.src_h))) {
  749. SDE_ERROR("invalid MIXER OUT cfg: ds src:%ux%u dnsc_blur src:%ux%u\n",
  750. ds_res.dst_w, ds_res.dst_h,
  751. dnsc_blur_res.src_w, dnsc_blur_res.src_h);
  752. return -EINVAL;
  753. } else if (cstate->user_roi_list.num_rects) {
  754. SDE_ERROR("PU with dnsc_blur not supported\n");
  755. return -EINVAL;
  756. } else if (SDE_FORMAT_IS_YUV(fmt)) {
  757. SDE_ERROR("YUV output not supported with dnsc_blur\n");
  758. return -EINVAL;
  759. } else if ((rotation_type != WB_ROT_NONE) &&
  760. ((wb_roi->w && (wb_roi->w != dnsc_blur_res.dst_h)) ||
  761. (wb_roi->h && (wb_roi->h != dnsc_blur_res.dst_w)))) {
  762. SDE_ERROR("invalid WB ROI for dnsc and rotate, roi:{%d,%d,%d,%d}, dnsc dst:%ux%u\n",
  763. wb_roi->x, wb_roi->y, wb_roi->w, wb_roi->h,
  764. dnsc_blur_res.dst_w, dnsc_blur_res.dst_h);
  765. return -EINVAL;
  766. } else if ((rotation_type == WB_ROT_NONE) &&
  767. ((wb_roi->w && (wb_roi->w != dnsc_blur_res.dst_w)) ||
  768. (wb_roi->h && (wb_roi->h != dnsc_blur_res.dst_h)))) {
  769. SDE_ERROR("invalid WB ROI with dnsc_blur, roi:{%d,%d,%d,%d}, dnsc_blur dst:%ux%u\n",
  770. wb_roi->x, wb_roi->y, wb_roi->w, wb_roi->h,
  771. dnsc_blur_res.dst_w, dnsc_blur_res.dst_h);
  772. return -EINVAL;
  773. }
  774. return _sde_enc_phys_wb_validate_dnsc_blur_filters(crtc_state, conn_state);
  775. }
  776. static int _sde_enc_phys_wb_validate_cwb(struct sde_encoder_phys *phys_enc,
  777. struct drm_crtc_state *crtc_state,
  778. struct drm_connector_state *conn_state)
  779. {
  780. struct drm_framebuffer *fb;
  781. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  782. struct sde_rect wb_roi = {0,}, pu_roi = {0,};
  783. u32 out_width = 0, out_height = 0;
  784. const struct sde_format *fmt;
  785. int num_lm, prog_line, ret = 0;
  786. fb = sde_wb_connector_state_get_output_fb(conn_state);
  787. if (!fb) {
  788. SDE_DEBUG("no output framebuffer\n");
  789. return 0;
  790. }
  791. num_lm = sde_crtc_get_num_datapath(crtc_state->crtc, conn_state->connector, crtc_state);
  792. if (num_lm > MAX_CWB_PER_CTL_V1) {
  793. SDE_ERROR("%d LM %d CWB case not supported\n", num_lm, MAX_CWB_PER_CTL_V1);
  794. return -EINVAL;
  795. }
  796. fmt = sde_get_sde_format_ext(fb->format->format, fb->modifier);
  797. if (!fmt) {
  798. SDE_ERROR("unsupported output pixel format:%x\n", fb->format->format);
  799. return -EINVAL;
  800. }
  801. ret = sde_wb_connector_state_get_output_roi(conn_state, &wb_roi);
  802. if (ret) {
  803. SDE_ERROR("failed to get roi %d\n", ret);
  804. return ret;
  805. }
  806. if (!wb_roi.w || !wb_roi.h) {
  807. SDE_ERROR("cwb roi is not set wxh:%dx%d\n", wb_roi.w, wb_roi.h);
  808. return -EINVAL;
  809. }
  810. prog_line = sde_connector_get_property(conn_state, CONNECTOR_PROP_EARLY_FENCE_LINE);
  811. if (prog_line) {
  812. SDE_ERROR("early fence not supported with CWB, prog_line:%d\n", prog_line);
  813. return -EINVAL;
  814. }
  815. /*
  816. * 1) No DS case: same restrictions for LM & DSSPP tap point
  817. * a) wb-roi should be inside FB
  818. * b) mode resolution & wb-roi should be same
  819. * 2) With DS case: restrictions would change based on tap point
  820. * 2.1) LM Tap Point:
  821. * a) wb-roi should be inside FB
  822. * b) wb-roi should be same as crtc-LM bounds
  823. * 2.2) DSPP Tap point: same as No DS case
  824. * a) wb-roi should be inside FB
  825. * b) mode resolution & wb-roi should be same
  826. * 3) With DNSC_BLUR case:
  827. * a) wb-roi should be inside FB
  828. * b) mode resolution and wb-roi should be same
  829. * 4) Partial Update case: additional stride check
  830. * a) cwb roi should be inside PU region or FB
  831. * b) cropping is only allowed for fully sampled data
  832. * c) add check for stride and QOS setting by 256B
  833. */
  834. _sde_enc_phys_wb_get_out_resolution(crtc_state, conn_state, &out_width, &out_height);
  835. if (SDE_FORMAT_IS_YUV(fmt) && ((wb_roi.w != out_width) || (wb_roi.h != out_height))) {
  836. SDE_ERROR("invalid wb roi[%dx%d] out[%dx%d] fmt:%x\n",
  837. wb_roi.w, wb_roi.h, out_width, out_height, fmt->base.pixel_format);
  838. return -EINVAL;
  839. }
  840. if ((wb_roi.w > out_width) || (wb_roi.h > out_height)) {
  841. SDE_ERROR("invalid wb roi[%dx%d] out[%dx%d]\n",
  842. wb_roi.w, wb_roi.h, out_width, out_height);
  843. return -EINVAL;
  844. }
  845. /*
  846. * If output size is equal to input size ensure wb_roi with x and y offset
  847. * will be within buffer. If output size is smaller, only width and height are taken
  848. * into consideration as output region will begin at top left corner
  849. */
  850. if ((fb->width == out_width && fb->height == out_height) &&
  851. (((wb_roi.x + wb_roi.w) > fb->width)
  852. || ((wb_roi.y + wb_roi.h) > fb->height))) {
  853. SDE_ERROR("invalid wb roi[%d,%d,%d,%d] fb[%dx%d] out[%dx%d]\n",
  854. wb_roi.x, wb_roi.y, wb_roi.w, wb_roi.h, fb->width, fb->height,
  855. out_width, out_height);
  856. return -EINVAL;
  857. } else if ((fb->width < out_width || fb->height < out_height) &&
  858. ((wb_roi.w > fb->width || wb_roi.h > fb->height))) {
  859. SDE_ERROR("invalid wb roi[%d,%d,%d,%d] fb[%dx%d] out[%dx%d]\n",
  860. wb_roi.x, wb_roi.y, wb_roi.w, wb_roi.h, fb->width, fb->height,
  861. out_width, out_height);
  862. return -EINVAL;
  863. }
  864. /* validate wb roi against pu rect */
  865. if (cstate->user_roi_list.num_rects) {
  866. sde_kms_rect_merge_rectangles(&cstate->user_roi_list, &pu_roi);
  867. if (wb_roi.w > pu_roi.w || wb_roi.h > pu_roi.h) {
  868. SDE_ERROR("invalid wb roi with pu [%dx%d vs %dx%d]\n",
  869. wb_roi.w, wb_roi.h, pu_roi.w, pu_roi.h);
  870. return -EINVAL;
  871. }
  872. }
  873. return ret;
  874. }
  875. static int _sde_encoder_phys_wb_validate_rotation(struct sde_encoder_phys *phys_enc,
  876. struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state)
  877. {
  878. enum sde_wb_rot_type rotation_type;
  879. int ret = 0;
  880. u32 src_w, src_h;
  881. u32 bytes_per_clk;
  882. struct sde_rect wb_src, wb_roi = {0,};
  883. struct sde_io_res dnsc_res = {0,};
  884. const struct sde_rect *crtc_roi = NULL;
  885. struct drm_display_mode *mode;
  886. enum sde_wb_usage_type usage_type;
  887. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  888. rotation_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_ROT_TYPE);
  889. if (rotation_type == WB_ROT_NONE)
  890. return ret;
  891. usage_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_USAGE_TYPE);
  892. if (usage_type != WB_USAGE_ROT) {
  893. SDE_ERROR("[enc:%d wb:%d] invalid WB usage_ype:%d for rotation_type:%d\n",
  894. DRMID(phys_enc->parent), WBID(wb_enc), usage_type, rotation_type);
  895. return -EINVAL;
  896. }
  897. bytes_per_clk = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_ROT_BYTES_PER_CLK);
  898. if (!bytes_per_clk) {
  899. SDE_ERROR("[enc:%d wb:%d] WB output bytes per XO clock is must for rotation\n",
  900. DRMID(phys_enc->parent), WBID(wb_enc));
  901. return -EINVAL;
  902. }
  903. ret = sde_wb_connector_state_get_output_roi(conn_state, &wb_roi);
  904. if (ret) {
  905. SDE_ERROR("[enc:%d wb:%d] failed to get WB output roi, ret:%d\n",
  906. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  907. return ret;
  908. }
  909. sde_crtc_get_crtc_roi(crtc_state, &crtc_roi);
  910. if (!crtc_roi) {
  911. SDE_ERROR("[enc:%d wb:%d] could not get crtc roi\n",
  912. DRMID(phys_enc->parent), WBID(wb_enc));
  913. return -EINVAL;
  914. } else if (!sde_kms_rect_is_null(crtc_roi)) {
  915. SDE_ERROR("[enc:%d wb:%d] not supporting pu scenario on wb\n",
  916. DRMID(phys_enc->parent), WBID(wb_enc));
  917. return -EINVAL;
  918. }
  919. mode = &crtc_state->mode;
  920. sde_crtc_get_resolution(crtc_state->crtc, crtc_state, mode, &src_w, &src_h);
  921. if (!src_w || !src_h) {
  922. SDE_ERROR("[enc:%d wb:%d] invalid wb input dimensions src_w:%d src_h:%d\n",
  923. DRMID(phys_enc->parent), WBID(wb_enc), src_w, src_h);
  924. return -EINVAL;
  925. }
  926. sde_connector_get_dnsc_blur_io_res(conn_state, &dnsc_res);
  927. wb_src.w = dnsc_res.enabled ? dnsc_res.dst_w : src_w;
  928. wb_src.h = dnsc_res.enabled ? dnsc_res.dst_h : src_h;
  929. SDE_DEBUG("[enc:%d wb:%d] wb_src=[%dx%d] dnsc_dst=[%dx%d] wb_roi=[%dx%d]\n",
  930. DRMID(phys_enc->parent), WBID(wb_enc), wb_src.w, wb_src.h,
  931. dnsc_res.dst_w, dnsc_res.dst_h, wb_roi.w, wb_roi.h);
  932. if (((wb_src.w != wb_roi.h) || (wb_src.h != wb_roi.w))) {
  933. SDE_ERROR("[enc:%d wb:%d] invalid dimension for rotation src:%dx%d vs out:%dx%d\n",
  934. DRMID(phys_enc->parent), WBID(wb_enc), wb_src.w, wb_src.h,
  935. wb_roi.w, wb_roi.h);
  936. return -EINVAL;
  937. } else if ((wb_roi.x % MINI_TILE_W) || (wb_roi.y % MINI_TILE_H)) {
  938. SDE_ERROR("[enc:%d wb:%d] unaligned x,y offsets for rotation:%d x:%d y:%d\n",
  939. DRMID(phys_enc->parent), WBID(wb_enc), rotation_type,
  940. wb_roi.x, wb_roi.y);
  941. return -EINVAL;
  942. } else if ((rotation_type == WB_ROT_JOB1) && (wb_roi.h % MINI_TILE_H)) {
  943. SDE_ERROR("[enc:%d wb:%d] job1 rotation height:%d is not tile aligned\n",
  944. DRMID(phys_enc->parent), WBID(wb_enc), wb_roi.h);
  945. return -EINVAL;
  946. } else if (wb_src.w > SDE_WB_ROT_MAX_SRCW || wb_src.h > SDE_WB_ROT_MAX_SRCH) {
  947. SDE_ERROR("[enc:%d wb:%d] rotate limit exceeded srcw:[%d vs %d], srch:[%d vs %d]\n",
  948. DRMID(phys_enc->parent), WBID(wb_enc), wb_src.w, SDE_WB_ROT_MAX_SRCW,
  949. wb_src.h, SDE_WB_ROT_MAX_SRCH);
  950. return -EINVAL;
  951. }
  952. return ret;
  953. }
  954. static int _sde_encoder_phys_wb_validate_output_fmt(struct sde_encoder_phys *phys_enc,
  955. struct drm_framebuffer *fb, enum sde_wb_rot_type rotation_type)
  956. {
  957. int ret = 0;
  958. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  959. const struct sde_format *fmt;
  960. const struct sde_format_extended *format_list;
  961. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  962. const struct sde_wb_cfg *wb_cfg = hw_wb->caps;
  963. struct sde_kms *sde_kms = phys_enc->sde_kms;
  964. fmt = sde_get_sde_format_ext(fb->format->format, fb->modifier);
  965. if (!fmt) {
  966. SDE_ERROR("[enc:%d wb:%d] invalid output pixel format:0x%x mod:0x%x\n",
  967. DRMID(phys_enc->parent), WBID(wb_enc),
  968. fb->format->format, fb->modifier);
  969. return -EINVAL;
  970. }
  971. /* find if sde format is listed as supported format on WB */
  972. format_list = (rotation_type != WB_ROT_NONE) ?
  973. wb_cfg->rot_format_list : wb_cfg->format_list;
  974. ret = sde_format_validate_fmt(&sde_kms->base, fmt, format_list);
  975. if (ret) {
  976. SDE_ERROR("[enc:%d wb:%d] unsupported format for wb rotate:%d fmt:0x%x mod:0x%x\n",
  977. DRMID(phys_enc->parent), WBID(wb_enc), rotation_type,
  978. fb->format->format, fb->modifier);
  979. return ret;
  980. } else if (fmt->chroma_sample == SDE_CHROMA_H2V1 || fmt->chroma_sample == SDE_CHROMA_H1V2) {
  981. SDE_ERROR("[enc:%d wb:%d] invalid chroma sample type in output format:%x\n",
  982. DRMID(phys_enc->parent), WBID(wb_enc), fmt->base.pixel_format);
  983. return -EINVAL;
  984. } else if (SDE_FORMAT_IS_UBWC(fmt) && !(wb_cfg->features & BIT(SDE_WB_UBWC))) {
  985. SDE_ERROR("[enc:%d wb:%d] invalid output format:%x\n",
  986. DRMID(phys_enc->parent), WBID(wb_enc), fmt->base.pixel_format);
  987. return -EINVAL;
  988. }
  989. return ret;
  990. }
  991. /**
  992. * sde_encoder_phys_wb_atomic_check - verify and fixup given atomic states
  993. * @phys_enc: Pointer to physical encoder
  994. * @crtc_state: Pointer to CRTC atomic state
  995. * @conn_state: Pointer to connector atomic state
  996. */
  997. static int sde_encoder_phys_wb_atomic_check(struct sde_encoder_phys *phys_enc,
  998. struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state)
  999. {
  1000. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1001. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  1002. struct sde_connector_state *sde_conn_state;
  1003. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1004. const struct sde_wb_cfg *wb_cfg = hw_wb->caps;
  1005. struct drm_framebuffer *fb;
  1006. const struct sde_format *fmt;
  1007. struct sde_rect wb_roi;
  1008. u32 out_width = 0, out_height = 0;
  1009. const struct drm_display_mode *mode = &crtc_state->mode;
  1010. int rc;
  1011. bool clone_mode_curr = false;
  1012. enum sde_wb_rot_type rotation_type;
  1013. SDE_DEBUG("[enc:%d wb:%d] atomic_check:\"%s\",%d,%d]\n", DRMID(phys_enc->parent),
  1014. WBID(wb_enc), mode->name, mode->hdisplay, mode->vdisplay);
  1015. if (!conn_state || !conn_state->connector) {
  1016. SDE_ERROR("[enc:%d wb:%d] invalid connector state\n",
  1017. DRMID(phys_enc->parent), WBID(wb_enc));
  1018. return -EINVAL;
  1019. } else if (conn_state->connector->status != connector_status_connected) {
  1020. SDE_ERROR("[enc:%d wb:%d] connector not connected; ret:%d\n",
  1021. DRMID(phys_enc->parent), WBID(wb_enc), conn_state->connector->status);
  1022. return -EINVAL;
  1023. }
  1024. sde_conn_state = to_sde_connector_state(conn_state);
  1025. clone_mode_curr = phys_enc->in_clone_mode;
  1026. _sde_enc_phys_wb_detect_cwb(phys_enc, crtc_state);
  1027. if (clone_mode_curr && !cstate->cwb_enc_mask) {
  1028. SDE_ERROR("[enc:%d wb:%d] WB commit before CWB disable\n",
  1029. DRMID(phys_enc->parent), WBID(wb_enc));
  1030. return -EINVAL;
  1031. }
  1032. memset(&wb_roi, 0, sizeof(struct sde_rect));
  1033. rc = sde_wb_connector_state_get_output_roi(conn_state, &wb_roi);
  1034. if (rc) {
  1035. SDE_ERROR("[enc:%d wb:%d] failed to get roi; ret:%d\n",
  1036. DRMID(phys_enc->parent), WBID(wb_enc), rc);
  1037. return rc;
  1038. }
  1039. /* bypass check if commit with no framebuffer */
  1040. fb = sde_wb_connector_state_get_output_fb(conn_state);
  1041. if (!fb) {
  1042. SDE_ERROR("[enc:%d wb:%d] no out fb\n", DRMID(phys_enc->parent), WBID(wb_enc));
  1043. return -EINVAL;
  1044. }
  1045. rotation_type = sde_connector_get_property(conn_state, CONNECTOR_PROP_WB_ROT_TYPE);
  1046. fmt = sde_get_sde_format_ext(fb->format->format, fb->modifier);
  1047. if (!fmt) {
  1048. SDE_ERROR("[enc:%d wb:%d] invalid output pixel format:0x%x mod:0x%x\n",
  1049. DRMID(phys_enc->parent), WBID(wb_enc),
  1050. fb->format->format, fb->modifier);
  1051. return -EINVAL;
  1052. }
  1053. SDE_DEBUG("[enc:%d wb:%d] fb_id:%u, wxh:%ux%u, fb_fmt:%x,%llx, roi:{%d,%d,%d,%d}, rot:%u\n",
  1054. DRMID(phys_enc->parent), WBID(wb_enc), fb->base.id, fb->width, fb->height,
  1055. fb->format->format, fb->modifier, wb_roi.x, wb_roi.y, wb_roi.w, wb_roi.h,
  1056. rotation_type);
  1057. rc = _sde_encoder_phys_wb_validate_output_fmt(phys_enc, fb, rotation_type);
  1058. if (rc) {
  1059. SDE_ERROR("[enc:%d wb:%d] output fmt failed fb:%u fmt:0x%x mod:0x%x rot:%d",
  1060. DRMID(phys_enc->parent), WBID(wb_enc), fb->base.id,
  1061. fb->format->format, fb->modifier, rotation_type);
  1062. return rc;
  1063. }
  1064. if (SDE_FORMAT_IS_YUV(fmt) != !!phys_enc->hw_cdm)
  1065. crtc_state->mode_changed = true;
  1066. rc = _sde_enc_phys_wb_validate_dnsc_blur_ds(crtc_state, conn_state, fmt, &wb_roi);
  1067. if (rc) {
  1068. SDE_ERROR("[enc:%d wb:%d] failed dnsc_blur/ds validation; ret:%d\n",
  1069. DRMID(phys_enc->parent), WBID(wb_enc), rc);
  1070. return rc;
  1071. }
  1072. /* if in clone mode, return after cwb validation */
  1073. if (cstate->cwb_enc_mask) {
  1074. rc = _sde_enc_phys_wb_validate_cwb(phys_enc, crtc_state, conn_state);
  1075. if (rc)
  1076. SDE_ERROR("[enc:%d wb:%d] failed in cwb validation %d\n",
  1077. DRMID(phys_enc->parent), WBID(wb_enc), rc);
  1078. return rc;
  1079. }
  1080. if (rotation_type != WB_ROT_NONE) {
  1081. rc = _sde_encoder_phys_wb_validate_rotation(phys_enc, crtc_state, conn_state);
  1082. if (rc) {
  1083. SDE_ERROR("[enc:%d wb:%d] failed in WB rotation validation %d\n",
  1084. DRMID(phys_enc->parent), WBID(wb_enc), rc);
  1085. return rc;
  1086. }
  1087. }
  1088. _sde_enc_phys_wb_get_out_resolution(crtc_state, conn_state, &out_width, &out_height);
  1089. if (!wb_roi.w || !wb_roi.h) {
  1090. wb_roi.x = 0;
  1091. wb_roi.y = 0;
  1092. wb_roi.w = out_width;
  1093. wb_roi.h = out_height;
  1094. }
  1095. if ((wb_roi.x + wb_roi.w > fb->width) || (wb_roi.w > out_width)) {
  1096. SDE_ERROR("[enc:%d wb:%d] invalid roi x:%d, w:%d, fb_w:%d, mode_w:%d, out_w:%d\n",
  1097. DRMID(phys_enc->parent), WBID(wb_enc), wb_roi.x, wb_roi.w,
  1098. fb->width, mode->hdisplay, out_width);
  1099. return -EINVAL;
  1100. } else if ((wb_roi.y + wb_roi.h > fb->height) || (wb_roi.h > out_height)) {
  1101. SDE_ERROR("[enc:%d wb:%d] invalid roi y:%d, h:%d, fb_h:%d, mode_h%d, out_h:%d\n",
  1102. DRMID(phys_enc->parent), WBID(wb_enc), wb_roi.y, wb_roi.h,
  1103. fb->height, mode->vdisplay, out_height);
  1104. return -EINVAL;
  1105. } else if ((rotation_type == WB_ROT_NONE) && ((out_width > mode->hdisplay) || (out_height > mode->vdisplay))) {
  1106. SDE_ERROR("[enc:%d wb:%d] invalid o w/h o_w:%d, mode_w:%d, o_h:%d, mode_h:%d\n",
  1107. DRMID(phys_enc->parent), WBID(wb_enc), out_width, mode->hdisplay,
  1108. out_height, mode->vdisplay);
  1109. return -EINVAL;
  1110. } else if (wb_roi.w > SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg)) {
  1111. SDE_ERROR("[enc:%d wb:%d] invalid roi ubwc:%d, w:%d, maxlinewidth:%u\n",
  1112. DRMID(phys_enc->parent), WBID(wb_enc), SDE_FORMAT_IS_UBWC(fmt),
  1113. wb_roi.w, SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg));
  1114. return -EINVAL;
  1115. }
  1116. return rc;
  1117. }
  1118. static void _sde_encoder_phys_wb_setup_sys_cache(struct sde_encoder_phys *phys_enc,
  1119. struct drm_framebuffer *fb)
  1120. {
  1121. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1122. struct sde_wb_device *wb_dev = wb_enc->wb_dev;
  1123. struct drm_connector_state *state = wb_dev->connector->state;
  1124. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1125. struct sde_crtc *sde_crtc = to_sde_crtc(wb_enc->crtc);
  1126. struct sde_sc_cfg *sc_cfg;
  1127. struct sde_hw_wb_sc_cfg *cfg = &wb_enc->sc_cfg;
  1128. u32 cache_enable, cache_flag, cache_rd_type, cache_wr_type;
  1129. int i;
  1130. if (!fb) {
  1131. SDE_ERROR("invalid fb on wb %d\n", WBID(wb_enc));
  1132. return;
  1133. }
  1134. if (!hw_wb || !hw_wb->ops.setup_sys_cache) {
  1135. SDE_DEBUG("unsupported ops: setup_sys_cache WB %d\n", WBID(wb_enc));
  1136. return;
  1137. }
  1138. /*
  1139. * - use LLCC_DISP/LLCC_DISP_1 for cwb static display
  1140. * - use LLCC_DISP_WB for 2-pass composition using offline-wb
  1141. */
  1142. if (phys_enc->in_clone_mode) {
  1143. /* toggle system cache SCID between consecutive CWB writes */
  1144. if (test_bit(SDE_SYS_CACHE_DISP_1, hw_wb->catalog->sde_sys_cache_type_map)
  1145. && cfg->type == SDE_SYS_CACHE_DISP &&
  1146. !test_bit(SDE_FEATURE_SYS_CACHE_STALING,
  1147. hw_wb->catalog->features)) {
  1148. cache_wr_type = SDE_SYS_CACHE_DISP_1;
  1149. cache_rd_type = SDE_SYS_CACHE_DISP_1;
  1150. } else {
  1151. cache_wr_type = SDE_SYS_CACHE_DISP;
  1152. cache_rd_type = SDE_SYS_CACHE_DISP;
  1153. sde_core_perf_llcc_stale_frame(&sde_crtc->base, cache_wr_type);
  1154. }
  1155. } else {
  1156. cache_rd_type = SDE_SYS_CACHE_DISP_WB;
  1157. cache_wr_type = SDE_SYS_CACHE_DISP_WB;
  1158. }
  1159. sc_cfg = &hw_wb->catalog->sc_cfg[cache_wr_type];
  1160. if (!test_bit(cache_wr_type, hw_wb->catalog->sde_sys_cache_type_map)) {
  1161. SDE_DEBUG("sys cache type %d not enabled\n", cache_wr_type);
  1162. return;
  1163. }
  1164. cache_enable = sde_connector_get_property(state, CONNECTOR_PROP_CACHE_STATE);
  1165. if (!cfg->wr_en && !cache_enable)
  1166. return;
  1167. cfg->wr_en = cache_enable;
  1168. cfg->flags = SYS_CACHE_EN_FLAG | SYS_CACHE_SCID;
  1169. if (cache_enable) {
  1170. cfg->wr_scid = sc_cfg->llcc_scid;
  1171. cfg->type = cache_wr_type;
  1172. cache_flag = MSM_FB_CACHE_WRITE_EN;
  1173. } else {
  1174. cfg->wr_scid = 0x0;
  1175. cfg->type = SDE_SYS_CACHE_NONE;
  1176. cache_flag = MSM_FB_CACHE_NONE;
  1177. cache_rd_type = SDE_SYS_CACHE_NONE;
  1178. cache_wr_type = SDE_SYS_CACHE_NONE;
  1179. }
  1180. msm_framebuffer_set_cache_hint(fb, cache_flag, cache_rd_type, cache_wr_type);
  1181. /*
  1182. * avoid llcc_active reset for crtc while in clone mode as it will reset it for
  1183. * primary display as well
  1184. */
  1185. if (cache_enable) {
  1186. sde_crtc->new_perf.llcc_active[cache_wr_type] = true;
  1187. sde_crtc->new_perf.llcc_active[cache_rd_type] = true;
  1188. sde_core_perf_crtc_update_llcc(wb_enc->crtc);
  1189. } else if (!phys_enc->in_clone_mode) {
  1190. for (i = 0; i < SDE_SYS_CACHE_MAX; i++)
  1191. sde_crtc->new_perf.llcc_active[i] = false;
  1192. sde_core_perf_crtc_update_llcc(wb_enc->crtc);
  1193. }
  1194. hw_wb->ops.setup_sys_cache(hw_wb, cfg);
  1195. SDE_EVT32(WBID(wb_enc), cfg->wr_scid, cfg->flags, cfg->type, cache_enable,
  1196. phys_enc->in_clone_mode, cache_flag, cache_rd_type,
  1197. cache_wr_type, fb->base.id);
  1198. }
  1199. static void _sde_encoder_phys_wb_update_cwb_flush_helper(
  1200. struct sde_encoder_phys *phys_enc, bool enable)
  1201. {
  1202. struct sde_connector *c_conn = NULL;
  1203. struct sde_connector_state *c_state = NULL;
  1204. struct sde_hw_wb *hw_wb;
  1205. struct sde_hw_ctl *hw_ctl;
  1206. struct sde_hw_pingpong *hw_pp;
  1207. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1208. struct sde_crtc_state *crtc_state;
  1209. struct sde_crtc *crtc;
  1210. int i = 0;
  1211. int cwb_capture_mode = 0;
  1212. bool need_merge = false;
  1213. bool dspp_out = false;
  1214. enum sde_cwb cwb_idx = 0;
  1215. enum sde_cwb src_pp_idx = 0;
  1216. enum sde_dcwb dcwb_idx = 0;
  1217. size_t dither_sz = 0;
  1218. void *dither_cfg = NULL;
  1219. /* In CWB mode, program actual source master sde_hw_ctl from crtc */
  1220. crtc = to_sde_crtc(wb_enc->crtc);
  1221. hw_ctl = crtc->mixers[0].hw_ctl;
  1222. hw_pp = phys_enc->hw_pp;
  1223. hw_wb = wb_enc->hw_wb;
  1224. if (!hw_ctl || !hw_wb || !hw_pp) {
  1225. SDE_ERROR("[enc:%d wb:%d] HW resource not available for CWB\n",
  1226. DRMID(phys_enc->parent), WBID(wb_enc));
  1227. return;
  1228. }
  1229. crtc_state = to_sde_crtc_state(wb_enc->crtc->state);
  1230. cwb_capture_mode = sde_crtc_get_property(crtc_state, CRTC_PROP_CAPTURE_OUTPUT);
  1231. need_merge = (crtc->num_mixers > 1) ? true : false;
  1232. dspp_out = (cwb_capture_mode == CAPTURE_DSPP_OUT);
  1233. cwb_idx = (enum sde_cwb)hw_pp->idx;
  1234. src_pp_idx = (enum sde_cwb)crtc->mixers[0].hw_lm->idx;
  1235. if (test_bit(SDE_WB_CWB_DITHER_CTRL, &hw_wb->caps->features)) {
  1236. if (cwb_capture_mode) {
  1237. c_conn = to_sde_connector(phys_enc->connector);
  1238. c_state = to_sde_connector_state(phys_enc->connector->state);
  1239. dither_cfg = msm_property_get_blob(&c_conn->property_info,
  1240. &c_state->property_state, &dither_sz,
  1241. CONNECTOR_PROP_PP_CWB_DITHER);
  1242. SDE_DEBUG("Read cwb dither setting from blob %pK\n", dither_cfg);
  1243. } else {
  1244. /* disable case: tap is lm */
  1245. dither_cfg = NULL;
  1246. }
  1247. }
  1248. for (i = 0; i < crtc->num_mixers; i++) {
  1249. src_pp_idx = (enum sde_cwb) (src_pp_idx + i);
  1250. if (test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features)) {
  1251. dcwb_idx = hw_pp->dcwb_idx + i;
  1252. if ((test_bit(SDE_WB_CWB_DITHER_CTRL, &hw_wb->caps->features)) &&
  1253. hw_wb->ops.program_cwb_dither_ctrl){
  1254. hw_wb->ops.program_cwb_dither_ctrl(hw_wb,
  1255. dcwb_idx, dither_cfg, dither_sz, enable);
  1256. }
  1257. if (hw_wb->ops.program_dcwb_ctrl)
  1258. hw_wb->ops.program_dcwb_ctrl(hw_wb, dcwb_idx,
  1259. src_pp_idx, cwb_capture_mode, enable);
  1260. if (hw_ctl->ops.update_bitmask)
  1261. hw_ctl->ops.update_bitmask(hw_ctl,
  1262. SDE_HW_FLUSH_CWB, dcwb_idx, 1);
  1263. } else if (test_bit(SDE_WB_CWB_CTRL, &hw_wb->caps->features)) {
  1264. cwb_idx = (enum sde_cwb) (hw_pp->idx + i);
  1265. if (hw_wb->ops.program_cwb_ctrl)
  1266. hw_wb->ops.program_cwb_ctrl(hw_wb, cwb_idx,
  1267. src_pp_idx, dspp_out, enable);
  1268. if (hw_ctl->ops.update_bitmask)
  1269. hw_ctl->ops.update_bitmask(hw_ctl,
  1270. SDE_HW_FLUSH_CWB, cwb_idx, 1);
  1271. }
  1272. }
  1273. if (need_merge && hw_ctl->ops.update_bitmask && hw_pp && hw_pp->merge_3d)
  1274. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_MERGE_3D,
  1275. hw_pp->merge_3d->idx, 1);
  1276. }
  1277. static void _sde_encoder_phys_wb_update_cwb_flush(struct sde_encoder_phys *phys_enc, bool enable)
  1278. {
  1279. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1280. struct sde_hw_wb *hw_wb;
  1281. struct sde_hw_ctl *hw_ctl;
  1282. struct sde_hw_cdm *hw_cdm;
  1283. struct sde_hw_pingpong *hw_pp;
  1284. struct sde_hw_dnsc_blur *hw_dnsc_blur;
  1285. struct sde_crtc *crtc;
  1286. struct sde_crtc_state *crtc_state;
  1287. int cwb_capture_mode = 0;
  1288. enum sde_cwb cwb_idx = 0;
  1289. enum sde_dcwb dcwb_idx = 0;
  1290. enum sde_cwb src_pp_idx = 0;
  1291. bool dspp_out = false, need_merge = false;
  1292. if (!phys_enc->in_clone_mode) {
  1293. SDE_DEBUG("enc:%d, wb:%d - not in CWB mode. early return\n",
  1294. DRMID(phys_enc->parent), WBID(wb_enc));
  1295. return;
  1296. }
  1297. crtc = to_sde_crtc(wb_enc->crtc);
  1298. crtc_state = to_sde_crtc_state(wb_enc->crtc->state);
  1299. cwb_capture_mode = sde_crtc_get_property(crtc_state,
  1300. CRTC_PROP_CAPTURE_OUTPUT);
  1301. hw_pp = phys_enc->hw_pp;
  1302. hw_wb = wb_enc->hw_wb;
  1303. hw_cdm = phys_enc->hw_cdm;
  1304. hw_dnsc_blur = phys_enc->hw_dnsc_blur;
  1305. /* In CWB mode, program actual source master sde_hw_ctl from crtc */
  1306. hw_ctl = crtc->mixers[0].hw_ctl;
  1307. if (!hw_ctl || !hw_wb || !hw_pp) {
  1308. SDE_ERROR("[enc:%d wb:%d] HW resource not available for CWB\n",
  1309. DRMID(phys_enc->parent), WBID(wb_enc));
  1310. return;
  1311. }
  1312. /* treating LM idx of primary display ctl path as source ping-pong idx*/
  1313. src_pp_idx = (enum sde_cwb)crtc->mixers[0].hw_lm->idx;
  1314. cwb_idx = (enum sde_cwb)hw_pp->idx;
  1315. dspp_out = (cwb_capture_mode == CAPTURE_DSPP_OUT);
  1316. need_merge = (crtc->num_mixers > 1) ? true : false;
  1317. if (test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features)) {
  1318. dcwb_idx = hw_pp->dcwb_idx;
  1319. if ((dcwb_idx + crtc->num_mixers) > DCWB_MAX) {
  1320. SDE_ERROR("[enc:%d, wb:%d] invalid DCWB config; dcwb=%d, num_lm=%d\n",
  1321. DRMID(phys_enc->parent), WBID(wb_enc), dcwb_idx, crtc->num_mixers);
  1322. return;
  1323. }
  1324. } else {
  1325. if (src_pp_idx > CWB_0 || ((cwb_idx + crtc->num_mixers) > CWB_MAX)) {
  1326. SDE_ERROR("[enc:%d wb:%d] invalid CWB onfig; pp_idx:%d, cwb:%d, num_lm%d\n",
  1327. DRMID(phys_enc->parent), WBID(wb_enc), src_pp_idx,
  1328. dcwb_idx, crtc->num_mixers);
  1329. return;
  1330. }
  1331. }
  1332. if (hw_ctl->ops.update_bitmask)
  1333. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_WB, hw_wb->idx, 1);
  1334. if (hw_ctl->ops.update_bitmask && hw_cdm)
  1335. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_CDM, hw_cdm->idx, 1);
  1336. if (hw_ctl->ops.update_dnsc_blur_bitmask && hw_dnsc_blur)
  1337. hw_ctl->ops.update_dnsc_blur_bitmask(hw_ctl, hw_dnsc_blur->idx, 1);
  1338. if (test_bit(SDE_WB_CWB_CTRL, &hw_wb->caps->features) ||
  1339. test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features)) {
  1340. _sde_encoder_phys_wb_update_cwb_flush_helper(phys_enc, enable);
  1341. } else {
  1342. phys_enc->hw_mdptop->ops.set_cwb_ppb_cntl(phys_enc->hw_mdptop,
  1343. need_merge, dspp_out);
  1344. }
  1345. }
  1346. /**
  1347. * _sde_encoder_phys_wb_update_flush - flush hardware update
  1348. * @phys_enc: Pointer to physical encoder
  1349. */
  1350. static void _sde_encoder_phys_wb_update_flush(struct sde_encoder_phys *phys_enc)
  1351. {
  1352. struct sde_encoder_phys_wb *wb_enc;
  1353. struct sde_hw_wb *hw_wb;
  1354. struct sde_hw_ctl *hw_ctl;
  1355. struct sde_hw_cdm *hw_cdm;
  1356. struct sde_hw_pingpong *hw_pp;
  1357. struct sde_hw_dnsc_blur *hw_dnsc_blur;
  1358. struct sde_ctl_flush_cfg pending_flush = {0,};
  1359. if (!phys_enc)
  1360. return;
  1361. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1362. hw_wb = wb_enc->hw_wb;
  1363. hw_cdm = phys_enc->hw_cdm;
  1364. hw_pp = phys_enc->hw_pp;
  1365. hw_ctl = phys_enc->hw_ctl;
  1366. hw_dnsc_blur = phys_enc->hw_dnsc_blur;
  1367. SDE_DEBUG("[enc:%d wb:%d]\n", DRMID(phys_enc->parent), WBID(wb_enc));
  1368. if (phys_enc->in_clone_mode) {
  1369. SDE_DEBUG("[enc:%d wb:%d] in CWB mode. early return\n",
  1370. DRMID(phys_enc->parent), WBID(wb_enc));
  1371. return;
  1372. }
  1373. if (!hw_ctl) {
  1374. SDE_DEBUG("[enc:%d wb:%d] invalid ctl\n", DRMID(phys_enc->parent), WBID(wb_enc));
  1375. return;
  1376. }
  1377. if (hw_ctl->ops.update_bitmask)
  1378. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_WB, hw_wb->idx, 1);
  1379. if (hw_ctl->ops.update_bitmask && hw_cdm)
  1380. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_CDM, hw_cdm->idx, 1);
  1381. if (hw_ctl->ops.update_bitmask && hw_pp && hw_pp->merge_3d)
  1382. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_MERGE_3D, hw_pp->merge_3d->idx, 1);
  1383. if (hw_ctl->ops.update_dnsc_blur_bitmask && hw_dnsc_blur)
  1384. hw_ctl->ops.update_dnsc_blur_bitmask(hw_ctl, hw_dnsc_blur->idx, 1);
  1385. if (hw_ctl->ops.get_pending_flush)
  1386. hw_ctl->ops.get_pending_flush(hw_ctl, &pending_flush);
  1387. SDE_DEBUG("[enc:%d wb:%d] Pending flush mask for CTL_%d is 0x%x\n",
  1388. DRMID(phys_enc->parent), WBID(wb_enc),
  1389. hw_ctl->idx - CTL_0, pending_flush.pending_flush_mask);
  1390. }
  1391. static void _sde_encoder_phys_wb_setup_dnsc_blur(struct sde_encoder_phys *phys_enc)
  1392. {
  1393. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1394. struct sde_wb_device *wb_dev = wb_enc->wb_dev;
  1395. struct sde_kms *sde_kms = phys_enc->sde_kms;
  1396. struct sde_hw_dnsc_blur *hw_dnsc_blur = phys_enc->hw_dnsc_blur;
  1397. struct sde_hw_pingpong *hw_pp = phys_enc->hw_pp;
  1398. struct sde_connector *sde_conn;
  1399. struct sde_connector_state *sde_conn_state;
  1400. struct sde_drm_dnsc_blur_cfg *cfg;
  1401. int i;
  1402. bool enable;
  1403. if (!sde_kms->catalog->dnsc_blur_count || !hw_pp)
  1404. return;
  1405. sde_conn = to_sde_connector(wb_dev->connector);
  1406. sde_conn_state = to_sde_connector_state(wb_dev->connector->state);
  1407. if (sde_conn_state->dnsc_blur_count
  1408. && (!hw_dnsc_blur || !hw_dnsc_blur->ops.setup_dnsc_blur)) {
  1409. SDE_ERROR("[enc:%d wb:%d] invalid config - dnsc_blur block not reserved\n",
  1410. DRMID(phys_enc->parent), WBID(wb_enc));
  1411. return;
  1412. }
  1413. /* swap between 0 & 1 lut idx on each config change for gaussian lut */
  1414. sde_conn_state->dnsc_blur_lut = 1 - sde_conn_state->dnsc_blur_lut;
  1415. /*
  1416. * disable dnsc_blur case - safe to update the opmode as dynamic switching of
  1417. * dnsc_blur hw block between WBs are not supported currently.
  1418. */
  1419. if (hw_dnsc_blur && !sde_conn_state->dnsc_blur_count) {
  1420. hw_dnsc_blur->ops.setup_dnsc_blur(hw_dnsc_blur, NULL, 0);
  1421. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), SDE_EVTLOG_FUNC_CASE1);
  1422. return;
  1423. }
  1424. for (i = 0; i < sde_conn_state->dnsc_blur_count; i++) {
  1425. cfg = &sde_conn_state->dnsc_blur_cfg[i];
  1426. enable = (cfg->flags & DNSC_BLUR_EN);
  1427. hw_dnsc_blur->ops.setup_dnsc_blur(hw_dnsc_blur, cfg, sde_conn_state->dnsc_blur_lut);
  1428. if (hw_dnsc_blur->ops.setup_dither)
  1429. hw_dnsc_blur->ops.setup_dither(hw_dnsc_blur, cfg);
  1430. if (hw_dnsc_blur->ops.bind_pingpong_blk)
  1431. hw_dnsc_blur->ops.bind_pingpong_blk(hw_dnsc_blur, enable, hw_pp->idx,
  1432. phys_enc->in_clone_mode);
  1433. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), sde_conn_state->dnsc_blur_count,
  1434. cfg->flags, cfg->flags_h, cfg->flags_v, cfg->src_width,
  1435. cfg->src_height, cfg->dst_width, cfg->dst_height,
  1436. sde_conn_state->dnsc_blur_lut);
  1437. }
  1438. }
  1439. static void _sde_encoder_phys_wb_setup_prog_line(struct sde_encoder_phys *phys_enc)
  1440. {
  1441. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1442. struct sde_wb_device *wb_dev = wb_enc->wb_dev;
  1443. struct drm_connector_state *state = wb_dev->connector->state;
  1444. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1445. u32 prog_line;
  1446. if (phys_enc->in_clone_mode || !hw_wb->ops.set_prog_line_count)
  1447. return;
  1448. prog_line = sde_connector_get_property(state, CONNECTOR_PROP_EARLY_FENCE_LINE);
  1449. if (wb_enc->prog_line != prog_line) {
  1450. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), wb_enc->prog_line, prog_line);
  1451. wb_enc->prog_line = prog_line;
  1452. hw_wb->ops.set_prog_line_count(hw_wb, prog_line);
  1453. }
  1454. }
  1455. /**
  1456. * sde_encoder_phys_wb_setup - setup writeback encoder
  1457. * @phys_enc: Pointer to physical encoder
  1458. */
  1459. static void sde_encoder_phys_wb_setup(struct sde_encoder_phys *phys_enc)
  1460. {
  1461. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1462. struct drm_display_mode mode = phys_enc->cached_mode;
  1463. struct drm_connector_state *conn_state = phys_enc->connector->state;
  1464. struct drm_crtc_state *crtc_state = wb_enc->crtc->state;
  1465. struct drm_framebuffer *fb;
  1466. struct sde_rect *wb_roi = &wb_enc->wb_roi;
  1467. u32 out_width = 0, out_height = 0;
  1468. SDE_DEBUG("[enc:%d wb:%d] mode_set:\"%s\",%d,%d]\n", DRMID(phys_enc->parent),
  1469. WBID(wb_enc), mode.name, mode.hdisplay, mode.vdisplay);
  1470. memset(wb_roi, 0, sizeof(struct sde_rect));
  1471. /* clear writeback framebuffer - will be updated in setup_fb */
  1472. wb_enc->wb_fb = NULL;
  1473. wb_enc->wb_aspace = NULL;
  1474. if (phys_enc->enable_state == SDE_ENC_DISABLING) {
  1475. fb = wb_enc->fb_disable;
  1476. wb_roi->w = 0;
  1477. wb_roi->h = 0;
  1478. } else {
  1479. fb = sde_wb_get_output_fb(wb_enc->wb_dev);
  1480. sde_wb_get_output_roi(wb_enc->wb_dev, wb_roi);
  1481. }
  1482. if (!fb) {
  1483. SDE_DEBUG("[enc:%d wb:%d] no out fb\n", DRMID(phys_enc->parent), WBID(wb_enc));
  1484. return;
  1485. }
  1486. SDE_DEBUG("[fb_id:%u][fb:%u,%u]\n", fb->base.id, fb->width, fb->height);
  1487. _sde_enc_phys_wb_get_out_resolution(crtc_state, conn_state, &out_width, &out_height);
  1488. if (wb_roi->w == 0 || wb_roi->h == 0) {
  1489. wb_roi->x = 0;
  1490. wb_roi->y = 0;
  1491. wb_roi->w = out_width;
  1492. wb_roi->h = out_height;
  1493. }
  1494. wb_enc->wb_fmt = sde_get_sde_format_ext(fb->format->format,
  1495. fb->modifier);
  1496. if (!wb_enc->wb_fmt) {
  1497. SDE_ERROR("[enc:%d wb:%d] unsupported output pixel format:%d\n",
  1498. DRMID(phys_enc->parent), WBID(wb_enc), fb->format->format);
  1499. return;
  1500. }
  1501. SDE_DEBUG("[enc:%d enc:%d] fb_id:%u, wxh:%ux%u, fb_fmt:%x,%llx, roi:{%d,%d,%d,%d}\n",
  1502. DRMID(phys_enc->parent), WBID(wb_enc), fb->base.id, fb->width, fb->height,
  1503. fb->format->format, fb->modifier, wb_roi->x, wb_roi->y, wb_roi->w, wb_roi->h);
  1504. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), wb_roi->x, wb_roi->y, wb_roi->w, wb_roi->h,
  1505. out_width, out_height, fb->width, fb->height, mode.hdisplay, mode.vdisplay);
  1506. sde_encoder_phys_wb_set_ot_limit(phys_enc);
  1507. sde_encoder_phys_wb_set_qos_remap(phys_enc);
  1508. sde_encoder_phys_wb_set_qos(phys_enc);
  1509. sde_encoder_phys_setup_cdm(phys_enc, fb, wb_enc->wb_fmt, wb_roi);
  1510. sde_encoder_phys_wb_setup_fb(phys_enc, fb, wb_roi, out_width, out_height);
  1511. _sde_encoder_phys_wb_setup_ctl(phys_enc, wb_enc->wb_fmt);
  1512. _sde_encoder_phys_wb_setup_sys_cache(phys_enc, fb);
  1513. _sde_encoder_phys_wb_setup_cwb(phys_enc, true);
  1514. _sde_encoder_phys_wb_setup_prog_line(phys_enc);
  1515. _sde_encoder_phys_wb_setup_dnsc_blur(phys_enc);
  1516. }
  1517. static void sde_encoder_phys_wb_ctl_start_irq(void *arg, int irq_idx)
  1518. {
  1519. struct sde_encoder_phys_wb *wb_enc = arg;
  1520. struct sde_encoder_phys *phys_enc;
  1521. struct sde_hw_wb *hw_wb;
  1522. u32 line_cnt = 0;
  1523. if (!wb_enc)
  1524. return;
  1525. SDE_ATRACE_BEGIN("ctl_start_irq");
  1526. phys_enc = &wb_enc->base;
  1527. if (atomic_add_unless(&phys_enc->pending_ctl_start_cnt, -1, 0))
  1528. wake_up_all(&phys_enc->pending_kickoff_wq);
  1529. hw_wb = wb_enc->hw_wb;
  1530. if (hw_wb->ops.get_line_count)
  1531. line_cnt = hw_wb->ops.get_line_count(hw_wb);
  1532. SDE_ATRACE_END("ctl_start_irq");
  1533. SDE_EVT32_IRQ(DRMID(phys_enc->parent), WBID(wb_enc), line_cnt);
  1534. }
  1535. static void _sde_encoder_phys_wb_frame_done_helper(void *arg, bool frame_error)
  1536. {
  1537. struct sde_encoder_phys_wb *wb_enc = arg;
  1538. struct sde_encoder_phys *phys_enc = &wb_enc->base;
  1539. u32 event = frame_error ? SDE_ENCODER_FRAME_EVENT_ERROR : 0;
  1540. u32 ubwc_error = 0;
  1541. unsigned long flags;
  1542. /* don't notify upper layer for internal commit */
  1543. if (phys_enc->enable_state == SDE_ENC_DISABLING && !phys_enc->in_clone_mode)
  1544. goto end;
  1545. spin_lock_irqsave(phys_enc->enc_spinlock, flags);
  1546. if (phys_enc->parent_ops.handle_frame_done &&
  1547. atomic_add_unless(&phys_enc->pending_kickoff_cnt, -1, 0)) {
  1548. event |= SDE_ENCODER_FRAME_EVENT_DONE;
  1549. /*
  1550. * signal retire-fence during wb-done
  1551. * - when prog_line is not configured
  1552. * - when prog_line is configured and line-ptr-irq is missed
  1553. */
  1554. if (!wb_enc->prog_line || (wb_enc->prog_line &&
  1555. (atomic_read(&phys_enc->pending_kickoff_cnt) <
  1556. atomic_read(&phys_enc->pending_retire_fence_cnt)))) {
  1557. atomic_add_unless(&phys_enc->pending_retire_fence_cnt, -1, 0);
  1558. event |= SDE_ENCODER_FRAME_EVENT_SIGNAL_RETIRE_FENCE;
  1559. }
  1560. if (phys_enc->in_clone_mode)
  1561. event |= SDE_ENCODER_FRAME_EVENT_CWB_DONE
  1562. | SDE_ENCODER_FRAME_EVENT_SIGNAL_RETIRE_FENCE;
  1563. else
  1564. event |= SDE_ENCODER_FRAME_EVENT_SIGNAL_RELEASE_FENCE;
  1565. }
  1566. spin_unlock_irqrestore(phys_enc->enc_spinlock, flags);
  1567. if (event & SDE_ENCODER_FRAME_EVENT_DONE)
  1568. phys_enc->parent_ops.handle_frame_done(phys_enc->parent, phys_enc, event);
  1569. if (!phys_enc->in_clone_mode && phys_enc->parent_ops.handle_vblank_virt)
  1570. phys_enc->parent_ops.handle_vblank_virt(phys_enc->parent, phys_enc);
  1571. end:
  1572. if (frame_error && wb_enc->hw_wb->ops.get_ubwc_error
  1573. && wb_enc->hw_wb->ops.clear_ubwc_error) {
  1574. wb_enc->hw_wb->ops.get_ubwc_error(wb_enc->hw_wb);
  1575. wb_enc->hw_wb->ops.clear_ubwc_error(wb_enc->hw_wb);
  1576. }
  1577. SDE_EVT32_IRQ(DRMID(phys_enc->parent), WBID(wb_enc), phys_enc->in_clone_mode,
  1578. phys_enc->enable_state, event, atomic_read(&phys_enc->pending_kickoff_cnt),
  1579. atomic_read(&phys_enc->pending_retire_fence_cnt),
  1580. ubwc_error, frame_error);
  1581. wake_up_all(&phys_enc->pending_kickoff_wq);
  1582. }
  1583. /**
  1584. * sde_encoder_phys_wb_done_irq - Pingpong overflow interrupt handler for CWB
  1585. * @arg: Pointer to writeback encoder
  1586. * @irq_idx: interrupt index
  1587. */
  1588. static void sde_encoder_phys_cwb_ovflow(void *arg, int irq_idx)
  1589. {
  1590. _sde_encoder_phys_wb_frame_done_helper(arg, true);
  1591. }
  1592. /**
  1593. * sde_encoder_phys_wb_done_irq - writeback interrupt handler
  1594. * @arg: Pointer to writeback encoder
  1595. * @irq_idx: interrupt index
  1596. */
  1597. static void sde_encoder_phys_wb_done_irq(void *arg, int irq_idx)
  1598. {
  1599. SDE_ATRACE_BEGIN("wb_done_irq");
  1600. _sde_encoder_phys_wb_frame_done_helper(arg, false);
  1601. SDE_ATRACE_END("wb_done_irq");
  1602. }
  1603. static void sde_encoder_phys_wb_lineptr_irq(void *arg, int irq_idx)
  1604. {
  1605. struct sde_encoder_phys_wb *wb_enc = arg;
  1606. struct sde_encoder_phys *phys_enc;
  1607. struct sde_hw_wb *hw_wb;
  1608. u32 event = 0, line_cnt = 0;
  1609. if (!wb_enc || !wb_enc->prog_line)
  1610. return;
  1611. SDE_ATRACE_BEGIN("wb_lineptr_irq");
  1612. phys_enc = &wb_enc->base;
  1613. if (phys_enc->parent_ops.handle_frame_done &&
  1614. atomic_add_unless(&phys_enc->pending_retire_fence_cnt, -1, 0)) {
  1615. event = SDE_ENCODER_FRAME_EVENT_SIGNAL_RETIRE_FENCE;
  1616. phys_enc->parent_ops.handle_frame_done(phys_enc->parent, phys_enc, event);
  1617. }
  1618. hw_wb = wb_enc->hw_wb;
  1619. if (hw_wb->ops.get_line_count)
  1620. line_cnt = hw_wb->ops.get_line_count(hw_wb);
  1621. SDE_ATRACE_END("wb_lineptr_irq");
  1622. SDE_EVT32_IRQ(DRMID(phys_enc->parent), WBID(wb_enc), event, wb_enc->prog_line, line_cnt);
  1623. }
  1624. /**
  1625. * sde_encoder_phys_wb_irq_ctrl - irq control of WB
  1626. * @phys: Pointer to physical encoder
  1627. * @enable: indicates enable or disable interrupts
  1628. */
  1629. static void sde_encoder_phys_wb_irq_ctrl(struct sde_encoder_phys *phys, bool enable)
  1630. {
  1631. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys);
  1632. const struct sde_wb_cfg *wb_cfg;
  1633. int index = 0, pp = 0;
  1634. u32 max_num_of_irqs = 0;
  1635. const u32 *irq_table = NULL;
  1636. if (!wb_enc)
  1637. return;
  1638. pp = phys->hw_pp->idx - PINGPONG_0;
  1639. if ((pp + CRTC_DUAL_MIXERS_ONLY) >= PINGPONG_MAX) {
  1640. SDE_ERROR("[enc:%d wb:%d] invalid pp:%d\n", DRMID(phys->parent), WBID(wb_enc), pp);
  1641. return;
  1642. }
  1643. /*
  1644. * For Dedicated CWB, only one overflow IRQ is used for
  1645. * both the PP_CWB blks. Make sure only one IRQ is registered
  1646. * when D-CWB is enabled.
  1647. */
  1648. wb_cfg = wb_enc->hw_wb->caps;
  1649. if (wb_cfg->features & BIT(SDE_WB_HAS_DCWB)) {
  1650. max_num_of_irqs = 1;
  1651. irq_table = dcwb_irq_tbl;
  1652. } else {
  1653. max_num_of_irqs = CRTC_DUAL_MIXERS_ONLY;
  1654. irq_table = cwb_irq_tbl;
  1655. }
  1656. if (enable && atomic_inc_return(&phys->wbirq_refcount) == 1) {
  1657. sde_encoder_helper_register_irq(phys, INTR_IDX_WB_DONE);
  1658. sde_encoder_helper_register_irq(phys, INTR_IDX_CTL_START);
  1659. if (test_bit(SDE_WB_PROG_LINE, &wb_cfg->features))
  1660. sde_encoder_helper_register_irq(phys, INTR_IDX_WB_LINEPTR);
  1661. for (index = 0; index < max_num_of_irqs; index++)
  1662. if (irq_table[index + pp] != SDE_NONE)
  1663. sde_encoder_helper_register_irq(phys, irq_table[index + pp]);
  1664. } else if (!enable && atomic_dec_return(&phys->wbirq_refcount) == 0) {
  1665. sde_encoder_helper_unregister_irq(phys, INTR_IDX_WB_DONE);
  1666. sde_encoder_helper_unregister_irq(phys, INTR_IDX_CTL_START);
  1667. if (test_bit(SDE_WB_PROG_LINE, &wb_cfg->features))
  1668. sde_encoder_helper_unregister_irq(phys, INTR_IDX_WB_LINEPTR);
  1669. for (index = 0; index < max_num_of_irqs; index++)
  1670. if (irq_table[index + pp] != SDE_NONE)
  1671. sde_encoder_helper_unregister_irq(phys, irq_table[index + pp]);
  1672. }
  1673. }
  1674. /**
  1675. * sde_encoder_phys_wb_mode_set - set display mode
  1676. * @phys_enc: Pointer to physical encoder
  1677. * @mode: Pointer to requested display mode
  1678. * @adj_mode: Pointer to adjusted display mode
  1679. */
  1680. static void sde_encoder_phys_wb_mode_set(
  1681. struct sde_encoder_phys *phys_enc,
  1682. struct drm_display_mode *mode,
  1683. struct drm_display_mode *adj_mode, bool *reinit_mixers)
  1684. {
  1685. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1686. struct sde_rm *rm = &phys_enc->sde_kms->rm;
  1687. struct sde_rm_hw_iter iter;
  1688. int i, instance;
  1689. struct sde_encoder_irq *irq;
  1690. phys_enc->cached_mode = *adj_mode;
  1691. instance = phys_enc->split_role == ENC_ROLE_SLAVE ? 1 : 0;
  1692. SDE_DEBUG("[enc:%d wb:%d] mode_set_cache:\"%s\",%d,%d\n", DRMID(phys_enc->parent),
  1693. WBID(wb_enc), mode->name, mode->hdisplay, mode->vdisplay);
  1694. phys_enc->hw_ctl = NULL;
  1695. phys_enc->hw_cdm = NULL;
  1696. phys_enc->hw_dnsc_blur = NULL;
  1697. /* Retrieve previously allocated HW Resources. CTL shouldn't fail */
  1698. sde_rm_init_hw_iter(&iter, phys_enc->parent->base.id, SDE_HW_BLK_CTL);
  1699. for (i = 0; i <= instance; i++) {
  1700. sde_rm_get_hw(rm, &iter);
  1701. if (i == instance) {
  1702. if (phys_enc->hw_ctl && phys_enc->hw_ctl != to_sde_hw_ctl(iter.hw)) {
  1703. *reinit_mixers = true;
  1704. SDE_EVT32(phys_enc->hw_ctl->idx, to_sde_hw_ctl(iter.hw)->idx);
  1705. }
  1706. phys_enc->hw_ctl = to_sde_hw_ctl(iter.hw);
  1707. }
  1708. }
  1709. if (IS_ERR_OR_NULL(phys_enc->hw_ctl)) {
  1710. SDE_ERROR("[enc:%d, wb:%d] failed init ctl: %ld\n", DRMID(phys_enc->parent),
  1711. WBID(wb_enc), (!phys_enc->hw_ctl) ? -EINVAL : PTR_ERR(phys_enc->hw_ctl));
  1712. phys_enc->hw_ctl = NULL;
  1713. return;
  1714. }
  1715. /* CDM is optional */
  1716. sde_rm_init_hw_iter(&iter, phys_enc->parent->base.id, SDE_HW_BLK_CDM);
  1717. for (i = 0; i <= instance; i++) {
  1718. sde_rm_get_hw(rm, &iter);
  1719. if (i == instance)
  1720. phys_enc->hw_cdm = to_sde_hw_cdm(iter.hw);
  1721. }
  1722. if (IS_ERR(phys_enc->hw_cdm)) {
  1723. SDE_ERROR("[enc:%d wb:%d] CDM required but not allocated:%ld\n",
  1724. DRMID(phys_enc->parent), WBID(wb_enc), PTR_ERR(phys_enc->hw_cdm));
  1725. phys_enc->hw_cdm = NULL;
  1726. }
  1727. /* Downscale Blur is optional */
  1728. sde_rm_init_hw_iter(&iter, phys_enc->parent->base.id, SDE_HW_BLK_DNSC_BLUR);
  1729. for (i = 0; i <= instance; i++) {
  1730. sde_rm_get_hw(rm, &iter);
  1731. if (i == instance)
  1732. phys_enc->hw_dnsc_blur = to_sde_hw_dnsc_blur(iter.hw);
  1733. }
  1734. if (IS_ERR(phys_enc->hw_dnsc_blur)) {
  1735. SDE_ERROR("[enc:%d wb:%d] Downscale Blur required but not allocated:%ld\n",
  1736. DRMID(phys_enc->parent), WBID(wb_enc), PTR_ERR(phys_enc->hw_dnsc_blur));
  1737. phys_enc->hw_dnsc_blur = NULL;
  1738. }
  1739. phys_enc->kickoff_timeout_ms =
  1740. sde_encoder_helper_get_kickoff_timeout_ms(phys_enc->parent);
  1741. /* set ctl idx for ctl-start-irq */
  1742. irq = &phys_enc->irq[INTR_IDX_CTL_START];
  1743. irq->hw_idx = phys_enc->hw_ctl->idx;
  1744. }
  1745. static bool _sde_encoder_phys_wb_is_idle(struct sde_encoder_phys *phys_enc)
  1746. {
  1747. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1748. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1749. struct sde_vbif_get_xin_status_params xin_status = {0};
  1750. xin_status.vbif_idx = hw_wb->caps->vbif_idx;
  1751. xin_status.xin_id = hw_wb->caps->xin_id;
  1752. xin_status.clk_ctrl = hw_wb->caps->clk_ctrl;
  1753. return sde_vbif_get_xin_status(phys_enc->sde_kms, &xin_status);
  1754. }
  1755. static void _sde_encoder_phys_wb_reset_state(struct sde_encoder_phys *phys_enc)
  1756. {
  1757. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1758. struct sde_encoder_virt *sde_enc = to_sde_encoder_virt(phys_enc->parent);
  1759. struct sde_crtc *sde_crtc;
  1760. phys_enc->enable_state = SDE_ENC_DISABLED;
  1761. /* cleanup any pending buffer */
  1762. if (wb_enc->wb_fb && wb_enc->wb_aspace) {
  1763. msm_framebuffer_cleanup(wb_enc->wb_fb, wb_enc->wb_aspace);
  1764. drm_framebuffer_put(wb_enc->wb_fb);
  1765. wb_enc->wb_fb = NULL;
  1766. wb_enc->wb_aspace = NULL;
  1767. }
  1768. sde_crtc = to_sde_crtc(sde_enc->crtc);
  1769. if (sde_crtc)
  1770. sde_crtc->cached_encoder_mask &= ~drm_encoder_mask(phys_enc->parent);
  1771. wb_enc->crtc = NULL;
  1772. phys_enc->hw_cdm = NULL;
  1773. phys_enc->hw_ctl = NULL;
  1774. phys_enc->in_clone_mode = false;
  1775. atomic_set(&phys_enc->pending_kickoff_cnt, 0);
  1776. atomic_set(&phys_enc->pending_retire_fence_cnt, 0);
  1777. atomic_set(&phys_enc->pending_ctl_start_cnt, 0);
  1778. }
  1779. static int _sde_encoder_phys_wb_wait_for_idle(struct sde_encoder_phys *phys_enc, bool force_wait)
  1780. {
  1781. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1782. struct sde_encoder_wait_info wait_info = {0};
  1783. int rc = 0;
  1784. bool is_idle;
  1785. /* Return EWOULDBLOCK since we know the wait isn't necessary */
  1786. if (phys_enc->enable_state == SDE_ENC_DISABLED) {
  1787. SDE_ERROR("enc:%d, wb:%d - encoder already disabled\n",
  1788. DRMID(phys_enc->parent), WBID(wb_enc));
  1789. return -EWOULDBLOCK;
  1790. }
  1791. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), phys_enc->in_clone_mode,
  1792. atomic_read(&phys_enc->pending_kickoff_cnt), force_wait);
  1793. if (!force_wait && phys_enc->in_clone_mode
  1794. && (atomic_read(&phys_enc->pending_kickoff_cnt) <= 1))
  1795. return 0;
  1796. /*
  1797. * signal completion if commit with no framebuffer
  1798. * handle frame-done when WB HW is idle
  1799. */
  1800. is_idle = _sde_encoder_phys_wb_is_idle(phys_enc);
  1801. if (!wb_enc->wb_fb || is_idle) {
  1802. SDE_EVT32((phys_enc->parent), WBID(wb_enc), !wb_enc->wb_fb, is_idle);
  1803. goto frame_done;
  1804. }
  1805. if (atomic_read(&phys_enc->pending_kickoff_cnt) > 1)
  1806. wait_info.count_check = 1;
  1807. wait_info.wq = &phys_enc->pending_kickoff_wq;
  1808. wait_info.atomic_cnt = &phys_enc->pending_kickoff_cnt;
  1809. wait_info.timeout_ms = max_t(u32, wb_enc->wbdone_timeout, phys_enc->kickoff_timeout_ms);
  1810. rc = sde_encoder_helper_wait_for_irq(phys_enc, INTR_IDX_WB_DONE, &wait_info);
  1811. if (rc == -ETIMEDOUT) {
  1812. /* handle frame-done when WB HW is idle */
  1813. if (_sde_encoder_phys_wb_is_idle(phys_enc))
  1814. rc = 0;
  1815. SDE_ERROR("caller:%pS [enc:%d, wb:%d] clone_mode:%d kickoff timed out\n",
  1816. __builtin_return_address(0), DRMID(phys_enc->parent), WBID(wb_enc),
  1817. phys_enc->in_clone_mode);
  1818. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc),
  1819. atomic_read(&phys_enc->pending_kickoff_cnt), SDE_EVTLOG_ERROR);
  1820. goto frame_done;
  1821. }
  1822. return 0;
  1823. frame_done:
  1824. _sde_encoder_phys_wb_frame_done_helper(wb_enc, rc ? true : false);
  1825. return rc;
  1826. }
  1827. static int _sde_encoder_phys_wb_wait_for_ctl_start(struct sde_encoder_phys *phys_enc)
  1828. {
  1829. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1830. struct sde_encoder_wait_info wait_info = {0};
  1831. struct sde_hw_ctl *hw_ctl = phys_enc->hw_ctl;
  1832. int rc = 0;
  1833. if (!atomic_read(&phys_enc->pending_ctl_start_cnt))
  1834. return 0;
  1835. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), phys_enc->in_clone_mode,
  1836. atomic_read(&phys_enc->pending_kickoff_cnt),
  1837. atomic_read(&phys_enc->pending_retire_fence_cnt),
  1838. atomic_read(&phys_enc->pending_ctl_start_cnt));
  1839. wait_info.wq = &phys_enc->pending_kickoff_wq;
  1840. wait_info.atomic_cnt = &phys_enc->pending_ctl_start_cnt;
  1841. wait_info.timeout_ms = max_t(u32, wb_enc->wbdone_timeout, phys_enc->kickoff_timeout_ms);
  1842. rc = sde_encoder_helper_wait_for_irq(phys_enc, INTR_IDX_CTL_START, &wait_info);
  1843. /*
  1844. * if hwfencing enabled, try again to wait for up to the extended timeout time in
  1845. * increments as long as fence has not been signaled.
  1846. */
  1847. if (rc == -ETIMEDOUT && phys_enc->sde_kms->catalog->hw_fence_rev && hw_ctl)
  1848. rc = sde_encoder_helper_hw_fence_extended_wait(phys_enc, hw_ctl,
  1849. &wait_info, INTR_IDX_CTL_START);
  1850. if (rc == -ETIMEDOUT) {
  1851. atomic_add_unless(&phys_enc->pending_ctl_start_cnt, -1, 0);
  1852. /* if we timeout after the extended wait, reset mixers and do sw override */
  1853. if (phys_enc->sde_kms->catalog->hw_fence_rev)
  1854. sde_encoder_helper_hw_fence_sw_override(phys_enc, hw_ctl);
  1855. SDE_ERROR("[enc:%d wb:%d] ctl_start timed out\n",
  1856. DRMID(phys_enc->parent), WBID(wb_enc));
  1857. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), SDE_EVTLOG_ERROR);
  1858. }
  1859. return rc;
  1860. }
  1861. /**
  1862. * sde_encoder_phys_wb_wait_for_commit_done - wait until request is committed
  1863. * @phys_enc: Pointer to physical encoder
  1864. */
  1865. static int sde_encoder_phys_wb_wait_for_commit_done(struct sde_encoder_phys *phys_enc)
  1866. {
  1867. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1868. int rc, pending_cnt, i;
  1869. bool is_idle;
  1870. /* CWB - wait for previous frame completion */
  1871. if (phys_enc->in_clone_mode) {
  1872. rc = _sde_encoder_phys_wb_wait_for_idle(phys_enc, false);
  1873. goto end;
  1874. }
  1875. /*
  1876. * WB - wait for ctl-start-irq by default and additionally for
  1877. * wb-done-irq during timeout or serialize frame-trigger
  1878. */
  1879. rc = _sde_encoder_phys_wb_wait_for_ctl_start(phys_enc);
  1880. pending_cnt = atomic_read(&phys_enc->pending_kickoff_cnt);
  1881. is_idle = _sde_encoder_phys_wb_is_idle(phys_enc);
  1882. if (rc || (pending_cnt > 1) || (pending_cnt && is_idle)
  1883. || (!rc && (phys_enc->frame_trigger_mode == FRAME_DONE_WAIT_SERIALIZE))) {
  1884. for (i = 0; i < pending_cnt; i++)
  1885. rc |= _sde_encoder_phys_wb_wait_for_idle(phys_enc, true);
  1886. if (rc) {
  1887. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc),
  1888. phys_enc->frame_trigger_mode,
  1889. atomic_read(&phys_enc->pending_kickoff_cnt), is_idle, rc);
  1890. SDE_ERROR("[enc:%d, wb:%d] failed wait_for_idle; ret:%d\n",
  1891. DRMID(phys_enc->parent), WBID(wb_enc), rc);
  1892. }
  1893. }
  1894. end:
  1895. /* cleanup any pending previous buffer */
  1896. if (wb_enc->old_fb && wb_enc->old_aspace) {
  1897. msm_framebuffer_cleanup(wb_enc->old_fb, wb_enc->old_aspace);
  1898. drm_framebuffer_put(wb_enc->old_fb);
  1899. wb_enc->old_fb = NULL;
  1900. wb_enc->old_aspace = NULL;
  1901. }
  1902. return rc;
  1903. }
  1904. static int sde_encoder_phys_wb_wait_for_tx_complete(struct sde_encoder_phys *phys_enc)
  1905. {
  1906. int rc = 0;
  1907. unsigned long flags;
  1908. if (atomic_read(&phys_enc->pending_kickoff_cnt))
  1909. rc = _sde_encoder_phys_wb_wait_for_idle(phys_enc, true);
  1910. if ((phys_enc->enable_state == SDE_ENC_DISABLING) && phys_enc->in_clone_mode) {
  1911. spin_lock_irqsave(phys_enc->enc_spinlock, flags);
  1912. _sde_encoder_phys_wb_reset_state(phys_enc);
  1913. spin_unlock_irqrestore(phys_enc->enc_spinlock, flags);
  1914. sde_encoder_phys_wb_irq_ctrl(phys_enc, false);
  1915. }
  1916. return rc;
  1917. }
  1918. /**
  1919. * sde_encoder_phys_wb_prepare_for_kickoff - pre-kickoff processing
  1920. * @phys_enc: Pointer to physical encoder
  1921. * @params: kickoff parameters
  1922. * Returns: Zero on success
  1923. */
  1924. static int sde_encoder_phys_wb_prepare_for_kickoff(struct sde_encoder_phys *phys_enc,
  1925. struct sde_encoder_kickoff_params *params)
  1926. {
  1927. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1928. int ret = 0;
  1929. phys_enc->frame_trigger_mode = params ?
  1930. params->frame_trigger_mode : FRAME_DONE_WAIT_DEFAULT;
  1931. if (!phys_enc->in_clone_mode && (phys_enc->frame_trigger_mode == FRAME_DONE_WAIT_DEFAULT)
  1932. && (atomic_read(&phys_enc->pending_kickoff_cnt))) {
  1933. ret = _sde_encoder_phys_wb_wait_for_idle(phys_enc, true);
  1934. if (ret)
  1935. atomic_set(&phys_enc->pending_kickoff_cnt, 0);
  1936. }
  1937. /* cache the framebuffer/aspace for cleanup later */
  1938. wb_enc->old_fb = wb_enc->wb_fb;
  1939. wb_enc->old_aspace = wb_enc->wb_aspace;
  1940. /* set OT limit & enable traffic shaper */
  1941. sde_encoder_phys_wb_setup(phys_enc);
  1942. _sde_encoder_phys_wb_update_flush(phys_enc);
  1943. _sde_encoder_phys_wb_update_cwb_flush(phys_enc, true);
  1944. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), phys_enc->in_clone_mode,
  1945. phys_enc->frame_trigger_mode, ret);
  1946. return ret;
  1947. }
  1948. /**
  1949. * sde_encoder_phys_wb_trigger_flush - trigger flush processing
  1950. * @phys_enc: Pointer to physical encoder
  1951. */
  1952. static void sde_encoder_phys_wb_trigger_flush(struct sde_encoder_phys *phys_enc)
  1953. {
  1954. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1955. if (!phys_enc || !wb_enc->hw_wb) {
  1956. SDE_ERROR("invalid encoder\n");
  1957. return;
  1958. }
  1959. /*
  1960. * Bail out iff in CWB mode. In case of CWB, primary control-path
  1961. * which is actually driving would trigger the flush
  1962. */
  1963. if (phys_enc->in_clone_mode) {
  1964. SDE_DEBUG("[enc:%d wb:%d] in CWB mode. early return\n",
  1965. DRMID(phys_enc->parent), WBID(wb_enc));
  1966. return;
  1967. }
  1968. SDE_DEBUG("[enc:%d wb:%d]\n", DRMID(phys_enc->parent), WBID(wb_enc));
  1969. /* clear pending flush if commit with no framebuffer */
  1970. if (!wb_enc->wb_fb) {
  1971. SDE_DEBUG("[enc:%d wb:%d] no out FB\n", DRMID(phys_enc->parent), WBID(wb_enc));
  1972. return;
  1973. }
  1974. sde_encoder_helper_trigger_flush(phys_enc);
  1975. }
  1976. /**
  1977. * _sde_encoder_phys_wb_init_internal_fb - create fb for internal commit
  1978. * @wb_enc: Pointer to writeback encoder
  1979. * @pixel_format: DRM pixel format
  1980. * @width: Desired fb width
  1981. * @height: Desired fb height
  1982. * @pitch: Desired fb pitch
  1983. */
  1984. static int _sde_encoder_phys_wb_init_internal_fb(struct sde_encoder_phys_wb *wb_enc,
  1985. uint32_t pixel_format, uint32_t width, uint32_t height, uint32_t pitch)
  1986. {
  1987. struct drm_device *dev;
  1988. struct drm_framebuffer *fb;
  1989. struct drm_mode_fb_cmd2 mode_cmd;
  1990. uint32_t size;
  1991. int nplanes, i, ret;
  1992. struct msm_gem_address_space *aspace;
  1993. const struct drm_format_info *info;
  1994. struct sde_encoder_phys *phys_enc;
  1995. if (!wb_enc || !wb_enc->base.parent || !wb_enc->base.sde_kms) {
  1996. SDE_ERROR("invalid params\n");
  1997. return -EINVAL;
  1998. }
  1999. phys_enc = &wb_enc->base;
  2000. aspace = wb_enc->base.sde_kms->aspace[SDE_IOMMU_DOMAIN_UNSECURE];
  2001. if (!aspace) {
  2002. SDE_ERROR("[enc:%d wb:%d] invalid aspace\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2003. return -EINVAL;
  2004. }
  2005. dev = wb_enc->base.sde_kms->dev;
  2006. if (!dev) {
  2007. SDE_ERROR("[enc:%d wb:%d] invalid dev\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2008. return -EINVAL;
  2009. }
  2010. memset(&mode_cmd, 0, sizeof(mode_cmd));
  2011. mode_cmd.pixel_format = pixel_format;
  2012. mode_cmd.width = width;
  2013. mode_cmd.height = height;
  2014. mode_cmd.pitches[0] = pitch;
  2015. size = sde_format_get_framebuffer_size(pixel_format, mode_cmd.width, mode_cmd.height,
  2016. mode_cmd.pitches, 0);
  2017. if (!size) {
  2018. SDE_DEBUG("[enc:%d wb:%d] invalid fbsize\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2019. return -EINVAL;
  2020. }
  2021. /* allocate gem tracking object */
  2022. info = drm_get_format_info(dev, &mode_cmd);
  2023. nplanes = info->num_planes;
  2024. if (nplanes >= SDE_MAX_PLANES) {
  2025. SDE_ERROR("[enc:%d wb:%d] requested format has too many planes:%d\n",
  2026. DRMID(phys_enc->parent), WBID(wb_enc), nplanes);
  2027. return -EINVAL;
  2028. }
  2029. wb_enc->bo_disable[0] = msm_gem_new(dev, size, MSM_BO_SCANOUT | MSM_BO_WC);
  2030. if (IS_ERR_OR_NULL(wb_enc->bo_disable[0])) {
  2031. ret = PTR_ERR(wb_enc->bo_disable[0]);
  2032. wb_enc->bo_disable[0] = NULL;
  2033. SDE_ERROR("[enc:%d wb:%d] failed to create bo; ret:%d\n",
  2034. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  2035. return ret;
  2036. }
  2037. for (i = 0; i < nplanes; ++i) {
  2038. wb_enc->bo_disable[i] = wb_enc->bo_disable[0];
  2039. mode_cmd.pitches[i] = width * info->cpp[i];
  2040. }
  2041. fb = msm_framebuffer_init(dev, &mode_cmd, wb_enc->bo_disable);
  2042. if (IS_ERR_OR_NULL(fb)) {
  2043. ret = PTR_ERR(fb);
  2044. drm_gem_object_put(wb_enc->bo_disable[0]);
  2045. wb_enc->bo_disable[0] = NULL;
  2046. SDE_ERROR("[enc:%d wb:%d] failed to init fb; ret:%d\n",
  2047. DRMID(phys_enc->parent), WBID(wb_enc), ret);
  2048. return ret;
  2049. }
  2050. /* prepare the backing buffer now so that it's available later */
  2051. ret = msm_framebuffer_prepare(fb, aspace);
  2052. if (!ret)
  2053. wb_enc->fb_disable = fb;
  2054. return ret;
  2055. }
  2056. /**
  2057. * _sde_encoder_phys_wb_destroy_internal_fb - deconstruct internal fb
  2058. * @wb_enc: Pointer to writeback encoder
  2059. */
  2060. static void _sde_encoder_phys_wb_destroy_internal_fb(
  2061. struct sde_encoder_phys_wb *wb_enc)
  2062. {
  2063. if (!wb_enc)
  2064. return;
  2065. if (wb_enc->fb_disable) {
  2066. drm_framebuffer_unregister_private(wb_enc->fb_disable);
  2067. drm_framebuffer_remove(wb_enc->fb_disable);
  2068. wb_enc->fb_disable = NULL;
  2069. }
  2070. if (wb_enc->bo_disable[0]) {
  2071. drm_gem_object_put(wb_enc->bo_disable[0]);
  2072. wb_enc->bo_disable[0] = NULL;
  2073. }
  2074. }
  2075. /**
  2076. * sde_encoder_phys_wb_enable - enable writeback encoder
  2077. * @phys_enc: Pointer to physical encoder
  2078. */
  2079. static void sde_encoder_phys_wb_enable(struct sde_encoder_phys *phys_enc)
  2080. {
  2081. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  2082. struct drm_device *dev;
  2083. struct drm_connector *connector;
  2084. SDE_DEBUG("[enc:%d wb:%d]\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2085. if (!wb_enc->base.parent || !wb_enc->base.parent->dev) {
  2086. SDE_ERROR("[enc:%d, wb:%d] invalid dev\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2087. return;
  2088. }
  2089. dev = wb_enc->base.parent->dev;
  2090. /* find associated writeback connector */
  2091. connector = phys_enc->connector;
  2092. if (!connector || connector->encoder != phys_enc->parent) {
  2093. SDE_ERROR("[enc:%d, wb:%d] failed to find writeback connector\n",
  2094. DRMID(phys_enc->parent), WBID(wb_enc));
  2095. return;
  2096. }
  2097. wb_enc->wb_dev = sde_wb_connector_get_wb(connector);
  2098. phys_enc->enable_state = SDE_ENC_ENABLED;
  2099. /*
  2100. * cache the crtc in wb_enc on enable for duration of use case
  2101. * for correctly servicing asynchronous irq events and timers
  2102. */
  2103. wb_enc->crtc = phys_enc->parent->crtc;
  2104. }
  2105. /**
  2106. * sde_encoder_phys_wb_disable - disable writeback encoder
  2107. * @phys_enc: Pointer to physical encoder
  2108. */
  2109. static void sde_encoder_phys_wb_disable(struct sde_encoder_phys *phys_enc)
  2110. {
  2111. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  2112. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  2113. struct sde_crtc *sde_crtc = to_sde_crtc(wb_enc->crtc);
  2114. struct sde_hw_wb_sc_cfg cfg = { 0 };
  2115. int i;
  2116. if (phys_enc->enable_state == SDE_ENC_DISABLED) {
  2117. SDE_ERROR("[enc:%d wb:%d] encoder is already disabled\n",
  2118. DRMID(phys_enc->parent), WBID(wb_enc));
  2119. return;
  2120. }
  2121. SDE_DEBUG("[enc:%d, wb:%d] clone_mode:%d, kickoff_cnt:%u\n",
  2122. DRMID(phys_enc->parent), WBID(wb_enc), phys_enc->in_clone_mode,
  2123. atomic_read(&phys_enc->pending_kickoff_cnt));
  2124. if (!phys_enc->hw_ctl || !phys_enc->parent ||
  2125. !phys_enc->sde_kms || !wb_enc->fb_disable) {
  2126. SDE_DEBUG("[enc:%d wb:%d] invalid hw; skipping extra commit\n",
  2127. DRMID(phys_enc->parent), WBID(wb_enc));
  2128. goto exit;
  2129. }
  2130. /* reset system cache properties */
  2131. if (wb_enc->sc_cfg.wr_en) {
  2132. if (hw_wb->ops.setup_sys_cache)
  2133. hw_wb->ops.setup_sys_cache(hw_wb, &cfg);
  2134. /*
  2135. * avoid llcc_active reset for crtc while in clone mode as it will reset it for
  2136. * primary display as well
  2137. */
  2138. if (!phys_enc->in_clone_mode) {
  2139. for (i = 0; i < SDE_SYS_CACHE_MAX; i++)
  2140. sde_crtc->new_perf.llcc_active[i] = 0;
  2141. sde_core_perf_crtc_update_llcc(wb_enc->crtc);
  2142. }
  2143. }
  2144. if (phys_enc->in_clone_mode) {
  2145. _sde_encoder_phys_wb_setup_cwb(phys_enc, false);
  2146. _sde_encoder_phys_wb_update_cwb_flush(phys_enc, false);
  2147. phys_enc->enable_state = SDE_ENC_DISABLING;
  2148. if (wb_enc->crtc->state->active) {
  2149. sde_encoder_phys_wb_irq_ctrl(phys_enc, true);
  2150. return;
  2151. }
  2152. if (phys_enc->connector)
  2153. sde_connector_commit_reset(phys_enc->connector, ktime_get());
  2154. goto exit;
  2155. }
  2156. /* reset h/w before final flush */
  2157. if (phys_enc->hw_ctl->ops.clear_pending_flush)
  2158. phys_enc->hw_ctl->ops.clear_pending_flush(phys_enc->hw_ctl);
  2159. /*
  2160. * New CTL reset sequence from 5.0 MDP onwards.
  2161. * If has_3d_merge_reset is not set, legacy reset
  2162. * sequence is executed.
  2163. */
  2164. if (test_bit(SDE_FEATURE_3D_MERGE_RESET, hw_wb->catalog->features)) {
  2165. sde_encoder_helper_phys_disable(phys_enc, wb_enc);
  2166. goto exit;
  2167. }
  2168. if (sde_encoder_helper_reset_mixers(phys_enc, NULL))
  2169. goto exit;
  2170. phys_enc->enable_state = SDE_ENC_DISABLING;
  2171. sde_encoder_phys_wb_prepare_for_kickoff(phys_enc, NULL);
  2172. sde_encoder_phys_wb_irq_ctrl(phys_enc, true);
  2173. if (phys_enc->hw_ctl->ops.trigger_flush)
  2174. phys_enc->hw_ctl->ops.trigger_flush(phys_enc->hw_ctl);
  2175. sde_encoder_helper_trigger_start(phys_enc);
  2176. _sde_encoder_phys_wb_wait_for_idle(phys_enc, true);
  2177. sde_encoder_phys_wb_irq_ctrl(phys_enc, false);
  2178. exit:
  2179. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), phys_enc->in_clone_mode);
  2180. _sde_encoder_phys_wb_reset_state(phys_enc);
  2181. }
  2182. /**
  2183. * sde_encoder_phys_wb_get_hw_resources - get hardware resources
  2184. * @phys_enc: Pointer to physical encoder
  2185. * @hw_res: Pointer to encoder resources
  2186. */
  2187. static void sde_encoder_phys_wb_get_hw_resources(struct sde_encoder_phys *phys_enc,
  2188. struct sde_encoder_hw_resources *hw_res, struct drm_connector_state *conn_state)
  2189. {
  2190. struct sde_encoder_phys_wb *wb_enc;
  2191. struct sde_hw_wb *hw_wb;
  2192. struct drm_framebuffer *fb;
  2193. const struct sde_format *fmt = NULL;
  2194. if (!phys_enc) {
  2195. SDE_ERROR("invalid encoder\n");
  2196. return;
  2197. }
  2198. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  2199. fb = sde_wb_connector_state_get_output_fb(conn_state);
  2200. if (fb) {
  2201. fmt = sde_get_sde_format_ext(fb->format->format, fb->modifier);
  2202. if (!fmt) {
  2203. SDE_ERROR("[enc:%d wb:%d] unsupported output pixel format:%d\n",
  2204. DRMID(phys_enc->parent), WBID(wb_enc), fb->format->format);
  2205. return;
  2206. }
  2207. }
  2208. hw_wb = wb_enc->hw_wb;
  2209. hw_res->wbs[hw_wb->idx - WB_0] = phys_enc->intf_mode;
  2210. hw_res->needs_cdm = fmt ? SDE_FORMAT_IS_YUV(fmt) : false;
  2211. SDE_DEBUG("[enc:%d wb:%d] intf_mode:%d needs_cdm:%d\n", DRMID(phys_enc->parent),
  2212. WBID(wb_enc), hw_res->wbs[hw_wb->idx - WB_0], hw_res->needs_cdm);
  2213. }
  2214. #if IS_ENABLED(CONFIG_DEBUG_FS)
  2215. /**
  2216. * sde_encoder_phys_wb_init_debugfs - initialize writeback encoder debugfs
  2217. * @phys_enc: Pointer to physical encoder
  2218. * @debugfs_root: Pointer to virtual encoder's debugfs_root dir
  2219. */
  2220. static int sde_encoder_phys_wb_init_debugfs(
  2221. struct sde_encoder_phys *phys_enc, struct dentry *debugfs_root)
  2222. {
  2223. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  2224. if (!phys_enc || !wb_enc->hw_wb || !debugfs_root)
  2225. return -EINVAL;
  2226. debugfs_create_u32("wbdone_timeout", 0600, debugfs_root, &wb_enc->wbdone_timeout);
  2227. return 0;
  2228. }
  2229. #else
  2230. static int sde_encoder_phys_wb_init_debugfs(
  2231. struct sde_encoder_phys *phys_enc, struct dentry *debugfs_root)
  2232. {
  2233. return 0;
  2234. }
  2235. #endif /* CONFIG_DEBUG_FS */
  2236. static int sde_encoder_phys_wb_late_register(struct sde_encoder_phys *phys_enc,
  2237. struct dentry *debugfs_root)
  2238. {
  2239. return sde_encoder_phys_wb_init_debugfs(phys_enc, debugfs_root);
  2240. }
  2241. /**
  2242. * sde_encoder_phys_wb_destroy - destroy writeback encoder
  2243. * @phys_enc: Pointer to physical encoder
  2244. */
  2245. static void sde_encoder_phys_wb_destroy(struct sde_encoder_phys *phys_enc)
  2246. {
  2247. struct sde_encoder_phys_wb *wb_enc;
  2248. if (!phys_enc)
  2249. return;
  2250. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  2251. SDE_DEBUG("[enc:%d wb:%d]\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2252. _sde_encoder_phys_wb_destroy_internal_fb(wb_enc);
  2253. kfree(wb_enc);
  2254. }
  2255. void sde_encoder_phys_wb_add_enc_to_minidump(struct sde_encoder_phys *phys_enc)
  2256. {
  2257. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  2258. sde_mini_dump_add_va_region("sde_enc_phys_wb", sizeof(*wb_enc), wb_enc);
  2259. }
  2260. /**
  2261. * sde_encoder_phys_wb_init_ops - initialize writeback operations
  2262. * @ops: Pointer to encoder operation table
  2263. */
  2264. static void sde_encoder_phys_wb_init_ops(struct sde_encoder_phys_ops *ops)
  2265. {
  2266. ops->late_register = sde_encoder_phys_wb_late_register;
  2267. ops->is_master = sde_encoder_phys_wb_is_master;
  2268. ops->mode_set = sde_encoder_phys_wb_mode_set;
  2269. ops->enable = sde_encoder_phys_wb_enable;
  2270. ops->disable = sde_encoder_phys_wb_disable;
  2271. ops->destroy = sde_encoder_phys_wb_destroy;
  2272. ops->atomic_check = sde_encoder_phys_wb_atomic_check;
  2273. ops->get_hw_resources = sde_encoder_phys_wb_get_hw_resources;
  2274. ops->wait_for_commit_done = sde_encoder_phys_wb_wait_for_commit_done;
  2275. ops->wait_for_tx_complete = sde_encoder_phys_wb_wait_for_tx_complete;
  2276. ops->prepare_for_kickoff = sde_encoder_phys_wb_prepare_for_kickoff;
  2277. ops->trigger_flush = sde_encoder_phys_wb_trigger_flush;
  2278. ops->trigger_start = sde_encoder_helper_trigger_start;
  2279. ops->hw_reset = sde_encoder_helper_hw_reset;
  2280. ops->irq_control = sde_encoder_phys_wb_irq_ctrl;
  2281. ops->add_to_minidump = sde_encoder_phys_wb_add_enc_to_minidump;
  2282. }
  2283. /**
  2284. * sde_encoder_phys_wb_init - initialize writeback encoder
  2285. * @init: Pointer to init info structure with initialization params
  2286. */
  2287. struct sde_encoder_phys *sde_encoder_phys_wb_init(struct sde_enc_phys_init_params *p)
  2288. {
  2289. struct sde_encoder_phys *phys_enc;
  2290. struct sde_encoder_phys_wb *wb_enc;
  2291. const struct sde_wb_cfg *wb_cfg;
  2292. struct sde_hw_mdp *hw_mdp;
  2293. struct sde_encoder_irq *irq;
  2294. int ret = 0, i;
  2295. SDE_DEBUG("\n");
  2296. if (!p || !p->parent) {
  2297. SDE_ERROR("invalid params\n");
  2298. ret = -EINVAL;
  2299. goto fail_alloc;
  2300. }
  2301. wb_enc = kzalloc(sizeof(*wb_enc), GFP_KERNEL);
  2302. if (!wb_enc) {
  2303. SDE_ERROR("failed to allocate wb enc\n");
  2304. ret = -ENOMEM;
  2305. goto fail_alloc;
  2306. }
  2307. phys_enc = &wb_enc->base;
  2308. phys_enc->kickoff_timeout_ms = DEFAULT_KICKOFF_TIMEOUT_MS;
  2309. if (p->sde_kms->vbif[VBIF_NRT]) {
  2310. wb_enc->aspace[SDE_IOMMU_DOMAIN_UNSECURE] =
  2311. p->sde_kms->aspace[MSM_SMMU_DOMAIN_NRT_UNSECURE];
  2312. wb_enc->aspace[SDE_IOMMU_DOMAIN_SECURE] =
  2313. p->sde_kms->aspace[MSM_SMMU_DOMAIN_NRT_SECURE];
  2314. } else {
  2315. wb_enc->aspace[SDE_IOMMU_DOMAIN_UNSECURE] =
  2316. p->sde_kms->aspace[MSM_SMMU_DOMAIN_UNSECURE];
  2317. wb_enc->aspace[SDE_IOMMU_DOMAIN_SECURE] =
  2318. p->sde_kms->aspace[MSM_SMMU_DOMAIN_SECURE];
  2319. }
  2320. hw_mdp = sde_rm_get_mdp(&p->sde_kms->rm);
  2321. if (IS_ERR_OR_NULL(hw_mdp)) {
  2322. ret = PTR_ERR(hw_mdp);
  2323. SDE_ERROR("failed to init hw_top: %d\n", ret);
  2324. goto fail_mdp_init;
  2325. }
  2326. phys_enc->hw_mdptop = hw_mdp;
  2327. /**
  2328. * hw_wb resource permanently assigned to this encoder
  2329. * Other resources allocated at atomic commit time by use case
  2330. */
  2331. if (p->wb_idx != SDE_NONE) {
  2332. struct sde_rm_hw_iter iter;
  2333. sde_rm_init_hw_iter(&iter, 0, SDE_HW_BLK_WB);
  2334. while (sde_rm_get_hw(&p->sde_kms->rm, &iter)) {
  2335. struct sde_hw_wb *hw_wb = to_sde_hw_wb(iter.hw);
  2336. if (hw_wb->idx == p->wb_idx) {
  2337. wb_enc->hw_wb = hw_wb;
  2338. break;
  2339. }
  2340. }
  2341. if (!wb_enc->hw_wb) {
  2342. ret = -EINVAL;
  2343. SDE_ERROR("failed to init hw_wb%d\n", p->wb_idx - WB_0);
  2344. goto fail_wb_init;
  2345. }
  2346. } else {
  2347. ret = -EINVAL;
  2348. SDE_ERROR("invalid wb_idx\n");
  2349. goto fail_wb_check;
  2350. }
  2351. sde_encoder_phys_wb_init_ops(&phys_enc->ops);
  2352. phys_enc->parent = p->parent;
  2353. phys_enc->parent_ops = p->parent_ops;
  2354. phys_enc->sde_kms = p->sde_kms;
  2355. phys_enc->split_role = p->split_role;
  2356. phys_enc->intf_mode = INTF_MODE_WB_LINE;
  2357. phys_enc->intf_idx = p->intf_idx;
  2358. phys_enc->enc_spinlock = p->enc_spinlock;
  2359. atomic_set(&phys_enc->pending_retire_fence_cnt, 0);
  2360. atomic_set(&phys_enc->pending_kickoff_cnt, 0);
  2361. atomic_set(&phys_enc->pending_ctl_start_cnt, 0);
  2362. init_waitqueue_head(&phys_enc->pending_kickoff_wq);
  2363. wb_cfg = wb_enc->hw_wb->caps;
  2364. for (i = 0; i < INTR_IDX_MAX; i++) {
  2365. irq = &phys_enc->irq[i];
  2366. INIT_LIST_HEAD(&irq->cb.list);
  2367. irq->irq_idx = -EINVAL;
  2368. irq->hw_idx = -EINVAL;
  2369. irq->cb.arg = wb_enc;
  2370. }
  2371. irq = &phys_enc->irq[INTR_IDX_WB_DONE];
  2372. irq->name = "wb_done";
  2373. irq->hw_idx = wb_enc->hw_wb->idx;
  2374. irq->intr_type = sde_encoder_phys_wb_get_intr_type(wb_enc->hw_wb);
  2375. irq->intr_idx = INTR_IDX_WB_DONE;
  2376. irq->cb.func = sde_encoder_phys_wb_done_irq;
  2377. irq = &phys_enc->irq[INTR_IDX_CTL_START];
  2378. irq->name = "ctl_start";
  2379. irq->intr_type = SDE_IRQ_TYPE_CTL_START;
  2380. irq->intr_idx = INTR_IDX_CTL_START;
  2381. irq->cb.func = sde_encoder_phys_wb_ctl_start_irq;
  2382. irq = &phys_enc->irq[INTR_IDX_WB_LINEPTR];
  2383. irq->name = "lineptr_irq";
  2384. irq->hw_idx = wb_enc->hw_wb->idx;
  2385. irq->intr_type = SDE_IRQ_TYPE_WB_PROG_LINE;
  2386. irq->intr_idx = INTR_IDX_WB_LINEPTR;
  2387. irq->cb.func = sde_encoder_phys_wb_lineptr_irq;
  2388. if (wb_cfg && (wb_cfg->features & BIT(SDE_WB_HAS_DCWB))) {
  2389. if (test_bit(SDE_HW_HAS_DUAL_DCWB, &wb_cfg->features)) {
  2390. irq = &phys_enc->irq[INTR_IDX_PP_CWB2_OVFL];
  2391. irq->name = "pp_cwb2_overflow";
  2392. irq->hw_idx = PINGPONG_CWB_2;
  2393. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2394. irq->intr_idx = INTR_IDX_PP_CWB2_OVFL;
  2395. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2396. }
  2397. irq = &phys_enc->irq[INTR_IDX_PP_CWB_OVFL];
  2398. irq->name = "pp_cwb0_overflow";
  2399. irq->hw_idx = PINGPONG_CWB_0;
  2400. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2401. irq->intr_idx = INTR_IDX_PP_CWB_OVFL;
  2402. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2403. } else {
  2404. irq = &phys_enc->irq[INTR_IDX_PP1_OVFL];
  2405. irq->name = "pp1_overflow";
  2406. irq->hw_idx = CWB_1;
  2407. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2408. irq->intr_idx = INTR_IDX_PP1_OVFL;
  2409. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2410. irq = &phys_enc->irq[INTR_IDX_PP2_OVFL];
  2411. irq->name = "pp2_overflow";
  2412. irq->hw_idx = CWB_2;
  2413. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2414. irq->intr_idx = INTR_IDX_PP2_OVFL;
  2415. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2416. irq = &phys_enc->irq[INTR_IDX_PP3_OVFL];
  2417. irq->name = "pp3_overflow";
  2418. irq->hw_idx = CWB_3;
  2419. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2420. irq->intr_idx = INTR_IDX_PP3_OVFL;
  2421. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2422. irq = &phys_enc->irq[INTR_IDX_PP4_OVFL];
  2423. irq->name = "pp4_overflow";
  2424. irq->hw_idx = CWB_4;
  2425. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2426. irq->intr_idx = INTR_IDX_PP4_OVFL;
  2427. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2428. irq = &phys_enc->irq[INTR_IDX_PP5_OVFL];
  2429. irq->name = "pp5_overflow";
  2430. irq->hw_idx = CWB_5;
  2431. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  2432. irq->intr_idx = INTR_IDX_PP5_OVFL;
  2433. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  2434. }
  2435. /* create internal buffer for disable logic */
  2436. if (_sde_encoder_phys_wb_init_internal_fb(wb_enc, DRM_FORMAT_RGB888, 2, 1, 6)) {
  2437. SDE_ERROR("[enc:%d, wb:%d] failed to init internal fb\n",
  2438. DRMID(phys_enc->parent), WBID(wb_enc));
  2439. goto fail_wb_init;
  2440. }
  2441. SDE_DEBUG("[enc:%d wb:%d] Created wb_phys\n", DRMID(phys_enc->parent), WBID(wb_enc));
  2442. return phys_enc;
  2443. fail_wb_init:
  2444. fail_wb_check:
  2445. fail_mdp_init:
  2446. kfree(wb_enc);
  2447. fail_alloc:
  2448. return ERR_PTR(ret);
  2449. }