core.c 13.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*
 * linux/drivers/video/omap2/dss/core.c
 *
 * Copyright (C) 2009 Nokia Corporation
 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
 *
 * Some code and ideas taken from drivers/video/omap/ driver
 * by Imre Deak.
 *
 * 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/>.
 */

#define DSS_SUBSYS_NAME "CORE"

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <linux/seq_file.h>
#include <linux/debugfs.h>
#include <linux/io.h>
#include <linux/device.h>
34
#include <linux/regulator/consumer.h>
35
#include <linux/suspend.h>
36
#include <linux/slab.h>
37

38
#include <video/omapdss.h>
39 40

#include "dss.h"
41
#include "dss_features.h"
42 43 44

static struct {
	struct platform_device *pdev;
45 46 47

	struct regulator *vdds_dsi_reg;
	struct regulator *vdds_sdi_reg;
48 49

	const char *default_display_name;
50 51 52 53
} core;

static char *def_disp_name;
module_param_named(def_disp, def_disp_name, charp, 0);
54
MODULE_PARM_DESC(def_disp, "default display name");
55

T
Tomi Valkeinen 已提交
56 57
static bool dss_initialized;

58
const char *omapdss_get_default_display_name(void)
59 60 61
{
	return core.default_display_name;
}
62
EXPORT_SYMBOL(omapdss_get_default_display_name);
63

64 65 66 67 68 69 70
enum omapdss_version omapdss_get_version(void)
{
	struct omap_dss_board_info *pdata = core.pdev->dev.platform_data;
	return pdata->version;
}
EXPORT_SYMBOL(omapdss_get_version);

T
Tomi Valkeinen 已提交
71 72 73 74 75 76
bool omapdss_is_initialized(void)
{
	return dss_initialized;
}
EXPORT_SYMBOL(omapdss_is_initialized);

T
Tomi Valkeinen 已提交
77 78 79 80 81
struct platform_device *dss_get_core_pdev(void)
{
	return core.pdev;
}

82 83 84 85 86 87 88 89 90
/* REGULATORS */

struct regulator *dss_get_vdds_dsi(void)
{
	struct regulator *reg;

	if (core.vdds_dsi_reg != NULL)
		return core.vdds_dsi_reg;

91
	reg = devm_regulator_get(&core.pdev->dev, "vdds_dsi");
92 93 94 95 96 97 98 99 100 101 102 103 104
	if (!IS_ERR(reg))
		core.vdds_dsi_reg = reg;

	return reg;
}

struct regulator *dss_get_vdds_sdi(void)
{
	struct regulator *reg;

	if (core.vdds_sdi_reg != NULL)
		return core.vdds_sdi_reg;

105
	reg = devm_regulator_get(&core.pdev->dev, "vdds_sdi");
106 107 108 109 110 111
	if (!IS_ERR(reg))
		core.vdds_sdi_reg = reg;

	return reg;
}

112 113 114 115 116 117 118 119 120 121 122 123 124 125
int dss_dsi_enable_pads(int dsi_id, unsigned lane_mask)
{
	struct omap_dss_board_info *board_data = core.pdev->dev.platform_data;

	if (!board_data->dsi_enable_pads)
		return -ENOENT;

	return board_data->dsi_enable_pads(dsi_id, lane_mask);
}

void dss_dsi_disable_pads(int dsi_id, unsigned lane_mask)
{
	struct omap_dss_board_info *board_data = core.pdev->dev.platform_data;

126
	if (!board_data->dsi_disable_pads)
127 128 129 130 131
		return;

	return board_data->dsi_disable_pads(dsi_id, lane_mask);
}

132 133 134 135 136 137 138 139 140 141
int dss_set_min_bus_tput(struct device *dev, unsigned long tput)
{
	struct omap_dss_board_info *pdata = core.pdev->dev.platform_data;

	if (pdata->set_min_bus_tput)
		return pdata->set_min_bus_tput(dev, tput);
	else
		return 0;
}

142
#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
static int dss_debug_show(struct seq_file *s, void *unused)
{
	void (*func)(struct seq_file *) = s->private;
	func(s);
	return 0;
}

static int dss_debug_open(struct inode *inode, struct file *file)
{
	return single_open(file, dss_debug_show, inode->i_private);
}

static const struct file_operations dss_debug_fops = {
	.open           = dss_debug_open,
	.read           = seq_read,
	.llseek         = seq_lseek,
	.release        = single_release,
};

static struct dentry *dss_debugfs_dir;

static int dss_initialize_debugfs(void)
{
	dss_debugfs_dir = debugfs_create_dir("omapdss", NULL);
	if (IS_ERR(dss_debugfs_dir)) {
		int err = PTR_ERR(dss_debugfs_dir);
		dss_debugfs_dir = NULL;
		return err;
	}

	debugfs_create_file("clk", S_IRUGO, dss_debugfs_dir,
			&dss_debug_dump_clocks, &dss_debug_fops);

	return 0;
}

static void dss_uninitialize_debugfs(void)
{
	if (dss_debugfs_dir)
		debugfs_remove_recursive(dss_debugfs_dir);
}
184 185 186 187 188 189 190 191

int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
{
	struct dentry *d;

	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
			write, &dss_debug_fops);

192
	return PTR_ERR_OR_ZERO(d);
193
}
194
#else /* CONFIG_OMAP2_DSS_DEBUGFS */
195 196 197 198 199 200 201
static inline int dss_initialize_debugfs(void)
{
	return 0;
}
static inline void dss_uninitialize_debugfs(void)
{
}
202
int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
203 204 205
{
	return 0;
}
206
#endif /* CONFIG_OMAP2_DSS_DEBUGFS */
207 208

/* PLATFORM DEVICE */
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
static int omap_dss_pm_notif(struct notifier_block *b, unsigned long v, void *d)
{
	DSSDBG("pm notif %lu\n", v);

	switch (v) {
	case PM_SUSPEND_PREPARE:
		DSSDBG("suspending displays\n");
		return dss_suspend_all_devices();

	case PM_POST_SUSPEND:
		DSSDBG("resuming displays\n");
		return dss_resume_all_devices();

	default:
		return 0;
	}
}

static struct notifier_block omap_dss_pm_notif_block = {
	.notifier_call = omap_dss_pm_notif,
};

T
Tomi Valkeinen 已提交
231
static int __init omap_dss_probe(struct platform_device *pdev)
232 233 234 235 236 237
{
	struct omap_dss_board_info *pdata = pdev->dev.platform_data;
	int r;

	core.pdev = pdev;

238
	dss_features_init(omapdss_get_version());
239

240 241
	r = dss_initialize_debugfs();
	if (r)
242
		goto err_debugfs;
243

244 245
	if (def_disp_name)
		core.default_display_name = def_disp_name;
246 247
	else if (pdata->default_display_name)
		core.default_display_name = pdata->default_display_name;
248 249 250
	else if (pdata->default_device)
		core.default_display_name = pdata->default_device->name;

251 252
	register_pm_notifier(&omap_dss_pm_notif_block);

253 254
	return 0;

255 256
err_debugfs:

257 258 259 260 261
	return r;
}

static int omap_dss_remove(struct platform_device *pdev)
{
262 263
	unregister_pm_notifier(&omap_dss_pm_notif_block);

264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 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 344 345 346 347 348 349 350 351 352 353
	dss_uninitialize_debugfs();

	return 0;
}

static void omap_dss_shutdown(struct platform_device *pdev)
{
	DSSDBG("shutdown\n");
	dss_disable_all_devices();
}

static struct platform_driver omap_dss_driver = {
	.remove         = omap_dss_remove,
	.shutdown	= omap_dss_shutdown,
	.driver         = {
		.name   = "omapdss",
		.owner  = THIS_MODULE,
	},
};

/* BUS */
static int dss_bus_match(struct device *dev, struct device_driver *driver)
{
	struct omap_dss_device *dssdev = to_dss_device(dev);

	DSSDBG("bus_match. dev %s/%s, drv %s\n",
			dev_name(dev), dssdev->driver_name, driver->name);

	return strcmp(dssdev->driver_name, driver->name) == 0;
}

static struct bus_type dss_bus_type = {
	.name = "omapdss",
	.match = dss_bus_match,
};

static void dss_bus_release(struct device *dev)
{
	DSSDBG("bus_release\n");
}

static struct device dss_bus = {
	.release = dss_bus_release,
};

struct bus_type *dss_get_bus(void)
{
	return &dss_bus_type;
}

/* DRIVER */
static int dss_driver_probe(struct device *dev)
{
	int r;
	struct omap_dss_driver *dssdrv = to_dss_driver(dev->driver);
	struct omap_dss_device *dssdev = to_dss_device(dev);

	DSSDBG("driver_probe: dev %s/%s, drv %s\n",
				dev_name(dev), dssdev->driver_name,
				dssdrv->driver.name);

	r = dssdrv->probe(dssdev);

	if (r) {
		DSSERR("driver probe failed: %d\n", r);
		return r;
	}

	DSSDBG("probe done for device %s\n", dev_name(dev));

	dssdev->driver = dssdrv;

	return 0;
}

static int dss_driver_remove(struct device *dev)
{
	struct omap_dss_driver *dssdrv = to_dss_driver(dev->driver);
	struct omap_dss_device *dssdev = to_dss_device(dev);

	DSSDBG("driver_remove: dev %s/%s\n", dev_name(dev),
			dssdev->driver_name);

	dssdrv->remove(dssdev);

	dssdev->driver = NULL;

	return 0;
}

354 355
static int omapdss_default_connect(struct omap_dss_device *dssdev)
{
356
	struct omap_dss_device *out;
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
	struct omap_overlay_manager *mgr;
	int r;

	out = dssdev->output;

	if (out == NULL)
		return -ENODEV;

	mgr = omap_dss_get_overlay_manager(out->dispc_channel);
	if (!mgr)
		return -ENODEV;

	r = dss_mgr_connect(mgr, out);
	if (r)
		return r;

	return 0;
}

static void omapdss_default_disconnect(struct omap_dss_device *dssdev)
{
378
	struct omap_dss_device *out;
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
	struct omap_overlay_manager *mgr;

	out = dssdev->output;

	if (out == NULL)
		return;

	mgr = out->manager;

	if (mgr == NULL)
		return;

	dss_mgr_disconnect(mgr, out);
}

394 395 396 397 398
int omap_dss_register_driver(struct omap_dss_driver *dssdriver)
{
	dssdriver->driver.bus = &dss_bus_type;
	dssdriver->driver.probe = dss_driver_probe;
	dssdriver->driver.remove = dss_driver_remove;
399 400 401

	if (dssdriver->get_resolution == NULL)
		dssdriver->get_resolution = omapdss_default_get_resolution;
402 403 404
	if (dssdriver->get_recommended_bpp == NULL)
		dssdriver->get_recommended_bpp =
			omapdss_default_get_recommended_bpp;
405 406
	if (dssdriver->get_timings == NULL)
		dssdriver->get_timings = omapdss_default_get_timings;
407 408 409 410
	if (dssdriver->connect == NULL)
		dssdriver->connect = omapdss_default_connect;
	if (dssdriver->disconnect == NULL)
		dssdriver->disconnect = omapdss_default_disconnect;
411

412 413 414 415 416 417 418 419 420 421 422 423 424 425
	return driver_register(&dssdriver->driver);
}
EXPORT_SYMBOL(omap_dss_register_driver);

void omap_dss_unregister_driver(struct omap_dss_driver *dssdriver)
{
	driver_unregister(&dssdriver->driver);
}
EXPORT_SYMBOL(omap_dss_unregister_driver);

/* DEVICE */

static void omap_dss_dev_release(struct device *dev)
{
426 427
	struct omap_dss_device *dssdev = to_dss_device(dev);
	kfree(dssdev);
428 429
}

430 431
static int disp_num_counter;

432
struct omap_dss_device *dss_alloc_and_init_device(struct device *parent)
433
{
434 435 436 437 438
	struct omap_dss_device *dssdev;

	dssdev = kzalloc(sizeof(*dssdev), GFP_KERNEL);
	if (!dssdev)
		return NULL;
439

440 441 442 443
	dssdev->old_dev.bus = &dss_bus_type;
	dssdev->old_dev.parent = parent;
	dssdev->old_dev.release = omap_dss_dev_release;
	dev_set_name(&dssdev->old_dev, "display%d", disp_num_counter++);
444

445
	device_initialize(&dssdev->old_dev);
446 447

	return dssdev;
448 449
}

450 451
int dss_add_device(struct omap_dss_device *dssdev)
{
452 453
	dssdev->dev = &dssdev->old_dev;

T
Tomi Valkeinen 已提交
454
	omapdss_register_display(dssdev);
455
	return device_add(&dssdev->old_dev);
456 457 458 459
}

void dss_put_device(struct omap_dss_device *dssdev)
{
460
	put_device(&dssdev->old_dev);
461 462 463
}

void dss_unregister_device(struct omap_dss_device *dssdev)
464
{
465
	device_unregister(&dssdev->old_dev);
T
Tomi Valkeinen 已提交
466
	omapdss_unregister_display(dssdev);
467 468
}

469 470 471
static int dss_unregister_dss_dev(struct device *dev, void *data)
{
	struct omap_dss_device *dssdev = to_dss_device(dev);
472
	dss_unregister_device(dssdev);
473 474 475
	return 0;
}

476
void dss_unregister_child_devices(struct device *parent)
477 478 479 480
{
	device_for_each_child(parent, NULL, dss_unregister_dss_dev);
}

481 482 483 484 485 486 487 488 489 490
void dss_copy_device_pdata(struct omap_dss_device *dst,
		const struct omap_dss_device *src)
{
	u8 *d = (u8 *)dst;
	u8 *s = (u8 *)src;
	size_t dsize = sizeof(struct device);

	memcpy(d + dsize, s + dsize, sizeof(struct omap_dss_device) - dsize);
}

491
/* BUS */
T
Tomi Valkeinen 已提交
492
static int __init omap_dss_bus_register(void)
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
{
	int r;

	r = bus_register(&dss_bus_type);
	if (r) {
		DSSERR("bus register failed\n");
		return r;
	}

	dev_set_name(&dss_bus, "omapdss");
	r = device_register(&dss_bus);
	if (r) {
		DSSERR("bus driver register failed\n");
		bus_unregister(&dss_bus_type);
		return r;
	}

	return 0;
}

/* INIT */
514
static int (*dss_output_drv_reg_funcs[])(void) __initdata = {
T
Tomi Valkeinen 已提交
515 516 517
#ifdef CONFIG_OMAP2_DSS_DSI
	dsi_init_platform_driver,
#endif
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
#ifdef CONFIG_OMAP2_DSS_DPI
	dpi_init_platform_driver,
#endif
#ifdef CONFIG_OMAP2_DSS_SDI
	sdi_init_platform_driver,
#endif
#ifdef CONFIG_OMAP2_DSS_RFBI
	rfbi_init_platform_driver,
#endif
#ifdef CONFIG_OMAP2_DSS_VENC
	venc_init_platform_driver,
#endif
#ifdef CONFIG_OMAP4_DSS_HDMI
	hdmi_init_platform_driver,
#endif
};

static void (*dss_output_drv_unreg_funcs[])(void) __exitdata = {
T
Tomi Valkeinen 已提交
536 537 538
#ifdef CONFIG_OMAP2_DSS_DSI
	dsi_uninit_platform_driver,
#endif
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
#ifdef CONFIG_OMAP2_DSS_DPI
	dpi_uninit_platform_driver,
#endif
#ifdef CONFIG_OMAP2_DSS_SDI
	sdi_uninit_platform_driver,
#endif
#ifdef CONFIG_OMAP2_DSS_RFBI
	rfbi_uninit_platform_driver,
#endif
#ifdef CONFIG_OMAP2_DSS_VENC
	venc_uninit_platform_driver,
#endif
#ifdef CONFIG_OMAP4_DSS_HDMI
	hdmi_uninit_platform_driver,
#endif
};

static bool dss_output_drv_loaded[ARRAY_SIZE(dss_output_drv_reg_funcs)];
557

558 559 560
static int __init omap_dss_register_drivers(void)
{
	int r;
561
	int i;
562

563
	r = platform_driver_probe(&omap_dss_driver, omap_dss_probe);
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
	if (r)
		return r;

	r = dss_init_platform_driver();
	if (r) {
		DSSERR("Failed to initialize DSS platform driver\n");
		goto err_dss;
	}

	r = dispc_init_platform_driver();
	if (r) {
		DSSERR("Failed to initialize dispc platform driver\n");
		goto err_dispc;
	}

579 580 581 582 583 584 585 586
	/*
	 * It's ok if the output-driver register fails. It happens, for example,
	 * when there is no output-device (e.g. SDI for OMAP4).
	 */
	for (i = 0; i < ARRAY_SIZE(dss_output_drv_reg_funcs); ++i) {
		r = dss_output_drv_reg_funcs[i]();
		if (r == 0)
			dss_output_drv_loaded[i] = true;
587 588 589 590 591 592 593 594 595 596 597 598 599 600
	}

	return 0;

err_dispc:
	dss_uninit_platform_driver();
err_dss:
	platform_driver_unregister(&omap_dss_driver);

	return r;
}

static void __exit omap_dss_unregister_drivers(void)
{
601 602 603 604 605 606 607
	int i;

	for (i = 0; i < ARRAY_SIZE(dss_output_drv_unreg_funcs); ++i) {
		if (dss_output_drv_loaded[i])
			dss_output_drv_unreg_funcs[i]();
	}

608 609 610 611 612 613
	dispc_uninit_platform_driver();
	dss_uninit_platform_driver();

	platform_driver_unregister(&omap_dss_driver);
}

614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
#ifdef CONFIG_OMAP2_DSS_MODULE
static void omap_dss_bus_unregister(void)
{
	device_unregister(&dss_bus);

	bus_unregister(&dss_bus_type);
}

static int __init omap_dss_init(void)
{
	int r;

	r = omap_dss_bus_register();
	if (r)
		return r;

630
	r = omap_dss_register_drivers();
631 632 633 634 635
	if (r) {
		omap_dss_bus_unregister();
		return r;
	}

T
Tomi Valkeinen 已提交
636 637
	dss_initialized = true;

638 639 640 641 642
	return 0;
}

static void __exit omap_dss_exit(void)
{
643
	omap_dss_unregister_drivers();
644 645 646 647 648 649 650 651 652 653 654 655 656 657

	omap_dss_bus_unregister();
}

module_init(omap_dss_init);
module_exit(omap_dss_exit);
#else
static int __init omap_dss_init(void)
{
	return omap_dss_bus_register();
}

static int __init omap_dss_init2(void)
{
T
Tomi Valkeinen 已提交
658 659 660 661 662 663 664 665 666
	int r;

	r = omap_dss_register_drivers();
	if (r)
		return r;

	dss_initialized = true;

	return 0;
667 668 669 670 671 672 673 674 675 676
}

core_initcall(omap_dss_init);
device_initcall(omap_dss_init2);
#endif

MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@nokia.com>");
MODULE_DESCRIPTION("OMAP2/3 Display Subsystem");
MODULE_LICENSE("GPL v2");