drm/linux: Add sign_extend64()
[dragonfly.git] / sys / dev / drm / drm_bridge.c
blobeda67ad010517765d841a367702b709a1afe9034
1 /*
2 * Copyright (c) 2014 Samsung Electronics Co., Ltd
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sub license,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 #include <linux/err.h>
25 #include <linux/module.h>
28 #include "drm/drmP.h"
30 /**
31 * DOC: overview
33 * drm_bridge represents a device that hangs on to an encoder. These are handy
34 * when a regular drm_encoder entity isn't enough to represent the entire
35 * encoder chain.
37 * A bridge is always associated to a single drm_encoder at a time, but can be
38 * either connected to it directly, or through an intermediate bridge:
40 * encoder ---> bridge B ---> bridge A
42 * Here, the output of the encoder feeds to bridge B, and that furthers feeds to
43 * bridge A.
45 * The driver using the bridge is responsible to make the associations between
46 * the encoder and bridges. Once these links are made, the bridges will
47 * participate along with encoder functions to perform mode_set/enable/disable
48 * through the ops provided in drm_bridge_funcs.
50 * drm_bridge, like drm_panel, aren't drm_mode_object entities like planes,
51 * crtcs, encoders or connectors. They just provide additional hooks to get the
52 * desired output at the end of the encoder chain.
55 static DEFINE_MUTEX(bridge_lock);
56 static LINUX_LIST_HEAD(bridge_list);
58 /**
59 * drm_bridge_add - add the given bridge to the global bridge list
61 * @bridge: bridge control structure
63 * RETURNS:
64 * Unconditionally returns Zero.
66 int drm_bridge_add(struct drm_bridge *bridge)
68 mutex_lock(&bridge_lock);
69 list_add_tail(&bridge->list, &bridge_list);
70 mutex_unlock(&bridge_lock);
72 return 0;
74 EXPORT_SYMBOL(drm_bridge_add);
76 /**
77 * drm_bridge_remove - remove the given bridge from the global bridge list
79 * @bridge: bridge control structure
81 void drm_bridge_remove(struct drm_bridge *bridge)
83 mutex_lock(&bridge_lock);
84 list_del_init(&bridge->list);
85 mutex_unlock(&bridge_lock);
87 EXPORT_SYMBOL(drm_bridge_remove);
89 /**
90 * drm_bridge_attach - associate given bridge to our DRM device
92 * @dev: DRM device
93 * @bridge: bridge control structure
95 * called by a kms driver to link one of our encoder/bridge to the given
96 * bridge.
98 * Note that setting up links between the bridge and our encoder/bridge
99 * objects needs to be handled by the kms driver itself
101 * RETURNS:
102 * Zero on success, error code on failure
104 int drm_bridge_attach(struct drm_device *dev, struct drm_bridge *bridge)
106 if (!dev || !bridge)
107 return -EINVAL;
109 if (bridge->dev)
110 return -EBUSY;
112 bridge->dev = dev;
114 if (bridge->funcs->attach)
115 return bridge->funcs->attach(bridge);
117 return 0;
119 EXPORT_SYMBOL(drm_bridge_attach);
122 * DOC: bridge callbacks
124 * The drm_bridge_funcs ops are populated by the bridge driver. The drm
125 * internals(atomic and crtc helpers) use the helpers defined in drm_bridge.c
126 * These helpers call a specific drm_bridge_funcs op for all the bridges
127 * during encoder configuration.
129 * When creating a bridge driver, one can implement drm_bridge_funcs op with
130 * the help of these rough rules:
132 * pre_enable: this contains things needed to be done for the bridge before
133 * its clock and timings are enabled by its source. For a bridge, its source
134 * is generally the encoder or bridge just before it in the encoder chain.
136 * enable: this contains things needed to be done for the bridge once its
137 * source is enabled. In other words, enable is called once the source is
138 * ready with clock and timing needed by the bridge.
140 * disable: this contains things needed to be done for the bridge assuming
141 * that its source is still enabled, i.e. clock and timings are still on.
143 * post_disable: this contains things needed to be done for the bridge once
144 * its source is disabled, i.e. once clocks and timings are off.
146 * mode_fixup: this should fixup the given mode for the bridge. It is called
147 * after the encoder's mode fixup. mode_fixup can also reject a mode completely
148 * if it's unsuitable for the hardware.
150 * mode_set: this sets up the mode for the bridge. It assumes that its source
151 * (an encoder or a bridge) has set the mode too.
155 * drm_bridge_mode_fixup - fixup proposed mode for all bridges in the
156 * encoder chain
157 * @bridge: bridge control structure
158 * @mode: desired mode to be set for the bridge
159 * @adjusted_mode: updated mode that works for this bridge
161 * Calls 'mode_fixup' drm_bridge_funcs op for all the bridges in the
162 * encoder chain, starting from the first bridge to the last.
164 * Note: the bridge passed should be the one closest to the encoder
166 * RETURNS:
167 * true on success, false on failure
169 bool drm_bridge_mode_fixup(struct drm_bridge *bridge,
170 const struct drm_display_mode *mode,
171 struct drm_display_mode *adjusted_mode)
173 bool ret = true;
175 if (!bridge)
176 return true;
178 if (bridge->funcs->mode_fixup)
179 ret = bridge->funcs->mode_fixup(bridge, mode, adjusted_mode);
181 ret = ret && drm_bridge_mode_fixup(bridge->next, mode, adjusted_mode);
183 return ret;
185 EXPORT_SYMBOL(drm_bridge_mode_fixup);
188 * drm_bridge_disable - calls 'disable' drm_bridge_funcs op for all
189 * bridges in the encoder chain.
190 * @bridge: bridge control structure
192 * Calls 'disable' drm_bridge_funcs op for all the bridges in the encoder
193 * chain, starting from the last bridge to the first. These are called before
194 * calling the encoder's prepare op.
196 * Note: the bridge passed should be the one closest to the encoder
198 void drm_bridge_disable(struct drm_bridge *bridge)
200 if (!bridge)
201 return;
203 drm_bridge_disable(bridge->next);
205 bridge->funcs->disable(bridge);
207 EXPORT_SYMBOL(drm_bridge_disable);
210 * drm_bridge_post_disable - calls 'post_disable' drm_bridge_funcs op for
211 * all bridges in the encoder chain.
212 * @bridge: bridge control structure
214 * Calls 'post_disable' drm_bridge_funcs op for all the bridges in the
215 * encoder chain, starting from the first bridge to the last. These are called
216 * after completing the encoder's prepare op.
218 * Note: the bridge passed should be the one closest to the encoder
220 void drm_bridge_post_disable(struct drm_bridge *bridge)
222 if (!bridge)
223 return;
225 bridge->funcs->post_disable(bridge);
227 drm_bridge_post_disable(bridge->next);
229 EXPORT_SYMBOL(drm_bridge_post_disable);
232 * drm_bridge_mode_set - set proposed mode for all bridges in the
233 * encoder chain
234 * @bridge: bridge control structure
235 * @mode: desired mode to be set for the bridge
236 * @adjusted_mode: updated mode that works for this bridge
238 * Calls 'mode_set' drm_bridge_funcs op for all the bridges in the
239 * encoder chain, starting from the first bridge to the last.
241 * Note: the bridge passed should be the one closest to the encoder
243 void drm_bridge_mode_set(struct drm_bridge *bridge,
244 struct drm_display_mode *mode,
245 struct drm_display_mode *adjusted_mode)
247 if (!bridge)
248 return;
250 if (bridge->funcs->mode_set)
251 bridge->funcs->mode_set(bridge, mode, adjusted_mode);
253 drm_bridge_mode_set(bridge->next, mode, adjusted_mode);
255 EXPORT_SYMBOL(drm_bridge_mode_set);
258 * drm_bridge_pre_enable - calls 'pre_enable' drm_bridge_funcs op for all
259 * bridges in the encoder chain.
260 * @bridge: bridge control structure
262 * Calls 'pre_enable' drm_bridge_funcs op for all the bridges in the encoder
263 * chain, starting from the last bridge to the first. These are called
264 * before calling the encoder's commit op.
266 * Note: the bridge passed should be the one closest to the encoder
268 void drm_bridge_pre_enable(struct drm_bridge *bridge)
270 if (!bridge)
271 return;
273 drm_bridge_pre_enable(bridge->next);
275 bridge->funcs->pre_enable(bridge);
277 EXPORT_SYMBOL(drm_bridge_pre_enable);
280 * drm_bridge_enable - calls 'enable' drm_bridge_funcs op for all bridges
281 * in the encoder chain.
282 * @bridge: bridge control structure
284 * Calls 'enable' drm_bridge_funcs op for all the bridges in the encoder
285 * chain, starting from the first bridge to the last. These are called
286 * after completing the encoder's commit op.
288 * Note that the bridge passed should be the one closest to the encoder
290 void drm_bridge_enable(struct drm_bridge *bridge)
292 if (!bridge)
293 return;
295 bridge->funcs->enable(bridge);
297 drm_bridge_enable(bridge->next);
299 EXPORT_SYMBOL(drm_bridge_enable);
301 #ifdef CONFIG_OF
303 * of_drm_find_bridge - find the bridge corresponding to the device node in
304 * the global bridge list
306 * @np: device node
308 * RETURNS:
309 * drm_bridge control struct on success, NULL on failure
311 struct drm_bridge *of_drm_find_bridge(struct device_node *np)
313 struct drm_bridge *bridge;
315 mutex_lock(&bridge_lock);
317 list_for_each_entry(bridge, &bridge_list, list) {
318 if (bridge->of_node == np) {
319 mutex_unlock(&bridge_lock);
320 return bridge;
324 mutex_unlock(&bridge_lock);
325 return NULL;
327 EXPORT_SYMBOL(of_drm_find_bridge);
328 #endif
330 MODULE_AUTHOR("Ajay Kumar <ajaykumar.rs@samsung.com>");
331 MODULE_DESCRIPTION("DRM bridge infrastructure");