mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: i.MX6UL: liteSOM: depend on DDR controller settings
@ 2019-02-26 13:05 Marcin Niestroj
  2019-02-26 18:35 ` Bartosz Biłas
  2019-02-27  7:46 ` Sascha Hauer
  0 siblings, 2 replies; 5+ messages in thread
From: Marcin Niestroj @ 2019-02-26 13:05 UTC (permalink / raw)
  To: barebox; +Cc: Bartosz Bilas, Marcin Niestroj

Initially we depended on DDR controller settings for liteSOM and liteboard. With
33fdc89d4cbd ("dts: update to v5.0-rc1") a `device_type = "memory";` property
was added to imx6ul-litesom.dtsi file, which causes "ram0" to be added with
512MB size (value in dtsi) instead of the real 256MB size that is configured in
barebox-grinn-liteboard-256mb.img. As a result Linux kernel fails to boot.

Lets depend on DDR controller settings, by removing whole `/memory` node from
device tree. This makes barebox-grinn-liteboard-256mb.img able to boot Linux
kernel once again.

Reported-by: Bartosz Bilas <b.bilas@grinn-global.com>
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
---
 arch/arm/dts/imx6ul-liteboard.dts | 1 +
 arch/arm/dts/imx6ul-litesom.dtsi  | 8 ++++++++
 2 files changed, 9 insertions(+)
 create mode 100644 arch/arm/dts/imx6ul-litesom.dtsi

diff --git a/arch/arm/dts/imx6ul-liteboard.dts b/arch/arm/dts/imx6ul-liteboard.dts
index 03a4bfc78..eb34e11dd 100644
--- a/arch/arm/dts/imx6ul-liteboard.dts
+++ b/arch/arm/dts/imx6ul-liteboard.dts
@@ -42,6 +42,7 @@
  */
 
 #include <arm/imx6ul-liteboard.dts>
+#include "imx6ul-litesom.dtsi"
 
 / {
 	chosen {
diff --git a/arch/arm/dts/imx6ul-litesom.dtsi b/arch/arm/dts/imx6ul-litesom.dtsi
new file mode 100644
index 000000000..8b73bfdd6
--- /dev/null
+++ b/arch/arm/dts/imx6ul-litesom.dtsi
@@ -0,0 +1,8 @@
+/*
+ * Include file to switch board DTS from using hardcoded memory node
+ * to dynamic memory size detection based on DDR controller settings
+ */
+
+/ {
+	/delete-node/ memory@80000000;
+};
-- 
2.20.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-07  7:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-26 13:05 [PATCH] ARM: i.MX6UL: liteSOM: depend on DDR controller settings Marcin Niestroj
2019-02-26 18:35 ` Bartosz Biłas
2019-02-27  7:46 ` Sascha Hauer
2019-02-27 10:04   ` Marcin Niestrój
2019-03-07  7:24     ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox