mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Maxime Ripard <mripard@kernel.org>
To: Herve Codina <herve.codina@bootlin.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	 Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>,
	 Simona Vetter <simona@ffwll.ch>,
	Andrzej Hajda <andrzej.hajda@intel.com>,
	 Neil Armstrong <neil.armstrong@linaro.org>,
	Robert Foss <rfoss@kernel.org>,
	 Laurent Pinchart <Laurent.pinchart@ideasonboard.com>,
	Jonas Karlman <jonas@kwiboo.se>,
	 Jernej Skrabec <jernej.skrabec@gmail.com>,
	Douglas Anderson <dianders@chromium.org>,
	 dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	 Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
	Simona Vetter <simona.vetter@ffwll.ch>
Subject: Re: [PATCH v4 00/15] drm/bridge: Various quality of life improvements
Date: Tue, 4 Mar 2025 12:11:32 +0100	[thread overview]
Message-ID: <20250304-warping-flying-bumblebee-db6c80@houat> (raw)
In-Reply-To: <20250303175011.3f79a8c0@bootlin.com>

[-- Attachment #1: Type: text/plain, Size: 3245 bytes --]

On Mon, Mar 03, 2025 at 05:50:11PM +0100, Herve Codina wrote:
> On Mon, 3 Mar 2025 16:00:33 +0100
> Maxime Ripard <mripard@kernel.org> wrote:
> 
> > On Mon, Mar 03, 2025 at 02:34:04PM +0100, Herve Codina wrote:
> > > Hi Maxime,
> > > 
> > > On Mon, 3 Mar 2025 14:11:05 +0100
> > > Maxime Ripard <mripard@kernel.org> wrote:
> > >   
> > > > On Thu, Feb 27, 2025 at 12:00:04PM +0100, Herve Codina wrote:  
> > > > > Hi Maxime,
> > > > > 
> > > > > On Tue, 25 Feb 2025 17:43:48 +0100
> > > > > Maxime Ripard <mripard@kernel.org> wrote:
> > > > >     
> > > > > > Hi,
> > > > > > 
> > > > > > Here's a series of changes after to the KMS helpers and bridge API
> > > > > > following a bunch of reviews I did.
> > > > > > 
> > > > > > It's mostly centered across providing an easier time to deal with bridge
> > > > > > states, and a somewhat consistent with the other entities API.
> > > > > > 
> > > > > > It's build tested only, with arm64 allmodconfig.
> > > > > > 
> > > > > > Maxime
> > > > > > 
> > > > > > Signed-off-by: Maxime Ripard <mripard@kernel.org>
> > > > > > ---    
> > > > > 
> > > > > I Tried to test this series on my system but I've got a compilation issue.
> > > > >      depmod: ERROR: Cycle detected: drm -> drm_kms_helper -> drm
> > > > >      depmod: ERROR: Found 2 modules in dependency cycles!
> > > > > 
> > > > > CONFIG_DRM=m in my configuration.    
> > > > 
> > > > Could you share your configuration? it doesn't happen with allmodconfig.
> > > >   
> > > 
> > > Here is a defconfig that leads to the issue on my side:  
> > 
> > I still can't reproduce it, sorry. Is this based on linux-next /
> > drm-misc-next, or a private branch?
> > 
> > Maxime
> 
> Got it with this git history (based on 72d0af4accd9 available in
> drm-misc-next):
> 
> f86431f9d3fc (HEAD -> test_maxime_series_drm_next_clean_v4) drm/bridge: ti-sn65dsi86: Use bridge_state crtc pointer
> 27b49a4a713f drm/bridge: tc358768: Convert to atomic helpers
> f3f203c823e3 drm/bridge: tc358768: Stop disabling when failing to enable
> 89f4b115b1ca drm/bridge: tc358775: Switch to atomic commit
> 142be5c7910a drm/bridge: cdns-csi: Switch to atomic helpers
> e6db675d871a drm/bridge: Introduce drm_bridge_is_atomic() helper
> 1745511b7394 drm/bridge: ti-sn65dsi83: Switch to drm_bridge_reset_crtc
> e44654d4c9bd drm/tests: bridge: Provide tests for drm_bridge_reset_crtc
> 671a94f57f99 drm/bridge: Add helper to reset bridge pipeline
> bcf02dc7fb61 drm/tests: Create tests for drm_atomic
> f7b479b6f283 drm/atomic: Introduce helper to lookup connector by encoder
> 56d9fa19b833 drm/tests: Add kunit tests for bridges
> 9c86d5205422 drm/bridge: Provide a helper to retrieve current bridge state
> 3e0010915240 drm/bridge: Add encoder parameter to drm_bridge_funcs.attach
> 72d0af4accd9 (upstream_drm/for-linux-next, upstream_drm/drm-misc-next) drm/msm/dp: Add support for LTTPR handling
> 6dcc3c5121b7 drm/i915/dp: Use the generic helper to control LTTPR transparent mode
> 226a0baf9098 drm/nouveau/dp: Use the generic helper to control LTTPR transparent mode
> ...

Yeah, I found it. It doesn't happen during compilation but during
modules_install. It's fixed now, thanks!

Maxime

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 273 bytes --]

      reply	other threads:[~2025-03-04 11:11 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-25 16:43 Maxime Ripard
2025-02-25 16:43 ` [PATCH v4 01/15] drm/bridge: Add encoder parameter to drm_bridge_funcs.attach Maxime Ripard
2025-02-25 16:43 ` [PATCH v4 02/15] drm/bridge: Provide a helper to retrieve current bridge state Maxime Ripard
2025-02-25 16:43 ` [PATCH v4 03/15] drm/tests: Add kunit tests for bridges Maxime Ripard
2025-02-26  6:40   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 04/15] drm/atomic: Introduce helper to lookup connector by encoder Maxime Ripard
2025-02-26  6:17   ` Dmitry Baryshkov
2025-02-26  6:38   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 05/15] drm/tests: helpers: Create new helper to enable output Maxime Ripard
2025-02-26  6:38   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 06/15] drm/tests: Create tests for drm_atomic Maxime Ripard
2025-02-26  6:40   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 07/15] drm/bridge: Add helper to reset bridge pipeline Maxime Ripard
2025-02-26  6:41   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 08/15] drm/tests: bridge: Provide tests for drm_bridge_reset_crtc Maxime Ripard
2025-02-26  6:43   ` Dmitry Baryshkov
2025-02-26  6:46   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 09/15] drm/bridge: ti-sn65dsi83: Switch to drm_bridge_reset_crtc Maxime Ripard
2025-02-26  6:46   ` Dmitry Baryshkov
2025-02-25 16:43 ` [PATCH v4 10/15] drm/bridge: Introduce drm_bridge_is_atomic() helper Maxime Ripard
2025-02-25 16:43 ` [PATCH v4 11/15] drm/bridge: cdns-csi: Switch to atomic helpers Maxime Ripard
2025-02-26  6:12   ` Dmitry Baryshkov
2025-02-25 16:44 ` [PATCH v4 12/15] drm/bridge: tc358775: Switch to atomic commit Maxime Ripard
2025-02-25 16:44 ` [PATCH v4 13/15] drm/bridge: tc358768: Stop disabling when failing to enable Maxime Ripard
2025-02-25 16:44 ` [PATCH v4 14/15] drm/bridge: tc358768: Convert to atomic helpers Maxime Ripard
2025-02-25 16:44 ` [PATCH v4 15/15] drm/bridge: ti-sn65dsi86: Use bridge_state crtc pointer Maxime Ripard
2025-02-28 22:29   ` Doug Anderson
2025-02-27 11:00 ` [PATCH v4 00/15] drm/bridge: Various quality of life improvements Herve Codina
2025-03-03 13:11   ` Maxime Ripard
2025-03-03 13:34     ` Herve Codina
2025-03-03 13:34       ` Herve Codina
2025-03-03 15:00       ` Maxime Ripard
2025-03-03 16:50         ` Herve Codina
2025-03-04 11:11           ` Maxime Ripard [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250304-warping-flying-bumblebee-db6c80@houat \
    --to=mripard@kernel.org \
    --cc=Laurent.pinchart@ideasonboard.com \
    --cc=airlied@gmail.com \
    --cc=andrzej.hajda@intel.com \
    --cc=dianders@chromium.org \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=herve.codina@bootlin.com \
    --cc=jernej.skrabec@gmail.com \
    --cc=jonas@kwiboo.se \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=neil.armstrong@linaro.org \
    --cc=rfoss@kernel.org \
    --cc=simona.vetter@ffwll.ch \
    --cc=simona@ffwll.ch \
    --cc=tzimmermann@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®