From: Chuan Liu <chuan.liu@amlogic.com>
To: Jerome Brunet <jbrunet@baylibre.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Xianwei Zhao <xianwei.zhao@amlogic.com>,
Nick Xie <nick@khadas.com>
Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] arm64: dts: amlogic: s4: fix mmc clock assignment
Date: Wed, 14 Jan 2026 10:48:18 +0800 [thread overview]
Message-ID: <2491170c-d055-4231-8fd1-164d89198ae3@amlogic.com> (raw)
In-Reply-To: <20260113-amlogic-s4-mmc-fixup-v1-2-1ab1fca0fb2f@baylibre.com>
hi Jerome,
On 1/13/2026 6:39 PM, Jerome Brunet wrote:
> [ EXTERNAL EMAIL ]
>
> MMC A and C are mis-represented as having their "clkin0" input connected to
> xtal while it is actually connected to the MMC clock, mostly in an attempt
> to provide 24MHz to the device on this input.
Right.
>
> Fix this and assign the clock to 24MHz to actually provide the required
> rate.
>
> Fixes: 3ab9d54b5d84 ("arm64: dts: amlogic: enable some device nodes for S4")
> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
> ---
> arch/arm64/boot/dts/amlogic/meson-s4.dtsi | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/amlogic/meson-s4.dtsi b/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
> index 62538fd9db6b1ffb33a88e12628aadefbaa453ec..6324d1eb5994009df5b09923cce373a87229f4b8 100644
> --- a/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
> +++ b/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
> @@ -819,13 +819,17 @@ sdio: mmc@fe088000 {
> reg = <0x0 0xfe088000 0x0 0x800>;
> interrupts = <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>;
> clocks = <&clkc_periphs CLKID_SDEMMC_A>,
> - <&xtal>,
> + <&clkc_periphs CLKID_SD_EMMC_A>,
> <&clkc_pll CLKID_FCLK_DIV2>;
> clock-names = "core", "clkin0", "clkin1";
> resets = <&reset RESET_SD_EMMC_A>;
> cap-sdio-irq;
> keep-power-in-suspend;
> status = "disabled";
> +
> + assigned-clocks = <&clkc_periphs CLKID_SD_EMMC_A>;
> + assigned-clock-parents = <0>;
Is it possible to remove assigned-clock-parent?
> + assigned-clock-rates = <24000000>;
> };
>
> sd: mmc@fe08a000 {
> @@ -849,13 +853,17 @@ emmc: mmc@fe08c000 {
> reg = <0x0 0xfe08c000 0x0 0x800>;
> interrupts = <GIC_SPI 178 IRQ_TYPE_EDGE_RISING>;
> clocks = <&clkc_periphs CLKID_NAND>,
> - <&xtal>,
> + <&clkc_periphs CLKID_SD_EMMC_C>,
> <&clkc_pll CLKID_FCLK_DIV2>;
> clock-names = "core", "clkin0", "clkin1";
> resets = <&reset RESET_NAND_EMMC>;
> no-sdio;
> no-sd;
> status = "disabled";
> +
> + assigned-clocks = <&clkc_periphs CLKID_SD_EMMC_C>;
> + assigned-clock-parents = <0>;
> + assigned-clock-rates = <24000000>;
> };
> };
> };
>
> --
> 2.47.3
>
>
> _______________________________________________
> linux-amlogic mailing list
> linux-amlogic@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-amlogic
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2026-01-14 2:49 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-13 10:39 [PATCH 0/2] arm64: dts: amlogic: s4: mmc clock fixups Jerome Brunet
2026-01-13 10:39 ` [PATCH 1/2] arm64: dts: amlogic: s4: assign mmc b clock to 24MHz Jerome Brunet
2026-01-14 3:52 ` 回复: " Nick Xie
2026-01-13 10:39 ` [PATCH 2/2] arm64: dts: amlogic: s4: fix mmc clock assignment Jerome Brunet
2026-01-14 2:48 ` Chuan Liu [this message]
2026-01-14 9:05 ` Neil Armstrong
2026-01-14 3:58 ` 回复: " Nick Xie
2026-01-14 12:11 ` [PATCH 0/2] arm64: dts: amlogic: s4: mmc clock fixups Neil Armstrong
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=2491170c-d055-4231-8fd1-164d89198ae3@amlogic.com \
--to=chuan.liu@amlogic.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=krzk+dt@kernel.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
--cc=nick@khadas.com \
--cc=robh@kernel.org \
--cc=xianwei.zhao@amlogic.com \
/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