Re: [PATCH v2 05/50] drm/bridge: Extend bridge API to disable connector creation

2019-10-01 Thread Laurent Pinchart
Hi Tomi, On Tue, Oct 01, 2019 at 10:04:11AM +0300, Tomi Valkeinen wrote: > On 20/08/2019 04:16, Laurent Pinchart wrote: > > > @@ -,7 +1113,7 @@ int dw_mipi_dsi_bind(struct dw_mipi_dsi *dsi, struct > > drm_encoder *encoder) > > { > > int ret; > > > > - ret = drm_bridge_attach(encod

Re: [PATCH v2 05/50] drm/bridge: Extend bridge API to disable connector creation

2019-10-01 Thread Tomi Valkeinen
On 20/08/2019 04:16, Laurent Pinchart wrote: @@ -,7 +1113,7 @@ int dw_mipi_dsi_bind(struct dw_mipi_dsi *dsi, struct drm_encoder *encoder) { int ret; - ret = drm_bridge_attach(encoder, &dsi->bridge, NULL); + ret = drm_bridge_attach(encoder, &dsi->bridge, NULL, true); Th

Re: [PATCH v2 05/50] drm/bridge: Extend bridge API to disable connector creation

2019-08-22 Thread Boris Brezillon
On Tue, 20 Aug 2019 04:16:36 +0300 Laurent Pinchart wrote: > Most bridge drivers create a DRM connector to model the connector at the > output of the bridge. This model is historical and has worked pretty > well so far, but causes several issues: > > - It prevents supporting more complex display

[PATCH v2 05/50] drm/bridge: Extend bridge API to disable connector creation

2019-08-19 Thread Laurent Pinchart
Most bridge drivers create a DRM connector to model the connector at the output of the bridge. This model is historical and has worked pretty well so far, but causes several issues: - It prevents supporting more complex display pipelines where DRM connector operations are split over multiple compo