2 * Copyright (C) 2012 Texas Instruments Ltd
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
27 static LIST_HEAD(output_list);
28 static DEFINE_MUTEX(output_lock);
30 int omapdss_output_set_device(struct omap_dss_device *out,
31 struct omap_dss_device *dssdev)
35 mutex_lock(&output_lock);
38 DSSERR("output already has device %s connected to it\n",
44 if (out->output_type != dssdev->type) {
45 DSSERR("output type and display type don't match\n");
53 mutex_unlock(&output_lock);
57 mutex_unlock(&output_lock);
61 EXPORT_SYMBOL(omapdss_output_set_device);
63 int omapdss_output_unset_device(struct omap_dss_device *out)
67 mutex_lock(&output_lock);
70 DSSERR("output doesn't have a device connected to it\n");
75 if (out->dst->state != OMAP_DSS_DISPLAY_DISABLED) {
76 DSSERR("device %s is not disabled, cannot unset device\n",
85 mutex_unlock(&output_lock);
89 mutex_unlock(&output_lock);
93 EXPORT_SYMBOL(omapdss_output_unset_device);
95 int omapdss_register_output(struct omap_dss_device *out)
97 list_add_tail(&out->list, &output_list);
100 EXPORT_SYMBOL(omapdss_register_output);
102 void omapdss_unregister_output(struct omap_dss_device *out)
104 list_del(&out->list);
106 EXPORT_SYMBOL(omapdss_unregister_output);
108 struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id)
110 struct omap_dss_device *out;
112 list_for_each_entry(out, &output_list, list) {
119 EXPORT_SYMBOL(omap_dss_get_output);
121 struct omap_dss_device *omap_dss_find_output(const char *name)
123 struct omap_dss_device *out;
125 list_for_each_entry(out, &output_list, list) {
126 if (strcmp(out->name, name) == 0)
127 return omap_dss_get_device(out);
132 EXPORT_SYMBOL(omap_dss_find_output);
134 struct omap_dss_device *omap_dss_find_output_by_port_node(struct device_node *port)
136 struct device_node *src_node;
137 struct omap_dss_device *out;
140 src_node = dss_of_port_get_parent_device(port);
144 reg = dss_of_port_get_port_number(port);
146 list_for_each_entry(out, &output_list, list) {
147 if (out->dev->of_node == src_node && out->port_num == reg) {
148 of_node_put(src_node);
149 return omap_dss_get_device(out);
153 of_node_put(src_node);
157 EXPORT_SYMBOL(omap_dss_find_output_by_port_node);
159 struct omap_dss_device *omapdss_find_output_from_display(struct omap_dss_device *dssdev)
162 dssdev = dssdev->src;
165 return omap_dss_get_device(dssdev);
169 EXPORT_SYMBOL(omapdss_find_output_from_display);
171 static const struct dss_mgr_ops *dss_mgr_ops;
173 int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops)
178 dss_mgr_ops = mgr_ops;
182 EXPORT_SYMBOL(dss_install_mgr_ops);
184 void dss_uninstall_mgr_ops(void)
188 EXPORT_SYMBOL(dss_uninstall_mgr_ops);
190 int dss_mgr_connect(enum omap_channel channel,
191 struct omap_dss_device *dst)
193 return dss_mgr_ops->connect(channel, dst);
195 EXPORT_SYMBOL(dss_mgr_connect);
197 void dss_mgr_disconnect(enum omap_channel channel,
198 struct omap_dss_device *dst)
200 dss_mgr_ops->disconnect(channel, dst);
202 EXPORT_SYMBOL(dss_mgr_disconnect);
204 void dss_mgr_set_timings(enum omap_channel channel, const struct videomode *vm)
206 dss_mgr_ops->set_timings(channel, vm);
208 EXPORT_SYMBOL(dss_mgr_set_timings);
210 void dss_mgr_set_lcd_config(enum omap_channel channel,
211 const struct dss_lcd_mgr_config *config)
213 dss_mgr_ops->set_lcd_config(channel, config);
215 EXPORT_SYMBOL(dss_mgr_set_lcd_config);
217 int dss_mgr_enable(enum omap_channel channel)
219 return dss_mgr_ops->enable(channel);
221 EXPORT_SYMBOL(dss_mgr_enable);
223 void dss_mgr_disable(enum omap_channel channel)
225 dss_mgr_ops->disable(channel);
227 EXPORT_SYMBOL(dss_mgr_disable);
229 void dss_mgr_start_update(enum omap_channel channel)
231 dss_mgr_ops->start_update(channel);
233 EXPORT_SYMBOL(dss_mgr_start_update);
235 int dss_mgr_register_framedone_handler(enum omap_channel channel,
236 void (*handler)(void *), void *data)
238 return dss_mgr_ops->register_framedone_handler(channel, handler, data);
240 EXPORT_SYMBOL(dss_mgr_register_framedone_handler);
242 void dss_mgr_unregister_framedone_handler(enum omap_channel channel,
243 void (*handler)(void *), void *data)
245 dss_mgr_ops->unregister_framedone_handler(channel, handler, data);
247 EXPORT_SYMBOL(dss_mgr_unregister_framedone_handler);