2009-11-03 09:23:50 +00:00
|
|
|
/*
|
|
|
|
* 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/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
|
|
|
};
|
|
|
|
|
2017-08-11 13:49:08 +00:00
|
|
|
static struct platform_device *omap_drm_device;
|
|
|
|
|
2012-11-20 09:58:47 +00:00
|
|
|
static int __init omap_dss_init(void)
|
2012-03-19 13:05:02 +00:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
2017-12-05 20:29:32 +00:00
|
|
|
r = platform_register_drivers(omap_dss_drivers,
|
|
|
|
ARRAY_SIZE(omap_dss_drivers));
|
|
|
|
if (r)
|
|
|
|
goto err_reg;
|
2012-03-19 13:05:02 +00:00
|
|
|
|
2017-08-16 09:43:55 +00:00
|
|
|
omap_drm_device = platform_device_register_simple("omapdrm", 0, NULL, 0);
|
2017-08-11 13:49:08 +00:00
|
|
|
if (IS_ERR(omap_drm_device)) {
|
|
|
|
r = PTR_ERR(omap_drm_device);
|
|
|
|
goto err_reg;
|
|
|
|
}
|
|
|
|
|
2012-03-19 13:05:02 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-06-04 11:44:49 +00:00
|
|
|
err_reg:
|
2017-12-05 20:29:32 +00:00
|
|
|
platform_unregister_drivers(omap_dss_drivers,
|
|
|
|
ARRAY_SIZE(omap_dss_drivers));
|
2015-06-04 11:44:49 +00:00
|
|
|
|
2012-03-19 13:05:02 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-11-20 09:58:47 +00:00
|
|
|
static void __exit omap_dss_exit(void)
|
2012-03-19 13:05:02 +00:00
|
|
|
{
|
2017-08-11 13:49:08 +00:00
|
|
|
platform_device_unregister(omap_drm_device);
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@nokia.com>");
|
|
|
|
MODULE_DESCRIPTION("OMAP2/3 Display Subsystem");
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
|