xref: /openbsd-src/sys/dev/pci/drm/drm_bridge.c (revision 3374c67d44f9b75b98444cbf63020f777792342e)
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd
3  *
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:
10  *
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.
14  *
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.
22  */
23 
24 #include <linux/err.h>
25 #include <linux/media-bus-format.h>
26 #include <linux/module.h>
27 #include <linux/mutex.h>
28 
29 #include <drm/drm_atomic_state_helper.h>
30 #include <drm/drm_bridge.h>
31 #include <drm/drm_encoder.h>
32 #include <drm/drm_of.h>
33 #include <drm/drm_print.h>
34 
35 #include "drm_crtc_internal.h"
36 
37 /**
38  * DOC: overview
39  *
40  * &struct drm_bridge represents a device that hangs on to an encoder. These are
41  * handy when a regular &drm_encoder entity isn't enough to represent the entire
42  * encoder chain.
43  *
44  * A bridge is always attached to a single &drm_encoder at a time, but can be
45  * either connected to it directly, or through a chain of bridges::
46  *
47  *     [ CRTC ---> ] Encoder ---> Bridge A ---> Bridge B
48  *
49  * Here, the output of the encoder feeds to bridge A, and that furthers feeds to
50  * bridge B. Bridge chains can be arbitrarily long, and shall be fully linear:
51  * Chaining multiple bridges to the output of a bridge, or the same bridge to
52  * the output of different bridges, is not supported.
53  *
54  * &drm_bridge, like &drm_panel, aren't &drm_mode_object entities like planes,
55  * CRTCs, encoders or connectors and hence are not visible to userspace. They
56  * just provide additional hooks to get the desired output at the end of the
57  * encoder chain.
58  */
59 
60 /**
61  * DOC:	display driver integration
62  *
63  * Display drivers are responsible for linking encoders with the first bridge
64  * in the chains. This is done by acquiring the appropriate bridge with
65  * devm_drm_of_get_bridge(). Once acquired, the bridge shall be attached to the
66  * encoder with a call to drm_bridge_attach().
67  *
68  * Bridges are responsible for linking themselves with the next bridge in the
69  * chain, if any. This is done the same way as for encoders, with the call to
70  * drm_bridge_attach() occurring in the &drm_bridge_funcs.attach operation.
71  *
72  * Once these links are created, the bridges can participate along with encoder
73  * functions to perform mode validation and fixup (through
74  * drm_bridge_chain_mode_valid() and drm_atomic_bridge_chain_check()), mode
75  * setting (through drm_bridge_chain_mode_set()), enable (through
76  * drm_atomic_bridge_chain_pre_enable() and drm_atomic_bridge_chain_enable())
77  * and disable (through drm_atomic_bridge_chain_disable() and
78  * drm_atomic_bridge_chain_post_disable()). Those functions call the
79  * corresponding operations provided in &drm_bridge_funcs in sequence for all
80  * bridges in the chain.
81  *
82  * For display drivers that use the atomic helpers
83  * drm_atomic_helper_check_modeset(),
84  * drm_atomic_helper_commit_modeset_enables() and
85  * drm_atomic_helper_commit_modeset_disables() (either directly in hand-rolled
86  * commit check and commit tail handlers, or through the higher-level
87  * drm_atomic_helper_check() and drm_atomic_helper_commit_tail() or
88  * drm_atomic_helper_commit_tail_rpm() helpers), this is done transparently and
89  * requires no intervention from the driver. For other drivers, the relevant
90  * DRM bridge chain functions shall be called manually.
91  *
92  * Bridges also participate in implementing the &drm_connector at the end of
93  * the bridge chain. Display drivers may use the drm_bridge_connector_init()
94  * helper to create the &drm_connector, or implement it manually on top of the
95  * connector-related operations exposed by the bridge (see the overview
96  * documentation of bridge operations for more details).
97  */
98 
99 /**
100  * DOC: special care dsi
101  *
102  * The interaction between the bridges and other frameworks involved in
103  * the probing of the upstream driver and the bridge driver can be
104  * challenging. Indeed, there's multiple cases that needs to be
105  * considered:
106  *
107  * - The upstream driver doesn't use the component framework and isn't a
108  *   MIPI-DSI host. In this case, the bridge driver will probe at some
109  *   point and the upstream driver should try to probe again by returning
110  *   EPROBE_DEFER as long as the bridge driver hasn't probed.
111  *
112  * - The upstream driver doesn't use the component framework, but is a
113  *   MIPI-DSI host. The bridge device uses the MIPI-DCS commands to be
114  *   controlled. In this case, the bridge device is a child of the
115  *   display device and when it will probe it's assured that the display
116  *   device (and MIPI-DSI host) is present. The upstream driver will be
117  *   assured that the bridge driver is connected between the
118  *   &mipi_dsi_host_ops.attach and &mipi_dsi_host_ops.detach operations.
119  *   Therefore, it must run mipi_dsi_host_register() in its probe
120  *   function, and then run drm_bridge_attach() in its
121  *   &mipi_dsi_host_ops.attach hook.
122  *
123  * - The upstream driver uses the component framework and is a MIPI-DSI
124  *   host. The bridge device uses the MIPI-DCS commands to be
125  *   controlled. This is the same situation than above, and can run
126  *   mipi_dsi_host_register() in either its probe or bind hooks.
127  *
128  * - The upstream driver uses the component framework and is a MIPI-DSI
129  *   host. The bridge device uses a separate bus (such as I2C) to be
130  *   controlled. In this case, there's no correlation between the probe
131  *   of the bridge and upstream drivers, so care must be taken to avoid
132  *   an endless EPROBE_DEFER loop, with each driver waiting for the
133  *   other to probe.
134  *
135  * The ideal pattern to cover the last item (and all the others in the
136  * MIPI-DSI host driver case) is to split the operations like this:
137  *
138  * - The MIPI-DSI host driver must run mipi_dsi_host_register() in its
139  *   probe hook. It will make sure that the MIPI-DSI host sticks around,
140  *   and that the driver's bind can be called.
141  *
142  * - In its probe hook, the bridge driver must try to find its MIPI-DSI
143  *   host, register as a MIPI-DSI device and attach the MIPI-DSI device
144  *   to its host. The bridge driver is now functional.
145  *
146  * - In its &struct mipi_dsi_host_ops.attach hook, the MIPI-DSI host can
147  *   now add its component. Its bind hook will now be called and since
148  *   the bridge driver is attached and registered, we can now look for
149  *   and attach it.
150  *
151  * At this point, we're now certain that both the upstream driver and
152  * the bridge driver are functional and we can't have a deadlock-like
153  * situation when probing.
154  */
155 
156 static DEFINE_MUTEX(bridge_lock);
157 static DRM_LIST_HEAD(bridge_list);
158 
159 /**
160  * drm_bridge_add - add the given bridge to the global bridge list
161  *
162  * @bridge: bridge control structure
163  */
164 void drm_bridge_add(struct drm_bridge *bridge)
165 {
166 	rw_init(&bridge->hpd_mutex, "brhpd");
167 
168 	mutex_lock(&bridge_lock);
169 	list_add_tail(&bridge->list, &bridge_list);
170 	mutex_unlock(&bridge_lock);
171 }
172 EXPORT_SYMBOL(drm_bridge_add);
173 
174 #ifdef notyet
175 static void drm_bridge_remove_void(void *bridge)
176 {
177 	drm_bridge_remove(bridge);
178 }
179 #endif
180 
181 /**
182  * devm_drm_bridge_add - devm managed version of drm_bridge_add()
183  *
184  * @dev: device to tie the bridge lifetime to
185  * @bridge: bridge control structure
186  *
187  * This is the managed version of drm_bridge_add() which automatically
188  * calls drm_bridge_remove() when @dev is unbound.
189  *
190  * Return: 0 if no error or negative error code.
191  */
192 int devm_drm_bridge_add(struct device *dev, struct drm_bridge *bridge)
193 {
194 	drm_bridge_add(bridge);
195 #ifdef notyet
196 	return devm_add_action_or_reset(dev, drm_bridge_remove_void, bridge);
197 #else
198 	STUB();
199 	return -ENOSYS;
200 #endif
201 }
202 EXPORT_SYMBOL(devm_drm_bridge_add);
203 
204 /**
205  * drm_bridge_remove - remove the given bridge from the global bridge list
206  *
207  * @bridge: bridge control structure
208  */
209 void drm_bridge_remove(struct drm_bridge *bridge)
210 {
211 	mutex_lock(&bridge_lock);
212 	list_del_init(&bridge->list);
213 	mutex_unlock(&bridge_lock);
214 
215 	mutex_destroy(&bridge->hpd_mutex);
216 }
217 EXPORT_SYMBOL(drm_bridge_remove);
218 
219 static struct drm_private_state *
220 drm_bridge_atomic_duplicate_priv_state(struct drm_private_obj *obj)
221 {
222 	struct drm_bridge *bridge = drm_priv_to_bridge(obj);
223 	struct drm_bridge_state *state;
224 
225 	state = bridge->funcs->atomic_duplicate_state(bridge);
226 	return state ? &state->base : NULL;
227 }
228 
229 static void
230 drm_bridge_atomic_destroy_priv_state(struct drm_private_obj *obj,
231 				     struct drm_private_state *s)
232 {
233 	struct drm_bridge_state *state = drm_priv_to_bridge_state(s);
234 	struct drm_bridge *bridge = drm_priv_to_bridge(obj);
235 
236 	bridge->funcs->atomic_destroy_state(bridge, state);
237 }
238 
239 static const struct drm_private_state_funcs drm_bridge_priv_state_funcs = {
240 	.atomic_duplicate_state = drm_bridge_atomic_duplicate_priv_state,
241 	.atomic_destroy_state = drm_bridge_atomic_destroy_priv_state,
242 };
243 
244 /**
245  * drm_bridge_attach - attach the bridge to an encoder's chain
246  *
247  * @encoder: DRM encoder
248  * @bridge: bridge to attach
249  * @previous: previous bridge in the chain (optional)
250  * @flags: DRM_BRIDGE_ATTACH_* flags
251  *
252  * Called by a kms driver to link the bridge to an encoder's chain. The previous
253  * argument specifies the previous bridge in the chain. If NULL, the bridge is
254  * linked directly at the encoder's output. Otherwise it is linked at the
255  * previous bridge's output.
256  *
257  * If non-NULL the previous bridge must be already attached by a call to this
258  * function.
259  *
260  * Note that bridges attached to encoders are auto-detached during encoder
261  * cleanup in drm_encoder_cleanup(), so drm_bridge_attach() should generally
262  * *not* be balanced with a drm_bridge_detach() in driver code.
263  *
264  * RETURNS:
265  * Zero on success, error code on failure
266  */
267 int drm_bridge_attach(struct drm_encoder *encoder, struct drm_bridge *bridge,
268 		      struct drm_bridge *previous,
269 		      enum drm_bridge_attach_flags flags)
270 {
271 	int ret;
272 
273 	if (!encoder || !bridge)
274 		return -EINVAL;
275 
276 	if (previous && (!previous->dev || previous->encoder != encoder))
277 		return -EINVAL;
278 
279 	if (bridge->dev)
280 		return -EBUSY;
281 
282 	bridge->dev = encoder->dev;
283 	bridge->encoder = encoder;
284 
285 	if (previous)
286 		list_add(&bridge->chain_node, &previous->chain_node);
287 	else
288 		list_add(&bridge->chain_node, &encoder->bridge_chain);
289 
290 	if (bridge->funcs->attach) {
291 		ret = bridge->funcs->attach(bridge, flags);
292 		if (ret < 0)
293 			goto err_reset_bridge;
294 	}
295 
296 	if (bridge->funcs->atomic_reset) {
297 		struct drm_bridge_state *state;
298 
299 		state = bridge->funcs->atomic_reset(bridge);
300 		if (IS_ERR(state)) {
301 			ret = PTR_ERR(state);
302 			goto err_detach_bridge;
303 		}
304 
305 		drm_atomic_private_obj_init(bridge->dev, &bridge->base,
306 					    &state->base,
307 					    &drm_bridge_priv_state_funcs);
308 	}
309 
310 	return 0;
311 
312 err_detach_bridge:
313 	if (bridge->funcs->detach)
314 		bridge->funcs->detach(bridge);
315 
316 err_reset_bridge:
317 	bridge->dev = NULL;
318 	bridge->encoder = NULL;
319 	list_del(&bridge->chain_node);
320 
321 #ifdef CONFIG_OF
322 	DRM_ERROR("failed to attach bridge %pOF to encoder %s: %d\n",
323 		  bridge->of_node, encoder->name, ret);
324 #else
325 	DRM_ERROR("failed to attach bridge to encoder %s: %d\n",
326 		  encoder->name, ret);
327 #endif
328 
329 	return ret;
330 }
331 EXPORT_SYMBOL(drm_bridge_attach);
332 
333 void drm_bridge_detach(struct drm_bridge *bridge)
334 {
335 	if (WARN_ON(!bridge))
336 		return;
337 
338 	if (WARN_ON(!bridge->dev))
339 		return;
340 
341 	if (bridge->funcs->atomic_reset)
342 		drm_atomic_private_obj_fini(&bridge->base);
343 
344 	if (bridge->funcs->detach)
345 		bridge->funcs->detach(bridge);
346 
347 	list_del(&bridge->chain_node);
348 	bridge->dev = NULL;
349 }
350 
351 /**
352  * DOC: bridge operations
353  *
354  * Bridge drivers expose operations through the &drm_bridge_funcs structure.
355  * The DRM internals (atomic and CRTC helpers) use the helpers defined in
356  * drm_bridge.c to call bridge operations. Those operations are divided in
357  * three big categories to support different parts of the bridge usage.
358  *
359  * - The encoder-related operations support control of the bridges in the
360  *   chain, and are roughly counterparts to the &drm_encoder_helper_funcs
361  *   operations. They are used by the legacy CRTC and the atomic modeset
362  *   helpers to perform mode validation, fixup and setting, and enable and
363  *   disable the bridge automatically.
364  *
365  *   The enable and disable operations are split in
366  *   &drm_bridge_funcs.pre_enable, &drm_bridge_funcs.enable,
367  *   &drm_bridge_funcs.disable and &drm_bridge_funcs.post_disable to provide
368  *   finer-grained control.
369  *
370  *   Bridge drivers may implement the legacy version of those operations, or
371  *   the atomic version (prefixed with atomic\_), in which case they shall also
372  *   implement the atomic state bookkeeping operations
373  *   (&drm_bridge_funcs.atomic_duplicate_state,
374  *   &drm_bridge_funcs.atomic_destroy_state and &drm_bridge_funcs.reset).
375  *   Mixing atomic and non-atomic versions of the operations is not supported.
376  *
377  * - The bus format negotiation operations
378  *   &drm_bridge_funcs.atomic_get_output_bus_fmts and
379  *   &drm_bridge_funcs.atomic_get_input_bus_fmts allow bridge drivers to
380  *   negotiate the formats transmitted between bridges in the chain when
381  *   multiple formats are supported. Negotiation for formats is performed
382  *   transparently for display drivers by the atomic modeset helpers. Only
383  *   atomic versions of those operations exist, bridge drivers that need to
384  *   implement them shall thus also implement the atomic version of the
385  *   encoder-related operations. This feature is not supported by the legacy
386  *   CRTC helpers.
387  *
388  * - The connector-related operations support implementing a &drm_connector
389  *   based on a chain of bridges. DRM bridges traditionally create a
390  *   &drm_connector for bridges meant to be used at the end of the chain. This
391  *   puts additional burden on bridge drivers, especially for bridges that may
392  *   be used in the middle of a chain or at the end of it. Furthermore, it
393  *   requires all operations of the &drm_connector to be handled by a single
394  *   bridge, which doesn't always match the hardware architecture.
395  *
396  *   To simplify bridge drivers and make the connector implementation more
397  *   flexible, a new model allows bridges to unconditionally skip creation of
398  *   &drm_connector and instead expose &drm_bridge_funcs operations to support
399  *   an externally-implemented &drm_connector. Those operations are
400  *   &drm_bridge_funcs.detect, &drm_bridge_funcs.get_modes,
401  *   &drm_bridge_funcs.get_edid, &drm_bridge_funcs.hpd_notify,
402  *   &drm_bridge_funcs.hpd_enable and &drm_bridge_funcs.hpd_disable. When
403  *   implemented, display drivers shall create a &drm_connector instance for
404  *   each chain of bridges, and implement those connector instances based on
405  *   the bridge connector operations.
406  *
407  *   Bridge drivers shall implement the connector-related operations for all
408  *   the features that the bridge hardware support. For instance, if a bridge
409  *   supports reading EDID, the &drm_bridge_funcs.get_edid shall be
410  *   implemented. This however doesn't mean that the DDC lines are wired to the
411  *   bridge on a particular platform, as they could also be connected to an I2C
412  *   controller of the SoC. Support for the connector-related operations on the
413  *   running platform is reported through the &drm_bridge.ops flags. Bridge
414  *   drivers shall detect which operations they can support on the platform
415  *   (usually this information is provided by ACPI or DT), and set the
416  *   &drm_bridge.ops flags for all supported operations. A flag shall only be
417  *   set if the corresponding &drm_bridge_funcs operation is implemented, but
418  *   an implemented operation doesn't necessarily imply that the corresponding
419  *   flag will be set. Display drivers shall use the &drm_bridge.ops flags to
420  *   decide which bridge to delegate a connector operation to. This mechanism
421  *   allows providing a single static const &drm_bridge_funcs instance in
422  *   bridge drivers, improving security by storing function pointers in
423  *   read-only memory.
424  *
425  *   In order to ease transition, bridge drivers may support both the old and
426  *   new models by making connector creation optional and implementing the
427  *   connected-related bridge operations. Connector creation is then controlled
428  *   by the flags argument to the drm_bridge_attach() function. Display drivers
429  *   that support the new model and create connectors themselves shall set the
430  *   %DRM_BRIDGE_ATTACH_NO_CONNECTOR flag, and bridge drivers shall then skip
431  *   connector creation. For intermediate bridges in the chain, the flag shall
432  *   be passed to the drm_bridge_attach() call for the downstream bridge.
433  *   Bridge drivers that implement the new model only shall return an error
434  *   from their &drm_bridge_funcs.attach handler when the
435  *   %DRM_BRIDGE_ATTACH_NO_CONNECTOR flag is not set. New display drivers
436  *   should use the new model, and convert the bridge drivers they use if
437  *   needed, in order to gradually transition to the new model.
438  */
439 
440 /**
441  * drm_bridge_chain_mode_fixup - fixup proposed mode for all bridges in the
442  *				 encoder chain
443  * @bridge: bridge control structure
444  * @mode: desired mode to be set for the bridge
445  * @adjusted_mode: updated mode that works for this bridge
446  *
447  * Calls &drm_bridge_funcs.mode_fixup for all the bridges in the
448  * encoder chain, starting from the first bridge to the last.
449  *
450  * Note: the bridge passed should be the one closest to the encoder
451  *
452  * RETURNS:
453  * true on success, false on failure
454  */
455 bool drm_bridge_chain_mode_fixup(struct drm_bridge *bridge,
456 				 const struct drm_display_mode *mode,
457 				 struct drm_display_mode *adjusted_mode)
458 {
459 	struct drm_encoder *encoder;
460 
461 	if (!bridge)
462 		return true;
463 
464 	encoder = bridge->encoder;
465 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
466 		if (!bridge->funcs->mode_fixup)
467 			continue;
468 
469 		if (!bridge->funcs->mode_fixup(bridge, mode, adjusted_mode))
470 			return false;
471 	}
472 
473 	return true;
474 }
475 EXPORT_SYMBOL(drm_bridge_chain_mode_fixup);
476 
477 /**
478  * drm_bridge_chain_mode_valid - validate the mode against all bridges in the
479  *				 encoder chain.
480  * @bridge: bridge control structure
481  * @info: display info against which the mode shall be validated
482  * @mode: desired mode to be validated
483  *
484  * Calls &drm_bridge_funcs.mode_valid for all the bridges in the encoder
485  * chain, starting from the first bridge to the last. If at least one bridge
486  * does not accept the mode the function returns the error code.
487  *
488  * Note: the bridge passed should be the one closest to the encoder.
489  *
490  * RETURNS:
491  * MODE_OK on success, drm_mode_status Enum error code on failure
492  */
493 enum drm_mode_status
494 drm_bridge_chain_mode_valid(struct drm_bridge *bridge,
495 			    const struct drm_display_info *info,
496 			    const struct drm_display_mode *mode)
497 {
498 	struct drm_encoder *encoder;
499 
500 	if (!bridge)
501 		return MODE_OK;
502 
503 	encoder = bridge->encoder;
504 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
505 		enum drm_mode_status ret;
506 
507 		if (!bridge->funcs->mode_valid)
508 			continue;
509 
510 		ret = bridge->funcs->mode_valid(bridge, info, mode);
511 		if (ret != MODE_OK)
512 			return ret;
513 	}
514 
515 	return MODE_OK;
516 }
517 EXPORT_SYMBOL(drm_bridge_chain_mode_valid);
518 
519 /**
520  * drm_bridge_chain_disable - disables all bridges in the encoder chain
521  * @bridge: bridge control structure
522  *
523  * Calls &drm_bridge_funcs.disable op for all the bridges in the encoder
524  * chain, starting from the last bridge to the first. These are called before
525  * calling the encoder's prepare op.
526  *
527  * Note: the bridge passed should be the one closest to the encoder
528  */
529 void drm_bridge_chain_disable(struct drm_bridge *bridge)
530 {
531 	struct drm_encoder *encoder;
532 	struct drm_bridge *iter;
533 
534 	if (!bridge)
535 		return;
536 
537 	encoder = bridge->encoder;
538 	list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
539 		if (iter->funcs->disable)
540 			iter->funcs->disable(iter);
541 
542 		if (iter == bridge)
543 			break;
544 	}
545 }
546 EXPORT_SYMBOL(drm_bridge_chain_disable);
547 
548 /**
549  * drm_bridge_chain_post_disable - cleans up after disabling all bridges in the
550  *				   encoder chain
551  * @bridge: bridge control structure
552  *
553  * Calls &drm_bridge_funcs.post_disable op for all the bridges in the
554  * encoder chain, starting from the first bridge to the last. These are called
555  * after completing the encoder's prepare op.
556  *
557  * Note: the bridge passed should be the one closest to the encoder
558  */
559 void drm_bridge_chain_post_disable(struct drm_bridge *bridge)
560 {
561 	struct drm_encoder *encoder;
562 
563 	if (!bridge)
564 		return;
565 
566 	encoder = bridge->encoder;
567 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
568 		if (bridge->funcs->post_disable)
569 			bridge->funcs->post_disable(bridge);
570 	}
571 }
572 EXPORT_SYMBOL(drm_bridge_chain_post_disable);
573 
574 /**
575  * drm_bridge_chain_mode_set - set proposed mode for all bridges in the
576  *			       encoder chain
577  * @bridge: bridge control structure
578  * @mode: desired mode to be set for the encoder chain
579  * @adjusted_mode: updated mode that works for this encoder chain
580  *
581  * Calls &drm_bridge_funcs.mode_set op for all the bridges in the
582  * encoder chain, starting from the first bridge to the last.
583  *
584  * Note: the bridge passed should be the one closest to the encoder
585  */
586 void drm_bridge_chain_mode_set(struct drm_bridge *bridge,
587 			       const struct drm_display_mode *mode,
588 			       const struct drm_display_mode *adjusted_mode)
589 {
590 	struct drm_encoder *encoder;
591 
592 	if (!bridge)
593 		return;
594 
595 	encoder = bridge->encoder;
596 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
597 		if (bridge->funcs->mode_set)
598 			bridge->funcs->mode_set(bridge, mode, adjusted_mode);
599 	}
600 }
601 EXPORT_SYMBOL(drm_bridge_chain_mode_set);
602 
603 /**
604  * drm_bridge_chain_pre_enable - prepares for enabling all bridges in the
605  *				 encoder chain
606  * @bridge: bridge control structure
607  *
608  * Calls &drm_bridge_funcs.pre_enable op for all the bridges in the encoder
609  * chain, starting from the last bridge to the first. These are called
610  * before calling the encoder's commit op.
611  *
612  * Note: the bridge passed should be the one closest to the encoder
613  */
614 void drm_bridge_chain_pre_enable(struct drm_bridge *bridge)
615 {
616 	struct drm_encoder *encoder;
617 	struct drm_bridge *iter;
618 
619 	if (!bridge)
620 		return;
621 
622 	encoder = bridge->encoder;
623 	list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
624 		if (iter->funcs->pre_enable)
625 			iter->funcs->pre_enable(iter);
626 
627 		if (iter == bridge)
628 			break;
629 	}
630 }
631 EXPORT_SYMBOL(drm_bridge_chain_pre_enable);
632 
633 /**
634  * drm_bridge_chain_enable - enables all bridges in the encoder chain
635  * @bridge: bridge control structure
636  *
637  * Calls &drm_bridge_funcs.enable op for all the bridges in the encoder
638  * chain, starting from the first bridge to the last. These are called
639  * after completing the encoder's commit op.
640  *
641  * Note that the bridge passed should be the one closest to the encoder
642  */
643 void drm_bridge_chain_enable(struct drm_bridge *bridge)
644 {
645 	struct drm_encoder *encoder;
646 
647 	if (!bridge)
648 		return;
649 
650 	encoder = bridge->encoder;
651 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
652 		if (bridge->funcs->enable)
653 			bridge->funcs->enable(bridge);
654 	}
655 }
656 EXPORT_SYMBOL(drm_bridge_chain_enable);
657 
658 /**
659  * drm_atomic_bridge_chain_disable - disables all bridges in the encoder chain
660  * @bridge: bridge control structure
661  * @old_state: old atomic state
662  *
663  * Calls &drm_bridge_funcs.atomic_disable (falls back on
664  * &drm_bridge_funcs.disable) op for all the bridges in the encoder chain,
665  * starting from the last bridge to the first. These are called before calling
666  * &drm_encoder_helper_funcs.atomic_disable
667  *
668  * Note: the bridge passed should be the one closest to the encoder
669  */
670 void drm_atomic_bridge_chain_disable(struct drm_bridge *bridge,
671 				     struct drm_atomic_state *old_state)
672 {
673 	struct drm_encoder *encoder;
674 	struct drm_bridge *iter;
675 
676 	if (!bridge)
677 		return;
678 
679 	encoder = bridge->encoder;
680 	list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
681 		if (iter->funcs->atomic_disable) {
682 			struct drm_bridge_state *old_bridge_state;
683 
684 			old_bridge_state =
685 				drm_atomic_get_old_bridge_state(old_state,
686 								iter);
687 			if (WARN_ON(!old_bridge_state))
688 				return;
689 
690 			iter->funcs->atomic_disable(iter, old_bridge_state);
691 		} else if (iter->funcs->disable) {
692 			iter->funcs->disable(iter);
693 		}
694 
695 		if (iter == bridge)
696 			break;
697 	}
698 }
699 EXPORT_SYMBOL(drm_atomic_bridge_chain_disable);
700 
701 /**
702  * drm_atomic_bridge_chain_post_disable - cleans up after disabling all bridges
703  *					  in the encoder chain
704  * @bridge: bridge control structure
705  * @old_state: old atomic state
706  *
707  * Calls &drm_bridge_funcs.atomic_post_disable (falls back on
708  * &drm_bridge_funcs.post_disable) op for all the bridges in the encoder chain,
709  * starting from the first bridge to the last. These are called after completing
710  * &drm_encoder_helper_funcs.atomic_disable
711  *
712  * Note: the bridge passed should be the one closest to the encoder
713  */
714 void drm_atomic_bridge_chain_post_disable(struct drm_bridge *bridge,
715 					  struct drm_atomic_state *old_state)
716 {
717 	struct drm_encoder *encoder;
718 
719 	if (!bridge)
720 		return;
721 
722 	encoder = bridge->encoder;
723 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
724 		if (bridge->funcs->atomic_post_disable) {
725 			struct drm_bridge_state *old_bridge_state;
726 
727 			old_bridge_state =
728 				drm_atomic_get_old_bridge_state(old_state,
729 								bridge);
730 			if (WARN_ON(!old_bridge_state))
731 				return;
732 
733 			bridge->funcs->atomic_post_disable(bridge,
734 							   old_bridge_state);
735 		} else if (bridge->funcs->post_disable) {
736 			bridge->funcs->post_disable(bridge);
737 		}
738 	}
739 }
740 EXPORT_SYMBOL(drm_atomic_bridge_chain_post_disable);
741 
742 /**
743  * drm_atomic_bridge_chain_pre_enable - prepares for enabling all bridges in
744  *					the encoder chain
745  * @bridge: bridge control structure
746  * @old_state: old atomic state
747  *
748  * Calls &drm_bridge_funcs.atomic_pre_enable (falls back on
749  * &drm_bridge_funcs.pre_enable) op for all the bridges in the encoder chain,
750  * starting from the last bridge to the first. These are called before calling
751  * &drm_encoder_helper_funcs.atomic_enable
752  *
753  * Note: the bridge passed should be the one closest to the encoder
754  */
755 void drm_atomic_bridge_chain_pre_enable(struct drm_bridge *bridge,
756 					struct drm_atomic_state *old_state)
757 {
758 	struct drm_encoder *encoder;
759 	struct drm_bridge *iter;
760 
761 	if (!bridge)
762 		return;
763 
764 	encoder = bridge->encoder;
765 	list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
766 		if (iter->funcs->atomic_pre_enable) {
767 			struct drm_bridge_state *old_bridge_state;
768 
769 			old_bridge_state =
770 				drm_atomic_get_old_bridge_state(old_state,
771 								iter);
772 			if (WARN_ON(!old_bridge_state))
773 				return;
774 
775 			iter->funcs->atomic_pre_enable(iter, old_bridge_state);
776 		} else if (iter->funcs->pre_enable) {
777 			iter->funcs->pre_enable(iter);
778 		}
779 
780 		if (iter == bridge)
781 			break;
782 	}
783 }
784 EXPORT_SYMBOL(drm_atomic_bridge_chain_pre_enable);
785 
786 /**
787  * drm_atomic_bridge_chain_enable - enables all bridges in the encoder chain
788  * @bridge: bridge control structure
789  * @old_state: old atomic state
790  *
791  * Calls &drm_bridge_funcs.atomic_enable (falls back on
792  * &drm_bridge_funcs.enable) op for all the bridges in the encoder chain,
793  * starting from the first bridge to the last. These are called after completing
794  * &drm_encoder_helper_funcs.atomic_enable
795  *
796  * Note: the bridge passed should be the one closest to the encoder
797  */
798 void drm_atomic_bridge_chain_enable(struct drm_bridge *bridge,
799 				    struct drm_atomic_state *old_state)
800 {
801 	struct drm_encoder *encoder;
802 
803 	if (!bridge)
804 		return;
805 
806 	encoder = bridge->encoder;
807 	list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
808 		if (bridge->funcs->atomic_enable) {
809 			struct drm_bridge_state *old_bridge_state;
810 
811 			old_bridge_state =
812 				drm_atomic_get_old_bridge_state(old_state,
813 								bridge);
814 			if (WARN_ON(!old_bridge_state))
815 				return;
816 
817 			bridge->funcs->atomic_enable(bridge, old_bridge_state);
818 		} else if (bridge->funcs->enable) {
819 			bridge->funcs->enable(bridge);
820 		}
821 	}
822 }
823 EXPORT_SYMBOL(drm_atomic_bridge_chain_enable);
824 
825 static int drm_atomic_bridge_check(struct drm_bridge *bridge,
826 				   struct drm_crtc_state *crtc_state,
827 				   struct drm_connector_state *conn_state)
828 {
829 	if (bridge->funcs->atomic_check) {
830 		struct drm_bridge_state *bridge_state;
831 		int ret;
832 
833 		bridge_state = drm_atomic_get_new_bridge_state(crtc_state->state,
834 							       bridge);
835 		if (WARN_ON(!bridge_state))
836 			return -EINVAL;
837 
838 		ret = bridge->funcs->atomic_check(bridge, bridge_state,
839 						  crtc_state, conn_state);
840 		if (ret)
841 			return ret;
842 	} else if (bridge->funcs->mode_fixup) {
843 		if (!bridge->funcs->mode_fixup(bridge, &crtc_state->mode,
844 					       &crtc_state->adjusted_mode))
845 			return -EINVAL;
846 	}
847 
848 	return 0;
849 }
850 
851 static int select_bus_fmt_recursive(struct drm_bridge *first_bridge,
852 				    struct drm_bridge *cur_bridge,
853 				    struct drm_crtc_state *crtc_state,
854 				    struct drm_connector_state *conn_state,
855 				    u32 out_bus_fmt)
856 {
857 	unsigned int i, num_in_bus_fmts = 0;
858 	struct drm_bridge_state *cur_state;
859 	struct drm_bridge *prev_bridge;
860 	u32 *in_bus_fmts;
861 	int ret;
862 
863 	prev_bridge = drm_bridge_get_prev_bridge(cur_bridge);
864 	cur_state = drm_atomic_get_new_bridge_state(crtc_state->state,
865 						    cur_bridge);
866 
867 	/*
868 	 * If bus format negotiation is not supported by this bridge, let's
869 	 * pass MEDIA_BUS_FMT_FIXED to the previous bridge in the chain and
870 	 * hope that it can handle this situation gracefully (by providing
871 	 * appropriate default values).
872 	 */
873 	if (!cur_bridge->funcs->atomic_get_input_bus_fmts) {
874 		if (cur_bridge != first_bridge) {
875 			ret = select_bus_fmt_recursive(first_bridge,
876 						       prev_bridge, crtc_state,
877 						       conn_state,
878 						       MEDIA_BUS_FMT_FIXED);
879 			if (ret)
880 				return ret;
881 		}
882 
883 		/*
884 		 * Driver does not implement the atomic state hooks, but that's
885 		 * fine, as long as it does not access the bridge state.
886 		 */
887 		if (cur_state) {
888 			cur_state->input_bus_cfg.format = MEDIA_BUS_FMT_FIXED;
889 			cur_state->output_bus_cfg.format = out_bus_fmt;
890 		}
891 
892 		return 0;
893 	}
894 
895 	/*
896 	 * If the driver implements ->atomic_get_input_bus_fmts() it
897 	 * should also implement the atomic state hooks.
898 	 */
899 	if (WARN_ON(!cur_state))
900 		return -EINVAL;
901 
902 	in_bus_fmts = cur_bridge->funcs->atomic_get_input_bus_fmts(cur_bridge,
903 							cur_state,
904 							crtc_state,
905 							conn_state,
906 							out_bus_fmt,
907 							&num_in_bus_fmts);
908 	if (!num_in_bus_fmts)
909 		return -ENOTSUPP;
910 	else if (!in_bus_fmts)
911 		return -ENOMEM;
912 
913 	if (first_bridge == cur_bridge) {
914 		cur_state->input_bus_cfg.format = in_bus_fmts[0];
915 		cur_state->output_bus_cfg.format = out_bus_fmt;
916 		kfree(in_bus_fmts);
917 		return 0;
918 	}
919 
920 	for (i = 0; i < num_in_bus_fmts; i++) {
921 		ret = select_bus_fmt_recursive(first_bridge, prev_bridge,
922 					       crtc_state, conn_state,
923 					       in_bus_fmts[i]);
924 		if (ret != -ENOTSUPP)
925 			break;
926 	}
927 
928 	if (!ret) {
929 		cur_state->input_bus_cfg.format = in_bus_fmts[i];
930 		cur_state->output_bus_cfg.format = out_bus_fmt;
931 	}
932 
933 	kfree(in_bus_fmts);
934 	return ret;
935 }
936 
937 /*
938  * This function is called by &drm_atomic_bridge_chain_check() just before
939  * calling &drm_bridge_funcs.atomic_check() on all elements of the chain.
940  * It performs bus format negotiation between bridge elements. The negotiation
941  * happens in reverse order, starting from the last element in the chain up to
942  * @bridge.
943  *
944  * Negotiation starts by retrieving supported output bus formats on the last
945  * bridge element and testing them one by one. The test is recursive, meaning
946  * that for each tested output format, the whole chain will be walked backward,
947  * and each element will have to choose an input bus format that can be
948  * transcoded to the requested output format. When a bridge element does not
949  * support transcoding into a specific output format -ENOTSUPP is returned and
950  * the next bridge element will have to try a different format. If none of the
951  * combinations worked, -ENOTSUPP is returned and the atomic modeset will fail.
952  *
953  * This implementation is relying on
954  * &drm_bridge_funcs.atomic_get_output_bus_fmts() and
955  * &drm_bridge_funcs.atomic_get_input_bus_fmts() to gather supported
956  * input/output formats.
957  *
958  * When &drm_bridge_funcs.atomic_get_output_bus_fmts() is not implemented by
959  * the last element of the chain, &drm_atomic_bridge_chain_select_bus_fmts()
960  * tries a single format: &drm_connector.display_info.bus_formats[0] if
961  * available, MEDIA_BUS_FMT_FIXED otherwise.
962  *
963  * When &drm_bridge_funcs.atomic_get_input_bus_fmts() is not implemented,
964  * &drm_atomic_bridge_chain_select_bus_fmts() skips the negotiation on the
965  * bridge element that lacks this hook and asks the previous element in the
966  * chain to try MEDIA_BUS_FMT_FIXED. It's up to bridge drivers to decide what
967  * to do in that case (fail if they want to enforce bus format negotiation, or
968  * provide a reasonable default if they need to support pipelines where not
969  * all elements support bus format negotiation).
970  */
971 static int
972 drm_atomic_bridge_chain_select_bus_fmts(struct drm_bridge *bridge,
973 					struct drm_crtc_state *crtc_state,
974 					struct drm_connector_state *conn_state)
975 {
976 	struct drm_connector *conn = conn_state->connector;
977 	struct drm_encoder *encoder = bridge->encoder;
978 	struct drm_bridge_state *last_bridge_state;
979 	unsigned int i, num_out_bus_fmts = 0;
980 	struct drm_bridge *last_bridge;
981 	u32 *out_bus_fmts;
982 	int ret = 0;
983 
984 	last_bridge = list_last_entry(&encoder->bridge_chain,
985 				      struct drm_bridge, chain_node);
986 	last_bridge_state = drm_atomic_get_new_bridge_state(crtc_state->state,
987 							    last_bridge);
988 
989 	if (last_bridge->funcs->atomic_get_output_bus_fmts) {
990 		const struct drm_bridge_funcs *funcs = last_bridge->funcs;
991 
992 		/*
993 		 * If the driver implements ->atomic_get_output_bus_fmts() it
994 		 * should also implement the atomic state hooks.
995 		 */
996 		if (WARN_ON(!last_bridge_state))
997 			return -EINVAL;
998 
999 		out_bus_fmts = funcs->atomic_get_output_bus_fmts(last_bridge,
1000 							last_bridge_state,
1001 							crtc_state,
1002 							conn_state,
1003 							&num_out_bus_fmts);
1004 		if (!num_out_bus_fmts)
1005 			return -ENOTSUPP;
1006 		else if (!out_bus_fmts)
1007 			return -ENOMEM;
1008 	} else {
1009 		num_out_bus_fmts = 1;
1010 		out_bus_fmts = kmalloc(sizeof(*out_bus_fmts), GFP_KERNEL);
1011 		if (!out_bus_fmts)
1012 			return -ENOMEM;
1013 
1014 		if (conn->display_info.num_bus_formats &&
1015 		    conn->display_info.bus_formats)
1016 			out_bus_fmts[0] = conn->display_info.bus_formats[0];
1017 		else
1018 			out_bus_fmts[0] = MEDIA_BUS_FMT_FIXED;
1019 	}
1020 
1021 	for (i = 0; i < num_out_bus_fmts; i++) {
1022 		ret = select_bus_fmt_recursive(bridge, last_bridge, crtc_state,
1023 					       conn_state, out_bus_fmts[i]);
1024 		if (ret != -ENOTSUPP)
1025 			break;
1026 	}
1027 
1028 	kfree(out_bus_fmts);
1029 
1030 	return ret;
1031 }
1032 
1033 static void
1034 drm_atomic_bridge_propagate_bus_flags(struct drm_bridge *bridge,
1035 				      struct drm_connector *conn,
1036 				      struct drm_atomic_state *state)
1037 {
1038 	struct drm_bridge_state *bridge_state, *next_bridge_state;
1039 	struct drm_bridge *next_bridge;
1040 	u32 output_flags = 0;
1041 
1042 	bridge_state = drm_atomic_get_new_bridge_state(state, bridge);
1043 
1044 	/* No bridge state attached to this bridge => nothing to propagate. */
1045 	if (!bridge_state)
1046 		return;
1047 
1048 	next_bridge = drm_bridge_get_next_bridge(bridge);
1049 
1050 	/*
1051 	 * Let's try to apply the most common case here, that is, propagate
1052 	 * display_info flags for the last bridge, and propagate the input
1053 	 * flags of the next bridge element to the output end of the current
1054 	 * bridge when the bridge is not the last one.
1055 	 * There are exceptions to this rule, like when signal inversion is
1056 	 * happening at the board level, but that's something drivers can deal
1057 	 * with from their &drm_bridge_funcs.atomic_check() implementation by
1058 	 * simply overriding the flags value we've set here.
1059 	 */
1060 	if (!next_bridge) {
1061 		output_flags = conn->display_info.bus_flags;
1062 	} else {
1063 		next_bridge_state = drm_atomic_get_new_bridge_state(state,
1064 								next_bridge);
1065 		/*
1066 		 * No bridge state attached to the next bridge, just leave the
1067 		 * flags to 0.
1068 		 */
1069 		if (next_bridge_state)
1070 			output_flags = next_bridge_state->input_bus_cfg.flags;
1071 	}
1072 
1073 	bridge_state->output_bus_cfg.flags = output_flags;
1074 
1075 	/*
1076 	 * Propagate the output flags to the input end of the bridge. Again, it's
1077 	 * not necessarily what all bridges want, but that's what most of them
1078 	 * do, and by doing that by default we avoid forcing drivers to
1079 	 * duplicate the "dummy propagation" logic.
1080 	 */
1081 	bridge_state->input_bus_cfg.flags = output_flags;
1082 }
1083 
1084 /**
1085  * drm_atomic_bridge_chain_check() - Do an atomic check on the bridge chain
1086  * @bridge: bridge control structure
1087  * @crtc_state: new CRTC state
1088  * @conn_state: new connector state
1089  *
1090  * First trigger a bus format negotiation before calling
1091  * &drm_bridge_funcs.atomic_check() (falls back on
1092  * &drm_bridge_funcs.mode_fixup()) op for all the bridges in the encoder chain,
1093  * starting from the last bridge to the first. These are called before calling
1094  * &drm_encoder_helper_funcs.atomic_check()
1095  *
1096  * RETURNS:
1097  * 0 on success, a negative error code on failure
1098  */
1099 int drm_atomic_bridge_chain_check(struct drm_bridge *bridge,
1100 				  struct drm_crtc_state *crtc_state,
1101 				  struct drm_connector_state *conn_state)
1102 {
1103 	struct drm_connector *conn = conn_state->connector;
1104 	struct drm_encoder *encoder;
1105 	struct drm_bridge *iter;
1106 	int ret;
1107 
1108 	if (!bridge)
1109 		return 0;
1110 
1111 	ret = drm_atomic_bridge_chain_select_bus_fmts(bridge, crtc_state,
1112 						      conn_state);
1113 	if (ret)
1114 		return ret;
1115 
1116 	encoder = bridge->encoder;
1117 	list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
1118 		int ret;
1119 
1120 		/*
1121 		 * Bus flags are propagated by default. If a bridge needs to
1122 		 * tweak the input bus flags for any reason, it should happen
1123 		 * in its &drm_bridge_funcs.atomic_check() implementation such
1124 		 * that preceding bridges in the chain can propagate the new
1125 		 * bus flags.
1126 		 */
1127 		drm_atomic_bridge_propagate_bus_flags(iter, conn,
1128 						      crtc_state->state);
1129 
1130 		ret = drm_atomic_bridge_check(iter, crtc_state, conn_state);
1131 		if (ret)
1132 			return ret;
1133 
1134 		if (iter == bridge)
1135 			break;
1136 	}
1137 
1138 	return 0;
1139 }
1140 EXPORT_SYMBOL(drm_atomic_bridge_chain_check);
1141 
1142 /**
1143  * drm_bridge_detect - check if anything is attached to the bridge output
1144  * @bridge: bridge control structure
1145  *
1146  * If the bridge supports output detection, as reported by the
1147  * DRM_BRIDGE_OP_DETECT bridge ops flag, call &drm_bridge_funcs.detect for the
1148  * bridge and return the connection status. Otherwise return
1149  * connector_status_unknown.
1150  *
1151  * RETURNS:
1152  * The detection status on success, or connector_status_unknown if the bridge
1153  * doesn't support output detection.
1154  */
1155 enum drm_connector_status drm_bridge_detect(struct drm_bridge *bridge)
1156 {
1157 	if (!(bridge->ops & DRM_BRIDGE_OP_DETECT))
1158 		return connector_status_unknown;
1159 
1160 	return bridge->funcs->detect(bridge);
1161 }
1162 EXPORT_SYMBOL_GPL(drm_bridge_detect);
1163 
1164 /**
1165  * drm_bridge_get_modes - fill all modes currently valid for the sink into the
1166  * @connector
1167  * @bridge: bridge control structure
1168  * @connector: the connector to fill with modes
1169  *
1170  * If the bridge supports output modes retrieval, as reported by the
1171  * DRM_BRIDGE_OP_MODES bridge ops flag, call &drm_bridge_funcs.get_modes to
1172  * fill the connector with all valid modes and return the number of modes
1173  * added. Otherwise return 0.
1174  *
1175  * RETURNS:
1176  * The number of modes added to the connector.
1177  */
1178 int drm_bridge_get_modes(struct drm_bridge *bridge,
1179 			 struct drm_connector *connector)
1180 {
1181 	if (!(bridge->ops & DRM_BRIDGE_OP_MODES))
1182 		return 0;
1183 
1184 	return bridge->funcs->get_modes(bridge, connector);
1185 }
1186 EXPORT_SYMBOL_GPL(drm_bridge_get_modes);
1187 
1188 /**
1189  * drm_bridge_get_edid - get the EDID data of the connected display
1190  * @bridge: bridge control structure
1191  * @connector: the connector to read EDID for
1192  *
1193  * If the bridge supports output EDID retrieval, as reported by the
1194  * DRM_BRIDGE_OP_EDID bridge ops flag, call &drm_bridge_funcs.get_edid to
1195  * get the EDID and return it. Otherwise return NULL.
1196  *
1197  * RETURNS:
1198  * The retrieved EDID on success, or NULL otherwise.
1199  */
1200 struct edid *drm_bridge_get_edid(struct drm_bridge *bridge,
1201 				 struct drm_connector *connector)
1202 {
1203 	if (!(bridge->ops & DRM_BRIDGE_OP_EDID))
1204 		return NULL;
1205 
1206 	return bridge->funcs->get_edid(bridge, connector);
1207 }
1208 EXPORT_SYMBOL_GPL(drm_bridge_get_edid);
1209 
1210 /**
1211  * drm_bridge_hpd_enable - enable hot plug detection for the bridge
1212  * @bridge: bridge control structure
1213  * @cb: hot-plug detection callback
1214  * @data: data to be passed to the hot-plug detection callback
1215  *
1216  * Call &drm_bridge_funcs.hpd_enable if implemented and register the given @cb
1217  * and @data as hot plug notification callback. From now on the @cb will be
1218  * called with @data when an output status change is detected by the bridge,
1219  * until hot plug notification gets disabled with drm_bridge_hpd_disable().
1220  *
1221  * Hot plug detection is supported only if the DRM_BRIDGE_OP_HPD flag is set in
1222  * bridge->ops. This function shall not be called when the flag is not set.
1223  *
1224  * Only one hot plug detection callback can be registered at a time, it is an
1225  * error to call this function when hot plug detection is already enabled for
1226  * the bridge.
1227  */
1228 void drm_bridge_hpd_enable(struct drm_bridge *bridge,
1229 			   void (*cb)(void *data,
1230 				      enum drm_connector_status status),
1231 			   void *data)
1232 {
1233 	if (!(bridge->ops & DRM_BRIDGE_OP_HPD))
1234 		return;
1235 
1236 	mutex_lock(&bridge->hpd_mutex);
1237 
1238 	if (WARN(bridge->hpd_cb, "Hot plug detection already enabled\n"))
1239 		goto unlock;
1240 
1241 	bridge->hpd_cb = cb;
1242 	bridge->hpd_data = data;
1243 
1244 	if (bridge->funcs->hpd_enable)
1245 		bridge->funcs->hpd_enable(bridge);
1246 
1247 unlock:
1248 	mutex_unlock(&bridge->hpd_mutex);
1249 }
1250 EXPORT_SYMBOL_GPL(drm_bridge_hpd_enable);
1251 
1252 /**
1253  * drm_bridge_hpd_disable - disable hot plug detection for the bridge
1254  * @bridge: bridge control structure
1255  *
1256  * Call &drm_bridge_funcs.hpd_disable if implemented and unregister the hot
1257  * plug detection callback previously registered with drm_bridge_hpd_enable().
1258  * Once this function returns the callback will not be called by the bridge
1259  * when an output status change occurs.
1260  *
1261  * Hot plug detection is supported only if the DRM_BRIDGE_OP_HPD flag is set in
1262  * bridge->ops. This function shall not be called when the flag is not set.
1263  */
1264 void drm_bridge_hpd_disable(struct drm_bridge *bridge)
1265 {
1266 	if (!(bridge->ops & DRM_BRIDGE_OP_HPD))
1267 		return;
1268 
1269 	mutex_lock(&bridge->hpd_mutex);
1270 	if (bridge->funcs->hpd_disable)
1271 		bridge->funcs->hpd_disable(bridge);
1272 
1273 	bridge->hpd_cb = NULL;
1274 	bridge->hpd_data = NULL;
1275 	mutex_unlock(&bridge->hpd_mutex);
1276 }
1277 EXPORT_SYMBOL_GPL(drm_bridge_hpd_disable);
1278 
1279 /**
1280  * drm_bridge_hpd_notify - notify hot plug detection events
1281  * @bridge: bridge control structure
1282  * @status: output connection status
1283  *
1284  * Bridge drivers shall call this function to report hot plug events when they
1285  * detect a change in the output status, when hot plug detection has been
1286  * enabled by drm_bridge_hpd_enable().
1287  *
1288  * This function shall be called in a context that can sleep.
1289  */
1290 void drm_bridge_hpd_notify(struct drm_bridge *bridge,
1291 			   enum drm_connector_status status)
1292 {
1293 	mutex_lock(&bridge->hpd_mutex);
1294 	if (bridge->hpd_cb)
1295 		bridge->hpd_cb(bridge->hpd_data, status);
1296 	mutex_unlock(&bridge->hpd_mutex);
1297 }
1298 EXPORT_SYMBOL_GPL(drm_bridge_hpd_notify);
1299 
1300 #ifdef CONFIG_OF
1301 /**
1302  * of_drm_find_bridge - find the bridge corresponding to the device node in
1303  *			the global bridge list
1304  *
1305  * @np: device node
1306  *
1307  * RETURNS:
1308  * drm_bridge control struct on success, NULL on failure
1309  */
1310 struct drm_bridge *of_drm_find_bridge(struct device_node *np)
1311 {
1312 	struct drm_bridge *bridge;
1313 
1314 	mutex_lock(&bridge_lock);
1315 
1316 	list_for_each_entry(bridge, &bridge_list, list) {
1317 		if (bridge->of_node == np) {
1318 			mutex_unlock(&bridge_lock);
1319 			return bridge;
1320 		}
1321 	}
1322 
1323 	mutex_unlock(&bridge_lock);
1324 	return NULL;
1325 }
1326 EXPORT_SYMBOL(of_drm_find_bridge);
1327 #endif
1328 
1329 MODULE_AUTHOR("Ajay Kumar <ajaykumar.rs@samsung.com>");
1330 MODULE_DESCRIPTION("DRM bridge infrastructure");
1331 MODULE_LICENSE("GPL and additional rights");
1332