]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/video/omap2/dss/output.c
OMAPDSS: clean up dss_[ovl|mgr]_get_device()
[mirror_ubuntu-bionic-kernel.git] / drivers / video / omap2 / dss / output.c
CommitLineData
484dc404
AT
1/*
2 * Copyright (C) 2012 Texas Instruments Ltd
3 * Author: Archit Taneja <archit@ti.com>
4 *
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.
8 *
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
12 * more details.
13 *
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/>.
16 */
17
18#include <linux/kernel.h>
6d71b923 19#include <linux/module.h>
484dc404
AT
20#include <linux/platform_device.h>
21#include <linux/slab.h>
22
23#include <video/omapdss.h>
24
25#include "dss.h"
26
27static LIST_HEAD(output_list);
6d71b923
AT
28static DEFINE_MUTEX(output_lock);
29
30int omapdss_output_set_device(struct omap_dss_output *out,
31 struct omap_dss_device *dssdev)
32{
33 int r;
34
35 mutex_lock(&output_lock);
36
37 if (out->device) {
38 DSSERR("output already has device %s connected to it\n",
39 out->device->name);
40 r = -EINVAL;
41 goto err;
42 }
43
44 if (out->type != dssdev->type) {
45 DSSERR("output type and display type don't match\n");
46 r = -EINVAL;
47 goto err;
48 }
49
50 out->device = dssdev;
51 dssdev->output = out;
52
53 mutex_unlock(&output_lock);
54
55 return 0;
56err:
57 mutex_unlock(&output_lock);
58
59 return r;
60}
61EXPORT_SYMBOL(omapdss_output_set_device);
62
63int omapdss_output_unset_device(struct omap_dss_output *out)
64{
65 int r;
66
67 mutex_lock(&output_lock);
68
69 if (!out->device) {
70 DSSERR("output doesn't have a device connected to it\n");
71 r = -EINVAL;
72 goto err;
73 }
74
75 if (out->device->state != OMAP_DSS_DISPLAY_DISABLED) {
76 DSSERR("device %s is not disabled, cannot unset device\n",
77 out->device->name);
78 r = -EINVAL;
79 goto err;
80 }
81
82 out->device->output = NULL;
83 out->device = NULL;
84
85 mutex_unlock(&output_lock);
86
87 return 0;
88err:
89 mutex_unlock(&output_lock);
90
91 return r;
92}
93EXPORT_SYMBOL(omapdss_output_unset_device);
484dc404
AT
94
95void dss_register_output(struct omap_dss_output *out)
96{
97 list_add_tail(&out->list, &output_list);
98}
99
100void dss_unregister_output(struct omap_dss_output *out)
101{
102 list_del(&out->list);
103}
104
105struct omap_dss_output *omap_dss_get_output(enum omap_dss_output_id id)
106{
107 struct omap_dss_output *out;
108
109 list_for_each_entry(out, &output_list, list) {
110 if (out->id == id)
111 return out;
112 }
113
114 return NULL;
115}
27831620 116EXPORT_SYMBOL(omap_dss_get_output);
74b65ec2 117
805cc2d1
TV
118struct omap_dss_output *omap_dss_find_output(const char *name)
119{
120 struct omap_dss_output *out;
121
122 list_for_each_entry(out, &output_list, list) {
123 if (strcmp(out->name, name) == 0)
124 return out;
125 }
126
127 return NULL;
128}
129EXPORT_SYMBOL(omap_dss_find_output);
130
12ca755b
TV
131struct omap_dss_output *omap_dss_find_output_by_node(struct device_node *node)
132{
133 struct omap_dss_output *out;
134
135 list_for_each_entry(out, &output_list, list) {
136 if (out->pdev->dev.of_node == node)
137 return out;
138 }
139
140 return NULL;
141}
142EXPORT_SYMBOL(omap_dss_find_output_by_node);
143
74b65ec2
TV
144static const struct dss_mgr_ops *dss_mgr_ops;
145
146int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops)
147{
148 if (dss_mgr_ops)
149 return -EBUSY;
150
151 dss_mgr_ops = mgr_ops;
152
153 return 0;
154}
a97a9634 155EXPORT_SYMBOL(dss_install_mgr_ops);
74b65ec2
TV
156
157void dss_uninstall_mgr_ops(void)
158{
159 dss_mgr_ops = NULL;
160}
a97a9634 161EXPORT_SYMBOL(dss_uninstall_mgr_ops);
74b65ec2
TV
162
163void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
164 const struct omap_video_timings *timings)
165{
166 dss_mgr_ops->set_timings(mgr, timings);
167}
a97a9634 168EXPORT_SYMBOL(dss_mgr_set_timings);
74b65ec2
TV
169
170void dss_mgr_set_lcd_config(struct omap_overlay_manager *mgr,
171 const struct dss_lcd_mgr_config *config)
172{
173 dss_mgr_ops->set_lcd_config(mgr, config);
174}
a97a9634 175EXPORT_SYMBOL(dss_mgr_set_lcd_config);
74b65ec2
TV
176
177int dss_mgr_enable(struct omap_overlay_manager *mgr)
178{
179 return dss_mgr_ops->enable(mgr);
180}
a97a9634 181EXPORT_SYMBOL(dss_mgr_enable);
74b65ec2
TV
182
183void dss_mgr_disable(struct omap_overlay_manager *mgr)
184{
185 dss_mgr_ops->disable(mgr);
186}
a97a9634 187EXPORT_SYMBOL(dss_mgr_disable);
74b65ec2
TV
188
189void dss_mgr_start_update(struct omap_overlay_manager *mgr)
190{
191 dss_mgr_ops->start_update(mgr);
192}
a97a9634 193EXPORT_SYMBOL(dss_mgr_start_update);
1550202d
TV
194
195int dss_mgr_register_framedone_handler(struct omap_overlay_manager *mgr,
196 void (*handler)(void *), void *data)
197{
198 return dss_mgr_ops->register_framedone_handler(mgr, handler, data);
199}
a97a9634 200EXPORT_SYMBOL(dss_mgr_register_framedone_handler);
1550202d
TV
201
202void dss_mgr_unregister_framedone_handler(struct omap_overlay_manager *mgr,
203 void (*handler)(void *), void *data)
204{
205 dss_mgr_ops->unregister_framedone_handler(mgr, handler, data);
206}
a97a9634 207EXPORT_SYMBOL(dss_mgr_unregister_framedone_handler);