intel_overlay.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606
  1. /*
  2. * Copyright © 2009
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. * SOFTWARE.
  22. *
  23. * Authors:
  24. * Daniel Vetter <daniel@ffwll.ch>
  25. *
  26. * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c
  27. */
  28. #include <linux/seq_file.h>
  29. #include "drmP.h"
  30. #include "drm.h"
  31. #include "i915_drm.h"
  32. #include "i915_drv.h"
  33. #include "i915_reg.h"
  34. #include "intel_drv.h"
  35. /* Limits for overlay size. According to intel doc, the real limits are:
  36. * Y width: 4095, UV width (planar): 2047, Y height: 2047,
  37. * UV width (planar): * 1023. But the xorg thinks 2048 for height and width. Use
  38. * the mininum of both. */
  39. #define IMAGE_MAX_WIDTH 2048
  40. #define IMAGE_MAX_HEIGHT 2046 /* 2 * 1023 */
  41. /* on 830 and 845 these large limits result in the card hanging */
  42. #define IMAGE_MAX_WIDTH_LEGACY 1024
  43. #define IMAGE_MAX_HEIGHT_LEGACY 1088
  44. /* overlay register definitions */
  45. /* OCMD register */
  46. #define OCMD_TILED_SURFACE (0x1<<19)
  47. #define OCMD_MIRROR_MASK (0x3<<17)
  48. #define OCMD_MIRROR_MODE (0x3<<17)
  49. #define OCMD_MIRROR_HORIZONTAL (0x1<<17)
  50. #define OCMD_MIRROR_VERTICAL (0x2<<17)
  51. #define OCMD_MIRROR_BOTH (0x3<<17)
  52. #define OCMD_BYTEORDER_MASK (0x3<<14) /* zero for YUYV or FOURCC YUY2 */
  53. #define OCMD_UV_SWAP (0x1<<14) /* YVYU */
  54. #define OCMD_Y_SWAP (0x2<<14) /* UYVY or FOURCC UYVY */
  55. #define OCMD_Y_AND_UV_SWAP (0x3<<14) /* VYUY */
  56. #define OCMD_SOURCE_FORMAT_MASK (0xf<<10)
  57. #define OCMD_RGB_888 (0x1<<10) /* not in i965 Intel docs */
  58. #define OCMD_RGB_555 (0x2<<10) /* not in i965 Intel docs */
  59. #define OCMD_RGB_565 (0x3<<10) /* not in i965 Intel docs */
  60. #define OCMD_YUV_422_PACKED (0x8<<10)
  61. #define OCMD_YUV_411_PACKED (0x9<<10) /* not in i965 Intel docs */
  62. #define OCMD_YUV_420_PLANAR (0xc<<10)
  63. #define OCMD_YUV_422_PLANAR (0xd<<10)
  64. #define OCMD_YUV_410_PLANAR (0xe<<10) /* also 411 */
  65. #define OCMD_TVSYNCFLIP_PARITY (0x1<<9)
  66. #define OCMD_TVSYNCFLIP_ENABLE (0x1<<7)
  67. #define OCMD_BUF_TYPE_MASK (0x1<<5)
  68. #define OCMD_BUF_TYPE_FRAME (0x0<<5)
  69. #define OCMD_BUF_TYPE_FIELD (0x1<<5)
  70. #define OCMD_TEST_MODE (0x1<<4)
  71. #define OCMD_BUFFER_SELECT (0x3<<2)
  72. #define OCMD_BUFFER0 (0x0<<2)
  73. #define OCMD_BUFFER1 (0x1<<2)
  74. #define OCMD_FIELD_SELECT (0x1<<2)
  75. #define OCMD_FIELD0 (0x0<<1)
  76. #define OCMD_FIELD1 (0x1<<1)
  77. #define OCMD_ENABLE (0x1<<0)
  78. /* OCONFIG register */
  79. #define OCONF_PIPE_MASK (0x1<<18)
  80. #define OCONF_PIPE_A (0x0<<18)
  81. #define OCONF_PIPE_B (0x1<<18)
  82. #define OCONF_GAMMA2_ENABLE (0x1<<16)
  83. #define OCONF_CSC_MODE_BT601 (0x0<<5)
  84. #define OCONF_CSC_MODE_BT709 (0x1<<5)
  85. #define OCONF_CSC_BYPASS (0x1<<4)
  86. #define OCONF_CC_OUT_8BIT (0x1<<3)
  87. #define OCONF_TEST_MODE (0x1<<2)
  88. #define OCONF_THREE_LINE_BUFFER (0x1<<0)
  89. #define OCONF_TWO_LINE_BUFFER (0x0<<0)
  90. /* DCLRKM (dst-key) register */
  91. #define DST_KEY_ENABLE (0x1<<31)
  92. #define CLK_RGB24_MASK 0x0
  93. #define CLK_RGB16_MASK 0x070307
  94. #define CLK_RGB15_MASK 0x070707
  95. #define CLK_RGB8I_MASK 0xffffff
  96. #define RGB16_TO_COLORKEY(c) \
  97. (((c & 0xF800) << 8) | ((c & 0x07E0) << 5) | ((c & 0x001F) << 3))
  98. #define RGB15_TO_COLORKEY(c) \
  99. (((c & 0x7c00) << 9) | ((c & 0x03E0) << 6) | ((c & 0x001F) << 3))
  100. /* overlay flip addr flag */
  101. #define OFC_UPDATE 0x1
  102. /* polyphase filter coefficients */
  103. #define N_HORIZ_Y_TAPS 5
  104. #define N_VERT_Y_TAPS 3
  105. #define N_HORIZ_UV_TAPS 3
  106. #define N_VERT_UV_TAPS 3
  107. #define N_PHASES 17
  108. #define MAX_TAPS 5
  109. /* memory bufferd overlay registers */
  110. struct overlay_registers {
  111. u32 OBUF_0Y;
  112. u32 OBUF_1Y;
  113. u32 OBUF_0U;
  114. u32 OBUF_0V;
  115. u32 OBUF_1U;
  116. u32 OBUF_1V;
  117. u32 OSTRIDE;
  118. u32 YRGB_VPH;
  119. u32 UV_VPH;
  120. u32 HORZ_PH;
  121. u32 INIT_PHS;
  122. u32 DWINPOS;
  123. u32 DWINSZ;
  124. u32 SWIDTH;
  125. u32 SWIDTHSW;
  126. u32 SHEIGHT;
  127. u32 YRGBSCALE;
  128. u32 UVSCALE;
  129. u32 OCLRC0;
  130. u32 OCLRC1;
  131. u32 DCLRKV;
  132. u32 DCLRKM;
  133. u32 SCLRKVH;
  134. u32 SCLRKVL;
  135. u32 SCLRKEN;
  136. u32 OCONFIG;
  137. u32 OCMD;
  138. u32 RESERVED1; /* 0x6C */
  139. u32 OSTART_0Y;
  140. u32 OSTART_1Y;
  141. u32 OSTART_0U;
  142. u32 OSTART_0V;
  143. u32 OSTART_1U;
  144. u32 OSTART_1V;
  145. u32 OTILEOFF_0Y;
  146. u32 OTILEOFF_1Y;
  147. u32 OTILEOFF_0U;
  148. u32 OTILEOFF_0V;
  149. u32 OTILEOFF_1U;
  150. u32 OTILEOFF_1V;
  151. u32 FASTHSCALE; /* 0xA0 */
  152. u32 UVSCALEV; /* 0xA4 */
  153. u32 RESERVEDC[(0x200 - 0xA8) / 4]; /* 0xA8 - 0x1FC */
  154. u16 Y_VCOEFS[N_VERT_Y_TAPS * N_PHASES]; /* 0x200 */
  155. u16 RESERVEDD[0x100 / 2 - N_VERT_Y_TAPS * N_PHASES];
  156. u16 Y_HCOEFS[N_HORIZ_Y_TAPS * N_PHASES]; /* 0x300 */
  157. u16 RESERVEDE[0x200 / 2 - N_HORIZ_Y_TAPS * N_PHASES];
  158. u16 UV_VCOEFS[N_VERT_UV_TAPS * N_PHASES]; /* 0x500 */
  159. u16 RESERVEDF[0x100 / 2 - N_VERT_UV_TAPS * N_PHASES];
  160. u16 UV_HCOEFS[N_HORIZ_UV_TAPS * N_PHASES]; /* 0x600 */
  161. u16 RESERVEDG[0x100 / 2 - N_HORIZ_UV_TAPS * N_PHASES];
  162. };
  163. struct intel_overlay {
  164. struct drm_device *dev;
  165. struct intel_crtc *crtc;
  166. struct drm_i915_gem_object *vid_bo;
  167. struct drm_i915_gem_object *old_vid_bo;
  168. int active;
  169. int pfit_active;
  170. u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
  171. u32 color_key;
  172. u32 brightness, contrast, saturation;
  173. u32 old_xscale, old_yscale;
  174. /* register access */
  175. u32 flip_addr;
  176. struct drm_i915_gem_object *reg_bo;
  177. /* flip handling */
  178. uint32_t last_flip_req;
  179. void (*flip_tail)(struct intel_overlay *);
  180. };
  181. static struct overlay_registers *
  182. intel_overlay_map_regs(struct intel_overlay *overlay)
  183. {
  184. drm_i915_private_t *dev_priv = overlay->dev->dev_private;
  185. struct overlay_registers *regs;
  186. if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
  187. regs = overlay->reg_bo->phys_obj->handle->vaddr;
  188. else
  189. regs = io_mapping_map_wc(dev_priv->mm.gtt_mapping,
  190. overlay->reg_bo->gtt_offset);
  191. return regs;
  192. }
  193. static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
  194. struct overlay_registers *regs)
  195. {
  196. if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
  197. io_mapping_unmap(regs);
  198. }
  199. static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
  200. struct drm_i915_gem_request *request,
  201. bool interruptible,
  202. void (*tail)(struct intel_overlay *))
  203. {
  204. struct drm_device *dev = overlay->dev;
  205. drm_i915_private_t *dev_priv = dev->dev_private;
  206. int ret;
  207. BUG_ON(overlay->last_flip_req);
  208. ret = i915_add_request(dev, NULL, request, &dev_priv->render_ring);
  209. if (ret) {
  210. kfree(request);
  211. return ret;
  212. }
  213. overlay->last_flip_req = request->seqno;
  214. overlay->flip_tail = tail;
  215. ret = i915_do_wait_request(dev,
  216. overlay->last_flip_req, true,
  217. &dev_priv->render_ring);
  218. if (ret)
  219. return ret;
  220. overlay->last_flip_req = 0;
  221. return 0;
  222. }
  223. /* Workaround for i830 bug where pipe a must be enable to change control regs */
  224. static int
  225. i830_activate_pipe_a(struct drm_device *dev)
  226. {
  227. drm_i915_private_t *dev_priv = dev->dev_private;
  228. struct intel_crtc *crtc;
  229. struct drm_crtc_helper_funcs *crtc_funcs;
  230. struct drm_display_mode vesa_640x480 = {
  231. DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
  232. 752, 800, 0, 480, 489, 492, 525, 0,
  233. DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC)
  234. }, *mode;
  235. crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[0]);
  236. if (crtc->dpms_mode == DRM_MODE_DPMS_ON)
  237. return 0;
  238. /* most i8xx have pipe a forced on, so don't trust dpms mode */
  239. if (I915_READ(PIPEACONF) & PIPECONF_ENABLE)
  240. return 0;
  241. crtc_funcs = crtc->base.helper_private;
  242. if (crtc_funcs->dpms == NULL)
  243. return 0;
  244. DRM_DEBUG_DRIVER("Enabling pipe A in order to enable overlay\n");
  245. mode = drm_mode_duplicate(dev, &vesa_640x480);
  246. drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
  247. if(!drm_crtc_helper_set_mode(&crtc->base, mode,
  248. crtc->base.x, crtc->base.y,
  249. crtc->base.fb))
  250. return 0;
  251. crtc_funcs->dpms(&crtc->base, DRM_MODE_DPMS_ON);
  252. return 1;
  253. }
  254. static void
  255. i830_deactivate_pipe_a(struct drm_device *dev)
  256. {
  257. drm_i915_private_t *dev_priv = dev->dev_private;
  258. struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[0];
  259. struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
  260. crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
  261. }
  262. /* overlay needs to be disable in OCMD reg */
  263. static int intel_overlay_on(struct intel_overlay *overlay)
  264. {
  265. struct drm_device *dev = overlay->dev;
  266. struct drm_i915_private *dev_priv = dev->dev_private;
  267. struct drm_i915_gem_request *request;
  268. int pipe_a_quirk = 0;
  269. int ret;
  270. BUG_ON(overlay->active);
  271. overlay->active = 1;
  272. if (IS_I830(dev)) {
  273. pipe_a_quirk = i830_activate_pipe_a(dev);
  274. if (pipe_a_quirk < 0)
  275. return pipe_a_quirk;
  276. }
  277. request = kzalloc(sizeof(*request), GFP_KERNEL);
  278. if (request == NULL) {
  279. ret = -ENOMEM;
  280. goto out;
  281. }
  282. ret = BEGIN_LP_RING(4);
  283. if (ret) {
  284. kfree(request);
  285. goto out;
  286. }
  287. OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_ON);
  288. OUT_RING(overlay->flip_addr | OFC_UPDATE);
  289. OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
  290. OUT_RING(MI_NOOP);
  291. ADVANCE_LP_RING();
  292. ret = intel_overlay_do_wait_request(overlay, request, true, NULL);
  293. out:
  294. if (pipe_a_quirk)
  295. i830_deactivate_pipe_a(dev);
  296. return ret;
  297. }
  298. /* overlay needs to be enabled in OCMD reg */
  299. static int intel_overlay_continue(struct intel_overlay *overlay,
  300. bool load_polyphase_filter)
  301. {
  302. struct drm_device *dev = overlay->dev;
  303. drm_i915_private_t *dev_priv = dev->dev_private;
  304. struct drm_i915_gem_request *request;
  305. u32 flip_addr = overlay->flip_addr;
  306. u32 tmp;
  307. int ret;
  308. BUG_ON(!overlay->active);
  309. request = kzalloc(sizeof(*request), GFP_KERNEL);
  310. if (request == NULL)
  311. return -ENOMEM;
  312. if (load_polyphase_filter)
  313. flip_addr |= OFC_UPDATE;
  314. /* check for underruns */
  315. tmp = I915_READ(DOVSTA);
  316. if (tmp & (1 << 17))
  317. DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
  318. ret = BEGIN_LP_RING(2);
  319. if (ret) {
  320. kfree(request);
  321. return ret;
  322. }
  323. OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
  324. OUT_RING(flip_addr);
  325. ADVANCE_LP_RING();
  326. ret = i915_add_request(dev, NULL, request, &dev_priv->render_ring);
  327. if (ret) {
  328. kfree(request);
  329. return ret;
  330. }
  331. overlay->last_flip_req = request->seqno;
  332. return 0;
  333. }
  334. static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
  335. {
  336. struct drm_gem_object *obj = &overlay->old_vid_bo->base;
  337. i915_gem_object_unpin(obj);
  338. drm_gem_object_unreference(obj);
  339. overlay->old_vid_bo = NULL;
  340. }
  341. static void intel_overlay_off_tail(struct intel_overlay *overlay)
  342. {
  343. struct drm_gem_object *obj;
  344. /* never have the overlay hw on without showing a frame */
  345. BUG_ON(!overlay->vid_bo);
  346. obj = &overlay->vid_bo->base;
  347. i915_gem_object_unpin(obj);
  348. drm_gem_object_unreference(obj);
  349. overlay->vid_bo = NULL;
  350. overlay->crtc->overlay = NULL;
  351. overlay->crtc = NULL;
  352. overlay->active = 0;
  353. }
  354. /* overlay needs to be disabled in OCMD reg */
  355. static int intel_overlay_off(struct intel_overlay *overlay,
  356. bool interruptible)
  357. {
  358. struct drm_device *dev = overlay->dev;
  359. struct drm_i915_private *dev_priv = dev->dev_private;
  360. u32 flip_addr = overlay->flip_addr;
  361. struct drm_i915_gem_request *request;
  362. int ret;
  363. BUG_ON(!overlay->active);
  364. request = kzalloc(sizeof(*request), GFP_KERNEL);
  365. if (request == NULL)
  366. return -ENOMEM;
  367. /* According to intel docs the overlay hw may hang (when switching
  368. * off) without loading the filter coeffs. It is however unclear whether
  369. * this applies to the disabling of the overlay or to the switching off
  370. * of the hw. Do it in both cases */
  371. flip_addr |= OFC_UPDATE;
  372. ret = BEGIN_LP_RING(6);
  373. if (ret) {
  374. kfree(request);
  375. return ret;
  376. }
  377. /* wait for overlay to go idle */
  378. OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
  379. OUT_RING(flip_addr);
  380. OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
  381. /* turn overlay off */
  382. OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
  383. OUT_RING(flip_addr);
  384. OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
  385. ADVANCE_LP_RING();
  386. return intel_overlay_do_wait_request(overlay, request, interruptible,
  387. intel_overlay_off_tail);
  388. }
  389. /* recover from an interruption due to a signal
  390. * We have to be careful not to repeat work forever an make forward progess. */
  391. static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay,
  392. bool interruptible)
  393. {
  394. struct drm_device *dev = overlay->dev;
  395. drm_i915_private_t *dev_priv = dev->dev_private;
  396. int ret;
  397. if (overlay->last_flip_req == 0)
  398. return 0;
  399. ret = i915_do_wait_request(dev, overlay->last_flip_req,
  400. interruptible, &dev_priv->render_ring);
  401. if (ret)
  402. return ret;
  403. if (overlay->flip_tail)
  404. overlay->flip_tail(overlay);
  405. overlay->last_flip_req = 0;
  406. return 0;
  407. }
  408. /* Wait for pending overlay flip and release old frame.
  409. * Needs to be called before the overlay register are changed
  410. * via intel_overlay_(un)map_regs
  411. */
  412. static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
  413. {
  414. struct drm_device *dev = overlay->dev;
  415. drm_i915_private_t *dev_priv = dev->dev_private;
  416. int ret;
  417. /* Only wait if there is actually an old frame to release to
  418. * guarantee forward progress.
  419. */
  420. if (!overlay->old_vid_bo)
  421. return 0;
  422. if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
  423. struct drm_i915_gem_request *request;
  424. /* synchronous slowpath */
  425. request = kzalloc(sizeof(*request), GFP_KERNEL);
  426. if (request == NULL)
  427. return -ENOMEM;
  428. ret = BEGIN_LP_RING(2);
  429. if (ret) {
  430. kfree(request);
  431. return ret;
  432. }
  433. OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
  434. OUT_RING(MI_NOOP);
  435. ADVANCE_LP_RING();
  436. ret = intel_overlay_do_wait_request(overlay, request, true,
  437. intel_overlay_release_old_vid_tail);
  438. if (ret)
  439. return ret;
  440. }
  441. intel_overlay_release_old_vid_tail(overlay);
  442. return 0;
  443. }
  444. struct put_image_params {
  445. int format;
  446. short dst_x;
  447. short dst_y;
  448. short dst_w;
  449. short dst_h;
  450. short src_w;
  451. short src_scan_h;
  452. short src_scan_w;
  453. short src_h;
  454. short stride_Y;
  455. short stride_UV;
  456. int offset_Y;
  457. int offset_U;
  458. int offset_V;
  459. };
  460. static int packed_depth_bytes(u32 format)
  461. {
  462. switch (format & I915_OVERLAY_DEPTH_MASK) {
  463. case I915_OVERLAY_YUV422:
  464. return 4;
  465. case I915_OVERLAY_YUV411:
  466. /* return 6; not implemented */
  467. default:
  468. return -EINVAL;
  469. }
  470. }
  471. static int packed_width_bytes(u32 format, short width)
  472. {
  473. switch (format & I915_OVERLAY_DEPTH_MASK) {
  474. case I915_OVERLAY_YUV422:
  475. return width << 1;
  476. default:
  477. return -EINVAL;
  478. }
  479. }
  480. static int uv_hsubsampling(u32 format)
  481. {
  482. switch (format & I915_OVERLAY_DEPTH_MASK) {
  483. case I915_OVERLAY_YUV422:
  484. case I915_OVERLAY_YUV420:
  485. return 2;
  486. case I915_OVERLAY_YUV411:
  487. case I915_OVERLAY_YUV410:
  488. return 4;
  489. default:
  490. return -EINVAL;
  491. }
  492. }
  493. static int uv_vsubsampling(u32 format)
  494. {
  495. switch (format & I915_OVERLAY_DEPTH_MASK) {
  496. case I915_OVERLAY_YUV420:
  497. case I915_OVERLAY_YUV410:
  498. return 2;
  499. case I915_OVERLAY_YUV422:
  500. case I915_OVERLAY_YUV411:
  501. return 1;
  502. default:
  503. return -EINVAL;
  504. }
  505. }
  506. static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
  507. {
  508. u32 mask, shift, ret;
  509. if (IS_GEN2(dev)) {
  510. mask = 0x1f;
  511. shift = 5;
  512. } else {
  513. mask = 0x3f;
  514. shift = 6;
  515. }
  516. ret = ((offset + width + mask) >> shift) - (offset >> shift);
  517. if (!IS_GEN2(dev))
  518. ret <<= 1;
  519. ret -=1;
  520. return ret << 2;
  521. }
  522. static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
  523. 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
  524. 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
  525. 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
  526. 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
  527. 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
  528. 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
  529. 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
  530. 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
  531. 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
  532. 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
  533. 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
  534. 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
  535. 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
  536. 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
  537. 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
  538. 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
  539. 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
  540. };
  541. static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
  542. 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
  543. 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
  544. 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
  545. 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
  546. 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
  547. 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
  548. 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
  549. 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
  550. 0x3000, 0x0800, 0x3000
  551. };
  552. static void update_polyphase_filter(struct overlay_registers *regs)
  553. {
  554. memcpy(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
  555. memcpy(regs->UV_HCOEFS, uv_static_hcoeffs, sizeof(uv_static_hcoeffs));
  556. }
  557. static bool update_scaling_factors(struct intel_overlay *overlay,
  558. struct overlay_registers *regs,
  559. struct put_image_params *params)
  560. {
  561. /* fixed point with a 12 bit shift */
  562. u32 xscale, yscale, xscale_UV, yscale_UV;
  563. #define FP_SHIFT 12
  564. #define FRACT_MASK 0xfff
  565. bool scale_changed = false;
  566. int uv_hscale = uv_hsubsampling(params->format);
  567. int uv_vscale = uv_vsubsampling(params->format);
  568. if (params->dst_w > 1)
  569. xscale = ((params->src_scan_w - 1) << FP_SHIFT)
  570. /(params->dst_w);
  571. else
  572. xscale = 1 << FP_SHIFT;
  573. if (params->dst_h > 1)
  574. yscale = ((params->src_scan_h - 1) << FP_SHIFT)
  575. /(params->dst_h);
  576. else
  577. yscale = 1 << FP_SHIFT;
  578. /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
  579. xscale_UV = xscale/uv_hscale;
  580. yscale_UV = yscale/uv_vscale;
  581. /* make the Y scale to UV scale ratio an exact multiply */
  582. xscale = xscale_UV * uv_hscale;
  583. yscale = yscale_UV * uv_vscale;
  584. /*} else {
  585. xscale_UV = 0;
  586. yscale_UV = 0;
  587. }*/
  588. if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
  589. scale_changed = true;
  590. overlay->old_xscale = xscale;
  591. overlay->old_yscale = yscale;
  592. regs->YRGBSCALE = (((yscale & FRACT_MASK) << 20) |
  593. ((xscale >> FP_SHIFT) << 16) |
  594. ((xscale & FRACT_MASK) << 3));
  595. regs->UVSCALE = (((yscale_UV & FRACT_MASK) << 20) |
  596. ((xscale_UV >> FP_SHIFT) << 16) |
  597. ((xscale_UV & FRACT_MASK) << 3));
  598. regs->UVSCALEV = ((((yscale >> FP_SHIFT) << 16) |
  599. ((yscale_UV >> FP_SHIFT) << 0)));
  600. if (scale_changed)
  601. update_polyphase_filter(regs);
  602. return scale_changed;
  603. }
  604. static void update_colorkey(struct intel_overlay *overlay,
  605. struct overlay_registers *regs)
  606. {
  607. u32 key = overlay->color_key;
  608. switch (overlay->crtc->base.fb->bits_per_pixel) {
  609. case 8:
  610. regs->DCLRKV = 0;
  611. regs->DCLRKM = CLK_RGB8I_MASK | DST_KEY_ENABLE;
  612. break;
  613. case 16:
  614. if (overlay->crtc->base.fb->depth == 15) {
  615. regs->DCLRKV = RGB15_TO_COLORKEY(key);
  616. regs->DCLRKM = CLK_RGB15_MASK | DST_KEY_ENABLE;
  617. } else {
  618. regs->DCLRKV = RGB16_TO_COLORKEY(key);
  619. regs->DCLRKM = CLK_RGB16_MASK | DST_KEY_ENABLE;
  620. }
  621. break;
  622. case 24:
  623. case 32:
  624. regs->DCLRKV = key;
  625. regs->DCLRKM = CLK_RGB24_MASK | DST_KEY_ENABLE;
  626. break;
  627. }
  628. }
  629. static u32 overlay_cmd_reg(struct put_image_params *params)
  630. {
  631. u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
  632. if (params->format & I915_OVERLAY_YUV_PLANAR) {
  633. switch (params->format & I915_OVERLAY_DEPTH_MASK) {
  634. case I915_OVERLAY_YUV422:
  635. cmd |= OCMD_YUV_422_PLANAR;
  636. break;
  637. case I915_OVERLAY_YUV420:
  638. cmd |= OCMD_YUV_420_PLANAR;
  639. break;
  640. case I915_OVERLAY_YUV411:
  641. case I915_OVERLAY_YUV410:
  642. cmd |= OCMD_YUV_410_PLANAR;
  643. break;
  644. }
  645. } else { /* YUV packed */
  646. switch (params->format & I915_OVERLAY_DEPTH_MASK) {
  647. case I915_OVERLAY_YUV422:
  648. cmd |= OCMD_YUV_422_PACKED;
  649. break;
  650. case I915_OVERLAY_YUV411:
  651. cmd |= OCMD_YUV_411_PACKED;
  652. break;
  653. }
  654. switch (params->format & I915_OVERLAY_SWAP_MASK) {
  655. case I915_OVERLAY_NO_SWAP:
  656. break;
  657. case I915_OVERLAY_UV_SWAP:
  658. cmd |= OCMD_UV_SWAP;
  659. break;
  660. case I915_OVERLAY_Y_SWAP:
  661. cmd |= OCMD_Y_SWAP;
  662. break;
  663. case I915_OVERLAY_Y_AND_UV_SWAP:
  664. cmd |= OCMD_Y_AND_UV_SWAP;
  665. break;
  666. }
  667. }
  668. return cmd;
  669. }
  670. static int intel_overlay_do_put_image(struct intel_overlay *overlay,
  671. struct drm_gem_object *new_bo,
  672. struct put_image_params *params)
  673. {
  674. int ret, tmp_width;
  675. struct overlay_registers *regs;
  676. bool scale_changed = false;
  677. struct drm_i915_gem_object *bo_priv = to_intel_bo(new_bo);
  678. struct drm_device *dev = overlay->dev;
  679. BUG_ON(!mutex_is_locked(&dev->struct_mutex));
  680. BUG_ON(!mutex_is_locked(&dev->mode_config.mutex));
  681. BUG_ON(!overlay);
  682. ret = intel_overlay_release_old_vid(overlay);
  683. if (ret != 0)
  684. return ret;
  685. ret = i915_gem_object_pin(new_bo, PAGE_SIZE, false, false);
  686. if (ret != 0)
  687. return ret;
  688. ret = i915_gem_object_set_to_gtt_domain(new_bo, 0);
  689. if (ret != 0)
  690. goto out_unpin;
  691. if (!overlay->active) {
  692. regs = intel_overlay_map_regs(overlay);
  693. if (!regs) {
  694. ret = -ENOMEM;
  695. goto out_unpin;
  696. }
  697. regs->OCONFIG = OCONF_CC_OUT_8BIT;
  698. if (IS_GEN4(overlay->dev))
  699. regs->OCONFIG |= OCONF_CSC_MODE_BT709;
  700. regs->OCONFIG |= overlay->crtc->pipe == 0 ?
  701. OCONF_PIPE_A : OCONF_PIPE_B;
  702. intel_overlay_unmap_regs(overlay, regs);
  703. ret = intel_overlay_on(overlay);
  704. if (ret != 0)
  705. goto out_unpin;
  706. }
  707. regs = intel_overlay_map_regs(overlay);
  708. if (!regs) {
  709. ret = -ENOMEM;
  710. goto out_unpin;
  711. }
  712. regs->DWINPOS = (params->dst_y << 16) | params->dst_x;
  713. regs->DWINSZ = (params->dst_h << 16) | params->dst_w;
  714. if (params->format & I915_OVERLAY_YUV_PACKED)
  715. tmp_width = packed_width_bytes(params->format, params->src_w);
  716. else
  717. tmp_width = params->src_w;
  718. regs->SWIDTH = params->src_w;
  719. regs->SWIDTHSW = calc_swidthsw(overlay->dev,
  720. params->offset_Y, tmp_width);
  721. regs->SHEIGHT = params->src_h;
  722. regs->OBUF_0Y = bo_priv->gtt_offset + params-> offset_Y;
  723. regs->OSTRIDE = params->stride_Y;
  724. if (params->format & I915_OVERLAY_YUV_PLANAR) {
  725. int uv_hscale = uv_hsubsampling(params->format);
  726. int uv_vscale = uv_vsubsampling(params->format);
  727. u32 tmp_U, tmp_V;
  728. regs->SWIDTH |= (params->src_w/uv_hscale) << 16;
  729. tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
  730. params->src_w/uv_hscale);
  731. tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
  732. params->src_w/uv_hscale);
  733. regs->SWIDTHSW |= max_t(u32, tmp_U, tmp_V) << 16;
  734. regs->SHEIGHT |= (params->src_h/uv_vscale) << 16;
  735. regs->OBUF_0U = bo_priv->gtt_offset + params->offset_U;
  736. regs->OBUF_0V = bo_priv->gtt_offset + params->offset_V;
  737. regs->OSTRIDE |= params->stride_UV << 16;
  738. }
  739. scale_changed = update_scaling_factors(overlay, regs, params);
  740. update_colorkey(overlay, regs);
  741. regs->OCMD = overlay_cmd_reg(params);
  742. intel_overlay_unmap_regs(overlay, regs);
  743. ret = intel_overlay_continue(overlay, scale_changed);
  744. if (ret)
  745. goto out_unpin;
  746. overlay->old_vid_bo = overlay->vid_bo;
  747. overlay->vid_bo = to_intel_bo(new_bo);
  748. return 0;
  749. out_unpin:
  750. i915_gem_object_unpin(new_bo);
  751. return ret;
  752. }
  753. int intel_overlay_switch_off(struct intel_overlay *overlay,
  754. bool interruptible)
  755. {
  756. struct overlay_registers *regs;
  757. struct drm_device *dev = overlay->dev;
  758. int ret;
  759. BUG_ON(!mutex_is_locked(&dev->struct_mutex));
  760. BUG_ON(!mutex_is_locked(&dev->mode_config.mutex));
  761. ret = intel_overlay_recover_from_interrupt(overlay, interruptible);
  762. if (ret != 0)
  763. return ret;
  764. if (!overlay->active)
  765. return 0;
  766. ret = intel_overlay_release_old_vid(overlay);
  767. if (ret != 0)
  768. return ret;
  769. regs = intel_overlay_map_regs(overlay);
  770. regs->OCMD = 0;
  771. intel_overlay_unmap_regs(overlay, regs);
  772. ret = intel_overlay_off(overlay, interruptible);
  773. if (ret != 0)
  774. return ret;
  775. intel_overlay_off_tail(overlay);
  776. return 0;
  777. }
  778. static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
  779. struct intel_crtc *crtc)
  780. {
  781. drm_i915_private_t *dev_priv = overlay->dev->dev_private;
  782. if (!crtc->active)
  783. return -EINVAL;
  784. /* can't use the overlay with double wide pipe */
  785. if (INTEL_INFO(overlay->dev)->gen < 4 &&
  786. (I915_READ(PIPECONF(crtc->pipe)) & (PIPECONF_DOUBLE_WIDE | PIPECONF_ENABLE)) != PIPECONF_ENABLE)
  787. return -EINVAL;
  788. return 0;
  789. }
  790. static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
  791. {
  792. struct drm_device *dev = overlay->dev;
  793. drm_i915_private_t *dev_priv = dev->dev_private;
  794. u32 pfit_control = I915_READ(PFIT_CONTROL);
  795. u32 ratio;
  796. /* XXX: This is not the same logic as in the xorg driver, but more in
  797. * line with the intel documentation for the i965
  798. */
  799. if (INTEL_INFO(dev)->gen >= 4) {
  800. /* on i965 use the PGM reg to read out the autoscaler values */
  801. ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
  802. } else {
  803. if (pfit_control & VERT_AUTO_SCALE)
  804. ratio = I915_READ(PFIT_AUTO_RATIOS);
  805. else
  806. ratio = I915_READ(PFIT_PGM_RATIOS);
  807. ratio >>= PFIT_VERT_SCALE_SHIFT;
  808. }
  809. overlay->pfit_vscale_ratio = ratio;
  810. }
  811. static int check_overlay_dst(struct intel_overlay *overlay,
  812. struct drm_intel_overlay_put_image *rec)
  813. {
  814. struct drm_display_mode *mode = &overlay->crtc->base.mode;
  815. if (rec->dst_x < mode->crtc_hdisplay &&
  816. rec->dst_x + rec->dst_width <= mode->crtc_hdisplay &&
  817. rec->dst_y < mode->crtc_vdisplay &&
  818. rec->dst_y + rec->dst_height <= mode->crtc_vdisplay)
  819. return 0;
  820. else
  821. return -EINVAL;
  822. }
  823. static int check_overlay_scaling(struct put_image_params *rec)
  824. {
  825. u32 tmp;
  826. /* downscaling limit is 8.0 */
  827. tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
  828. if (tmp > 7)
  829. return -EINVAL;
  830. tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
  831. if (tmp > 7)
  832. return -EINVAL;
  833. return 0;
  834. }
  835. static int check_overlay_src(struct drm_device *dev,
  836. struct drm_intel_overlay_put_image *rec,
  837. struct drm_gem_object *new_bo)
  838. {
  839. int uv_hscale = uv_hsubsampling(rec->flags);
  840. int uv_vscale = uv_vsubsampling(rec->flags);
  841. u32 stride_mask, depth, tmp;
  842. /* check src dimensions */
  843. if (IS_845G(dev) || IS_I830(dev)) {
  844. if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
  845. rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
  846. return -EINVAL;
  847. } else {
  848. if (rec->src_height > IMAGE_MAX_HEIGHT ||
  849. rec->src_width > IMAGE_MAX_WIDTH)
  850. return -EINVAL;
  851. }
  852. /* better safe than sorry, use 4 as the maximal subsampling ratio */
  853. if (rec->src_height < N_VERT_Y_TAPS*4 ||
  854. rec->src_width < N_HORIZ_Y_TAPS*4)
  855. return -EINVAL;
  856. /* check alignment constraints */
  857. switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
  858. case I915_OVERLAY_RGB:
  859. /* not implemented */
  860. return -EINVAL;
  861. case I915_OVERLAY_YUV_PACKED:
  862. if (uv_vscale != 1)
  863. return -EINVAL;
  864. depth = packed_depth_bytes(rec->flags);
  865. if (depth < 0)
  866. return depth;
  867. /* ignore UV planes */
  868. rec->stride_UV = 0;
  869. rec->offset_U = 0;
  870. rec->offset_V = 0;
  871. /* check pixel alignment */
  872. if (rec->offset_Y % depth)
  873. return -EINVAL;
  874. break;
  875. case I915_OVERLAY_YUV_PLANAR:
  876. if (uv_vscale < 0 || uv_hscale < 0)
  877. return -EINVAL;
  878. /* no offset restrictions for planar formats */
  879. break;
  880. default:
  881. return -EINVAL;
  882. }
  883. if (rec->src_width % uv_hscale)
  884. return -EINVAL;
  885. /* stride checking */
  886. if (IS_I830(dev) || IS_845G(dev))
  887. stride_mask = 255;
  888. else
  889. stride_mask = 63;
  890. if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
  891. return -EINVAL;
  892. if (IS_GEN4(dev) && rec->stride_Y < 512)
  893. return -EINVAL;
  894. tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
  895. 4096 : 8192;
  896. if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
  897. return -EINVAL;
  898. /* check buffer dimensions */
  899. switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
  900. case I915_OVERLAY_RGB:
  901. case I915_OVERLAY_YUV_PACKED:
  902. /* always 4 Y values per depth pixels */
  903. if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
  904. return -EINVAL;
  905. tmp = rec->stride_Y*rec->src_height;
  906. if (rec->offset_Y + tmp > new_bo->size)
  907. return -EINVAL;
  908. break;
  909. case I915_OVERLAY_YUV_PLANAR:
  910. if (rec->src_width > rec->stride_Y)
  911. return -EINVAL;
  912. if (rec->src_width/uv_hscale > rec->stride_UV)
  913. return -EINVAL;
  914. tmp = rec->stride_Y * rec->src_height;
  915. if (rec->offset_Y + tmp > new_bo->size)
  916. return -EINVAL;
  917. tmp = rec->stride_UV * (rec->src_height / uv_vscale);
  918. if (rec->offset_U + tmp > new_bo->size ||
  919. rec->offset_V + tmp > new_bo->size)
  920. return -EINVAL;
  921. break;
  922. }
  923. return 0;
  924. }
  925. /**
  926. * Return the pipe currently connected to the panel fitter,
  927. * or -1 if the panel fitter is not present or not in use
  928. */
  929. static int intel_panel_fitter_pipe(struct drm_device *dev)
  930. {
  931. struct drm_i915_private *dev_priv = dev->dev_private;
  932. u32 pfit_control;
  933. /* i830 doesn't have a panel fitter */
  934. if (IS_I830(dev))
  935. return -1;
  936. pfit_control = I915_READ(PFIT_CONTROL);
  937. /* See if the panel fitter is in use */
  938. if ((pfit_control & PFIT_ENABLE) == 0)
  939. return -1;
  940. /* 965 can place panel fitter on either pipe */
  941. if (IS_GEN4(dev))
  942. return (pfit_control >> 29) & 0x3;
  943. /* older chips can only use pipe 1 */
  944. return 1;
  945. }
  946. int intel_overlay_put_image(struct drm_device *dev, void *data,
  947. struct drm_file *file_priv)
  948. {
  949. struct drm_intel_overlay_put_image *put_image_rec = data;
  950. drm_i915_private_t *dev_priv = dev->dev_private;
  951. struct intel_overlay *overlay;
  952. struct drm_mode_object *drmmode_obj;
  953. struct intel_crtc *crtc;
  954. struct drm_gem_object *new_bo;
  955. struct put_image_params *params;
  956. int ret;
  957. if (!dev_priv) {
  958. DRM_ERROR("called with no initialization\n");
  959. return -EINVAL;
  960. }
  961. overlay = dev_priv->overlay;
  962. if (!overlay) {
  963. DRM_DEBUG("userspace bug: no overlay\n");
  964. return -ENODEV;
  965. }
  966. if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
  967. mutex_lock(&dev->mode_config.mutex);
  968. mutex_lock(&dev->struct_mutex);
  969. ret = intel_overlay_switch_off(overlay, true);
  970. mutex_unlock(&dev->struct_mutex);
  971. mutex_unlock(&dev->mode_config.mutex);
  972. return ret;
  973. }
  974. params = kmalloc(sizeof(struct put_image_params), GFP_KERNEL);
  975. if (!params)
  976. return -ENOMEM;
  977. drmmode_obj = drm_mode_object_find(dev, put_image_rec->crtc_id,
  978. DRM_MODE_OBJECT_CRTC);
  979. if (!drmmode_obj) {
  980. ret = -ENOENT;
  981. goto out_free;
  982. }
  983. crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
  984. new_bo = drm_gem_object_lookup(dev, file_priv,
  985. put_image_rec->bo_handle);
  986. if (!new_bo) {
  987. ret = -ENOENT;
  988. goto out_free;
  989. }
  990. mutex_lock(&dev->mode_config.mutex);
  991. mutex_lock(&dev->struct_mutex);
  992. ret = intel_overlay_recover_from_interrupt(overlay, true);
  993. if (ret != 0)
  994. goto out_unlock;
  995. if (overlay->crtc != crtc) {
  996. struct drm_display_mode *mode = &crtc->base.mode;
  997. ret = intel_overlay_switch_off(overlay, true);
  998. if (ret != 0)
  999. goto out_unlock;
  1000. ret = check_overlay_possible_on_crtc(overlay, crtc);
  1001. if (ret != 0)
  1002. goto out_unlock;
  1003. overlay->crtc = crtc;
  1004. crtc->overlay = overlay;
  1005. /* line too wide, i.e. one-line-mode */
  1006. if (mode->hdisplay > 1024 &&
  1007. intel_panel_fitter_pipe(dev) == crtc->pipe) {
  1008. overlay->pfit_active = 1;
  1009. update_pfit_vscale_ratio(overlay);
  1010. } else
  1011. overlay->pfit_active = 0;
  1012. }
  1013. ret = check_overlay_dst(overlay, put_image_rec);
  1014. if (ret != 0)
  1015. goto out_unlock;
  1016. if (overlay->pfit_active) {
  1017. params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
  1018. overlay->pfit_vscale_ratio);
  1019. /* shifting right rounds downwards, so add 1 */
  1020. params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
  1021. overlay->pfit_vscale_ratio) + 1;
  1022. } else {
  1023. params->dst_y = put_image_rec->dst_y;
  1024. params->dst_h = put_image_rec->dst_height;
  1025. }
  1026. params->dst_x = put_image_rec->dst_x;
  1027. params->dst_w = put_image_rec->dst_width;
  1028. params->src_w = put_image_rec->src_width;
  1029. params->src_h = put_image_rec->src_height;
  1030. params->src_scan_w = put_image_rec->src_scan_width;
  1031. params->src_scan_h = put_image_rec->src_scan_height;
  1032. if (params->src_scan_h > params->src_h ||
  1033. params->src_scan_w > params->src_w) {
  1034. ret = -EINVAL;
  1035. goto out_unlock;
  1036. }
  1037. ret = check_overlay_src(dev, put_image_rec, new_bo);
  1038. if (ret != 0)
  1039. goto out_unlock;
  1040. params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
  1041. params->stride_Y = put_image_rec->stride_Y;
  1042. params->stride_UV = put_image_rec->stride_UV;
  1043. params->offset_Y = put_image_rec->offset_Y;
  1044. params->offset_U = put_image_rec->offset_U;
  1045. params->offset_V = put_image_rec->offset_V;
  1046. /* Check scaling after src size to prevent a divide-by-zero. */
  1047. ret = check_overlay_scaling(params);
  1048. if (ret != 0)
  1049. goto out_unlock;
  1050. ret = intel_overlay_do_put_image(overlay, new_bo, params);
  1051. if (ret != 0)
  1052. goto out_unlock;
  1053. mutex_unlock(&dev->struct_mutex);
  1054. mutex_unlock(&dev->mode_config.mutex);
  1055. kfree(params);
  1056. return 0;
  1057. out_unlock:
  1058. mutex_unlock(&dev->struct_mutex);
  1059. mutex_unlock(&dev->mode_config.mutex);
  1060. drm_gem_object_unreference_unlocked(new_bo);
  1061. out_free:
  1062. kfree(params);
  1063. return ret;
  1064. }
  1065. static void update_reg_attrs(struct intel_overlay *overlay,
  1066. struct overlay_registers *regs)
  1067. {
  1068. regs->OCLRC0 = (overlay->contrast << 18) | (overlay->brightness & 0xff);
  1069. regs->OCLRC1 = overlay->saturation;
  1070. }
  1071. static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
  1072. {
  1073. int i;
  1074. if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
  1075. return false;
  1076. for (i = 0; i < 3; i++) {
  1077. if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
  1078. return false;
  1079. }
  1080. return true;
  1081. }
  1082. static bool check_gamma5_errata(u32 gamma5)
  1083. {
  1084. int i;
  1085. for (i = 0; i < 3; i++) {
  1086. if (((gamma5 >> i*8) & 0xff) == 0x80)
  1087. return false;
  1088. }
  1089. return true;
  1090. }
  1091. static int check_gamma(struct drm_intel_overlay_attrs *attrs)
  1092. {
  1093. if (!check_gamma_bounds(0, attrs->gamma0) ||
  1094. !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
  1095. !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
  1096. !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
  1097. !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
  1098. !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
  1099. !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
  1100. return -EINVAL;
  1101. if (!check_gamma5_errata(attrs->gamma5))
  1102. return -EINVAL;
  1103. return 0;
  1104. }
  1105. int intel_overlay_attrs(struct drm_device *dev, void *data,
  1106. struct drm_file *file_priv)
  1107. {
  1108. struct drm_intel_overlay_attrs *attrs = data;
  1109. drm_i915_private_t *dev_priv = dev->dev_private;
  1110. struct intel_overlay *overlay;
  1111. struct overlay_registers *regs;
  1112. int ret;
  1113. if (!dev_priv) {
  1114. DRM_ERROR("called with no initialization\n");
  1115. return -EINVAL;
  1116. }
  1117. overlay = dev_priv->overlay;
  1118. if (!overlay) {
  1119. DRM_DEBUG("userspace bug: no overlay\n");
  1120. return -ENODEV;
  1121. }
  1122. mutex_lock(&dev->mode_config.mutex);
  1123. mutex_lock(&dev->struct_mutex);
  1124. ret = -EINVAL;
  1125. if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
  1126. attrs->color_key = overlay->color_key;
  1127. attrs->brightness = overlay->brightness;
  1128. attrs->contrast = overlay->contrast;
  1129. attrs->saturation = overlay->saturation;
  1130. if (!IS_GEN2(dev)) {
  1131. attrs->gamma0 = I915_READ(OGAMC0);
  1132. attrs->gamma1 = I915_READ(OGAMC1);
  1133. attrs->gamma2 = I915_READ(OGAMC2);
  1134. attrs->gamma3 = I915_READ(OGAMC3);
  1135. attrs->gamma4 = I915_READ(OGAMC4);
  1136. attrs->gamma5 = I915_READ(OGAMC5);
  1137. }
  1138. } else {
  1139. if (attrs->brightness < -128 || attrs->brightness > 127)
  1140. goto out_unlock;
  1141. if (attrs->contrast > 255)
  1142. goto out_unlock;
  1143. if (attrs->saturation > 1023)
  1144. goto out_unlock;
  1145. overlay->color_key = attrs->color_key;
  1146. overlay->brightness = attrs->brightness;
  1147. overlay->contrast = attrs->contrast;
  1148. overlay->saturation = attrs->saturation;
  1149. regs = intel_overlay_map_regs(overlay);
  1150. if (!regs) {
  1151. ret = -ENOMEM;
  1152. goto out_unlock;
  1153. }
  1154. update_reg_attrs(overlay, regs);
  1155. intel_overlay_unmap_regs(overlay, regs);
  1156. if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
  1157. if (IS_GEN2(dev))
  1158. goto out_unlock;
  1159. if (overlay->active) {
  1160. ret = -EBUSY;
  1161. goto out_unlock;
  1162. }
  1163. ret = check_gamma(attrs);
  1164. if (ret)
  1165. goto out_unlock;
  1166. I915_WRITE(OGAMC0, attrs->gamma0);
  1167. I915_WRITE(OGAMC1, attrs->gamma1);
  1168. I915_WRITE(OGAMC2, attrs->gamma2);
  1169. I915_WRITE(OGAMC3, attrs->gamma3);
  1170. I915_WRITE(OGAMC4, attrs->gamma4);
  1171. I915_WRITE(OGAMC5, attrs->gamma5);
  1172. }
  1173. }
  1174. ret = 0;
  1175. out_unlock:
  1176. mutex_unlock(&dev->struct_mutex);
  1177. mutex_unlock(&dev->mode_config.mutex);
  1178. return ret;
  1179. }
  1180. void intel_setup_overlay(struct drm_device *dev)
  1181. {
  1182. drm_i915_private_t *dev_priv = dev->dev_private;
  1183. struct intel_overlay *overlay;
  1184. struct drm_gem_object *reg_bo;
  1185. struct overlay_registers *regs;
  1186. int ret;
  1187. if (!HAS_OVERLAY(dev))
  1188. return;
  1189. overlay = kzalloc(sizeof(struct intel_overlay), GFP_KERNEL);
  1190. if (!overlay)
  1191. return;
  1192. overlay->dev = dev;
  1193. reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
  1194. if (!reg_bo)
  1195. goto out_free;
  1196. overlay->reg_bo = to_intel_bo(reg_bo);
  1197. if (OVERLAY_NEEDS_PHYSICAL(dev)) {
  1198. ret = i915_gem_attach_phys_object(dev, reg_bo,
  1199. I915_GEM_PHYS_OVERLAY_REGS,
  1200. PAGE_SIZE);
  1201. if (ret) {
  1202. DRM_ERROR("failed to attach phys overlay regs\n");
  1203. goto out_free_bo;
  1204. }
  1205. overlay->flip_addr = overlay->reg_bo->phys_obj->handle->busaddr;
  1206. } else {
  1207. ret = i915_gem_object_pin(reg_bo, PAGE_SIZE, true, false);
  1208. if (ret) {
  1209. DRM_ERROR("failed to pin overlay register bo\n");
  1210. goto out_free_bo;
  1211. }
  1212. overlay->flip_addr = overlay->reg_bo->gtt_offset;
  1213. ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
  1214. if (ret) {
  1215. DRM_ERROR("failed to move overlay register bo into the GTT\n");
  1216. goto out_unpin_bo;
  1217. }
  1218. }
  1219. /* init all values */
  1220. overlay->color_key = 0x0101fe;
  1221. overlay->brightness = -19;
  1222. overlay->contrast = 75;
  1223. overlay->saturation = 146;
  1224. regs = intel_overlay_map_regs(overlay);
  1225. if (!regs)
  1226. goto out_free_bo;
  1227. memset(regs, 0, sizeof(struct overlay_registers));
  1228. update_polyphase_filter(regs);
  1229. update_reg_attrs(overlay, regs);
  1230. intel_overlay_unmap_regs(overlay, regs);
  1231. dev_priv->overlay = overlay;
  1232. DRM_INFO("initialized overlay support\n");
  1233. return;
  1234. out_unpin_bo:
  1235. i915_gem_object_unpin(reg_bo);
  1236. out_free_bo:
  1237. drm_gem_object_unreference(reg_bo);
  1238. out_free:
  1239. kfree(overlay);
  1240. return;
  1241. }
  1242. void intel_cleanup_overlay(struct drm_device *dev)
  1243. {
  1244. drm_i915_private_t *dev_priv = dev->dev_private;
  1245. if (!dev_priv->overlay)
  1246. return;
  1247. /* The bo's should be free'd by the generic code already.
  1248. * Furthermore modesetting teardown happens beforehand so the
  1249. * hardware should be off already */
  1250. BUG_ON(dev_priv->overlay->active);
  1251. drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
  1252. kfree(dev_priv->overlay);
  1253. }
  1254. #ifdef CONFIG_DEBUG_FS
  1255. #include <linux/seq_file.h>
  1256. struct intel_overlay_error_state {
  1257. struct overlay_registers regs;
  1258. unsigned long base;
  1259. u32 dovsta;
  1260. u32 isr;
  1261. };
  1262. static struct overlay_registers *
  1263. intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
  1264. {
  1265. drm_i915_private_t *dev_priv = overlay->dev->dev_private;
  1266. struct overlay_registers *regs;
  1267. if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
  1268. regs = overlay->reg_bo->phys_obj->handle->vaddr;
  1269. else
  1270. regs = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
  1271. overlay->reg_bo->gtt_offset);
  1272. return regs;
  1273. }
  1274. static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
  1275. struct overlay_registers *regs)
  1276. {
  1277. if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
  1278. io_mapping_unmap_atomic(regs);
  1279. }
  1280. struct intel_overlay_error_state *
  1281. intel_overlay_capture_error_state(struct drm_device *dev)
  1282. {
  1283. drm_i915_private_t *dev_priv = dev->dev_private;
  1284. struct intel_overlay *overlay = dev_priv->overlay;
  1285. struct intel_overlay_error_state *error;
  1286. struct overlay_registers __iomem *regs;
  1287. if (!overlay || !overlay->active)
  1288. return NULL;
  1289. error = kmalloc(sizeof(*error), GFP_ATOMIC);
  1290. if (error == NULL)
  1291. return NULL;
  1292. error->dovsta = I915_READ(DOVSTA);
  1293. error->isr = I915_READ(ISR);
  1294. if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
  1295. error->base = (long) overlay->reg_bo->phys_obj->handle->vaddr;
  1296. else
  1297. error->base = (long) overlay->reg_bo->gtt_offset;
  1298. regs = intel_overlay_map_regs_atomic(overlay);
  1299. if (!regs)
  1300. goto err;
  1301. memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
  1302. intel_overlay_unmap_regs_atomic(overlay, regs);
  1303. return error;
  1304. err:
  1305. kfree(error);
  1306. return NULL;
  1307. }
  1308. void
  1309. intel_overlay_print_error_state(struct seq_file *m, struct intel_overlay_error_state *error)
  1310. {
  1311. seq_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
  1312. error->dovsta, error->isr);
  1313. seq_printf(m, " Register file at 0x%08lx:\n",
  1314. error->base);
  1315. #define P(x) seq_printf(m, " " #x ": 0x%08x\n", error->regs.x)
  1316. P(OBUF_0Y);
  1317. P(OBUF_1Y);
  1318. P(OBUF_0U);
  1319. P(OBUF_0V);
  1320. P(OBUF_1U);
  1321. P(OBUF_1V);
  1322. P(OSTRIDE);
  1323. P(YRGB_VPH);
  1324. P(UV_VPH);
  1325. P(HORZ_PH);
  1326. P(INIT_PHS);
  1327. P(DWINPOS);
  1328. P(DWINSZ);
  1329. P(SWIDTH);
  1330. P(SWIDTHSW);
  1331. P(SHEIGHT);
  1332. P(YRGBSCALE);
  1333. P(UVSCALE);
  1334. P(OCLRC0);
  1335. P(OCLRC1);
  1336. P(DCLRKV);
  1337. P(DCLRKM);
  1338. P(SCLRKVH);
  1339. P(SCLRKVL);
  1340. P(SCLRKEN);
  1341. P(OCONFIG);
  1342. P(OCMD);
  1343. P(OSTART_0Y);
  1344. P(OSTART_1Y);
  1345. P(OSTART_0U);
  1346. P(OSTART_0V);
  1347. P(OSTART_1U);
  1348. P(OSTART_1V);
  1349. P(OTILEOFF_0Y);
  1350. P(OTILEOFF_1Y);
  1351. P(OTILEOFF_0U);
  1352. P(OTILEOFF_0V);
  1353. P(OTILEOFF_1U);
  1354. P(OTILEOFF_1V);
  1355. P(FASTHSCALE);
  1356. P(UVSCALEV);
  1357. #undef P
  1358. }
  1359. #endif