public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lothar Rubusch <l.rubusch@gmail.com>
To: u-boot@lists.denx.de, trini@konsulko.com, marex@denx.de,
	simon.k.r.goldschmidt@gmail.com, tien.fong.chee@intel.com
Cc: l.rubusch@gmail.com
Subject: [PATCH v2 4/7] ARM: socfpga: add Enclustra AA1 extra env settings
Date: Tue, 17 Sep 2024 06:21:54 +0000	[thread overview]
Message-ID: <20240917062157.3181-5-l.rubusch@gmail.com> (raw)
In-Reply-To: <20240917062157.3181-1-l.rubusch@gmail.com>

Add command files for boot scripts and initial boot environment.

Signed-off-by: Andreas Buerkler <andreas.buerkler@enclustra.com>
Signed-off-by: Lothar Rubusch <l.rubusch@gmail.com>
---
 include/configs/socfpga_mercury_aa1.h | 35 +++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/include/configs/socfpga_mercury_aa1.h b/include/configs/socfpga_mercury_aa1.h
index a5b63336e8..4b047e11a7 100644
--- a/include/configs/socfpga_mercury_aa1.h
+++ b/include/configs/socfpga_mercury_aa1.h
@@ -21,6 +21,41 @@
  */
 #define CFG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, 115200}
 
+/* U-Boot environment */
+#define CFG_EXTRA_ENV_SETTINGS						\
+	"bitstream_size=0xD00000\0"					\
+	"bootargs=earlycon console=ttyS0,115200 rw rootwait root=/dev/mmcblk0p3\0" \
+	"bootargs_qspi=earlycon console=ttyS0,115200 rw root=/dev/ram0\0" \
+	"bootm_size=0x0a000000\0"					\
+	"env_size=0x80000\0"						\
+	"fdt_addr_r=0x10000000\0"					\
+	"fdtfile=system.dtb\0"						\
+	"fdtload=load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} ${bootdir}/${fdtfile}; load ${devtype} ${devnum}:${distro_bootpart} ${fdto_addr_r} ${bootdir}/${fdtofile}; fdt addr $fdt_addr_r; fdt resize 8192; fdt apply $fdto_addr_r\0" \
+	"fdtload_qspi=sf probe; sf read ${fdt_addr_r} ${qspi_offset_addr_devicetree} ${fdt_size}; sf read ${fdto_addr_r} ${qspi_offset_addr_dtoverlay} ${fdto_size}; fdt addr ${fdt_addr_r}; fdt resize 8192; fdt apply ${fdto_addr_r}\0" \
+	"fdto_addr_r=0x100c0000\0"					\
+	"fdtofile=socfpga_enclustra_mercury_XXX_overlay.dtbo\0"		\
+	"fdto_size=0x40000\0"						\
+	"fdt_size=0x40000\0"						\
+	"kernel_addr_r=0x11000000\0"					\
+	"kernel_size=0x1000000\0"					\
+	"qspiboot=source ${scriptaddr}\0"				\
+	"qspiload=setenv bootargs ${bootargs_qspi}; sf probe; sf read ${scriptaddr} ${qspi_offset_addr_boot_script} ${scriptsize}\0" \
+	"qspi_offset_addr_bitstream=0x300000\0"				\
+	"qspi_offset_addr_boot_script=0x200000\0"			\
+	"qspi_offset_addr_devicetree=0x280000\0"			\
+	"qspi_offset_addr_dtoverlay=0x2c0000\0"				\
+	"qspi_offset_addr_kernel=0x1000000\0"				\
+	"qspi_offset_addr_rootfs=0x2000000\0"				\
+	"qspi_offset_addr_spl=0x0\0"					\
+	"qspi_offset_addr_uboot=0x100000\0"				\
+	"qspi_offset_addr_uboot_env=0x180000\0"				\
+	"rootfs_addr_r=0x12000000\0"					\
+	"rootfs_size=0x2000000\0"					\
+	"scriptaddr=0x10800000\0"					\
+	"scriptsize=0x80000\0"						\
+	"spl_size=0x100000\0"						\
+	"uboot_size=0x80000\0"
+
 /*
  * L4 OSC1 Timer 0
  */
-- 
2.25.1


  parent reply	other threads:[~2024-09-18  6:15 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-17  6:21 [PATCH v2 0/7] add support for Enclustra Mercury AA1 SoMs Lothar Rubusch
2024-09-17  6:21 ` [PATCH v2 1/7] doc: board: enclustra: add Enclustra Intel AA1 SoM Lothar Rubusch
2024-09-17  6:21 ` [PATCH v2 2/7] ARM: dts: socfpga: add Enclustra Intel AA1 Lothar Rubusch
2024-09-17  6:21 ` [PATCH v2 3/7] ARM: socfpga: add Enclustra AA1 SoM support Lothar Rubusch
2024-09-22 21:27   ` Marek Vasut
2024-09-17  6:21 ` Lothar Rubusch [this message]
2024-09-22 21:28   ` [PATCH v2 4/7] ARM: socfpga: add Enclustra AA1 extra env settings Marek Vasut
2024-09-17  6:21 ` [PATCH v2 5/7] ARM: socfpga: add Enclustra AA1 demo env files Lothar Rubusch
2024-09-22 21:30   ` Marek Vasut
2024-09-17  6:21 ` [PATCH v2 6/7] ARM: socfpga: add Enclustra AA1 boot scripts Lothar Rubusch
2024-09-22 21:31   ` Marek Vasut
2024-09-17  6:21 ` [PATCH v2 7/7] ARM: socfpga: AA1: support MAC from secure eeprom Lothar Rubusch
2024-09-22 21:40   ` Marek Vasut
2024-09-22 15:26 ` [PATCH v2 0/7] add support for Enclustra Mercury AA1 SoMs Marek Vasut
2024-09-22 19:20   ` Lothar Rubusch
2024-09-22 21:11     ` Marek Vasut

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=20240917062157.3181-5-l.rubusch@gmail.com \
    --to=l.rubusch@gmail.com \
    --cc=marex@denx.de \
    --cc=simon.k.r.goldschmidt@gmail.com \
    --cc=tien.fong.chee@intel.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /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