Re: [PATCH 03/26] imx8mm_evk: Switch to new imx8mm evk board

2021-05-18 Thread Vanessa Maegima
Hi Andrey, On Sun, May 16, 2021 at 11:31 AM ZHIZHIKIN Andrey wrote: > > Hello Ricardo, > > > -Original Message- > > From: Ricardo Salveti > > Sent: Friday, May 14, 2021 5:29 PM > > To: Fabio Estevam > > Cc: ZHIZHIKIN Andrey ; Peng Fan > > (OSS) ; sba...@denx.de; u-boot@lists.denx.de; ub

[U-Boot] [PATCH] pico-imx7d: Replace fatload command

2018-04-06 Thread Vanessa Maegima
Replace fatload with the fs generic loading interface ('load' command). Signed-off-by: Vanessa Maegima --- configs/pico-imx7d_defconfig | 1 + include/configs/pico-imx7d.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configs/pico-imx7d_defconfig b/co

[U-Boot] [PATCH] pico-imx7d: Add "how to boot with NXP 4.1 Kernel"

2017-08-29 Thread Vanessa Maegima
The NXP 4.1 kernel needs to boot with secure boot. Add information on how to enable secure boot mode. Signed-off-by: Vanessa Maegima --- board/technexion/pico-imx7d/README | 17 + 1 file changed, 17 insertions(+) diff --git a/board/technexion/pico-imx7d/README b/board

[U-Boot] [PATCH] pico-imx7d: Add support for secure boot

2017-08-23 Thread Vanessa Maegima
Add a new defconfig to enable secure boot on pico-imx7d. Signed-off-by: Vanessa Maegima --- board/technexion/pico-imx7d/MAINTAINERS | 1 + board/technexion/pico-imx7d/pico-imx7d.c | 9 +++- configs/pico-imx7d_secure_defconfig | 35 3 files changed

[U-Boot] [PATCH next 3/3] mx6sabreauto: Update to SPL only mode

2017-06-29 Thread Vanessa Maegima
. - Adds a README with instructions to build and flash SPL and u-boot.img. Signed-off-by: Vanessa Maegima --- arch/arm/cpu/armv7/mx6/Kconfig | 6 +- board/freescale/mx6qsabreauto/MAINTAINERS | 9 -- board/freescale/mx6qsabreauto/imximage.cfg | 129

[U-Boot] [PATCH next 2/3] mx6qsabreauto: Add SPL support

2017-06-29 Thread Vanessa Maegima
Flashed SPL and u-boot.img to an SD card and could successfully boot it on mx6q, mx6qp and mx6dl sabreauto boards. Signed-off-by: Vanessa Maegima --- arch/arm/cpu/armv7/mx6/Kconfig| 1 + board/freescale/mx6qsabreauto/mx6qsabreauto.c | 638 +- configs

[U-Boot] [PATCH next 1/3] mx6: soc: Move mxs_dma_init() into the mxs nand driver

2017-06-29 Thread Vanessa Maegima
From: Fabio Estevam Currently the following build error is seen when a board using MMC SPL is built and the MXS nand driver is also selected: arch/arm/cpu/armv7/built-in.o: In function `arch_cpu_init': arch/arm/cpu/armv7/mx6/soc.c:432: undefined reference to 'mxs_dma_init' On mx6 the only user

Re: [U-Boot] [PATCH] pico-imx7d: Add initial support

2017-05-19 Thread Vanessa Maegima
e original patch? Thanks in advance! Regards, Vanessa Maegima From: Vanessa Ayumi Maegima Sent: Tuesday, May 9, 2017 10:45:20 AM To: Stefano Babic Cc: Vanessa Maegima; Jagan Teki; Fabio Estevam; u-boot@lists.denx.de Subject: Re: [U-Boot] [PATCH] pico-imx7d: A

[U-Boot] [PATCH] pico-imx7d: Add initial support

2017-05-08 Thread Vanessa Maegima
Add the initial support for pico-imx7d board based on Wig Cheng's source code. Add support for eMMC, USB gadget, I2C, PMIC and Ethernet. For more information about this board, please visit: http://www.technexion.org/products/pico/pico-som/pico-imx7-emmc Signed-off-by: Vanessa Maegima ---

[U-Boot] [PATCH] warp7: Add PMIC support

2016-08-19 Thread Vanessa Maegima
Add PMIC support. Tested by command "pmic PFUZE3000 dump". Signed-off-by: Vanessa Maegima --- board/warp7/warp7.c | 57 + include/configs/warp7.h | 12 +++ 2 files changed, 69 insertions(+) diff --git a/board/warp7/warp7

[U-Boot] [PATCH v2] pico-imx6ul: Add PMIC support

2016-07-13 Thread Vanessa Maegima
Add PMIC support. Tested by command "pmic PFUZE3000 dump". Signed-off-by: Vanessa Maegima --- Changes since v1: - Remove use of "reg" variable in function "pmic_reg_write". board/technexion/pico-imx6ul/pico-imx6ul.c | 70 ++

[U-Boot] [PATCH] pico-imx6ul: Add PMIC support

2016-07-13 Thread Vanessa Maegima
Add PMIC support. Tested by command "pmic PFUZE3000 dump". Signed-off-by: Vanessa Maegima --- board/technexion/pico-imx6ul/pico-imx6ul.c | 70 ++ include/configs/pico-imx6ul.h | 12 + 2 files changed, 82 insertions(+) diff --git a/board/

[U-Boot] [PATCH 1/2] pico-imx6ul: Add DFU support

2016-06-15 Thread Vanessa Maegima
DFU is a convenient way to program U-boot binary into the eMMC. Add support for it. Signed-off-by: Vanessa Maegima --- configs/pico-imx6ul_defconfig | 8 include/configs/pico-imx6ul.h | 8 +++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/configs/pico

[U-Boot] [PATCH 2/2] pico-imx6ul: Add a README file

2016-06-15 Thread Vanessa Maegima
Add a README file to help users to install U-boot binary into the eMMC. Signed-off-by: Vanessa Maegima --- board/technexion/pico-imx6ul/README | 57 + 1 file changed, 57 insertions(+) create mode 100644 board/technexion/pico-imx6ul/README diff --git a/board

[U-Boot] [PATCH] pico-imx6ul: Add USB Host support

2016-06-13 Thread Vanessa Maegima
ble. USB1: USB EHCI 1.00 scanning bus 1 for devices... 2 USB Device(s) found scanning usb for storage devices... 1 Storage Device(s) found Signed-off-by: Vanessa Maegima --- board/technexion/p

[U-Boot] [PATCH v2 3/3] mx6sxsabresd: Avoid hardcoded RAM size

2016-06-09 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- Changes since v1: - None board/freescale/mx6sxsabresd/mx6sxsabresd.c | 2 +- include/configs

[U-Boot] [PATCH v2 1/3] mx6slevk: Avoid hardcoded RAM size

2016-06-09 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- Changes since v1: - None board/freescale/mx6slevk/mx6slevk.c | 2 +- include/configs/mx6slevk.h

[U-Boot] [PATCH v2 2/3] mx6sxsabreauto: Avoid hardcoded RAM size

2016-06-09 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- Changes since v1: - remove typo in function name board/freescale/mx6sxsabreauto/mx6sxsabreauto.c | 2

[U-Boot] [PATCH 3/3] mx6sxsabresd: Avoid hardcoded RAM size

2016-06-09 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- board/freescale/mx6sxsabresd/mx6sxsabresd.c | 2 +- include/configs/mx6sxsabresd.h | 1

[U-Boot] [PATCH 1/3] mx6slevk: Avoid hardcoded RAM size

2016-06-09 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- board/freescale/mx6slevk/mx6slevk.c | 2 +- include/configs/mx6slevk.h | 1 - 2 files changed

[U-Boot] [PATCH 2/3] mx6sxsabreauto: Avoid hardcoded RAM size

2016-06-09 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- board/freescale/mx6sxsabreauto/mx6sxsabreauto.c | 2 +- include/configs/mx6sxsabreauto.h

[U-Boot] [PATCH] mx6qsabreauto: Avoid hardcoded RAM size

2016-06-08 Thread Vanessa Maegima
Instead of passing the total RAM size via PHYS_SDRAM_SIZE option, we should better use imx_ddr_size() function, which automatically determines the RAM size. Signed-off-by: Vanessa Maegima --- board/freescale/mx6qsabreauto/mx6qsabreauto.c | 2 +- include/configs/mx6qsabreauto.h | 1