Re: [PATCH] drm/bridge: tc358764: restore connector support
On Wed, Sep 30, 2020 at 12:31 PM Daniel Vetter wrote: > > On Wed, Sep 30, 2020 at 12:13 PM Andrzej Hajda wrote: > > > > > > W dniu 24.09.2020 o 10:31, Marek Szyprowski pisze: > > > This patch restores DRM connector registration in the TC358764 bridge > > > driver and restores usage of the old drm_panel_* API, thus allows dynamic > > > panel registration. This fixes panel operation on Exynos5250-based > > > Arndale board. > > > > > > This is equivalent to the revert of the following commits: > > > 1644127f83bc "drm/bridge: tc358764: add drm_panel_bridge support" > > > 385ca38da29c "drm/bridge: tc358764: drop drm_connector_(un)register" > > > and removal of the calls to drm_panel_attach()/drm_panel_detach(), which > > > were no-ops and has been removed in meanwhile. > > > > > > Signed-off-by: Marek Szyprowski > > Reviewed-by: Andrzej Hajda > > > > Regards > > Andrzej > > > --- > > > As I've reported and Andrzej Hajda pointed, the reverted patches break > > > operation of the panel on the Arndale board. Noone suggested how to fix > > > the regression, I've decided to send a revert until a new solution is > > > found. > > > > > > The issues with tc358764 might be automatically resolved once the Exynos > > > DSI itself is converted to DRM bridge: > > > https://patchwork.kernel.org/cover/11770683/ > > > but that approach has also its own issues so far. > > I'm ok with the revert to fix the regression, but I'd kinda like to > see a bit more than "maybe we fix this in the future". Otherwise this > nice idea of having a common drm_bridge abstraction is just leading > towards a complete disaster where every combination of bridge/driver > works slightly differently. And we're half-way there in that mess > already I think. I think minimally it would be good to at least cc tha author of the commit you're reverting, and getting their ack. Adding Sam. -Daniel > > Cheers, Daniel > > > > > > > Best regards, > > > Marek Szyprowski > > > --- > > > drivers/gpu/drm/bridge/tc358764.c | 107 +- > > > 1 file changed, 92 insertions(+), 15 deletions(-) > > > > > > diff --git a/drivers/gpu/drm/bridge/tc358764.c > > > b/drivers/gpu/drm/bridge/tc358764.c > > > index d89394bc5aa4..c1e35bdf9232 100644 > > > --- a/drivers/gpu/drm/bridge/tc358764.c > > > +++ b/drivers/gpu/drm/bridge/tc358764.c > > > @@ -153,9 +153,10 @@ static const char * const tc358764_supplies[] = { > > > struct tc358764 { > > > struct device *dev; > > > struct drm_bridge bridge; > > > + struct drm_connector connector; > > > struct regulator_bulk_data supplies[ARRAY_SIZE(tc358764_supplies)]; > > > struct gpio_desc *gpio_reset; > > > - struct drm_bridge *panel_bridge; > > > + struct drm_panel *panel; > > > int error; > > > }; > > > > > > @@ -209,6 +210,12 @@ static inline struct tc358764 > > > *bridge_to_tc358764(struct drm_bridge *bridge) > > > return container_of(bridge, struct tc358764, bridge); > > > } > > > > > > +static inline > > > +struct tc358764 *connector_to_tc358764(struct drm_connector *connector) > > > +{ > > > + return container_of(connector, struct tc358764, connector); > > > +} > > > + > > > static int tc358764_init(struct tc358764 *ctx) > > > { > > > u32 v = 0; > > > @@ -271,11 +278,43 @@ static void tc358764_reset(struct tc358764 *ctx) > > > usleep_range(1000, 2000); > > > } > > > > > > +static int tc358764_get_modes(struct drm_connector *connector) > > > +{ > > > + struct tc358764 *ctx = connector_to_tc358764(connector); > > > + > > > + return drm_panel_get_modes(ctx->panel, connector); > > > +} > > > + > > > +static const > > > +struct drm_connector_helper_funcs tc358764_connector_helper_funcs = { > > > + .get_modes = tc358764_get_modes, > > > +}; > > > + > > > +static const struct drm_connector_funcs tc358764_connector_funcs = { > > > + .fill_modes = drm_helper_probe_single_connector_modes, > > > + .destroy = drm_connector_cleanup, > > > + .reset = drm_atomic_helper_connector_reset, > > > + .atomic_duplicate_state = > > > drm_atomic_helper_connector_duplicate_state, > > > + .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, > > > +}; > > > + > > > +static void tc358764_disable(struct drm_bridge *bridge) > > > +{ > > > + struct tc358764 *ctx = bridge_to_tc358764(bridge); > > > + int ret = drm_panel_disable(bridge_to_tc358764(bridge)->panel); > > > + > > > + if (ret < 0) > > > + dev_err(ctx->dev, "error disabling panel (%d)\n", ret); > > > +} > > > + > > > static void tc358764_post_disable(struct drm_bridge *bridge) > > > { > > > struct tc358764 *ctx = bridge_to_tc358764(bridge); > > > int ret; > > > > > > + ret = drm_panel_unprepare(ctx->panel); > > > + if (ret < 0) > > > + dev_err(ctx->dev, "error unpreparing panel (%d)\n", ret); > > > tc358764_reset(ctx); > > > usleep_range(1, 15000); > > > ret = regulato
Re: [PATCH] drm/bridge: tc358764: restore connector support
On Wed, Sep 30, 2020 at 12:13 PM Andrzej Hajda wrote: > > > W dniu 24.09.2020 o 10:31, Marek Szyprowski pisze: > > This patch restores DRM connector registration in the TC358764 bridge > > driver and restores usage of the old drm_panel_* API, thus allows dynamic > > panel registration. This fixes panel operation on Exynos5250-based > > Arndale board. > > > > This is equivalent to the revert of the following commits: > > 1644127f83bc "drm/bridge: tc358764: add drm_panel_bridge support" > > 385ca38da29c "drm/bridge: tc358764: drop drm_connector_(un)register" > > and removal of the calls to drm_panel_attach()/drm_panel_detach(), which > > were no-ops and has been removed in meanwhile. > > > > Signed-off-by: Marek Szyprowski > Reviewed-by: Andrzej Hajda > > Regards > Andrzej > > --- > > As I've reported and Andrzej Hajda pointed, the reverted patches break > > operation of the panel on the Arndale board. Noone suggested how to fix > > the regression, I've decided to send a revert until a new solution is > > found. > > > > The issues with tc358764 might be automatically resolved once the Exynos > > DSI itself is converted to DRM bridge: > > https://patchwork.kernel.org/cover/11770683/ > > but that approach has also its own issues so far. I'm ok with the revert to fix the regression, but I'd kinda like to see a bit more than "maybe we fix this in the future". Otherwise this nice idea of having a common drm_bridge abstraction is just leading towards a complete disaster where every combination of bridge/driver works slightly differently. And we're half-way there in that mess already I think. Cheers, Daniel > > > > Best regards, > > Marek Szyprowski > > --- > > drivers/gpu/drm/bridge/tc358764.c | 107 +- > > 1 file changed, 92 insertions(+), 15 deletions(-) > > > > diff --git a/drivers/gpu/drm/bridge/tc358764.c > > b/drivers/gpu/drm/bridge/tc358764.c > > index d89394bc5aa4..c1e35bdf9232 100644 > > --- a/drivers/gpu/drm/bridge/tc358764.c > > +++ b/drivers/gpu/drm/bridge/tc358764.c > > @@ -153,9 +153,10 @@ static const char * const tc358764_supplies[] = { > > struct tc358764 { > > struct device *dev; > > struct drm_bridge bridge; > > + struct drm_connector connector; > > struct regulator_bulk_data supplies[ARRAY_SIZE(tc358764_supplies)]; > > struct gpio_desc *gpio_reset; > > - struct drm_bridge *panel_bridge; > > + struct drm_panel *panel; > > int error; > > }; > > > > @@ -209,6 +210,12 @@ static inline struct tc358764 > > *bridge_to_tc358764(struct drm_bridge *bridge) > > return container_of(bridge, struct tc358764, bridge); > > } > > > > +static inline > > +struct tc358764 *connector_to_tc358764(struct drm_connector *connector) > > +{ > > + return container_of(connector, struct tc358764, connector); > > +} > > + > > static int tc358764_init(struct tc358764 *ctx) > > { > > u32 v = 0; > > @@ -271,11 +278,43 @@ static void tc358764_reset(struct tc358764 *ctx) > > usleep_range(1000, 2000); > > } > > > > +static int tc358764_get_modes(struct drm_connector *connector) > > +{ > > + struct tc358764 *ctx = connector_to_tc358764(connector); > > + > > + return drm_panel_get_modes(ctx->panel, connector); > > +} > > + > > +static const > > +struct drm_connector_helper_funcs tc358764_connector_helper_funcs = { > > + .get_modes = tc358764_get_modes, > > +}; > > + > > +static const struct drm_connector_funcs tc358764_connector_funcs = { > > + .fill_modes = drm_helper_probe_single_connector_modes, > > + .destroy = drm_connector_cleanup, > > + .reset = drm_atomic_helper_connector_reset, > > + .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, > > + .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, > > +}; > > + > > +static void tc358764_disable(struct drm_bridge *bridge) > > +{ > > + struct tc358764 *ctx = bridge_to_tc358764(bridge); > > + int ret = drm_panel_disable(bridge_to_tc358764(bridge)->panel); > > + > > + if (ret < 0) > > + dev_err(ctx->dev, "error disabling panel (%d)\n", ret); > > +} > > + > > static void tc358764_post_disable(struct drm_bridge *bridge) > > { > > struct tc358764 *ctx = bridge_to_tc358764(bridge); > > int ret; > > > > + ret = drm_panel_unprepare(ctx->panel); > > + if (ret < 0) > > + dev_err(ctx->dev, "error unpreparing panel (%d)\n", ret); > > tc358764_reset(ctx); > > usleep_range(1, 15000); > > ret = regulator_bulk_disable(ARRAY_SIZE(ctx->supplies), > > ctx->supplies); > > @@ -296,28 +335,71 @@ static void tc358764_pre_enable(struct drm_bridge > > *bridge) > > ret = tc358764_init(ctx); > > if (ret < 0) > > dev_err(ctx->dev, "error initializing bridge (%d)\n", ret); > > + ret = drm_panel_prepare(ctx->panel); > > + if (ret < 0) > > + dev_err(ctx->dev, "error preparing panel (%d)\n", ret); > > +} > >
Re: [PATCH] drm/bridge: tc358764: restore connector support
W dniu 24.09.2020 o 10:31, Marek Szyprowski pisze: > This patch restores DRM connector registration in the TC358764 bridge > driver and restores usage of the old drm_panel_* API, thus allows dynamic > panel registration. This fixes panel operation on Exynos5250-based > Arndale board. > > This is equivalent to the revert of the following commits: > 1644127f83bc "drm/bridge: tc358764: add drm_panel_bridge support" > 385ca38da29c "drm/bridge: tc358764: drop drm_connector_(un)register" > and removal of the calls to drm_panel_attach()/drm_panel_detach(), which > were no-ops and has been removed in meanwhile. > > Signed-off-by: Marek Szyprowski Reviewed-by: Andrzej Hajda Regards Andrzej > --- > As I've reported and Andrzej Hajda pointed, the reverted patches break > operation of the panel on the Arndale board. Noone suggested how to fix > the regression, I've decided to send a revert until a new solution is > found. > > The issues with tc358764 might be automatically resolved once the Exynos > DSI itself is converted to DRM bridge: > https://patchwork.kernel.org/cover/11770683/ > but that approach has also its own issues so far. > > Best regards, > Marek Szyprowski > --- > drivers/gpu/drm/bridge/tc358764.c | 107 +- > 1 file changed, 92 insertions(+), 15 deletions(-) > > diff --git a/drivers/gpu/drm/bridge/tc358764.c > b/drivers/gpu/drm/bridge/tc358764.c > index d89394bc5aa4..c1e35bdf9232 100644 > --- a/drivers/gpu/drm/bridge/tc358764.c > +++ b/drivers/gpu/drm/bridge/tc358764.c > @@ -153,9 +153,10 @@ static const char * const tc358764_supplies[] = { > struct tc358764 { > struct device *dev; > struct drm_bridge bridge; > + struct drm_connector connector; > struct regulator_bulk_data supplies[ARRAY_SIZE(tc358764_supplies)]; > struct gpio_desc *gpio_reset; > - struct drm_bridge *panel_bridge; > + struct drm_panel *panel; > int error; > }; > > @@ -209,6 +210,12 @@ static inline struct tc358764 *bridge_to_tc358764(struct > drm_bridge *bridge) > return container_of(bridge, struct tc358764, bridge); > } > > +static inline > +struct tc358764 *connector_to_tc358764(struct drm_connector *connector) > +{ > + return container_of(connector, struct tc358764, connector); > +} > + > static int tc358764_init(struct tc358764 *ctx) > { > u32 v = 0; > @@ -271,11 +278,43 @@ static void tc358764_reset(struct tc358764 *ctx) > usleep_range(1000, 2000); > } > > +static int tc358764_get_modes(struct drm_connector *connector) > +{ > + struct tc358764 *ctx = connector_to_tc358764(connector); > + > + return drm_panel_get_modes(ctx->panel, connector); > +} > + > +static const > +struct drm_connector_helper_funcs tc358764_connector_helper_funcs = { > + .get_modes = tc358764_get_modes, > +}; > + > +static const struct drm_connector_funcs tc358764_connector_funcs = { > + .fill_modes = drm_helper_probe_single_connector_modes, > + .destroy = drm_connector_cleanup, > + .reset = drm_atomic_helper_connector_reset, > + .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, > + .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, > +}; > + > +static void tc358764_disable(struct drm_bridge *bridge) > +{ > + struct tc358764 *ctx = bridge_to_tc358764(bridge); > + int ret = drm_panel_disable(bridge_to_tc358764(bridge)->panel); > + > + if (ret < 0) > + dev_err(ctx->dev, "error disabling panel (%d)\n", ret); > +} > + > static void tc358764_post_disable(struct drm_bridge *bridge) > { > struct tc358764 *ctx = bridge_to_tc358764(bridge); > int ret; > > + ret = drm_panel_unprepare(ctx->panel); > + if (ret < 0) > + dev_err(ctx->dev, "error unpreparing panel (%d)\n", ret); > tc358764_reset(ctx); > usleep_range(1, 15000); > ret = regulator_bulk_disable(ARRAY_SIZE(ctx->supplies), ctx->supplies); > @@ -296,28 +335,71 @@ static void tc358764_pre_enable(struct drm_bridge > *bridge) > ret = tc358764_init(ctx); > if (ret < 0) > dev_err(ctx->dev, "error initializing bridge (%d)\n", ret); > + ret = drm_panel_prepare(ctx->panel); > + if (ret < 0) > + dev_err(ctx->dev, "error preparing panel (%d)\n", ret); > +} > + > +static void tc358764_enable(struct drm_bridge *bridge) > +{ > + struct tc358764 *ctx = bridge_to_tc358764(bridge); > + int ret = drm_panel_enable(ctx->panel); > + > + if (ret < 0) > + dev_err(ctx->dev, "error enabling panel (%d)\n", ret); > } > > static int tc358764_attach(struct drm_bridge *bridge, > enum drm_bridge_attach_flags flags) > +{ > + struct tc358764 *ctx = bridge_to_tc358764(bridge); > + struct drm_device *drm = bridge->dev; > + int ret; > + > + if (flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR) { > + DRM_ERROR("Fix bridge driver to make connector optional!"); >