output.c 5.4 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
#include "omapdss.h"
25 26 27
#include "dss.h"

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

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

	mutex_lock(&output_lock);

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

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

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

	mutex_unlock(&output_lock);

	return 0;
err:
	mutex_unlock(&output_lock);

	return r;
}
EXPORT_SYMBOL(omapdss_output_set_device);

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

	mutex_lock(&output_lock);

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

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

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

	mutex_unlock(&output_lock);

	return 0;
err:
	mutex_unlock(&output_lock);

	return r;
}
EXPORT_SYMBOL(omapdss_output_unset_device);
94

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

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

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

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

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

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

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

	return NULL;
}
EXPORT_SYMBOL(omap_dss_find_output);

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

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

	reg = dss_of_port_get_port_number(port);
145 146

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

153 154
	of_node_put(src_node);

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

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

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

	return NULL;
168 169 170
}
EXPORT_SYMBOL(omapdss_find_output_from_display);

T
Tomi Valkeinen 已提交
171 172 173 174 175 176 177 178 179 180 181
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;
}
182
EXPORT_SYMBOL(dss_install_mgr_ops);
T
Tomi Valkeinen 已提交
183 184 185 186 187

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

190
int dss_mgr_connect(enum omap_channel channel,
191
		struct omap_dss_device *dst)
192
{
193
	return dss_mgr_ops->connect(channel, dst);
194 195 196
}
EXPORT_SYMBOL(dss_mgr_connect);

197
void dss_mgr_disconnect(enum omap_channel channel,
198
		struct omap_dss_device *dst)
199
{
200
	dss_mgr_ops->disconnect(channel, dst);
201 202 203
}
EXPORT_SYMBOL(dss_mgr_disconnect);

204
void dss_mgr_set_timings(enum omap_channel channel,
T
Tomi Valkeinen 已提交
205 206
		const struct omap_video_timings *timings)
{
207
	dss_mgr_ops->set_timings(channel, timings);
T
Tomi Valkeinen 已提交
208
}
209
EXPORT_SYMBOL(dss_mgr_set_timings);
T
Tomi Valkeinen 已提交
210

211
void dss_mgr_set_lcd_config(enum omap_channel channel,
T
Tomi Valkeinen 已提交
212 213
		const struct dss_lcd_mgr_config *config)
{
214
	dss_mgr_ops->set_lcd_config(channel, config);
T
Tomi Valkeinen 已提交
215
}
216
EXPORT_SYMBOL(dss_mgr_set_lcd_config);
T
Tomi Valkeinen 已提交
217

218
int dss_mgr_enable(enum omap_channel channel)
T
Tomi Valkeinen 已提交
219
{
220
	return dss_mgr_ops->enable(channel);
T
Tomi Valkeinen 已提交
221
}
222
EXPORT_SYMBOL(dss_mgr_enable);
T
Tomi Valkeinen 已提交
223

224
void dss_mgr_disable(enum omap_channel channel)
T
Tomi Valkeinen 已提交
225
{
226
	dss_mgr_ops->disable(channel);
T
Tomi Valkeinen 已提交
227
}
228
EXPORT_SYMBOL(dss_mgr_disable);
T
Tomi Valkeinen 已提交
229

230
void dss_mgr_start_update(enum omap_channel channel)
T
Tomi Valkeinen 已提交
231
{
232
	dss_mgr_ops->start_update(channel);
T
Tomi Valkeinen 已提交
233
}
234
EXPORT_SYMBOL(dss_mgr_start_update);
235

236
int dss_mgr_register_framedone_handler(enum omap_channel channel,
237 238
		void (*handler)(void *), void *data)
{
239
	return dss_mgr_ops->register_framedone_handler(channel, handler, data);
240
}
241
EXPORT_SYMBOL(dss_mgr_register_framedone_handler);
242

243
void dss_mgr_unregister_framedone_handler(enum omap_channel channel,
244 245
		void (*handler)(void *), void *data)
{
246
	dss_mgr_ops->unregister_framedone_handler(channel, handler, data);
247
}
248
EXPORT_SYMBOL(dss_mgr_unregister_framedone_handler);