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