From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-03.galae.net (smtpout-03.galae.net [185.246.85.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4EEF63D171F for ; Fri, 28 Aug 2026 10:44:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.85.4 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787913876; cv=none; b=DDXs62pmT4yXWPrSyizenPfCjP/qdZMcOwS3jGDej3M4q0wGsEJNG6rSZ9c92qTyBOkqlFw8r1p3+tjXAu3VRQBpRCE7VSqGG1EquOZ+GjmwiIcT19LZyQQQyfOlVEQMRDaEpKte0WDnc7YWCUjcT4Uu2S7xamMW6U/p9zt0CC4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787913876; c=relaxed/simple; bh=jqvb6efzVIxhyMNFM6ALflx4Ux3+Kq+gYesK8hycogQ=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=h1pUGbnAlAcMWcZO6ZUUccY3c2lZIP5oDY6gWjnNsQmoQd9PI8HPDldJ16wUUYWt7ubTfmknn56IOwATAHJMXIEBRJCOR9FVMpxurBQuTtLD5kV29u2IWqzZV/UjUW4DkTbuQritc7DR8HHaRi8bjRnBY5ipcgXlyUuAp3NVmYE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=qJjIVK4X; arc=none smtp.client-ip=185.246.85.4 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="qJjIVK4X" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-03.galae.net (Postfix) with ESMTPS id BE6DC4E413FF; Fri, 28 Aug 2026 10:44:32 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 7982C60537; Fri, 28 Aug 2026 10:44:32 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id D31B811C7810F; Fri, 28 Aug 2026 12:44:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1787913867; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=UlkoQK9Jj3Zkbr/7ax+qMgzZXpZ194fDPTfYXd3ays0=; b=qJjIVK4XQJzgkzfVrXD2wDdcdKmT63+DbuJIfLwMOqzVj+AoQthsKgAkQRQWtW9ccdvmID Q/lD7tlchMkbpbGj11vwUPv54JbVzvmBkSbjFLWkKcwuxTdXx6y8Q/nvSlHCvht9bJf1hF xIRX21+AOOm33J/oDWEfeJSgbVaMWl/BnCzT5YcxBoSiTrOOxuSHObyDHFNz8kc48c7FSr 6l8hzlikvW2EChYH9QElgWhbJmRkSPZwtItfPlvLrTa6qMB4JZ2biPdPbMXc/vD6/uUjRN NmKQflQueTtTBSstqTW03/XYTmf1NgnBCRoQnY7qoRrcAQEPw5jVYxinmuQNdQ== From: Gregory CLEMENT To: Rosen Penev , devicetree@vger.kernel.org Cc: Andrew Lunn , Sebastian Hesselbarth , Rob Herring , Krzysztof Kozlowski , Conor Dooley , "moderated list:ARM/Marvell Kirkwood and Armada 370, 375, 38x,..." , open list Subject: Re: [PATCH] ARM: dts: marvell: add missing SDHCI clock-names In-Reply-To: <20260823234721.72903-1-rosenp@gmail.com> References: <20260823234721.72903-1-rosenp@gmail.com> Date: Fri, 28 Aug 2026 12:44:26 +0200 Message-ID: <87y0dqplrp.fsf@BLaptop.bootlin.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Last-TLS-Session-Version: TLSv1.3 Rosen Penev writes: > The marvell,armada-380-sdhci binding requires "clock-names", and > the sdhci-pxav3 driver requests its io clock by name before falling > back to an unnamed lookup. Both Armada 38x and 39x nodes only carry > an unnamed clocks reference, so dtbs_check reports "'clock-names' > is a required property" on every board. > > Add clock-names =3D "io" to both nodes. No functional change: the > driver already obtains the clock through its fallback. > > Assisted-by: opencode:big-pickle > Signed-off-by: Rosen Penev Applied on mvebu/dt Thanks, Gregory > --- > arch/arm/boot/dts/marvell/armada-38x.dtsi | 1 + > arch/arm/boot/dts/marvell/armada-39x.dtsi | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/arch/arm/boot/dts/marvell/armada-38x.dtsi b/arch/arm/boot/dt= s/marvell/armada-38x.dtsi > index 1155bee20523..598022645dd2 100644 > --- a/arch/arm/boot/dts/marvell/armada-38x.dtsi > +++ b/arch/arm/boot/dts/marvell/armada-38x.dtsi > @@ -627,6 +627,7 @@ sdhci: mmc@d8000 { > <0x18454 0x4>; > interrupts =3D ; > clocks =3D <&gateclk 17>; > + clock-names =3D "io"; > mrvl,clk-delay-cycles =3D <0x1F>; > status =3D "disabled"; > }; > diff --git a/arch/arm/boot/dts/marvell/armada-39x.dtsi b/arch/arm/boot/dt= s/marvell/armada-39x.dtsi > index 218fcf99ae07..81dd4ca5fbc9 100644 > --- a/arch/arm/boot/dts/marvell/armada-39x.dtsi > +++ b/arch/arm/boot/dts/marvell/armada-39x.dtsi > @@ -381,6 +381,7 @@ mmc@d8000 { > <0x18454 0x4>; > interrupts =3D ; > clocks =3D <&gateclk 17>; > + clock-names =3D "io"; > mrvl,clk-delay-cycles =3D <0x1F>; > status =3D "disabled"; > }; > --=20 > 2.55.0 > --=20 Gr=C3=A9gory CLEMENT, Bootlin Embedded Linux and Kernel engineering https://bootlin.com