omap_drv.c 18.2 KB
Newer Older
1
/*
R
Rob Clark 已提交
2
 * drivers/gpu/drm/omapdrm/omap_drv.c
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * Copyright (C) 2011 Texas Instruments
 * Author: Rob Clark <rob@ti.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "omap_drv.h"

#include "drm_crtc_helper.h"
#include "drm_fb_helper.h"
24
#include "omap_dmm_tiler.h"
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

#define DRIVER_NAME		MODULE_NAME
#define DRIVER_DESC		"OMAP DRM"
#define DRIVER_DATE		"20110917"
#define DRIVER_MAJOR		1
#define DRIVER_MINOR		0
#define DRIVER_PATCHLEVEL	0

static int num_crtc = CONFIG_DRM_OMAP_NUM_CRTCS;

MODULE_PARM_DESC(num_crtc, "Number of overlays to use as CRTCs");
module_param(num_crtc, int, 0600);

/*
 * mode config funcs
 */

/* Notes about mapping DSS and DRM entities:
 *    CRTC:        overlay
 *    encoder:     manager.. with some extension to allow one primary CRTC
 *                 and zero or more video CRTC's to be mapped to one encoder?
 *    connector:   dssdev.. manager can be attached/detached from different
 *                 devices
 */

static void omap_fb_output_poll_changed(struct drm_device *dev)
{
	struct omap_drm_private *priv = dev->dev_private;
	DBG("dev=%p", dev);
54
	if (priv->fbdev)
55 56 57
		drm_fb_helper_hotplug_event(priv->fbdev);
}

58
static const struct drm_mode_config_funcs omap_mode_config_funcs = {
59 60 61 62 63 64 65 66 67
	.fb_create = omap_framebuffer_create,
	.output_poll_changed = omap_fb_output_poll_changed,
};

static int get_connector_type(struct omap_dss_device *dssdev)
{
	switch (dssdev->type) {
	case OMAP_DISPLAY_TYPE_HDMI:
		return DRM_MODE_CONNECTOR_HDMIA;
T
Tomi Valkeinen 已提交
68 69
	case OMAP_DISPLAY_TYPE_DVI:
		return DRM_MODE_CONNECTOR_DVID;
70 71 72 73 74
	default:
		return DRM_MODE_CONNECTOR_Unknown;
	}
}

75 76 77 78 79 80 81 82 83 84 85 86 87 88
static bool channel_used(struct drm_device *dev, enum omap_channel channel)
{
	struct omap_drm_private *priv = dev->dev_private;
	int i;

	for (i = 0; i < priv->num_crtcs; i++) {
		struct drm_crtc *crtc = priv->crtcs[i];

		if (omap_crtc_channel(crtc) == channel)
			return true;
	}

	return false;
}
89 90 91 92 93 94 95
static void omap_disconnect_dssdevs(void)
{
	struct omap_dss_device *dssdev = NULL;

	for_each_dss_dev(dssdev)
		dssdev->driver->disconnect(dssdev);
}
96

97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
static int omap_connect_dssdevs(void)
{
	int r;
	struct omap_dss_device *dssdev = NULL;
	bool no_displays = true;

	for_each_dss_dev(dssdev) {
		r = dssdev->driver->connect(dssdev);
		if (r == -EPROBE_DEFER) {
			omap_dss_put_device(dssdev);
			goto cleanup;
		} else if (r) {
			dev_warn(dssdev->dev, "could not connect display: %s\n",
				dssdev->name);
		} else {
			no_displays = false;
		}
	}

	if (no_displays)
		return -EPROBE_DEFER;

	return 0;

cleanup:
	/*
	 * if we are deferring probe, we disconnect the devices we previously
	 * connected
	 */
126
	omap_disconnect_dssdevs();
127 128 129

	return r;
}
130

131 132 133 134 135 136 137
static int omap_modeset_create_crtc(struct drm_device *dev, int id,
				    enum omap_channel channel)
{
	struct omap_drm_private *priv = dev->dev_private;
	struct drm_plane *plane;
	struct drm_crtc *crtc;

138
	plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_PRIMARY);
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
	if (IS_ERR(plane))
		return PTR_ERR(plane);

	crtc = omap_crtc_init(dev, plane, channel, id);

	BUG_ON(priv->num_crtcs >= ARRAY_SIZE(priv->crtcs));
	priv->crtcs[id] = crtc;
	priv->num_crtcs++;

	priv->planes[id] = plane;
	priv->num_planes++;

	return 0;
}

154
static int omap_modeset_init(struct drm_device *dev)
155 156
{
	struct omap_drm_private *priv = dev->dev_private;
157 158
	struct omap_dss_device *dssdev = NULL;
	int num_ovls = dss_feat_get_num_ovls();
159 160 161
	int num_mgrs = dss_feat_get_num_mgrs();
	int num_crtcs;
	int i, id = 0;
162
	int ret;
163

164
	drm_mode_config_init(dev);
165

166
	omap_drm_irq_install(dev);
167

168
	/*
169 170 171 172
	 * We usually don't want to create a CRTC for each manager, at least
	 * not until we have a way to expose private planes to userspace.
	 * Otherwise there would not be enough video pipes left for drm planes.
	 * We use the num_crtc argument to limit the number of crtcs we create.
173
	 */
174
	num_crtcs = min3(num_crtc, num_mgrs, num_ovls);
175

176
	dssdev = NULL;
177

178 179 180
	for_each_dss_dev(dssdev) {
		struct drm_connector *connector;
		struct drm_encoder *encoder;
181
		enum omap_channel channel;
182
		struct omap_overlay_manager *mgr;
183

184
		if (!omapdss_device_is_connected(dssdev))
185
			continue;
186

187
		encoder = omap_encoder_init(dev, dssdev);
188

189 190 191 192
		if (!encoder) {
			dev_err(dev->dev, "could not create encoder: %s\n",
					dssdev->name);
			return -ENOMEM;
193 194
		}

195 196
		connector = omap_connector_init(dev,
				get_connector_type(dssdev), dssdev, encoder);
197

198 199 200 201
		if (!connector) {
			dev_err(dev->dev, "could not create connector: %s\n",
					dssdev->name);
			return -ENOMEM;
202
		}
203

204 205
		BUG_ON(priv->num_encoders >= ARRAY_SIZE(priv->encoders));
		BUG_ON(priv->num_connectors >= ARRAY_SIZE(priv->connectors));
206

207 208
		priv->encoders[priv->num_encoders++] = encoder;
		priv->connectors[priv->num_connectors++] = connector;
209

210
		drm_mode_connector_attach_encoder(connector, encoder);
211

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
		/*
		 * if we have reached the limit of the crtcs we are allowed to
		 * create, let's not try to look for a crtc for this
		 * panel/encoder and onwards, we will, of course, populate the
		 * the possible_crtcs field for all the encoders with the final
		 * set of crtcs we create
		 */
		if (id == num_crtcs)
			continue;

		/*
		 * get the recommended DISPC channel for this encoder. For now,
		 * we only try to get create a crtc out of the recommended, the
		 * other possible channels to which the encoder can connect are
		 * not considered.
		 */

229 230
		mgr = omapdss_find_mgr_from_display(dssdev);
		channel = mgr->id;
231 232 233 234 235
		/*
		 * if this channel hasn't already been taken by a previously
		 * allocated crtc, we create a new crtc for it
		 */
		if (!channel_used(dev, channel)) {
236 237 238 239 240 241 242
			ret = omap_modeset_create_crtc(dev, id, channel);
			if (ret < 0) {
				dev_err(dev->dev,
					"could not create CRTC (channel %u)\n",
					channel);
				return ret;
			}
243 244 245 246 247 248 249 250 251 252 253 254 255

			id++;
		}
	}

	/*
	 * we have allocated crtcs according to the need of the panels/encoders,
	 * adding more crtcs here if needed
	 */
	for (; id < num_crtcs; id++) {

		/* find a free manager for this crtc */
		for (i = 0; i < num_mgrs; i++) {
256
			if (!channel_used(dev, i))
257 258 259 260 261 262 263 264
				break;
		}

		if (i == num_mgrs) {
			/* this shouldn't really happen */
			dev_err(dev->dev, "no managers left for crtc\n");
			return -ENOMEM;
		}
265 266 267 268 269 270 271

		ret = omap_modeset_create_crtc(dev, id, i);
		if (ret < 0) {
			dev_err(dev->dev,
				"could not create CRTC (channel %u)\n", i);
			return ret;
		}
272 273 274 275 276 277
	}

	/*
	 * Create normal planes for the remaining overlays:
	 */
	for (; id < num_ovls; id++) {
278 279
		struct drm_plane *plane;

280
		plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_OVERLAY);
281 282
		if (IS_ERR(plane))
			return PTR_ERR(plane);
283 284 285 286 287 288 289 290 291

		BUG_ON(priv->num_planes >= ARRAY_SIZE(priv->planes));
		priv->planes[priv->num_planes++] = plane;
	}

	for (i = 0; i < priv->num_encoders; i++) {
		struct drm_encoder *encoder = priv->encoders[i];
		struct omap_dss_device *dssdev =
					omap_encoder_get_dssdev(encoder);
292
		struct omap_dss_device *output;
293 294

		output = omapdss_find_output_from_display(dssdev);
295

296 297 298
		/* figure out which crtc's we can connect the encoder to: */
		encoder->possible_crtcs = 0;
		for (id = 0; id < priv->num_crtcs; id++) {
299 300 301 302 303
			struct drm_crtc *crtc = priv->crtcs[id];
			enum omap_channel crtc_channel;

			crtc_channel = omap_crtc_channel(crtc);

304
			if (output->dispc_channel == crtc_channel) {
305
				encoder->possible_crtcs |= (1 << id);
306 307
				break;
			}
308
		}
309 310

		omap_dss_put_device(output);
311 312
	}

313 314 315 316
	DBG("registered %d planes, %d crtcs, %d encoders and %d connectors\n",
		priv->num_planes, priv->num_crtcs, priv->num_encoders,
		priv->num_connectors);

317 318
	dev->mode_config.min_width = 32;
	dev->mode_config.min_height = 32;
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343

	/* note: eventually will need some cpu_is_omapXYZ() type stuff here
	 * to fill in these limits properly on different OMAP generations..
	 */
	dev->mode_config.max_width = 2048;
	dev->mode_config.max_height = 2048;

	dev->mode_config.funcs = &omap_mode_config_funcs;

	return 0;
}

static void omap_modeset_free(struct drm_device *dev)
{
	drm_mode_config_cleanup(dev);
}

/*
 * drm ioctl funcs
 */


static int ioctl_get_param(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
{
344
	struct omap_drm_private *priv = dev->dev_private;
345 346 347 348 349 350
	struct drm_omap_param *args = data;

	DBG("%p: param=%llu", dev, args->param);

	switch (args->param) {
	case OMAP_PARAM_CHIPSET_ID:
351
		args->value = priv->omaprev;
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
		break;
	default:
		DBG("unknown parameter %lld", args->param);
		return -EINVAL;
	}

	return 0;
}

static int ioctl_set_param(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
{
	struct drm_omap_param *args = data;

	switch (args->param) {
	default:
		DBG("unknown parameter %lld", args->param);
		return -EINVAL;
	}

	return 0;
}

static int ioctl_gem_new(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
{
	struct drm_omap_gem_new *args = data;
379
	VERB("%p:%p: size=0x%08x, flags=%08x", dev, file_priv,
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
			args->size.bytes, args->flags);
	return omap_gem_new_handle(dev, file_priv, args->size,
			args->flags, &args->handle);
}

static int ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
{
	struct drm_omap_gem_cpu_prep *args = data;
	struct drm_gem_object *obj;
	int ret;

	VERB("%p:%p: handle=%d, op=%x", dev, file_priv, args->handle, args->op);

	obj = drm_gem_object_lookup(dev, file_priv, args->handle);
395
	if (!obj)
396 397 398 399
		return -ENOENT;

	ret = omap_gem_op_sync(obj, args->op);

400
	if (!ret)
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
		ret = omap_gem_op_start(obj, args->op);

	drm_gem_object_unreference_unlocked(obj);

	return ret;
}

static int ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
{
	struct drm_omap_gem_cpu_fini *args = data;
	struct drm_gem_object *obj;
	int ret;

	VERB("%p:%p: handle=%d", dev, file_priv, args->handle);

	obj = drm_gem_object_lookup(dev, file_priv, args->handle);
418
	if (!obj)
419 420 421 422 423
		return -ENOENT;

	/* XXX flushy, flushy */
	ret = 0;

424
	if (!ret)
425 426 427 428 429 430 431 432 433 434 435 436 437 438
		ret = omap_gem_op_finish(obj, args->op);

	drm_gem_object_unreference_unlocked(obj);

	return ret;
}

static int ioctl_gem_info(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
{
	struct drm_omap_gem_info *args = data;
	struct drm_gem_object *obj;
	int ret = 0;

439
	VERB("%p:%p: handle=%d", dev, file_priv, args->handle);
440 441

	obj = drm_gem_object_lookup(dev, file_priv, args->handle);
442
	if (!obj)
443 444
		return -ENOENT;

445
	args->size = omap_gem_mmap_size(obj);
446 447 448 449 450 451 452
	args->offset = omap_gem_mmap_offset(obj);

	drm_gem_object_unreference_unlocked(obj);

	return ret;
}

R
Rob Clark 已提交
453
static const struct drm_ioctl_desc ioctls[DRM_COMMAND_END - DRM_COMMAND_BASE] = {
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
	DRM_IOCTL_DEF_DRV(OMAP_GET_PARAM, ioctl_get_param, DRM_UNLOCKED|DRM_AUTH),
	DRM_IOCTL_DEF_DRV(OMAP_SET_PARAM, ioctl_set_param, DRM_UNLOCKED|DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF_DRV(OMAP_GEM_NEW, ioctl_gem_new, DRM_UNLOCKED|DRM_AUTH),
	DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_PREP, ioctl_gem_cpu_prep, DRM_UNLOCKED|DRM_AUTH),
	DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_FINI, ioctl_gem_cpu_fini, DRM_UNLOCKED|DRM_AUTH),
	DRM_IOCTL_DEF_DRV(OMAP_GEM_INFO, ioctl_gem_info, DRM_UNLOCKED|DRM_AUTH),
};

/*
 * drm driver funcs
 */

/**
 * load - setup chip and create an initial config
 * @dev: DRM device
 * @flags: startup flags
 *
 * The driver load routine has to do several things:
 *   - initialize the memory manager
 *   - allocate initial config memory
 *   - setup the DRM framebuffer with the allocated memory
 */
static int dev_load(struct drm_device *dev, unsigned long flags)
{
478
	struct omap_drm_platform_data *pdata = dev->dev->platform_data;
479 480 481 482 483 484
	struct omap_drm_private *priv;
	int ret;

	DBG("load: dev=%p", dev);

	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
485
	if (!priv)
486 487
		return -ENOMEM;

488 489
	priv->omaprev = pdata->omaprev;

490 491
	dev->dev_private = priv;

492
	priv->wq = alloc_ordered_workqueue("omapdrm", 0);
R
Rob Clark 已提交
493

494
	spin_lock_init(&priv->list_lock);
495 496
	INIT_LIST_HEAD(&priv->obj_list);

497 498
	omap_gem_init(dev);

499 500 501 502 503 504 505 506
	ret = omap_modeset_init(dev);
	if (ret) {
		dev_err(dev->dev, "omap_modeset_init failed: ret=%d\n", ret);
		dev->dev_private = NULL;
		kfree(priv);
		return ret;
	}

507 508 509 510
	ret = drm_vblank_init(dev, priv->num_crtcs);
	if (ret)
		dev_warn(dev->dev, "could not init vblank\n");

511 512 513 514 515 516
	priv->fbdev = omap_fbdev_init(dev);
	if (!priv->fbdev) {
		dev_warn(dev->dev, "omap_fbdev_init failed\n");
		/* well, limp along without an fbdev.. maybe X11 will work? */
	}

A
Andy Gross 已提交
517 518 519
	/* store off drm_device for use in pm ops */
	dev_set_drvdata(dev->dev, dev);

520 521 522 523 524 525 526
	drm_kms_helper_poll_init(dev);

	return 0;
}

static int dev_unload(struct drm_device *dev)
{
R
Rob Clark 已提交
527
	struct omap_drm_private *priv = dev->dev_private;
528
	int i;
R
Rob Clark 已提交
529

530 531 532 533
	DBG("unload: dev=%p", dev);

	drm_kms_helper_poll_fini(dev);

534 535
	if (priv->fbdev)
		omap_fbdev_free(dev);
536 537 538 539 540

	/* flush crtcs so the fbs get released */
	for (i = 0; i < priv->num_crtcs; i++)
		omap_crtc_flush(priv->crtcs[i]);

541
	omap_modeset_free(dev);
542
	omap_gem_deinit(dev);
543

R
Rob Clark 已提交
544 545
	destroy_workqueue(priv->wq);

546 547 548
	drm_vblank_cleanup(dev);
	omap_drm_irq_uninstall(dev);

549 550 551
	kfree(dev->dev_private);
	dev->dev_private = NULL;

A
Andy Gross 已提交
552 553
	dev_set_drvdata(dev->dev, NULL);

554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
	return 0;
}

static int dev_open(struct drm_device *dev, struct drm_file *file)
{
	file->driver_priv = NULL;

	DBG("open: dev=%p, file=%p", dev, file);

	return 0;
}

/**
 * lastclose - clean up after all DRM clients have exited
 * @dev: DRM device
 *
 * Take care of cleaning up after all DRM clients have exited.  In the
 * mode setting case, we want to restore the kernel's initial mode (just
 * in case the last client left us in a bad state).
 */
static void dev_lastclose(struct drm_device *dev)
{
576 577
	int i;

578 579 580 581 582 583 584 585
	/* we don't support vga-switcheroo.. so just make sure the fbdev
	 * mode is active
	 */
	struct omap_drm_private *priv = dev->dev_private;
	int ret;

	DBG("lastclose: dev=%p", dev);

586 587 588 589 590 591 592 593 594 595 596
	if (priv->rotation_prop) {
		/* need to restore default rotation state.. not sure
		 * if there is a cleaner way to restore properties to
		 * default state?  Maybe a flag that properties should
		 * automatically be restored to default state on
		 * lastclose?
		 */
		for (i = 0; i < priv->num_crtcs; i++) {
			drm_object_property_set_value(&priv->crtcs[i]->base,
					priv->rotation_prop, 0);
		}
597

598 599 600 601
		for (i = 0; i < priv->num_planes; i++) {
			drm_object_property_set_value(&priv->planes[i]->base,
					priv->rotation_prop, 0);
		}
602 603
	}

604 605 606 607 608
	if (priv->fbdev) {
		ret = drm_fb_helper_restore_fbdev_mode_unlocked(priv->fbdev);
		if (ret)
			DBG("failed to restore crtc mode");
	}
609 610 611 612 613 614 615 616 617 618 619 620
}

static void dev_preclose(struct drm_device *dev, struct drm_file *file)
{
	DBG("preclose: dev=%p", dev);
}

static void dev_postclose(struct drm_device *dev, struct drm_file *file)
{
	DBG("postclose: dev=%p, file=%p", dev, file);
}

621
static const struct vm_operations_struct omap_gem_vm_ops = {
622 623 624 625 626
	.fault = omap_gem_fault,
	.open = drm_gem_vm_open,
	.close = drm_gem_vm_close,
};

627
static const struct file_operations omapdriver_fops = {
628 629 630 631 632 633 634 635
	.owner = THIS_MODULE,
	.open = drm_open,
	.unlocked_ioctl = drm_ioctl,
	.release = drm_release,
	.mmap = omap_gem_mmap,
	.poll = drm_poll,
	.read = drm_read,
	.llseek = noop_llseek,
636 637
};

638
static struct drm_driver omap_drm_driver = {
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
	.driver_features = DRIVER_HAVE_IRQ | DRIVER_MODESET | DRIVER_GEM
			 | DRIVER_PRIME,
	.load = dev_load,
	.unload = dev_unload,
	.open = dev_open,
	.lastclose = dev_lastclose,
	.preclose = dev_preclose,
	.postclose = dev_postclose,
	.set_busid = drm_platform_set_busid,
	.get_vblank_counter = drm_vblank_count,
	.enable_vblank = omap_irq_enable_vblank,
	.disable_vblank = omap_irq_disable_vblank,
	.irq_preinstall = omap_irq_preinstall,
	.irq_postinstall = omap_irq_postinstall,
	.irq_uninstall = omap_irq_uninstall,
	.irq_handler = omap_irq_handler,
655
#ifdef CONFIG_DEBUG_FS
656 657
	.debugfs_init = omap_debugfs_init,
	.debugfs_cleanup = omap_debugfs_cleanup,
658
#endif
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
	.gem_prime_export = omap_gem_prime_export,
	.gem_prime_import = omap_gem_prime_import,
	.gem_free_object = omap_gem_free_object,
	.gem_vm_ops = &omap_gem_vm_ops,
	.dumb_create = omap_gem_dumb_create,
	.dumb_map_offset = omap_gem_dumb_map_offset,
	.dumb_destroy = drm_gem_dumb_destroy,
	.ioctls = ioctls,
	.num_ioctls = DRM_OMAP_NUM_IOCTLS,
	.fops = &omapdriver_fops,
	.name = DRIVER_NAME,
	.desc = DRIVER_DESC,
	.date = DRIVER_DATE,
	.major = DRIVER_MAJOR,
	.minor = DRIVER_MINOR,
	.patchlevel = DRIVER_PATCHLEVEL,
677 678 679 680
};

static int pdev_probe(struct platform_device *device)
{
681 682
	int r;

T
Tomi Valkeinen 已提交
683 684 685
	if (omapdss_is_initialized() == false)
		return -EPROBE_DEFER;

686 687 688 689 690 691 692 693
	omap_crtc_pre_init();

	r = omap_connect_dssdevs();
	if (r) {
		omap_crtc_pre_uninit();
		return r;
	}

694 695 696 697 698 699 700
	DBG("%s", device->name);
	return drm_platform_init(&omap_drm_driver, device);
}

static int pdev_remove(struct platform_device *device)
{
	DBG("");
701

702 703
	drm_put_dev(platform_get_drvdata(device));

704 705
	omap_disconnect_dssdevs();
	omap_crtc_pre_uninit();
706

707 708 709
	return 0;
}

710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
static int omap_drm_suspend(struct device *dev)
{
	struct drm_device *drm_dev = dev_get_drvdata(dev);

	drm_kms_helper_poll_disable(drm_dev);

	return 0;
}

static int omap_drm_resume(struct device *dev)
{
	struct drm_device *drm_dev = dev_get_drvdata(dev);

	drm_kms_helper_poll_enable(drm_dev);

	return omap_gem_resume(dev);
}

A
Andy Gross 已提交
728 729
#ifdef CONFIG_PM
static const struct dev_pm_ops omapdrm_pm_ops = {
730 731
	.suspend = omap_drm_suspend,
	.resume = omap_drm_resume,
A
Andy Gross 已提交
732 733 734
};
#endif

735
static struct platform_driver pdev = {
736 737
	.driver = {
		.name = DRIVER_NAME,
A
Andy Gross 已提交
738
#ifdef CONFIG_PM
739
		.pm = &omapdrm_pm_ops,
A
Andy Gross 已提交
740
#endif
741 742 743
	},
	.probe = pdev_probe,
	.remove = pdev_remove,
744 745 746 747
};

static int __init omap_drm_init(void)
{
748 749
	int r;

750
	DBG("init");
751 752 753 754 755

	r = platform_driver_register(&omap_dmm_driver);
	if (r) {
		pr_err("DMM driver registration failed\n");
		return r;
756
	}
757 758 759 760 761 762 763 764 765

	r = platform_driver_register(&pdev);
	if (r) {
		pr_err("omapdrm driver registration failed\n");
		platform_driver_unregister(&omap_dmm_driver);
		return r;
	}

	return 0;
766 767 768 769 770
}

static void __exit omap_drm_fini(void)
{
	DBG("fini");
771

772
	platform_driver_unregister(&pdev);
773 774

	platform_driver_unregister(&omap_dmm_driver);
775 776 777 778 779 780 781 782 783 784
}

/* need late_initcall() so we load after dss_driver's are loaded */
late_initcall(omap_drm_init);
module_exit(omap_drm_fini);

MODULE_AUTHOR("Rob Clark <rob@ti.com>");
MODULE_DESCRIPTION("OMAP DRM Display Driver");
MODULE_ALIAS("platform:" DRIVER_NAME);
MODULE_LICENSE("GPL v2");