* Re: [PATCH v5 0/4] Update MFC v4l2 driver to support MFC6.x
@ 2012-08-28 4:46 Arun Kumar K
0 siblings, 0 replies; 4+ messages in thread
From: Arun Kumar K @ 2012-08-28 4:46 UTC (permalink / raw)
To: Sylwester Nawrocki, Sachin Kamat
Cc: linux-media@vger.kernel.org, Jeongtae Park, Jang-Hyuck Kim,
peter Oh, NAVEEN KRISHNA CHATRADHI, Marek Szyprowski,
Kamil Debski, kmpark@infradead.org, SUNIL JOSHI
Hi,
Thank you Sylvester and Sachin for pointing it out.
Will rebase the patches on media tree along with other comments
if any from Kamil.
Regards
Arun
------- Original Message -------
Sender : Sylwester Nawrocki<sylvester.nawrocki@gmail.com>
Date : Aug 28, 2012 00:20 (GMT+05:30)
Title : Re: [PATCH v5 0/4] Update MFC v4l2 driver to support MFC6.x
On 08/27/2012 11:31 AM, Sachin Kamat wrote:
> Hi Arun,
>
> The media tree has been re-organized recently.
> It would be useful to re-base your patches against the latest media
> tree (or linux-next).
> MFC driver is now located at "drivers/media/platform/s5p-mfc/"
And you can find some guidelines in this post:
http://www.mail-archive.com/linux-media@vger.kernel.org/msg50498.html
--
Regards,
Sylwester
<p> </p><p> </p>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v5 0/4] Update MFC v4l2 driver to support MFC6.x
@ 2012-08-27 11:57 Arun Kumar K
2012-08-27 9:31 ` Sachin Kamat
0 siblings, 1 reply; 4+ messages in thread
From: Arun Kumar K @ 2012-08-27 11:57 UTC (permalink / raw)
To: linux-media
Cc: jtp.park, janghyuck.kim, jaeryul.oh, ch.naveen, arun.kk,
m.szyprowski, k.debski, kmpark, joshi
The patchset adds support for MFCv6 firmware in s5p-mfc driver.
The first two patches will update the existing MFCv5 driver framework
for making it suitable for supporting co-existence with a newer
hardware version. The last two patches add support for MFCv6 firmware.
This patchset have to be applied on patches [1] and [2] posted
earlier which adds the required v4l2 controls.
Changelog:
- Modified ops mechanism for macro based function call
- Addressed all other review comments on Patch v4
[1] http://www.mail-archive.com/linux-media@vger.kernel.org/msg48972.html
[2] http://www.mail-archive.com/linux-media@vger.kernel.org/msg48973.html
Arun Kumar K (1):
[media] s5p-mfc: Update MFCv5 driver for callback based architecture
Jeongtae Park (3):
[media] s5p-mfc: Add MFC variant data to device context
[media] s5p-mfc: MFCv6 register definitions
[media] s5p-mfc: Update MFC v4l2 driver to support MFC6.x
drivers/media/video/Kconfig | 4 +-
drivers/media/video/s5p-mfc/Makefile | 7 +-
drivers/media/video/s5p-mfc/regs-mfc-v6.h | 440 ++++++
drivers/media/video/s5p-mfc/regs-mfc.h | 49 +
drivers/media/video/s5p-mfc/s5p_mfc.c | 229 ++--
drivers/media/video/s5p-mfc/s5p_mfc_cmd.c | 98 +-
drivers/media/video/s5p-mfc/s5p_mfc_cmd.h | 13 +
drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.c | 164 +++
drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.h | 20 +
drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.c | 155 ++
drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.h | 20 +
drivers/media/video/s5p-mfc/s5p_mfc_common.h | 174 ++-
drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c | 188 ++-
drivers/media/video/s5p-mfc/s5p_mfc_ctrl.h | 1 +
drivers/media/video/s5p-mfc/s5p_mfc_dec.c | 226 ++-
drivers/media/video/s5p-mfc/s5p_mfc_dec.h | 1 +
drivers/media/video/s5p-mfc/s5p_mfc_enc.c | 208 ++--
drivers/media/video/s5p-mfc/s5p_mfc_enc.h | 1 +
drivers/media/video/s5p-mfc/s5p_mfc_intr.c | 11 +-
drivers/media/video/s5p-mfc/s5p_mfc_opr.c | 1407 ++-----------------
drivers/media/video/s5p-mfc/s5p_mfc_opr.h | 178 ++-
drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.c | 1759 +++++++++++++++++++++++
drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.h | 85 ++
drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.c | 1945 ++++++++++++++++++++++++++
drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.h | 50 +
drivers/media/video/s5p-mfc/s5p_mfc_pm.c | 3 +-
drivers/media/video/s5p-mfc/s5p_mfc_shm.c | 47 -
drivers/media/video/s5p-mfc/s5p_mfc_shm.h | 90 --
28 files changed, 5700 insertions(+), 1873 deletions(-)
create mode 100644 drivers/media/video/s5p-mfc/regs-mfc-v6.h
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.c
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.h
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.c
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.h
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.c
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.h
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.c
create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.h
delete mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_shm.c
delete mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_shm.h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v5 0/4] Update MFC v4l2 driver to support MFC6.x
2012-08-27 11:57 Arun Kumar K
@ 2012-08-27 9:31 ` Sachin Kamat
2012-08-27 18:50 ` Sylwester Nawrocki
0 siblings, 1 reply; 4+ messages in thread
From: Sachin Kamat @ 2012-08-27 9:31 UTC (permalink / raw)
To: Arun Kumar K
Cc: linux-media, jtp.park, janghyuck.kim, jaeryul.oh, ch.naveen,
m.szyprowski, k.debski, kmpark, joshi
Hi Arun,
The media tree has been re-organized recently.
It would be useful to re-base your patches against the latest media
tree (or linux-next).
MFC driver is now located at "drivers/media/platform/s5p-mfc/"
On 27 August 2012 17:27, Arun Kumar K <arun.kk@samsung.com> wrote:
> The patchset adds support for MFCv6 firmware in s5p-mfc driver.
> The first two patches will update the existing MFCv5 driver framework
> for making it suitable for supporting co-existence with a newer
> hardware version. The last two patches add support for MFCv6 firmware.
> This patchset have to be applied on patches [1] and [2] posted
> earlier which adds the required v4l2 controls.
>
> Changelog:
> - Modified ops mechanism for macro based function call
> - Addressed all other review comments on Patch v4
>
> [1] http://www.mail-archive.com/linux-media@vger.kernel.org/msg48972.html
> [2] http://www.mail-archive.com/linux-media@vger.kernel.org/msg48973.html
>
> Arun Kumar K (1):
> [media] s5p-mfc: Update MFCv5 driver for callback based architecture
>
> Jeongtae Park (3):
> [media] s5p-mfc: Add MFC variant data to device context
> [media] s5p-mfc: MFCv6 register definitions
> [media] s5p-mfc: Update MFC v4l2 driver to support MFC6.x
>
> drivers/media/video/Kconfig | 4 +-
> drivers/media/video/s5p-mfc/Makefile | 7 +-
> drivers/media/video/s5p-mfc/regs-mfc-v6.h | 440 ++++++
> drivers/media/video/s5p-mfc/regs-mfc.h | 49 +
> drivers/media/video/s5p-mfc/s5p_mfc.c | 229 ++--
> drivers/media/video/s5p-mfc/s5p_mfc_cmd.c | 98 +-
> drivers/media/video/s5p-mfc/s5p_mfc_cmd.h | 13 +
> drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.c | 164 +++
> drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.h | 20 +
> drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.c | 155 ++
> drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.h | 20 +
> drivers/media/video/s5p-mfc/s5p_mfc_common.h | 174 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c | 188 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_ctrl.h | 1 +
> drivers/media/video/s5p-mfc/s5p_mfc_dec.c | 226 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_dec.h | 1 +
> drivers/media/video/s5p-mfc/s5p_mfc_enc.c | 208 ++--
> drivers/media/video/s5p-mfc/s5p_mfc_enc.h | 1 +
> drivers/media/video/s5p-mfc/s5p_mfc_intr.c | 11 +-
> drivers/media/video/s5p-mfc/s5p_mfc_opr.c | 1407 ++-----------------
> drivers/media/video/s5p-mfc/s5p_mfc_opr.h | 178 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.c | 1759 +++++++++++++++++++++++
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.h | 85 ++
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.c | 1945 ++++++++++++++++++++++++++
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.h | 50 +
> drivers/media/video/s5p-mfc/s5p_mfc_pm.c | 3 +-
> drivers/media/video/s5p-mfc/s5p_mfc_shm.c | 47 -
> drivers/media/video/s5p-mfc/s5p_mfc_shm.h | 90 --
> 28 files changed, 5700 insertions(+), 1873 deletions(-)
> create mode 100644 drivers/media/video/s5p-mfc/regs-mfc-v6.h
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.c
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v5.h
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.c
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.h
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.c
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.h
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.c
> create mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.h
> delete mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_shm.c
> delete mode 100644 drivers/media/video/s5p-mfc/s5p_mfc_shm.h
>
> --
> 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
--
With warm regards,
Sachin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v5 0/4] Update MFC v4l2 driver to support MFC6.x
2012-08-27 9:31 ` Sachin Kamat
@ 2012-08-27 18:50 ` Sylwester Nawrocki
0 siblings, 0 replies; 4+ messages in thread
From: Sylwester Nawrocki @ 2012-08-27 18:50 UTC (permalink / raw)
To: Sachin Kamat
Cc: Arun Kumar K, linux-media, jtp.park, janghyuck.kim, jaeryul.oh,
ch.naveen, m.szyprowski, k.debski, kmpark, joshi
On 08/27/2012 11:31 AM, Sachin Kamat wrote:
> Hi Arun,
>
> The media tree has been re-organized recently.
> It would be useful to re-base your patches against the latest media
> tree (or linux-next).
> MFC driver is now located at "drivers/media/platform/s5p-mfc/"
And you can find some guidelines in this post:
http://www.mail-archive.com/linux-media@vger.kernel.org/msg50498.html
--
Regards,
Sylwester
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-08-28 4:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-28 4:46 [PATCH v5 0/4] Update MFC v4l2 driver to support MFC6.x Arun Kumar K
-- strict thread matches above, loose matches on Subject: below --
2012-08-27 11:57 Arun Kumar K
2012-08-27 9:31 ` Sachin Kamat
2012-08-27 18:50 ` Sylwester Nawrocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox