mdp4_plane.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * Copyright (C) 2013 Red Hat
  3. * Author: Rob Clark <robdclark@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published by
  7. * the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include "mdp4_kms.h"
  18. struct mdp4_plane {
  19. struct drm_plane base;
  20. const char *name;
  21. enum mdp4_pipe pipe;
  22. uint32_t nformats;
  23. uint32_t formats[32];
  24. bool enabled;
  25. };
  26. #define to_mdp4_plane(x) container_of(x, struct mdp4_plane, base)
  27. static struct mdp4_kms *get_kms(struct drm_plane *plane)
  28. {
  29. struct msm_drm_private *priv = plane->dev->dev_private;
  30. return to_mdp4_kms(priv->kms);
  31. }
  32. static int mdp4_plane_update(struct drm_plane *plane,
  33. struct drm_crtc *crtc, struct drm_framebuffer *fb,
  34. int crtc_x, int crtc_y,
  35. unsigned int crtc_w, unsigned int crtc_h,
  36. uint32_t src_x, uint32_t src_y,
  37. uint32_t src_w, uint32_t src_h)
  38. {
  39. struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
  40. mdp4_plane->enabled = true;
  41. if (plane->fb)
  42. drm_framebuffer_unreference(plane->fb);
  43. drm_framebuffer_reference(fb);
  44. return mdp4_plane_mode_set(plane, crtc, fb,
  45. crtc_x, crtc_y, crtc_w, crtc_h,
  46. src_x, src_y, src_w, src_h);
  47. }
  48. static int mdp4_plane_disable(struct drm_plane *plane)
  49. {
  50. struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
  51. DBG("%s: disable", mdp4_plane->name);
  52. if (plane->crtc)
  53. mdp4_crtc_detach(plane->crtc, plane);
  54. return 0;
  55. }
  56. static void mdp4_plane_destroy(struct drm_plane *plane)
  57. {
  58. struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
  59. mdp4_plane_disable(plane);
  60. drm_plane_cleanup(plane);
  61. kfree(mdp4_plane);
  62. }
  63. /* helper to install properties which are common to planes and crtcs */
  64. void mdp4_plane_install_properties(struct drm_plane *plane,
  65. struct drm_mode_object *obj)
  66. {
  67. // XXX
  68. }
  69. int mdp4_plane_set_property(struct drm_plane *plane,
  70. struct drm_property *property, uint64_t val)
  71. {
  72. // XXX
  73. return -EINVAL;
  74. }
  75. static const struct drm_plane_funcs mdp4_plane_funcs = {
  76. .update_plane = mdp4_plane_update,
  77. .disable_plane = mdp4_plane_disable,
  78. .destroy = mdp4_plane_destroy,
  79. .set_property = mdp4_plane_set_property,
  80. };
  81. void mdp4_plane_set_scanout(struct drm_plane *plane,
  82. struct drm_framebuffer *fb)
  83. {
  84. struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
  85. struct mdp4_kms *mdp4_kms = get_kms(plane);
  86. enum mdp4_pipe pipe = mdp4_plane->pipe;
  87. uint32_t iova;
  88. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_STRIDE_A(pipe),
  89. MDP4_PIPE_SRC_STRIDE_A_P0(fb->pitches[0]) |
  90. MDP4_PIPE_SRC_STRIDE_A_P1(fb->pitches[1]));
  91. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_STRIDE_B(pipe),
  92. MDP4_PIPE_SRC_STRIDE_B_P2(fb->pitches[2]) |
  93. MDP4_PIPE_SRC_STRIDE_B_P3(fb->pitches[3]));
  94. msm_gem_get_iova(msm_framebuffer_bo(fb, 0), mdp4_kms->id, &iova);
  95. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRCP0_BASE(pipe), iova);
  96. plane->fb = fb;
  97. }
  98. #define MDP4_VG_PHASE_STEP_DEFAULT 0x20000000
  99. int mdp4_plane_mode_set(struct drm_plane *plane,
  100. struct drm_crtc *crtc, struct drm_framebuffer *fb,
  101. int crtc_x, int crtc_y,
  102. unsigned int crtc_w, unsigned int crtc_h,
  103. uint32_t src_x, uint32_t src_y,
  104. uint32_t src_w, uint32_t src_h)
  105. {
  106. struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
  107. struct mdp4_kms *mdp4_kms = get_kms(plane);
  108. enum mdp4_pipe pipe = mdp4_plane->pipe;
  109. const struct mdp4_format *format;
  110. uint32_t op_mode = 0;
  111. uint32_t phasex_step = MDP4_VG_PHASE_STEP_DEFAULT;
  112. uint32_t phasey_step = MDP4_VG_PHASE_STEP_DEFAULT;
  113. /* src values are in Q16 fixed point, convert to integer: */
  114. src_x = src_x >> 16;
  115. src_y = src_y >> 16;
  116. src_w = src_w >> 16;
  117. src_h = src_h >> 16;
  118. DBG("%s: FB[%u] %u,%u,%u,%u -> CRTC[%u] %d,%d,%u,%u", mdp4_plane->name,
  119. fb->base.id, src_x, src_y, src_w, src_h,
  120. crtc->base.id, crtc_x, crtc_y, crtc_w, crtc_h);
  121. if (src_w != crtc_w) {
  122. op_mode |= MDP4_PIPE_OP_MODE_SCALEX_EN;
  123. /* TODO calc phasex_step */
  124. }
  125. if (src_h != crtc_h) {
  126. op_mode |= MDP4_PIPE_OP_MODE_SCALEY_EN;
  127. /* TODO calc phasey_step */
  128. }
  129. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_SIZE(pipe),
  130. MDP4_PIPE_SRC_SIZE_WIDTH(src_w) |
  131. MDP4_PIPE_SRC_SIZE_HEIGHT(src_h));
  132. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_XY(pipe),
  133. MDP4_PIPE_SRC_XY_X(src_x) |
  134. MDP4_PIPE_SRC_XY_Y(src_y));
  135. mdp4_write(mdp4_kms, REG_MDP4_PIPE_DST_SIZE(pipe),
  136. MDP4_PIPE_DST_SIZE_WIDTH(crtc_w) |
  137. MDP4_PIPE_DST_SIZE_HEIGHT(crtc_h));
  138. mdp4_write(mdp4_kms, REG_MDP4_PIPE_DST_XY(pipe),
  139. MDP4_PIPE_SRC_XY_X(crtc_x) |
  140. MDP4_PIPE_SRC_XY_Y(crtc_y));
  141. mdp4_plane_set_scanout(plane, fb);
  142. format = to_mdp4_format(msm_framebuffer_format(fb));
  143. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_FORMAT(pipe),
  144. MDP4_PIPE_SRC_FORMAT_A_BPC(format->bpc_a) |
  145. MDP4_PIPE_SRC_FORMAT_R_BPC(format->bpc_r) |
  146. MDP4_PIPE_SRC_FORMAT_G_BPC(format->bpc_g) |
  147. MDP4_PIPE_SRC_FORMAT_B_BPC(format->bpc_b) |
  148. COND(format->alpha_enable, MDP4_PIPE_SRC_FORMAT_ALPHA_ENABLE) |
  149. MDP4_PIPE_SRC_FORMAT_CPP(format->cpp - 1) |
  150. MDP4_PIPE_SRC_FORMAT_UNPACK_COUNT(format->unpack_count - 1) |
  151. COND(format->unpack_tight, MDP4_PIPE_SRC_FORMAT_UNPACK_TIGHT));
  152. mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_UNPACK(pipe),
  153. MDP4_PIPE_SRC_UNPACK_ELEM0(format->unpack[0]) |
  154. MDP4_PIPE_SRC_UNPACK_ELEM1(format->unpack[1]) |
  155. MDP4_PIPE_SRC_UNPACK_ELEM2(format->unpack[2]) |
  156. MDP4_PIPE_SRC_UNPACK_ELEM3(format->unpack[3]));
  157. mdp4_write(mdp4_kms, REG_MDP4_PIPE_OP_MODE(pipe), op_mode);
  158. mdp4_write(mdp4_kms, REG_MDP4_PIPE_PHASEX_STEP(pipe), phasex_step);
  159. mdp4_write(mdp4_kms, REG_MDP4_PIPE_PHASEY_STEP(pipe), phasey_step);
  160. /* TODO detach from old crtc (if we had more than one) */
  161. mdp4_crtc_attach(crtc, plane);
  162. return 0;
  163. }
  164. static const char *pipe_names[] = {
  165. "VG1", "VG2",
  166. "RGB1", "RGB2", "RGB3",
  167. "VG3", "VG4",
  168. };
  169. enum mdp4_pipe mdp4_plane_pipe(struct drm_plane *plane)
  170. {
  171. struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
  172. return mdp4_plane->pipe;
  173. }
  174. /* initialize plane */
  175. struct drm_plane *mdp4_plane_init(struct drm_device *dev,
  176. enum mdp4_pipe pipe_id, bool private_plane)
  177. {
  178. struct drm_plane *plane = NULL;
  179. struct mdp4_plane *mdp4_plane;
  180. int ret;
  181. mdp4_plane = kzalloc(sizeof(*mdp4_plane), GFP_KERNEL);
  182. if (!mdp4_plane) {
  183. ret = -ENOMEM;
  184. goto fail;
  185. }
  186. plane = &mdp4_plane->base;
  187. mdp4_plane->pipe = pipe_id;
  188. mdp4_plane->name = pipe_names[pipe_id];
  189. mdp4_plane->nformats = mdp4_get_formats(pipe_id, mdp4_plane->formats,
  190. ARRAY_SIZE(mdp4_plane->formats));
  191. drm_plane_init(dev, plane, 0xff, &mdp4_plane_funcs,
  192. mdp4_plane->formats, mdp4_plane->nformats,
  193. private_plane);
  194. mdp4_plane_install_properties(plane, &plane->base);
  195. return plane;
  196. fail:
  197. if (plane)
  198. mdp4_plane_destroy(plane);
  199. return ERR_PTR(ret);
  200. }