diff mbox series

[2/2] microblaze: Add nor device to distro boot

Message ID 8ac2677c9fbacacf457ddcc958eec2121ba29756.1608214147.git.michal.simek@xilinx.com
State Accepted
Commit 6b80de790cf95c5e2e3fab57b33a9db1004e4ccb
Delegated to: Michal Simek
Headers show
Series [1/2] microblaze: Set script_offset_nor env variable | expand

Commit Message

Michal Simek Dec. 17, 2020, 2:09 p.m. UTC
From: T Karthik Reddy <t.karthik.reddy@xilinx.com>

Add parallel nor device to distroboot for microblaze.

Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 include/configs/microblaze-generic.h | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

Comments

Michal Simek Jan. 5, 2021, 9:37 a.m. UTC | #1
čt 17. 12. 2020 v 15:09 odesílatel Michal Simek
<michal.simek@xilinx.com> napsal:
>
> From: T Karthik Reddy <t.karthik.reddy@xilinx.com>
>
> Add parallel nor device to distroboot for microblaze.
>
> Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
>  include/configs/microblaze-generic.h | 17 ++++++++++++++++-
>  1 file changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h
> index bc0bf0497378..59b20cf116a8 100644
> --- a/include/configs/microblaze-generic.h
> +++ b/include/configs/microblaze-generic.h
> @@ -81,6 +81,20 @@
>  # define BOOT_TARGET_DEVICES_QSPI(func)
>  #endif
>
> +#if defined(CONFIG_MTD_NOR_FLASH)
> +# define BOOT_TARGET_DEVICES_NOR(func)  func(NOR, nor, na)
> +#else
> +# define BOOT_TARGET_DEVICES_NOR(func)
> +#endif
> +
> +#define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
> +       "bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \
> +               "echo NOR: Trying to boot script at ${scriptaddr} && " \
> +               "source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0"
> +
> +#define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
> +       "nor "
> +
>  #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
>         "bootcmd_qspi=sf probe 0 0 0 && " \
>         "sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \
> @@ -101,7 +115,8 @@
>
>  #define BOOT_TARGET_DEVICES(func) \
>         BOOT_TARGET_DEVICES_JTAG(func) \
> -       BOOT_TARGET_DEVICES_QSPI(func)  \
> +       BOOT_TARGET_DEVICES_QSPI(func) \
> +       BOOT_TARGET_DEVICES_NOR(func) \
>         BOOT_TARGET_DEVICES_DHCP(func) \
>         BOOT_TARGET_DEVICES_PXE(func)
>
> --
> 2.29.2
>

Applied.
M
diff mbox series

Patch

diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h
index bc0bf0497378..59b20cf116a8 100644
--- a/include/configs/microblaze-generic.h
+++ b/include/configs/microblaze-generic.h
@@ -81,6 +81,20 @@ 
 # define BOOT_TARGET_DEVICES_QSPI(func)
 #endif
 
+#if defined(CONFIG_MTD_NOR_FLASH)
+# define BOOT_TARGET_DEVICES_NOR(func)  func(NOR, nor, na)
+#else
+# define BOOT_TARGET_DEVICES_NOR(func)
+#endif
+
+#define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
+	"bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \
+		"echo NOR: Trying to boot script at ${scriptaddr} && " \
+		"source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0"
+
+#define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
+	"nor "
+
 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
 	"bootcmd_qspi=sf probe 0 0 0 && " \
 	"sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \
@@ -101,7 +115,8 @@ 
 
 #define BOOT_TARGET_DEVICES(func) \
 	BOOT_TARGET_DEVICES_JTAG(func) \
-	BOOT_TARGET_DEVICES_QSPI(func)  \
+	BOOT_TARGET_DEVICES_QSPI(func) \
+	BOOT_TARGET_DEVICES_NOR(func) \
 	BOOT_TARGET_DEVICES_DHCP(func) \
 	BOOT_TARGET_DEVICES_PXE(func)