blob: 967ae8f20233ed163540ff9117fb7a3daae2750a [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_drv.c -- R-Car Display Unit DRM driver
3 *
Laurent Pinchart36d50462014-02-06 18:13:52 +01004 * Copyright (C) 2013-2014 Renesas Electronics Corporation
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02005 *
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
14#include <linux/clk.h>
15#include <linux/io.h>
16#include <linux/mm.h>
17#include <linux/module.h>
Laurent Pinchart96c02692014-01-21 15:57:26 +010018#include <linux/of_device.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020019#include <linux/platform_device.h>
20#include <linux/pm.h>
21#include <linux/slab.h>
22
23#include <drm/drmP.h>
24#include <drm/drm_crtc_helper.h>
Laurent Pinchart3864c6f2013-03-14 22:45:22 +010025#include <drm/drm_fb_cma_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020026#include <drm/drm_gem_cma_helper.h>
27
28#include "rcar_du_crtc.h"
29#include "rcar_du_drv.h"
30#include "rcar_du_kms.h"
31#include "rcar_du_regs.h"
32
33/* -----------------------------------------------------------------------------
Laurent Pinchart96c02692014-01-21 15:57:26 +010034 * Device Information
35 */
36
37static const struct rcar_du_device_info rcar_du_r8a7779_info = {
38 .features = 0,
39 .num_crtcs = 2,
40 .routes = {
41 /* R8A7779 has two RGB outputs and one (currently unsupported)
42 * TCON output.
43 */
44 [RCAR_DU_OUTPUT_DPAD0] = {
45 .possible_crtcs = BIT(0),
46 .encoder_type = DRM_MODE_ENCODER_NONE,
47 .port = 0,
48 },
49 [RCAR_DU_OUTPUT_DPAD1] = {
50 .possible_crtcs = BIT(1) | BIT(0),
51 .encoder_type = DRM_MODE_ENCODER_NONE,
52 .port = 1,
53 },
54 },
55 .num_lvds = 0,
56};
57
58static const struct rcar_du_device_info rcar_du_r8a7790_info = {
59 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK | RCAR_DU_FEATURE_DEFR8,
60 .quirks = RCAR_DU_QUIRK_ALIGN_128B | RCAR_DU_QUIRK_LVDS_LANES,
61 .num_crtcs = 3,
62 .routes = {
63 /* R8A7790 has one RGB output, two LVDS outputs and one
64 * (currently unsupported) TCON output.
65 */
66 [RCAR_DU_OUTPUT_DPAD0] = {
67 .possible_crtcs = BIT(2) | BIT(1) | BIT(0),
68 .encoder_type = DRM_MODE_ENCODER_NONE,
69 .port = 0,
70 },
71 [RCAR_DU_OUTPUT_LVDS0] = {
72 .possible_crtcs = BIT(0),
73 .encoder_type = DRM_MODE_ENCODER_LVDS,
74 .port = 1,
75 },
76 [RCAR_DU_OUTPUT_LVDS1] = {
77 .possible_crtcs = BIT(2) | BIT(1),
78 .encoder_type = DRM_MODE_ENCODER_LVDS,
79 .port = 2,
80 },
81 },
82 .num_lvds = 2,
83};
84
85static const struct rcar_du_device_info rcar_du_r8a7791_info = {
86 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK | RCAR_DU_FEATURE_DEFR8,
87 .num_crtcs = 2,
88 .routes = {
89 /* R8A7791 has one RGB output, one LVDS output and one
90 * (currently unsupported) TCON output.
91 */
92 [RCAR_DU_OUTPUT_DPAD0] = {
93 .possible_crtcs = BIT(1),
94 .encoder_type = DRM_MODE_ENCODER_NONE,
95 .port = 0,
96 },
97 [RCAR_DU_OUTPUT_LVDS0] = {
98 .possible_crtcs = BIT(0),
99 .encoder_type = DRM_MODE_ENCODER_LVDS,
100 .port = 1,
101 },
102 },
103 .num_lvds = 1,
104};
105
106static const struct platform_device_id rcar_du_id_table[] = {
107 { "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
108 { "rcar-du-r8a7790", (kernel_ulong_t)&rcar_du_r8a7790_info },
109 { "rcar-du-r8a7791", (kernel_ulong_t)&rcar_du_r8a7791_info },
110 { }
111};
112
113MODULE_DEVICE_TABLE(platform, rcar_du_id_table);
114
115static const struct of_device_id rcar_du_of_table[] = {
116 { .compatible = "renesas,du-r8a7779", .data = &rcar_du_r8a7779_info },
117 { .compatible = "renesas,du-r8a7790", .data = &rcar_du_r8a7790_info },
118 { .compatible = "renesas,du-r8a7791", .data = &rcar_du_r8a7791_info },
119 { }
120};
121
122MODULE_DEVICE_TABLE(of, rcar_du_of_table);
123
124/* -----------------------------------------------------------------------------
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200125 * DRM operations
126 */
127
128static int rcar_du_unload(struct drm_device *dev)
129{
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100130 struct rcar_du_device *rcdu = dev->dev_private;
131
132 if (rcdu->fbdev)
133 drm_fbdev_cma_fini(rcdu->fbdev);
134
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200135 drm_kms_helper_poll_fini(dev);
136 drm_mode_config_cleanup(dev);
137 drm_vblank_cleanup(dev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200138
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200139 dev->irq_enabled = 0;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200140 dev->dev_private = NULL;
141
142 return 0;
143}
144
145static int rcar_du_load(struct drm_device *dev, unsigned long flags)
146{
147 struct platform_device *pdev = dev->platformdev;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100148 struct device_node *np = pdev->dev.of_node;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200149 struct rcar_du_device *rcdu;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200150 struct resource *mem;
151 int ret;
152
Laurent Pinchart2378ad12014-09-17 02:07:52 +0300153 if (np == NULL) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200154 dev_err(dev->dev, "no platform data\n");
155 return -ENODEV;
156 }
157
158 rcdu = devm_kzalloc(&pdev->dev, sizeof(*rcdu), GFP_KERNEL);
159 if (rcdu == NULL) {
160 dev_err(dev->dev, "failed to allocate private data\n");
161 return -ENOMEM;
162 }
163
164 rcdu->dev = &pdev->dev;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100165 rcdu->info = np ? of_match_device(rcar_du_of_table, rcdu->dev)->data
166 : (void *)platform_get_device_id(pdev)->driver_data;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200167 rcdu->ddev = dev;
168 dev->dev_private = rcdu;
169
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200170 /* I/O resources */
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200171 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Laurent Pinchartd5b6dcc2013-06-17 02:29:07 +0200172 rcdu->mmio = devm_ioremap_resource(&pdev->dev, mem);
173 if (IS_ERR(rcdu->mmio))
174 return PTR_ERR(rcdu->mmio);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200175
176 /* DRM/KMS objects */
177 ret = rcar_du_modeset_init(rcdu);
178 if (ret < 0) {
179 dev_err(&pdev->dev, "failed to initialize DRM/KMS\n");
180 goto done;
181 }
182
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200183 /* vblank handling */
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200184 ret = drm_vblank_init(dev, (1 << rcdu->num_crtcs) - 1);
185 if (ret < 0) {
186 dev_err(&pdev->dev, "failed to initialize vblank\n");
187 goto done;
188 }
189
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200190 dev->irq_enabled = 1;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200191
192 platform_set_drvdata(pdev, rcdu);
193
194done:
195 if (ret)
196 rcar_du_unload(dev);
197
198 return ret;
199}
200
201static void rcar_du_preclose(struct drm_device *dev, struct drm_file *file)
202{
203 struct rcar_du_device *rcdu = dev->dev_private;
204 unsigned int i;
205
Laurent Pinchart990d07a2013-06-16 22:22:23 +0200206 for (i = 0; i < rcdu->num_crtcs; ++i)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200207 rcar_du_crtc_cancel_page_flip(&rcdu->crtcs[i], file);
208}
209
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100210static void rcar_du_lastclose(struct drm_device *dev)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200211{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200212 struct rcar_du_device *rcdu = dev->dev_private;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200213
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100214 drm_fbdev_cma_restore_mode(rcdu->fbdev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200215}
216
217static int rcar_du_enable_vblank(struct drm_device *dev, int crtc)
218{
219 struct rcar_du_device *rcdu = dev->dev_private;
220
221 rcar_du_crtc_enable_vblank(&rcdu->crtcs[crtc], true);
222
223 return 0;
224}
225
226static void rcar_du_disable_vblank(struct drm_device *dev, int crtc)
227{
228 struct rcar_du_device *rcdu = dev->dev_private;
229
230 rcar_du_crtc_enable_vblank(&rcdu->crtcs[crtc], false);
231}
232
233static const struct file_operations rcar_du_fops = {
234 .owner = THIS_MODULE,
235 .open = drm_open,
236 .release = drm_release,
237 .unlocked_ioctl = drm_ioctl,
238#ifdef CONFIG_COMPAT
239 .compat_ioctl = drm_compat_ioctl,
240#endif
241 .poll = drm_poll,
242 .read = drm_read,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200243 .llseek = no_llseek,
244 .mmap = drm_gem_cma_mmap,
245};
246
247static struct drm_driver rcar_du_driver = {
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200248 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200249 .load = rcar_du_load,
250 .unload = rcar_du_unload,
251 .preclose = rcar_du_preclose,
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100252 .lastclose = rcar_du_lastclose,
David Herrmann915b4d12014-08-29 12:12:43 +0200253 .set_busid = drm_platform_set_busid,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200254 .get_vblank_counter = drm_vblank_count,
255 .enable_vblank = rcar_du_enable_vblank,
256 .disable_vblank = rcar_du_disable_vblank,
257 .gem_free_object = drm_gem_cma_free_object,
258 .gem_vm_ops = &drm_gem_cma_vm_ops,
259 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
260 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
Laurent Pinchartffb40402013-07-10 15:23:35 +0200261 .gem_prime_import = drm_gem_prime_import,
262 .gem_prime_export = drm_gem_prime_export,
263 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
264 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
265 .gem_prime_vmap = drm_gem_cma_prime_vmap,
266 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
267 .gem_prime_mmap = drm_gem_cma_prime_mmap,
Laurent Pinchart59e32642013-07-04 20:05:51 +0200268 .dumb_create = rcar_du_dumb_create,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200269 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
Daniel Vetter43387b32013-07-16 09:12:04 +0200270 .dumb_destroy = drm_gem_dumb_destroy,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200271 .fops = &rcar_du_fops,
272 .name = "rcar-du",
273 .desc = "Renesas R-Car Display Unit",
274 .date = "20130110",
275 .major = 1,
276 .minor = 0,
277};
278
279/* -----------------------------------------------------------------------------
280 * Power management
281 */
282
Russell King396d7a22014-07-13 12:18:58 +0100283#ifdef CONFIG_PM_SLEEP
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200284static int rcar_du_pm_suspend(struct device *dev)
285{
286 struct rcar_du_device *rcdu = dev_get_drvdata(dev);
287
288 drm_kms_helper_poll_disable(rcdu->ddev);
289 /* TODO Suspend the CRTC */
290
291 return 0;
292}
293
294static int rcar_du_pm_resume(struct device *dev)
295{
296 struct rcar_du_device *rcdu = dev_get_drvdata(dev);
297
298 /* TODO Resume the CRTC */
299
300 drm_kms_helper_poll_enable(rcdu->ddev);
301 return 0;
302}
303#endif
304
305static const struct dev_pm_ops rcar_du_pm_ops = {
306 SET_SYSTEM_SLEEP_PM_OPS(rcar_du_pm_suspend, rcar_du_pm_resume)
307};
308
309/* -----------------------------------------------------------------------------
310 * Platform driver
311 */
312
313static int rcar_du_probe(struct platform_device *pdev)
314{
315 return drm_platform_init(&rcar_du_driver, pdev);
316}
317
318static int rcar_du_remove(struct platform_device *pdev)
319{
Daniel Vetter57a24cf2013-12-11 11:34:22 +0100320 struct rcar_du_device *rcdu = platform_get_drvdata(pdev);
321
322 drm_put_dev(rcdu->ddev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200323
324 return 0;
325}
326
327static struct platform_driver rcar_du_platform_driver = {
328 .probe = rcar_du_probe,
329 .remove = rcar_du_remove,
330 .driver = {
331 .owner = THIS_MODULE,
332 .name = "rcar-du",
333 .pm = &rcar_du_pm_ops,
Laurent Pinchart96c02692014-01-21 15:57:26 +0100334 .of_match_table = rcar_du_of_table,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200335 },
Laurent Pinchart481d3422013-06-14 13:38:33 +0200336 .id_table = rcar_du_id_table,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200337};
338
339module_platform_driver(rcar_du_platform_driver);
340
341MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
342MODULE_DESCRIPTION("Renesas R-Car Display Unit DRM Driver");
343MODULE_LICENSE("GPL");