From: Kamil Debski <k.debski@samsung.com>
To: 'Arun Kumar K' <arun.kk@samsung.com>, linux-media@vger.kernel.org
Cc: jtp.park@samsung.com, janghyuck.kim@samsung.com,
jaeryul.oh@samsung.com, ch.naveen@samsung.com,
Marek Szyprowski <m.szyprowski@samsung.com>,
kmpark@infradead.org, joshi@samsung.com
Subject: RE: [PATCH v3 0/4] update MFC v4l2 driver to support MFC6.x
Date: Mon, 06 Aug 2012 15:20:09 +0200 [thread overview]
Message-ID: <00f001cd73d6$3468a040$9d39e0c0$%debski@samsung.com> (raw)
In-Reply-To: <1343046557-25353-1-git-send-email-arun.kk@samsung.com>
Hi Arun,
First and very important remark. When you split your changes into multiple
patches please make sure that after applying every patch the kernel compiles.
It is important for such tools as git bisect.
When I apply "s5p-mfc: update MFC v4l2 driver to support MFC6.x" the kernel no
longer compiles. If you look at the patches it can be seen that the order is
wrong. First Kconfig is modified and it requires files added in further
patches.
More comments in reply to specific patches.
Best wishes,
--
Kamil Debski
Linux Platform Group
Samsung Poland R&D Center
> -----Original Message-----
> From: Arun Kumar K [mailto:arun.kk@samsung.com]
> Sent: 23 July 2012 14:29
> To: linux-media@vger.kernel.org
> Cc: jtp.park@samsung.com; janghyuck.kim@samsung.com; jaeryul.oh@samsung.com;
> ch.naveen@samsung.com; arun.kk@samsung.com; m.szyprowski@samsung.com;
> k.debski@samsung.com; kmpark@infradead.org; joshi@samsung.com
> Subject: [PATCH v3 0/4] update MFC v4l2 driver to support MFC6.x
>
> The patchset adds support for MFCv6 firmware in s5p-mfc driver.
> The original patch is split into 4 patches for easy review.
> This patchset have to be applied on patches [1] and [2] posted
> earlier which adds the required v4l2 controls.
>
> Changelog
> - Supports MFCv5 and v6 co-existence.
> - Tested for encoding & decoding in MFCv5.
> - Supports only decoding in MFCv6 now.
> - Can be compiled with kernel image and as module.
> - Config macros for MFC version selection removed.
> - All previous review comments addressed.
>
> [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
>
> Jeongtae Park (4):
> [media] s5p-mfc: update MFC v4l2 driver to support MFC6.x
> [media] s5p-mfc: Decoder and encoder common files
> [media] s5p-mfc: Modified command and opr files for MFCv5
> [media] s5p-mfc: New files for MFCv6 support
>
> drivers/media/video/Kconfig | 4 +-
> drivers/media/video/s5p-mfc/Makefile | 7 +-
> drivers/media/video/s5p-mfc/regs-mfc-v6.h | 392 ++++++
> drivers/media/video/s5p-mfc/regs-mfc.h | 33 +-
> drivers/media/video/s5p-mfc/s5p_mfc.c | 225 ++--
> 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 | 22 +
> drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.c | 155 +++
> drivers/media/video/s5p-mfc/s5p_mfc_cmd_v6.h | 22 +
> drivers/media/video/s5p-mfc/s5p_mfc_common.h | 153 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c | 198 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_ctrl.h | 1 +
> drivers/media/video/s5p-mfc/s5p_mfc_dec.c | 223 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_dec.h | 1 +
> drivers/media/video/s5p-mfc/s5p_mfc_enc.c | 200 ++--
> 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 | 1402 ++-----------------
> drivers/media/video/s5p-mfc/s5p_mfc_opr.h | 179 ++-
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.c | 1767 +++++++++++++++++++++++
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v5.h | 85 ++
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.c | 1921
++++++++++++++++++++++++++
> drivers/media/video/s5p-mfc/s5p_mfc_opr_v6.h | 50 +
> drivers/media/video/s5p-mfc/s5p_mfc_pm.c | 8 +-
> drivers/media/video/s5p-mfc/s5p_mfc_shm.c | 47 -
> drivers/media/video/s5p-mfc/s5p_mfc_shm.h | 90 --
> 28 files changed, 5605 insertions(+), 1867 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
prev parent reply other threads:[~2012-08-06 13:20 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-23 12:29 [PATCH v3 0/4] update MFC v4l2 driver to support MFC6.x Arun Kumar K
2012-07-23 12:29 ` [PATCH v3 1/4] [media] s5p-mfc: " Arun Kumar K
2012-08-06 13:20 ` Kamil Debski
2012-07-23 12:29 ` [PATCH v3 2/4] [media] s5p-mfc: Decoder and encoder common files Arun Kumar K
2012-07-23 12:29 ` [PATCH v3 3/4] [media] s5p-mfc: Modified command and opr files for MFCv5 Arun Kumar K
2012-07-23 12:29 ` [PATCH v3 4/4] [media] s5p-mfc: New files for MFCv6 support Arun Kumar K
2012-08-06 13:20 ` Kamil Debski
2012-08-06 13:20 ` Kamil Debski [this message]
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='00f001cd73d6$3468a040$9d39e0c0$%debski@samsung.com' \
--to=k.debski@samsung.com \
--cc=arun.kk@samsung.com \
--cc=ch.naveen@samsung.com \
--cc=jaeryul.oh@samsung.com \
--cc=janghyuck.kim@samsung.com \
--cc=joshi@samsung.com \
--cc=jtp.park@samsung.com \
--cc=kmpark@infradead.org \
--cc=linux-media@vger.kernel.org \
--cc=m.szyprowski@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox