Message ID | 20231023-th1520-mmc-v3-6-abc5e7491166@baylibre.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Conor Dooley |
Headers | show |
Series | RISC-V: Add MMC support for TH1520 boards | expand |
Drew Fustini wrote: > Add mmc0 properties for the eMMC device and add mmc1 properties for > the microSD slot. Set the frequency for the sdhci clock. > > Signed-off-by: Drew Fustini <dfustini@baylibre.com> > --- > arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts b/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts > index 70e8042c8304..c4e748827889 100644 > --- a/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts > +++ b/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts > @@ -52,6 +52,10 @@ &uart_sclk { > clock-frequency = <100000000>; > }; > > +&sdhci_clk { > + clock-frequency = <198000000>; > +}; > + > &dmac0 { > status = "okay"; > }; > @@ -59,3 +63,19 @@ &dmac0 { > &uart0 { > status = "okay"; > }; > + > +&mmc0 { > + bus-width = <8>; > + max-frequency = <198000000>; > + mmc-hs400-1_8v; > + non-removable; > + no-sdio; > + no-sd; > + status = "okay"; > +}; > + > +&mmc1 { > + max-frequency = <198000000>; > + bus-width = <4>; > + status = "okay"; > +}; Hi Drew, For the StarFive device tree files we've agreed on sorting by / node, clock references, and then other node references alphabetically. I'm not insisting you should do the same, but it would be nice with some system to make it clear where new node refences should go. Or maybe I'm just not seeing the system you're already following. /Emil > > -- > 2.34.1 > > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv
diff --git a/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts b/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts index 70e8042c8304..c4e748827889 100644 --- a/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts +++ b/arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts @@ -52,6 +52,10 @@ &uart_sclk { clock-frequency = <100000000>; }; +&sdhci_clk { + clock-frequency = <198000000>; +}; + &dmac0 { status = "okay"; }; @@ -59,3 +63,19 @@ &dmac0 { &uart0 { status = "okay"; }; + +&mmc0 { + bus-width = <8>; + max-frequency = <198000000>; + mmc-hs400-1_8v; + non-removable; + no-sdio; + no-sd; + status = "okay"; +}; + +&mmc1 { + max-frequency = <198000000>; + bus-width = <4>; + status = "okay"; +};
Add mmc0 properties for the eMMC device and add mmc1 properties for the microSD slot. Set the frequency for the sdhci clock. Signed-off-by: Drew Fustini <dfustini@baylibre.com> --- arch/riscv/boot/dts/thead/th1520-beaglev-ahead.dts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+)