exynos_drm_fb.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* exynos_drm_fb.c
  2. *
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  4. * Authors:
  5. * Inki Dae <inki.dae@samsung.com>
  6. * Joonyoung Shim <jy0922.shim@samsung.com>
  7. * Seung-Woo Kim <sw0312.kim@samsung.com>
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the next
  17. * paragraph) shall be included in all copies or substantial portions of the
  18. * Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  23. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  24. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  25. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #include "drmP.h"
  29. #include "drm_crtc.h"
  30. #include "drm_crtc_helper.h"
  31. #include "drm_fb_helper.h"
  32. #include "exynos_drm_drv.h"
  33. #include "exynos_drm_fb.h"
  34. #include "exynos_drm_gem.h"
  35. #define to_exynos_fb(x) container_of(x, struct exynos_drm_fb, fb)
  36. /*
  37. * exynos specific framebuffer structure.
  38. *
  39. * @fb: drm framebuffer obejct.
  40. * @exynos_gem_obj: array of exynos specific gem object containing a gem object.
  41. */
  42. struct exynos_drm_fb {
  43. struct drm_framebuffer fb;
  44. struct exynos_drm_gem_obj *exynos_gem_obj[MAX_FB_BUFFER];
  45. };
  46. static void exynos_drm_fb_destroy(struct drm_framebuffer *fb)
  47. {
  48. struct exynos_drm_fb *exynos_fb = to_exynos_fb(fb);
  49. DRM_DEBUG_KMS("%s\n", __FILE__);
  50. drm_framebuffer_cleanup(fb);
  51. kfree(exynos_fb);
  52. exynos_fb = NULL;
  53. }
  54. static int exynos_drm_fb_create_handle(struct drm_framebuffer *fb,
  55. struct drm_file *file_priv,
  56. unsigned int *handle)
  57. {
  58. struct exynos_drm_fb *exynos_fb = to_exynos_fb(fb);
  59. DRM_DEBUG_KMS("%s\n", __FILE__);
  60. return drm_gem_handle_create(file_priv,
  61. &exynos_fb->exynos_gem_obj[0]->base, handle);
  62. }
  63. static int exynos_drm_fb_dirty(struct drm_framebuffer *fb,
  64. struct drm_file *file_priv, unsigned flags,
  65. unsigned color, struct drm_clip_rect *clips,
  66. unsigned num_clips)
  67. {
  68. DRM_DEBUG_KMS("%s\n", __FILE__);
  69. /* TODO */
  70. return 0;
  71. }
  72. static struct drm_framebuffer_funcs exynos_drm_fb_funcs = {
  73. .destroy = exynos_drm_fb_destroy,
  74. .create_handle = exynos_drm_fb_create_handle,
  75. .dirty = exynos_drm_fb_dirty,
  76. };
  77. struct drm_framebuffer *
  78. exynos_drm_framebuffer_init(struct drm_device *dev,
  79. struct drm_mode_fb_cmd2 *mode_cmd,
  80. struct drm_gem_object *obj)
  81. {
  82. struct exynos_drm_fb *exynos_fb;
  83. int ret;
  84. exynos_fb = kzalloc(sizeof(*exynos_fb), GFP_KERNEL);
  85. if (!exynos_fb) {
  86. DRM_ERROR("failed to allocate exynos drm framebuffer\n");
  87. return ERR_PTR(-ENOMEM);
  88. }
  89. ret = drm_framebuffer_init(dev, &exynos_fb->fb, &exynos_drm_fb_funcs);
  90. if (ret) {
  91. DRM_ERROR("failed to initialize framebuffer\n");
  92. return ERR_PTR(ret);
  93. }
  94. drm_helper_mode_fill_fb_struct(&exynos_fb->fb, mode_cmd);
  95. exynos_fb->exynos_gem_obj[0] = to_exynos_gem_obj(obj);
  96. return &exynos_fb->fb;
  97. }
  98. static struct drm_framebuffer *
  99. exynos_user_fb_create(struct drm_device *dev, struct drm_file *file_priv,
  100. struct drm_mode_fb_cmd2 *mode_cmd)
  101. {
  102. struct drm_gem_object *obj;
  103. struct drm_framebuffer *fb;
  104. struct exynos_drm_fb *exynos_fb;
  105. int nr;
  106. int i;
  107. DRM_DEBUG_KMS("%s\n", __FILE__);
  108. obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]);
  109. if (!obj) {
  110. DRM_ERROR("failed to lookup gem object\n");
  111. return ERR_PTR(-ENOENT);
  112. }
  113. drm_gem_object_unreference_unlocked(obj);
  114. fb = exynos_drm_framebuffer_init(dev, mode_cmd, obj);
  115. if (IS_ERR(fb))
  116. return fb;
  117. exynos_fb = to_exynos_fb(fb);
  118. nr = exynos_drm_format_num_buffers(fb->pixel_format);
  119. for (i = 1; i < nr; i++) {
  120. obj = drm_gem_object_lookup(dev, file_priv,
  121. mode_cmd->handles[i]);
  122. if (!obj) {
  123. DRM_ERROR("failed to lookup gem object\n");
  124. exynos_drm_fb_destroy(fb);
  125. return ERR_PTR(-ENOENT);
  126. }
  127. drm_gem_object_unreference_unlocked(obj);
  128. exynos_fb->exynos_gem_obj[i] = to_exynos_gem_obj(obj);
  129. }
  130. return fb;
  131. }
  132. struct exynos_drm_gem_buf *exynos_drm_fb_buffer(struct drm_framebuffer *fb,
  133. int index)
  134. {
  135. struct exynos_drm_fb *exynos_fb = to_exynos_fb(fb);
  136. struct exynos_drm_gem_buf *buffer;
  137. DRM_DEBUG_KMS("%s\n", __FILE__);
  138. if (index >= MAX_FB_BUFFER)
  139. return NULL;
  140. buffer = exynos_fb->exynos_gem_obj[index]->buffer;
  141. if (!buffer)
  142. return NULL;
  143. DRM_DEBUG_KMS("vaddr = 0x%lx, dma_addr = 0x%lx\n",
  144. (unsigned long)buffer->kvaddr,
  145. (unsigned long)buffer->dma_addr);
  146. return buffer;
  147. }
  148. static void exynos_drm_output_poll_changed(struct drm_device *dev)
  149. {
  150. struct exynos_drm_private *private = dev->dev_private;
  151. struct drm_fb_helper *fb_helper = private->fb_helper;
  152. if (fb_helper)
  153. drm_fb_helper_hotplug_event(fb_helper);
  154. }
  155. static struct drm_mode_config_funcs exynos_drm_mode_config_funcs = {
  156. .fb_create = exynos_user_fb_create,
  157. .output_poll_changed = exynos_drm_output_poll_changed,
  158. };
  159. void exynos_drm_mode_config_init(struct drm_device *dev)
  160. {
  161. dev->mode_config.min_width = 0;
  162. dev->mode_config.min_height = 0;
  163. /*
  164. * set max width and height as default value(4096x4096).
  165. * this value would be used to check framebuffer size limitation
  166. * at drm_mode_addfb().
  167. */
  168. dev->mode_config.max_width = 4096;
  169. dev->mode_config.max_height = 4096;
  170. dev->mode_config.funcs = &exynos_drm_mode_config_funcs;
  171. }