From: Mauro Carvalho Chehab <m.chehab@samsung.com>
To: Sylwester Nawrocki <s.nawrocki@samsung.com>
Cc: LMML <linux-media@vger.kernel.org>,
devicetree@vger.kernel.org,
Grant Likely <grant.likely@linaro.org>
Subject: Re: [GIT PULL FOR 3.13] Exynos5 SoC FIMC-IS imaging subsystem driver
Date: Mon, 28 Oct 2013 20:11:36 -0200 [thread overview]
Message-ID: <20131028201136.6f66d3f7@samsung.com> (raw)
In-Reply-To: <5261967E.6010001@samsung.com>
Hi Sylwester,
Em Fri, 18 Oct 2013 22:13:50 +0200
Sylwester Nawrocki <s.nawrocki@samsung.com> escreveu:
> Hi Mauro,
>
> This change set is V4L2 driver for the Exynos5 series camera subsystem.
> There is also included a minimal driver for the s5k4e5 image sensor.
>
> The FIMC-IS driver is pretty huge, even though there are some hardware
> similarities between FIMC-IS found on Exynos5 and Exynos4 SoCs, the firmwares
> are significantly different, which makes writing a common driver not quite
> sensible.
> Anyway some of the exynos4 subdevs are already reused and some further code
> consolidation will likely be possible.
>
> The following changes since commit 8ca5d2d8e58df7235b77ed435e63c484e123fede:
>
> [media] uvcvideo: Fix data type for pan/tilt control (2013-10-17 06:55:29 -0300)
>
> are available in the git repository at:
>
> git://linuxtv.org/snawrocki/samsung.git for-v3.13-2
>
> for you to fetch changes up to 6eb89d71b27e6731755ab5722f3cdc0f6e8273f2:
>
> V4L: Add s5k4e5 sensor driver (2013-10-18 21:36:42 +0200)
>
> ----------------------------------------------------------------
> Arun Kumar K (12):
> exynos5-fimc-is: Add Exynos5 FIMC-IS device tree bindings documentation
As agreed during KS, the subsystem maintainers should wait for a documentation
review on DT by the DT maintainers, at least for a while.
So, I'd like to see either their reviews on this patch:
https://patchwork.linuxtv.org/patch/20439/
Or their ack for us to apply it.
> exynos5-fimc-is: Add driver core files
> exynos5-fimc-is: Add common driver header files
> exynos5-fimc-is: Add register definition and context header
> exynos5-fimc-is: Add isp subdev
> exynos5-fimc-is: Add scaler subdev
> exynos5-fimc-is: Add sensor interface
> exynos5-fimc-is: Add the hardware pipeline control
> exynos5-fimc-is: Add the hardware interface module
> exynos5-is: Add Kconfig and Makefile
> V4L: Add DT binding doc for s5k4e5 image sensor
Same applies to this patch:
https://patchwork.linuxtv.org/patch/20448/
Grant,
I'd appreciate if you could fast track those, as there are lots of code
depending on them.
Regards,
Mauro
> V4L: Add s5k4e5 sensor driver
>
> Shaik Ameer Basha (1):
> exynos5-is: Add media device driver for exynos5 SoCs camera subsystem
>
> .../devicetree/bindings/media/exynos5-fimc-is.txt | 84 +
> .../bindings/media/exynos5250-camera.txt | 126 ++
> .../devicetree/bindings/media/samsung-s5k4e5.txt | 45 +
> drivers/media/i2c/Kconfig | 8 +
> drivers/media/i2c/Makefile | 1 +
> drivers/media/i2c/s5k4e5.c | 344 ++++
> drivers/media/platform/Kconfig | 1 +
> drivers/media/platform/Makefile | 1 +
> drivers/media/platform/exynos5-is/Kconfig | 20 +
> drivers/media/platform/exynos5-is/Makefile | 7 +
> drivers/media/platform/exynos5-is/exynos5-mdev.c | 1210 ++++++++++++++
> drivers/media/platform/exynos5-is/exynos5-mdev.h | 126 ++
> drivers/media/platform/exynos5-is/fimc-is-cmd.h | 187 +++
> drivers/media/platform/exynos5-is/fimc-is-core.c | 410 +++++
> drivers/media/platform/exynos5-is/fimc-is-core.h | 132 ++
> drivers/media/platform/exynos5-is/fimc-is-err.h | 257 +++
> .../media/platform/exynos5-is/fimc-is-interface.c | 810 ++++++++++
> .../media/platform/exynos5-is/fimc-is-interface.h | 124 ++
> drivers/media/platform/exynos5-is/fimc-is-isp.c | 534 ++++++
> drivers/media/platform/exynos5-is/fimc-is-isp.h | 90 ++
> .../media/platform/exynos5-is/fimc-is-metadata.h | 767 +++++++++
> drivers/media/platform/exynos5-is/fimc-is-param.h | 1159 +++++++++++++
> .../media/platform/exynos5-is/fimc-is-pipeline.c | 1699 ++++++++++++++++++++
> .../media/platform/exynos5-is/fimc-is-pipeline.h | 129 ++
> drivers/media/platform/exynos5-is/fimc-is-regs.h | 105 ++
> drivers/media/platform/exynos5-is/fimc-is-scaler.c | 476 ++++++
> drivers/media/platform/exynos5-is/fimc-is-scaler.h | 106 ++
> drivers/media/platform/exynos5-is/fimc-is-sensor.c | 45 +
> drivers/media/platform/exynos5-is/fimc-is-sensor.h | 65 +
> drivers/media/platform/exynos5-is/fimc-is.h | 160 ++
> 30 files changed, 9228 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/media/exynos5-fimc-is.txt
> create mode 100644 Documentation/devicetree/bindings/media/exynos5250-camera.txt
> create mode 100644 Documentation/devicetree/bindings/media/samsung-s5k4e5.txt
> create mode 100644 drivers/media/i2c/s5k4e5.c
> create mode 100644 drivers/media/platform/exynos5-is/Kconfig
> create mode 100644 drivers/media/platform/exynos5-is/Makefile
> create mode 100644 drivers/media/platform/exynos5-is/exynos5-mdev.c
> create mode 100644 drivers/media/platform/exynos5-is/exynos5-mdev.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-cmd.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-core.c
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-core.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-err.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-interface.c
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-interface.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-isp.c
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-isp.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-metadata.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-param.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-pipeline.c
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-pipeline.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-regs.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-scaler.c
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-scaler.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-sensor.c
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is-sensor.h
> create mode 100644 drivers/media/platform/exynos5-is/fimc-is.h
>
> --
> Thanks,
> Sylwester
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Cheers,
Mauro
next prev parent reply other threads:[~2013-10-28 22:11 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-18 20:13 [GIT PULL FOR 3.13] Exynos5 SoC FIMC-IS imaging subsystem driver Sylwester Nawrocki
2013-10-28 22:11 ` Mauro Carvalho Chehab [this message]
2013-10-29 0:06 ` Sylwester Nawrocki
[not found] ` <526EFC06.70101-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-29 12:54 ` Mauro Carvalho Chehab
2013-10-29 12:54 ` Mauro Carvalho Chehab
2013-10-30 0:18 ` Sylwester Nawrocki
2013-11-05 4:21 ` Arun Kumar K
2013-11-05 10:18 ` Sylwester Nawrocki
[not found] ` <5278C5E5.9050808-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2013-11-05 10:56 ` Arun Kumar K
2013-11-05 10:56 ` Arun Kumar K
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=20131028201136.6f66d3f7@samsung.com \
--to=m.chehab@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=grant.likely@linaro.org \
--cc=linux-media@vger.kernel.org \
--cc=s.nawrocki@samsung.com \
/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.