[U-Boot] [PATCH 1/8] imx25: Add new hardware registers

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- arch/arm/include/asm/arch-mx25/iomux-mx25.h | 25 +++-- arch/arm/include/asm/imx-common/iomux-v3.h | 13 - arch/arm/lib/asm-offsets.c |9 + 3 files changed, 40 insertions(+), 7

[U-Boot] [PATCH 7/8] imx25: Add new registers defines

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- arch/arm/include/asm/arch-mx25/imx-regs.h | 271 - 1 file changed, 264 insertions(+), 7 deletions(-) diff --git a/arch/arm/include/asm/arch-mx25/imx-regs.h b/arch/arm/include/asm/arch-mx25/imx-regs.h index a17f8

[U-Boot] [PATCH 8/8] video: imx25lcdc: add board_video_init() call

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/video/imx25lcdc.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/video/imx25lcdc.c b/drivers/video/imx25lcdc.c index 3b45472..94ef033 100644 --- a/drivers/video/imx25lcdc.c +++ b/drivers/video/imx25

[U-Boot] [PATCH 4/8] input: Add support for FMA1125 touch controller

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/input/Makefile |3 +- drivers/input/fma1125.c | 47 include/fma1125.h | 140 +++ 3 files changed, 189 insertions(+), 1 deletion(-) create mode 100644 drivers/

[U-Boot] [PATCH 6/8] zmx25: Extended support for cpu and base boards

2014-05-15 Thread dietho
From: Thomas Diener Added support for additional hardware variants. Signed-off-by: Thomas Diener --- We don't use a linux kernel and have to do the complete hardware setup in the boot loader. board/syteco/zmx25/lowlevel_init.S | 21 + board/syteco/zmx25/zmx25.c | 1052 +

[U-Boot] [PATCH 3/8] mxc_i2c: Use the 3th i2c channel for imx25

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/i2c/mxc_i2c.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 595019b..96cc739 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -540,7 +540,7

[U-Boot] [PATCH 5/8] input: Add support for MPR121 touch controller

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/input/Makefile |3 +- drivers/input/mpr121.c | 67 include/mpr121.h | 158 3 files changed, 227 insertions(+), 1 deletion(-) create mode 100644 driver

[U-Boot] [PATCH 0/8] zmx25: Add hardware support

2014-05-15 Thread dietho
From: Thomas Diener This patchset is the result of the "[PATCH 3/4] zmx25: Add extended support for the cpu and base boards" (http://patchwork.ozlabs.org/patch/341717/). I split the patch up as Stefano Babic recommended. Thomas Diener (8): imx25: Add new hardware registers drivers: Add poly

[U-Boot] [PATCH 2/8] input: Add polytouch touch sensor controller

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/input/Makefile|1 + drivers/input/polytouch.c | 138 + include/polytouch.h | 35 3 files changed, 174 insertions(+) create mode 100644 drivers/input/polytouch.

[U-Boot] [PATCH 4/4] Update of the company logo

2014-04-23 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- tools/logos/syteco.bmp | Bin 11414 -> 11414 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/tools/logos/syteco.bmp b/tools/logos/syteco.bmp index 9a994fe3e3812bdc2d63f7045d2740d931b2a42a..14031f2c8c5eaee2e961a89b684ac3c

[U-Boot] [PATCH 0/4] imx25: Add hardware support

2014-04-23 Thread dietho
From: Thomas Diener This patchset adds support for the imx25 lcd controller and support for variants of cpu and base boards with drivers. Thomas Diener (4): imx25: Add new hardware registers video: Add support for imx25 lcd controller zmx25: Add extended support for the cpu board and belon

[U-Boot] [PATCH 2/4] video: Add support for imx25 lcd controller

2014-04-23 Thread dietho
From: Thomas Diener This patch adds support for the imx25 lcd display controller. Signed-off-by: Thomas Diener --- drivers/video/Makefile|1 + drivers/video/imx25lcdc.c | 123 + 2 files changed, 124 insertions(+) create mode 100644 drivers/

[U-Boot] [PATCH 1/4] imx25: Add new hardware registers

2014-04-23 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- arch/arm/include/asm/arch-mx25/imx-regs.h | 175 + 1 file changed, 175 insertions(+) diff --git a/arch/arm/include/asm/arch-mx25/imx-regs.h b/arch/arm/include/asm/arch-mx25/imx-regs.h index a17f828..3dffa4a 1006