2019-06-03 05:44:50 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-11-03 09:23:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
2018-05-24 11:46:19 +00:00
|
|
|
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
2009-11-03 09:23:50 +00:00
|
|
|
*
|
|
|
|
* Some code and ideas taken from drivers/video/omap/ driver
|
|
|
|
* by Imre Deak.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DSS_SUBSYS_NAME "CORE"
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
2016-05-27 11:40:49 +00:00
|
|
|
#include "omapdss.h"
|
2009-11-03 09:23:50 +00:00
|
|
|
#include "dss.h"
|
|
|
|
|
|
|
|
/* INIT */
|
2017-12-05 20:29:32 +00:00
|
|
|
static struct platform_driver * const omap_dss_drivers[] = {
|
|
|
|
&omap_dsshw_driver,
|
|
|
|
&omap_dispchw_driver,
|
2012-10-22 12:57:25 +00:00
|
|
|
#ifdef CONFIG_OMAP2_DSS_DSI
|
2017-12-05 20:29:32 +00:00
|
|
|
&omap_dsihw_driver,
|
2012-10-22 12:57:25 +00:00
|
|
|
#endif
|
2012-03-02 15:37:53 +00:00
|
|
|
#ifdef CONFIG_OMAP2_DSS_VENC
|
2017-12-05 20:29:32 +00:00
|
|
|
&omap_venchw_driver,
|
2012-03-02 15:37:53 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_OMAP4_DSS_HDMI
|
2017-12-05 20:29:32 +00:00
|
|
|
&omapdss_hdmi4hw_driver,
|
2012-03-02 15:37:53 +00:00
|
|
|
#endif
|
2014-03-13 10:44:14 +00:00
|
|
|
#ifdef CONFIG_OMAP5_DSS_HDMI
|
2017-12-05 20:29:32 +00:00
|
|
|
&omapdss_hdmi5hw_driver,
|
2014-03-13 10:44:14 +00:00
|
|
|
#endif
|
2012-03-02 15:37:53 +00:00
|
|
|
};
|
|
|
|
|
2012-11-20 09:58:47 +00:00
|
|
|
static int __init omap_dss_init(void)
|
2012-03-19 13:05:02 +00:00
|
|
|
{
|
2018-02-16 11:25:07 +00:00
|
|
|
return platform_register_drivers(omap_dss_drivers,
|
|
|
|
ARRAY_SIZE(omap_dss_drivers));
|
2012-03-19 13:05:02 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 09:58:47 +00:00
|
|
|
static void __exit omap_dss_exit(void)
|
2012-03-19 13:05:02 +00:00
|
|
|
{
|
2017-12-05 20:29:32 +00:00
|
|
|
platform_unregister_drivers(omap_dss_drivers,
|
|
|
|
ARRAY_SIZE(omap_dss_drivers));
|
2012-03-19 13:05:02 +00:00
|
|
|
}
|
|
|
|
|
2009-11-03 09:23:50 +00:00
|
|
|
module_init(omap_dss_init);
|
|
|
|
module_exit(omap_dss_exit);
|
|
|
|
|
2018-05-24 11:46:19 +00:00
|
|
|
MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
|
2009-11-03 09:23:50 +00:00
|
|
|
MODULE_DESCRIPTION("OMAP2/3 Display Subsystem");
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
|