xref: /openbmc/linux/drivers/gpu/drm/bridge/panel.c (revision ee68c743)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
213dfc054SEric Anholt /*
313dfc054SEric Anholt  * Copyright (C) 2016 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
413dfc054SEric Anholt  * Copyright (C) 2017 Broadcom
513dfc054SEric Anholt  */
613dfc054SEric Anholt 
713dfc054SEric Anholt #include <drm/drm_atomic_helper.h>
8ee68c743SBoris Brezillon #include <drm/drm_bridge.h>
913dfc054SEric Anholt #include <drm/drm_connector.h>
1013dfc054SEric Anholt #include <drm/drm_encoder.h>
1113dfc054SEric Anholt #include <drm/drm_modeset_helper_vtables.h>
1213dfc054SEric Anholt #include <drm/drm_panel.h>
1395b60804SSam Ravnborg #include <drm/drm_print.h>
1478666baaSSabyasachi Gupta #include <drm/drm_probe_helper.h>
1513dfc054SEric Anholt 
1613dfc054SEric Anholt struct panel_bridge {
1713dfc054SEric Anholt 	struct drm_bridge bridge;
1813dfc054SEric Anholt 	struct drm_connector connector;
1913dfc054SEric Anholt 	struct drm_panel *panel;
2013dfc054SEric Anholt 	u32 connector_type;
2113dfc054SEric Anholt };
2213dfc054SEric Anholt 
2313dfc054SEric Anholt static inline struct panel_bridge *
2413dfc054SEric Anholt drm_bridge_to_panel_bridge(struct drm_bridge *bridge)
2513dfc054SEric Anholt {
2613dfc054SEric Anholt 	return container_of(bridge, struct panel_bridge, bridge);
2713dfc054SEric Anholt }
2813dfc054SEric Anholt 
2913dfc054SEric Anholt static inline struct panel_bridge *
3013dfc054SEric Anholt drm_connector_to_panel_bridge(struct drm_connector *connector)
3113dfc054SEric Anholt {
3213dfc054SEric Anholt 	return container_of(connector, struct panel_bridge, connector);
3313dfc054SEric Anholt }
3413dfc054SEric Anholt 
3513dfc054SEric Anholt static int panel_bridge_connector_get_modes(struct drm_connector *connector)
3613dfc054SEric Anholt {
3713dfc054SEric Anholt 	struct panel_bridge *panel_bridge =
3813dfc054SEric Anholt 		drm_connector_to_panel_bridge(connector);
3913dfc054SEric Anholt 
4013dfc054SEric Anholt 	return drm_panel_get_modes(panel_bridge->panel);
4113dfc054SEric Anholt }
4213dfc054SEric Anholt 
4313dfc054SEric Anholt static const struct drm_connector_helper_funcs
4413dfc054SEric Anholt panel_bridge_connector_helper_funcs = {
4513dfc054SEric Anholt 	.get_modes = panel_bridge_connector_get_modes,
4613dfc054SEric Anholt };
4713dfc054SEric Anholt 
4813dfc054SEric Anholt static const struct drm_connector_funcs panel_bridge_connector_funcs = {
4913dfc054SEric Anholt 	.reset = drm_atomic_helper_connector_reset,
5013dfc054SEric Anholt 	.fill_modes = drm_helper_probe_single_connector_modes,
5113dfc054SEric Anholt 	.destroy = drm_connector_cleanup,
5213dfc054SEric Anholt 	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
5313dfc054SEric Anholt 	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
5413dfc054SEric Anholt };
5513dfc054SEric Anholt 
5613dfc054SEric Anholt static int panel_bridge_attach(struct drm_bridge *bridge)
5713dfc054SEric Anholt {
5813dfc054SEric Anholt 	struct panel_bridge *panel_bridge = drm_bridge_to_panel_bridge(bridge);
5913dfc054SEric Anholt 	struct drm_connector *connector = &panel_bridge->connector;
6013dfc054SEric Anholt 	int ret;
6113dfc054SEric Anholt 
6213dfc054SEric Anholt 	if (!bridge->encoder) {
6313dfc054SEric Anholt 		DRM_ERROR("Missing encoder\n");
6413dfc054SEric Anholt 		return -ENODEV;
6513dfc054SEric Anholt 	}
6613dfc054SEric Anholt 
6713dfc054SEric Anholt 	drm_connector_helper_add(connector,
6813dfc054SEric Anholt 				 &panel_bridge_connector_helper_funcs);
6913dfc054SEric Anholt 
7013dfc054SEric Anholt 	ret = drm_connector_init(bridge->dev, connector,
7113dfc054SEric Anholt 				 &panel_bridge_connector_funcs,
7213dfc054SEric Anholt 				 panel_bridge->connector_type);
7313dfc054SEric Anholt 	if (ret) {
7413dfc054SEric Anholt 		DRM_ERROR("Failed to initialize connector\n");
7513dfc054SEric Anholt 		return ret;
7613dfc054SEric Anholt 	}
7713dfc054SEric Anholt 
78cde4c44dSDaniel Vetter 	drm_connector_attach_encoder(&panel_bridge->connector,
7913dfc054SEric Anholt 					  bridge->encoder);
8013dfc054SEric Anholt 
8113dfc054SEric Anholt 	ret = drm_panel_attach(panel_bridge->panel, &panel_bridge->connector);
8213dfc054SEric Anholt 	if (ret < 0)
8313dfc054SEric Anholt 		return ret;
8413dfc054SEric Anholt 
8513dfc054SEric Anholt 	return 0;
8613dfc054SEric Anholt }
8713dfc054SEric Anholt 
8813dfc054SEric Anholt static void panel_bridge_detach(struct drm_bridge *bridge)
8913dfc054SEric Anholt {
9013dfc054SEric Anholt 	struct panel_bridge *panel_bridge = drm_bridge_to_panel_bridge(bridge);
9113dfc054SEric Anholt 
9213dfc054SEric Anholt 	drm_panel_detach(panel_bridge->panel);
9313dfc054SEric Anholt }
9413dfc054SEric Anholt 
9513dfc054SEric Anholt static void panel_bridge_pre_enable(struct drm_bridge *bridge)
9613dfc054SEric Anholt {
9713dfc054SEric Anholt 	struct panel_bridge *panel_bridge = drm_bridge_to_panel_bridge(bridge);
9813dfc054SEric Anholt 
9913dfc054SEric Anholt 	drm_panel_prepare(panel_bridge->panel);
10013dfc054SEric Anholt }
10113dfc054SEric Anholt 
10213dfc054SEric Anholt static void panel_bridge_enable(struct drm_bridge *bridge)
10313dfc054SEric Anholt {
10413dfc054SEric Anholt 	struct panel_bridge *panel_bridge = drm_bridge_to_panel_bridge(bridge);
10513dfc054SEric Anholt 
10613dfc054SEric Anholt 	drm_panel_enable(panel_bridge->panel);
10713dfc054SEric Anholt }
10813dfc054SEric Anholt 
10913dfc054SEric Anholt static void panel_bridge_disable(struct drm_bridge *bridge)
11013dfc054SEric Anholt {
11113dfc054SEric Anholt 	struct panel_bridge *panel_bridge = drm_bridge_to_panel_bridge(bridge);
11213dfc054SEric Anholt 
11313dfc054SEric Anholt 	drm_panel_disable(panel_bridge->panel);
11413dfc054SEric Anholt }
11513dfc054SEric Anholt 
11613dfc054SEric Anholt static void panel_bridge_post_disable(struct drm_bridge *bridge)
11713dfc054SEric Anholt {
11813dfc054SEric Anholt 	struct panel_bridge *panel_bridge = drm_bridge_to_panel_bridge(bridge);
11913dfc054SEric Anholt 
12013dfc054SEric Anholt 	drm_panel_unprepare(panel_bridge->panel);
12113dfc054SEric Anholt }
12213dfc054SEric Anholt 
12313dfc054SEric Anholt static const struct drm_bridge_funcs panel_bridge_bridge_funcs = {
12413dfc054SEric Anholt 	.attach = panel_bridge_attach,
12513dfc054SEric Anholt 	.detach = panel_bridge_detach,
12613dfc054SEric Anholt 	.pre_enable = panel_bridge_pre_enable,
12713dfc054SEric Anholt 	.enable = panel_bridge_enable,
12813dfc054SEric Anholt 	.disable = panel_bridge_disable,
12913dfc054SEric Anholt 	.post_disable = panel_bridge_post_disable,
13013dfc054SEric Anholt };
13113dfc054SEric Anholt 
13213dfc054SEric Anholt /**
1330aa5eb3aSDaniel Vetter  * drm_panel_bridge_add - Creates a &drm_bridge and &drm_connector that
1340aa5eb3aSDaniel Vetter  * just calls the appropriate functions from &drm_panel.
13513dfc054SEric Anholt  *
13613dfc054SEric Anholt  * @panel: The drm_panel being wrapped.  Must be non-NULL.
13713dfc054SEric Anholt  * @connector_type: The DRM_MODE_CONNECTOR_* for the connector to be
13813dfc054SEric Anholt  * created.
13913dfc054SEric Anholt  *
14013dfc054SEric Anholt  * For drivers converting from directly using drm_panel: The expected
14113dfc054SEric Anholt  * usage pattern is that during either encoder module probe or DSI
14213dfc054SEric Anholt  * host attach, a drm_panel will be looked up through
14313dfc054SEric Anholt  * drm_of_find_panel_or_bridge().  drm_panel_bridge_add() is used to
14413dfc054SEric Anholt  * wrap that panel in the new bridge, and the result can then be
14513dfc054SEric Anholt  * passed to drm_bridge_attach().  The drm_panel_prepare() and related
14613dfc054SEric Anholt  * functions can be dropped from the encoder driver (they're now
14713dfc054SEric Anholt  * called by the KMS helpers before calling into the encoder), along
1480aa5eb3aSDaniel Vetter  * with connector creation.  When done with the bridge (after
1490aa5eb3aSDaniel Vetter  * drm_mode_config_cleanup() if the bridge has already been attached), then
15013dfc054SEric Anholt  * drm_panel_bridge_remove() to free it.
1510aa5eb3aSDaniel Vetter  *
1520aa5eb3aSDaniel Vetter  * See devm_drm_panel_bridge_add() for an automatically manged version of this
1530aa5eb3aSDaniel Vetter  * function.
15413dfc054SEric Anholt  */
15513dfc054SEric Anholt struct drm_bridge *drm_panel_bridge_add(struct drm_panel *panel,
15613dfc054SEric Anholt 					u32 connector_type)
15713dfc054SEric Anholt {
15813dfc054SEric Anholt 	struct panel_bridge *panel_bridge;
15913dfc054SEric Anholt 
16013dfc054SEric Anholt 	if (!panel)
161e6f0acb2SEric Anholt 		return ERR_PTR(-EINVAL);
16213dfc054SEric Anholt 
16313dfc054SEric Anholt 	panel_bridge = devm_kzalloc(panel->dev, sizeof(*panel_bridge),
16413dfc054SEric Anholt 				    GFP_KERNEL);
16513dfc054SEric Anholt 	if (!panel_bridge)
16613dfc054SEric Anholt 		return ERR_PTR(-ENOMEM);
16713dfc054SEric Anholt 
16813dfc054SEric Anholt 	panel_bridge->connector_type = connector_type;
16913dfc054SEric Anholt 	panel_bridge->panel = panel;
17013dfc054SEric Anholt 
17113dfc054SEric Anholt 	panel_bridge->bridge.funcs = &panel_bridge_bridge_funcs;
17213dfc054SEric Anholt #ifdef CONFIG_OF
17313dfc054SEric Anholt 	panel_bridge->bridge.of_node = panel->dev->of_node;
17413dfc054SEric Anholt #endif
17513dfc054SEric Anholt 
1763a45d25dSInki Dae 	drm_bridge_add(&panel_bridge->bridge);
17713dfc054SEric Anholt 
17813dfc054SEric Anholt 	return &panel_bridge->bridge;
17913dfc054SEric Anholt }
18013dfc054SEric Anholt EXPORT_SYMBOL(drm_panel_bridge_add);
18113dfc054SEric Anholt 
18213dfc054SEric Anholt /**
18313dfc054SEric Anholt  * drm_panel_bridge_remove - Unregisters and frees a drm_bridge
18413dfc054SEric Anholt  * created by drm_panel_bridge_add().
18513dfc054SEric Anholt  *
18613dfc054SEric Anholt  * @bridge: The drm_bridge being freed.
18713dfc054SEric Anholt  */
18813dfc054SEric Anholt void drm_panel_bridge_remove(struct drm_bridge *bridge)
18913dfc054SEric Anholt {
1906b0e284cSbenjamin.gaignard@linaro.org 	struct panel_bridge *panel_bridge;
1916b0e284cSbenjamin.gaignard@linaro.org 
1926b0e284cSbenjamin.gaignard@linaro.org 	if (!bridge)
1936b0e284cSbenjamin.gaignard@linaro.org 		return;
1946b0e284cSbenjamin.gaignard@linaro.org 
1956b0e284cSbenjamin.gaignard@linaro.org 	if (bridge->funcs != &panel_bridge_bridge_funcs)
1966b0e284cSbenjamin.gaignard@linaro.org 		return;
1976b0e284cSbenjamin.gaignard@linaro.org 
1986b0e284cSbenjamin.gaignard@linaro.org 	panel_bridge = drm_bridge_to_panel_bridge(bridge);
19913dfc054SEric Anholt 
20013dfc054SEric Anholt 	drm_bridge_remove(bridge);
20113dfc054SEric Anholt 	devm_kfree(panel_bridge->panel->dev, bridge);
20213dfc054SEric Anholt }
20313dfc054SEric Anholt EXPORT_SYMBOL(drm_panel_bridge_remove);
20467022227SEric Anholt 
20567022227SEric Anholt static void devm_drm_panel_bridge_release(struct device *dev, void *res)
20667022227SEric Anholt {
20767022227SEric Anholt 	struct drm_bridge **bridge = res;
20867022227SEric Anholt 
20967022227SEric Anholt 	drm_panel_bridge_remove(*bridge);
21067022227SEric Anholt }
21167022227SEric Anholt 
2120aa5eb3aSDaniel Vetter /**
2130aa5eb3aSDaniel Vetter  * devm_drm_panel_bridge_add - Creates a managed &drm_bridge and &drm_connector
2140aa5eb3aSDaniel Vetter  * that just calls the appropriate functions from &drm_panel.
2150aa5eb3aSDaniel Vetter  * @dev: device to tie the bridge lifetime to
2160aa5eb3aSDaniel Vetter  * @panel: The drm_panel being wrapped.  Must be non-NULL.
2170aa5eb3aSDaniel Vetter  * @connector_type: The DRM_MODE_CONNECTOR_* for the connector to be
2180aa5eb3aSDaniel Vetter  * created.
2190aa5eb3aSDaniel Vetter  *
2200aa5eb3aSDaniel Vetter  * This is the managed version of drm_panel_bridge_add() which automatically
2210aa5eb3aSDaniel Vetter  * calls drm_panel_bridge_remove() when @dev is unbound.
2220aa5eb3aSDaniel Vetter  */
22367022227SEric Anholt struct drm_bridge *devm_drm_panel_bridge_add(struct device *dev,
22467022227SEric Anholt 					     struct drm_panel *panel,
22567022227SEric Anholt 					     u32 connector_type)
22667022227SEric Anholt {
22767022227SEric Anholt 	struct drm_bridge **ptr, *bridge;
22867022227SEric Anholt 
22967022227SEric Anholt 	ptr = devres_alloc(devm_drm_panel_bridge_release, sizeof(*ptr),
23067022227SEric Anholt 			   GFP_KERNEL);
23167022227SEric Anholt 	if (!ptr)
23267022227SEric Anholt 		return ERR_PTR(-ENOMEM);
23367022227SEric Anholt 
23467022227SEric Anholt 	bridge = drm_panel_bridge_add(panel, connector_type);
23567022227SEric Anholt 	if (!IS_ERR(bridge)) {
23667022227SEric Anholt 		*ptr = bridge;
23767022227SEric Anholt 		devres_add(dev, ptr);
23867022227SEric Anholt 	} else {
23967022227SEric Anholt 		devres_free(ptr);
24067022227SEric Anholt 	}
24167022227SEric Anholt 
24267022227SEric Anholt 	return bridge;
24367022227SEric Anholt }
24467022227SEric Anholt EXPORT_SYMBOL(devm_drm_panel_bridge_add);
245