exynos_drm_fbdev.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /* exynos_drm_fbdev.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. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. */
  14. #include <drm/drmP.h>
  15. #include <drm/drm_crtc.h>
  16. #include <drm/drm_fb_helper.h>
  17. #include <drm/drm_crtc_helper.h>
  18. #include <drm/exynos_drm.h>
  19. #include "exynos_drm_drv.h"
  20. #include "exynos_drm_fb.h"
  21. #include "exynos_drm_fbdev.h"
  22. #include "exynos_drm_iommu.h"
  23. #define MAX_CONNECTOR 4
  24. #define PREFERRED_BPP 32
  25. #define to_exynos_fbdev(x) container_of(x, struct exynos_drm_fbdev,\
  26. drm_fb_helper)
  27. struct exynos_drm_fbdev {
  28. struct drm_fb_helper drm_fb_helper;
  29. struct exynos_drm_gem *exynos_gem;
  30. };
  31. static int exynos_drm_fb_mmap(struct fb_info *info,
  32. struct vm_area_struct *vma)
  33. {
  34. struct drm_fb_helper *helper = info->par;
  35. struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(helper);
  36. struct exynos_drm_gem *exynos_gem = exynos_fbd->exynos_gem;
  37. unsigned long vm_size;
  38. int ret;
  39. vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
  40. vm_size = vma->vm_end - vma->vm_start;
  41. if (vm_size > exynos_gem->size)
  42. return -EINVAL;
  43. ret = dma_mmap_attrs(to_dma_dev(helper->dev), vma, exynos_gem->cookie,
  44. exynos_gem->dma_addr, exynos_gem->size,
  45. exynos_gem->dma_attrs);
  46. if (ret < 0) {
  47. DRM_ERROR("failed to mmap.\n");
  48. return ret;
  49. }
  50. return 0;
  51. }
  52. static struct fb_ops exynos_drm_fb_ops = {
  53. .owner = THIS_MODULE,
  54. DRM_FB_HELPER_DEFAULT_OPS,
  55. .fb_mmap = exynos_drm_fb_mmap,
  56. .fb_fillrect = drm_fb_helper_cfb_fillrect,
  57. .fb_copyarea = drm_fb_helper_cfb_copyarea,
  58. .fb_imageblit = drm_fb_helper_cfb_imageblit,
  59. };
  60. static int exynos_drm_fbdev_update(struct drm_fb_helper *helper,
  61. struct drm_fb_helper_surface_size *sizes,
  62. struct exynos_drm_gem *exynos_gem)
  63. {
  64. struct fb_info *fbi;
  65. struct drm_framebuffer *fb = helper->fb;
  66. unsigned int size = fb->width * fb->height * fb->format->cpp[0];
  67. unsigned int nr_pages;
  68. unsigned long offset;
  69. fbi = drm_fb_helper_alloc_fbi(helper);
  70. if (IS_ERR(fbi)) {
  71. DRM_ERROR("failed to allocate fb info.\n");
  72. return PTR_ERR(fbi);
  73. }
  74. fbi->par = helper;
  75. fbi->flags = FBINFO_FLAG_DEFAULT;
  76. fbi->fbops = &exynos_drm_fb_ops;
  77. drm_fb_helper_fill_fix(fbi, fb->pitches[0], fb->format->depth);
  78. drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height);
  79. nr_pages = exynos_gem->size >> PAGE_SHIFT;
  80. exynos_gem->kvaddr = (void __iomem *) vmap(exynos_gem->pages, nr_pages,
  81. VM_MAP, pgprot_writecombine(PAGE_KERNEL));
  82. if (!exynos_gem->kvaddr) {
  83. DRM_ERROR("failed to map pages to kernel space.\n");
  84. drm_fb_helper_release_fbi(helper);
  85. return -EIO;
  86. }
  87. offset = fbi->var.xoffset * fb->format->cpp[0];
  88. offset += fbi->var.yoffset * fb->pitches[0];
  89. fbi->screen_base = exynos_gem->kvaddr + offset;
  90. fbi->screen_size = size;
  91. fbi->fix.smem_len = size;
  92. return 0;
  93. }
  94. static int exynos_drm_fbdev_create(struct drm_fb_helper *helper,
  95. struct drm_fb_helper_surface_size *sizes)
  96. {
  97. struct exynos_drm_fbdev *exynos_fbdev = to_exynos_fbdev(helper);
  98. struct exynos_drm_gem *exynos_gem;
  99. struct drm_device *dev = helper->dev;
  100. struct drm_mode_fb_cmd2 mode_cmd = { 0 };
  101. struct platform_device *pdev = dev->platformdev;
  102. unsigned long size;
  103. int ret;
  104. DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n",
  105. sizes->surface_width, sizes->surface_height,
  106. sizes->surface_bpp);
  107. mode_cmd.width = sizes->surface_width;
  108. mode_cmd.height = sizes->surface_height;
  109. mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3);
  110. mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
  111. sizes->surface_depth);
  112. size = mode_cmd.pitches[0] * mode_cmd.height;
  113. exynos_gem = exynos_drm_gem_create(dev, EXYNOS_BO_CONTIG, size);
  114. /*
  115. * If physically contiguous memory allocation fails and if IOMMU is
  116. * supported then try to get buffer from non physically contiguous
  117. * memory area.
  118. */
  119. if (IS_ERR(exynos_gem) && is_drm_iommu_supported(dev)) {
  120. dev_warn(&pdev->dev, "contiguous FB allocation failed, falling back to non-contiguous\n");
  121. exynos_gem = exynos_drm_gem_create(dev, EXYNOS_BO_NONCONTIG,
  122. size);
  123. }
  124. if (IS_ERR(exynos_gem))
  125. return PTR_ERR(exynos_gem);
  126. exynos_fbdev->exynos_gem = exynos_gem;
  127. helper->fb =
  128. exynos_drm_framebuffer_init(dev, &mode_cmd, &exynos_gem, 1);
  129. if (IS_ERR(helper->fb)) {
  130. DRM_ERROR("failed to create drm framebuffer.\n");
  131. ret = PTR_ERR(helper->fb);
  132. goto err_destroy_gem;
  133. }
  134. ret = exynos_drm_fbdev_update(helper, sizes, exynos_gem);
  135. if (ret < 0)
  136. goto err_destroy_framebuffer;
  137. return ret;
  138. err_destroy_framebuffer:
  139. drm_framebuffer_cleanup(helper->fb);
  140. err_destroy_gem:
  141. exynos_drm_gem_destroy(exynos_gem);
  142. /*
  143. * if failed, all resources allocated above would be released by
  144. * drm_mode_config_cleanup() when drm_load() had been called prior
  145. * to any specific driver such as fimd or hdmi driver.
  146. */
  147. return ret;
  148. }
  149. static const struct drm_fb_helper_funcs exynos_drm_fb_helper_funcs = {
  150. .fb_probe = exynos_drm_fbdev_create,
  151. };
  152. static bool exynos_drm_fbdev_is_anything_connected(struct drm_device *dev)
  153. {
  154. struct drm_connector *connector;
  155. bool ret = false;
  156. mutex_lock(&dev->mode_config.mutex);
  157. list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
  158. if (connector->status != connector_status_connected)
  159. continue;
  160. ret = true;
  161. break;
  162. }
  163. mutex_unlock(&dev->mode_config.mutex);
  164. return ret;
  165. }
  166. int exynos_drm_fbdev_init(struct drm_device *dev)
  167. {
  168. struct exynos_drm_fbdev *fbdev;
  169. struct exynos_drm_private *private = dev->dev_private;
  170. struct drm_fb_helper *helper;
  171. unsigned int num_crtc;
  172. int ret;
  173. if (!dev->mode_config.num_crtc || !dev->mode_config.num_connector)
  174. return 0;
  175. if (!exynos_drm_fbdev_is_anything_connected(dev))
  176. return 0;
  177. fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
  178. if (!fbdev)
  179. return -ENOMEM;
  180. private->fb_helper = helper = &fbdev->drm_fb_helper;
  181. drm_fb_helper_prepare(dev, helper, &exynos_drm_fb_helper_funcs);
  182. num_crtc = dev->mode_config.num_crtc;
  183. ret = drm_fb_helper_init(dev, helper, num_crtc, MAX_CONNECTOR);
  184. if (ret < 0) {
  185. DRM_ERROR("failed to initialize drm fb helper.\n");
  186. goto err_init;
  187. }
  188. ret = drm_fb_helper_single_add_all_connectors(helper);
  189. if (ret < 0) {
  190. DRM_ERROR("failed to register drm_fb_helper_connector.\n");
  191. goto err_setup;
  192. }
  193. ret = drm_fb_helper_initial_config(helper, PREFERRED_BPP);
  194. if (ret < 0) {
  195. DRM_ERROR("failed to set up hw configuration.\n");
  196. goto err_setup;
  197. }
  198. return 0;
  199. err_setup:
  200. drm_fb_helper_fini(helper);
  201. err_init:
  202. private->fb_helper = NULL;
  203. kfree(fbdev);
  204. return ret;
  205. }
  206. static void exynos_drm_fbdev_destroy(struct drm_device *dev,
  207. struct drm_fb_helper *fb_helper)
  208. {
  209. struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(fb_helper);
  210. struct exynos_drm_gem *exynos_gem = exynos_fbd->exynos_gem;
  211. struct drm_framebuffer *fb;
  212. vunmap(exynos_gem->kvaddr);
  213. /* release drm framebuffer and real buffer */
  214. if (fb_helper->fb && fb_helper->fb->funcs) {
  215. fb = fb_helper->fb;
  216. if (fb) {
  217. drm_framebuffer_unregister_private(fb);
  218. drm_framebuffer_remove(fb);
  219. }
  220. }
  221. drm_fb_helper_unregister_fbi(fb_helper);
  222. drm_fb_helper_release_fbi(fb_helper);
  223. drm_fb_helper_fini(fb_helper);
  224. }
  225. void exynos_drm_fbdev_fini(struct drm_device *dev)
  226. {
  227. struct exynos_drm_private *private = dev->dev_private;
  228. struct exynos_drm_fbdev *fbdev;
  229. if (!private || !private->fb_helper)
  230. return;
  231. fbdev = to_exynos_fbdev(private->fb_helper);
  232. exynos_drm_fbdev_destroy(dev, private->fb_helper);
  233. kfree(fbdev);
  234. private->fb_helper = NULL;
  235. }
  236. void exynos_drm_fbdev_restore_mode(struct drm_device *dev)
  237. {
  238. struct exynos_drm_private *private = dev->dev_private;
  239. if (!private || !private->fb_helper)
  240. return;
  241. drm_fb_helper_restore_fbdev_mode_unlocked(private->fb_helper);
  242. }
  243. void exynos_drm_output_poll_changed(struct drm_device *dev)
  244. {
  245. struct exynos_drm_private *private = dev->dev_private;
  246. struct drm_fb_helper *fb_helper = private->fb_helper;
  247. if (fb_helper)
  248. drm_fb_helper_hotplug_event(fb_helper);
  249. else
  250. exynos_drm_fbdev_init(dev);
  251. }