blob: c69a519f5d873459df2070eed868f49d4ddaeda0 [file] [log] [blame]
Rob Clarkcd5351f2011-11-12 12:09:40 -06001/*
Rob Clark8bb0daf2013-02-11 12:43:09 -05002 * drivers/gpu/drm/omapdrm/omap_drv.c
Rob Clarkcd5351f2011-11-12 12:09:40 -06003 *
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Laurent Pinchart748471a52015-03-05 23:42:39 +020020#include <linux/wait.h>
21
22#include <drm/drm_atomic.h>
Laurent Pinchartcef77d42015-03-05 21:50:00 +020023#include <drm/drm_atomic_helper.h>
Laurent Pinchart2d278f52015-03-05 21:31:37 +020024#include <drm/drm_crtc_helper.h>
25#include <drm/drm_fb_helper.h>
Rob Clarkcd5351f2011-11-12 12:09:40 -060026
Andy Gross5c137792012-03-05 10:48:39 -060027#include "omap_dmm_tiler.h"
Laurent Pinchart2d278f52015-03-05 21:31:37 +020028#include "omap_drv.h"
Rob Clarkcd5351f2011-11-12 12:09:40 -060029
30#define DRIVER_NAME MODULE_NAME
31#define DRIVER_DESC "OMAP DRM"
32#define DRIVER_DATE "20110917"
33#define DRIVER_MAJOR 1
34#define DRIVER_MINOR 0
35#define DRIVER_PATCHLEVEL 0
36
Rob Clarkcd5351f2011-11-12 12:09:40 -060037static int num_crtc = CONFIG_DRM_OMAP_NUM_CRTCS;
38
39MODULE_PARM_DESC(num_crtc, "Number of overlays to use as CRTCs");
40module_param(num_crtc, int, 0600);
41
42/*
43 * mode config funcs
44 */
45
46/* Notes about mapping DSS and DRM entities:
47 * CRTC: overlay
48 * encoder: manager.. with some extension to allow one primary CRTC
49 * and zero or more video CRTC's to be mapped to one encoder?
50 * connector: dssdev.. manager can be attached/detached from different
51 * devices
52 */
53
54static void omap_fb_output_poll_changed(struct drm_device *dev)
55{
56 struct omap_drm_private *priv = dev->dev_private;
57 DBG("dev=%p", dev);
YAMANE Toshiakic7f904b2012-11-14 19:30:38 +090058 if (priv->fbdev)
Rob Clarkcd5351f2011-11-12 12:09:40 -060059 drm_fb_helper_hotplug_event(priv->fbdev);
Rob Clarkcd5351f2011-11-12 12:09:40 -060060}
61
Laurent Pinchart748471a52015-03-05 23:42:39 +020062struct omap_atomic_state_commit {
63 struct work_struct work;
64 struct drm_device *dev;
65 struct drm_atomic_state *state;
66 u32 crtcs;
67};
68
Tomi Valkeinen5f741b32015-05-29 16:01:18 +030069static void omap_atomic_wait_for_completion(struct drm_device *dev,
70 struct drm_atomic_state *old_state)
71{
72 struct drm_crtc_state *old_crtc_state;
73 struct drm_crtc *crtc;
74 unsigned int i;
75 int ret;
76
77 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
78 if (!crtc->state->enable)
79 continue;
80
81 ret = omap_crtc_wait_pending(crtc);
82
83 if (!ret)
84 dev_warn(dev->dev,
85 "atomic complete timeout (pipe %u)!\n", i);
86 }
87}
88
Laurent Pinchart748471a52015-03-05 23:42:39 +020089static void omap_atomic_complete(struct omap_atomic_state_commit *commit)
90{
91 struct drm_device *dev = commit->dev;
92 struct omap_drm_private *priv = dev->dev_private;
93 struct drm_atomic_state *old_state = commit->state;
94
95 /* Apply the atomic update. */
Laurent Pinchart69fb7c82015-05-28 02:09:56 +030096 dispc_runtime_get();
97
Laurent Pinchart748471a52015-03-05 23:42:39 +020098 drm_atomic_helper_commit_modeset_disables(dev, old_state);
Daniel Vetteraef9dbb2015-09-08 12:02:07 +020099 drm_atomic_helper_commit_planes(dev, old_state, false);
Laurent Pinchart748471a52015-03-05 23:42:39 +0200100 drm_atomic_helper_commit_modeset_enables(dev, old_state);
101
Tomi Valkeinen5f741b32015-05-29 16:01:18 +0300102 omap_atomic_wait_for_completion(dev, old_state);
Laurent Pinchart748471a52015-03-05 23:42:39 +0200103
104 drm_atomic_helper_cleanup_planes(dev, old_state);
105
Laurent Pinchart69fb7c82015-05-28 02:09:56 +0300106 dispc_runtime_put();
107
Laurent Pinchart748471a52015-03-05 23:42:39 +0200108 drm_atomic_state_free(old_state);
109
110 /* Complete the commit, wake up any waiter. */
111 spin_lock(&priv->commit.lock);
112 priv->commit.pending &= ~commit->crtcs;
113 spin_unlock(&priv->commit.lock);
114
115 wake_up_all(&priv->commit.wait);
116
117 kfree(commit);
118}
119
120static void omap_atomic_work(struct work_struct *work)
121{
122 struct omap_atomic_state_commit *commit =
123 container_of(work, struct omap_atomic_state_commit, work);
124
125 omap_atomic_complete(commit);
126}
127
128static bool omap_atomic_is_pending(struct omap_drm_private *priv,
129 struct omap_atomic_state_commit *commit)
130{
131 bool pending;
132
133 spin_lock(&priv->commit.lock);
134 pending = priv->commit.pending & commit->crtcs;
135 spin_unlock(&priv->commit.lock);
136
137 return pending;
138}
139
140static int omap_atomic_commit(struct drm_device *dev,
141 struct drm_atomic_state *state, bool async)
142{
143 struct omap_drm_private *priv = dev->dev_private;
144 struct omap_atomic_state_commit *commit;
Laurent Pinchart1cfe19a2015-04-16 22:35:20 +0300145 unsigned long flags;
Laurent Pinchart748471a52015-03-05 23:42:39 +0200146 unsigned int i;
147 int ret;
148
149 ret = drm_atomic_helper_prepare_planes(dev, state);
150 if (ret)
151 return ret;
152
153 /* Allocate the commit object. */
154 commit = kzalloc(sizeof(*commit), GFP_KERNEL);
155 if (commit == NULL) {
156 ret = -ENOMEM;
157 goto error;
158 }
159
160 INIT_WORK(&commit->work, omap_atomic_work);
161 commit->dev = dev;
162 commit->state = state;
163
164 /* Wait until all affected CRTCs have completed previous commits and
165 * mark them as pending.
166 */
167 for (i = 0; i < dev->mode_config.num_crtc; ++i) {
168 if (state->crtcs[i])
169 commit->crtcs |= 1 << drm_crtc_index(state->crtcs[i]);
170 }
171
172 wait_event(priv->commit.wait, !omap_atomic_is_pending(priv, commit));
173
174 spin_lock(&priv->commit.lock);
175 priv->commit.pending |= commit->crtcs;
176 spin_unlock(&priv->commit.lock);
177
Laurent Pinchart1cfe19a2015-04-16 22:35:20 +0300178 /* Keep track of all CRTC events to unlink them in preclose(). */
179 spin_lock_irqsave(&dev->event_lock, flags);
180 for (i = 0; i < dev->mode_config.num_crtc; ++i) {
181 struct drm_crtc_state *cstate = state->crtc_states[i];
182
183 if (cstate && cstate->event)
184 list_add_tail(&cstate->event->base.link,
185 &priv->commit.events);
186 }
187 spin_unlock_irqrestore(&dev->event_lock, flags);
188
Laurent Pinchart748471a52015-03-05 23:42:39 +0200189 /* Swap the state, this is the point of no return. */
190 drm_atomic_helper_swap_state(dev, state);
191
192 if (async)
193 schedule_work(&commit->work);
194 else
195 omap_atomic_complete(commit);
196
197 return 0;
198
199error:
200 drm_atomic_helper_cleanup_planes(dev, state);
201 return ret;
202}
203
Laurent Pincharte6ecefa2012-05-17 13:27:23 +0200204static const struct drm_mode_config_funcs omap_mode_config_funcs = {
Rob Clarkcd5351f2011-11-12 12:09:40 -0600205 .fb_create = omap_framebuffer_create,
206 .output_poll_changed = omap_fb_output_poll_changed,
Laurent Pinchartcef77d42015-03-05 21:50:00 +0200207 .atomic_check = drm_atomic_helper_check,
Laurent Pinchart748471a52015-03-05 23:42:39 +0200208 .atomic_commit = omap_atomic_commit,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600209};
210
211static int get_connector_type(struct omap_dss_device *dssdev)
212{
213 switch (dssdev->type) {
214 case OMAP_DISPLAY_TYPE_HDMI:
215 return DRM_MODE_CONNECTOR_HDMIA;
Tomi Valkeinen4635c172013-05-14 14:14:15 +0300216 case OMAP_DISPLAY_TYPE_DVI:
217 return DRM_MODE_CONNECTOR_DVID;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600218 default:
219 return DRM_MODE_CONNECTOR_Unknown;
220 }
221}
222
Archit Taneja0d8f3712013-03-26 19:15:19 +0530223static bool channel_used(struct drm_device *dev, enum omap_channel channel)
224{
225 struct omap_drm_private *priv = dev->dev_private;
226 int i;
227
228 for (i = 0; i < priv->num_crtcs; i++) {
229 struct drm_crtc *crtc = priv->crtcs[i];
230
231 if (omap_crtc_channel(crtc) == channel)
232 return true;
233 }
234
235 return false;
236}
Archit Tanejacc823bd2014-01-02 14:49:52 +0530237static void omap_disconnect_dssdevs(void)
238{
239 struct omap_dss_device *dssdev = NULL;
240
241 for_each_dss_dev(dssdev)
242 dssdev->driver->disconnect(dssdev);
243}
Archit Taneja0d8f3712013-03-26 19:15:19 +0530244
Archit Taneja3a01ab22014-01-02 14:49:51 +0530245static int omap_connect_dssdevs(void)
246{
247 int r;
248 struct omap_dss_device *dssdev = NULL;
249 bool no_displays = true;
250
251 for_each_dss_dev(dssdev) {
252 r = dssdev->driver->connect(dssdev);
253 if (r == -EPROBE_DEFER) {
254 omap_dss_put_device(dssdev);
255 goto cleanup;
256 } else if (r) {
257 dev_warn(dssdev->dev, "could not connect display: %s\n",
258 dssdev->name);
259 } else {
260 no_displays = false;
261 }
262 }
263
264 if (no_displays)
265 return -EPROBE_DEFER;
266
267 return 0;
268
269cleanup:
270 /*
271 * if we are deferring probe, we disconnect the devices we previously
272 * connected
273 */
Archit Tanejacc823bd2014-01-02 14:49:52 +0530274 omap_disconnect_dssdevs();
Archit Taneja3a01ab22014-01-02 14:49:51 +0530275
276 return r;
277}
Rob Clarkcd5351f2011-11-12 12:09:40 -0600278
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200279static int omap_modeset_create_crtc(struct drm_device *dev, int id,
280 enum omap_channel channel)
281{
282 struct omap_drm_private *priv = dev->dev_private;
283 struct drm_plane *plane;
284 struct drm_crtc *crtc;
285
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200286 plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_PRIMARY);
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200287 if (IS_ERR(plane))
288 return PTR_ERR(plane);
289
290 crtc = omap_crtc_init(dev, plane, channel, id);
291
292 BUG_ON(priv->num_crtcs >= ARRAY_SIZE(priv->crtcs));
293 priv->crtcs[id] = crtc;
294 priv->num_crtcs++;
295
296 priv->planes[id] = plane;
297 priv->num_planes++;
298
299 return 0;
300}
301
Laurent Pincharte2cd09b2015-03-06 17:16:43 +0200302static int omap_modeset_init_properties(struct drm_device *dev)
303{
304 struct omap_drm_private *priv = dev->dev_private;
305
306 if (priv->has_dmm) {
307 dev->mode_config.rotation_property =
308 drm_mode_create_rotation_property(dev,
309 BIT(DRM_ROTATE_0) | BIT(DRM_ROTATE_90) |
310 BIT(DRM_ROTATE_180) | BIT(DRM_ROTATE_270) |
311 BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y));
312 if (!dev->mode_config.rotation_property)
313 return -ENOMEM;
314 }
315
316 priv->zorder_prop = drm_property_create_range(dev, 0, "zorder", 0, 3);
317 if (!priv->zorder_prop)
318 return -ENOMEM;
319
320 return 0;
321}
322
Rob Clarkcd5351f2011-11-12 12:09:40 -0600323static int omap_modeset_init(struct drm_device *dev)
324{
Rob Clarkcd5351f2011-11-12 12:09:40 -0600325 struct omap_drm_private *priv = dev->dev_private;
326 struct omap_dss_device *dssdev = NULL;
Rob Clarkf5f94542012-12-04 13:59:12 -0600327 int num_ovls = dss_feat_get_num_ovls();
Archit Taneja0d8f3712013-03-26 19:15:19 +0530328 int num_mgrs = dss_feat_get_num_mgrs();
329 int num_crtcs;
330 int i, id = 0;
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200331 int ret;
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300332
Rob Clarkcd5351f2011-11-12 12:09:40 -0600333 drm_mode_config_init(dev);
334
Rob Clarkf5f94542012-12-04 13:59:12 -0600335 omap_drm_irq_install(dev);
Andy Gross71e88312011-12-05 19:19:21 -0600336
Laurent Pincharte2cd09b2015-03-06 17:16:43 +0200337 ret = omap_modeset_init_properties(dev);
338 if (ret < 0)
339 return ret;
340
Rob Clarkf5f94542012-12-04 13:59:12 -0600341 /*
Archit Taneja0d8f3712013-03-26 19:15:19 +0530342 * We usually don't want to create a CRTC for each manager, at least
343 * not until we have a way to expose private planes to userspace.
344 * Otherwise there would not be enough video pipes left for drm planes.
345 * We use the num_crtc argument to limit the number of crtcs we create.
Rob Clarkf5f94542012-12-04 13:59:12 -0600346 */
Archit Taneja0d8f3712013-03-26 19:15:19 +0530347 num_crtcs = min3(num_crtc, num_mgrs, num_ovls);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600348
Archit Taneja0d8f3712013-03-26 19:15:19 +0530349 dssdev = NULL;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600350
Rob Clarkf5f94542012-12-04 13:59:12 -0600351 for_each_dss_dev(dssdev) {
352 struct drm_connector *connector;
353 struct drm_encoder *encoder;
Archit Taneja0d8f3712013-03-26 19:15:19 +0530354 enum omap_channel channel;
Tomi Valkeinen179df152015-10-21 16:17:23 +0300355 struct omap_dss_device *out;
Rob Clarkf5f94542012-12-04 13:59:12 -0600356
Archit Taneja3a01ab22014-01-02 14:49:51 +0530357 if (!omapdss_device_is_connected(dssdev))
Archit Taneja581382e2013-03-26 19:15:18 +0530358 continue;
Tomi Valkeinena7e71e72013-05-08 16:23:32 +0300359
Rob Clarkf5f94542012-12-04 13:59:12 -0600360 encoder = omap_encoder_init(dev, dssdev);
361
362 if (!encoder) {
363 dev_err(dev->dev, "could not create encoder: %s\n",
364 dssdev->name);
365 return -ENOMEM;
366 }
367
368 connector = omap_connector_init(dev,
369 get_connector_type(dssdev), dssdev, encoder);
370
371 if (!connector) {
372 dev_err(dev->dev, "could not create connector: %s\n",
373 dssdev->name);
374 return -ENOMEM;
375 }
376
377 BUG_ON(priv->num_encoders >= ARRAY_SIZE(priv->encoders));
378 BUG_ON(priv->num_connectors >= ARRAY_SIZE(priv->connectors));
379
380 priv->encoders[priv->num_encoders++] = encoder;
381 priv->connectors[priv->num_connectors++] = connector;
382
383 drm_mode_connector_attach_encoder(connector, encoder);
384
Archit Taneja0d8f3712013-03-26 19:15:19 +0530385 /*
386 * if we have reached the limit of the crtcs we are allowed to
387 * create, let's not try to look for a crtc for this
388 * panel/encoder and onwards, we will, of course, populate the
389 * the possible_crtcs field for all the encoders with the final
390 * set of crtcs we create
391 */
392 if (id == num_crtcs)
393 continue;
394
395 /*
396 * get the recommended DISPC channel for this encoder. For now,
397 * we only try to get create a crtc out of the recommended, the
398 * other possible channels to which the encoder can connect are
399 * not considered.
400 */
Archit Taneja0d8f3712013-03-26 19:15:19 +0530401
Tomi Valkeinen179df152015-10-21 16:17:23 +0300402 out = omapdss_find_output_from_display(dssdev);
403 channel = out->dispc_channel;
404 omap_dss_put_device(out);
405
Archit Taneja0d8f3712013-03-26 19:15:19 +0530406 /*
407 * if this channel hasn't already been taken by a previously
408 * allocated crtc, we create a new crtc for it
409 */
410 if (!channel_used(dev, channel)) {
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200411 ret = omap_modeset_create_crtc(dev, id, channel);
412 if (ret < 0) {
413 dev_err(dev->dev,
414 "could not create CRTC (channel %u)\n",
415 channel);
416 return ret;
417 }
Archit Taneja0d8f3712013-03-26 19:15:19 +0530418
419 id++;
420 }
421 }
422
423 /*
424 * we have allocated crtcs according to the need of the panels/encoders,
425 * adding more crtcs here if needed
426 */
427 for (; id < num_crtcs; id++) {
428
429 /* find a free manager for this crtc */
430 for (i = 0; i < num_mgrs; i++) {
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200431 if (!channel_used(dev, i))
Archit Taneja0d8f3712013-03-26 19:15:19 +0530432 break;
Archit Taneja0d8f3712013-03-26 19:15:19 +0530433 }
434
435 if (i == num_mgrs) {
436 /* this shouldn't really happen */
437 dev_err(dev->dev, "no managers left for crtc\n");
438 return -ENOMEM;
439 }
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200440
441 ret = omap_modeset_create_crtc(dev, id, i);
442 if (ret < 0) {
443 dev_err(dev->dev,
444 "could not create CRTC (channel %u)\n", i);
445 return ret;
446 }
Archit Taneja0d8f3712013-03-26 19:15:19 +0530447 }
448
449 /*
450 * Create normal planes for the remaining overlays:
451 */
452 for (; id < num_ovls; id++) {
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200453 struct drm_plane *plane;
454
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200455 plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_OVERLAY);
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200456 if (IS_ERR(plane))
457 return PTR_ERR(plane);
Archit Taneja0d8f3712013-03-26 19:15:19 +0530458
459 BUG_ON(priv->num_planes >= ARRAY_SIZE(priv->planes));
460 priv->planes[priv->num_planes++] = plane;
461 }
462
463 for (i = 0; i < priv->num_encoders; i++) {
464 struct drm_encoder *encoder = priv->encoders[i];
465 struct omap_dss_device *dssdev =
466 omap_encoder_get_dssdev(encoder);
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300467 struct omap_dss_device *output;
Tomi Valkeinenbe8e8e12013-04-23 15:35:35 +0300468
469 output = omapdss_find_output_from_display(dssdev);
Archit Taneja0d8f3712013-03-26 19:15:19 +0530470
Rob Clarkf5f94542012-12-04 13:59:12 -0600471 /* figure out which crtc's we can connect the encoder to: */
472 encoder->possible_crtcs = 0;
473 for (id = 0; id < priv->num_crtcs; id++) {
Archit Taneja0d8f3712013-03-26 19:15:19 +0530474 struct drm_crtc *crtc = priv->crtcs[id];
475 enum omap_channel crtc_channel;
Archit Taneja0d8f3712013-03-26 19:15:19 +0530476
477 crtc_channel = omap_crtc_channel(crtc);
Archit Taneja0d8f3712013-03-26 19:15:19 +0530478
Tomi Valkeinen17337292014-09-03 19:25:49 +0000479 if (output->dispc_channel == crtc_channel) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600480 encoder->possible_crtcs |= (1 << id);
Tomi Valkeinen17337292014-09-03 19:25:49 +0000481 break;
482 }
Rob Clarkf5f94542012-12-04 13:59:12 -0600483 }
Tomi Valkeinen820caab2013-04-25 14:53:18 +0300484
485 omap_dss_put_device(output);
Rob Clarkf5f94542012-12-04 13:59:12 -0600486 }
Rob Clarkcd5351f2011-11-12 12:09:40 -0600487
Archit Taneja0d8f3712013-03-26 19:15:19 +0530488 DBG("registered %d planes, %d crtcs, %d encoders and %d connectors\n",
489 priv->num_planes, priv->num_crtcs, priv->num_encoders,
490 priv->num_connectors);
491
Rob Clark6b8ca4c2012-01-08 19:37:37 -0600492 dev->mode_config.min_width = 32;
493 dev->mode_config.min_height = 32;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600494
495 /* note: eventually will need some cpu_is_omapXYZ() type stuff here
496 * to fill in these limits properly on different OMAP generations..
497 */
498 dev->mode_config.max_width = 2048;
499 dev->mode_config.max_height = 2048;
500
501 dev->mode_config.funcs = &omap_mode_config_funcs;
502
Laurent Pinchart69a12262015-03-05 21:38:16 +0200503 drm_mode_config_reset(dev);
504
Rob Clarkcd5351f2011-11-12 12:09:40 -0600505 return 0;
506}
507
508static void omap_modeset_free(struct drm_device *dev)
509{
510 drm_mode_config_cleanup(dev);
511}
512
513/*
514 * drm ioctl funcs
515 */
516
517
518static int ioctl_get_param(struct drm_device *dev, void *data,
519 struct drm_file *file_priv)
520{
Rob Clark5e3b0872012-10-29 09:31:12 +0100521 struct omap_drm_private *priv = dev->dev_private;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600522 struct drm_omap_param *args = data;
523
524 DBG("%p: param=%llu", dev, args->param);
525
526 switch (args->param) {
527 case OMAP_PARAM_CHIPSET_ID:
Rob Clark5e3b0872012-10-29 09:31:12 +0100528 args->value = priv->omaprev;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600529 break;
530 default:
531 DBG("unknown parameter %lld", args->param);
532 return -EINVAL;
533 }
534
535 return 0;
536}
537
538static int ioctl_set_param(struct drm_device *dev, void *data,
539 struct drm_file *file_priv)
540{
541 struct drm_omap_param *args = data;
542
543 switch (args->param) {
544 default:
545 DBG("unknown parameter %lld", args->param);
546 return -EINVAL;
547 }
548
549 return 0;
550}
551
Laurent Pinchartef3f4e92015-12-14 22:39:36 +0200552#define OMAP_BO_USER_MASK 0x00ffffff /* flags settable by userspace */
553
Rob Clarkcd5351f2011-11-12 12:09:40 -0600554static int ioctl_gem_new(struct drm_device *dev, void *data,
555 struct drm_file *file_priv)
556{
557 struct drm_omap_gem_new *args = data;
Laurent Pinchartef3f4e92015-12-14 22:39:36 +0200558 u32 flags = args->flags & OMAP_BO_USER_MASK;
559
Rob Clarkf5f94542012-12-04 13:59:12 -0600560 VERB("%p:%p: size=0x%08x, flags=%08x", dev, file_priv,
Laurent Pinchartef3f4e92015-12-14 22:39:36 +0200561 args->size.bytes, flags);
562
563 return omap_gem_new_handle(dev, file_priv, args->size, flags,
564 &args->handle);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600565}
566
567static int ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
568 struct drm_file *file_priv)
569{
570 struct drm_omap_gem_cpu_prep *args = data;
571 struct drm_gem_object *obj;
572 int ret;
573
574 VERB("%p:%p: handle=%d, op=%x", dev, file_priv, args->handle, args->op);
575
576 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
YAMANE Toshiakic7f904b2012-11-14 19:30:38 +0900577 if (!obj)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600578 return -ENOENT;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600579
580 ret = omap_gem_op_sync(obj, args->op);
581
YAMANE Toshiakic7f904b2012-11-14 19:30:38 +0900582 if (!ret)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600583 ret = omap_gem_op_start(obj, args->op);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600584
585 drm_gem_object_unreference_unlocked(obj);
586
587 return ret;
588}
589
590static int ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
591 struct drm_file *file_priv)
592{
593 struct drm_omap_gem_cpu_fini *args = data;
594 struct drm_gem_object *obj;
595 int ret;
596
597 VERB("%p:%p: handle=%d", dev, file_priv, args->handle);
598
599 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
YAMANE Toshiakic7f904b2012-11-14 19:30:38 +0900600 if (!obj)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600601 return -ENOENT;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600602
603 /* XXX flushy, flushy */
604 ret = 0;
605
YAMANE Toshiakic7f904b2012-11-14 19:30:38 +0900606 if (!ret)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600607 ret = omap_gem_op_finish(obj, args->op);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600608
609 drm_gem_object_unreference_unlocked(obj);
610
611 return ret;
612}
613
614static int ioctl_gem_info(struct drm_device *dev, void *data,
615 struct drm_file *file_priv)
616{
617 struct drm_omap_gem_info *args = data;
618 struct drm_gem_object *obj;
619 int ret = 0;
620
Rob Clarkf5f94542012-12-04 13:59:12 -0600621 VERB("%p:%p: handle=%d", dev, file_priv, args->handle);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600622
623 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
YAMANE Toshiakic7f904b2012-11-14 19:30:38 +0900624 if (!obj)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600625 return -ENOENT;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600626
Rob Clarkf7f9f452011-12-05 19:19:22 -0600627 args->size = omap_gem_mmap_size(obj);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600628 args->offset = omap_gem_mmap_offset(obj);
629
630 drm_gem_object_unreference_unlocked(obj);
631
632 return ret;
633}
634
Rob Clarkbaa70942013-08-02 13:27:49 -0400635static const struct drm_ioctl_desc ioctls[DRM_COMMAND_END - DRM_COMMAND_BASE] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200636 DRM_IOCTL_DEF_DRV(OMAP_GET_PARAM, ioctl_get_param, DRM_AUTH),
637 DRM_IOCTL_DEF_DRV(OMAP_SET_PARAM, ioctl_set_param, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
638 DRM_IOCTL_DEF_DRV(OMAP_GEM_NEW, ioctl_gem_new, DRM_AUTH),
639 DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_PREP, ioctl_gem_cpu_prep, DRM_AUTH),
640 DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_FINI, ioctl_gem_cpu_fini, DRM_AUTH),
641 DRM_IOCTL_DEF_DRV(OMAP_GEM_INFO, ioctl_gem_info, DRM_AUTH),
Rob Clarkcd5351f2011-11-12 12:09:40 -0600642};
643
644/*
645 * drm driver funcs
646 */
647
648/**
649 * load - setup chip and create an initial config
650 * @dev: DRM device
651 * @flags: startup flags
652 *
653 * The driver load routine has to do several things:
654 * - initialize the memory manager
655 * - allocate initial config memory
656 * - setup the DRM framebuffer with the allocated memory
657 */
658static int dev_load(struct drm_device *dev, unsigned long flags)
659{
Rob Clark5e3b0872012-10-29 09:31:12 +0100660 struct omap_drm_platform_data *pdata = dev->dev->platform_data;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600661 struct omap_drm_private *priv;
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200662 unsigned int i;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600663 int ret;
664
665 DBG("load: dev=%p", dev);
666
Rob Clarkcd5351f2011-11-12 12:09:40 -0600667 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Joe Perches78110bb2013-02-11 09:41:29 -0800668 if (!priv)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600669 return -ENOMEM;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600670
Rob Clark5e3b0872012-10-29 09:31:12 +0100671 priv->omaprev = pdata->omaprev;
672
Rob Clarkcd5351f2011-11-12 12:09:40 -0600673 dev->dev_private = priv;
674
Tejun Heo4619cdb2012-08-22 16:49:44 -0700675 priv->wq = alloc_ordered_workqueue("omapdrm", 0);
Laurent Pinchart748471a52015-03-05 23:42:39 +0200676 init_waitqueue_head(&priv->commit.wait);
677 spin_lock_init(&priv->commit.lock);
Laurent Pinchart1cfe19a2015-04-16 22:35:20 +0300678 INIT_LIST_HEAD(&priv->commit.events);
Rob Clark5609f7f2012-03-05 10:48:32 -0600679
Tomi Valkeinen76c40552014-12-17 14:34:22 +0200680 spin_lock_init(&priv->list_lock);
Rob Clarkf6b60362012-03-05 10:48:36 -0600681 INIT_LIST_HEAD(&priv->obj_list);
682
Rob Clarkf7f9f452011-12-05 19:19:22 -0600683 omap_gem_init(dev);
684
Rob Clarkcd5351f2011-11-12 12:09:40 -0600685 ret = omap_modeset_init(dev);
686 if (ret) {
687 dev_err(dev->dev, "omap_modeset_init failed: ret=%d\n", ret);
688 dev->dev_private = NULL;
689 kfree(priv);
690 return ret;
691 }
692
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200693 /* Initialize vblank handling, start with all CRTCs disabled. */
Rob Clarkf5f94542012-12-04 13:59:12 -0600694 ret = drm_vblank_init(dev, priv->num_crtcs);
695 if (ret)
696 dev_warn(dev->dev, "could not init vblank\n");
697
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200698 for (i = 0; i < priv->num_crtcs; i++)
699 drm_crtc_vblank_off(priv->crtcs[i]);
700
Rob Clarkcd5351f2011-11-12 12:09:40 -0600701 priv->fbdev = omap_fbdev_init(dev);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600702
Andy Grosse78edba2012-12-19 14:53:37 -0600703 /* store off drm_device for use in pm ops */
704 dev_set_drvdata(dev->dev, dev);
705
Rob Clarkcd5351f2011-11-12 12:09:40 -0600706 drm_kms_helper_poll_init(dev);
707
Rob Clarkcd5351f2011-11-12 12:09:40 -0600708 return 0;
709}
710
711static int dev_unload(struct drm_device *dev)
712{
Rob Clark5609f7f2012-03-05 10:48:32 -0600713 struct omap_drm_private *priv = dev->dev_private;
714
Rob Clarkcd5351f2011-11-12 12:09:40 -0600715 DBG("unload: dev=%p", dev);
716
Rob Clarkcd5351f2011-11-12 12:09:40 -0600717 drm_kms_helper_poll_fini(dev);
718
Tomi Valkeinenc7c1aec2014-09-25 19:24:26 +0000719 if (priv->fbdev)
720 omap_fbdev_free(dev);
Tomi Valkeinene2f8fd72014-04-02 14:31:57 +0300721
Rob Clarkcd5351f2011-11-12 12:09:40 -0600722 omap_modeset_free(dev);
Rob Clarkf7f9f452011-12-05 19:19:22 -0600723 omap_gem_deinit(dev);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600724
Rob Clark5609f7f2012-03-05 10:48:32 -0600725 destroy_workqueue(priv->wq);
726
Archit Taneja80e4ed52014-01-02 14:49:54 +0530727 drm_vblank_cleanup(dev);
728 omap_drm_irq_uninstall(dev);
729
Rob Clarkcd5351f2011-11-12 12:09:40 -0600730 kfree(dev->dev_private);
731 dev->dev_private = NULL;
732
Andy Grosse78edba2012-12-19 14:53:37 -0600733 dev_set_drvdata(dev->dev, NULL);
734
Rob Clarkcd5351f2011-11-12 12:09:40 -0600735 return 0;
736}
737
738static int dev_open(struct drm_device *dev, struct drm_file *file)
739{
740 file->driver_priv = NULL;
741
742 DBG("open: dev=%p, file=%p", dev, file);
743
744 return 0;
745}
746
Rob Clarkcd5351f2011-11-12 12:09:40 -0600747/**
748 * lastclose - clean up after all DRM clients have exited
749 * @dev: DRM device
750 *
751 * Take care of cleaning up after all DRM clients have exited. In the
752 * mode setting case, we want to restore the kernel's initial mode (just
753 * in case the last client left us in a bad state).
754 */
755static void dev_lastclose(struct drm_device *dev)
756{
Rob Clark3c810c62012-08-15 15:18:01 -0500757 int i;
758
Lukas Wunnerf15a66e2015-09-05 11:22:39 +0200759 /* we don't support vga_switcheroo.. so just make sure the fbdev
Rob Clarkcd5351f2011-11-12 12:09:40 -0600760 * mode is active
761 */
762 struct omap_drm_private *priv = dev->dev_private;
763 int ret;
764
765 DBG("lastclose: dev=%p", dev);
766
Laurent Pincharte2cd09b2015-03-06 17:16:43 +0200767 if (dev->mode_config.rotation_property) {
Rob Clarkc2a6a552012-10-25 17:14:13 -0500768 /* need to restore default rotation state.. not sure
769 * if there is a cleaner way to restore properties to
770 * default state? Maybe a flag that properties should
771 * automatically be restored to default state on
772 * lastclose?
773 */
774 for (i = 0; i < priv->num_crtcs; i++) {
775 drm_object_property_set_value(&priv->crtcs[i]->base,
Laurent Pincharte2cd09b2015-03-06 17:16:43 +0200776 dev->mode_config.rotation_property, 0);
Rob Clarkc2a6a552012-10-25 17:14:13 -0500777 }
Rob Clark3c810c62012-08-15 15:18:01 -0500778
Rob Clarkc2a6a552012-10-25 17:14:13 -0500779 for (i = 0; i < priv->num_planes; i++) {
780 drm_object_property_set_value(&priv->planes[i]->base,
Laurent Pincharte2cd09b2015-03-06 17:16:43 +0200781 dev->mode_config.rotation_property, 0);
Rob Clarkc2a6a552012-10-25 17:14:13 -0500782 }
Rob Clark3c810c62012-08-15 15:18:01 -0500783 }
784
Tomi Valkeinenc7c1aec2014-09-25 19:24:26 +0000785 if (priv->fbdev) {
786 ret = drm_fb_helper_restore_fbdev_mode_unlocked(priv->fbdev);
787 if (ret)
788 DBG("failed to restore crtc mode");
789 }
Rob Clarkcd5351f2011-11-12 12:09:40 -0600790}
791
792static void dev_preclose(struct drm_device *dev, struct drm_file *file)
793{
Laurent Pinchart1d5e5ea2015-01-18 16:57:36 +0200794 struct omap_drm_private *priv = dev->dev_private;
Laurent Pinchart1cfe19a2015-04-16 22:35:20 +0300795 struct drm_pending_event *event;
796 unsigned long flags;
Laurent Pinchart1d5e5ea2015-01-18 16:57:36 +0200797
Rob Clarkcd5351f2011-11-12 12:09:40 -0600798 DBG("preclose: dev=%p", dev);
Laurent Pinchart1d5e5ea2015-01-18 16:57:36 +0200799
Laurent Pinchart1cfe19a2015-04-16 22:35:20 +0300800 /*
801 * Unlink all pending CRTC events to make sure they won't be queued up
802 * by a pending asynchronous commit.
803 */
804 spin_lock_irqsave(&dev->event_lock, flags);
805 list_for_each_entry(event, &priv->commit.events, link) {
806 if (event->file_priv == file) {
807 file->event_space += event->event->length;
808 event->file_priv = NULL;
809 }
810 }
811 spin_unlock_irqrestore(&dev->event_lock, flags);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600812}
813
814static void dev_postclose(struct drm_device *dev, struct drm_file *file)
815{
816 DBG("postclose: dev=%p, file=%p", dev, file);
817}
818
Laurent Pinchart78b68552012-05-17 13:27:22 +0200819static const struct vm_operations_struct omap_gem_vm_ops = {
Rob Clarkcd5351f2011-11-12 12:09:40 -0600820 .fault = omap_gem_fault,
821 .open = drm_gem_vm_open,
822 .close = drm_gem_vm_close,
823};
824
Rob Clarkff4f3872012-01-16 12:51:14 -0600825static const struct file_operations omapdriver_fops = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200826 .owner = THIS_MODULE,
827 .open = drm_open,
828 .unlocked_ioctl = drm_ioctl,
829 .release = drm_release,
830 .mmap = omap_gem_mmap,
831 .poll = drm_poll,
832 .read = drm_read,
833 .llseek = noop_llseek,
Rob Clarkff4f3872012-01-16 12:51:14 -0600834};
835
Rob Clarkcd5351f2011-11-12 12:09:40 -0600836static struct drm_driver omap_drm_driver = {
Tomi Valkeinen728fea72015-10-02 11:10:41 +0300837 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME |
838 DRIVER_ATOMIC,
Laurent Pinchart222025e2015-01-11 00:02:07 +0200839 .load = dev_load,
840 .unload = dev_unload,
841 .open = dev_open,
842 .lastclose = dev_lastclose,
843 .preclose = dev_preclose,
844 .postclose = dev_postclose,
845 .set_busid = drm_platform_set_busid,
Ville Syrjäläb44f8402015-09-30 16:46:48 +0300846 .get_vblank_counter = drm_vblank_no_hw_counter,
Laurent Pinchart222025e2015-01-11 00:02:07 +0200847 .enable_vblank = omap_irq_enable_vblank,
848 .disable_vblank = omap_irq_disable_vblank,
Andy Gross6169a1482011-12-15 21:05:17 -0600849#ifdef CONFIG_DEBUG_FS
Laurent Pinchart222025e2015-01-11 00:02:07 +0200850 .debugfs_init = omap_debugfs_init,
851 .debugfs_cleanup = omap_debugfs_cleanup,
Andy Gross6169a1482011-12-15 21:05:17 -0600852#endif
Laurent Pinchart222025e2015-01-11 00:02:07 +0200853 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
854 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
855 .gem_prime_export = omap_gem_prime_export,
856 .gem_prime_import = omap_gem_prime_import,
857 .gem_free_object = omap_gem_free_object,
858 .gem_vm_ops = &omap_gem_vm_ops,
859 .dumb_create = omap_gem_dumb_create,
860 .dumb_map_offset = omap_gem_dumb_map_offset,
861 .dumb_destroy = drm_gem_dumb_destroy,
862 .ioctls = ioctls,
863 .num_ioctls = DRM_OMAP_NUM_IOCTLS,
864 .fops = &omapdriver_fops,
865 .name = DRIVER_NAME,
866 .desc = DRIVER_DESC,
867 .date = DRIVER_DATE,
868 .major = DRIVER_MAJOR,
869 .minor = DRIVER_MINOR,
870 .patchlevel = DRIVER_PATCHLEVEL,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600871};
872
Rob Clarkcd5351f2011-11-12 12:09:40 -0600873static int pdev_probe(struct platform_device *device)
874{
Archit Taneja3a01ab22014-01-02 14:49:51 +0530875 int r;
876
Tomi Valkeinen591a0ac2013-05-23 12:07:50 +0300877 if (omapdss_is_initialized() == false)
878 return -EPROBE_DEFER;
879
Archit Taneja3a01ab22014-01-02 14:49:51 +0530880 omap_crtc_pre_init();
881
882 r = omap_connect_dssdevs();
883 if (r) {
884 omap_crtc_pre_uninit();
885 return r;
886 }
887
Rob Clarkcd5351f2011-11-12 12:09:40 -0600888 DBG("%s", device->name);
889 return drm_platform_init(&omap_drm_driver, device);
890}
891
892static int pdev_remove(struct platform_device *device)
893{
894 DBG("");
Andy Gross5c137792012-03-05 10:48:39 -0600895
Tomi Valkeinen707cf582014-04-02 13:47:43 +0300896 drm_put_dev(platform_get_drvdata(device));
897
Archit Tanejacc823bd2014-01-02 14:49:52 +0530898 omap_disconnect_dssdevs();
899 omap_crtc_pre_uninit();
Daniel Vetterfd3c0252013-12-11 11:34:26 +0100900
Rob Clarkcd5351f2011-11-12 12:09:40 -0600901 return 0;
902}
903
Grygorii Strashko8450c8d2015-02-26 15:57:17 +0200904#ifdef CONFIG_PM_SLEEP
Tomi Valkeinen92bf0f92015-10-02 11:10:42 +0300905static int omap_drm_suspend_all_displays(void)
906{
907 struct omap_dss_device *dssdev = NULL;
908
909 for_each_dss_dev(dssdev) {
910 if (!dssdev->driver)
911 continue;
912
913 if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) {
914 dssdev->driver->disable(dssdev);
915 dssdev->activate_after_resume = true;
916 } else {
917 dssdev->activate_after_resume = false;
918 }
919 }
920
921 return 0;
922}
923
924static int omap_drm_resume_all_displays(void)
925{
926 struct omap_dss_device *dssdev = NULL;
927
928 for_each_dss_dev(dssdev) {
929 if (!dssdev->driver)
930 continue;
931
932 if (dssdev->activate_after_resume) {
933 dssdev->driver->enable(dssdev);
934 dssdev->activate_after_resume = false;
935 }
936 }
937
938 return 0;
939}
940
Tomi Valkeinenccd7b5e2014-11-14 15:18:28 +0200941static int omap_drm_suspend(struct device *dev)
942{
943 struct drm_device *drm_dev = dev_get_drvdata(dev);
944
945 drm_kms_helper_poll_disable(drm_dev);
946
Tomi Valkeinen92bf0f92015-10-02 11:10:42 +0300947 drm_modeset_lock_all(drm_dev);
948 omap_drm_suspend_all_displays();
949 drm_modeset_unlock_all(drm_dev);
950
Tomi Valkeinenccd7b5e2014-11-14 15:18:28 +0200951 return 0;
952}
953
954static int omap_drm_resume(struct device *dev)
955{
956 struct drm_device *drm_dev = dev_get_drvdata(dev);
957
Tomi Valkeinen92bf0f92015-10-02 11:10:42 +0300958 drm_modeset_lock_all(drm_dev);
959 omap_drm_resume_all_displays();
960 drm_modeset_unlock_all(drm_dev);
961
Tomi Valkeinenccd7b5e2014-11-14 15:18:28 +0200962 drm_kms_helper_poll_enable(drm_dev);
963
964 return omap_gem_resume(dev);
965}
Andy Grosse78edba2012-12-19 14:53:37 -0600966#endif
967
Grygorii Strashko8450c8d2015-02-26 15:57:17 +0200968static SIMPLE_DEV_PM_OPS(omapdrm_pm_ops, omap_drm_suspend, omap_drm_resume);
969
Tomi Valkeinen6717cd22013-04-10 10:44:00 +0300970static struct platform_driver pdev = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200971 .driver = {
972 .name = DRIVER_NAME,
Laurent Pinchart222025e2015-01-11 00:02:07 +0200973 .pm = &omapdrm_pm_ops,
Laurent Pinchart222025e2015-01-11 00:02:07 +0200974 },
975 .probe = pdev_probe,
976 .remove = pdev_remove,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600977};
978
Thierry Redinge1c49bd2015-12-02 17:23:31 +0100979static struct platform_driver * const drivers[] = {
980 &omap_dmm_driver,
981 &pdev,
982};
983
Rob Clarkcd5351f2011-11-12 12:09:40 -0600984static int __init omap_drm_init(void)
985{
986 DBG("init");
Tomi Valkeinenea7e3a62014-04-02 14:31:50 +0300987
Thierry Redinge1c49bd2015-12-02 17:23:31 +0100988 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
Rob Clarkcd5351f2011-11-12 12:09:40 -0600989}
990
991static void __exit omap_drm_fini(void)
992{
993 DBG("fini");
Tomi Valkeinenea7e3a62014-04-02 14:31:50 +0300994
Thierry Redinge1c49bd2015-12-02 17:23:31 +0100995 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
Rob Clarkcd5351f2011-11-12 12:09:40 -0600996}
997
998/* need late_initcall() so we load after dss_driver's are loaded */
999late_initcall(omap_drm_init);
1000module_exit(omap_drm_fini);
1001
1002MODULE_AUTHOR("Rob Clark <rob@ti.com>");
1003MODULE_DESCRIPTION("OMAP DRM Display Driver");
1004MODULE_ALIAS("platform:" DRIVER_NAME);
1005MODULE_LICENSE("GPL v2");