core.c 7.0 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
	const char *default_display_name;
47 48 49 50
} core;

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

53
const char *omapdss_get_default_display_name(void)
54 55 56
{
	return core.default_display_name;
}
57
EXPORT_SYMBOL(omapdss_get_default_display_name);
58

59 60 61 62 63 64 65
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 已提交
66 67 68 69 70
struct platform_device *dss_get_core_pdev(void)
{
	return core.pdev;
}

71 72 73 74 75 76 77 78 79 80 81 82 83 84
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;

85
	if (!board_data->dsi_disable_pads)
86 87 88 89 90
		return;

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

91 92 93 94 95 96 97 98 99 100
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;
}

101
#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
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);
}
143 144 145 146 147 148 149 150

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);

151
	return PTR_ERR_OR_ZERO(d);
152
}
153
#else /* CONFIG_OMAP2_DSS_DEBUGFS */
154 155 156 157 158 159 160
static inline int dss_initialize_debugfs(void)
{
	return 0;
}
static inline void dss_uninitialize_debugfs(void)
{
}
161
int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
162 163 164
{
	return 0;
}
165
#endif /* CONFIG_OMAP2_DSS_DEBUGFS */
166 167

/* PLATFORM DEVICE */
168

169 170 171 172 173 174 175 176 177 178 179 180 181
static void dss_disable_all_devices(void)
{
	struct omap_dss_device *dssdev = NULL;

	for_each_dss_dev(dssdev) {
		if (!dssdev->driver)
			continue;

		if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE)
			dssdev->driver->disable(dssdev);
	}
}

T
Tomi Valkeinen 已提交
182
static int __init omap_dss_probe(struct platform_device *pdev)
183 184 185 186 187 188
{
	struct omap_dss_board_info *pdata = pdev->dev.platform_data;
	int r;

	core.pdev = pdev;

189
	dss_features_init(omapdss_get_version());
190

191 192
	r = dss_initialize_debugfs();
	if (r)
193
		goto err_debugfs;
194

195 196
	if (def_disp_name)
		core.default_display_name = def_disp_name;
197 198
	else if (pdata->default_display_name)
		core.default_display_name = pdata->default_display_name;
199

200 201
	return 0;

202 203
err_debugfs:

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
	return r;
}

static int omap_dss_remove(struct platform_device *pdev)
{
	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",
	},
};

/* INIT */
229
static int (*dss_output_drv_reg_funcs[])(void) __initdata = {
230 231
	dss_init_platform_driver,
	dispc_init_platform_driver,
T
Tomi Valkeinen 已提交
232 233 234
#ifdef CONFIG_OMAP2_DSS_DSI
	dsi_init_platform_driver,
#endif
235 236 237 238 239 240 241 242 243 244 245 246 247
#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
248
	hdmi4_init_platform_driver,
249
#endif
250 251 252
#ifdef CONFIG_OMAP5_DSS_HDMI
	hdmi5_init_platform_driver,
#endif
253 254
};

255
static void (*dss_output_drv_unreg_funcs[])(void) = {
T
Tomi Valkeinen 已提交
256 257
#ifdef CONFIG_OMAP5_DSS_HDMI
	hdmi5_uninit_platform_driver,
T
Tomi Valkeinen 已提交
258
#endif
T
Tomi Valkeinen 已提交
259 260
#ifdef CONFIG_OMAP4_DSS_HDMI
	hdmi4_uninit_platform_driver,
261
#endif
T
Tomi Valkeinen 已提交
262 263
#ifdef CONFIG_OMAP2_DSS_VENC
	venc_uninit_platform_driver,
264 265 266 267
#endif
#ifdef CONFIG_OMAP2_DSS_RFBI
	rfbi_uninit_platform_driver,
#endif
T
Tomi Valkeinen 已提交
268 269
#ifdef CONFIG_OMAP2_DSS_SDI
	sdi_uninit_platform_driver,
270
#endif
T
Tomi Valkeinen 已提交
271 272
#ifdef CONFIG_OMAP2_DSS_DPI
	dpi_uninit_platform_driver,
273
#endif
T
Tomi Valkeinen 已提交
274 275
#ifdef CONFIG_OMAP2_DSS_DSI
	dsi_uninit_platform_driver,
276
#endif
277 278
	dispc_uninit_platform_driver,
	dss_uninit_platform_driver,
279 280
};

281
static int __init omap_dss_init(void)
282 283
{
	int r;
284
	int i;
285

286
	r = platform_driver_probe(&omap_dss_driver, omap_dss_probe);
287 288 289
	if (r)
		return r;

290 291
	for (i = 0; i < ARRAY_SIZE(dss_output_drv_reg_funcs); ++i) {
		r = dss_output_drv_reg_funcs[i]();
292 293
		if (r)
			goto err_reg;
294 295 296 297
	}

	return 0;

298 299 300 301 302 303
err_reg:
	for (i = ARRAY_SIZE(dss_output_drv_reg_funcs) - i;
			i < ARRAY_SIZE(dss_output_drv_reg_funcs);
			++i)
		dss_output_drv_unreg_funcs[i]();

304 305 306 307 308
	platform_driver_unregister(&omap_dss_driver);

	return r;
}

309
static void __exit omap_dss_exit(void)
310
{
311 312
	int i;

313 314
	for (i = 0; i < ARRAY_SIZE(dss_output_drv_unreg_funcs); ++i)
		dss_output_drv_unreg_funcs[i]();
315 316 317 318

	platform_driver_unregister(&omap_dss_driver);
}

319 320 321 322 323 324 325
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");