blob: 3e82534551215b39bc796f5e708e934260658ec3 [file] [log] [blame]
Sascha Hauerf326f792012-09-21 10:07:50 +02001/*
2 * i.MX IPUv3 Graphics driver
3 *
4 * Copyright (C) 2011 Sascha Hauer, Pengutronix
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Sascha Hauerf326f792012-09-21 10:07:50 +020014 */
Russell King17b50012013-11-03 11:23:34 +000015#include <linux/component.h>
Sascha Hauerf326f792012-09-21 10:07:50 +020016#include <linux/module.h>
17#include <linux/export.h>
18#include <linux/device.h>
19#include <linux/platform_device.h>
20#include <drm/drmP.h>
Liu Yingae2531a2016-07-08 17:40:57 +080021#include <drm/drm_atomic.h>
Liu Ying255c35f2016-07-08 17:40:56 +080022#include <drm/drm_atomic_helper.h>
Sascha Hauerf326f792012-09-21 10:07:50 +020023#include <drm/drm_crtc_helper.h>
24#include <linux/fb.h>
25#include <linux/clk.h>
Philipp Zabelb8d181e2013-10-10 16:18:45 +020026#include <linux/errno.h>
Sascha Hauerf326f792012-09-21 10:07:50 +020027#include <drm/drm_gem_cma_helper.h>
28#include <drm/drm_fb_cma_helper.h>
29
Philipp Zabel39b90042013-09-30 16:13:39 +020030#include <video/imx-ipu-v3.h>
Sascha Hauerf326f792012-09-21 10:07:50 +020031#include "imx-drm.h"
Philipp Zabelb8d181e2013-10-10 16:18:45 +020032#include "ipuv3-plane.h"
Sascha Hauerf326f792012-09-21 10:07:50 +020033
34#define DRIVER_DESC "i.MX IPUv3 Graphics"
35
Sascha Hauerf326f792012-09-21 10:07:50 +020036struct ipu_crtc {
Sascha Hauerf326f792012-09-21 10:07:50 +020037 struct device *dev;
38 struct drm_crtc base;
39 struct imx_drm_crtc *imx_crtc;
Philipp Zabelb8d181e2013-10-10 16:18:45 +020040
41 /* plane[0] is the full plane, plane[1] is the partial plane */
42 struct ipu_plane *plane[2];
43
Sascha Hauerf326f792012-09-21 10:07:50 +020044 struct ipu_dc *dc;
Sascha Hauerf326f792012-09-21 10:07:50 +020045 struct ipu_di *di;
Sascha Hauerf326f792012-09-21 10:07:50 +020046 int irq;
Sascha Hauerf326f792012-09-21 10:07:50 +020047};
48
49#define to_ipu_crtc(x) container_of(x, struct ipu_crtc, base)
50
Liu Ying33f14232016-07-08 17:40:55 +080051static void ipu_crtc_enable(struct ipu_crtc *ipu_crtc)
Sascha Hauerf326f792012-09-21 10:07:50 +020052{
Philipp Zabel1e6d4862014-04-14 23:53:23 +020053 struct ipu_soc *ipu = dev_get_drvdata(ipu_crtc->dev->parent);
54
Philipp Zabel1e6d4862014-04-14 23:53:23 +020055 ipu_dc_enable(ipu);
Philipp Zabelc115edb2014-04-14 23:53:22 +020056 ipu_dc_enable_channel(ipu_crtc->dc);
57 ipu_di_enable(ipu_crtc->di);
Sascha Hauerf326f792012-09-21 10:07:50 +020058}
59
Liu Ying33f14232016-07-08 17:40:55 +080060static void ipu_crtc_disable(struct ipu_crtc *ipu_crtc)
Sascha Hauerf326f792012-09-21 10:07:50 +020061{
Philipp Zabel1e6d4862014-04-14 23:53:23 +020062 struct ipu_soc *ipu = dev_get_drvdata(ipu_crtc->dev->parent);
Liu Ying5f2f9112016-07-08 17:40:59 +080063 struct drm_crtc *crtc = &ipu_crtc->base;
Sascha Hauerf326f792012-09-21 10:07:50 +020064
Sascha Hauerf326f792012-09-21 10:07:50 +020065 ipu_dc_disable_channel(ipu_crtc->dc);
Sascha Hauerf326f792012-09-21 10:07:50 +020066 ipu_di_disable(ipu_crtc->di);
Philipp Zabel1e6d4862014-04-14 23:53:23 +020067 ipu_dc_disable(ipu);
Liu Ying33f14232016-07-08 17:40:55 +080068
Liu Ying5f2f9112016-07-08 17:40:59 +080069 spin_lock_irq(&crtc->dev->event_lock);
70 if (crtc->state->event) {
71 drm_crtc_send_vblank_event(crtc, crtc->state->event);
72 crtc->state->event = NULL;
73 }
74 spin_unlock_irq(&crtc->dev->event_lock);
Sascha Hauerf326f792012-09-21 10:07:50 +020075}
76
77static void ipu_crtc_dpms(struct drm_crtc *crtc, int mode)
78{
79 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
80
Philipp Zabela8e4e232012-11-12 16:29:01 +010081 dev_dbg(ipu_crtc->dev, "%s mode: %d\n", __func__, mode);
Sascha Hauerf326f792012-09-21 10:07:50 +020082
83 switch (mode) {
84 case DRM_MODE_DPMS_ON:
Liu Ying33f14232016-07-08 17:40:55 +080085 ipu_crtc_enable(ipu_crtc);
Sascha Hauerf326f792012-09-21 10:07:50 +020086 break;
87 case DRM_MODE_DPMS_STANDBY:
88 case DRM_MODE_DPMS_SUSPEND:
89 case DRM_MODE_DPMS_OFF:
Liu Ying33f14232016-07-08 17:40:55 +080090 ipu_crtc_disable(ipu_crtc);
Sascha Hauerf326f792012-09-21 10:07:50 +020091 break;
92 }
93}
94
Sascha Hauerf326f792012-09-21 10:07:50 +020095static const struct drm_crtc_funcs ipu_crtc_funcs = {
Liu Ying5f2f9112016-07-08 17:40:59 +080096 .set_config = drm_atomic_helper_set_config,
Sascha Hauerf326f792012-09-21 10:07:50 +020097 .destroy = drm_crtc_cleanup,
Liu Ying5f2f9112016-07-08 17:40:59 +080098 .page_flip = drm_atomic_helper_page_flip,
Liu Ying255c35f2016-07-08 17:40:56 +080099 .reset = drm_atomic_helper_crtc_reset,
100 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
101 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
Sascha Hauerf326f792012-09-21 10:07:50 +0200102};
103
Liu Ying33f14232016-07-08 17:40:55 +0800104static irqreturn_t ipu_irq_handler(int irq, void *dev_id)
105{
106 struct ipu_crtc *ipu_crtc = dev_id;
107
108 imx_drm_handle_vblank(ipu_crtc->imx_crtc);
109
Liu Ying33f14232016-07-08 17:40:55 +0800110 return IRQ_HANDLED;
111}
112
113static bool ipu_crtc_mode_fixup(struct drm_crtc *crtc,
114 const struct drm_display_mode *mode,
115 struct drm_display_mode *adjusted_mode)
116{
117 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
118 struct videomode vm;
119 int ret;
120
121 drm_display_mode_to_videomode(adjusted_mode, &vm);
122
123 ret = ipu_di_adjust_videomode(ipu_crtc->di, &vm);
124 if (ret)
125 return false;
126
127 if ((vm.vsync_len == 0) || (vm.hsync_len == 0))
128 return false;
129
130 drm_display_mode_from_videomode(&vm, adjusted_mode);
131
132 return true;
133}
134
135static void ipu_crtc_prepare(struct drm_crtc *crtc)
136{
137 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
138
139 ipu_crtc_disable(ipu_crtc);
140}
141
142static void ipu_crtc_commit(struct drm_crtc *crtc)
143{
144 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
145
146 ipu_crtc_enable(ipu_crtc);
147}
148
149static int ipu_crtc_atomic_check(struct drm_crtc *crtc,
150 struct drm_crtc_state *state)
151{
Liu Ying5f2f9112016-07-08 17:40:59 +0800152 u32 primary_plane_mask = 1 << drm_plane_index(crtc->primary);
153
154 if (state->active && (primary_plane_mask & state->plane_mask) == 0)
155 return -EINVAL;
156
Liu Ying33f14232016-07-08 17:40:55 +0800157 return 0;
158}
159
Liu Ying5f2f9112016-07-08 17:40:59 +0800160static void ipu_crtc_atomic_begin(struct drm_crtc *crtc,
161 struct drm_crtc_state *old_crtc_state)
162{
163 spin_lock_irq(&crtc->dev->event_lock);
164 if (crtc->state->event) {
165 WARN_ON(drm_crtc_vblank_get(crtc));
166 drm_crtc_arm_vblank_event(crtc, crtc->state->event);
167 crtc->state->event = NULL;
168 }
169 spin_unlock_irq(&crtc->dev->event_lock);
170}
171
Liu Ying33f14232016-07-08 17:40:55 +0800172static void ipu_crtc_mode_set_nofb(struct drm_crtc *crtc)
Sascha Hauerf326f792012-09-21 10:07:50 +0200173{
Russell Kingd50141d2014-12-21 15:58:19 +0000174 struct drm_device *dev = crtc->dev;
175 struct drm_encoder *encoder;
Liu Ying032003c2016-07-08 17:40:58 +0800176 struct imx_drm_encoder *imx_encoder = NULL;
Sascha Hauerf326f792012-09-21 10:07:50 +0200177 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
Liu Ying33f14232016-07-08 17:40:55 +0800178 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Sascha Hauerf326f792012-09-21 10:07:50 +0200179 struct ipu_di_signal_cfg sig_cfg = {};
Russell Kingd50141d2014-12-21 15:58:19 +0000180 unsigned long encoder_types = 0;
Sascha Hauerf326f792012-09-21 10:07:50 +0200181
182 dev_dbg(ipu_crtc->dev, "%s: mode->hdisplay: %d\n", __func__,
183 mode->hdisplay);
184 dev_dbg(ipu_crtc->dev, "%s: mode->vdisplay: %d\n", __func__,
185 mode->vdisplay);
186
Liu Ying032003c2016-07-08 17:40:58 +0800187 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
188 if (encoder->crtc == crtc) {
Russell Kingd50141d2014-12-21 15:58:19 +0000189 encoder_types |= BIT(encoder->encoder_type);
Liu Ying032003c2016-07-08 17:40:58 +0800190 imx_encoder = enc_to_imx_enc(encoder);
191 }
192 }
Russell Kingd50141d2014-12-21 15:58:19 +0000193
194 dev_dbg(ipu_crtc->dev, "%s: attached to encoder types 0x%lx\n",
195 __func__, encoder_types);
196
197 /*
Philipp Zabele0d155c2014-07-11 17:28:45 +0200198 * If we have DAC or LDB, then we need the IPU DI clock to be
199 * the same as the LDB DI clock. For TVDAC, derive the IPU DI
200 * clock from 27 MHz TVE_DI clock, but allow to divide it.
Russell Kingd50141d2014-12-21 15:58:19 +0000201 */
202 if (encoder_types & (BIT(DRM_MODE_ENCODER_DAC) |
Russell Kingd50141d2014-12-21 15:58:19 +0000203 BIT(DRM_MODE_ENCODER_LVDS)))
204 sig_cfg.clkflags = IPU_DI_CLKMODE_SYNC | IPU_DI_CLKMODE_EXT;
Philipp Zabele0d155c2014-07-11 17:28:45 +0200205 else if (encoder_types & BIT(DRM_MODE_ENCODER_TVDAC))
206 sig_cfg.clkflags = IPU_DI_CLKMODE_EXT;
Russell Kingd50141d2014-12-21 15:58:19 +0000207 else
208 sig_cfg.clkflags = 0;
209
Liu Ying032003c2016-07-08 17:40:58 +0800210 sig_cfg.enable_pol = !(imx_encoder->bus_flags & DRM_BUS_FLAG_DE_LOW);
Philipp Zabel4ed094f2016-05-09 17:02:13 +0200211 /* Default to driving pixel data on negative clock edges */
Liu Ying032003c2016-07-08 17:40:58 +0800212 sig_cfg.clk_pol = !!(imx_encoder->bus_flags &
Philipp Zabel4ed094f2016-05-09 17:02:13 +0200213 DRM_BUS_FLAG_PIXDATA_POSEDGE);
Liu Ying032003c2016-07-08 17:40:58 +0800214 sig_cfg.bus_format = imx_encoder->bus_format;
Sascha Hauerf326f792012-09-21 10:07:50 +0200215 sig_cfg.v_to_h_sync = 0;
Liu Ying032003c2016-07-08 17:40:58 +0800216 sig_cfg.hsync_pin = imx_encoder->di_hsync_pin;
217 sig_cfg.vsync_pin = imx_encoder->di_vsync_pin;
Philipp Zabel2ea42602013-04-08 18:04:35 +0200218
Steve Longerbeamb6835a72014-12-18 18:00:25 -0800219 drm_display_mode_to_videomode(mode, &sig_cfg.mode);
220
Liu Ying33f14232016-07-08 17:40:55 +0800221 ipu_dc_init_sync(ipu_crtc->dc, ipu_crtc->di,
222 mode->flags & DRM_MODE_FLAG_INTERLACE,
Liu Ying032003c2016-07-08 17:40:58 +0800223 imx_encoder->bus_format, mode->hdisplay);
Liu Ying33f14232016-07-08 17:40:55 +0800224 ipu_di_init_sync_panel(ipu_crtc->di, &sig_cfg);
Sascha Hauerf326f792012-09-21 10:07:50 +0200225}
226
Ville Syrjälä7ae847d2015-12-15 12:21:09 +0100227static const struct drm_crtc_helper_funcs ipu_helper_funcs = {
Sascha Hauerf326f792012-09-21 10:07:50 +0200228 .dpms = ipu_crtc_dpms,
229 .mode_fixup = ipu_crtc_mode_fixup,
Liu Ying33f14232016-07-08 17:40:55 +0800230 .mode_set_nofb = ipu_crtc_mode_set_nofb,
Sascha Hauerf326f792012-09-21 10:07:50 +0200231 .prepare = ipu_crtc_prepare,
232 .commit = ipu_crtc_commit,
Liu Ying33f14232016-07-08 17:40:55 +0800233 .atomic_check = ipu_crtc_atomic_check,
Liu Ying5f2f9112016-07-08 17:40:59 +0800234 .atomic_begin = ipu_crtc_atomic_begin,
Sascha Hauerf326f792012-09-21 10:07:50 +0200235};
236
237static int ipu_enable_vblank(struct drm_crtc *crtc)
238{
Lucas Stach411b0332016-02-09 11:43:08 +0100239 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
240
241 enable_irq(ipu_crtc->irq);
242
Sascha Hauerf326f792012-09-21 10:07:50 +0200243 return 0;
244}
245
246static void ipu_disable_vblank(struct drm_crtc *crtc)
247{
Lucas Stach411b0332016-02-09 11:43:08 +0100248 struct ipu_crtc *ipu_crtc = to_ipu_crtc(crtc);
249
250 disable_irq_nosync(ipu_crtc->irq);
Sascha Hauerf326f792012-09-21 10:07:50 +0200251}
252
Sascha Hauerf326f792012-09-21 10:07:50 +0200253static const struct imx_drm_crtc_helper_funcs ipu_crtc_helper_funcs = {
254 .enable_vblank = ipu_enable_vblank,
255 .disable_vblank = ipu_disable_vblank,
Sascha Hauerf326f792012-09-21 10:07:50 +0200256 .crtc_funcs = &ipu_crtc_funcs,
257 .crtc_helper_funcs = &ipu_helper_funcs,
258};
259
260static void ipu_put_resources(struct ipu_crtc *ipu_crtc)
261{
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200262 if (!IS_ERR_OR_NULL(ipu_crtc->dc))
263 ipu_dc_put(ipu_crtc->dc);
Sascha Hauerf326f792012-09-21 10:07:50 +0200264 if (!IS_ERR_OR_NULL(ipu_crtc->di))
265 ipu_di_put(ipu_crtc->di);
266}
267
268static int ipu_get_resources(struct ipu_crtc *ipu_crtc,
269 struct ipu_client_platformdata *pdata)
270{
271 struct ipu_soc *ipu = dev_get_drvdata(ipu_crtc->dev->parent);
272 int ret;
273
Sascha Hauerf326f792012-09-21 10:07:50 +0200274 ipu_crtc->dc = ipu_dc_get(ipu, pdata->dc);
275 if (IS_ERR(ipu_crtc->dc)) {
276 ret = PTR_ERR(ipu_crtc->dc);
277 goto err_out;
278 }
279
Sascha Hauerf326f792012-09-21 10:07:50 +0200280 ipu_crtc->di = ipu_di_get(ipu, pdata->di);
281 if (IS_ERR(ipu_crtc->di)) {
282 ret = PTR_ERR(ipu_crtc->di);
283 goto err_out;
284 }
285
Sascha Hauerf326f792012-09-21 10:07:50 +0200286 return 0;
287err_out:
288 ipu_put_resources(ipu_crtc);
289
290 return ret;
291}
292
293static int ipu_crtc_init(struct ipu_crtc *ipu_crtc,
Russell King32266b42013-11-03 12:26:23 +0000294 struct ipu_client_platformdata *pdata, struct drm_device *drm)
Sascha Hauerf326f792012-09-21 10:07:50 +0200295{
Philipp Zabel47b1be52013-02-20 10:57:01 +0800296 struct ipu_soc *ipu = dev_get_drvdata(ipu_crtc->dev->parent);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200297 int dp = -EINVAL;
Sascha Hauerf326f792012-09-21 10:07:50 +0200298 int ret;
299
300 ret = ipu_get_resources(ipu_crtc, pdata);
301 if (ret) {
302 dev_err(ipu_crtc->dev, "getting resources failed with %d.\n",
303 ret);
304 return ret;
305 }
306
Philipp Zabel43895592015-11-06 11:08:02 +0100307 if (pdata->dp >= 0)
308 dp = IPU_DP_FLOW_SYNC_BG;
309 ipu_crtc->plane[0] = ipu_plane_init(drm, ipu, pdata->dma[0], dp, 0,
310 DRM_PLANE_TYPE_PRIMARY);
Liu Yinga7ed3c22015-11-06 22:42:45 +0800311 if (IS_ERR(ipu_crtc->plane[0])) {
312 ret = PTR_ERR(ipu_crtc->plane[0]);
313 goto err_put_resources;
314 }
Philipp Zabel43895592015-11-06 11:08:02 +0100315
Philipp Zabel655b43c2014-03-05 10:20:52 +0100316 ret = imx_drm_add_crtc(drm, &ipu_crtc->base, &ipu_crtc->imx_crtc,
Philipp Zabel43895592015-11-06 11:08:02 +0100317 &ipu_crtc->plane[0]->base, &ipu_crtc_helper_funcs,
Philipp Zabel310944d2016-05-12 15:00:44 +0200318 pdata->of_node);
Sascha Hauerf326f792012-09-21 10:07:50 +0200319 if (ret) {
320 dev_err(ipu_crtc->dev, "adding crtc failed with %d.\n", ret);
321 goto err_put_resources;
322 }
323
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200324 ret = ipu_plane_get_resources(ipu_crtc->plane[0]);
325 if (ret) {
326 dev_err(ipu_crtc->dev, "getting plane 0 resources failed with %d.\n",
327 ret);
328 goto err_remove_crtc;
329 }
330
331 /* If this crtc is using the DP, add an overlay plane */
332 if (pdata->dp >= 0 && pdata->dma[1] > 0) {
Philipp Zabel43895592015-11-06 11:08:02 +0100333 ipu_crtc->plane[1] = ipu_plane_init(drm, ipu, pdata->dma[1],
334 IPU_DP_FLOW_SYNC_FG,
335 drm_crtc_mask(&ipu_crtc->base),
336 DRM_PLANE_TYPE_OVERLAY);
Liu Ying33f14232016-07-08 17:40:55 +0800337 if (IS_ERR(ipu_crtc->plane[1])) {
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200338 ipu_crtc->plane[1] = NULL;
Liu Ying33f14232016-07-08 17:40:55 +0800339 } else {
340 ret = ipu_plane_get_resources(ipu_crtc->plane[1]);
341 if (ret) {
342 dev_err(ipu_crtc->dev, "getting plane 1 "
343 "resources failed with %d.\n", ret);
344 goto err_put_plane0_res;
345 }
346 }
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200347 }
348
349 ipu_crtc->irq = ipu_plane_irq(ipu_crtc->plane[0]);
Philipp Zabel47b1be52013-02-20 10:57:01 +0800350 ret = devm_request_irq(ipu_crtc->dev, ipu_crtc->irq, ipu_irq_handler, 0,
351 "imx_drm", ipu_crtc);
352 if (ret < 0) {
353 dev_err(ipu_crtc->dev, "irq request failed with %d.\n", ret);
Liu Ying33f14232016-07-08 17:40:55 +0800354 goto err_put_plane1_res;
Philipp Zabel47b1be52013-02-20 10:57:01 +0800355 }
Lucas Stach411b0332016-02-09 11:43:08 +0100356 /* Only enable IRQ when we actually need it to trigger work. */
357 disable_irq(ipu_crtc->irq);
Philipp Zabel47b1be52013-02-20 10:57:01 +0800358
Sascha Hauerf326f792012-09-21 10:07:50 +0200359 return 0;
360
Liu Ying33f14232016-07-08 17:40:55 +0800361err_put_plane1_res:
362 if (ipu_crtc->plane[1])
363 ipu_plane_put_resources(ipu_crtc->plane[1]);
364err_put_plane0_res:
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200365 ipu_plane_put_resources(ipu_crtc->plane[0]);
366err_remove_crtc:
367 imx_drm_remove_crtc(ipu_crtc->imx_crtc);
Sascha Hauerf326f792012-09-21 10:07:50 +0200368err_put_resources:
369 ipu_put_resources(ipu_crtc);
370
371 return ret;
372}
373
Russell King17b50012013-11-03 11:23:34 +0000374static int ipu_drm_bind(struct device *dev, struct device *master, void *data)
Sascha Hauerf326f792012-09-21 10:07:50 +0200375{
Russell King17b50012013-11-03 11:23:34 +0000376 struct ipu_client_platformdata *pdata = dev->platform_data;
Russell King32266b42013-11-03 12:26:23 +0000377 struct drm_device *drm = data;
Sascha Hauerf326f792012-09-21 10:07:50 +0200378 struct ipu_crtc *ipu_crtc;
379 int ret;
380
Russell King17b50012013-11-03 11:23:34 +0000381 ipu_crtc = devm_kzalloc(dev, sizeof(*ipu_crtc), GFP_KERNEL);
382 if (!ipu_crtc)
383 return -ENOMEM;
384
385 ipu_crtc->dev = dev;
386
Russell King32266b42013-11-03 12:26:23 +0000387 ret = ipu_crtc_init(ipu_crtc, pdata, drm);
Russell King17b50012013-11-03 11:23:34 +0000388 if (ret)
389 return ret;
390
391 dev_set_drvdata(dev, ipu_crtc);
392
393 return 0;
394}
395
396static void ipu_drm_unbind(struct device *dev, struct device *master,
397 void *data)
398{
399 struct ipu_crtc *ipu_crtc = dev_get_drvdata(dev);
400
401 imx_drm_remove_crtc(ipu_crtc->imx_crtc);
402
Russell King17b50012013-11-03 11:23:34 +0000403 ipu_put_resources(ipu_crtc);
Liu Ying33f14232016-07-08 17:40:55 +0800404 if (ipu_crtc->plane[1])
405 ipu_plane_put_resources(ipu_crtc->plane[1]);
406 ipu_plane_put_resources(ipu_crtc->plane[0]);
Russell King17b50012013-11-03 11:23:34 +0000407}
408
409static const struct component_ops ipu_crtc_ops = {
410 .bind = ipu_drm_bind,
411 .unbind = ipu_drm_unbind,
412};
413
414static int ipu_drm_probe(struct platform_device *pdev)
415{
Philipp Zabel655b43c2014-03-05 10:20:52 +0100416 struct device *dev = &pdev->dev;
Russell King17b50012013-11-03 11:23:34 +0000417 int ret;
418
Philipp Zabel655b43c2014-03-05 10:20:52 +0100419 if (!dev->platform_data)
Sascha Hauerf326f792012-09-21 10:07:50 +0200420 return -EINVAL;
421
Philipp Zabel655b43c2014-03-05 10:20:52 +0100422 ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
Russell King4cdbb4f2013-06-10 16:56:16 +0100423 if (ret)
424 return ret;
Sascha Hauerf326f792012-09-21 10:07:50 +0200425
Philipp Zabel655b43c2014-03-05 10:20:52 +0100426 return component_add(dev, &ipu_crtc_ops);
Sascha Hauerf326f792012-09-21 10:07:50 +0200427}
428
Bill Pemberton8aa1be42012-11-19 13:26:38 -0500429static int ipu_drm_remove(struct platform_device *pdev)
Sascha Hauerf326f792012-09-21 10:07:50 +0200430{
Russell King17b50012013-11-03 11:23:34 +0000431 component_del(&pdev->dev, &ipu_crtc_ops);
Sascha Hauerf326f792012-09-21 10:07:50 +0200432 return 0;
433}
434
435static struct platform_driver ipu_drm_driver = {
436 .driver = {
437 .name = "imx-ipuv3-crtc",
438 },
439 .probe = ipu_drm_probe,
Bill Pemberton99c28f12012-11-19 13:20:51 -0500440 .remove = ipu_drm_remove,
Sascha Hauerf326f792012-09-21 10:07:50 +0200441};
442module_platform_driver(ipu_drm_driver);
443
444MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
445MODULE_DESCRIPTION(DRIVER_DESC);
446MODULE_LICENSE("GPL");
Fabio Estevamce9c1ce2013-08-18 21:40:06 -0300447MODULE_ALIAS("platform:imx-ipuv3-crtc");