Re: [U-Boot] [PATCH V2 09/23] imx: spl: implement spl_boot_device for i.MX8M

2017-12-16 Thread Fabio Estevam
On Mon, Dec 4, 2017 at 2:31 AM, Peng Fan  wrote:
> Implement spl_boot_device for i.MX8M.
>
> Signed-off-by: Peng Fan 

Reviewed-by: Fabio Estevam 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH V2 09/23] imx: spl: implement spl_boot_device for i.MX8M

2017-12-03 Thread Peng Fan
Implement spl_boot_device for i.MX8M.

Signed-off-by: Peng Fan 
---
 arch/arm/mach-imx/spl.c | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach-imx/spl.c
index d0d1b73aa6..58ec202d4f 100644
--- a/arch/arm/mach-imx/spl.c
+++ b/arch/arm/mach-imx/spl.c
@@ -97,8 +97,8 @@ u32 spl_boot_device(void)
return BOOT_DEVICE_NONE;
 }
 
-#elif defined(CONFIG_MX7)
-/* Translate iMX7 boot device to the SPL boot device enumeration */
+#elif defined(CONFIG_MX7) || defined(CONFIG_MX8M)
+/* Translate iMX7/MX8M boot device to the SPL boot device enumeration */
 u32 spl_boot_device(void)
 {
enum boot_device boot_device_spl = get_boot_device();
@@ -112,11 +112,15 @@ u32 spl_boot_device(void)
return BOOT_DEVICE_MMC2;
case SPI_NOR_BOOT:
return BOOT_DEVICE_SPI;
+   case NAND_BOOT:
+   return BOOT_DEVICE_NAND;
+   case USB_BOOT:
+   return BOOT_DEVICE_USB;
default:
return BOOT_DEVICE_NONE;
}
 }
-#endif /* CONFIG_MX6 || CONFIG_MX7 */
+#endif /* CONFIG_MX6 || CONFIG_MX7 || CONFIG_MX8M */
 
 #ifdef CONFIG_SPL_USB_GADGET_SUPPORT
 int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
-- 
2.14.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot