From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Diener Date: Mon, 04 Aug 2014 07:59:34 +0200 Subject: [U-Boot] [PATCH 0/8] zmx25: Add hardware support In-Reply-To: <1400164490-14673-1-git-send-email-dietho@gmx.de> References: <1400164490-14673-1-git-send-email-dietho@gmx.de> Message-ID: <53DF2146.1030704@gmx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi folks, do you have any comments or statements for this patches? Thanks and best regards, Thomas Am 15.05.2014 um 16:34 schrieb dietho at gmx.de: > 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 polytouch touch sensor controller > mxc_i2c: Use the 3th i2c channel for imx25 > input: Add support for FMA1125 touch controller > input: Add support for MPR121 touch controller > zmx25: Extended support for cpu and base boards > imx25: Add new registers defines > video: imx25lcdc: add board_video_init() call > > arch/arm/include/asm/arch-mx25/imx-regs.h | 271 ++++++- > 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 + > board/syteco/zmx25/lowlevel_init.S | 21 + > board/syteco/zmx25/zmx25.c | 1052 +++++++++++++++++++++++++-- > drivers/i2c/mxc_i2c.c | 2 +- > drivers/input/Makefile | 3 + > drivers/input/fma1125.c | 47 ++ > drivers/input/mpr121.c | 67 ++ > drivers/input/polytouch.c | 138 ++++ > drivers/video/imx25lcdc.c | 19 + > include/configs/zmx25.h | 66 +- > include/fma1125.h | 140 ++++ > include/mpr121.h | 158 ++++ > include/polytouch.h | 35 + > 16 files changed, 1976 insertions(+), 90 deletions(-) > create mode 100644 drivers/input/fma1125.c > create mode 100644 drivers/input/mpr121.c > create mode 100644 drivers/input/polytouch.c > create mode 100644 include/fma1125.h > create mode 100644 include/mpr121.h > create mode 100644 include/polytouch.h >