display.c 5.6 KB
Newer Older
T
Tomi Valkeinen 已提交
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
/*
 * linux/drivers/video/omap2/dss/display.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 "DISPLAY"

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/jiffies.h>
#include <linux/platform_device.h>
29
#include <linux/of.h>
T
Tomi Valkeinen 已提交
30

31
#include "omapdss.h"
T
Tomi Valkeinen 已提交
32

33
void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
T
Tomi Valkeinen 已提交
34 35
			u16 *xres, u16 *yres)
{
36 37
	*xres = dssdev->panel.vm.hactive;
	*yres = dssdev->panel.vm.vactive;
T
Tomi Valkeinen 已提交
38
}
39
EXPORT_SYMBOL(omapdss_default_get_resolution);
T
Tomi Valkeinen 已提交
40

41
int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54
{
	switch (dssdev->type) {
	case OMAP_DISPLAY_TYPE_DPI:
		if (dssdev->phy.dpi.data_lines == 24)
			return 24;
		else
			return 16;

	case OMAP_DISPLAY_TYPE_DBI:
		if (dssdev->ctrl.pixel_size == 24)
			return 24;
		else
			return 16;
55
	case OMAP_DISPLAY_TYPE_DSI:
56
		if (dssdev->panel.dsi_pix_fmt == OMAP_DSS_DSI_FMT_RGB565)
57
			return 16;
58 59
		else
			return 24;
T
Tomi Valkeinen 已提交
60 61
	case OMAP_DISPLAY_TYPE_VENC:
	case OMAP_DISPLAY_TYPE_SDI:
62
	case OMAP_DISPLAY_TYPE_HDMI:
63
	case OMAP_DISPLAY_TYPE_DVI:
T
Tomi Valkeinen 已提交
64 65 66
		return 24;
	default:
		BUG();
67
		return 0;
T
Tomi Valkeinen 已提交
68 69
	}
}
70
EXPORT_SYMBOL(omapdss_default_get_recommended_bpp);
T
Tomi Valkeinen 已提交
71

72
void omapdss_default_get_timings(struct omap_dss_device *dssdev,
73
				 struct videomode *vm)
74
{
75
	*vm = dssdev->panel.vm;
76 77 78
}
EXPORT_SYMBOL(omapdss_default_get_timings);

T
Tomi Valkeinen 已提交
79 80 81 82 83 84 85
static LIST_HEAD(panel_list);
static DEFINE_MUTEX(panel_list_mutex);
static int disp_num_counter;

int omapdss_register_display(struct omap_dss_device *dssdev)
{
	struct omap_dss_driver *drv = dssdev->driver;
86
	int id;
T
Tomi Valkeinen 已提交
87

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	/*
	 * Note: this presumes all the displays are either using DT or non-DT,
	 * which normally should be the case. This also presumes that all
	 * displays either have an DT alias, or none has.
	 */

	if (dssdev->dev->of_node) {
		id = of_alias_get_id(dssdev->dev->of_node, "display");

		if (id < 0)
			id = disp_num_counter++;
	} else {
		id = disp_num_counter++;
	}

	snprintf(dssdev->alias, sizeof(dssdev->alias), "display%d", id);
T
Tomi Valkeinen 已提交
104

105 106 107 108 109 110 111
	/* Use 'label' property for name, if it exists */
	if (dssdev->dev->of_node)
		of_property_read_string(dssdev->dev->of_node, "label",
			&dssdev->name);

	if (dssdev->name == NULL)
		dssdev->name = dssdev->alias;
T
Tomi Valkeinen 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133

	if (drv && drv->get_resolution == NULL)
		drv->get_resolution = omapdss_default_get_resolution;
	if (drv && drv->get_recommended_bpp == NULL)
		drv->get_recommended_bpp = omapdss_default_get_recommended_bpp;
	if (drv && drv->get_timings == NULL)
		drv->get_timings = omapdss_default_get_timings;

	mutex_lock(&panel_list_mutex);
	list_add_tail(&dssdev->panel_list, &panel_list);
	mutex_unlock(&panel_list_mutex);
	return 0;
}
EXPORT_SYMBOL(omapdss_register_display);

void omapdss_unregister_display(struct omap_dss_device *dssdev)
{
	mutex_lock(&panel_list_mutex);
	list_del(&dssdev->panel_list);
	mutex_unlock(&panel_list_mutex);
}
EXPORT_SYMBOL(omapdss_unregister_display);
T
Tomi Valkeinen 已提交
134

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
bool omapdss_component_is_display(struct device_node *node)
{
	struct omap_dss_device *dssdev;
	bool found = false;

	mutex_lock(&panel_list_mutex);
	list_for_each_entry(dssdev, &panel_list, panel_list) {
		if (dssdev->dev->of_node == node) {
			found = true;
			goto out;
		}
	}
out:
	mutex_unlock(&panel_list_mutex);
	return found;
}
EXPORT_SYMBOL(omapdss_component_is_display);

153
struct omap_dss_device *omap_dss_get_device(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
154
{
155 156 157 158 159 160 161 162 163
	if (!try_module_get(dssdev->owner))
		return NULL;

	if (get_device(dssdev->dev) == NULL) {
		module_put(dssdev->owner);
		return NULL;
	}

	return dssdev;
T
Tomi Valkeinen 已提交
164 165 166 167 168
}
EXPORT_SYMBOL(omap_dss_get_device);

void omap_dss_put_device(struct omap_dss_device *dssdev)
{
169
	put_device(dssdev->dev);
170
	module_put(dssdev->owner);
T
Tomi Valkeinen 已提交
171 172 173
}
EXPORT_SYMBOL(omap_dss_put_device);

174 175 176 177
/*
 * ref count of the found device is incremented.
 * ref count of from-device is decremented.
 */
T
Tomi Valkeinen 已提交
178 179
struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from)
{
180 181 182 183
	struct list_head *l;
	struct omap_dss_device *dssdev;

	mutex_lock(&panel_list_mutex);
T
Tomi Valkeinen 已提交
184

185 186 187
	if (list_empty(&panel_list)) {
		dssdev = NULL;
		goto out;
T
Tomi Valkeinen 已提交
188 189
	}

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	if (from == NULL) {
		dssdev = list_first_entry(&panel_list, struct omap_dss_device,
				panel_list);
		omap_dss_get_device(dssdev);
		goto out;
	}

	omap_dss_put_device(from);

	list_for_each(l, &panel_list) {
		dssdev = list_entry(l, struct omap_dss_device, panel_list);
		if (dssdev == from) {
			if (list_is_last(l, &panel_list)) {
				dssdev = NULL;
				goto out;
			}

			dssdev = list_entry(l->next, struct omap_dss_device,
					panel_list);
			omap_dss_get_device(dssdev);
			goto out;
		}
	}
T
Tomi Valkeinen 已提交
213

214 215 216 217 218
	WARN(1, "'from' dssdev not found\n");

	dssdev = NULL;
out:
	mutex_unlock(&panel_list_mutex);
T
Tomi Valkeinen 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	return dssdev;
}
EXPORT_SYMBOL(omap_dss_get_next_device);

struct omap_dss_device *omap_dss_find_device(void *data,
		int (*match)(struct omap_dss_device *dssdev, void *data))
{
	struct omap_dss_device *dssdev = NULL;

	while ((dssdev = omap_dss_get_next_device(dssdev)) != NULL) {
		if (match(dssdev, data))
			return dssdev;
	}

	return NULL;
}
EXPORT_SYMBOL(omap_dss_find_device);