output.c 5.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2012 Texas Instruments Ltd
 * Author: Archit Taneja <archit@ti.com>
 *
 * 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/>.
 */

#include <linux/kernel.h>
19
#include <linux/module.h>
20 21
#include <linux/platform_device.h>
#include <linux/slab.h>
22
#include <linux/of.h>
23 24 25 26 27 28

#include <video/omapdss.h>

#include "dss.h"

static LIST_HEAD(output_list);
29 30
static DEFINE_MUTEX(output_lock);

31
int omapdss_output_set_device(struct omap_dss_device *out,
32 33 34 35 36 37
		struct omap_dss_device *dssdev)
{
	int r;

	mutex_lock(&output_lock);

38
	if (out->dst) {
39
		DSSERR("output already has device %s connected to it\n",
40
			out->dst->name);
41 42 43 44
		r = -EINVAL;
		goto err;
	}

45
	if (out->output_type != dssdev->type) {
46 47 48 49 50
		DSSERR("output type and display type don't match\n");
		r = -EINVAL;
		goto err;
	}

51
	out->dst = dssdev;
52
	dssdev->src = out;
53 54 55 56 57 58 59 60 61 62 63

	mutex_unlock(&output_lock);

	return 0;
err:
	mutex_unlock(&output_lock);

	return r;
}
EXPORT_SYMBOL(omapdss_output_set_device);

64
int omapdss_output_unset_device(struct omap_dss_device *out)
65 66 67 68 69
{
	int r;

	mutex_lock(&output_lock);

70
	if (!out->dst) {
71 72 73 74 75
		DSSERR("output doesn't have a device connected to it\n");
		r = -EINVAL;
		goto err;
	}

76
	if (out->dst->state != OMAP_DSS_DISPLAY_DISABLED) {
77
		DSSERR("device %s is not disabled, cannot unset device\n",
78
				out->dst->name);
79 80 81 82
		r = -EINVAL;
		goto err;
	}

83 84
	out->dst->src = NULL;
	out->dst = NULL;
85 86 87 88 89 90 91 92 93 94

	mutex_unlock(&output_lock);

	return 0;
err:
	mutex_unlock(&output_lock);

	return r;
}
EXPORT_SYMBOL(omapdss_output_unset_device);
95

96
int omapdss_register_output(struct omap_dss_device *out)
97 98
{
	list_add_tail(&out->list, &output_list);
99
	return 0;
100
}
101
EXPORT_SYMBOL(omapdss_register_output);
102

103
void omapdss_unregister_output(struct omap_dss_device *out)
104 105 106
{
	list_del(&out->list);
}
107
EXPORT_SYMBOL(omapdss_unregister_output);
108

109
struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id)
110
{
111
	struct omap_dss_device *out;
112 113 114 115 116 117 118 119

	list_for_each_entry(out, &output_list, list) {
		if (out->id == id)
			return out;
	}

	return NULL;
}
120
EXPORT_SYMBOL(omap_dss_get_output);
T
Tomi Valkeinen 已提交
121

122
struct omap_dss_device *omap_dss_find_output(const char *name)
123
{
124
	struct omap_dss_device *out;
125 126 127

	list_for_each_entry(out, &output_list, list) {
		if (strcmp(out->name, name) == 0)
128
			return omap_dss_get_device(out);
129 130 131 132 133 134
	}

	return NULL;
}
EXPORT_SYMBOL(omap_dss_find_output);

135
struct omap_dss_device *omap_dss_find_output_by_port_node(struct device_node *port)
136
{
137
	struct device_node *src_node;
138
	struct omap_dss_device *out;
139 140 141 142 143 144 145
	u32 reg;

	src_node = dss_of_port_get_parent_device(port);
	if (!src_node)
		return NULL;

	reg = dss_of_port_get_port_number(port);
146 147

	list_for_each_entry(out, &output_list, list) {
148 149
		if (out->dev->of_node == src_node && out->port_num == reg) {
			of_node_put(src_node);
150
			return omap_dss_get_device(out);
151
		}
152 153
	}

154 155
	of_node_put(src_node);

156 157
	return NULL;
}
158
EXPORT_SYMBOL(omap_dss_find_output_by_port_node);
159

160
struct omap_dss_device *omapdss_find_output_from_display(struct omap_dss_device *dssdev)
161
{
162 163
	while (dssdev->src)
		dssdev = dssdev->src;
164 165 166 167 168

	if (dssdev->id != 0)
		return omap_dss_get_device(dssdev);

	return NULL;
169 170 171 172 173
}
EXPORT_SYMBOL(omapdss_find_output_from_display);

struct omap_overlay_manager *omapdss_find_mgr_from_display(struct omap_dss_device *dssdev)
{
174
	struct omap_dss_device *out;
175
	struct omap_overlay_manager *mgr;
176 177 178 179 180 181

	out = omapdss_find_output_from_display(dssdev);

	if (out == NULL)
		return NULL;

182 183 184 185 186
	mgr = out->manager;

	omap_dss_put_device(out);

	return mgr;
187 188 189
}
EXPORT_SYMBOL(omapdss_find_mgr_from_display);

T
Tomi Valkeinen 已提交
190 191 192 193 194 195 196 197 198 199 200
static const struct dss_mgr_ops *dss_mgr_ops;

int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops)
{
	if (dss_mgr_ops)
		return -EBUSY;

	dss_mgr_ops = mgr_ops;

	return 0;
}
201
EXPORT_SYMBOL(dss_install_mgr_ops);
T
Tomi Valkeinen 已提交
202 203 204 205 206

void dss_uninstall_mgr_ops(void)
{
	dss_mgr_ops = NULL;
}
207
EXPORT_SYMBOL(dss_uninstall_mgr_ops);
T
Tomi Valkeinen 已提交
208

209
int dss_mgr_connect(struct omap_overlay_manager *mgr,
210
		struct omap_dss_device *dst)
211 212 213 214 215 216
{
	return dss_mgr_ops->connect(mgr, dst);
}
EXPORT_SYMBOL(dss_mgr_connect);

void dss_mgr_disconnect(struct omap_overlay_manager *mgr,
217
		struct omap_dss_device *dst)
218 219 220 221 222
{
	dss_mgr_ops->disconnect(mgr, dst);
}
EXPORT_SYMBOL(dss_mgr_disconnect);

T
Tomi Valkeinen 已提交
223 224 225 226 227
void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
		const struct omap_video_timings *timings)
{
	dss_mgr_ops->set_timings(mgr, timings);
}
228
EXPORT_SYMBOL(dss_mgr_set_timings);
T
Tomi Valkeinen 已提交
229 230 231 232 233 234

void dss_mgr_set_lcd_config(struct omap_overlay_manager *mgr,
		const struct dss_lcd_mgr_config *config)
{
	dss_mgr_ops->set_lcd_config(mgr, config);
}
235
EXPORT_SYMBOL(dss_mgr_set_lcd_config);
T
Tomi Valkeinen 已提交
236 237 238 239 240

int dss_mgr_enable(struct omap_overlay_manager *mgr)
{
	return dss_mgr_ops->enable(mgr);
}
241
EXPORT_SYMBOL(dss_mgr_enable);
T
Tomi Valkeinen 已提交
242 243 244 245 246

void dss_mgr_disable(struct omap_overlay_manager *mgr)
{
	dss_mgr_ops->disable(mgr);
}
247
EXPORT_SYMBOL(dss_mgr_disable);
T
Tomi Valkeinen 已提交
248 249 250 251 252

void dss_mgr_start_update(struct omap_overlay_manager *mgr)
{
	dss_mgr_ops->start_update(mgr);
}
253
EXPORT_SYMBOL(dss_mgr_start_update);
254 255 256 257 258 259

int dss_mgr_register_framedone_handler(struct omap_overlay_manager *mgr,
		void (*handler)(void *), void *data)
{
	return dss_mgr_ops->register_framedone_handler(mgr, handler, data);
}
260
EXPORT_SYMBOL(dss_mgr_register_framedone_handler);
261 262 263 264 265 266

void dss_mgr_unregister_framedone_handler(struct omap_overlay_manager *mgr,
		void (*handler)(void *), void *data)
{
	dss_mgr_ops->unregister_framedone_handler(mgr, handler, data);
}
267
EXPORT_SYMBOL(dss_mgr_unregister_framedone_handler);