drm: s/int crtc/unsigned int pipe/ straggles
[deliverable/linux.git] / drivers / gpu / drm / omapdrm / omap_drv.c
CommitLineData
cd5351f4 1/*
8bb0daff 2 * drivers/gpu/drm/omapdrm/omap_drv.c
cd5351f4
RC
3 *
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
748471a5
LP
20#include <linux/wait.h>
21
22#include <drm/drm_atomic.h>
cef77d40 23#include <drm/drm_atomic_helper.h>
2d278f54
LP
24#include <drm/drm_crtc_helper.h>
25#include <drm/drm_fb_helper.h>
cd5351f4 26
5c137797 27#include "omap_dmm_tiler.h"
2d278f54 28#include "omap_drv.h"
cd5351f4
RC
29
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
cd5351f4
RC
37static 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);
c7f904b3 58 if (priv->fbdev)
cd5351f4 59 drm_fb_helper_hotplug_event(priv->fbdev);
cd5351f4
RC
60}
61
748471a5
LP
62struct 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
5f741b39
TV
69static 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
748471a5
LP
89static 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. */
69fb7c85
LP
96 dispc_runtime_get();
97
748471a5 98 drm_atomic_helper_commit_modeset_disables(dev, old_state);
aef9dbb8 99 drm_atomic_helper_commit_planes(dev, old_state, false);
748471a5
LP
100 drm_atomic_helper_commit_modeset_enables(dev, old_state);
101
5f741b39 102 omap_atomic_wait_for_completion(dev, old_state);
748471a5
LP
103
104 drm_atomic_helper_cleanup_planes(dev, old_state);
105
69fb7c85
LP
106 dispc_runtime_put();
107
748471a5
LP
108 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;
1cfe19aa 145 unsigned long flags;
748471a5
LP
146 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
1cfe19aa
LP
178 /* 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
748471a5
LP
189 /* 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
e6ecefaa 204static const struct drm_mode_config_funcs omap_mode_config_funcs = {
cd5351f4
RC
205 .fb_create = omap_framebuffer_create,
206 .output_poll_changed = omap_fb_output_poll_changed,
cef77d40 207 .atomic_check = drm_atomic_helper_check,
748471a5 208 .atomic_commit = omap_atomic_commit,
cd5351f4
RC
209};
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;
4635c17d
TV
216 case OMAP_DISPLAY_TYPE_DVI:
217 return DRM_MODE_CONNECTOR_DVID;
cd5351f4
RC
218 default:
219 return DRM_MODE_CONNECTOR_Unknown;
220 }
221}
222
0d8f371f
AT
223static 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}
cc823bdc
AT
237static 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}
0d8f371f 244
3a01ab25
AT
245static 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 */
cc823bdc 274 omap_disconnect_dssdevs();
3a01ab25
AT
275
276 return r;
277}
0d8f371f 278
fb9a35f8
LP
279static 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
ef6b0e02 286 plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_PRIMARY);
fb9a35f8
LP
287 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
e2cd09b2
LP
302static 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
f5f9454c 323static int omap_modeset_init(struct drm_device *dev)
cd5351f4
RC
324{
325 struct omap_drm_private *priv = dev->dev_private;
f5f9454c
RC
326 struct omap_dss_device *dssdev = NULL;
327 int num_ovls = dss_feat_get_num_ovls();
0d8f371f
AT
328 int num_mgrs = dss_feat_get_num_mgrs();
329 int num_crtcs;
330 int i, id = 0;
fb9a35f8 331 int ret;
04b1fc02 332
f5f9454c 333 drm_mode_config_init(dev);
cd5351f4 334
f5f9454c 335 omap_drm_irq_install(dev);
cd5351f4 336
e2cd09b2
LP
337 ret = omap_modeset_init_properties(dev);
338 if (ret < 0)
339 return ret;
340
f5f9454c 341 /*
0d8f371f
AT
342 * 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.
f5f9454c 346 */
0d8f371f 347 num_crtcs = min3(num_crtc, num_mgrs, num_ovls);
cd5351f4 348
0d8f371f 349 dssdev = NULL;
cd5351f4 350
f5f9454c
RC
351 for_each_dss_dev(dssdev) {
352 struct drm_connector *connector;
353 struct drm_encoder *encoder;
0d8f371f 354 enum omap_channel channel;
a7e71e7f 355 struct omap_overlay_manager *mgr;
c7f904b3 356
3a01ab25 357 if (!omapdss_device_is_connected(dssdev))
581382e3 358 continue;
a7e71e7f 359
f5f9454c 360 encoder = omap_encoder_init(dev, dssdev);
cd5351f4 361
f5f9454c
RC
362 if (!encoder) {
363 dev_err(dev->dev, "could not create encoder: %s\n",
364 dssdev->name);
365 return -ENOMEM;
cd5351f4
RC
366 }
367
f5f9454c
RC
368 connector = omap_connector_init(dev,
369 get_connector_type(dssdev), dssdev, encoder);
cd5351f4 370
f5f9454c
RC
371 if (!connector) {
372 dev_err(dev->dev, "could not create connector: %s\n",
373 dssdev->name);
374 return -ENOMEM;
cd5351f4 375 }
bb5c2d9a 376
f5f9454c
RC
377 BUG_ON(priv->num_encoders >= ARRAY_SIZE(priv->encoders));
378 BUG_ON(priv->num_connectors >= ARRAY_SIZE(priv->connectors));
cd5351f4 379
f5f9454c
RC
380 priv->encoders[priv->num_encoders++] = encoder;
381 priv->connectors[priv->num_connectors++] = connector;
cd5351f4 382
f5f9454c 383 drm_mode_connector_attach_encoder(connector, encoder);
cd5351f4 384
0d8f371f
AT
385 /*
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 */
0d8f371f 401
a7e71e7f
TV
402 mgr = omapdss_find_mgr_from_display(dssdev);
403 channel = mgr->id;
0d8f371f
AT
404 /*
405 * if this channel hasn't already been taken by a previously
406 * allocated crtc, we create a new crtc for it
407 */
408 if (!channel_used(dev, channel)) {
fb9a35f8
LP
409 ret = omap_modeset_create_crtc(dev, id, channel);
410 if (ret < 0) {
411 dev_err(dev->dev,
412 "could not create CRTC (channel %u)\n",
413 channel);
414 return ret;
415 }
0d8f371f
AT
416
417 id++;
418 }
419 }
420
421 /*
422 * we have allocated crtcs according to the need of the panels/encoders,
423 * adding more crtcs here if needed
424 */
425 for (; id < num_crtcs; id++) {
426
427 /* find a free manager for this crtc */
428 for (i = 0; i < num_mgrs; i++) {
fb9a35f8 429 if (!channel_used(dev, i))
0d8f371f 430 break;
0d8f371f
AT
431 }
432
433 if (i == num_mgrs) {
434 /* this shouldn't really happen */
435 dev_err(dev->dev, "no managers left for crtc\n");
436 return -ENOMEM;
437 }
fb9a35f8
LP
438
439 ret = omap_modeset_create_crtc(dev, id, i);
440 if (ret < 0) {
441 dev_err(dev->dev,
442 "could not create CRTC (channel %u)\n", i);
443 return ret;
444 }
0d8f371f
AT
445 }
446
447 /*
448 * Create normal planes for the remaining overlays:
449 */
450 for (; id < num_ovls; id++) {
fb9a35f8
LP
451 struct drm_plane *plane;
452
ef6b0e02 453 plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_OVERLAY);
fb9a35f8
LP
454 if (IS_ERR(plane))
455 return PTR_ERR(plane);
0d8f371f
AT
456
457 BUG_ON(priv->num_planes >= ARRAY_SIZE(priv->planes));
458 priv->planes[priv->num_planes++] = plane;
459 }
460
461 for (i = 0; i < priv->num_encoders; i++) {
462 struct drm_encoder *encoder = priv->encoders[i];
463 struct omap_dss_device *dssdev =
464 omap_encoder_get_dssdev(encoder);
1f68d9c4 465 struct omap_dss_device *output;
be8e8e1c
TV
466
467 output = omapdss_find_output_from_display(dssdev);
0d8f371f 468
f5f9454c
RC
469 /* figure out which crtc's we can connect the encoder to: */
470 encoder->possible_crtcs = 0;
471 for (id = 0; id < priv->num_crtcs; id++) {
0d8f371f
AT
472 struct drm_crtc *crtc = priv->crtcs[id];
473 enum omap_channel crtc_channel;
0d8f371f
AT
474
475 crtc_channel = omap_crtc_channel(crtc);
0d8f371f 476
17337297 477 if (output->dispc_channel == crtc_channel) {
f5f9454c 478 encoder->possible_crtcs |= (1 << id);
17337297
TV
479 break;
480 }
bb5c2d9a 481 }
820caabf
TV
482
483 omap_dss_put_device(output);
cd5351f4
RC
484 }
485
0d8f371f
AT
486 DBG("registered %d planes, %d crtcs, %d encoders and %d connectors\n",
487 priv->num_planes, priv->num_crtcs, priv->num_encoders,
488 priv->num_connectors);
489
6b8ca4cf
RC
490 dev->mode_config.min_width = 32;
491 dev->mode_config.min_height = 32;
cd5351f4
RC
492
493 /* note: eventually will need some cpu_is_omapXYZ() type stuff here
494 * to fill in these limits properly on different OMAP generations..
495 */
496 dev->mode_config.max_width = 2048;
497 dev->mode_config.max_height = 2048;
498
499 dev->mode_config.funcs = &omap_mode_config_funcs;
500
69a12263
LP
501 drm_mode_config_reset(dev);
502
cd5351f4
RC
503 return 0;
504}
505
506static void omap_modeset_free(struct drm_device *dev)
507{
508 drm_mode_config_cleanup(dev);
509}
510
511/*
512 * drm ioctl funcs
513 */
514
515
516static int ioctl_get_param(struct drm_device *dev, void *data,
517 struct drm_file *file_priv)
518{
5e3b0874 519 struct omap_drm_private *priv = dev->dev_private;
cd5351f4
RC
520 struct drm_omap_param *args = data;
521
522 DBG("%p: param=%llu", dev, args->param);
523
524 switch (args->param) {
525 case OMAP_PARAM_CHIPSET_ID:
5e3b0874 526 args->value = priv->omaprev;
cd5351f4
RC
527 break;
528 default:
529 DBG("unknown parameter %lld", args->param);
530 return -EINVAL;
531 }
532
533 return 0;
534}
535
536static int ioctl_set_param(struct drm_device *dev, void *data,
537 struct drm_file *file_priv)
538{
539 struct drm_omap_param *args = data;
540
541 switch (args->param) {
542 default:
543 DBG("unknown parameter %lld", args->param);
544 return -EINVAL;
545 }
546
547 return 0;
548}
549
550static int ioctl_gem_new(struct drm_device *dev, void *data,
551 struct drm_file *file_priv)
552{
553 struct drm_omap_gem_new *args = data;
f5f9454c 554 VERB("%p:%p: size=0x%08x, flags=%08x", dev, file_priv,
cd5351f4
RC
555 args->size.bytes, args->flags);
556 return omap_gem_new_handle(dev, file_priv, args->size,
557 args->flags, &args->handle);
558}
559
560static int ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
561 struct drm_file *file_priv)
562{
563 struct drm_omap_gem_cpu_prep *args = data;
564 struct drm_gem_object *obj;
565 int ret;
566
567 VERB("%p:%p: handle=%d, op=%x", dev, file_priv, args->handle, args->op);
568
569 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
c7f904b3 570 if (!obj)
cd5351f4 571 return -ENOENT;
cd5351f4
RC
572
573 ret = omap_gem_op_sync(obj, args->op);
574
c7f904b3 575 if (!ret)
cd5351f4 576 ret = omap_gem_op_start(obj, args->op);
cd5351f4
RC
577
578 drm_gem_object_unreference_unlocked(obj);
579
580 return ret;
581}
582
583static int ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
584 struct drm_file *file_priv)
585{
586 struct drm_omap_gem_cpu_fini *args = data;
587 struct drm_gem_object *obj;
588 int ret;
589
590 VERB("%p:%p: handle=%d", dev, file_priv, args->handle);
591
592 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
c7f904b3 593 if (!obj)
cd5351f4 594 return -ENOENT;
cd5351f4
RC
595
596 /* XXX flushy, flushy */
597 ret = 0;
598
c7f904b3 599 if (!ret)
cd5351f4 600 ret = omap_gem_op_finish(obj, args->op);
cd5351f4
RC
601
602 drm_gem_object_unreference_unlocked(obj);
603
604 return ret;
605}
606
607static int ioctl_gem_info(struct drm_device *dev, void *data,
608 struct drm_file *file_priv)
609{
610 struct drm_omap_gem_info *args = data;
611 struct drm_gem_object *obj;
612 int ret = 0;
613
f5f9454c 614 VERB("%p:%p: handle=%d", dev, file_priv, args->handle);
cd5351f4
RC
615
616 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
c7f904b3 617 if (!obj)
cd5351f4 618 return -ENOENT;
cd5351f4 619
f7f9f453 620 args->size = omap_gem_mmap_size(obj);
cd5351f4
RC
621 args->offset = omap_gem_mmap_offset(obj);
622
623 drm_gem_object_unreference_unlocked(obj);
624
625 return ret;
626}
627
baa70943 628static const struct drm_ioctl_desc ioctls[DRM_COMMAND_END - DRM_COMMAND_BASE] = {
cd5351f4
RC
629 DRM_IOCTL_DEF_DRV(OMAP_GET_PARAM, ioctl_get_param, DRM_UNLOCKED|DRM_AUTH),
630 DRM_IOCTL_DEF_DRV(OMAP_SET_PARAM, ioctl_set_param, DRM_UNLOCKED|DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
631 DRM_IOCTL_DEF_DRV(OMAP_GEM_NEW, ioctl_gem_new, DRM_UNLOCKED|DRM_AUTH),
632 DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_PREP, ioctl_gem_cpu_prep, DRM_UNLOCKED|DRM_AUTH),
633 DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_FINI, ioctl_gem_cpu_fini, DRM_UNLOCKED|DRM_AUTH),
634 DRM_IOCTL_DEF_DRV(OMAP_GEM_INFO, ioctl_gem_info, DRM_UNLOCKED|DRM_AUTH),
635};
636
637/*
638 * drm driver funcs
639 */
640
641/**
642 * load - setup chip and create an initial config
643 * @dev: DRM device
644 * @flags: startup flags
645 *
646 * The driver load routine has to do several things:
647 * - initialize the memory manager
648 * - allocate initial config memory
649 * - setup the DRM framebuffer with the allocated memory
650 */
651static int dev_load(struct drm_device *dev, unsigned long flags)
652{
5e3b0874 653 struct omap_drm_platform_data *pdata = dev->dev->platform_data;
cd5351f4 654 struct omap_drm_private *priv;
c397cfd4 655 unsigned int i;
cd5351f4
RC
656 int ret;
657
658 DBG("load: dev=%p", dev);
659
cd5351f4 660 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
78110bb8 661 if (!priv)
cd5351f4 662 return -ENOMEM;
cd5351f4 663
5e3b0874
RC
664 priv->omaprev = pdata->omaprev;
665
cd5351f4
RC
666 dev->dev_private = priv;
667
4619cdbc 668 priv->wq = alloc_ordered_workqueue("omapdrm", 0);
748471a5
LP
669 init_waitqueue_head(&priv->commit.wait);
670 spin_lock_init(&priv->commit.lock);
1cfe19aa 671 INIT_LIST_HEAD(&priv->commit.events);
5609f7fe 672
76c4055f 673 spin_lock_init(&priv->list_lock);
f6b6036e
RC
674 INIT_LIST_HEAD(&priv->obj_list);
675
f7f9f453
RC
676 omap_gem_init(dev);
677
cd5351f4
RC
678 ret = omap_modeset_init(dev);
679 if (ret) {
680 dev_err(dev->dev, "omap_modeset_init failed: ret=%d\n", ret);
681 dev->dev_private = NULL;
682 kfree(priv);
683 return ret;
684 }
685
c397cfd4 686 /* Initialize vblank handling, start with all CRTCs disabled. */
f5f9454c
RC
687 ret = drm_vblank_init(dev, priv->num_crtcs);
688 if (ret)
689 dev_warn(dev->dev, "could not init vblank\n");
690
c397cfd4
LP
691 for (i = 0; i < priv->num_crtcs; i++)
692 drm_crtc_vblank_off(priv->crtcs[i]);
693
cd5351f4
RC
694 priv->fbdev = omap_fbdev_init(dev);
695 if (!priv->fbdev) {
696 dev_warn(dev->dev, "omap_fbdev_init failed\n");
697 /* well, limp along without an fbdev.. maybe X11 will work? */
698 }
699
e78edba1
AG
700 /* store off drm_device for use in pm ops */
701 dev_set_drvdata(dev->dev, dev);
702
cd5351f4
RC
703 drm_kms_helper_poll_init(dev);
704
cd5351f4
RC
705 return 0;
706}
707
708static int dev_unload(struct drm_device *dev)
709{
5609f7fe
RC
710 struct omap_drm_private *priv = dev->dev_private;
711
cd5351f4
RC
712 DBG("unload: dev=%p", dev);
713
cd5351f4
RC
714 drm_kms_helper_poll_fini(dev);
715
c7c1aecd
TV
716 if (priv->fbdev)
717 omap_fbdev_free(dev);
e2f8fd74 718
cd5351f4 719 omap_modeset_free(dev);
f7f9f453 720 omap_gem_deinit(dev);
cd5351f4 721
5609f7fe
RC
722 destroy_workqueue(priv->wq);
723
80e4ed54
AT
724 drm_vblank_cleanup(dev);
725 omap_drm_irq_uninstall(dev);
726
cd5351f4
RC
727 kfree(dev->dev_private);
728 dev->dev_private = NULL;
729
e78edba1
AG
730 dev_set_drvdata(dev->dev, NULL);
731
cd5351f4
RC
732 return 0;
733}
734
735static int dev_open(struct drm_device *dev, struct drm_file *file)
736{
737 file->driver_priv = NULL;
738
739 DBG("open: dev=%p, file=%p", dev, file);
740
741 return 0;
742}
743
cd5351f4
RC
744/**
745 * lastclose - clean up after all DRM clients have exited
746 * @dev: DRM device
747 *
748 * Take care of cleaning up after all DRM clients have exited. In the
749 * mode setting case, we want to restore the kernel's initial mode (just
750 * in case the last client left us in a bad state).
751 */
752static void dev_lastclose(struct drm_device *dev)
753{
3c810c61
RC
754 int i;
755
cd5351f4
RC
756 /* we don't support vga-switcheroo.. so just make sure the fbdev
757 * mode is active
758 */
759 struct omap_drm_private *priv = dev->dev_private;
760 int ret;
761
762 DBG("lastclose: dev=%p", dev);
763
e2cd09b2 764 if (dev->mode_config.rotation_property) {
c2a6a552
RC
765 /* need to restore default rotation state.. not sure
766 * if there is a cleaner way to restore properties to
767 * default state? Maybe a flag that properties should
768 * automatically be restored to default state on
769 * lastclose?
770 */
771 for (i = 0; i < priv->num_crtcs; i++) {
772 drm_object_property_set_value(&priv->crtcs[i]->base,
e2cd09b2 773 dev->mode_config.rotation_property, 0);
c2a6a552 774 }
3c810c61 775
c2a6a552
RC
776 for (i = 0; i < priv->num_planes; i++) {
777 drm_object_property_set_value(&priv->planes[i]->base,
e2cd09b2 778 dev->mode_config.rotation_property, 0);
c2a6a552 779 }
3c810c61
RC
780 }
781
c7c1aecd
TV
782 if (priv->fbdev) {
783 ret = drm_fb_helper_restore_fbdev_mode_unlocked(priv->fbdev);
784 if (ret)
785 DBG("failed to restore crtc mode");
786 }
cd5351f4
RC
787}
788
789static void dev_preclose(struct drm_device *dev, struct drm_file *file)
790{
1d5e5ea1 791 struct omap_drm_private *priv = dev->dev_private;
1cfe19aa
LP
792 struct drm_pending_event *event;
793 unsigned long flags;
1d5e5ea1 794
cd5351f4 795 DBG("preclose: dev=%p", dev);
1d5e5ea1 796
1cfe19aa
LP
797 /*
798 * Unlink all pending CRTC events to make sure they won't be queued up
799 * by a pending asynchronous commit.
800 */
801 spin_lock_irqsave(&dev->event_lock, flags);
802 list_for_each_entry(event, &priv->commit.events, link) {
803 if (event->file_priv == file) {
804 file->event_space += event->event->length;
805 event->file_priv = NULL;
806 }
807 }
808 spin_unlock_irqrestore(&dev->event_lock, flags);
cd5351f4
RC
809}
810
811static void dev_postclose(struct drm_device *dev, struct drm_file *file)
812{
813 DBG("postclose: dev=%p, file=%p", dev, file);
814}
815
78b68556 816static const struct vm_operations_struct omap_gem_vm_ops = {
cd5351f4
RC
817 .fault = omap_gem_fault,
818 .open = drm_gem_vm_open,
819 .close = drm_gem_vm_close,
820};
821
ff4f3876 822static const struct file_operations omapdriver_fops = {
222025e4
LP
823 .owner = THIS_MODULE,
824 .open = drm_open,
825 .unlocked_ioctl = drm_ioctl,
826 .release = drm_release,
827 .mmap = omap_gem_mmap,
828 .poll = drm_poll,
829 .read = drm_read,
830 .llseek = noop_llseek,
ff4f3876
RC
831};
832
cd5351f4 833static struct drm_driver omap_drm_driver = {
f13ab005 834 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
222025e4
LP
835 .load = dev_load,
836 .unload = dev_unload,
837 .open = dev_open,
838 .lastclose = dev_lastclose,
839 .preclose = dev_preclose,
840 .postclose = dev_postclose,
841 .set_busid = drm_platform_set_busid,
842 .get_vblank_counter = drm_vblank_count,
843 .enable_vblank = omap_irq_enable_vblank,
844 .disable_vblank = omap_irq_disable_vblank,
6169a148 845#ifdef CONFIG_DEBUG_FS
222025e4
LP
846 .debugfs_init = omap_debugfs_init,
847 .debugfs_cleanup = omap_debugfs_cleanup,
6169a148 848#endif
222025e4
LP
849 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
850 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
851 .gem_prime_export = omap_gem_prime_export,
852 .gem_prime_import = omap_gem_prime_import,
853 .gem_free_object = omap_gem_free_object,
854 .gem_vm_ops = &omap_gem_vm_ops,
855 .dumb_create = omap_gem_dumb_create,
856 .dumb_map_offset = omap_gem_dumb_map_offset,
857 .dumb_destroy = drm_gem_dumb_destroy,
858 .ioctls = ioctls,
859 .num_ioctls = DRM_OMAP_NUM_IOCTLS,
860 .fops = &omapdriver_fops,
861 .name = DRIVER_NAME,
862 .desc = DRIVER_DESC,
863 .date = DRIVER_DATE,
864 .major = DRIVER_MAJOR,
865 .minor = DRIVER_MINOR,
866 .patchlevel = DRIVER_PATCHLEVEL,
cd5351f4
RC
867};
868
cd5351f4
RC
869static int pdev_probe(struct platform_device *device)
870{
3a01ab25
AT
871 int r;
872
591a0ac7
TV
873 if (omapdss_is_initialized() == false)
874 return -EPROBE_DEFER;
875
3a01ab25
AT
876 omap_crtc_pre_init();
877
878 r = omap_connect_dssdevs();
879 if (r) {
880 omap_crtc_pre_uninit();
881 return r;
882 }
883
cd5351f4
RC
884 DBG("%s", device->name);
885 return drm_platform_init(&omap_drm_driver, device);
886}
887
888static int pdev_remove(struct platform_device *device)
889{
890 DBG("");
5c137797 891
707cf58a
TV
892 drm_put_dev(platform_get_drvdata(device));
893
cc823bdc
AT
894 omap_disconnect_dssdevs();
895 omap_crtc_pre_uninit();
fd3c0253 896
cd5351f4
RC
897 return 0;
898}
899
8450c8d0 900#ifdef CONFIG_PM_SLEEP
ccd7b5ed
TV
901static int omap_drm_suspend(struct device *dev)
902{
903 struct drm_device *drm_dev = dev_get_drvdata(dev);
904
905 drm_kms_helper_poll_disable(drm_dev);
906
907 return 0;
908}
909
910static int omap_drm_resume(struct device *dev)
911{
912 struct drm_device *drm_dev = dev_get_drvdata(dev);
913
914 drm_kms_helper_poll_enable(drm_dev);
915
916 return omap_gem_resume(dev);
917}
e78edba1
AG
918#endif
919
8450c8d0
GS
920static SIMPLE_DEV_PM_OPS(omapdrm_pm_ops, omap_drm_suspend, omap_drm_resume);
921
6717cd29 922static struct platform_driver pdev = {
222025e4
LP
923 .driver = {
924 .name = DRIVER_NAME,
222025e4 925 .pm = &omapdrm_pm_ops,
222025e4
LP
926 },
927 .probe = pdev_probe,
928 .remove = pdev_remove,
cd5351f4
RC
929};
930
931static int __init omap_drm_init(void)
932{
ea7e3a66
TV
933 int r;
934
cd5351f4 935 DBG("init");
ea7e3a66
TV
936
937 r = platform_driver_register(&omap_dmm_driver);
938 if (r) {
939 pr_err("DMM driver registration failed\n");
940 return r;
be0775ac 941 }
ea7e3a66
TV
942
943 r = platform_driver_register(&pdev);
944 if (r) {
945 pr_err("omapdrm driver registration failed\n");
946 platform_driver_unregister(&omap_dmm_driver);
947 return r;
948 }
949
950 return 0;
cd5351f4
RC
951}
952
953static void __exit omap_drm_fini(void)
954{
955 DBG("fini");
ea7e3a66 956
cd5351f4 957 platform_driver_unregister(&pdev);
ea7e3a66
TV
958
959 platform_driver_unregister(&omap_dmm_driver);
cd5351f4
RC
960}
961
962/* need late_initcall() so we load after dss_driver's are loaded */
963late_initcall(omap_drm_init);
964module_exit(omap_drm_fini);
965
966MODULE_AUTHOR("Rob Clark <rob@ti.com>");
967MODULE_DESCRIPTION("OMAP DRM Display Driver");
968MODULE_ALIAS("platform:" DRIVER_NAME);
969MODULE_LICENSE("GPL v2");
This page took 0.311094 seconds and 5 git commands to generate.