[PATCH] ARM: dts: mx8mq-phytec-phycore-som: Add watchdog

2019-03-15 Thread Christian Hemp
Add watchdog support for imx8mq-phytec-phycore-som. Signed-off-by: Christian Hemp --- arch/arm/dts/imx8mq-phytec-phycore-som.dts | 13 + 1 file changed, 13 insertions(+) diff --git a/arch/arm/dts/imx8mq-phytec-phycore-som.dts b/arch/arm/dts/imx8mq-phytec-phycore-som.dts index

[PATCH] mci: imx-esdhc-pbl: initialize is_be

2019-03-15 Thread Christian Hemp
Initialize is_be, otherwise the value of is_be is undefined. So it is possible that the i.MX8 will not boot because the bigendian functions are used. Signed-off-by: Christian Hemp --- drivers/mci/imx-esdhc-pbl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mci/imx-esdhc-pbl.c b

[PATCH] Documentation: imx8mq-evk: fix firmware path

2019-02-26 Thread Christian Hemp
Since commit: "da985aac8 firmware: drop the imx subdir" the firmware is not longer placed in imx subdir. So the subdir can be removed from the documentation. Signed-off-by: Christian Hemp --- Documentation/boards/imx/nxp-imx8mq-evk.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletio

[PATCH v2] ARM: phyCORE-i.MX8M SOM support

2019-02-21 Thread Christian Hemp
The phyCORE-i.MX8M aka PCL-066 is a SoM containing a i.MX8M SoC. phyCORE-i.MX8M: - 1GB LPDDR4 RAM - eMMC - microSD - Ethernet Signed-off-by: Christian Hemp --- Changes since v1: - simplify bootsource detection - replace pathname by phandle - use name tag "imx8mq" - update to n

[PATCH] ARM: phyCORE-i.MX8M SOM support

2019-02-06 Thread Christian Hemp
The phyCORE-i.MX8M aka PCL-066 is a SoM containing a i.MX8M SoC. phyCORE-i.MX8M: - 1GB LPDDR4 RAM - eMMC - microSD - Ethernet Signed-off-by: Christian Hemp --- arch/arm/boards/Makefile | 1 + arch/arm/boards/phytec-som-imx8m/.gitignore | 1 + arch/arm/boards

Re: build barebox for imx8mqevk

2019-01-25 Thread Christian Hemp
Hello Sascha, Am Freitag, 11. Januar 2019, 12:13:16 CET schrieb Sascha Hauer: > You have to pass ARCH=arm as environment variable. It seems that you > pass ARCH=arm64. > > In barebox both ARM 32bit and 64bit are handled under arch/arm, > nevertheless you have to pass a suitable toolchain. Is the

Re: [PATCH v5 53/54] ARM: i.MX8: Add i.MX8mq EVK support

2018-06-13 Thread Christian Hemp
Hello Andrey, ... On Dienstag, 12. Juni 2018 13:53:09 CEST Andrey Smirnov wrote: > diff --git a/Documentation/boards/imx/nxp-imx8mq-evk.rst > b/Documentation/boards/imx/nxp-imx8mq-evk.rst new file mode 100644 > index 0..2bc94e790 > --- /dev/null > +++ b/Documentation/boards/imx/nxp-imx8mq-

[PATCH] watchdog: i.MX: fix i.MX6 reset

2017-06-12 Thread Christian Hemp
UltraLite Signed-off-by: Christian Hemp --- drivers/watchdog/imxwd.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/watchdog/imxwd.c b/drivers/watchdog/imxwd.c index b920c72..0617fc6 100644 --- a/drivers/watchdog/imxwd.c +++ b/drivers/watchdog/imxwd.c @@ -134,6 +134,10 @@ static

[PATCH] imx-bbu-nand-fcb: add support for imx6ull

2017-05-19 Thread Christian Hemp
The i.MX 6ull secures the fcb with bch 40. This is identical to i.MX 6ul. Signed-off-by: Christian Hemp --- common/imx-bbu-nand-fcb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/imx-bbu-nand-fcb.c b/common/imx-bbu-nand-fcb.c index 5d3d3f7..7218c5e 100644

Re: [PATCH] mtd: nand_mxs: fix NAND error when change clk rate

2016-12-22 Thread Christian Hemp
Hello Sam, On 21.12.2016 23:29, Sam Ravnborg wrote: Hi Christian. On Wed, Dec 21, 2016 at 10:38:41PM +0100, Christian Hemp wrote: The function "nand_enable_edo_mode" changed the NAND clk rate, without turning it off. In this case it is posible to get the following errors:

[PATCH] mtd: nand_mxs: fix NAND error when change clk rate

2016-12-21 Thread Christian Hemp
led before we change the clk rate. Tested with: nand: NAND device: Manufacturer ID: 0x2c, Chip ID: 0xdc (Micron MT29F4G08ABADAWP), 512MiB, page size: 2048, OOB size: 64 Signed-off-by: Christian Hemp --- drivers/mtd/nand/nand_mxs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/driver

[PATCH 1/2] mci: imx: Add imx6sx compatible

2016-12-13 Thread Christian Hemp
To let the driver probe on i.MX6SX and i.MX6UL. Signed-off-by: Christian Hemp --- drivers/mci/imx-esdhc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mci/imx-esdhc.c b/drivers/mci/imx-esdhc.c index 262a904..41f0562 100644 --- a/drivers/mci/imx-esdhc.c +++ b/drivers/mci/imx

[PATCH 2/2] ARCH: ARM: Add support for phytec-phycore-imx6ul

2016-12-13 Thread Christian Hemp
Add support for the phycore i.MX6 UltraLite. - 512MB RAM - 512MB NAND - 10/100 Mbit Ethernet Signed-off-by: Christian Hemp Signed-off-by: Stefan Lengfeld --- arch/arm/boards/phytec-som-imx6/Makefile | 1 + arch/arm/boards/phytec-som-imx6/board.c| 60

[PATCH 2/2] mtd: nand: nand_mxs: Fix readtotal calculation

2016-10-20 Thread Christian Hemp
4MiB, page size: 2048, OOB size: 64 Signed-off-by: Christian Hemp Signed-off-by: Stefan Lengfeld --- drivers/mtd/nand/nand_mxs.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/mtd/nand/nand_mxs.c b/drivers/mtd/nand/nand_mxs.c index fe955e8..cba0bee 100644 ---

[PATCH 1/2] nand: imx6: Changed default NAND clock

2016-10-20 Thread Christian Hemp
: NAND device: Manufacturer ID: 0x01, Chip ID: 0xd3 (AMD/Spansion S34ML08G2), 1024MiB, page size: 2048, OOB size: 128 Signed-off-by: Daniel Schultz Tested-by: Stefan Lengfeld Signed-off-by: Christian Hemp --- drivers/mtd/nand/nand_mxs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH] commands/Kconfig: fix typo in CMD_OF_FIXUP_STATUS help

2016-08-18 Thread Christian Hemp
The command is of_fixup_status and not of_fixup_node. Signed-off-by: Christian Hemp --- commands/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/Kconfig b/commands/Kconfig index decd45d..3c79831 100644 --- a/commands/Kconfig +++ b/commands/Kconfig @@ -2058,7

Re: [PATCH 2/2] dts:imx6:pfla02: Align nand partitions by 512k

2015-01-27 Thread Christian Hemp
Hello Sascha, Am Dienstag, 27. Januar 2015, 09:09:27 schrieb Sascha Hauer: > + Teresa, Jan and Christian > > On Fri, Jan 23, 2015 at 02:48:55PM +0300, Dmitry Lavnikevich wrote: > > NAND chip used on phyFLEX-i.MX6 with 4GB NAND (MT29F32G08AFACAWP) has > > 512k eraseblock size. > > > > Align NAND

[PATCH] ARM: phyFLEX-i.MX6: Add support for 1GB on 1 bank

2015-01-26 Thread Christian Hemp
Add support phyFLEX-i.MX6 SOM with 1GB on one ram bank Signed-off-by: Christian Hemp --- .../flash-header-phytec-pfla02-1gib-1bank.imxcfg | 8 arch/arm/boards/phytec-phyflex-imx6/lowlevel.c| 1 + images/Makefile.imx

[PATCH v2] ARM: imx_v7_defconfig: Enable ubiformat

2014-12-03 Thread Christian Hemp
Signed-off-by: Christian Hemp --- v2: Change Subject arch/arm/configs/imx_v7_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/imx_v7_defconfig b/arch/arm/configs/imx_v7_defconfig index 7076ecd..e3dba79 100644 --- a/arch/arm/configs/imx_v7_defconfig +++ b/arch/arm

[PATCH] defconfig: Enable ubiformat in imx_v7_defconfig

2014-12-02 Thread Christian Hemp
Signed-off-by: Christian Hemp --- arch/arm/configs/imx_v7_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/imx_v7_defconfig b/arch/arm/configs/imx_v7_defconfig index 7076ecd..e3dba79 100644 --- a/arch/arm/configs/imx_v7_defconfig +++ b/arch/arm/configs

[PATCH] ARM:imx6: Fix typo in name alcor

2014-11-19 Thread Christian Hemp
The phyBOARD-ALCOR is called ALCOR and not ALCORE. Signed-off-by: Christian Hemp --- Hello Sascha, the phyBOARD-ALCOR is in the next branch and not in master. Can you please squash this patch in: commit c6f9f83e0c5da17506590be601f5bb3a730f99c9 Author: Christian Hemp Date: Tue Nov 11 15:40

[PATCH 2/2] ARM: defconfig: Enable Micrel PHY driver in am335x_defconfig

2014-11-12 Thread Christian Hemp
From: Wadim Egorov Signed-off-by: Wadim Egorov --- arch/arm/configs/am335x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/am335x_defconfig b/arch/arm/configs/am335x_defconfig index a682fe4..e9bc1ba 100644 --- a/arch/arm/configs/am335x_defconfig +++ b/arch/arm/co

[PATCH 1/2] am335x:phyflex: Remove phy fixup from board file

2014-11-12 Thread Christian Hemp
The ethernet timings are set by the devicetree. They are no longer required in the board file. Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-am335x/board.c | 10 -- 1 file changed, 10 deletions(-) diff --git a/arch/arm/boards/phytec-phyflex-am335x/board.c b/arch

[PATCH 3/4] imx6: add support for phyBOARD-ALCORE

2014-11-11 Thread Christian Hemp
Add support for phyBOARD-ALCORE which use a phyFLEX-i.MX6 (pfla02) module. - i.MX6 Quad with 1GB RAM on two banks Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/lowlevel.c | 16 +++ arch/arm/dts/Makefile | 2 +- arch/arm/dts/imx6q

[PATCH 4/4] imx6: Add support for phyBOARD-SUBRA

2014-11-11 Thread Christian Hemp
Add support for phyBOARD-SUBRA which use a phyFLEX-i.MX6 (pfla02) module. - i.MX6 SOLO with 512MB RAM Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/lowlevel.c | 16 arch/arm/dts/Makefile | 2 +- arch/arm/dts/imx6dl-phytec

[PATCH 1/4] ARM: update imx_v7_defconfig

2014-11-11 Thread Christian Hemp
Enable micrel phy Signed-off-by: Christian Hemp --- arch/arm/configs/imx_v7_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/imx_v7_defconfig b/arch/arm/configs/imx_v7_defconfig index 2c8eb85..7076ecd 100644 --- a/arch/arm/configs/imx_v7_defconfig +++ b/arch/arm

[PATCH 2/4] ARM:pfla02: Move ethernet phy timings to dts

2014-11-11 Thread Christian Hemp
Move the ethernet phy timinigs to phyFLEX-i.MX6 devicetree. Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/board.c | 10 -- arch/arm/dts/imx6qdl-phytec-pfla02.dtsi | 13 + 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/arch/arm

[PATCH 1/4] phy/micrel: disable Asym_Pause support

2014-09-15 Thread Christian Hemp
From: Jan Weitzel With SUPPORTED_Asym_Pause enabled we need to hotplug the ethernet cable. So disable it like done with PHY_ID_KSZ9021. Signed-off-by: Jan Weitzel Signed-off-by: Christian Hemp --- drivers/net/phy/micrel.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff

[PATCH 4/4] ARM:phyFLEX-iMX6 New Ram Timings for Q/DL

2014-09-15 Thread Christian Hemp
From: Maik Otto Signed-off-by: Maik Otto Signed-off-by: Christian Hemp --- .../flash-header-phytec-pfla02-1gib.imxcfg |2 + .../flash-header-phytec-pfla02-2gib.imxcfg |2 + .../flash-header-phytec-pfla02-4gib.imxcfg |7 +- .../flash-header-phytec-pfla02.h

[PATCH 3/4] ARM:phyFLEX-iMX6: Remove mmd_write_reg from board

2014-09-15 Thread Christian Hemp
Remove mmd_write_reg function from board file and use phy_write_mmd_indirect. Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/board.c | 10 +- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/arch/arm/boards/phytec-phyflex-imx6/board.c b/arch/arm

[PATCH 2/4] ARM:phyFLEX-iMX6: Remove eth phy reset form board

2014-09-15 Thread Christian Hemp
in FEC driver from Devicetree | | Signed-off-by: Rostislav Lisovy | Signed-off-by: Sascha Hauer Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/board.c | 13 - 1 files changed, 0 insertions(+), 13 deletions(-) diff --git a

[PATCH 05/10] ARM:imx6:pfla02: Remove redundant code

2014-09-12 Thread Christian Hemp
Move redundant code to a common function. Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/lowlevel.c | 46 ++-- 1 files changed, 19 insertions(+), 27 deletions(-) diff --git a/arch/arm/boards/phytec-phyflex-imx6/lowlevel.c b/arch/arm/boards/phytec

[PATCH 08/10] dts:imx6:pfla02:Move spi partitions imx6qdl-phytec-pfla02

2014-09-12 Thread Christian Hemp
Move the spi partition definition to imx6qdl-phytec-pfla02.dtsi Signed-off-by: Christian Hemp --- arch/arm/dts/imx6dl-phytec-pfla02.dtsi | 15 --- arch/arm/dts/imx6q-phytec-pfla02.dtsi | 15 --- arch/arm/dts/imx6qdl-phytec-pfla02.dtsi | 14 ++ 3

[PATCH 04/10] ARM:imx6:phyflex: Add defaultenv

2014-09-12 Thread Christian Hemp
Add defaultenv_append_directory to phyFLEX-i.MX6. Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/Makefile |1 + arch/arm/boards/phytec-phyflex-imx6/board.c|3 +++ .../defaultenv-phyflex-imx6/boot/nand |6 ++ .../defaultenv

[PATCH 10/10] ARM:phyFLEX-iMX6: Add bootsource detection

2014-09-12 Thread Christian Hemp
Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/board.c | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/arch/arm/boards/phytec-phyflex-imx6/board.c b/arch/arm/boards/phytec-phyflex-imx6/board.c index 843edac..fe3d1b2 100644 --- a

[PATCH 06/10] dts:imx6:pfla02: Remove memory node

2014-09-12 Thread Christian Hemp
Signed-off-by: Christian Hemp --- arch/arm/dts/imx6dl-phytec-pfla02.dtsi |4 arch/arm/dts/imx6q-phytec-pfla02.dtsi |4 arch/arm/dts/imx6s-phytec-pfla02.dtsi |4 3 files changed, 0 insertions(+), 12 deletions(-) diff --git a/arch/arm/dts/imx6dl-phytec-pfla02.dtsi b

[PATCH 03/10] ARM:imx6:phycard: Switch env to defaultenv_append_directory

2014-09-12 Thread Christian Hemp
Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phycard-imx6/Makefile |1 + arch/arm/boards/phytec-phycard-imx6/board.c|3 +++ .../defaultenv-phycard-imx6/boot/nand |7 +++ .../defaultenv-phycard-imx6/boot/sd-ext3 |6

[PATCH 02/10] dts:imx6q:pcaaxl3: Add oftree partition to nand

2014-09-12 Thread Christian Hemp
Add oftree partiton to nand. Signed-off-by: Christian Hemp --- arch/arm/dts/imx6q-phytec-pcaaxl3.dtsi | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/arch/arm/dts/imx6q-phytec-pcaaxl3.dtsi b/arch/arm/dts/imx6q-phytec-pcaaxl3.dtsi index 45f3669..78c3334 100644

[PATCH 07/10] dts:imx6:pfla02: move mac read to module

2014-09-12 Thread Christian Hemp
Move mac read to module. Signed-off-by: Christian Hemp --- arch/arm/dts/imx6qdl-phytec-pbab01.dtsi |4 arch/arm/dts/imx6qdl-phytec-pfla02.dtsi |4 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/dts/imx6qdl-phytec-pbab01.dtsi b/arch/arm/dts/imx6qdl

[PATCH 09/10] dts:imx6:pfla02: Add env node for SPI-NOR and NAND

2014-09-12 Thread Christian Hemp
Add environment node for NAND and SPI-NOR Move the environment property to the module file. Signed-off-by: Christian Hemp --- arch/arm/dts/imx6dl-phytec-pbab01.dts |5 arch/arm/dts/imx6q-phytec-pbab01.dts|5 arch/arm/dts/imx6qdl-phytec-pbab01.dtsi |9 arch

[PATCH 01/10] dts:imx6:pfla02: Add nand partitions

2014-09-12 Thread Christian Hemp
Signed-off-by: Christian Hemp --- arch/arm/dts/imx6qdl-phytec-pfla02.dtsi | 27 +++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/imx6qdl-phytec-pfla02.dtsi b/arch/arm/dts/imx6qdl-phytec-pfla02.dtsi index a981fd4..b8988ed 100644 --- a

[PATCH] dts:imx6:pfla02: Fix SPI NOR for phyFLEX-i.MX6

2014-09-05 Thread Christian Hemp
Add chip-select property to pfla02 devicetree. Signed-off-by: Christian Hemp --- arch/arm/dts/imx6qdl-phytec-pfla02.dtsi |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/imx6qdl-phytec-pfla02.dtsi b/arch/arm/dts/imx6qdl-phytec-pfla02.dtsi index 277573d

[PATCH] imx6: add new chip revisions

2014-06-29 Thread Christian Hemp
Add new chip revisions for the new tap-out TO1.5 (i.MX6Q/D) and TO1.2 (i.MX6DL/S) Signed-off-by: Christian Hemp --- arch/arm/mach-imx/imx6.c | 12 arch/arm/mach-imx/include/mach/revision.h |2 ++ 2 files changed, 14 insertions(+), 0 deletions(-) diff --git a

[PATCH] imx6:phyFLEX: Fix ENTRY_FUNCTION

2014-06-26 Thread Christian Hemp
For some phyFLEX-i.MX6 modules the call __barebox_arm_head() was not removed. With this function the barebox does not start. Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-phyflex-imx6/lowlevel.c |6 -- 1 file changed, 6 deletions(-) diff --git a/arch/arm/boards/phytec

[PATCH] imx:mmdc:Move imx6-reg include to imx6-mmdc header

2014-04-30 Thread Christian Hemp
Move the imx6-reg.h include to the imx6-mmdc header. Signed-off-by: Christian Hemp --- arch/arm/mach-imx/imx6-mmdc.c |1 - arch/arm/mach-imx/include/mach/imx6-mmdc.h |1 + 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-imx/imx6-mmdc.c b/arch

Re: [PATCH v2] imx6: Add support for phyCARD-i.MX6

2014-04-30 Thread Christian Hemp
Hello Sascha, Am Mittwoch, den 30.04.2014, 14:52 +0200 schrieb Sascha Hauer: > On Wed, Apr 30, 2014 at 03:15:29PM +0400, Alexander Shiyan wrote: > > Wed, 30 Apr 2014 11:07:32 +0200 от Christian Hemp : > > > Add support for Phytec phyCARD-i.MX6. > > > - 1GB RAM on two

[PATCH v3] imx6: Add support for phyCARD-i.MX6

2014-04-30 Thread Christian Hemp
Add support for Phytec phyCARD-i.MX6. - 1GB RAM on two banks - 1GB RAM on one bank - 2GB RAM on two banks Signed-off-by: Christian Hemp --- v2: - remove IP addresses from env - remove boot/net - add ethernet pinmux to pcaaxl3 - add common function to

[PATCH v2] imx6: Add support for phyCARD-i.MX6

2014-04-30 Thread Christian Hemp
Add support for Phytec phyCARD-i.MX6. - 1GB RAM on two banks - 1GB RAM on one bank - 2GB RAM on two banks Signed-off-by: Christian Hemp --- v2: - remove IP addresses from env - remove boot/net - add ethernet pinmux to pcaaxl3 - add common function to lowlevel.c

Re: [PATCH 4/4] imx6: Add support for phyCARD-i.MX6

2014-04-28 Thread Christian Hemp
Hi, Am Freitag, den 25.04.2014, 15:16 +0200 schrieb Lucas Stach: > Am Freitag, den 25.04.2014, 15:10 +0200 schrieb Alexander Aring: > > Hi, > > > > On Fri, Apr 25, 2014 at 01:54:28PM +0200, Christian Hemp wrote: > > > Add support for Phytec phyCARD-i.MX6.

[PATCH 4/4] imx6: Add support for phyCARD-i.MX6

2014-04-25 Thread Christian Hemp
Add support for Phytec phyCARD-i.MX6. - 1GB RAM on two banks - 1GB RAM on one bank - 2GB RAM on two banks Signed-off-by: Christian Hemp --- arch/arm/boards/Makefile |1 + arch/arm/boards/phytec-phycard-imx6/Makefile |2 + arch/arm

[PATCH 1/4] imx6:mmdc: Move register defines to header file

2014-04-25 Thread Christian Hemp
Move mmdc register defines to mmdc header file. Signed-off-by: Christian Hemp --- arch/arm/mach-imx/imx6-mmdc.c | 37 -- arch/arm/mach-imx/include/mach/imx6-mmdc.h | 39 2 files changed, 39 insertions(+), 37 deletions

[PATCH 2/4] imx6: read back memory size

2014-04-25 Thread Christian Hemp
To reduce the devicetree files for one board with different memory sizes the memory size can be read back from i.MX6. Signed-off-by: Christian Hemp --- arch/arm/mach-imx/esdctl.c | 67 arch/arm/mach-imx/include/mach/imx6-mmdc.h |9 arch

[PATCH 3/4] dts: imx6qdl: add ethernet pin group for mii

2014-04-25 Thread Christian Hemp
Signed-off-by: Christian Hemp --- arch/arm/dts/imx6qdl-pingrp.h | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/imx6qdl-pingrp.h b/arch/arm/dts/imx6qdl-pingrp.h index 082f0df..97d76dc 100644 --- a/arch/arm/dts/imx6qdl-pingrp.h +++ b/arch/arm/dts

Re: [PATCH] i.MX6: bbu: Barebox update support for NAND.

2014-04-01 Thread Christian Hemp
Hello Sascha, I have tested the patch on three phyCARD-i.MX6 and three phyFLEX-i.MX6 modules without problems. Christian Am Montag, den 31.03.2014, 10:42 +0200 schrieb Sascha Hauer: > On Thu, Mar 13, 2014 at 07:54:58AM +0100, Sascha Hauer wrote: > > Hi Dmitry, > > > > On Wed, Mar 12, 2014 at

Re: [PATCH 4/6] ARM: pfla02: Set ODT to recommended setting

2014-03-17 Thread Christian Hemp
Hello Sascha, We removed this ODT values, because we had problems. I think before we use this settings we have to do some tests (climate cabinet...) with different modules. Christian Am Freitag, den 14.03.2014, 14:30 +0100 schrieb Sascha Hauer: > From: Christian Hemp > > Chang

[PATCH] commands: Fix memtest return value

2013-09-01 Thread Christian Hemp
Signed-off-by: Christian Hemp --- commands/memtest.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/commands/memtest.c b/commands/memtest.c index d2a1487..c82badc 100644 --- a/commands/memtest.c +++ b/commands/memtest.c @@ -236,7 +236,7 @@ out: return 1

[PATCH] ARM pcm043: Fix macro name

2012-11-19 Thread Christian Hemp
Since commit dc9d70e2 the define CCM_PDR4 is called MX35_CCM_PDR4. Signed-off-by: Christian Hemp --- arch/arm/boards/pcm043/lowlevel.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boards/pcm043/lowlevel.c b/arch/arm/boards/pcm043/lowlevel.c index 06f05ab

Re: [PATCH 7/7] smm911x: check if the device is ready before using it

2012-08-29 Thread Christian Hemp
Hi Jean-Christophe, there is a issue in your header “[PATCH 7/7] smm911x: check if the device is ready before using it” I think smc911x is correct. Christian Am Mittwoch, den 29.08.2012, 07:06 +0200 schrieb Jean-Christophe PLAGNIOL-VILLARD: > poll the READY bit in PMT_CTRL. Any oth

[PATCH 1/2] pcaam1: Add support for the Phytec phyCARD-A-M1 (PCA-A-M1)

2012-03-01 Thread Christian Hemp
Add support for the phyCARD-A-M1 (PCA-A-M1). Signed-off-by: Christian Hemp --- arch/arm/Makefile |1 + arch/arm/boards/phycard-a-m1/Makefile | 24 ++ arch/arm/boards/phycard-a-m1/config.h | 25 ++ arch/arm/boards/phycard-a-m1/env/config | 57

[PATCH 2/2] pcaam1: Change the machine id/name to follow the phyCARD naming convention

2012-03-01 Thread Christian Hemp
Change the machine id/name to follow the phyCARD naming convention. This patch can be dropped if the phyCARD-A-M1 is updated in the official machine registry. Signed-off-by: Christian Hemp --- arch/arm/tools/mach-types |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a