[U-Boot] [PATCH] cmd: nvedit: Add sub-command 'env info'

2019-05-24 Thread Mark Jonas
whether default environment is used [-p] : evaluate whether environment can be persisted The result of multiple evaluations will be combined with AND. Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas --- cmd/Kconfig | 14 cmd/nvedit.c | 108

[U-Boot] [PATCH v3 2/2] splash: Load internal and external data from FIT

2019-02-08 Thread Mark Jonas
Glass , see common/spl_fit.c Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas Reviewed-by: Simon Glass Reviewed-by: Stefano Babic --- common/splash_source.c | 55 +++--- 1 file changed, 34 insertions(+), 21 deletions(-) diff --git a/common

[U-Boot] [PATCH v3 1/2] splash: Use splashfile instead of location->name

2019-02-08 Thread Mark Jonas
for the splash source. Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas Reviewed-by: Simon Glass Reviewed-by: Stefano Babic Reviewed-by: Tomas Melin --- common/splash_source.c | 10 -- doc/README.splashprepare | 9 ++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git

[U-Boot] [PATCH v3 0/2] Load splash from FIT image (internal, external, offset)

2019-02-08 Thread Mark Jonas
We store a splash screen in SPI-NOR. We chose to use a FIT image as a container because we want to - store more than just the splash screen in SPI-NOR, - do not create a bunch of MTD partitions, - do not waste storage space, and - avoid the overhead of a real file system. In general

[U-Boot] [PATCH v2 2/2] splash: Load internal and external data from FIT

2019-02-05 Thread Mark Jonas
Glass , see common/spl_fit.c Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas Reviewed-by: Simon Glass --- common/splash_source.c | 55 +++--- 1 file changed, 34 insertions(+), 21 deletions(-) diff --git a/common/splash_source.c b/common

[U-Boot] [PATCH v2 0/2] Load splash from FIT image (internal, external, offset)

2019-02-05 Thread Mark Jonas
We store a splash screen in SPI-NOR. We chose to use a FIT image as a container because we want to - store more than just the splash screen in SPI-NOR, - do not create a bunch of MTD partitions, - do not waste storage space, and - avoid the overhead of a real file system. In general

[U-Boot] [PATCH v2 1/2] splash: Use splashfile instead of location->name

2019-02-05 Thread Mark Jonas
for the splash source. Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas Reviewed-by: Simon Glass --- common/splash_source.c | 10 -- doc/README.splashprepare | 9 ++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/common/splash_source.c b/common/splash_source.c index

[U-Boot] [PATCH 2/2] splash: Load internal and external data from FIT

2019-02-01 Thread Mark Jonas
Glass , see common/spl_fit.c Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas --- common/splash_source.c | 56 +++--- 1 file changed, 35 insertions(+), 21 deletions(-) diff --git a/common/splash_source.c b/common/splash_source.c index e1e73db..88fba7d

[U-Boot] [PATCH 1/2] splash: Use splashfile instead of location->name

2019-02-01 Thread Mark Jonas
for the splash source. Signed-off-by: Leo Ruan Signed-off-by: Mark Jonas --- common/splash_source.c | 10 -- doc/README.splashprepare | 6 +++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/common/splash_source.c b/common/splash_source.c index 62763b9..e1e73db 100644

[U-Boot] [PATCH 0/2] Load splash from FIT image (internal, external, offset)

2019-02-01 Thread Mark Jonas
We store a splash screen in SPI-NOR. We chose to use a FIT image as a container because we want to - store more than just the splash screen in SPI-NOR, - do not create a bunch of MTD partitions, - do not waste storage space, and - avoid the overhead of a real file system. In general

[U-Boot] [PATCH v3] arm, imx6: add alternative PAD_CTL_DSE constants

2018-06-28 Thread Mark Jonas
Ohm to 37 Ohm table. For example, the IOMUXC_SW_PAD_CTL_PAD_SD2_CLK register (SD-card clock) uses the added table. Signed-off-by: Mark Jonas Reviewed-by: Stefano Babic --- Changes in V3: - Reviewed by Stefano Babic Changes in V2: - Add missing Signed-off-by --- arch/arm/include/asm/mach-imx

[U-Boot] [PATCH v2] arm, imx6: add alternative PAD_CTL_DSE constants

2018-06-28 Thread Mark Jonas
Ohm to 37 Ohm table. For example, the IOMUXC_SW_PAD_CTL_PAD_SD2_CLK register (SD-card clock) uses the added table. Signed-off-by: Mark Jonas --- Changes in V2: - Add missing Signed-off-by --- arch/arm/include/asm/mach-imx/iomux-v3.h | 8 1 file changed, 8 insertions(+) diff --git

[U-Boot] [PATCH] arm,imx6: add alternative PAD_CTL_DSE constants

2018-06-27 Thread Mark Jonas
Not all i.MX6 pads use the same drive strength table. So far only the 240 Ohm to 34 Ohm table was available. Because the constants used have speaking names it can be confusing to use e.g. PAD_CTL_DSE_48ohm when according to the reference manual 52 Ohm is the correct value. This patch adds the 260

[U-Boot] [PATCH] arm,imx6: fix PAD_CTL_SPEED_LOW constant

2018-04-16 Thread Mark Jonas
/IMX6ULRM.pdf [7] https://www.nxp.com/docs/en/reference-manual/IMX6ULLRM.pdf Signed-off-by: Mark Jonas <mark.jo...@de.bosch.com> --- arch/arm/include/asm/mach-imx/iomux-v3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/include/asm/mach-imx/iomux-v3.h b/ar