* [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties
@ 2024-09-26 18:09 Sean Anderson
2024-09-26 18:09 ` [PATCH 1/2] arm64: dts: renesas: salvator-xs: " Sean Anderson
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Sean Anderson @ 2024-09-26 18:09 UTC (permalink / raw)
To: Arnd Bergmann, Olof Johansson, linux-arm-kernel
Cc: Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven,
Sean Anderson
Linux can configure almost every part of this clock generator without
relying on the OTP settings. However, the correct configuration for the
SD/OE pin cannot be determined automatically. Therefore, add the
appropriate properties to configure this pin.
I have CC'd some people who appear to have access to the following
boards which use the versaclock5:
- Salvator-X
- HiHope RZ/G2[MN] Main Board
- Beacon Embedded Works RZ/G2N Development Kit
as I could not find schematics for these boards. You can help me out by
(pick one):
- Run the following command and send me the output:
$ grep 10: /sys/kernel/debug/regmap/*-006a/registers
- Measure the voltage on the SD/OE pin on a functioning board.
- Inspect (or send me) the schematic to determine the state of the SD/OE
pin during normal operation.
My suspicion is that all of these boards use the same configuration
(SD/OE pin tied high) owing to their common design heritage. Thanks in
advance.
Sean Anderson (2):
arm64: dts: renesas: salvator-xs: Add SD/OE pin properties
arm64: dts: renesas: ulcb: Add SD/OE pin properties
arch/arm64/boot/dts/renesas/salvator-xs.dtsi | 2 ++
arch/arm64/boot/dts/renesas/ulcb.dtsi | 2 ++
2 files changed, 4 insertions(+)
--
2.35.1.1320.gc452695387.dirty
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/2] arm64: dts: renesas: salvator-xs: Add SD/OE pin properties
2024-09-26 18:09 [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties Sean Anderson
@ 2024-09-26 18:09 ` Sean Anderson
2024-09-27 10:34 ` Geert Uytterhoeven
2024-09-26 18:09 ` [PATCH 2/2] arm64: dts: renesas: ulcb: " Sean Anderson
2024-09-26 18:24 ` [PATCH 0/2] arm64: dts: renesas: " Sean Anderson
2 siblings, 1 reply; 12+ messages in thread
From: Sean Anderson @ 2024-09-26 18:09 UTC (permalink / raw)
To: Arnd Bergmann, Olof Johansson, linux-arm-kernel
Cc: Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven,
Sean Anderson
Add SD/OE pin properties to the devicetree so that Linux can configure
the pin without relying on the OTP. This matches the register
configuration reported by Geert [1], as well as my inspection of the
schematic (which shows the SD/OE pin permanently tied high).
[1] https://lore.kernel.org/linux-clk/CAMuHMdW9LMuQLuPEF-Fcs1E6Q7dDzY17VZqu4awKDj5WSTRt=A@mail.gmail.com/
Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
---
arch/arm64/boot/dts/renesas/salvator-xs.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/renesas/salvator-xs.dtsi b/arch/arm64/boot/dts/renesas/salvator-xs.dtsi
index 08b925624e12..1d18dedb1ff0 100644
--- a/arch/arm64/boot/dts/renesas/salvator-xs.dtsi
+++ b/arch/arm64/boot/dts/renesas/salvator-xs.dtsi
@@ -25,6 +25,8 @@ versaclock6: clock-generator@6a {
#clock-cells = <1>;
clocks = <&x23_clk>;
clock-names = "xin";
+ idt,shutdown = <0>;
+ idt,output-enable-active = <1>;
};
};
--
2.35.1.1320.gc452695387.dirty
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/2] arm64: dts: renesas: ulcb: Add SD/OE pin properties
2024-09-26 18:09 [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties Sean Anderson
2024-09-26 18:09 ` [PATCH 1/2] arm64: dts: renesas: salvator-xs: " Sean Anderson
@ 2024-09-26 18:09 ` Sean Anderson
2024-09-27 10:34 ` Geert Uytterhoeven
2024-09-26 18:24 ` [PATCH 0/2] arm64: dts: renesas: " Sean Anderson
2 siblings, 1 reply; 12+ messages in thread
From: Sean Anderson @ 2024-09-26 18:09 UTC (permalink / raw)
To: Arnd Bergmann, Olof Johansson, linux-arm-kernel
Cc: Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven,
Sean Anderson
Add SD/OE pin properties to the devicetree so that Linux can configure
the pin without relying on the OTP. This configuration is based on
inspection of the schematic (which shows the SD/OE pin permanently tied
high).
Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
---
arch/arm64/boot/dts/renesas/ulcb.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/renesas/ulcb.dtsi b/arch/arm64/boot/dts/renesas/ulcb.dtsi
index a2f66f916048..2a2cd788ffec 100644
--- a/arch/arm64/boot/dts/renesas/ulcb.dtsi
+++ b/arch/arm64/boot/dts/renesas/ulcb.dtsi
@@ -234,6 +234,8 @@ versaclock5: clock-generator@6a {
#clock-cells = <1>;
clocks = <&x23_clk>;
clock-names = "xin";
+ idt,shutdown = <0>;
+ idt,output-enable-active = <1>;
};
};
--
2.35.1.1320.gc452695387.dirty
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties
2024-09-26 18:09 [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties Sean Anderson
2024-09-26 18:09 ` [PATCH 1/2] arm64: dts: renesas: salvator-xs: " Sean Anderson
2024-09-26 18:09 ` [PATCH 2/2] arm64: dts: renesas: ulcb: " Sean Anderson
@ 2024-09-26 18:24 ` Sean Anderson
2024-09-27 10:07 ` Geert Uytterhoeven
2024-09-27 12:19 ` Adam Ford
2 siblings, 2 replies; 12+ messages in thread
From: Sean Anderson @ 2024-09-26 18:24 UTC (permalink / raw)
To: linux-arm-kernel, Adam Ford, Marian-Cristian Rotariu, Biju Das,
Laurent Pinchart
Cc: Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven,
Olof Johansson, Arnd Bergmann
On 9/26/24 14:09, Sean Anderson wrote:
> Linux can configure almost every part of this clock generator without
> relying on the OTP settings. However, the correct configuration for the
> SD/OE pin cannot be determined automatically. Therefore, add the
> appropriate properties to configure this pin.
>
> I have CC'd some people who appear to have access to the following
> boards which use the versaclock5:
>
> - Salvator-X
> - HiHope RZ/G2[MN] Main Board
> - Beacon Embedded Works RZ/G2N Development Kit
>
> as I could not find schematics for these boards. You can help me out by
> (pick one):
>
> - Run the following command and send me the output:
>
> $ grep 10: /sys/kernel/debug/regmap/*-006a/registers
>
> - Measure the voltage on the SD/OE pin on a functioning board.
> - Inspect (or send me) the schematic to determine the state of the SD/OE
> pin during normal operation.
>
> My suspicion is that all of these boards use the same configuration
> (SD/OE pin tied high) owing to their common design heritage. Thanks in
> advance.
+CC the people I meant to CC in the first place
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties
2024-09-26 18:24 ` [PATCH 0/2] arm64: dts: renesas: " Sean Anderson
@ 2024-09-27 10:07 ` Geert Uytterhoeven
2024-09-27 12:19 ` Adam Ford
1 sibling, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2024-09-27 10:07 UTC (permalink / raw)
To: Sean Anderson
Cc: linux-arm-kernel, Adam Ford, Marian-Cristian Rotariu, Biju Das,
Laurent Pinchart, Krzysztof Kozlowski, Rob Herring,
linux-renesas-soc, linux-kernel, devicetree, Conor Dooley,
Magnus Damm, Geert Uytterhoeven, Olof Johansson, Arnd Bergmann
Hi Sean,
On Thu, Sep 26, 2024 at 8:24 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> On 9/26/24 14:09, Sean Anderson wrote:
> > Linux can configure almost every part of this clock generator without
> > relying on the OTP settings. However, the correct configuration for the
> > SD/OE pin cannot be determined automatically. Therefore, add the
> > appropriate properties to configure this pin.
> >
> > I have CC'd some people who appear to have access to the following
> > boards which use the versaclock5:
> >
> > - Salvator-X
> > - HiHope RZ/G2[MN] Main Board
> > - Beacon Embedded Works RZ/G2N Development Kit
> >
> > as I could not find schematics for these boards. You can help me out by
> > (pick one):
> >
> > - Run the following command and send me the output:
> >
> > $ grep 10: /sys/kernel/debug/regmap/*-006a/registers
On Salvator-X (5p49v5923) and ULCB (5p49v5925): 82
On Salvator-XS (5p49v6901): 8a
> > - Inspect (or send me) the schematic to determine the state of the SD/OE
> > pin during normal operation.
> >
> > My suspicion is that all of these boards use the same configuration
> > (SD/OE pin tied high) owing to their common design heritage. Thanks in
> > advance.
According to the schematics, the SD/OE pin is indeed strapped high on
all of the Salvator-X(S), ULCB, HiHope, and Renesom base and SoM boards.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] arm64: dts: renesas: salvator-xs: Add SD/OE pin properties
2024-09-26 18:09 ` [PATCH 1/2] arm64: dts: renesas: salvator-xs: " Sean Anderson
@ 2024-09-27 10:34 ` Geert Uytterhoeven
2024-10-07 12:12 ` Geert Uytterhoeven
0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2024-09-27 10:34 UTC (permalink / raw)
To: Sean Anderson
Cc: Arnd Bergmann, Olof Johansson, linux-arm-kernel,
Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven
Hi Sean,
On Thu, Sep 26, 2024 at 8:09 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> Add SD/OE pin properties to the devicetree so that Linux can configure
> the pin without relying on the OTP. This matches the register
> configuration reported by Geert [1], as well as my inspection of the
> schematic (which shows the SD/OE pin permanently tied high).
>
> [1] https://lore.kernel.org/linux-clk/CAMuHMdW9LMuQLuPEF-Fcs1E6Q7dDzY17VZqu4awKDj5WSTRt=A@mail.gmail.com/
>
> Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
Thanks for your patch!
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
There is no change in the output of
grep 10: /sys/kernel/debug/regmap/*-006a/registers
before/after this patch, so
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
BTW, I applied the same patch to salvator-x.dtsi, and that seems to be
fine, too.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] arm64: dts: renesas: ulcb: Add SD/OE pin properties
2024-09-26 18:09 ` [PATCH 2/2] arm64: dts: renesas: ulcb: " Sean Anderson
@ 2024-09-27 10:34 ` Geert Uytterhoeven
2024-10-07 12:14 ` Geert Uytterhoeven
0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2024-09-27 10:34 UTC (permalink / raw)
To: Sean Anderson
Cc: Arnd Bergmann, Olof Johansson, linux-arm-kernel,
Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven
Hi Sean,
On Thu, Sep 26, 2024 at 8:09 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> Add SD/OE pin properties to the devicetree so that Linux can configure
> the pin without relying on the OTP. This configuration is based on
> inspection of the schematic (which shows the SD/OE pin permanently tied
> high).
>
> Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
There is no change in the output of
grep 10: /sys/kernel/debug/regmap/*-006a/registers
before/after this patch, so
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties
2024-09-26 18:24 ` [PATCH 0/2] arm64: dts: renesas: " Sean Anderson
2024-09-27 10:07 ` Geert Uytterhoeven
@ 2024-09-27 12:19 ` Adam Ford
2024-09-27 12:38 ` Geert Uytterhoeven
1 sibling, 1 reply; 12+ messages in thread
From: Adam Ford @ 2024-09-27 12:19 UTC (permalink / raw)
To: Sean Anderson
Cc: linux-arm-kernel, Marian-Cristian Rotariu, Biju Das,
Laurent Pinchart, Krzysztof Kozlowski, Rob Herring,
linux-renesas-soc, linux-kernel, devicetree, Conor Dooley,
Magnus Damm, Geert Uytterhoeven, Olof Johansson, Arnd Bergmann
On Thu, Sep 26, 2024 at 1:24 PM Sean Anderson <sean.anderson@linux.dev> wrote:
>
> On 9/26/24 14:09, Sean Anderson wrote:
> > Linux can configure almost every part of this clock generator without
> > relying on the OTP settings. However, the correct configuration for the
> > SD/OE pin cannot be determined automatically. Therefore, add the
> > appropriate properties to configure this pin.
> >
> > I have CC'd some people who appear to have access to the following
> > boards which use the versaclock5:
> >
> > - Salvator-X
> > - HiHope RZ/G2[MN] Main Board
> > - Beacon Embedded Works RZ/G2N Development Kit
> >
> > as I could not find schematics for these boards. You can help me out by
> > (pick one):
> >
> > - Run the following command and send me the output:
> >
> > $ grep 10: /sys/kernel/debug/regmap/*-006a/registers
Without any of the patches from this series, for the Beacon RZ/G2 Boards:
grep 10: /sys/kernel/debug/regmap/*-006a/registers
/sys/kernel/debug/regmap/2-006a/registers:10: a0
/sys/kernel/debug/regmap/4-006a/registers:10: a0
> >
> > - Measure the voltage on the SD/OE pin on a functioning board.
> > - Inspect (or send me) the schematic to determine the state of the SD/OE
> > pin during normal operation.
The SD/OE pins on the Beacon boards are not tied high by default.
They have an optional pull-up resistor, but it is not populated by
default.
adam
> >
> > My suspicion is that all of these boards use the same configuration
> > (SD/OE pin tied high) owing to their common design heritage. Thanks in
> > advance.
>
> +CC the people I meant to CC in the first place
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties
2024-09-27 12:19 ` Adam Ford
@ 2024-09-27 12:38 ` Geert Uytterhoeven
2024-09-27 12:51 ` Adam Ford
0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2024-09-27 12:38 UTC (permalink / raw)
To: Adam Ford
Cc: Sean Anderson, linux-arm-kernel, Marian-Cristian Rotariu,
Biju Das, Laurent Pinchart, Krzysztof Kozlowski, Rob Herring,
linux-renesas-soc, linux-kernel, devicetree, Conor Dooley,
Magnus Damm, Geert Uytterhoeven, Olof Johansson, Arnd Bergmann
Hi Adam,
On Fri, Sep 27, 2024 at 2:20 PM Adam Ford <aford173@gmail.com> wrote:
> On Thu, Sep 26, 2024 at 1:24 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> > > - Inspect (or send me) the schematic to determine the state of the SD/OE
> > > pin during normal operation.
>
> The SD/OE pins on the Beacon boards are not tied high by default.
> They have an optional pull-up resistor, but it is not populated by
> default.
Whoops, this "np" suffix is really tiny! I had completely missed it :-(
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties
2024-09-27 12:38 ` Geert Uytterhoeven
@ 2024-09-27 12:51 ` Adam Ford
0 siblings, 0 replies; 12+ messages in thread
From: Adam Ford @ 2024-09-27 12:51 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Sean Anderson, linux-arm-kernel, Marian-Cristian Rotariu,
Biju Das, Laurent Pinchart, Krzysztof Kozlowski, Rob Herring,
linux-renesas-soc, linux-kernel, devicetree, Conor Dooley,
Magnus Damm, Geert Uytterhoeven, Olof Johansson, Arnd Bergmann
On Fri, Sep 27, 2024 at 7:38 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
>
> Hi Adam,
>
> On Fri, Sep 27, 2024 at 2:20 PM Adam Ford <aford173@gmail.com> wrote:
> > On Thu, Sep 26, 2024 at 1:24 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> > > > - Inspect (or send me) the schematic to determine the state of the SD/OE
> > > > pin during normal operation.
> >
> > The SD/OE pins on the Beacon boards are not tied high by default.
> > They have an optional pull-up resistor, but it is not populated by
> > default.
>
> Whoops, this "np" suffix is really tiny! I had completely missed it :-(
I have worked at Beacon/Logic PD for 10 years and I still miss the
'np' at times. It's done that way, so when the bill-of-material is
generated from the schematic, the system throws away anything with an
'np' suffix, but it makes it really easy to enable it and know what
the part should be.
adam
>
> Gr{oetje,eeting}s,
>
> Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> -- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] arm64: dts: renesas: salvator-xs: Add SD/OE pin properties
2024-09-27 10:34 ` Geert Uytterhoeven
@ 2024-10-07 12:12 ` Geert Uytterhoeven
0 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2024-10-07 12:12 UTC (permalink / raw)
To: Sean Anderson
Cc: Arnd Bergmann, Olof Johansson, linux-arm-kernel,
Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm, Geert Uytterhoeven
On Fri, Sep 27, 2024 at 12:34 PM Geert Uytterhoeven
<geert@linux-m68k.org> wrote:
> On Thu, Sep 26, 2024 at 8:09 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> > Add SD/OE pin properties to the devicetree so that Linux can configure
> > the pin without relying on the OTP. This matches the register
> > configuration reported by Geert [1], as well as my inspection of the
> > schematic (which shows the SD/OE pin permanently tied high).
> >
> > [1] https://lore.kernel.org/linux-clk/CAMuHMdW9LMuQLuPEF-Fcs1E6Q7dDzY17VZqu4awKDj5WSTRt=A@mail.gmail.com/
> >
> > Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
>
> Thanks for your patch!
>
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
>
> There is no change in the output of
>
> grep 10: /sys/kernel/debug/regmap/*-006a/registers
>
> before/after this patch, so
> Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
>
> BTW, I applied the same patch to salvator-x.dtsi, and that seems to be
> fine, too.
Thanks, will queue in renesas-devel for v6.13.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] arm64: dts: renesas: ulcb: Add SD/OE pin properties
2024-09-27 10:34 ` Geert Uytterhoeven
@ 2024-10-07 12:14 ` Geert Uytterhoeven
0 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2024-10-07 12:14 UTC (permalink / raw)
To: Sean Anderson
Cc: Arnd Bergmann, Olof Johansson, linux-arm-kernel,
Krzysztof Kozlowski, Rob Herring, linux-renesas-soc, linux-kernel,
devicetree, Conor Dooley, Magnus Damm
On Fri, Sep 27, 2024 at 12:34 PM Geert Uytterhoeven
<geert@linux-m68k.org> wrote:
> On Thu, Sep 26, 2024 at 8:09 PM Sean Anderson <sean.anderson@linux.dev> wrote:
> > Add SD/OE pin properties to the devicetree so that Linux can configure
> > the pin without relying on the OTP. This configuration is based on
> > inspection of the schematic (which shows the SD/OE pin permanently tied
> > high).
> >
> > Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
>
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
>
> There is no change in the output of
>
> grep 10: /sys/kernel/debug/regmap/*-006a/registers
>
> before/after this patch, so
> Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Thanks, will queue in renesas-devel for v6.13.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-10-07 12:14 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-26 18:09 [PATCH 0/2] arm64: dts: renesas: Add SD/OE pin properties Sean Anderson
2024-09-26 18:09 ` [PATCH 1/2] arm64: dts: renesas: salvator-xs: " Sean Anderson
2024-09-27 10:34 ` Geert Uytterhoeven
2024-10-07 12:12 ` Geert Uytterhoeven
2024-09-26 18:09 ` [PATCH 2/2] arm64: dts: renesas: ulcb: " Sean Anderson
2024-09-27 10:34 ` Geert Uytterhoeven
2024-10-07 12:14 ` Geert Uytterhoeven
2024-09-26 18:24 ` [PATCH 0/2] arm64: dts: renesas: " Sean Anderson
2024-09-27 10:07 ` Geert Uytterhoeven
2024-09-27 12:19 ` Adam Ford
2024-09-27 12:38 ` Geert Uytterhoeven
2024-09-27 12:51 ` Adam Ford
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).