Skip to content

Change vc4 DSI to being a bridge - rpi-5.16.y #4894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion drivers/gpu/drm/bridge/tc358762.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,14 @@ static int tc358762_probe(struct mipi_dsi_device *dsi)
ctx->bridge.funcs = &tc358762_bridge_funcs;
ctx->bridge.type = DRM_MODE_CONNECTOR_DPI;
ctx->bridge.of_node = dev->of_node;
ctx->bridge.ops = DRM_BRIDGE_OP_UPSTREAM_FIRST;

drm_bridge_add(&ctx->bridge);

ret = mipi_dsi_attach(dsi);
if (ret < 0) {
drm_bridge_remove(&ctx->bridge);
dev_err(dev, "failed to attach dsi\n");
dev_err_probe(dev, ret, "failed to attach dsi\n");
}

return ret;
Expand Down
197 changes: 172 additions & 25 deletions drivers/gpu/drm/drm_bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,21 +522,58 @@ EXPORT_SYMBOL(drm_bridge_chain_disable);
* Calls &drm_bridge_funcs.post_disable op for all the bridges in the
* encoder chain, starting from the first bridge to the last. These are called
* after completing the encoder's prepare op.
* If a bridge sets the DRM_BRIDGE_OP_UPSTREAM_FIRST, then the post_disable for
* that bridge will be called before the previous one to reverse the pre_enable
* calling direction.
*
* Note: the bridge passed should be the one closest to the encoder
*/
void drm_bridge_chain_post_disable(struct drm_bridge *bridge)
{
struct drm_encoder *encoder;
struct drm_bridge *next, *limit;

if (!bridge)
return;

encoder = bridge->encoder;
list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
limit = NULL;

if (!list_is_last(&bridge->chain_node, &encoder->bridge_chain)) {
next = list_next_entry(bridge, chain_node);

if (next->ops & DRM_BRIDGE_OP_UPSTREAM_FIRST) {
limit = next;

list_for_each_entry_from(next, &encoder->bridge_chain,
chain_node) {
if (!(next->ops &
DRM_BRIDGE_OP_UPSTREAM_FIRST)) {
next = list_prev_entry(next, chain_node);
limit = next;
break;
}
}

list_for_each_entry_from_reverse(next, &encoder->bridge_chain,
chain_node) {
if (next == bridge)
break;

if (next->funcs->post_disable)
next->funcs->post_disable(next);
}
}
}

if (bridge->funcs->post_disable)
bridge->funcs->post_disable(bridge);

if (limit)
bridge = limit;
}

}
EXPORT_SYMBOL(drm_bridge_chain_post_disable);

Expand Down Expand Up @@ -577,22 +614,53 @@ EXPORT_SYMBOL(drm_bridge_chain_mode_set);
* Calls &drm_bridge_funcs.pre_enable op for all the bridges in the encoder
* chain, starting from the last bridge to the first. These are called
* before calling the encoder's commit op.
* If a bridge sets the DRM_BRIDGE_OP_UPSTREAM_FIRST, then the pre_enable for
* the previous bridge will be called before pre_enable of this bridge.
*
* Note: the bridge passed should be the one closest to the encoder
*/
void drm_bridge_chain_pre_enable(struct drm_bridge *bridge)
{
struct drm_encoder *encoder;
struct drm_bridge *iter;
struct drm_bridge *iter, *next, *limit;

if (!bridge)
return;

encoder = bridge->encoder;

list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
if (iter->ops & DRM_BRIDGE_OP_UPSTREAM_FIRST) {
next = iter;
limit = bridge;
list_for_each_entry_from_reverse(next,
&encoder->bridge_chain,
chain_node) {
if (next == bridge)
break;

if (!(next->ops &
DRM_BRIDGE_OP_UPSTREAM_FIRST)) {
limit = list_prev_entry(next, chain_node);
break;
}
}

list_for_each_entry_from(next, &encoder->bridge_chain, chain_node) {
if (next == iter)
break;

if (next->funcs->pre_enable)
next->funcs->pre_enable(next);
}
}

if (iter->funcs->pre_enable)
iter->funcs->pre_enable(iter);

if (iter->ops & DRM_BRIDGE_OP_UPSTREAM_FIRST)
iter = limit;

if (iter == bridge)
break;
}
Expand Down Expand Up @@ -667,6 +735,25 @@ void drm_atomic_bridge_chain_disable(struct drm_bridge *bridge,
}
EXPORT_SYMBOL(drm_atomic_bridge_chain_disable);

static void drm_atomic_bridge_call_post_disable(struct drm_bridge *bridge,
struct drm_atomic_state *old_state)
{
if (bridge->funcs->atomic_post_disable) {
struct drm_bridge_state *old_bridge_state;

old_bridge_state =
drm_atomic_get_old_bridge_state(old_state,
bridge);
if (WARN_ON(!old_bridge_state))
return;

bridge->funcs->atomic_post_disable(bridge,
old_bridge_state);
} else if (bridge->funcs->post_disable) {
bridge->funcs->post_disable(bridge);
}
}

/**
* drm_atomic_bridge_chain_post_disable - cleans up after disabling all bridges
* in the encoder chain
Expand All @@ -677,37 +764,79 @@ EXPORT_SYMBOL(drm_atomic_bridge_chain_disable);
* &drm_bridge_funcs.post_disable) op for all the bridges in the encoder chain,
* starting from the first bridge to the last. These are called after completing
* &drm_encoder_helper_funcs.atomic_disable
* If a bridge sets the DRM_BRIDGE_OP_UPSTREAM_FIRST, then the post_disable for
* that bridge will be called before the previous one to reverse the pre_enable
* calling direction.
*
* Note: the bridge passed should be the one closest to the encoder
*/
void drm_atomic_bridge_chain_post_disable(struct drm_bridge *bridge,
struct drm_atomic_state *old_state)
{
struct drm_encoder *encoder;
struct drm_bridge *next, *limit;

if (!bridge)
return;

encoder = bridge->encoder;

list_for_each_entry_from(bridge, &encoder->bridge_chain, chain_node) {
if (bridge->funcs->atomic_post_disable) {
struct drm_bridge_state *old_bridge_state;
limit = NULL;

if (!list_is_last(&bridge->chain_node, &encoder->bridge_chain)) {
next = list_next_entry(bridge, chain_node);

if (next->ops & DRM_BRIDGE_OP_UPSTREAM_FIRST) {
limit = next;

list_for_each_entry_from(next, &encoder->bridge_chain,
chain_node) {
if (!(next->ops &
DRM_BRIDGE_OP_UPSTREAM_FIRST)) {
next = list_prev_entry(next, chain_node);
limit = next;
break;
}
}

list_for_each_entry_from_reverse(next, &encoder->bridge_chain,
chain_node) {
if (next == bridge)
break;

drm_atomic_bridge_call_post_disable(next,
old_state);
}
}
}

old_bridge_state =
drm_atomic_get_old_bridge_state(old_state,
bridge);
if (WARN_ON(!old_bridge_state))
return;
drm_atomic_bridge_call_post_disable(bridge, old_state);

bridge->funcs->atomic_post_disable(bridge,
old_bridge_state);
} else if (bridge->funcs->post_disable) {
bridge->funcs->post_disable(bridge);
}
if (limit)
bridge = limit;
}
}
EXPORT_SYMBOL(drm_atomic_bridge_chain_post_disable);

static void drm_atomic_bridge_call_pre_enable(struct drm_bridge *bridge,
struct drm_atomic_state *old_state)
{
if (bridge->funcs->atomic_pre_enable) {
struct drm_bridge_state *old_bridge_state;

old_bridge_state =
drm_atomic_get_old_bridge_state(old_state,
bridge);
if (WARN_ON(!old_bridge_state))
return;

bridge->funcs->atomic_pre_enable(bridge, old_bridge_state);
} else if (bridge->funcs->pre_enable) {
bridge->funcs->pre_enable(bridge);
}
}

/**
* drm_atomic_bridge_chain_pre_enable - prepares for enabling all bridges in
* the encoder chain
Expand All @@ -718,33 +847,51 @@ EXPORT_SYMBOL(drm_atomic_bridge_chain_post_disable);
* &drm_bridge_funcs.pre_enable) op for all the bridges in the encoder chain,
* starting from the last bridge to the first. These are called before calling
* &drm_encoder_helper_funcs.atomic_enable
* If a bridge sets the DRM_BRIDGE_OP_UPSTREAM_FIRST, then the pre_enable for
* the previous bridge will be called before pre_enable of this bridge.
*
* Note: the bridge passed should be the one closest to the encoder
*/
void drm_atomic_bridge_chain_pre_enable(struct drm_bridge *bridge,
struct drm_atomic_state *old_state)
{
struct drm_encoder *encoder;
struct drm_bridge *iter;
struct drm_bridge *iter, *next, *limit;

if (!bridge)
return;

encoder = bridge->encoder;

list_for_each_entry_reverse(iter, &encoder->bridge_chain, chain_node) {
if (iter->funcs->atomic_pre_enable) {
struct drm_bridge_state *old_bridge_state;
if (iter->ops & DRM_BRIDGE_OP_UPSTREAM_FIRST) {
next = iter;
limit = bridge;
list_for_each_entry_from_reverse(next,
&encoder->bridge_chain,
chain_node) {
if (next == bridge)
break;

if (!(next->ops &
DRM_BRIDGE_OP_UPSTREAM_FIRST)) {
limit = list_prev_entry(next, chain_node);
break;
}
}

list_for_each_entry_from(next, &encoder->bridge_chain, chain_node) {
if (next == iter)
break;

drm_atomic_bridge_call_pre_enable(next, old_state);
}
}

old_bridge_state =
drm_atomic_get_old_bridge_state(old_state,
iter);
if (WARN_ON(!old_bridge_state))
return;
drm_atomic_bridge_call_pre_enable(iter, old_state);

iter->funcs->atomic_pre_enable(iter, old_bridge_state);
} else if (iter->funcs->pre_enable) {
iter->funcs->pre_enable(iter);
}
if (iter->ops & DRM_BRIDGE_OP_UPSTREAM_FIRST)
iter = limit;

if (iter == bridge)
break;
Expand Down
Loading