From: baruch@tkos.co.il (Baruch Siach)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/3] Driver for the i.MX2x CMOS Sensor Interface
Date: Thu, 6 May 2010 16:09:38 +0300 [thread overview]
Message-ID: <cover.1273150585.git.baruch@tkos.co.il> (raw)
This series contains a soc_camera driver for the i.MX25/i.MX27 CSI device, and
platform code for the i.MX25 and i.MX27 chips. This driver is based on a driver
for i.MX27 CSI from Sascha Hauer, that Alan Carvalho de Assis has posted in
linux-media last December[1]. Since all I have is a i.MX25 PDK paltform I can't
test the mx27 specific code. Testers and comment are welcome.
[1] https://patchwork.kernel.org/patch/67636/
Baruch Siach (3):
mx2_camera: Add soc_camera support for i.MX25/i.MX27
mx27: add support for the CSI device
mx25: add support for the CSI device
arch/arm/mach-mx2/clock_imx27.c | 2 +-
arch/arm/mach-mx2/devices.c | 31 +
arch/arm/mach-mx2/devices.h | 1 +
arch/arm/mach-mx25/clock.c | 14 +-
arch/arm/mach-mx25/devices.c | 22 +
arch/arm/mach-mx25/devices.h | 1 +
arch/arm/plat-mxc/include/mach/memory.h | 4 +-
arch/arm/plat-mxc/include/mach/mx25.h | 2 +
arch/arm/plat-mxc/include/mach/mx2_cam.h | 41 +
drivers/media/video/Kconfig | 14 +
drivers/media/video/Makefile | 1 +
drivers/media/video/mx2_camera.c | 1396 ++++++++++++++++++++++++++++++
12 files changed, 1524 insertions(+), 5 deletions(-)
create mode 100644 arch/arm/plat-mxc/include/mach/mx2_cam.h
create mode 100644 drivers/media/video/mx2_camera.c
WARNING: multiple messages have this Message-ID (diff)
From: Baruch Siach <baruch@tkos.co.il>
To: linux-media@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org,
Sascha Hauer <kernel@pengutronix.de>,
Baruch Siach <baruch@tkos.co.il>
Subject: [PATCH 0/3] Driver for the i.MX2x CMOS Sensor Interface
Date: Thu, 6 May 2010 16:09:38 +0300 [thread overview]
Message-ID: <cover.1273150585.git.baruch@tkos.co.il> (raw)
This series contains a soc_camera driver for the i.MX25/i.MX27 CSI device, and
platform code for the i.MX25 and i.MX27 chips. This driver is based on a driver
for i.MX27 CSI from Sascha Hauer, that Alan Carvalho de Assis has posted in
linux-media last December[1]. Since all I have is a i.MX25 PDK paltform I can't
test the mx27 specific code. Testers and comment are welcome.
[1] https://patchwork.kernel.org/patch/67636/
Baruch Siach (3):
mx2_camera: Add soc_camera support for i.MX25/i.MX27
mx27: add support for the CSI device
mx25: add support for the CSI device
arch/arm/mach-mx2/clock_imx27.c | 2 +-
arch/arm/mach-mx2/devices.c | 31 +
arch/arm/mach-mx2/devices.h | 1 +
arch/arm/mach-mx25/clock.c | 14 +-
arch/arm/mach-mx25/devices.c | 22 +
arch/arm/mach-mx25/devices.h | 1 +
arch/arm/plat-mxc/include/mach/memory.h | 4 +-
arch/arm/plat-mxc/include/mach/mx25.h | 2 +
arch/arm/plat-mxc/include/mach/mx2_cam.h | 41 +
drivers/media/video/Kconfig | 14 +
drivers/media/video/Makefile | 1 +
drivers/media/video/mx2_camera.c | 1396 ++++++++++++++++++++++++++++++
12 files changed, 1524 insertions(+), 5 deletions(-)
create mode 100644 arch/arm/plat-mxc/include/mach/mx2_cam.h
create mode 100644 drivers/media/video/mx2_camera.c
next reply other threads:[~2010-05-06 13:09 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-06 13:09 Baruch Siach [this message]
2010-05-06 13:09 ` [PATCH 0/3] Driver for the i.MX2x CMOS Sensor Interface Baruch Siach
2010-05-06 13:09 ` [PATCH 1/3] mx2_camera: Add soc_camera support for i.MX25/i.MX27 Baruch Siach
2010-05-06 13:09 ` Baruch Siach
2010-05-12 19:02 ` Guennadi Liakhovetski
2010-05-12 19:02 ` Guennadi Liakhovetski
2010-05-13 5:21 ` Baruch Siach
2010-05-13 5:21 ` Baruch Siach
2010-05-17 7:27 ` Sascha Hauer
2010-05-17 7:27 ` Sascha Hauer
2010-05-17 13:58 ` Baruch Siach
2010-05-17 13:58 ` Baruch Siach
2010-05-19 8:55 ` Sascha Hauer
2010-05-19 8:55 ` Sascha Hauer
2010-05-21 7:19 ` Sascha Hauer
2010-05-21 7:19 ` Sascha Hauer
2010-05-06 13:09 ` [PATCH 2/3] mx27: add support for the CSI device Baruch Siach
2010-05-06 13:09 ` Baruch Siach
2010-05-21 7:17 ` Sascha Hauer
2010-05-21 7:17 ` Sascha Hauer
2010-05-06 13:09 ` [PATCH 3/3] mx25: " Baruch Siach
2010-05-06 13:09 ` Baruch Siach
2010-05-12 19:11 ` Guennadi Liakhovetski
2010-05-12 19:11 ` Guennadi Liakhovetski
2010-05-21 7:20 ` [PATCH 0/3] Driver for the i.MX2x CMOS Sensor Interface Sascha Hauer
2010-05-21 7:20 ` Sascha Hauer
2010-05-21 7:27 ` Baruch Siach
2010-05-21 7:27 ` Baruch Siach
2010-05-21 18:33 ` Guennadi Liakhovetski
2010-05-21 18:33 ` Guennadi Liakhovetski
2010-05-25 7:20 ` Sascha Hauer
2010-05-25 7:20 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1273150585.git.baruch@tkos.co.il \
--to=baruch@tkos.co.il \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.