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> 19 #include <linux/module.h> 20 #include <linux/platform_device.h> 21 #include <linux/slab.h> 22 #include <linux/of.h> 23 24 #include "omapdss.h" 25 26 static LIST_HEAD(output_list); 27 static DEFINE_MUTEX(output_lock); 28 29 int omapdss_output_set_device(struct omap_dss_device *out, 30 struct omap_dss_device *dssdev) 31 { 32 int r; 33 34 mutex_lock(&output_lock); 35 36 if (out->dst) { 37 dev_err(out->dev, 38 "output already has device %s connected to it\n", 39 out->dst->name); 40 r = -EINVAL; 41 goto err; 42 } 43 44 if (out->output_type != dssdev->type) { 45 dev_err(out->dev, "output type and display type don't match\n"); 46 r = -EINVAL; 47 goto err; 48 } 49 50 out->dst = dssdev; 51 dssdev->src = out; 52 53 mutex_unlock(&output_lock); 54 55 return 0; 56 err: 57 mutex_unlock(&output_lock); 58 59 return r; 60 } 61 EXPORT_SYMBOL(omapdss_output_set_device); 62 63 int omapdss_output_unset_device(struct omap_dss_device *out) 64 { 65 int r; 66 67 mutex_lock(&output_lock); 68 69 if (!out->dst) { 70 dev_err(out->dev, 71 "output doesn't have a device connected to it\n"); 72 r = -EINVAL; 73 goto err; 74 } 75 76 if (out->dst->state != OMAP_DSS_DISPLAY_DISABLED) { 77 dev_err(out->dev, 78 "device %s is not disabled, cannot unset device\n", 79 out->dst->name); 80 r = -EINVAL; 81 goto err; 82 } 83 84 out->dst->src = NULL; 85 out->dst = NULL; 86 87 mutex_unlock(&output_lock); 88 89 return 0; 90 err: 91 mutex_unlock(&output_lock); 92 93 return r; 94 } 95 EXPORT_SYMBOL(omapdss_output_unset_device); 96 97 int omapdss_register_output(struct omap_dss_device *out) 98 { 99 list_add_tail(&out->list, &output_list); 100 return 0; 101 } 102 EXPORT_SYMBOL(omapdss_register_output); 103 104 void omapdss_unregister_output(struct omap_dss_device *out) 105 { 106 list_del(&out->list); 107 } 108 EXPORT_SYMBOL(omapdss_unregister_output); 109 110 bool omapdss_component_is_output(struct device_node *node) 111 { 112 struct omap_dss_device *out; 113 114 list_for_each_entry(out, &output_list, list) { 115 if (out->dev->of_node == node) 116 return true; 117 } 118 119 return false; 120 } 121 EXPORT_SYMBOL(omapdss_component_is_output); 122 123 struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id) 124 { 125 struct omap_dss_device *out; 126 127 list_for_each_entry(out, &output_list, list) { 128 if (out->id == id) 129 return out; 130 } 131 132 return NULL; 133 } 134 EXPORT_SYMBOL(omap_dss_get_output); 135 136 struct omap_dss_device *omap_dss_find_output(const char *name) 137 { 138 struct omap_dss_device *out; 139 140 list_for_each_entry(out, &output_list, list) { 141 if (strcmp(out->name, name) == 0) 142 return omap_dss_get_device(out); 143 } 144 145 return NULL; 146 } 147 EXPORT_SYMBOL(omap_dss_find_output); 148 149 struct omap_dss_device *omap_dss_find_output_by_port_node(struct device_node *port) 150 { 151 struct device_node *src_node; 152 struct omap_dss_device *out; 153 u32 reg; 154 155 src_node = dss_of_port_get_parent_device(port); 156 if (!src_node) 157 return NULL; 158 159 reg = dss_of_port_get_port_number(port); 160 161 list_for_each_entry(out, &output_list, list) { 162 if (out->dev->of_node == src_node && out->port_num == reg) { 163 of_node_put(src_node); 164 return omap_dss_get_device(out); 165 } 166 } 167 168 of_node_put(src_node); 169 170 return NULL; 171 } 172 EXPORT_SYMBOL(omap_dss_find_output_by_port_node); 173 174 struct omap_dss_device *omapdss_find_output_from_display(struct omap_dss_device *dssdev) 175 { 176 while (dssdev->src) 177 dssdev = dssdev->src; 178 179 if (dssdev->id != 0) 180 return omap_dss_get_device(dssdev); 181 182 return NULL; 183 } 184 EXPORT_SYMBOL(omapdss_find_output_from_display); 185 186 static const struct dss_mgr_ops *dss_mgr_ops; 187 188 int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops) 189 { 190 if (dss_mgr_ops) 191 return -EBUSY; 192 193 dss_mgr_ops = mgr_ops; 194 195 return 0; 196 } 197 EXPORT_SYMBOL(dss_install_mgr_ops); 198 199 void dss_uninstall_mgr_ops(void) 200 { 201 dss_mgr_ops = NULL; 202 } 203 EXPORT_SYMBOL(dss_uninstall_mgr_ops); 204 205 int dss_mgr_connect(enum omap_channel channel, 206 struct omap_dss_device *dst) 207 { 208 return dss_mgr_ops->connect(channel, dst); 209 } 210 EXPORT_SYMBOL(dss_mgr_connect); 211 212 void dss_mgr_disconnect(enum omap_channel channel, 213 struct omap_dss_device *dst) 214 { 215 dss_mgr_ops->disconnect(channel, dst); 216 } 217 EXPORT_SYMBOL(dss_mgr_disconnect); 218 219 void dss_mgr_set_timings(enum omap_channel channel, const struct videomode *vm) 220 { 221 dss_mgr_ops->set_timings(channel, vm); 222 } 223 EXPORT_SYMBOL(dss_mgr_set_timings); 224 225 void dss_mgr_set_lcd_config(enum omap_channel channel, 226 const struct dss_lcd_mgr_config *config) 227 { 228 dss_mgr_ops->set_lcd_config(channel, config); 229 } 230 EXPORT_SYMBOL(dss_mgr_set_lcd_config); 231 232 int dss_mgr_enable(enum omap_channel channel) 233 { 234 return dss_mgr_ops->enable(channel); 235 } 236 EXPORT_SYMBOL(dss_mgr_enable); 237 238 void dss_mgr_disable(enum omap_channel channel) 239 { 240 dss_mgr_ops->disable(channel); 241 } 242 EXPORT_SYMBOL(dss_mgr_disable); 243 244 void dss_mgr_start_update(enum omap_channel channel) 245 { 246 dss_mgr_ops->start_update(channel); 247 } 248 EXPORT_SYMBOL(dss_mgr_start_update); 249 250 int dss_mgr_register_framedone_handler(enum omap_channel channel, 251 void (*handler)(void *), void *data) 252 { 253 return dss_mgr_ops->register_framedone_handler(channel, handler, data); 254 } 255 EXPORT_SYMBOL(dss_mgr_register_framedone_handler); 256 257 void dss_mgr_unregister_framedone_handler(enum omap_channel channel, 258 void (*handler)(void *), void *data) 259 { 260 dss_mgr_ops->unregister_framedone_handler(channel, handler, data); 261 } 262 EXPORT_SYMBOL(dss_mgr_unregister_framedone_handler); 263