sde_encoder_phys_wb.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #define pr_fmt(fmt) "[drm:%s:%d] " fmt, __func__, __LINE__
  6. #include <linux/debugfs.h>
  7. #include <drm/sde_drm.h>
  8. #include "sde_encoder_phys.h"
  9. #include "sde_formats.h"
  10. #include "sde_hw_top.h"
  11. #include "sde_hw_interrupts.h"
  12. #include "sde_core_irq.h"
  13. #include "sde_wb.h"
  14. #include "sde_vbif.h"
  15. #include "sde_crtc.h"
  16. #define to_sde_encoder_phys_wb(x) \
  17. container_of(x, struct sde_encoder_phys_wb, base)
  18. #define WBID(wb_enc) \
  19. ((wb_enc && wb_enc->wb_dev) ? wb_enc->wb_dev->wb_idx - WB_0 : -1)
  20. #define TO_S15D16(_x_) ((_x_) << 7)
  21. #define SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg) \
  22. (SDE_FORMAT_IS_UBWC(fmt) ? wb_cfg->sblk->maxlinewidth : \
  23. wb_cfg->sblk->maxlinewidth_linear)
  24. static const u32 cwb_irq_tbl[PINGPONG_MAX] = {SDE_NONE, INTR_IDX_PP1_OVFL,
  25. INTR_IDX_PP2_OVFL, INTR_IDX_PP3_OVFL, INTR_IDX_PP4_OVFL,
  26. INTR_IDX_PP5_OVFL, SDE_NONE, SDE_NONE};
  27. /**
  28. * sde_rgb2yuv_601l - rgb to yuv color space conversion matrix
  29. *
  30. */
  31. static struct sde_csc_cfg sde_encoder_phys_wb_rgb2yuv_601l = {
  32. {
  33. TO_S15D16(0x0083), TO_S15D16(0x0102), TO_S15D16(0x0032),
  34. TO_S15D16(0x1fb5), TO_S15D16(0x1f6c), TO_S15D16(0x00e1),
  35. TO_S15D16(0x00e1), TO_S15D16(0x1f45), TO_S15D16(0x1fdc)
  36. },
  37. { 0x00, 0x00, 0x00 },
  38. { 0x0040, 0x0200, 0x0200 },
  39. { 0x000, 0x3ff, 0x000, 0x3ff, 0x000, 0x3ff },
  40. { 0x040, 0x3ac, 0x040, 0x3c0, 0x040, 0x3c0 },
  41. };
  42. /**
  43. * sde_encoder_phys_wb_is_master - report wb always as master encoder
  44. */
  45. static bool sde_encoder_phys_wb_is_master(struct sde_encoder_phys *phys_enc)
  46. {
  47. return true;
  48. }
  49. /**
  50. * sde_encoder_phys_wb_get_intr_type - get interrupt type based on block mode
  51. * @hw_wb: Pointer to h/w writeback driver
  52. */
  53. static enum sde_intr_type sde_encoder_phys_wb_get_intr_type(
  54. struct sde_hw_wb *hw_wb)
  55. {
  56. return (hw_wb->caps->features & BIT(SDE_WB_BLOCK_MODE)) ?
  57. SDE_IRQ_TYPE_WB_ROT_COMP : SDE_IRQ_TYPE_WB_WFD_COMP;
  58. }
  59. /**
  60. * sde_encoder_phys_wb_set_ot_limit - set OT limit for writeback interface
  61. * @phys_enc: Pointer to physical encoder
  62. */
  63. static void sde_encoder_phys_wb_set_ot_limit(
  64. struct sde_encoder_phys *phys_enc)
  65. {
  66. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  67. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  68. struct sde_vbif_set_ot_params ot_params;
  69. memset(&ot_params, 0, sizeof(ot_params));
  70. ot_params.xin_id = hw_wb->caps->xin_id;
  71. ot_params.num = hw_wb->idx - WB_0;
  72. ot_params.width = wb_enc->wb_roi.w;
  73. ot_params.height = wb_enc->wb_roi.h;
  74. ot_params.is_wfd = true;
  75. ot_params.frame_rate = drm_mode_vrefresh(&phys_enc->cached_mode);
  76. ot_params.vbif_idx = hw_wb->caps->vbif_idx;
  77. ot_params.clk_ctrl = hw_wb->caps->clk_ctrl;
  78. ot_params.rd = false;
  79. sde_vbif_set_ot_limit(phys_enc->sde_kms, &ot_params);
  80. }
  81. /**
  82. * sde_encoder_phys_wb_set_qos_remap - set QoS remapper for writeback
  83. * @phys_enc: Pointer to physical encoder
  84. */
  85. static void sde_encoder_phys_wb_set_qos_remap(
  86. struct sde_encoder_phys *phys_enc)
  87. {
  88. struct sde_encoder_phys_wb *wb_enc;
  89. struct sde_hw_wb *hw_wb;
  90. struct drm_crtc *crtc;
  91. struct sde_vbif_set_qos_params qos_params;
  92. if (!phys_enc || !phys_enc->parent || !phys_enc->parent->crtc) {
  93. SDE_ERROR("invalid arguments\n");
  94. return;
  95. }
  96. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  97. if (!wb_enc->crtc) {
  98. SDE_ERROR("invalid crtc");
  99. return;
  100. }
  101. crtc = wb_enc->crtc;
  102. if (!wb_enc->hw_wb || !wb_enc->hw_wb->caps) {
  103. SDE_ERROR("invalid writeback hardware\n");
  104. return;
  105. }
  106. hw_wb = wb_enc->hw_wb;
  107. memset(&qos_params, 0, sizeof(qos_params));
  108. qos_params.vbif_idx = hw_wb->caps->vbif_idx;
  109. qos_params.xin_id = hw_wb->caps->xin_id;
  110. qos_params.clk_ctrl = hw_wb->caps->clk_ctrl;
  111. qos_params.num = hw_wb->idx - WB_0;
  112. qos_params.client_type = phys_enc->in_clone_mode ?
  113. VBIF_CWB_CLIENT : VBIF_NRT_CLIENT;
  114. SDE_DEBUG("[qos_remap] wb:%d vbif:%d xin:%d clone:%d\n",
  115. qos_params.num,
  116. qos_params.vbif_idx,
  117. qos_params.xin_id, qos_params.client_type);
  118. sde_vbif_set_qos_remap(phys_enc->sde_kms, &qos_params);
  119. }
  120. /**
  121. * sde_encoder_phys_wb_set_qos - set QoS/danger/safe LUTs for writeback
  122. * @phys_enc: Pointer to physical encoder
  123. */
  124. static void sde_encoder_phys_wb_set_qos(struct sde_encoder_phys *phys_enc)
  125. {
  126. struct sde_encoder_phys_wb *wb_enc;
  127. struct sde_hw_wb *hw_wb;
  128. struct sde_hw_wb_qos_cfg qos_cfg = {0};
  129. struct sde_perf_cfg *perf;
  130. u32 fps_index = 0, lut_index, index, frame_rate, qos_count;
  131. if (!phys_enc || !phys_enc->sde_kms || !phys_enc->sde_kms->catalog) {
  132. SDE_ERROR("invalid parameter(s)\n");
  133. return;
  134. }
  135. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  136. if (!wb_enc->hw_wb) {
  137. SDE_ERROR("invalid writeback hardware\n");
  138. return;
  139. }
  140. perf = &phys_enc->sde_kms->catalog->perf;
  141. frame_rate = drm_mode_vrefresh(&phys_enc->cached_mode);
  142. hw_wb = wb_enc->hw_wb;
  143. qos_count = perf->qos_refresh_count;
  144. while ((fps_index < qos_count) && perf->qos_refresh_rate) {
  145. if ((frame_rate <= perf->qos_refresh_rate[fps_index]) ||
  146. (fps_index == qos_count - 1))
  147. break;
  148. fps_index++;
  149. }
  150. qos_cfg.danger_safe_en = true;
  151. if (phys_enc->in_clone_mode)
  152. lut_index = SDE_QOS_LUT_USAGE_CWB;
  153. else
  154. lut_index = SDE_QOS_LUT_USAGE_NRT;
  155. index = (fps_index * SDE_QOS_LUT_USAGE_MAX) + lut_index;
  156. qos_cfg.danger_lut = perf->danger_lut[index];
  157. qos_cfg.safe_lut = (u32) perf->safe_lut[index];
  158. qos_cfg.creq_lut = perf->creq_lut[index];
  159. SDE_DEBUG("wb_enc:%d hw idx:%d fps:%d mode:%d luts[0x%x,0x%x 0x%llx]\n",
  160. DRMID(phys_enc->parent), hw_wb->idx - WB_0,
  161. frame_rate, phys_enc->in_clone_mode,
  162. qos_cfg.danger_lut, qos_cfg.safe_lut, qos_cfg.creq_lut);
  163. if (hw_wb->ops.setup_qos_lut)
  164. hw_wb->ops.setup_qos_lut(hw_wb, &qos_cfg);
  165. }
  166. /**
  167. * sde_encoder_phys_setup_cdm - setup chroma down block
  168. * @phys_enc: Pointer to physical encoder
  169. * @fb: Pointer to output framebuffer
  170. * @format: Output format
  171. */
  172. void sde_encoder_phys_setup_cdm(struct sde_encoder_phys *phys_enc,
  173. struct drm_framebuffer *fb, const struct sde_format *format,
  174. struct sde_rect *wb_roi)
  175. {
  176. struct sde_hw_cdm *hw_cdm;
  177. struct sde_hw_cdm_cfg *cdm_cfg;
  178. struct sde_hw_pingpong *hw_pp;
  179. int ret;
  180. if (!phys_enc || !format)
  181. return;
  182. cdm_cfg = &phys_enc->cdm_cfg;
  183. hw_pp = phys_enc->hw_pp;
  184. hw_cdm = phys_enc->hw_cdm;
  185. if (!hw_cdm)
  186. return;
  187. if (!SDE_FORMAT_IS_YUV(format)) {
  188. SDE_DEBUG("[cdm_disable fmt:%x]\n",
  189. format->base.pixel_format);
  190. if (hw_cdm && hw_cdm->ops.disable)
  191. hw_cdm->ops.disable(hw_cdm);
  192. return;
  193. }
  194. memset(cdm_cfg, 0, sizeof(struct sde_hw_cdm_cfg));
  195. if (!wb_roi)
  196. return;
  197. cdm_cfg->output_width = wb_roi->w;
  198. cdm_cfg->output_height = wb_roi->h;
  199. cdm_cfg->output_fmt = format;
  200. cdm_cfg->output_type = CDM_CDWN_OUTPUT_WB;
  201. cdm_cfg->output_bit_depth = SDE_FORMAT_IS_DX(format) ?
  202. CDM_CDWN_OUTPUT_10BIT : CDM_CDWN_OUTPUT_8BIT;
  203. /* enable 10 bit logic */
  204. switch (cdm_cfg->output_fmt->chroma_sample) {
  205. case SDE_CHROMA_RGB:
  206. cdm_cfg->h_cdwn_type = CDM_CDWN_DISABLE;
  207. cdm_cfg->v_cdwn_type = CDM_CDWN_DISABLE;
  208. break;
  209. case SDE_CHROMA_H2V1:
  210. cdm_cfg->h_cdwn_type = CDM_CDWN_COSITE;
  211. cdm_cfg->v_cdwn_type = CDM_CDWN_DISABLE;
  212. break;
  213. case SDE_CHROMA_420:
  214. cdm_cfg->h_cdwn_type = CDM_CDWN_COSITE;
  215. cdm_cfg->v_cdwn_type = CDM_CDWN_OFFSITE;
  216. break;
  217. case SDE_CHROMA_H1V2:
  218. default:
  219. SDE_ERROR("unsupported chroma sampling type\n");
  220. cdm_cfg->h_cdwn_type = CDM_CDWN_DISABLE;
  221. cdm_cfg->v_cdwn_type = CDM_CDWN_DISABLE;
  222. break;
  223. }
  224. SDE_DEBUG("[cdm_enable:%d,%d,%X,%d,%d,%d,%d]\n",
  225. cdm_cfg->output_width,
  226. cdm_cfg->output_height,
  227. cdm_cfg->output_fmt->base.pixel_format,
  228. cdm_cfg->output_type,
  229. cdm_cfg->output_bit_depth,
  230. cdm_cfg->h_cdwn_type,
  231. cdm_cfg->v_cdwn_type);
  232. if (hw_cdm && hw_cdm->ops.setup_csc_data) {
  233. ret = hw_cdm->ops.setup_csc_data(hw_cdm,
  234. &sde_encoder_phys_wb_rgb2yuv_601l);
  235. if (ret < 0) {
  236. SDE_ERROR("failed to setup CSC %d\n", ret);
  237. return;
  238. }
  239. }
  240. if (hw_cdm && hw_cdm->ops.setup_cdwn) {
  241. ret = hw_cdm->ops.setup_cdwn(hw_cdm, cdm_cfg);
  242. if (ret < 0) {
  243. SDE_ERROR("failed to setup CDM %d\n", ret);
  244. return;
  245. }
  246. }
  247. if (hw_cdm && hw_pp && hw_cdm->ops.enable) {
  248. cdm_cfg->pp_id = hw_pp->idx;
  249. ret = hw_cdm->ops.enable(hw_cdm, cdm_cfg);
  250. if (ret < 0) {
  251. SDE_ERROR("failed to enable CDM %d\n", ret);
  252. return;
  253. }
  254. }
  255. }
  256. /**
  257. * sde_encoder_phys_wb_setup_fb - setup output framebuffer
  258. * @phys_enc: Pointer to physical encoder
  259. * @fb: Pointer to output framebuffer
  260. * @wb_roi: Pointer to output region of interest
  261. */
  262. static void sde_encoder_phys_wb_setup_fb(struct sde_encoder_phys *phys_enc,
  263. struct drm_framebuffer *fb, struct sde_rect *wb_roi)
  264. {
  265. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  266. struct sde_hw_wb *hw_wb;
  267. struct sde_hw_wb_cfg *wb_cfg;
  268. struct sde_hw_wb_cdp_cfg *cdp_cfg;
  269. const struct msm_format *format;
  270. int ret;
  271. struct msm_gem_address_space *aspace;
  272. u32 fb_mode;
  273. if (!phys_enc || !phys_enc->sde_kms || !phys_enc->sde_kms->catalog ||
  274. !phys_enc->connector) {
  275. SDE_ERROR("invalid encoder\n");
  276. return;
  277. }
  278. hw_wb = wb_enc->hw_wb;
  279. wb_cfg = &wb_enc->wb_cfg;
  280. cdp_cfg = &wb_enc->cdp_cfg;
  281. memset(wb_cfg, 0, sizeof(struct sde_hw_wb_cfg));
  282. wb_cfg->intf_mode = phys_enc->intf_mode;
  283. fb_mode = sde_connector_get_property(phys_enc->connector->state,
  284. CONNECTOR_PROP_FB_TRANSLATION_MODE);
  285. if (phys_enc->enable_state == SDE_ENC_DISABLING)
  286. wb_cfg->is_secure = false;
  287. else if (fb_mode == SDE_DRM_FB_SEC)
  288. wb_cfg->is_secure = true;
  289. else
  290. wb_cfg->is_secure = false;
  291. aspace = (wb_cfg->is_secure) ?
  292. wb_enc->aspace[SDE_IOMMU_DOMAIN_SECURE] :
  293. wb_enc->aspace[SDE_IOMMU_DOMAIN_UNSECURE];
  294. SDE_DEBUG("[fb_secure:%d]\n", wb_cfg->is_secure);
  295. ret = msm_framebuffer_prepare(fb, aspace);
  296. if (ret) {
  297. SDE_ERROR("prep fb failed, %d\n", ret);
  298. return;
  299. }
  300. /* cache framebuffer for cleanup in writeback done */
  301. wb_enc->wb_fb = fb;
  302. wb_enc->wb_aspace = aspace;
  303. drm_framebuffer_get(fb);
  304. format = msm_framebuffer_format(fb);
  305. if (!format) {
  306. SDE_DEBUG("invalid format for fb\n");
  307. return;
  308. }
  309. wb_cfg->dest.format = sde_get_sde_format_ext(
  310. format->pixel_format,
  311. fb->modifier);
  312. if (!wb_cfg->dest.format) {
  313. /* this error should be detected during atomic_check */
  314. SDE_ERROR("failed to get format %x\n", format->pixel_format);
  315. return;
  316. }
  317. wb_cfg->roi = *wb_roi;
  318. if (hw_wb->caps->features & BIT(SDE_WB_XY_ROI_OFFSET)) {
  319. ret = sde_format_populate_layout(aspace, fb, &wb_cfg->dest);
  320. if (ret) {
  321. SDE_DEBUG("failed to populate layout %d\n", ret);
  322. return;
  323. }
  324. wb_cfg->dest.width = fb->width;
  325. wb_cfg->dest.height = fb->height;
  326. wb_cfg->dest.num_planes = wb_cfg->dest.format->num_planes;
  327. } else {
  328. ret = sde_format_populate_layout_with_roi(aspace, fb, wb_roi,
  329. &wb_cfg->dest);
  330. if (ret) {
  331. /* this error should be detected during atomic_check */
  332. SDE_DEBUG("failed to populate layout %d\n", ret);
  333. return;
  334. }
  335. }
  336. if ((wb_cfg->dest.format->fetch_planes == SDE_PLANE_PLANAR) &&
  337. (wb_cfg->dest.format->element[0] == C1_B_Cb))
  338. swap(wb_cfg->dest.plane_addr[1], wb_cfg->dest.plane_addr[2]);
  339. SDE_DEBUG("[fb_offset:%8.8x,%8.8x,%8.8x,%8.8x]\n",
  340. wb_cfg->dest.plane_addr[0],
  341. wb_cfg->dest.plane_addr[1],
  342. wb_cfg->dest.plane_addr[2],
  343. wb_cfg->dest.plane_addr[3]);
  344. SDE_DEBUG("[fb_stride:%8.8x,%8.8x,%8.8x,%8.8x]\n",
  345. wb_cfg->dest.plane_pitch[0],
  346. wb_cfg->dest.plane_pitch[1],
  347. wb_cfg->dest.plane_pitch[2],
  348. wb_cfg->dest.plane_pitch[3]);
  349. if (hw_wb->ops.setup_roi)
  350. hw_wb->ops.setup_roi(hw_wb, wb_cfg);
  351. if (hw_wb->ops.setup_outformat)
  352. hw_wb->ops.setup_outformat(hw_wb, wb_cfg);
  353. if (hw_wb->ops.setup_cdp) {
  354. memset(cdp_cfg, 0, sizeof(struct sde_hw_wb_cdp_cfg));
  355. cdp_cfg->enable = phys_enc->sde_kms->catalog->perf.cdp_cfg
  356. [SDE_PERF_CDP_USAGE_NRT].wr_enable;
  357. cdp_cfg->ubwc_meta_enable =
  358. SDE_FORMAT_IS_UBWC(wb_cfg->dest.format);
  359. cdp_cfg->tile_amortize_enable =
  360. SDE_FORMAT_IS_UBWC(wb_cfg->dest.format) ||
  361. SDE_FORMAT_IS_TILE(wb_cfg->dest.format);
  362. cdp_cfg->preload_ahead = SDE_WB_CDP_PRELOAD_AHEAD_64;
  363. hw_wb->ops.setup_cdp(hw_wb, cdp_cfg);
  364. }
  365. if (hw_wb->ops.setup_outaddress) {
  366. SDE_EVT32(hw_wb->idx,
  367. wb_cfg->dest.width,
  368. wb_cfg->dest.height,
  369. wb_cfg->dest.plane_addr[0],
  370. wb_cfg->dest.plane_size[0],
  371. wb_cfg->dest.plane_addr[1],
  372. wb_cfg->dest.plane_size[1],
  373. wb_cfg->dest.plane_addr[2],
  374. wb_cfg->dest.plane_size[2],
  375. wb_cfg->dest.plane_addr[3],
  376. wb_cfg->dest.plane_size[3]);
  377. hw_wb->ops.setup_outaddress(hw_wb, wb_cfg);
  378. }
  379. }
  380. static void _sde_encoder_phys_wb_setup_cwb(struct sde_encoder_phys *phys_enc,
  381. bool enable)
  382. {
  383. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  384. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  385. struct sde_hw_ctl *hw_ctl = phys_enc->hw_ctl;
  386. struct sde_crtc *crtc = to_sde_crtc(wb_enc->crtc);
  387. struct sde_hw_pingpong *hw_pp = phys_enc->hw_pp;
  388. bool need_merge = (crtc->num_mixers > 1);
  389. int i = 0;
  390. if (!phys_enc->in_clone_mode) {
  391. SDE_DEBUG("not in CWB mode. early return\n");
  392. return;
  393. }
  394. if (!hw_pp || !hw_ctl || !hw_wb || hw_pp->idx >= PINGPONG_MAX) {
  395. SDE_ERROR("invalid hw resources - return\n");
  396. return;
  397. }
  398. hw_ctl = crtc->mixers[0].hw_ctl;
  399. if (hw_ctl && hw_ctl->ops.setup_intf_cfg_v1 &&
  400. test_bit(SDE_WB_CWB_CTRL | SDE_WB_DCWB_CTRL,
  401. &hw_wb->caps->features)) {
  402. struct sde_hw_intf_cfg_v1 intf_cfg = { 0, };
  403. for (i = 0; i < crtc->num_mixers; i++)
  404. intf_cfg.cwb[intf_cfg.cwb_count++] = (enum sde_cwb)
  405. (test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features) ?
  406. ((hw_pp->idx % 2) + i) : (hw_pp->idx + i));
  407. if (hw_pp->merge_3d && (intf_cfg.merge_3d_count <
  408. MAX_MERGE_3D_PER_CTL_V1) && need_merge)
  409. intf_cfg.merge_3d[intf_cfg.merge_3d_count++] =
  410. hw_pp->merge_3d->idx;
  411. if (hw_pp->ops.setup_3d_mode)
  412. hw_pp->ops.setup_3d_mode(hw_pp, (enable && need_merge) ?
  413. BLEND_3D_H_ROW_INT : 0);
  414. if ((hw_wb->ops.bind_pingpong_blk) &&
  415. test_bit(SDE_WB_CWB_CTRL, &hw_wb->caps->features))
  416. hw_wb->ops.bind_pingpong_blk(hw_wb, enable, hw_pp->idx);
  417. if ((hw_wb->ops.bind_dcwb_pp_blk) &&
  418. test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features))
  419. hw_wb->ops.bind_dcwb_pp_blk(hw_wb, enable, hw_pp->idx);
  420. if (hw_ctl->ops.update_intf_cfg) {
  421. hw_ctl->ops.update_intf_cfg(hw_ctl, &intf_cfg, enable);
  422. SDE_DEBUG("in CWB/DCWB mode on CTL_%d PP-%d merge3d:%d\n",
  423. hw_ctl->idx - CTL_0,
  424. hw_pp->idx - PINGPONG_0,
  425. hw_pp->merge_3d ?
  426. hw_pp->merge_3d->idx - MERGE_3D_0 : -1);
  427. }
  428. } else {
  429. struct sde_hw_intf_cfg *intf_cfg = &phys_enc->intf_cfg;
  430. memset(intf_cfg, 0, sizeof(struct sde_hw_intf_cfg));
  431. intf_cfg->intf = SDE_NONE;
  432. intf_cfg->wb = hw_wb->idx;
  433. if (hw_ctl && hw_ctl->ops.update_wb_cfg) {
  434. hw_ctl->ops.update_wb_cfg(hw_ctl, intf_cfg, enable);
  435. SDE_DEBUG("in CWB/DCWB mode adding WB for CTL_%d\n",
  436. hw_ctl->idx - CTL_0);
  437. }
  438. }
  439. }
  440. /**
  441. * sde_encoder_phys_wb_setup_cdp - setup chroma down prefetch block
  442. * @phys_enc: Pointer to physical encoder
  443. */
  444. static void sde_encoder_phys_wb_setup_cdp(struct sde_encoder_phys *phys_enc,
  445. const struct sde_format *format)
  446. {
  447. struct sde_encoder_phys_wb *wb_enc;
  448. struct sde_hw_wb *hw_wb;
  449. struct sde_hw_cdm *hw_cdm;
  450. struct sde_hw_ctl *ctl;
  451. const int num_wb = 1;
  452. if (!phys_enc) {
  453. SDE_ERROR("invalid encoder\n");
  454. return;
  455. }
  456. if (phys_enc->in_clone_mode) {
  457. SDE_DEBUG("in CWB mode. early return\n");
  458. return;
  459. }
  460. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  461. hw_wb = wb_enc->hw_wb;
  462. hw_cdm = phys_enc->hw_cdm;
  463. ctl = phys_enc->hw_ctl;
  464. if (test_bit(SDE_CTL_ACTIVE_CFG, &ctl->caps->features) &&
  465. (phys_enc->hw_ctl &&
  466. phys_enc->hw_ctl->ops.setup_intf_cfg_v1)) {
  467. struct sde_hw_intf_cfg_v1 *intf_cfg_v1 = &phys_enc->intf_cfg_v1;
  468. struct sde_hw_pingpong *hw_pp = phys_enc->hw_pp;
  469. enum sde_3d_blend_mode mode_3d;
  470. memset(intf_cfg_v1, 0, sizeof(struct sde_hw_intf_cfg_v1));
  471. mode_3d = sde_encoder_helper_get_3d_blend_mode(phys_enc);
  472. intf_cfg_v1->intf_count = SDE_NONE;
  473. intf_cfg_v1->wb_count = num_wb;
  474. intf_cfg_v1->wb[0] = hw_wb->idx;
  475. if (SDE_FORMAT_IS_YUV(format)) {
  476. intf_cfg_v1->cdm_count = num_wb;
  477. intf_cfg_v1->cdm[0] = hw_cdm->idx;
  478. }
  479. if (mode_3d && hw_pp && hw_pp->merge_3d &&
  480. intf_cfg_v1->merge_3d_count < MAX_MERGE_3D_PER_CTL_V1)
  481. intf_cfg_v1->merge_3d[intf_cfg_v1->merge_3d_count++] =
  482. hw_pp->merge_3d->idx;
  483. if (hw_pp && hw_pp->ops.setup_3d_mode)
  484. hw_pp->ops.setup_3d_mode(hw_pp, mode_3d);
  485. /* setup which pp blk will connect to this wb */
  486. if (hw_pp && hw_wb->ops.bind_pingpong_blk)
  487. hw_wb->ops.bind_pingpong_blk(hw_wb, true,
  488. hw_pp->idx);
  489. phys_enc->hw_ctl->ops.setup_intf_cfg_v1(phys_enc->hw_ctl,
  490. intf_cfg_v1);
  491. } else if (phys_enc->hw_ctl && phys_enc->hw_ctl->ops.setup_intf_cfg) {
  492. struct sde_hw_intf_cfg *intf_cfg = &phys_enc->intf_cfg;
  493. memset(intf_cfg, 0, sizeof(struct sde_hw_intf_cfg));
  494. intf_cfg->intf = SDE_NONE;
  495. intf_cfg->wb = hw_wb->idx;
  496. intf_cfg->mode_3d =
  497. sde_encoder_helper_get_3d_blend_mode(phys_enc);
  498. phys_enc->hw_ctl->ops.setup_intf_cfg(phys_enc->hw_ctl,
  499. intf_cfg);
  500. }
  501. }
  502. static void _sde_enc_phys_wb_detect_cwb(struct sde_encoder_phys *phys_enc,
  503. struct drm_crtc_state *crtc_state)
  504. {
  505. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  506. const struct sde_wb_cfg *wb_cfg = wb_enc->hw_wb->caps;
  507. u32 encoder_mask = 0;
  508. /* Check if WB has CWB support */
  509. if ((wb_cfg->features & BIT(SDE_WB_HAS_CWB))
  510. || (wb_cfg->features & BIT(SDE_WB_HAS_DCWB))) {
  511. encoder_mask = crtc_state->encoder_mask;
  512. encoder_mask &= ~drm_encoder_mask(phys_enc->parent);
  513. }
  514. phys_enc->in_clone_mode = encoder_mask ? true : false;
  515. SDE_DEBUG("detect CWB(OR)DCWB - status:%d\n", phys_enc->in_clone_mode);
  516. }
  517. static int _sde_enc_phys_wb_validate_cwb(struct sde_encoder_phys *phys_enc,
  518. struct drm_crtc_state *crtc_state,
  519. struct drm_connector_state *conn_state)
  520. {
  521. struct drm_framebuffer *fb;
  522. struct sde_crtc_state *cstate = to_sde_crtc_state(crtc_state);
  523. const struct drm_display_mode *mode = &crtc_state->mode;
  524. struct sde_rect wb_roi = {0,};
  525. struct sde_rect pu_roi = {0,};
  526. int out_width = 0, out_height = 0;
  527. int ds_srcw = 0, ds_srch = 0, ds_outw = 0, ds_outh = 0;
  528. int data_pt;
  529. int ds_in_use = false;
  530. int i = 0;
  531. int ret = 0;
  532. fb = sde_wb_connector_state_get_output_fb(conn_state);
  533. if (!fb) {
  534. SDE_DEBUG("no output framebuffer\n");
  535. return 0;
  536. }
  537. ret = sde_wb_connector_state_get_output_roi(conn_state, &wb_roi);
  538. if (ret) {
  539. SDE_ERROR("failed to get roi %d\n", ret);
  540. return ret;
  541. }
  542. if (!wb_roi.w || !wb_roi.h) {
  543. SDE_ERROR("cwb roi is not set wxh:%dx%d\n", wb_roi.w, wb_roi.h);
  544. return -EINVAL;
  545. }
  546. data_pt = sde_crtc_get_property(cstate, CRTC_PROP_CAPTURE_OUTPUT);
  547. /* compute cumulative ds output dimensions if in use */
  548. for (i = 0; i < cstate->num_ds; i++) {
  549. if (cstate->ds_cfg[i].scl3_cfg.enable) {
  550. ds_in_use = true;
  551. ds_outw += cstate->ds_cfg[i].scl3_cfg.dst_width;
  552. ds_outh = cstate->ds_cfg[i].scl3_cfg.dst_height;
  553. ds_srcw += cstate->ds_cfg[i].lm_width;
  554. ds_srch = cstate->ds_cfg[i].lm_height;
  555. }
  556. }
  557. if ((ds_in_use && (!ds_outw || !ds_outh || !ds_srcw || !ds_srch))) {
  558. SDE_ERROR("invalid ds cfg src:%dx%d dst:%dx%d\n",
  559. ds_srcw, ds_srch, ds_outw, ds_outh);
  560. return -EINVAL;
  561. }
  562. /* 1) No DS case: same restrictions for LM & DSSPP tap point
  563. * a) wb-roi should be inside FB
  564. * b) mode resolution & wb-roi should be same
  565. * 2) With DS case: restrictions would change based on tap point
  566. * 2.1) LM Tap Point:
  567. * a) wb-roi should be inside FB
  568. * b) wb-roi should be same as crtc-LM bounds
  569. * 2.2) DSPP Tap point: same as No DS case
  570. * a) wb-roi should be inside FB
  571. * b) mode resolution & wb-roi should be same
  572. */
  573. if (ds_in_use && data_pt == CAPTURE_DSPP_OUT) {
  574. out_width = ds_outw;
  575. out_height = ds_outh;
  576. } else if (ds_in_use) { /* LM tap point */
  577. out_width = ds_srcw;
  578. out_height = ds_srch;
  579. } else {
  580. out_width = mode->hdisplay;
  581. out_height = mode->vdisplay;
  582. }
  583. if ((wb_roi.w != out_width) || (wb_roi.h != out_height)) {
  584. SDE_ERROR("invalid wb roi[%dx%d] with ds_use:%d out[%dx%d]\n",
  585. wb_roi.w, wb_roi.h, out_width, out_height);
  586. return -EINVAL;
  587. }
  588. if (((wb_roi.x + wb_roi.w) > fb->width) ||
  589. ((wb_roi.y + wb_roi.h) > fb->height)) {
  590. SDE_ERROR("invalid wb roi[%d,%d,%d,%d] fb[%dx%d]\n",
  591. wb_roi.x, wb_roi.y, wb_roi.w, wb_roi.h,
  592. fb->width, fb->height);
  593. return -EINVAL;
  594. }
  595. /* validate wb roi against pu rect */
  596. if (cstate->user_roi_list.num_rects) {
  597. sde_kms_rect_merge_rectangles(&cstate->user_roi_list, &pu_roi);
  598. if (wb_roi.w != pu_roi.w || wb_roi.h != pu_roi.h) {
  599. SDE_ERROR("invalid wb roi with pu [%dx%d vs %dx%d]\n",
  600. wb_roi.w, wb_roi.h, pu_roi.w, pu_roi.h);
  601. return -EINVAL;
  602. }
  603. }
  604. return ret;
  605. }
  606. /**
  607. * sde_encoder_phys_wb_atomic_check - verify and fixup given atomic states
  608. * @phys_enc: Pointer to physical encoder
  609. * @crtc_state: Pointer to CRTC atomic state
  610. * @conn_state: Pointer to connector atomic state
  611. */
  612. static int sde_encoder_phys_wb_atomic_check(
  613. struct sde_encoder_phys *phys_enc,
  614. struct drm_crtc_state *crtc_state,
  615. struct drm_connector_state *conn_state)
  616. {
  617. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  618. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  619. const struct sde_wb_cfg *wb_cfg = hw_wb->caps;
  620. struct drm_framebuffer *fb;
  621. const struct sde_format *fmt;
  622. struct sde_rect wb_roi;
  623. const struct drm_display_mode *mode = &crtc_state->mode;
  624. int rc;
  625. bool clone_mode_curr = false;
  626. SDE_DEBUG("[atomic_check:%d,\"%s\",%d,%d]\n",
  627. hw_wb->idx - WB_0, mode->name,
  628. mode->hdisplay, mode->vdisplay);
  629. if (!conn_state || !conn_state->connector) {
  630. SDE_ERROR("invalid connector state\n");
  631. return -EINVAL;
  632. } else if (conn_state->connector->status !=
  633. connector_status_connected) {
  634. SDE_ERROR("connector not connected %d\n",
  635. conn_state->connector->status);
  636. return -EINVAL;
  637. }
  638. clone_mode_curr = phys_enc->in_clone_mode;
  639. _sde_enc_phys_wb_detect_cwb(phys_enc, crtc_state);
  640. if (clone_mode_curr && !phys_enc->in_clone_mode) {
  641. SDE_ERROR("WB commit before CWB disable\n");
  642. return -EINVAL;
  643. }
  644. memset(&wb_roi, 0, sizeof(struct sde_rect));
  645. rc = sde_wb_connector_state_get_output_roi(conn_state, &wb_roi);
  646. if (rc) {
  647. SDE_ERROR("failed to get roi %d\n", rc);
  648. return rc;
  649. }
  650. SDE_DEBUG("[roi:%u,%u,%u,%u]\n", wb_roi.x, wb_roi.y,
  651. wb_roi.w, wb_roi.h);
  652. /* bypass check if commit with no framebuffer */
  653. fb = sde_wb_connector_state_get_output_fb(conn_state);
  654. if (!fb) {
  655. SDE_DEBUG("no output framebuffer\n");
  656. return 0;
  657. }
  658. SDE_DEBUG("[fb_id:%u][fb:%u,%u]\n", fb->base.id,
  659. fb->width, fb->height);
  660. fmt = sde_get_sde_format_ext(fb->format->format, fb->modifier);
  661. if (!fmt) {
  662. SDE_ERROR("unsupported output pixel format:%x\n",
  663. fb->format->format);
  664. return -EINVAL;
  665. }
  666. SDE_DEBUG("[fb_fmt:%x,%llx]\n", fb->format->format,
  667. fb->modifier);
  668. if (SDE_FORMAT_IS_YUV(fmt) &&
  669. !(wb_cfg->features & BIT(SDE_WB_YUV_CONFIG))) {
  670. SDE_ERROR("invalid output format %x\n", fmt->base.pixel_format);
  671. return -EINVAL;
  672. }
  673. if (SDE_FORMAT_IS_UBWC(fmt) &&
  674. !(wb_cfg->features & BIT(SDE_WB_UBWC))) {
  675. SDE_ERROR("invalid output format %x\n", fmt->base.pixel_format);
  676. return -EINVAL;
  677. }
  678. if (SDE_FORMAT_IS_YUV(fmt) != !!phys_enc->hw_cdm)
  679. crtc_state->mode_changed = true;
  680. /* if in clone mode, return after cwb validation */
  681. if (phys_enc->in_clone_mode) {
  682. rc = _sde_enc_phys_wb_validate_cwb(phys_enc, crtc_state,
  683. conn_state);
  684. if (rc)
  685. SDE_ERROR("failed in cwb validation %d\n", rc);
  686. return rc;
  687. }
  688. if (wb_roi.w && wb_roi.h) {
  689. if (wb_roi.w != mode->hdisplay) {
  690. SDE_ERROR("invalid roi w=%d, mode w=%d\n", wb_roi.w,
  691. mode->hdisplay);
  692. return -EINVAL;
  693. } else if (wb_roi.h != mode->vdisplay) {
  694. SDE_ERROR("invalid roi h=%d, mode h=%d\n", wb_roi.h,
  695. mode->vdisplay);
  696. return -EINVAL;
  697. } else if (wb_roi.x + wb_roi.w > fb->width) {
  698. SDE_ERROR("invalid roi x=%d, w=%d, fb w=%d\n",
  699. wb_roi.x, wb_roi.w, fb->width);
  700. return -EINVAL;
  701. } else if (wb_roi.y + wb_roi.h > fb->height) {
  702. SDE_ERROR("invalid roi y=%d, h=%d, fb h=%d\n",
  703. wb_roi.y, wb_roi.h, fb->height);
  704. return -EINVAL;
  705. } else if (wb_roi.w > SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg)) {
  706. SDE_ERROR("invalid roi ubwc=%d w=%d, maxlinewidth=%u\n",
  707. SDE_FORMAT_IS_UBWC(fmt), wb_roi.w,
  708. SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg));
  709. return -EINVAL;
  710. }
  711. } else {
  712. if (wb_roi.x || wb_roi.y) {
  713. SDE_ERROR("invalid roi x=%d, y=%d\n",
  714. wb_roi.x, wb_roi.y);
  715. return -EINVAL;
  716. } else if (fb->width != mode->hdisplay) {
  717. SDE_ERROR("invalid fb w=%d, mode w=%d\n", fb->width,
  718. mode->hdisplay);
  719. return -EINVAL;
  720. } else if (fb->height != mode->vdisplay) {
  721. SDE_ERROR("invalid fb h=%d, mode h=%d\n", fb->height,
  722. mode->vdisplay);
  723. return -EINVAL;
  724. } else if (fb->width > SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg)) {
  725. SDE_ERROR("invalid fb ubwc=%d w=%d, maxlinewidth=%u\n",
  726. SDE_FORMAT_IS_UBWC(fmt), fb->width,
  727. SDE_WB_MAX_LINEWIDTH(fmt, wb_cfg));
  728. return -EINVAL;
  729. }
  730. }
  731. return rc;
  732. }
  733. static void _sde_encoder_phys_wb_update_cwb_flush(
  734. struct sde_encoder_phys *phys_enc, bool enable)
  735. {
  736. struct sde_encoder_phys_wb *wb_enc;
  737. struct sde_hw_wb *hw_wb;
  738. struct sde_hw_ctl *hw_ctl;
  739. struct sde_hw_cdm *hw_cdm;
  740. struct sde_hw_pingpong *hw_pp;
  741. struct sde_crtc *crtc;
  742. struct sde_crtc_state *crtc_state;
  743. int i = 0;
  744. int cwb_capture_mode = 0;
  745. enum sde_cwb cwb_idx = 0;
  746. enum sde_dcwb dcwb_idx = 0;
  747. enum sde_cwb src_pp_idx = 0;
  748. bool dspp_out = false;
  749. bool need_merge = false;
  750. if (!phys_enc->in_clone_mode) {
  751. SDE_DEBUG("not in CWB mode. early return\n");
  752. return;
  753. }
  754. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  755. crtc = to_sde_crtc(wb_enc->crtc);
  756. crtc_state = to_sde_crtc_state(wb_enc->crtc->state);
  757. cwb_capture_mode = sde_crtc_get_property(crtc_state,
  758. CRTC_PROP_CAPTURE_OUTPUT);
  759. hw_pp = phys_enc->hw_pp;
  760. hw_wb = wb_enc->hw_wb;
  761. hw_cdm = phys_enc->hw_cdm;
  762. /* In CWB mode, program actual source master sde_hw_ctl from crtc */
  763. hw_ctl = crtc->mixers[0].hw_ctl;
  764. if (!hw_ctl || !hw_wb || !hw_pp) {
  765. SDE_ERROR("[wb] HW resource not available for CWB\n");
  766. return;
  767. }
  768. /* treating LM idx of primary display ctl path as source ping-pong idx*/
  769. src_pp_idx = (enum sde_cwb)crtc->mixers[0].hw_lm->idx;
  770. cwb_idx = (enum sde_cwb)hw_pp->idx;
  771. dspp_out = (cwb_capture_mode == CAPTURE_DSPP_OUT);
  772. need_merge = (crtc->num_mixers > 1) ? true : false;
  773. if (test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features)) {
  774. dcwb_idx = (enum sde_dcwb) ((hw_pp->idx % 2) + i);
  775. if ((dcwb_idx + crtc->num_mixers) > DCWB_MAX) {
  776. SDE_ERROR("invalid hw config for DCWB. dcwb_idx=%d, num_mixers=%d\n",
  777. dcwb_idx, crtc->num_mixers);
  778. return;
  779. }
  780. } else {
  781. if (src_pp_idx > CWB_0 || ((cwb_idx + crtc->num_mixers) > CWB_MAX)) {
  782. SDE_ERROR("invalid hw config for CWB. pp_idx-%d, cwb_idx=%d, num_mixers=%d\n",
  783. src_pp_idx, dcwb_idx, crtc->num_mixers);
  784. return;
  785. }
  786. }
  787. if (hw_ctl->ops.update_bitmask)
  788. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_WB,
  789. hw_wb->idx, 1);
  790. if (hw_ctl->ops.update_bitmask && hw_cdm)
  791. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_CDM,
  792. hw_cdm->idx, 1);
  793. if (test_bit(SDE_WB_CWB_CTRL | SDE_WB_DCWB_CTRL,
  794. &hw_wb->caps->features)) {
  795. for (i = 0; i < crtc->num_mixers; i++) {
  796. src_pp_idx = (enum sde_cwb) (src_pp_idx + i);
  797. if (test_bit(SDE_WB_DCWB_CTRL, &hw_wb->caps->features)) {
  798. dcwb_idx = (enum sde_dcwb) ((hw_pp->idx % 2) + i);
  799. if (hw_wb->ops.program_dcwb_ctrl)
  800. hw_wb->ops.program_dcwb_ctrl(hw_wb, dcwb_idx,
  801. src_pp_idx, cwb_capture_mode,
  802. enable);
  803. if (hw_ctl->ops.update_bitmask)
  804. hw_ctl->ops.update_bitmask(hw_ctl,
  805. SDE_HW_FLUSH_CWB, dcwb_idx, 1);
  806. } else if (test_bit(SDE_WB_CWB_CTRL, &hw_wb->caps->features)) {
  807. cwb_idx = (enum sde_cwb) (hw_pp->idx + i);
  808. if (hw_wb->ops.program_cwb_ctrl)
  809. hw_wb->ops.program_cwb_ctrl(hw_wb, cwb_idx,
  810. src_pp_idx, dspp_out, enable);
  811. if (hw_ctl->ops.update_bitmask)
  812. hw_ctl->ops.update_bitmask(hw_ctl,
  813. SDE_HW_FLUSH_CWB, cwb_idx, 1);
  814. }
  815. }
  816. if (need_merge && hw_ctl->ops.update_bitmask
  817. && hw_pp && hw_pp->merge_3d)
  818. hw_ctl->ops.update_bitmask(hw_ctl,
  819. SDE_HW_FLUSH_MERGE_3D,
  820. hw_pp->merge_3d->idx, 1);
  821. } else {
  822. phys_enc->hw_mdptop->ops.set_cwb_ppb_cntl(phys_enc->hw_mdptop,
  823. need_merge, dspp_out);
  824. }
  825. }
  826. /**
  827. * _sde_encoder_phys_wb_update_flush - flush hardware update
  828. * @phys_enc: Pointer to physical encoder
  829. */
  830. static void _sde_encoder_phys_wb_update_flush(struct sde_encoder_phys *phys_enc)
  831. {
  832. struct sde_encoder_phys_wb *wb_enc;
  833. struct sde_hw_wb *hw_wb;
  834. struct sde_hw_ctl *hw_ctl;
  835. struct sde_hw_cdm *hw_cdm;
  836. struct sde_hw_pingpong *hw_pp;
  837. struct sde_ctl_flush_cfg pending_flush = {0,};
  838. if (!phys_enc)
  839. return;
  840. wb_enc = to_sde_encoder_phys_wb(phys_enc);
  841. hw_wb = wb_enc->hw_wb;
  842. hw_cdm = phys_enc->hw_cdm;
  843. hw_pp = phys_enc->hw_pp;
  844. hw_ctl = phys_enc->hw_ctl;
  845. SDE_DEBUG("[wb:%d]\n", hw_wb->idx - WB_0);
  846. if (phys_enc->in_clone_mode) {
  847. SDE_DEBUG("in CWB mode. early return\n");
  848. return;
  849. }
  850. if (!hw_ctl) {
  851. SDE_DEBUG("[wb:%d] no ctl assigned\n", hw_wb->idx - WB_0);
  852. return;
  853. }
  854. if (hw_ctl->ops.update_bitmask)
  855. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_WB,
  856. hw_wb->idx, 1);
  857. if (hw_ctl->ops.update_bitmask && hw_cdm)
  858. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_CDM,
  859. hw_cdm->idx, 1);
  860. if (hw_ctl->ops.update_bitmask && hw_pp && hw_pp->merge_3d)
  861. hw_ctl->ops.update_bitmask(hw_ctl, SDE_HW_FLUSH_MERGE_3D,
  862. hw_pp->merge_3d->idx, 1);
  863. if (hw_ctl->ops.get_pending_flush)
  864. hw_ctl->ops.get_pending_flush(hw_ctl,
  865. &pending_flush);
  866. SDE_DEBUG("Pending flush mask for CTL_%d is 0x%x, WB %d\n",
  867. hw_ctl->idx - CTL_0, pending_flush.pending_flush_mask,
  868. hw_wb->idx - WB_0);
  869. }
  870. /**
  871. * sde_encoder_phys_wb_setup - setup writeback encoder
  872. * @phys_enc: Pointer to physical encoder
  873. */
  874. static void sde_encoder_phys_wb_setup(
  875. struct sde_encoder_phys *phys_enc)
  876. {
  877. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  878. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  879. struct drm_display_mode mode = phys_enc->cached_mode;
  880. struct drm_framebuffer *fb;
  881. struct sde_rect *wb_roi = &wb_enc->wb_roi;
  882. SDE_DEBUG("[mode_set:%d,\"%s\",%d,%d]\n",
  883. hw_wb->idx - WB_0, mode.name,
  884. mode.hdisplay, mode.vdisplay);
  885. memset(wb_roi, 0, sizeof(struct sde_rect));
  886. /* clear writeback framebuffer - will be updated in setup_fb */
  887. wb_enc->wb_fb = NULL;
  888. wb_enc->wb_aspace = NULL;
  889. if (phys_enc->enable_state == SDE_ENC_DISABLING) {
  890. fb = wb_enc->fb_disable;
  891. wb_roi->w = 0;
  892. wb_roi->h = 0;
  893. } else {
  894. fb = sde_wb_get_output_fb(wb_enc->wb_dev);
  895. sde_wb_get_output_roi(wb_enc->wb_dev, wb_roi);
  896. }
  897. if (!fb) {
  898. SDE_DEBUG("no output framebuffer\n");
  899. return;
  900. }
  901. SDE_DEBUG("[fb_id:%u][fb:%u,%u]\n", fb->base.id,
  902. fb->width, fb->height);
  903. if (wb_roi->w == 0 || wb_roi->h == 0) {
  904. wb_roi->x = 0;
  905. wb_roi->y = 0;
  906. wb_roi->w = fb->width;
  907. wb_roi->h = fb->height;
  908. }
  909. SDE_DEBUG("[roi:%u,%u,%u,%u]\n", wb_roi->x, wb_roi->y,
  910. wb_roi->w, wb_roi->h);
  911. wb_enc->wb_fmt = sde_get_sde_format_ext(fb->format->format,
  912. fb->modifier);
  913. if (!wb_enc->wb_fmt) {
  914. SDE_ERROR("unsupported output pixel format: %d\n",
  915. fb->format->format);
  916. return;
  917. }
  918. SDE_DEBUG("[fb_fmt:%x,%llx]\n", fb->format->format,
  919. fb->modifier);
  920. sde_encoder_phys_wb_set_ot_limit(phys_enc);
  921. sde_encoder_phys_wb_set_qos_remap(phys_enc);
  922. sde_encoder_phys_wb_set_qos(phys_enc);
  923. sde_encoder_phys_setup_cdm(phys_enc, fb, wb_enc->wb_fmt, wb_roi);
  924. sde_encoder_phys_wb_setup_fb(phys_enc, fb, wb_roi);
  925. sde_encoder_phys_wb_setup_cdp(phys_enc, wb_enc->wb_fmt);
  926. _sde_encoder_phys_wb_setup_cwb(phys_enc, true);
  927. }
  928. static void _sde_encoder_phys_wb_frame_done_helper(void *arg, bool frame_error)
  929. {
  930. struct sde_encoder_phys_wb *wb_enc = arg;
  931. struct sde_encoder_phys *phys_enc = &wb_enc->base;
  932. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  933. u32 event = frame_error ? SDE_ENCODER_FRAME_EVENT_ERROR : 0;
  934. SDE_DEBUG("[wb:%d,%u]\n", hw_wb->idx - WB_0, wb_enc->frame_count);
  935. /* don't notify upper layer for internal commit */
  936. if (phys_enc->enable_state == SDE_ENC_DISABLING &&
  937. !phys_enc->in_clone_mode)
  938. goto complete;
  939. if (phys_enc->parent_ops.handle_frame_done &&
  940. atomic_add_unless(&phys_enc->pending_retire_fence_cnt, -1, 0)) {
  941. event |= SDE_ENCODER_FRAME_EVENT_DONE |
  942. SDE_ENCODER_FRAME_EVENT_SIGNAL_RETIRE_FENCE;
  943. if (phys_enc->in_clone_mode)
  944. event |= SDE_ENCODER_FRAME_EVENT_CWB_DONE;
  945. else
  946. event |= SDE_ENCODER_FRAME_EVENT_SIGNAL_RELEASE_FENCE;
  947. phys_enc->parent_ops.handle_frame_done(phys_enc->parent,
  948. phys_enc, event);
  949. }
  950. if (!phys_enc->in_clone_mode && phys_enc->parent_ops.handle_vblank_virt)
  951. phys_enc->parent_ops.handle_vblank_virt(phys_enc->parent,
  952. phys_enc);
  953. SDE_EVT32_IRQ(DRMID(phys_enc->parent), hw_wb->idx - WB_0, event,
  954. frame_error);
  955. complete:
  956. wake_up_all(&phys_enc->pending_kickoff_wq);
  957. }
  958. /**
  959. * sde_encoder_phys_wb_done_irq - Pingpong overflow interrupt handler for CWB
  960. * @arg: Pointer to writeback encoder
  961. * @irq_idx: interrupt index
  962. */
  963. static void sde_encoder_phys_cwb_ovflow(void *arg, int irq_idx)
  964. {
  965. _sde_encoder_phys_wb_frame_done_helper(arg, true);
  966. }
  967. /**
  968. * sde_encoder_phys_wb_done_irq - writeback interrupt handler
  969. * @arg: Pointer to writeback encoder
  970. * @irq_idx: interrupt index
  971. */
  972. static void sde_encoder_phys_wb_done_irq(void *arg, int irq_idx)
  973. {
  974. _sde_encoder_phys_wb_frame_done_helper(arg, false);
  975. }
  976. /**
  977. * sde_encoder_phys_wb_irq_ctrl - irq control of WB
  978. * @phys: Pointer to physical encoder
  979. * @enable: indicates enable or disable interrupts
  980. */
  981. static void sde_encoder_phys_wb_irq_ctrl(
  982. struct sde_encoder_phys *phys, bool enable)
  983. {
  984. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys);
  985. int index = 0, refcount;
  986. int ret = 0, pp = 0;
  987. if (!wb_enc)
  988. return;
  989. if (wb_enc->bypass_irqreg)
  990. return;
  991. pp = phys->hw_pp->idx - PINGPONG_0;
  992. if ((pp + CRTC_DUAL_MIXERS_ONLY) >= PINGPONG_MAX) {
  993. SDE_ERROR("invalid pingpong index for WB or CWB\n");
  994. return;
  995. }
  996. refcount = atomic_read(&phys->wbirq_refcount);
  997. if (enable && atomic_inc_return(&phys->wbirq_refcount) == 1) {
  998. sde_encoder_helper_register_irq(phys, INTR_IDX_WB_DONE);
  999. if (ret)
  1000. atomic_dec_return(&phys->wbirq_refcount);
  1001. for (index = 0; index < CRTC_DUAL_MIXERS_ONLY; index++)
  1002. if (cwb_irq_tbl[index + pp] != SDE_NONE)
  1003. sde_encoder_helper_register_irq(phys,
  1004. cwb_irq_tbl[index + pp]);
  1005. } else if (!enable &&
  1006. atomic_dec_return(&phys->wbirq_refcount) == 0) {
  1007. sde_encoder_helper_unregister_irq(phys, INTR_IDX_WB_DONE);
  1008. if (ret)
  1009. atomic_inc_return(&phys->wbirq_refcount);
  1010. for (index = 0; index < CRTC_DUAL_MIXERS_ONLY; index++)
  1011. if (cwb_irq_tbl[index + pp] != SDE_NONE)
  1012. sde_encoder_helper_unregister_irq(phys,
  1013. cwb_irq_tbl[index + pp]);
  1014. }
  1015. }
  1016. /**
  1017. * sde_encoder_phys_wb_mode_set - set display mode
  1018. * @phys_enc: Pointer to physical encoder
  1019. * @mode: Pointer to requested display mode
  1020. * @adj_mode: Pointer to adjusted display mode
  1021. */
  1022. static void sde_encoder_phys_wb_mode_set(
  1023. struct sde_encoder_phys *phys_enc,
  1024. struct drm_display_mode *mode,
  1025. struct drm_display_mode *adj_mode)
  1026. {
  1027. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1028. struct sde_rm *rm = &phys_enc->sde_kms->rm;
  1029. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1030. struct sde_rm_hw_iter iter;
  1031. int i, instance;
  1032. phys_enc->cached_mode = *adj_mode;
  1033. instance = phys_enc->split_role == ENC_ROLE_SLAVE ? 1 : 0;
  1034. SDE_DEBUG("[mode_set_cache:%d,\"%s\",%d,%d]\n",
  1035. hw_wb->idx - WB_0, mode->name,
  1036. mode->hdisplay, mode->vdisplay);
  1037. phys_enc->hw_ctl = NULL;
  1038. phys_enc->hw_cdm = NULL;
  1039. /* Retrieve previously allocated HW Resources. CTL shouldn't fail */
  1040. sde_rm_init_hw_iter(&iter, phys_enc->parent->base.id, SDE_HW_BLK_CTL);
  1041. for (i = 0; i <= instance; i++) {
  1042. sde_rm_get_hw(rm, &iter);
  1043. if (i == instance)
  1044. phys_enc->hw_ctl = (struct sde_hw_ctl *) iter.hw;
  1045. }
  1046. if (IS_ERR_OR_NULL(phys_enc->hw_ctl)) {
  1047. SDE_ERROR("failed init ctl: %ld\n",
  1048. (!phys_enc->hw_ctl) ?
  1049. -EINVAL : PTR_ERR(phys_enc->hw_ctl));
  1050. phys_enc->hw_ctl = NULL;
  1051. return;
  1052. }
  1053. /* CDM is optional */
  1054. sde_rm_init_hw_iter(&iter, phys_enc->parent->base.id, SDE_HW_BLK_CDM);
  1055. for (i = 0; i <= instance; i++) {
  1056. sde_rm_get_hw(rm, &iter);
  1057. if (i == instance)
  1058. phys_enc->hw_cdm = (struct sde_hw_cdm *) iter.hw;
  1059. }
  1060. if (IS_ERR(phys_enc->hw_cdm)) {
  1061. SDE_ERROR("CDM required but not allocated: %ld\n",
  1062. PTR_ERR(phys_enc->hw_cdm));
  1063. phys_enc->hw_cdm = NULL;
  1064. }
  1065. }
  1066. static int sde_encoder_phys_wb_frame_timeout(struct sde_encoder_phys *phys_enc)
  1067. {
  1068. u32 event = 0;
  1069. while (atomic_add_unless(&phys_enc->pending_retire_fence_cnt, -1, 0) &&
  1070. phys_enc->parent_ops.handle_frame_done) {
  1071. event = SDE_ENCODER_FRAME_EVENT_SIGNAL_RETIRE_FENCE
  1072. | SDE_ENCODER_FRAME_EVENT_ERROR;
  1073. if (phys_enc->in_clone_mode)
  1074. event |= SDE_ENCODER_FRAME_EVENT_CWB_DONE;
  1075. else
  1076. event |= SDE_ENCODER_FRAME_EVENT_SIGNAL_RELEASE_FENCE;
  1077. phys_enc->parent_ops.handle_frame_done(
  1078. phys_enc->parent, phys_enc, event);
  1079. SDE_EVT32(DRMID(phys_enc->parent), event,
  1080. atomic_read(&phys_enc->pending_retire_fence_cnt));
  1081. }
  1082. return event;
  1083. }
  1084. static bool _sde_encoder_phys_wb_is_idle(
  1085. struct sde_encoder_phys *phys_enc)
  1086. {
  1087. bool ret = false;
  1088. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1089. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1090. struct sde_vbif_get_xin_status_params xin_status = {0};
  1091. xin_status.vbif_idx = hw_wb->caps->vbif_idx;
  1092. xin_status.xin_id = hw_wb->caps->xin_id;
  1093. xin_status.clk_ctrl = hw_wb->caps->clk_ctrl;
  1094. if (sde_vbif_get_xin_status(phys_enc->sde_kms, &xin_status)) {
  1095. _sde_encoder_phys_wb_frame_done_helper(wb_enc, false);
  1096. ret = true;
  1097. }
  1098. return ret;
  1099. }
  1100. static void _sde_encoder_phys_wb_reset_state(
  1101. struct sde_encoder_phys *phys_enc)
  1102. {
  1103. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1104. /*
  1105. * frame count and kickoff count are only used for debug purpose. Frame
  1106. * count can be more than kickoff count at the end of disable call due
  1107. * to extra frame_done wait. It does not cause any issue because
  1108. * frame_done wait is based on retire_fence count. Leaving these
  1109. * counters for debugging purpose.
  1110. */
  1111. if (wb_enc->frame_count != wb_enc->kickoff_count) {
  1112. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc),
  1113. wb_enc->kickoff_count, wb_enc->frame_count,
  1114. phys_enc->in_clone_mode);
  1115. wb_enc->frame_count = wb_enc->kickoff_count;
  1116. }
  1117. phys_enc->enable_state = SDE_ENC_DISABLED;
  1118. wb_enc->crtc = NULL;
  1119. phys_enc->hw_cdm = NULL;
  1120. phys_enc->hw_ctl = NULL;
  1121. phys_enc->in_clone_mode = false;
  1122. }
  1123. static int _sde_encoder_phys_wb_wait_for_commit_done(
  1124. struct sde_encoder_phys *phys_enc, bool is_disable)
  1125. {
  1126. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1127. u32 event = 0;
  1128. u64 wb_time = 0;
  1129. int rc = 0;
  1130. struct sde_encoder_wait_info wait_info = {0};
  1131. /* Return EWOULDBLOCK since we know the wait isn't necessary */
  1132. if (phys_enc->enable_state == SDE_ENC_DISABLED) {
  1133. SDE_ERROR("encoder already disabled\n");
  1134. return -EWOULDBLOCK;
  1135. }
  1136. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), wb_enc->frame_count,
  1137. wb_enc->kickoff_count, !!wb_enc->wb_fb, is_disable,
  1138. phys_enc->in_clone_mode);
  1139. if (!is_disable && phys_enc->in_clone_mode &&
  1140. (atomic_read(&phys_enc->pending_retire_fence_cnt) <= 1))
  1141. goto skip_wait;
  1142. /* signal completion if commit with no framebuffer */
  1143. if (!wb_enc->wb_fb) {
  1144. SDE_DEBUG("no output framebuffer\n");
  1145. _sde_encoder_phys_wb_frame_done_helper(wb_enc, false);
  1146. }
  1147. wait_info.wq = &phys_enc->pending_kickoff_wq;
  1148. wait_info.atomic_cnt = &phys_enc->pending_retire_fence_cnt;
  1149. wait_info.timeout_ms = max_t(u32, wb_enc->wbdone_timeout,
  1150. KICKOFF_TIMEOUT_MS);
  1151. rc = sde_encoder_helper_wait_for_irq(phys_enc, INTR_IDX_WB_DONE,
  1152. &wait_info);
  1153. if (rc == -ETIMEDOUT && _sde_encoder_phys_wb_is_idle(phys_enc)) {
  1154. rc = 0;
  1155. } else if (rc == -ETIMEDOUT) {
  1156. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc),
  1157. wb_enc->frame_count, SDE_EVTLOG_ERROR);
  1158. SDE_ERROR("wb:%d kickoff timed out\n", WBID(wb_enc));
  1159. event = sde_encoder_phys_wb_frame_timeout(phys_enc);
  1160. }
  1161. /* cleanup writeback framebuffer */
  1162. if (wb_enc->wb_fb && wb_enc->wb_aspace) {
  1163. msm_framebuffer_cleanup(wb_enc->wb_fb, wb_enc->wb_aspace);
  1164. drm_framebuffer_put(wb_enc->wb_fb);
  1165. wb_enc->wb_fb = NULL;
  1166. wb_enc->wb_aspace = NULL;
  1167. }
  1168. skip_wait:
  1169. /* remove vote for iommu/clk/bus */
  1170. wb_enc->frame_count++;
  1171. if (!rc) {
  1172. wb_enc->end_time = ktime_get();
  1173. wb_time = (u64)ktime_to_us(wb_enc->end_time) -
  1174. (u64)ktime_to_us(wb_enc->start_time);
  1175. SDE_DEBUG("wb:%d took %llu us\n", WBID(wb_enc), wb_time);
  1176. }
  1177. /* cleanup previous buffer if pending */
  1178. if (wb_enc->cwb_old_fb && wb_enc->cwb_old_aspace) {
  1179. msm_framebuffer_cleanup(wb_enc->cwb_old_fb, wb_enc->cwb_old_aspace);
  1180. drm_framebuffer_put(wb_enc->cwb_old_fb);
  1181. wb_enc->cwb_old_fb = NULL;
  1182. wb_enc->cwb_old_aspace = NULL;
  1183. }
  1184. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc), wb_enc->frame_count,
  1185. wb_time, event, rc);
  1186. return rc;
  1187. }
  1188. /**
  1189. * sde_encoder_phys_wb_wait_for_commit_done - wait until request is committed
  1190. * @phys_enc: Pointer to physical encoder
  1191. */
  1192. static int sde_encoder_phys_wb_wait_for_commit_done(
  1193. struct sde_encoder_phys *phys_enc)
  1194. {
  1195. int rc;
  1196. if (phys_enc->enable_state == SDE_ENC_DISABLING &&
  1197. phys_enc->in_clone_mode) {
  1198. rc = _sde_encoder_phys_wb_wait_for_commit_done(phys_enc, true);
  1199. _sde_encoder_phys_wb_reset_state(phys_enc);
  1200. sde_encoder_phys_wb_irq_ctrl(phys_enc, false);
  1201. } else {
  1202. rc = _sde_encoder_phys_wb_wait_for_commit_done(phys_enc, false);
  1203. }
  1204. return rc;
  1205. }
  1206. static int sde_encoder_phys_wb_wait_for_tx_complete(
  1207. struct sde_encoder_phys *phys_enc)
  1208. {
  1209. if (!atomic_read(&phys_enc->pending_retire_fence_cnt))
  1210. return 0;
  1211. return _sde_encoder_phys_wb_wait_for_commit_done(phys_enc, true);
  1212. }
  1213. /**
  1214. * sde_encoder_phys_wb_prepare_for_kickoff - pre-kickoff processing
  1215. * @phys_enc: Pointer to physical encoder
  1216. * @params: kickoff parameters
  1217. * Returns: Zero on success
  1218. */
  1219. static int sde_encoder_phys_wb_prepare_for_kickoff(
  1220. struct sde_encoder_phys *phys_enc,
  1221. struct sde_encoder_kickoff_params *params)
  1222. {
  1223. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1224. SDE_DEBUG("[wb:%d,%u]\n", wb_enc->hw_wb->idx - WB_0,
  1225. wb_enc->kickoff_count);
  1226. if (phys_enc->in_clone_mode) {
  1227. wb_enc->cwb_old_fb = wb_enc->wb_fb;
  1228. wb_enc->cwb_old_aspace = wb_enc->wb_aspace;
  1229. }
  1230. wb_enc->kickoff_count++;
  1231. /* set OT limit & enable traffic shaper */
  1232. sde_encoder_phys_wb_setup(phys_enc);
  1233. _sde_encoder_phys_wb_update_flush(phys_enc);
  1234. _sde_encoder_phys_wb_update_cwb_flush(phys_enc, true);
  1235. /* vote for iommu/clk/bus */
  1236. wb_enc->start_time = ktime_get();
  1237. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc),
  1238. wb_enc->kickoff_count, wb_enc->frame_count,
  1239. phys_enc->in_clone_mode);
  1240. return 0;
  1241. }
  1242. /**
  1243. * sde_encoder_phys_wb_trigger_flush - trigger flush processing
  1244. * @phys_enc: Pointer to physical encoder
  1245. */
  1246. static void sde_encoder_phys_wb_trigger_flush(struct sde_encoder_phys *phys_enc)
  1247. {
  1248. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1249. if (!phys_enc || !wb_enc->hw_wb) {
  1250. SDE_ERROR("invalid encoder\n");
  1251. return;
  1252. }
  1253. /*
  1254. * Bail out iff in CWB mode. In case of CWB, primary control-path
  1255. * which is actually driving would trigger the flush
  1256. */
  1257. if (phys_enc->in_clone_mode) {
  1258. SDE_DEBUG("in CWB mode. early return\n");
  1259. return;
  1260. }
  1261. SDE_DEBUG("[wb:%d]\n", wb_enc->hw_wb->idx - WB_0);
  1262. /* clear pending flush if commit with no framebuffer */
  1263. if (!wb_enc->wb_fb) {
  1264. SDE_DEBUG("no output framebuffer\n");
  1265. return;
  1266. }
  1267. sde_encoder_helper_trigger_flush(phys_enc);
  1268. }
  1269. /**
  1270. * sde_encoder_phys_wb_handle_post_kickoff - post-kickoff processing
  1271. * @phys_enc: Pointer to physical encoder
  1272. */
  1273. static void sde_encoder_phys_wb_handle_post_kickoff(
  1274. struct sde_encoder_phys *phys_enc)
  1275. {
  1276. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1277. SDE_DEBUG("[wb:%d]\n", wb_enc->hw_wb->idx - WB_0);
  1278. SDE_EVT32(DRMID(phys_enc->parent), WBID(wb_enc));
  1279. }
  1280. /**
  1281. * _sde_encoder_phys_wb_init_internal_fb - create fb for internal commit
  1282. * @wb_enc: Pointer to writeback encoder
  1283. * @pixel_format: DRM pixel format
  1284. * @width: Desired fb width
  1285. * @height: Desired fb height
  1286. * @pitch: Desired fb pitch
  1287. */
  1288. static int _sde_encoder_phys_wb_init_internal_fb(
  1289. struct sde_encoder_phys_wb *wb_enc,
  1290. uint32_t pixel_format, uint32_t width,
  1291. uint32_t height, uint32_t pitch)
  1292. {
  1293. struct drm_device *dev;
  1294. struct drm_framebuffer *fb;
  1295. struct drm_mode_fb_cmd2 mode_cmd;
  1296. uint32_t size;
  1297. int nplanes, i, ret;
  1298. struct msm_gem_address_space *aspace;
  1299. const struct drm_format_info *info;
  1300. if (!wb_enc || !wb_enc->base.parent || !wb_enc->base.sde_kms) {
  1301. SDE_ERROR("invalid params\n");
  1302. return -EINVAL;
  1303. }
  1304. aspace = wb_enc->base.sde_kms->aspace[SDE_IOMMU_DOMAIN_UNSECURE];
  1305. if (!aspace) {
  1306. SDE_ERROR("invalid address space\n");
  1307. return -EINVAL;
  1308. }
  1309. dev = wb_enc->base.sde_kms->dev;
  1310. if (!dev) {
  1311. SDE_ERROR("invalid dev\n");
  1312. return -EINVAL;
  1313. }
  1314. memset(&mode_cmd, 0, sizeof(mode_cmd));
  1315. mode_cmd.pixel_format = pixel_format;
  1316. mode_cmd.width = width;
  1317. mode_cmd.height = height;
  1318. mode_cmd.pitches[0] = pitch;
  1319. size = sde_format_get_framebuffer_size(pixel_format,
  1320. mode_cmd.width, mode_cmd.height,
  1321. mode_cmd.pitches, 0);
  1322. if (!size) {
  1323. SDE_DEBUG("not creating zero size buffer\n");
  1324. return -EINVAL;
  1325. }
  1326. /* allocate gem tracking object */
  1327. info = drm_get_format_info(dev, &mode_cmd);
  1328. nplanes = info->num_planes;
  1329. if (nplanes >= SDE_MAX_PLANES) {
  1330. SDE_ERROR("requested format has too many planes\n");
  1331. return -EINVAL;
  1332. }
  1333. wb_enc->bo_disable[0] = msm_gem_new(dev, size,
  1334. MSM_BO_SCANOUT | MSM_BO_WC);
  1335. if (IS_ERR_OR_NULL(wb_enc->bo_disable[0])) {
  1336. ret = PTR_ERR(wb_enc->bo_disable[0]);
  1337. wb_enc->bo_disable[0] = NULL;
  1338. SDE_ERROR("failed to create bo, %d\n", ret);
  1339. return ret;
  1340. }
  1341. for (i = 0; i < nplanes; ++i) {
  1342. wb_enc->bo_disable[i] = wb_enc->bo_disable[0];
  1343. mode_cmd.pitches[i] = width * info->cpp[i];
  1344. }
  1345. fb = msm_framebuffer_init(dev, &mode_cmd, wb_enc->bo_disable);
  1346. if (IS_ERR_OR_NULL(fb)) {
  1347. ret = PTR_ERR(fb);
  1348. drm_gem_object_put(wb_enc->bo_disable[0]);
  1349. wb_enc->bo_disable[0] = NULL;
  1350. SDE_ERROR("failed to init fb, %d\n", ret);
  1351. return ret;
  1352. }
  1353. /* prepare the backing buffer now so that it's available later */
  1354. ret = msm_framebuffer_prepare(fb, aspace);
  1355. if (!ret)
  1356. wb_enc->fb_disable = fb;
  1357. return ret;
  1358. }
  1359. /**
  1360. * _sde_encoder_phys_wb_destroy_internal_fb - deconstruct internal fb
  1361. * @wb_enc: Pointer to writeback encoder
  1362. */
  1363. static void _sde_encoder_phys_wb_destroy_internal_fb(
  1364. struct sde_encoder_phys_wb *wb_enc)
  1365. {
  1366. if (!wb_enc)
  1367. return;
  1368. if (wb_enc->fb_disable) {
  1369. drm_framebuffer_unregister_private(wb_enc->fb_disable);
  1370. drm_framebuffer_remove(wb_enc->fb_disable);
  1371. wb_enc->fb_disable = NULL;
  1372. }
  1373. if (wb_enc->bo_disable[0]) {
  1374. drm_gem_object_put(wb_enc->bo_disable[0]);
  1375. wb_enc->bo_disable[0] = NULL;
  1376. }
  1377. }
  1378. /**
  1379. * sde_encoder_phys_wb_enable - enable writeback encoder
  1380. * @phys_enc: Pointer to physical encoder
  1381. */
  1382. static void sde_encoder_phys_wb_enable(struct sde_encoder_phys *phys_enc)
  1383. {
  1384. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1385. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1386. struct drm_device *dev;
  1387. struct drm_connector *connector;
  1388. SDE_DEBUG("[wb:%d]\n", hw_wb->idx - WB_0);
  1389. if (!wb_enc->base.parent || !wb_enc->base.parent->dev) {
  1390. SDE_ERROR("invalid drm device\n");
  1391. return;
  1392. }
  1393. dev = wb_enc->base.parent->dev;
  1394. /* find associated writeback connector */
  1395. connector = phys_enc->connector;
  1396. if (!connector || connector->encoder != phys_enc->parent) {
  1397. SDE_ERROR("failed to find writeback connector\n");
  1398. return;
  1399. }
  1400. wb_enc->wb_dev = sde_wb_connector_get_wb(connector);
  1401. phys_enc->enable_state = SDE_ENC_ENABLED;
  1402. /*
  1403. * cache the crtc in wb_enc on enable for duration of use case
  1404. * for correctly servicing asynchronous irq events and timers
  1405. */
  1406. wb_enc->crtc = phys_enc->parent->crtc;
  1407. }
  1408. /**
  1409. * sde_encoder_phys_wb_disable - disable writeback encoder
  1410. * @phys_enc: Pointer to physical encoder
  1411. */
  1412. static void sde_encoder_phys_wb_disable(struct sde_encoder_phys *phys_enc)
  1413. {
  1414. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1415. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1416. SDE_DEBUG("[wb:%d]\n", hw_wb->idx - WB_0);
  1417. if (phys_enc->enable_state == SDE_ENC_DISABLED) {
  1418. SDE_ERROR("encoder is already disabled\n");
  1419. return;
  1420. }
  1421. SDE_DEBUG("[wait_for_done: wb:%d, frame:%u, kickoff:%u]\n",
  1422. hw_wb->idx - WB_0, wb_enc->frame_count,
  1423. wb_enc->kickoff_count);
  1424. if (!phys_enc->in_clone_mode || !wb_enc->crtc->state->active)
  1425. _sde_encoder_phys_wb_wait_for_commit_done(phys_enc, true);
  1426. if (!phys_enc->hw_ctl || !phys_enc->parent ||
  1427. !phys_enc->sde_kms || !wb_enc->fb_disable) {
  1428. SDE_DEBUG("invalid enc, skipping extra commit\n");
  1429. goto exit;
  1430. }
  1431. if (phys_enc->in_clone_mode) {
  1432. _sde_encoder_phys_wb_setup_cwb(phys_enc, false);
  1433. _sde_encoder_phys_wb_update_cwb_flush(phys_enc, false);
  1434. phys_enc->enable_state = SDE_ENC_DISABLING;
  1435. if (wb_enc->crtc->state->active) {
  1436. sde_encoder_phys_wb_irq_ctrl(phys_enc, true);
  1437. return;
  1438. }
  1439. goto exit;
  1440. }
  1441. /* reset h/w before final flush */
  1442. if (phys_enc->hw_ctl->ops.clear_pending_flush)
  1443. phys_enc->hw_ctl->ops.clear_pending_flush(phys_enc->hw_ctl);
  1444. /*
  1445. * New CTL reset sequence from 5.0 MDP onwards.
  1446. * If has_3d_merge_reset is not set, legacy reset
  1447. * sequence is executed.
  1448. */
  1449. if (hw_wb->catalog->has_3d_merge_reset) {
  1450. sde_encoder_helper_phys_disable(phys_enc, wb_enc);
  1451. goto exit;
  1452. }
  1453. if (sde_encoder_helper_reset_mixers(phys_enc, NULL))
  1454. goto exit;
  1455. phys_enc->enable_state = SDE_ENC_DISABLING;
  1456. sde_encoder_phys_wb_prepare_for_kickoff(phys_enc, NULL);
  1457. sde_encoder_phys_wb_irq_ctrl(phys_enc, true);
  1458. if (phys_enc->hw_ctl->ops.trigger_flush)
  1459. phys_enc->hw_ctl->ops.trigger_flush(phys_enc->hw_ctl);
  1460. sde_encoder_helper_trigger_start(phys_enc);
  1461. _sde_encoder_phys_wb_wait_for_commit_done(phys_enc, true);
  1462. sde_encoder_phys_wb_irq_ctrl(phys_enc, false);
  1463. exit:
  1464. _sde_encoder_phys_wb_reset_state(phys_enc);
  1465. }
  1466. /**
  1467. * sde_encoder_phys_wb_get_hw_resources - get hardware resources
  1468. * @phys_enc: Pointer to physical encoder
  1469. * @hw_res: Pointer to encoder resources
  1470. */
  1471. static void sde_encoder_phys_wb_get_hw_resources(
  1472. struct sde_encoder_phys *phys_enc,
  1473. struct sde_encoder_hw_resources *hw_res,
  1474. struct drm_connector_state *conn_state)
  1475. {
  1476. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1477. struct sde_hw_wb *hw_wb;
  1478. struct drm_framebuffer *fb;
  1479. const struct sde_format *fmt = NULL;
  1480. if (!phys_enc) {
  1481. SDE_ERROR("invalid encoder\n");
  1482. return;
  1483. }
  1484. fb = sde_wb_connector_state_get_output_fb(conn_state);
  1485. if (fb) {
  1486. fmt = sde_get_sde_format_ext(fb->format->format, fb->modifier);
  1487. if (!fmt) {
  1488. SDE_ERROR("unsupported output pixel format:%d\n",
  1489. fb->format->format);
  1490. return;
  1491. }
  1492. }
  1493. hw_wb = wb_enc->hw_wb;
  1494. hw_res->wbs[hw_wb->idx - WB_0] = phys_enc->intf_mode;
  1495. hw_res->needs_cdm = fmt ? SDE_FORMAT_IS_YUV(fmt) : false;
  1496. SDE_DEBUG("[wb:%d] intf_mode=%d needs_cdm=%d\n", hw_wb->idx - WB_0,
  1497. hw_res->wbs[hw_wb->idx - WB_0],
  1498. hw_res->needs_cdm);
  1499. }
  1500. #ifdef CONFIG_DEBUG_FS
  1501. /**
  1502. * sde_encoder_phys_wb_init_debugfs - initialize writeback encoder debugfs
  1503. * @phys_enc: Pointer to physical encoder
  1504. * @debugfs_root: Pointer to virtual encoder's debugfs_root dir
  1505. */
  1506. static int sde_encoder_phys_wb_init_debugfs(
  1507. struct sde_encoder_phys *phys_enc, struct dentry *debugfs_root)
  1508. {
  1509. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1510. if (!phys_enc || !wb_enc->hw_wb || !debugfs_root)
  1511. return -EINVAL;
  1512. debugfs_create_u32("wbdone_timeout", 0600, debugfs_root, &wb_enc->wbdone_timeout);
  1513. return 0;
  1514. }
  1515. #else
  1516. static int sde_encoder_phys_wb_init_debugfs(
  1517. struct sde_encoder_phys *phys_enc, struct dentry *debugfs_root)
  1518. {
  1519. return 0;
  1520. }
  1521. #endif
  1522. static int sde_encoder_phys_wb_late_register(struct sde_encoder_phys *phys_enc,
  1523. struct dentry *debugfs_root)
  1524. {
  1525. return sde_encoder_phys_wb_init_debugfs(phys_enc, debugfs_root);
  1526. }
  1527. /**
  1528. * sde_encoder_phys_wb_destroy - destroy writeback encoder
  1529. * @phys_enc: Pointer to physical encoder
  1530. */
  1531. static void sde_encoder_phys_wb_destroy(struct sde_encoder_phys *phys_enc)
  1532. {
  1533. struct sde_encoder_phys_wb *wb_enc = to_sde_encoder_phys_wb(phys_enc);
  1534. struct sde_hw_wb *hw_wb = wb_enc->hw_wb;
  1535. SDE_DEBUG("[wb:%d]\n", hw_wb->idx - WB_0);
  1536. if (!phys_enc)
  1537. return;
  1538. _sde_encoder_phys_wb_destroy_internal_fb(wb_enc);
  1539. kfree(wb_enc);
  1540. }
  1541. /**
  1542. * sde_encoder_phys_wb_init_ops - initialize writeback operations
  1543. * @ops: Pointer to encoder operation table
  1544. */
  1545. static void sde_encoder_phys_wb_init_ops(struct sde_encoder_phys_ops *ops)
  1546. {
  1547. ops->late_register = sde_encoder_phys_wb_late_register;
  1548. ops->is_master = sde_encoder_phys_wb_is_master;
  1549. ops->mode_set = sde_encoder_phys_wb_mode_set;
  1550. ops->enable = sde_encoder_phys_wb_enable;
  1551. ops->disable = sde_encoder_phys_wb_disable;
  1552. ops->destroy = sde_encoder_phys_wb_destroy;
  1553. ops->atomic_check = sde_encoder_phys_wb_atomic_check;
  1554. ops->get_hw_resources = sde_encoder_phys_wb_get_hw_resources;
  1555. ops->wait_for_commit_done = sde_encoder_phys_wb_wait_for_commit_done;
  1556. ops->wait_for_tx_complete = sde_encoder_phys_wb_wait_for_tx_complete;
  1557. ops->prepare_for_kickoff = sde_encoder_phys_wb_prepare_for_kickoff;
  1558. ops->handle_post_kickoff = sde_encoder_phys_wb_handle_post_kickoff;
  1559. ops->trigger_flush = sde_encoder_phys_wb_trigger_flush;
  1560. ops->trigger_start = sde_encoder_helper_trigger_start;
  1561. ops->hw_reset = sde_encoder_helper_hw_reset;
  1562. ops->irq_control = sde_encoder_phys_wb_irq_ctrl;
  1563. }
  1564. /**
  1565. * sde_encoder_phys_wb_init - initialize writeback encoder
  1566. * @init: Pointer to init info structure with initialization params
  1567. */
  1568. struct sde_encoder_phys *sde_encoder_phys_wb_init(
  1569. struct sde_enc_phys_init_params *p)
  1570. {
  1571. struct sde_encoder_phys *phys_enc;
  1572. struct sde_encoder_phys_wb *wb_enc;
  1573. struct sde_hw_mdp *hw_mdp;
  1574. struct sde_encoder_irq *irq;
  1575. int ret = 0;
  1576. SDE_DEBUG("\n");
  1577. if (!p || !p->parent) {
  1578. SDE_ERROR("invalid params\n");
  1579. ret = -EINVAL;
  1580. goto fail_alloc;
  1581. }
  1582. wb_enc = kzalloc(sizeof(*wb_enc), GFP_KERNEL);
  1583. if (!wb_enc) {
  1584. SDE_ERROR("failed to allocate wb enc\n");
  1585. ret = -ENOMEM;
  1586. goto fail_alloc;
  1587. }
  1588. wb_enc->wbdone_timeout = KICKOFF_TIMEOUT_MS;
  1589. phys_enc = &wb_enc->base;
  1590. if (p->sde_kms->vbif[VBIF_NRT]) {
  1591. wb_enc->aspace[SDE_IOMMU_DOMAIN_UNSECURE] =
  1592. p->sde_kms->aspace[MSM_SMMU_DOMAIN_NRT_UNSECURE];
  1593. wb_enc->aspace[SDE_IOMMU_DOMAIN_SECURE] =
  1594. p->sde_kms->aspace[MSM_SMMU_DOMAIN_NRT_SECURE];
  1595. } else {
  1596. wb_enc->aspace[SDE_IOMMU_DOMAIN_UNSECURE] =
  1597. p->sde_kms->aspace[MSM_SMMU_DOMAIN_UNSECURE];
  1598. wb_enc->aspace[SDE_IOMMU_DOMAIN_SECURE] =
  1599. p->sde_kms->aspace[MSM_SMMU_DOMAIN_SECURE];
  1600. }
  1601. hw_mdp = sde_rm_get_mdp(&p->sde_kms->rm);
  1602. if (IS_ERR_OR_NULL(hw_mdp)) {
  1603. ret = PTR_ERR(hw_mdp);
  1604. SDE_ERROR("failed to init hw_top: %d\n", ret);
  1605. goto fail_mdp_init;
  1606. }
  1607. phys_enc->hw_mdptop = hw_mdp;
  1608. /**
  1609. * hw_wb resource permanently assigned to this encoder
  1610. * Other resources allocated at atomic commit time by use case
  1611. */
  1612. if (p->wb_idx != SDE_NONE) {
  1613. struct sde_rm_hw_iter iter;
  1614. sde_rm_init_hw_iter(&iter, 0, SDE_HW_BLK_WB);
  1615. while (sde_rm_get_hw(&p->sde_kms->rm, &iter)) {
  1616. struct sde_hw_wb *hw_wb = (struct sde_hw_wb *)iter.hw;
  1617. if (hw_wb->idx == p->wb_idx) {
  1618. wb_enc->hw_wb = hw_wb;
  1619. break;
  1620. }
  1621. }
  1622. if (!wb_enc->hw_wb) {
  1623. ret = -EINVAL;
  1624. SDE_ERROR("failed to init hw_wb%d\n", p->wb_idx - WB_0);
  1625. goto fail_wb_init;
  1626. }
  1627. } else {
  1628. ret = -EINVAL;
  1629. SDE_ERROR("invalid wb_idx\n");
  1630. goto fail_wb_check;
  1631. }
  1632. sde_encoder_phys_wb_init_ops(&phys_enc->ops);
  1633. phys_enc->parent = p->parent;
  1634. phys_enc->parent_ops = p->parent_ops;
  1635. phys_enc->sde_kms = p->sde_kms;
  1636. phys_enc->split_role = p->split_role;
  1637. phys_enc->intf_mode = INTF_MODE_WB_LINE;
  1638. phys_enc->intf_idx = p->intf_idx;
  1639. phys_enc->enc_spinlock = p->enc_spinlock;
  1640. phys_enc->vblank_ctl_lock = p->vblank_ctl_lock;
  1641. atomic_set(&phys_enc->pending_retire_fence_cnt, 0);
  1642. atomic_set(&phys_enc->wbirq_refcount, 0);
  1643. init_waitqueue_head(&phys_enc->pending_kickoff_wq);
  1644. irq = &phys_enc->irq[INTR_IDX_WB_DONE];
  1645. INIT_LIST_HEAD(&irq->cb.list);
  1646. irq->name = "wb_done";
  1647. irq->hw_idx = wb_enc->hw_wb->idx;
  1648. irq->irq_idx = -1;
  1649. irq->intr_type = sde_encoder_phys_wb_get_intr_type(wb_enc->hw_wb);
  1650. irq->intr_idx = INTR_IDX_WB_DONE;
  1651. irq->cb.arg = wb_enc;
  1652. irq->cb.func = sde_encoder_phys_wb_done_irq;
  1653. irq = &phys_enc->irq[INTR_IDX_PP1_OVFL];
  1654. INIT_LIST_HEAD(&irq->cb.list);
  1655. irq->name = "pp1_overflow";
  1656. irq->hw_idx = CWB_1;
  1657. irq->irq_idx = -1;
  1658. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  1659. irq->intr_idx = INTR_IDX_PP1_OVFL;
  1660. irq->cb.arg = wb_enc;
  1661. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  1662. irq = &phys_enc->irq[INTR_IDX_PP2_OVFL];
  1663. INIT_LIST_HEAD(&irq->cb.list);
  1664. irq->name = "pp2_overflow";
  1665. irq->hw_idx = CWB_2;
  1666. irq->irq_idx = -1;
  1667. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  1668. irq->intr_idx = INTR_IDX_PP2_OVFL;
  1669. irq->cb.arg = wb_enc;
  1670. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  1671. irq = &phys_enc->irq[INTR_IDX_PP3_OVFL];
  1672. INIT_LIST_HEAD(&irq->cb.list);
  1673. irq->name = "pp3_overflow";
  1674. irq->hw_idx = CWB_3;
  1675. irq->irq_idx = -1;
  1676. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  1677. irq->intr_idx = INTR_IDX_PP3_OVFL;
  1678. irq->cb.arg = wb_enc;
  1679. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  1680. irq = &phys_enc->irq[INTR_IDX_PP4_OVFL];
  1681. INIT_LIST_HEAD(&irq->cb.list);
  1682. irq->name = "pp4_overflow";
  1683. irq->hw_idx = CWB_4;
  1684. irq->irq_idx = -1;
  1685. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  1686. irq->intr_idx = INTR_IDX_PP4_OVFL;
  1687. irq->cb.arg = wb_enc;
  1688. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  1689. irq = &phys_enc->irq[INTR_IDX_PP5_OVFL];
  1690. INIT_LIST_HEAD(&irq->cb.list);
  1691. irq->name = "pp5_overflow";
  1692. irq->hw_idx = CWB_5;
  1693. irq->irq_idx = -1;
  1694. irq->intr_type = SDE_IRQ_TYPE_CWB_OVERFLOW;
  1695. irq->intr_idx = INTR_IDX_PP5_OVFL;
  1696. irq->cb.arg = wb_enc;
  1697. irq->cb.func = sde_encoder_phys_cwb_ovflow;
  1698. /* create internal buffer for disable logic */
  1699. if (_sde_encoder_phys_wb_init_internal_fb(wb_enc,
  1700. DRM_FORMAT_RGB888, 2, 1, 6)) {
  1701. SDE_ERROR("failed to init internal fb\n");
  1702. goto fail_wb_init;
  1703. }
  1704. SDE_DEBUG("Created sde_encoder_phys_wb for wb %d\n",
  1705. wb_enc->hw_wb->idx - WB_0);
  1706. return phys_enc;
  1707. fail_wb_init:
  1708. fail_wb_check:
  1709. fail_mdp_init:
  1710. kfree(wb_enc);
  1711. fail_alloc:
  1712. return ERR_PTR(ret);
  1713. }