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

Stefano Babic sbabic at denx.de
Sun Jan 21 16:29:34 UTC 2018



On 10/01/2018 06:20, Peng Fan wrote:
> Implement spl_boot_device for i.MX8M.
> 
> Signed-off-by: Peng Fan <peng.fan at nxp.com>
> Reviewed-by: Fabio Estevam <fabio.estevam at nxp.com>
> Cc: Stefano Babic <sbabic at denx.de>
> ---
>  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 723f51fad3..7c4ee82cd1 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)
> 

Reviewed-by: Stefano Babic <sbabic at denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================


More information about the U-Boot mailing list