public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] mx8mq_evk: README: Delete file introduced by mistake
@ 2018-10-26  0:23 Fabio Estevam
  2018-10-26  0:47 ` Peng Fan
  0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2018-10-26  0:23 UTC (permalink / raw)
  To: u-boot

board/freescale/mx8mq_evk/README has been introduced by mistake
in commit d0dd73974c61 ("imx: add i.MX8QXP MEK board support")

Remove it for now as this should be introduced when mx8mq_evk
support is in place.

Reported-by: Tim Harvey <tharvey@gateworks.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/mx8mq_evk/README | 81 ----------------------------------------
 1 file changed, 81 deletions(-)
 delete mode 100644 board/freescale/mx8mq_evk/README

diff --git a/board/freescale/mx8mq_evk/README b/board/freescale/mx8mq_evk/README
deleted file mode 100644
index cd7e67e..0000000
--- a/board/freescale/mx8mq_evk/README
+++ /dev/null
@@ -1,81 +0,0 @@
-U-Boot for the NXP i.MX8MQ EVK board
-
-Quick Start
-===========
-
-- Build U-Boot
-- Build the ARM Trusted firmware binary
-- Get DDR firmware and mkimage tool
-- Generate flash.bin using imx-mkimage
-- Flash the binary into the SD card
-- Boot
-
-Build U-Boot
-============
-
-$ make mx8mq_evk_defconfig
-$ make
-
-Get and Build the ARM Trusted firmware
-======================================
-
-$ git clone https://source.codeaurora.org/external/imx/imx-atf
-$ cd imx-atf/
-$ git checkout origin/imx_4.9.51_imx8m_beta
-$ make PLAT=imx8mq bl31
-
-Get the DDR firmware and mkimage tool
-==============================
-
-$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-7.2.bin
-$ chmod +x firmware-imx-7.2.bin
-$ ./firmware-imx-7.2.bin
-
-Download the imx-mkimage tool:
-
-$ git clone https://source.codeaurora.org/external/imx/imx-mkimage/
-$ cd imx-mkimage/
-$ git checkout origin/imx_4.9.51_imx8m_beta
-
-
-Generate flash.bin using imx-mkimage
-====================================
-
-Copy the following binaries to imx-mkimage/iMX8M folder:
-
-$ cp imx-atf/build/imx8mq/release/bl31.bin imx-mkimage/iMX8M/
-$ cp u-boot/u-boot-nodtb.bin imx-mkimage/iMX8M/
-$ cp u-boot/spl/u-boot-spl.bin imx-mkimage/iMX8M/
-$ cp u-boot/arch/arm/dts/fsl-imx8mq-evk.dtb imx-mkimage/iMX8M/
-
-Copy the following firmwares to imx-mkimage/iMX8 folder :
-
-$ cp firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_1d_dmem.bin imx-mkimage/iMX8M/
-$ cp firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_1d_imem.bin imx-mkimage/iMX8M/
-$ cp firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_2d_dmem.bin imx-mkimage/iMX8M/
-$ cp firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_2d_imem.bin imx-mkimage/iMX8M/
-
-If you want to run with HDMI, copy signed_hdmi_imx8m.bin to imx-mkimage/iMX8M.
-
-Before generating the flash.bin, transfer the mkimage generated by U-Boot to iMX8M folder:
-
-$ cp u-boot/tools/mkimage imx-mkimage/iMX8M/
-$ mv imx-mkimage/iMX8M/mkimage imx-mkimage/iMX8M/mkimage_uboot
-
-$ cd imx-mkimage/
-$ make SOC=iMX8M flash_spl_uboot
-
-Or for using HDMI:
-
-$ make SOC=iMX8M flash_hdmi_spl_uboot
-
-Flash the binary into the SD card
-=================================
-
-Burn the flash.bin binary to SD card offset 33KB:
-
-$ sudo dd if=iMX8M/flash.bin of=/dev/sd[x] bs=1024 seek=33
-
-Boot
-====
-Set Boot switch SW801: 1100 and Bmode: 10 to boot from Micro SD.
-- 
2.7.4

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

* [U-Boot] [PATCH] mx8mq_evk: README: Delete file introduced by mistake
  2018-10-26  0:23 [U-Boot] [PATCH] mx8mq_evk: README: Delete file introduced by mistake Fabio Estevam
@ 2018-10-26  0:47 ` Peng Fan
  0 siblings, 0 replies; 2+ messages in thread
From: Peng Fan @ 2018-10-26  0:47 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Fabio Estevam [mailto:festevam at gmail.com]
> Sent: 2018年10月26日 8:23
> To: sbabic at denx.de
> Cc: u-boot at lists.denx.de; tharvey at gateworks.com; Peng Fan
> <peng.fan@nxp.com>; Fabio Estevam <festevam@gmail.com>
> Subject: [PATCH] mx8mq_evk: README: Delete file introduced by mistake
> 
> board/freescale/mx8mq_evk/README has been introduced by mistake in
> commit d0dd73974c61 ("imx: add i.MX8QXP MEK board support")
> 
> Remove it for now as this should be introduced when mx8mq_evk support is in
> place.
> 
> Reported-by: Tim Harvey <tharvey@gateworks.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Thanks,
Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  board/freescale/mx8mq_evk/README | 81 ----------------------------------------
>  1 file changed, 81 deletions(-)
>  delete mode 100644 board/freescale/mx8mq_evk/README
> 
> diff --git a/board/freescale/mx8mq_evk/README
> b/board/freescale/mx8mq_evk/README
> deleted file mode 100644
> index cd7e67e..0000000
> --- a/board/freescale/mx8mq_evk/README
> +++ /dev/null
> @@ -1,81 +0,0 @@
> -U-Boot for the NXP i.MX8MQ EVK board
> -
> -Quick Start
> -===========
> -
> -- Build U-Boot
> -- Build the ARM Trusted firmware binary
> -- Get DDR firmware and mkimage tool
> -- Generate flash.bin using imx-mkimage
> -- Flash the binary into the SD card
> -- Boot
> -
> -Build U-Boot
> -============
> -
> -$ make mx8mq_evk_defconfig
> -$ make
> -
> -Get and Build the ARM Trusted firmware
> -======================================
> -
> -$ git clone
> https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsource.
> codeaurora.org%2Fexternal%2Fimx%2Fimx-atf&amp;data=02%7C01%7Cpeng.f
> an%40nxp.com%7C7b3f29a20357475a4b2108d63ad9451a%7C686ea1d3bc2b4
> c6fa92cd99c5c301635%7C0%7C0%7C636761102173985023&amp;sdata=6xDil
> qlAeAHIjR%2FDbHTzdpPLBW5fhcwWjeUGOlkjjOs%3D&amp;reserved=0
> -$ cd imx-atf/
> -$ git checkout origin/imx_4.9.51_imx8m_beta -$ make PLAT=imx8mq bl31
> -
> -Get the DDR firmware and mkimage tool
> -==============================
> -
> -$ wget
> https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.n
> xp.com%2Flgfiles%2FNMG%2FMAD%2FYOCTO%2Ffirmware-imx-7.2.bin&amp;
> data=02%7C01%7Cpeng.fan%40nxp.com%7C7b3f29a20357475a4b2108d63ad9
> 451a%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C6367611021739
> 85023&amp;sdata=%2BuPPIGvFH7VoCGZL4Hw6%2B0KxuxLsH5udefKwWE%2F
> vJZc%3D&amp;reserved=0
> -$ chmod +x firmware-imx-7.2.bin
> -$ ./firmware-imx-7.2.bin
> -
> -Download the imx-mkimage tool:
> -
> -$ git clone
> https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsource.
> codeaurora.org%2Fexternal%2Fimx%2Fimx-mkimage%2F&amp;data=02%7C01
> %7Cpeng.fan%40nxp.com%7C7b3f29a20357475a4b2108d63ad9451a%7C686ea
> 1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C636761102173995031&amp;sd
> ata=7%2Fgnl%2B6gT5uHlzz5Xt8nCprpna%2FVjnPhw62x4yEICKE%3D&amp;rese
> rved=0
> -$ cd imx-mkimage/
> -$ git checkout origin/imx_4.9.51_imx8m_beta
> -
> -
> -Generate flash.bin using imx-mkimage
> -====================================
> -
> -Copy the following binaries to imx-mkimage/iMX8M folder:
> -
> -$ cp imx-atf/build/imx8mq/release/bl31.bin imx-mkimage/iMX8M/ -$ cp
> u-boot/u-boot-nodtb.bin imx-mkimage/iMX8M/ -$ cp u-boot/spl/u-boot-spl.bin
> imx-mkimage/iMX8M/ -$ cp u-boot/arch/arm/dts/fsl-imx8mq-evk.dtb
> imx-mkimage/iMX8M/
> -
> -Copy the following firmwares to imx-mkimage/iMX8 folder :
> -
> -$ cp
> firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_1d_dmem.bin
> imx-mkimage/iMX8M/ -$ cp
> firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_1d_imem.bin
> imx-mkimage/iMX8M/ -$ cp
> firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_2d_dmem.bin
> imx-mkimage/iMX8M/ -$ cp
> firmware-imx-7.2/firmware/ddr/synopsys/lpddr4_pmu_train_2d_imem.bin
> imx-mkimage/iMX8M/
> -
> -If you want to run with HDMI, copy signed_hdmi_imx8m.bin to
> imx-mkimage/iMX8M.
> -
> -Before generating the flash.bin, transfer the mkimage generated by U-Boot to
> iMX8M folder:
> -
> -$ cp u-boot/tools/mkimage imx-mkimage/iMX8M/ -$ mv
> imx-mkimage/iMX8M/mkimage imx-mkimage/iMX8M/mkimage_uboot
> -
> -$ cd imx-mkimage/
> -$ make SOC=iMX8M flash_spl_uboot
> -
> -Or for using HDMI:
> -
> -$ make SOC=iMX8M flash_hdmi_spl_uboot
> -
> -Flash the binary into the SD card
> -=================================
> -
> -Burn the flash.bin binary to SD card offset 33KB:
> -
> -$ sudo dd if=iMX8M/flash.bin of=/dev/sd[x] bs=1024 seek=33
> -
> -Boot
> -====
> -Set Boot switch SW801: 1100 and Bmode: 10 to boot from Micro SD.
> --
> 2.7.4

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

end of thread, other threads:[~2018-10-26  0:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-26  0:23 [U-Boot] [PATCH] mx8mq_evk: README: Delete file introduced by mistake Fabio Estevam
2018-10-26  0:47 ` Peng Fan

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