* [U-Boot] [PATCH] arm: dts: socfpga: add "u-boot, dm-pre-reloc" to socfpga_cyclone5_socdk dts
@ 2015-10-12 16:59 dinguyen at opensource.altera.com
2015-10-14 16:36 ` Pavel Machek
2015-10-17 0:14 ` Marek Vasut
0 siblings, 2 replies; 3+ messages in thread
From: dinguyen at opensource.altera.com @ 2015-10-12 16:59 UTC (permalink / raw)
To: u-boot
From: Dinh Nguyen <dinguyen@opensource.altera.com>
We need "u-boot,dm-pre-reloc" in the socfpga_cyclone5_socdk.dts file in
order for the SPL to use SD/MMC.
Signed-off-by: Dinh Nguyen <dinguyen@opensource.altera.com>
---
arch/arm/dts/socfpga_cyclone5_socdk.dts | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm/dts/socfpga_cyclone5_socdk.dts b/arch/arm/dts/socfpga_cyclone5_socdk.dts
index 9650eb0..5465609 100644
--- a/arch/arm/dts/socfpga_cyclone5_socdk.dts
+++ b/arch/arm/dts/socfpga_cyclone5_socdk.dts
@@ -69,6 +69,9 @@
};
&mmc0 {
+ status = "okay";
+ u-boot,dm-pre-reloc;
+
cd-gpios = <&portb 18 0>;
vmmc-supply = <®ulator_3_3v>;
vqmmc-supply = <®ulator_3_3v>;
--
2.4.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] arm: dts: socfpga: add "u-boot, dm-pre-reloc" to socfpga_cyclone5_socdk dts
2015-10-12 16:59 [U-Boot] [PATCH] arm: dts: socfpga: add "u-boot, dm-pre-reloc" to socfpga_cyclone5_socdk dts dinguyen at opensource.altera.com
@ 2015-10-14 16:36 ` Pavel Machek
2015-10-17 0:14 ` Marek Vasut
1 sibling, 0 replies; 3+ messages in thread
From: Pavel Machek @ 2015-10-14 16:36 UTC (permalink / raw)
To: u-boot
On Mon 2015-10-12 11:59:04, dinguyen at opensource.altera.com wrote:
> From: Dinh Nguyen <dinguyen@opensource.altera.com>
>
> We need "u-boot,dm-pre-reloc" in the socfpga_cyclone5_socdk.dts file in
> order for the SPL to use SD/MMC.
Acked-by: Pavel Machek <pavel@denx.de>
Pavel
> Signed-off-by: Dinh Nguyen <dinguyen@opensource.altera.com>
> ---
> arch/arm/dts/socfpga_cyclone5_socdk.dts | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/arch/arm/dts/socfpga_cyclone5_socdk.dts b/arch/arm/dts/socfpga_cyclone5_socdk.dts
> index 9650eb0..5465609 100644
> --- a/arch/arm/dts/socfpga_cyclone5_socdk.dts
> +++ b/arch/arm/dts/socfpga_cyclone5_socdk.dts
> @@ -69,6 +69,9 @@
> };
>
> &mmc0 {
> + status = "okay";
> + u-boot,dm-pre-reloc;
> +
> cd-gpios = <&portb 18 0>;
> vmmc-supply = <®ulator_3_3v>;
> vqmmc-supply = <®ulator_3_3v>;
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] arm: dts: socfpga: add "u-boot, dm-pre-reloc" to socfpga_cyclone5_socdk dts
2015-10-12 16:59 [U-Boot] [PATCH] arm: dts: socfpga: add "u-boot, dm-pre-reloc" to socfpga_cyclone5_socdk dts dinguyen at opensource.altera.com
2015-10-14 16:36 ` Pavel Machek
@ 2015-10-17 0:14 ` Marek Vasut
1 sibling, 0 replies; 3+ messages in thread
From: Marek Vasut @ 2015-10-17 0:14 UTC (permalink / raw)
To: u-boot
On Monday, October 12, 2015 at 06:59:04 PM, dinguyen at opensource.altera.com
wrote:
> From: Dinh Nguyen <dinguyen@opensource.altera.com>
>
> We need "u-boot,dm-pre-reloc" in the socfpga_cyclone5_socdk.dts file in
> order for the SPL to use SD/MMC.
>
> Signed-off-by: Dinh Nguyen <dinguyen@opensource.altera.com>
> ---
> arch/arm/dts/socfpga_cyclone5_socdk.dts | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/arch/arm/dts/socfpga_cyclone5_socdk.dts
> b/arch/arm/dts/socfpga_cyclone5_socdk.dts index 9650eb0..5465609 100644
> --- a/arch/arm/dts/socfpga_cyclone5_socdk.dts
> +++ b/arch/arm/dts/socfpga_cyclone5_socdk.dts
> @@ -69,6 +69,9 @@
> };
>
> &mmc0 {
> + status = "okay";
> + u-boot,dm-pre-reloc;
> +
> cd-gpios = <&portb 18 0>;
> vmmc-supply = <®ulator_3_3v>;
> vqmmc-supply = <®ulator_3_3v>;
Applied, thanks!
I didn't unpack either the MAX10 or CV-SoCDK yet, it's in the pipeline for
the upcoming days.
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-17 0:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-12 16:59 [U-Boot] [PATCH] arm: dts: socfpga: add "u-boot, dm-pre-reloc" to socfpga_cyclone5_socdk dts dinguyen at opensource.altera.com
2015-10-14 16:36 ` Pavel Machek
2015-10-17 0:14 ` Marek Vasut
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox