rcar_du_drv.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*
  2. * rcar_du_drv.c -- R-Car Display Unit DRM driver
  3. *
  4. * Copyright (C) 2013-2014 Renesas Electronics Corporation
  5. *
  6. * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. */
  13. #include <linux/clk.h>
  14. #include <linux/io.h>
  15. #include <linux/mm.h>
  16. #include <linux/module.h>
  17. #include <linux/of_device.h>
  18. #include <linux/platform_device.h>
  19. #include <linux/pm.h>
  20. #include <linux/slab.h>
  21. #include <linux/wait.h>
  22. #include <drm/drmP.h>
  23. #include <drm/drm_crtc_helper.h>
  24. #include <drm/drm_fb_cma_helper.h>
  25. #include <drm/drm_gem_cma_helper.h>
  26. #include "rcar_du_crtc.h"
  27. #include "rcar_du_drv.h"
  28. #include "rcar_du_kms.h"
  29. #include "rcar_du_regs.h"
  30. /* -----------------------------------------------------------------------------
  31. * Device Information
  32. */
  33. static const struct rcar_du_device_info rcar_du_r8a7779_info = {
  34. .features = 0,
  35. .num_crtcs = 2,
  36. .routes = {
  37. /* R8A7779 has two RGB outputs and one (currently unsupported)
  38. * TCON output.
  39. */
  40. [RCAR_DU_OUTPUT_DPAD0] = {
  41. .possible_crtcs = BIT(0),
  42. .encoder_type = DRM_MODE_ENCODER_NONE,
  43. .port = 0,
  44. },
  45. [RCAR_DU_OUTPUT_DPAD1] = {
  46. .possible_crtcs = BIT(1) | BIT(0),
  47. .encoder_type = DRM_MODE_ENCODER_NONE,
  48. .port = 1,
  49. },
  50. },
  51. .num_lvds = 0,
  52. };
  53. static const struct rcar_du_device_info rcar_du_r8a7790_info = {
  54. .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
  55. | RCAR_DU_FEATURE_EXT_CTRL_REGS,
  56. .quirks = RCAR_DU_QUIRK_ALIGN_128B | RCAR_DU_QUIRK_LVDS_LANES,
  57. .num_crtcs = 3,
  58. .routes = {
  59. /* R8A7790 has one RGB output, two LVDS outputs and one
  60. * (currently unsupported) TCON output.
  61. */
  62. [RCAR_DU_OUTPUT_DPAD0] = {
  63. .possible_crtcs = BIT(2) | BIT(1) | BIT(0),
  64. .encoder_type = DRM_MODE_ENCODER_NONE,
  65. .port = 0,
  66. },
  67. [RCAR_DU_OUTPUT_LVDS0] = {
  68. .possible_crtcs = BIT(0),
  69. .encoder_type = DRM_MODE_ENCODER_LVDS,
  70. .port = 1,
  71. },
  72. [RCAR_DU_OUTPUT_LVDS1] = {
  73. .possible_crtcs = BIT(2) | BIT(1),
  74. .encoder_type = DRM_MODE_ENCODER_LVDS,
  75. .port = 2,
  76. },
  77. },
  78. .num_lvds = 2,
  79. };
  80. static const struct rcar_du_device_info rcar_du_r8a7791_info = {
  81. .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
  82. | RCAR_DU_FEATURE_EXT_CTRL_REGS,
  83. .num_crtcs = 2,
  84. .routes = {
  85. /* R8A7791 has one RGB output, one LVDS output and one
  86. * (currently unsupported) TCON output.
  87. */
  88. [RCAR_DU_OUTPUT_DPAD0] = {
  89. .possible_crtcs = BIT(1),
  90. .encoder_type = DRM_MODE_ENCODER_NONE,
  91. .port = 0,
  92. },
  93. [RCAR_DU_OUTPUT_LVDS0] = {
  94. .possible_crtcs = BIT(0),
  95. .encoder_type = DRM_MODE_ENCODER_LVDS,
  96. .port = 1,
  97. },
  98. },
  99. .num_lvds = 1,
  100. };
  101. static const struct platform_device_id rcar_du_id_table[] = {
  102. { "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
  103. { "rcar-du-r8a7790", (kernel_ulong_t)&rcar_du_r8a7790_info },
  104. { "rcar-du-r8a7791", (kernel_ulong_t)&rcar_du_r8a7791_info },
  105. { }
  106. };
  107. MODULE_DEVICE_TABLE(platform, rcar_du_id_table);
  108. static const struct of_device_id rcar_du_of_table[] = {
  109. { .compatible = "renesas,du-r8a7779", .data = &rcar_du_r8a7779_info },
  110. { .compatible = "renesas,du-r8a7790", .data = &rcar_du_r8a7790_info },
  111. { .compatible = "renesas,du-r8a7791", .data = &rcar_du_r8a7791_info },
  112. { }
  113. };
  114. MODULE_DEVICE_TABLE(of, rcar_du_of_table);
  115. /* -----------------------------------------------------------------------------
  116. * DRM operations
  117. */
  118. static int rcar_du_unload(struct drm_device *dev)
  119. {
  120. struct rcar_du_device *rcdu = dev->dev_private;
  121. if (rcdu->fbdev)
  122. drm_fbdev_cma_fini(rcdu->fbdev);
  123. drm_kms_helper_poll_fini(dev);
  124. drm_mode_config_cleanup(dev);
  125. drm_vblank_cleanup(dev);
  126. dev->irq_enabled = 0;
  127. dev->dev_private = NULL;
  128. return 0;
  129. }
  130. static int rcar_du_load(struct drm_device *dev, unsigned long flags)
  131. {
  132. struct platform_device *pdev = dev->platformdev;
  133. struct device_node *np = pdev->dev.of_node;
  134. struct rcar_du_device *rcdu;
  135. struct resource *mem;
  136. int ret;
  137. if (np == NULL) {
  138. dev_err(dev->dev, "no platform data\n");
  139. return -ENODEV;
  140. }
  141. rcdu = devm_kzalloc(&pdev->dev, sizeof(*rcdu), GFP_KERNEL);
  142. if (rcdu == NULL) {
  143. dev_err(dev->dev, "failed to allocate private data\n");
  144. return -ENOMEM;
  145. }
  146. init_waitqueue_head(&rcdu->commit.wait);
  147. rcdu->dev = &pdev->dev;
  148. rcdu->info = np ? of_match_device(rcar_du_of_table, rcdu->dev)->data
  149. : (void *)platform_get_device_id(pdev)->driver_data;
  150. rcdu->ddev = dev;
  151. dev->dev_private = rcdu;
  152. /* I/O resources */
  153. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  154. rcdu->mmio = devm_ioremap_resource(&pdev->dev, mem);
  155. if (IS_ERR(rcdu->mmio))
  156. return PTR_ERR(rcdu->mmio);
  157. /* Initialize vertical blanking interrupts handling. Start with vblank
  158. * disabled for all CRTCs.
  159. */
  160. ret = drm_vblank_init(dev, (1 << rcdu->info->num_crtcs) - 1);
  161. if (ret < 0) {
  162. dev_err(&pdev->dev, "failed to initialize vblank\n");
  163. goto done;
  164. }
  165. /* DRM/KMS objects */
  166. ret = rcar_du_modeset_init(rcdu);
  167. if (ret < 0) {
  168. dev_err(&pdev->dev, "failed to initialize DRM/KMS (%d)\n", ret);
  169. goto done;
  170. }
  171. dev->irq_enabled = 1;
  172. platform_set_drvdata(pdev, rcdu);
  173. done:
  174. if (ret)
  175. rcar_du_unload(dev);
  176. return ret;
  177. }
  178. static void rcar_du_preclose(struct drm_device *dev, struct drm_file *file)
  179. {
  180. struct rcar_du_device *rcdu = dev->dev_private;
  181. unsigned int i;
  182. for (i = 0; i < rcdu->num_crtcs; ++i)
  183. rcar_du_crtc_cancel_page_flip(&rcdu->crtcs[i], file);
  184. }
  185. static void rcar_du_lastclose(struct drm_device *dev)
  186. {
  187. struct rcar_du_device *rcdu = dev->dev_private;
  188. drm_fbdev_cma_restore_mode(rcdu->fbdev);
  189. }
  190. static int rcar_du_enable_vblank(struct drm_device *dev, int crtc)
  191. {
  192. struct rcar_du_device *rcdu = dev->dev_private;
  193. rcar_du_crtc_enable_vblank(&rcdu->crtcs[crtc], true);
  194. return 0;
  195. }
  196. static void rcar_du_disable_vblank(struct drm_device *dev, int crtc)
  197. {
  198. struct rcar_du_device *rcdu = dev->dev_private;
  199. rcar_du_crtc_enable_vblank(&rcdu->crtcs[crtc], false);
  200. }
  201. static const struct file_operations rcar_du_fops = {
  202. .owner = THIS_MODULE,
  203. .open = drm_open,
  204. .release = drm_release,
  205. .unlocked_ioctl = drm_ioctl,
  206. #ifdef CONFIG_COMPAT
  207. .compat_ioctl = drm_compat_ioctl,
  208. #endif
  209. .poll = drm_poll,
  210. .read = drm_read,
  211. .llseek = no_llseek,
  212. .mmap = drm_gem_cma_mmap,
  213. };
  214. static struct drm_driver rcar_du_driver = {
  215. .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME
  216. | DRIVER_ATOMIC,
  217. .load = rcar_du_load,
  218. .unload = rcar_du_unload,
  219. .preclose = rcar_du_preclose,
  220. .lastclose = rcar_du_lastclose,
  221. .set_busid = drm_platform_set_busid,
  222. .get_vblank_counter = drm_vblank_count,
  223. .enable_vblank = rcar_du_enable_vblank,
  224. .disable_vblank = rcar_du_disable_vblank,
  225. .gem_free_object = drm_gem_cma_free_object,
  226. .gem_vm_ops = &drm_gem_cma_vm_ops,
  227. .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
  228. .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
  229. .gem_prime_import = drm_gem_prime_import,
  230. .gem_prime_export = drm_gem_prime_export,
  231. .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
  232. .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
  233. .gem_prime_vmap = drm_gem_cma_prime_vmap,
  234. .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
  235. .gem_prime_mmap = drm_gem_cma_prime_mmap,
  236. .dumb_create = rcar_du_dumb_create,
  237. .dumb_map_offset = drm_gem_cma_dumb_map_offset,
  238. .dumb_destroy = drm_gem_dumb_destroy,
  239. .fops = &rcar_du_fops,
  240. .name = "rcar-du",
  241. .desc = "Renesas R-Car Display Unit",
  242. .date = "20130110",
  243. .major = 1,
  244. .minor = 0,
  245. };
  246. /* -----------------------------------------------------------------------------
  247. * Power management
  248. */
  249. #ifdef CONFIG_PM_SLEEP
  250. static int rcar_du_pm_suspend(struct device *dev)
  251. {
  252. struct rcar_du_device *rcdu = dev_get_drvdata(dev);
  253. drm_kms_helper_poll_disable(rcdu->ddev);
  254. /* TODO Suspend the CRTC */
  255. return 0;
  256. }
  257. static int rcar_du_pm_resume(struct device *dev)
  258. {
  259. struct rcar_du_device *rcdu = dev_get_drvdata(dev);
  260. /* TODO Resume the CRTC */
  261. drm_kms_helper_poll_enable(rcdu->ddev);
  262. return 0;
  263. }
  264. #endif
  265. static const struct dev_pm_ops rcar_du_pm_ops = {
  266. SET_SYSTEM_SLEEP_PM_OPS(rcar_du_pm_suspend, rcar_du_pm_resume)
  267. };
  268. /* -----------------------------------------------------------------------------
  269. * Platform driver
  270. */
  271. static int rcar_du_probe(struct platform_device *pdev)
  272. {
  273. return drm_platform_init(&rcar_du_driver, pdev);
  274. }
  275. static int rcar_du_remove(struct platform_device *pdev)
  276. {
  277. struct rcar_du_device *rcdu = platform_get_drvdata(pdev);
  278. drm_put_dev(rcdu->ddev);
  279. return 0;
  280. }
  281. static struct platform_driver rcar_du_platform_driver = {
  282. .probe = rcar_du_probe,
  283. .remove = rcar_du_remove,
  284. .driver = {
  285. .name = "rcar-du",
  286. .pm = &rcar_du_pm_ops,
  287. .of_match_table = rcar_du_of_table,
  288. },
  289. .id_table = rcar_du_id_table,
  290. };
  291. module_platform_driver(rcar_du_platform_driver);
  292. MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
  293. MODULE_DESCRIPTION("Renesas R-Car Display Unit DRM Driver");
  294. MODULE_LICENSE("GPL");