2 * Copyright (C) 2009 Nokia Corporation
5 * Some code and ideas taken from drivers/video/omap/ driver
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
21 #define DSS_SUBSYS_NAME "DISPLAY"
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/jiffies.h>
26 #include <linux/platform_device.h>
31 void omapdss_default_get_timings(struct omap_dss_device *dssdev,
34 *vm = dssdev->panel.vm;
36 EXPORT_SYMBOL(omapdss_default_get_timings);
38 static LIST_HEAD(panel_list);
39 static DEFINE_MUTEX(panel_list_mutex);
40 static int disp_num_counter;
42 int omapdss_register_display(struct omap_dss_device *dssdev)
44 struct omap_dss_driver *drv = dssdev->driver;
45 struct list_head *cur;
49 * Note: this presumes that all displays either have an DT alias, or
52 id = of_alias_get_id(dssdev->dev->of_node, "display");
54 id = disp_num_counter++;
56 snprintf(dssdev->alias, sizeof(dssdev->alias), "display%d", id);
58 /* Use 'label' property for name, if it exists */
59 of_property_read_string(dssdev->dev->of_node, "label", &dssdev->name);
61 if (dssdev->name == NULL)
62 dssdev->name = dssdev->alias;
64 if (drv && drv->get_timings == NULL)
65 drv->get_timings = omapdss_default_get_timings;
67 mutex_lock(&panel_list_mutex);
68 list_for_each(cur, &panel_list) {
69 struct omap_dss_device *ldev = list_entry(cur,
70 struct omap_dss_device,
72 if (strcmp(ldev->alias, dssdev->alias) > 0)
75 list_add_tail(&dssdev->panel_list, cur);
76 mutex_unlock(&panel_list_mutex);
79 EXPORT_SYMBOL(omapdss_register_display);
81 void omapdss_unregister_display(struct omap_dss_device *dssdev)
83 mutex_lock(&panel_list_mutex);
84 list_del(&dssdev->panel_list);
85 mutex_unlock(&panel_list_mutex);
87 EXPORT_SYMBOL(omapdss_unregister_display);
89 bool omapdss_component_is_display(struct device_node *node)
91 struct omap_dss_device *dssdev;
94 mutex_lock(&panel_list_mutex);
95 list_for_each_entry(dssdev, &panel_list, panel_list) {
96 if (dssdev->dev->of_node == node) {
102 mutex_unlock(&panel_list_mutex);
105 EXPORT_SYMBOL(omapdss_component_is_display);
107 struct omap_dss_device *omap_dss_get_device(struct omap_dss_device *dssdev)
109 if (!try_module_get(dssdev->owner))
112 if (get_device(dssdev->dev) == NULL) {
113 module_put(dssdev->owner);
119 EXPORT_SYMBOL(omap_dss_get_device);
121 void omap_dss_put_device(struct omap_dss_device *dssdev)
123 put_device(dssdev->dev);
124 module_put(dssdev->owner);
126 EXPORT_SYMBOL(omap_dss_put_device);
129 * ref count of the found device is incremented.
130 * ref count of from-device is decremented.
132 struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from)
135 struct omap_dss_device *dssdev;
137 mutex_lock(&panel_list_mutex);
139 if (list_empty(&panel_list)) {
145 dssdev = list_first_entry(&panel_list, struct omap_dss_device,
147 omap_dss_get_device(dssdev);
151 omap_dss_put_device(from);
153 list_for_each(l, &panel_list) {
154 dssdev = list_entry(l, struct omap_dss_device, panel_list);
155 if (dssdev == from) {
156 if (list_is_last(l, &panel_list)) {
161 dssdev = list_entry(l->next, struct omap_dss_device,
163 omap_dss_get_device(dssdev);
168 WARN(1, "'from' dssdev not found\n");
172 mutex_unlock(&panel_list_mutex);
175 EXPORT_SYMBOL(omap_dss_get_next_device);