From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 334DCCFD647 for ; Wed, 7 Jan 2026 15:16:08 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 640DC83A26; Wed, 7 Jan 2026 16:16:06 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="O0PrqwGS"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 2B69683A26; Wed, 7 Jan 2026 16:16:05 +0100 (CET) Received: from sea.source.kernel.org (sea.source.kernel.org [172.234.252.31]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id BE61C808AF for ; Wed, 7 Jan 2026 16:16:02 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=mkorpershoek@kernel.org Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id 2D0DE44344; Wed, 7 Jan 2026 15:16:01 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AC2C4C4CEF1; Wed, 7 Jan 2026 15:16:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1767798961; bh=+oqkAlCxaVZCpaXUZBVdYCLVDE+0k5yPv/XtuTSfm2k=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=O0PrqwGSnIoYukFjO1FxyoFDu6ZaBlXX05I2EK4PCWGXveo2Mh9TnsJQTQeAWoY02 KbcAbsTasDaDTh2f2GIX51uiKTN7AoyZbc/AIDjt0sc3n6E4jxyuTJo+HhyOu9gnPe 5XWFaqGXW2wp3RIup6l5NQ8PMuVG5+/jyyJM7k9ZHW14bbNiroi8awyzQauFBmW8mf rYAUuHCFdeEYZjqiLDhhySdwZ/Dwc4zB9Bs348T5+hWtDLXqKfvwUE9Ldo8AxOBHZQ FZ4HjP4QPFXmNIlHiKWC/05K/dj+sTBRS2BdVGCywkq+k7RBH6s/KdTLzYQEXUyj10 KPGFXUnBNjm2w== From: Mattijs Korpershoek To: "Markus Schneider-Pargmann (TI.com)" Cc: u-boot@lists.denx.de, Simon Glass , Tom Rini , Marek Vasut , Andrew Goodbody , Kory Maincent , Svyatoslav Ryhel , Christian Marangi , Dinesh Maniyam , Heiko Schocher Subject: Re: [PATCH 0/4] dm: core: Support same compatible in host/gadget musb drivers In-Reply-To: <176779448475.214869.16026456579050958123.b4-ty@kernel.org> References: <20251126-topic-musb-probing-v2026-01-v1-0-ff8d8c487130@baylibre.com> <176779448475.214869.16026456579050958123.b4-ty@kernel.org> Date: Wed, 07 Jan 2026 16:15:58 +0100 Message-ID: <87pl7lzc5t.fsf@kernel.org> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Hi Markus, On Wed, Jan 07, 2026 at 15:01, Mattijs Korpershoek wrote: > Hi, > > On Wed, 26 Nov 2025 21:31:06 +0100, Markus Schneider-Pargmann (TI.com) wrote: >> musb currently uses a wrapper driver that binds on the parent device of >> the actual musb devices to manage the differentiation between gadget and >> host modes. However in the upstream devicetree this parent devicetree >> node can not be used to match the wrapper driver. >> >> To be able to probe the musb devices in host/gadget mode directly, this >> series introduces support for returning -ENODEV in bind functions >> resulting in iterating the remaining drivers potentially binding to >> other drivers that match the compatible. >> >> [...] > > Thanks, Applied to https://source.denx.de/u-boot/custodians/u-boot-dfu (u-boot-dfu) It seems this series broke the CI when testing sandbox: https://source.denx.de/u-boot/custodians/u-boot-dfu/-/jobs/1349214 Can you have a look please? This can be reproduced locally using: $ ./test/py/test.py --bd sandbox --build -k test_bind [...] FAILED test/py/tests/test_bind.py::test_bind_unbind_with_node - AssertionError: assert 'Unable to bind. err:0' == '' FAILED test/py/tests/test_bind.py::test_bind_unbind_with_uclass - AssertionError: assert 2 == 1 > > [1/4] dm: core: Support multiple drivers with same compatibles > https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/292d809159b86ff3c07e4fea93927cd0d00d8b27 > [2/4] test: dm: Add compatible multimatch test > https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/b1f483a350a7df6130eb4880ecce4cfabfe5b9a9 > [3/4] usb: musb-new: Relative ctrl_mod address parsing > https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/dce67e20709bd89f4ec17135e242447b5e6570d4 > [4/4] usb: musb-new: Add compatibles for ti,musb-am33xx > https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/b51b489ae7c47d8372a6b73a4c0c5fa71291c4fd > > -- > Mattijs