[PATCH] drm: bridge: for GENERIC_PHY_MIPI_DPHY also select GENERIC_PHY
Aleksandr Nogikh
nogikh at google.com
Fri Aug 4 09:35:25 UTC 2023
Thank you for resolving this issue so quickly!
I've applied the patch locally and gone through the reproduction
steps. The kernel builds fine now.
Tested-by: Aleksandr Nogikh <nogikh at google.com>
On Fri, Aug 4, 2023 at 9:38 AM Guido Günther <agx at sigxcpu.org> wrote:
>
> Hi,
> On Thu, Aug 03, 2023 at 08:01:37PM -0700, Randy Dunlap wrote:
> > Three DRM bridge drivers select GENERIC_PHY_MIPI_DPHY when GENERIC_PHY
> > might not be set. This causes Kconfig warnings and a build error.
> >
> > WARNING: unmet direct dependencies detected for GENERIC_PHY_MIPI_DPHY
> > Depends on [n]: GENERIC_PHY [=n]
> > Selected by [y]:
> > - DRM_NWL_MIPI_DSI [=y] && DRM_BRIDGE [=y] && DRM [=y] && COMMON_CLK [=y] && OF [=y] && HAS_IOMEM [=y]
> > - DRM_SAMSUNG_DSIM [=y] && DRM [=y] && DRM_BRIDGE [=y] && COMMON_CLK [=y] && OF [=y] && HAS_IOMEM [=y]
> >
> > (drm/bridge/cadence/Kconfig was found by inspection.)
> >
> > aarch64-linux-ld: drivers/gpu/drm/bridge/samsung-dsim.o: in function `samsung_dsim_set_phy_ctrl':
> > drivers/gpu/drm/bridge/samsung-dsim.c:731: undefined reference to `phy_mipi_dphy_get_default_config_for_hsclk'
> >
> > Prevent these warnings and build error by also selecting GENERIC_PHY
> n> whenever selecting GENERIC_PHY_MIPI_DPHY.
> >
> > Fixes: fced5a364dee ("drm/bridge: cdns: Convert to phy framework")
> > Fixes: 44cfc6233447 ("drm/bridge: Add NWL MIPI DSI host controller support")
> > Fixes: 171b3b1e0f8b ("drm: bridge: samsung-dsim: Select GENERIC_PHY_MIPI_DPHY")
> > Signed-off-by: Randy Dunlap <rdunlap at infradead.org>
> > Reported-by: Aleksandr Nogikh <nogikh at google.com>
> > Link: lore.kernel.org/r/20230803144227.2187749-1-nogikh at google.com
> > Cc: Adam Ford <aford173 at gmail.com>
> > Cc: Maxime Ripard <maxime.ripard at bootlin.com>
> > Cc: Guido Günther <agx at sigxcpu.org>
> > Cc: Robert Chiras <robert.chiras at nxp.com>
> > Cc: Sam Ravnborg <sam at ravnborg.org>
> > Cc: Neil Armstrong <neil.armstrong at linaro.org>
> > Cc: Andrzej Hajda <andrzej.hajda at intel.com>
> > Cc: Robert Foss <rfoss at kernel.org>
> > Cc: David Airlie <airlied at gmail.com>
> > Cc: Daniel Vetter <daniel at ffwll.ch>
> > Cc: dri-devel at lists.freedesktop.org
> > ---
> > drivers/gpu/drm/bridge/Kconfig | 2 ++
> > drivers/gpu/drm/bridge/cadence/Kconfig | 1 +
> > 2 files changed, 3 insertions(+)
> >
> > diff -- a/drivers/gpu/drm/bridge/cadence/Kconfig b/drivers/gpu/drm/bridge/cadence/Kconfig
> > --- a/drivers/gpu/drm/bridge/cadence/Kconfig
> > +++ b/drivers/gpu/drm/bridge/cadence/Kconfig
> > @@ -4,6 +4,7 @@ config DRM_CDNS_DSI
> > select DRM_KMS_HELPER
> > select DRM_MIPI_DSI
> > select DRM_PANEL_BRIDGE
> > + select GENERIC_PHY
> > select GENERIC_PHY_MIPI_DPHY
> > depends on OF
> > help
> > diff -- a/drivers/gpu/drm/bridge/Kconfig b/drivers/gpu/drm/bridge/Kconfig
> > --- a/drivers/gpu/drm/bridge/Kconfig
> > +++ b/drivers/gpu/drm/bridge/Kconfig
> > @@ -181,6 +181,7 @@ config DRM_NWL_MIPI_DSI
> > select DRM_KMS_HELPER
> > select DRM_MIPI_DSI
> > select DRM_PANEL_BRIDGE
> > + select GENERIC_PHY
> > select GENERIC_PHY_MIPI_DPHY
> > select MFD_SYSCON
> > select MULTIPLEXER
> > @@ -227,6 +228,7 @@ config DRM_SAMSUNG_DSIM
> > select DRM_KMS_HELPER
> > select DRM_MIPI_DSI
> > select DRM_PANEL_BRIDGE
> > + select GENERIC_PHY
> > select GENERIC_PHY_MIPI_DPHY
> > help
> > The Samsung MIPI DSIM bridge controller driver.
> >
>
> For NWL:
>
> Reviewed-by: Guido Günther <agx at sigxcpu.org>
>
> Cheers,
> -- Guido
More information about the dri-devel
mailing list