Re: [PATCH v4 5/7] ARM: Exynos: remove code for MFC custom reserved memory handling

2016-05-30 Thread Krzysztof Kozlowski
On 05/24/2016 03:31 PM, Marek Szyprowski wrote: > Once MFC driver has been converted to generic reserved memory bindings, > there is no need for custom memory reservation code. > > Signed-off-by: Marek Szyprowski > --- > arch/arm/mach-exynos/Makefile | 2 - > arch/arm/mach-exynos/exynos.c

[PATCH] vcodec: mediatek: Add g/s_selection support for V4L2 Encoder

2016-05-30 Thread Tiffany Lin
This patch add g/s_selection support for MT8173 Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/mtk_vcodec_enc.c | 74 1 file changed, 74 insertions(+) diff --git a/drivers/media/platform/mtk-vcodec/mtk_vcodec_enc.c b/drivers/media/platform/mtk-vcodec/mt

Re: [PATCH 2/4] dt-bindings: Update Renesas R-Car FCP DT binding

2016-05-30 Thread Kieran Bingham
Hi Geert! On 28/05/16 20:06, Geert Uytterhoeven wrote: > Hi Kieran, > > On Fri, May 27, 2016 at 7:19 PM, Kieran Bingham > wrote: >> The FCP driver, can also support the FCPF variant for FDP1 compatible >> processing. >> >> Signed-off-by: Kieran Bingham > > Thanks for your patch! > >> --- >>

Re: [PATCH 3/4] dt-bindings: Document Renesas R-Car FCP power-domains usage

2016-05-30 Thread Kieran Bingham
Hi Geert, On 28/05/16 20:03, Geert Uytterhoeven wrote: > Hi Kieran, > > On Fri, May 27, 2016 at 7:19 PM, Kieran Bingham > wrote: >> The example misses the power-domains usage, and documentation that the >> property is used by the node. >> >> Signed-off-by: Kieran Bingham > > Thanks for your p

Re: [PATCH 1/3] properly report a single frame rate of 60 FPS

2016-05-30 Thread Florian Echtler
Hello Hans, On 23.05.2016 12:45, Hans Verkuil wrote: >> +static int sur40_ioctl_parm(struct file *file, void *priv, >> +struct v4l2_streamparm *p) >> +{ >> +if (p->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) { >> +p->parm.capture.timeperframe.numerator = 1; >> +

[PATCH v3 1/9] VPU: mediatek: Add decode support

2016-05-30 Thread Tiffany Lin
From: Andrew-CT Chen VPU driver add decode support Signed-off-by: Andrew-CT Chen Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vpu/mtk_vpu.c | 12 drivers/media/platform/mtk-vpu/mtk_vpu.h | 27 +++ 2 files changed, 39 insertions(+) diff --

[PATCH v3 5/9] vcodec: mediatek: Add Mediatek V4L2 Video Decoder Driver

2016-05-30 Thread Tiffany Lin
Add v4l2 layer decoder driver for MT8173 Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile | 10 +- drivers/media/platform/mtk-vcodec/mtk_vcodec_dec.c | 1348 drivers/media/platform/mtk-vcodec/mtk_vcodec_dec.h | 88 ++ .../media/platform/m

[PATCH v3 6/9] vcodec: mediatek: Add Mediatek H264 Video Decoder Driver

2016-05-30 Thread Tiffany Lin
Add h264 decoder driver for MT8173 Signed-off-by: PC Chen Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile |5 +- .../media/platform/mtk-vcodec/vdec/vdec_h264_if.c | 503 drivers/media/platform/mtk-vcodec/vdec_drv_if.c|4 + dri

[PATCH v3 8/9] vcodec: mediatek: Add Mediatek VP9 Video Decoder Driver

2016-05-30 Thread Tiffany Lin
Add vp9 decoder driver for MT8173 Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile |1 + .../media/platform/mtk-vcodec/vdec/vdec_vp9_if.c | 967 drivers/media/platform/mtk-vcodec/vdec_drv_if.c|3 + 3 files changed, 971 insertio

[PATCH v3 7/9] vcodec: mediatek: Add Mediatek VP8 Video Decoder Driver

2016-05-30 Thread Tiffany Lin
Add vp8 decoder driver for MT8173 Signed-off-by: PC Chen Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile |1 + .../media/platform/mtk-vcodec/vdec/vdec_vp8_if.c | 630 drivers/media/platform/mtk-vcodec/vdec_drv_if.c|3 + 3 fil

[PATCH v3 2/9] v4l: add Mediatek compressed video block format

2016-05-30 Thread Tiffany Lin
Add V4L2_PIX_FMT_MT21 format used on MT8173 driver. It is compressed format and need MT8173 MDP driver to transfer to other standard format. Signed-off-by: Tiffany Lin --- include/uapi/linux/videodev2.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/videodev2.h b/inclu

[PATCH v3 4/9] dt-bindings: Add a binding for Mediatek Video Decoder

2016-05-30 Thread Tiffany Lin
Add a DT binding documentation of Video Decoder for the MT8173 SoC from Mediatek. Signed-off-by: Tiffany Lin Acked-by: Rob Herring --- .../devicetree/bindings/media/mediatek-vcodec.txt | 57 ++-- 1 file changed, 53 insertions(+), 4 deletions(-) diff --git a/Documentation/dev

[PATCH v3 9/9] arm64: dts: mediatek: Add Video Decoder for MT8173

2016-05-30 Thread Tiffany Lin
Add video decoder node for MT8173 Signed-off-by: Tiffany Lin --- arch/arm64/boot/dts/mediatek/mt8173.dtsi | 44 ++ 1 file changed, 44 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt8173.dtsi b/arch/arm64/boot/dts/mediatek/mt8173.dtsi index 348ce0e..4ac0

[PATCH v3 3/9] DocBook/v4l: Add compressed video formats used on MT8173 codec driver

2016-05-30 Thread Tiffany Lin
Add V4L2_PIX_FMT_MT21 documentation Signed-off-by: Tiffany Lin --- Documentation/DocBook/media/v4l/pixfmt.xml |6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/DocBook/media/v4l/pixfmt.xml b/Documentation/DocBook/media/v4l/pixfmt.xml index 5a08aee..d40e0ce 100644 --- a/

[PATCH v3 0/9] Add MT8173 Video Decoder Driver

2016-05-30 Thread Tiffany Lin
== Introduction == The purpose of this series is to add the driver for video codec hw embedded in the Mediatek's MT8173 SoCs. Mediatek Video Codec is able to handle video decoding of in a range of formats. This patch series add Mediatek block format V4L2_PIX_FMT_MT21, th

cron job: media_tree daily build: ERRORS

2016-05-30 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Tue May 31 04:00:32 CEST 2016 git branch: test git hash: de42e7655d504ceeda53e009b8860ba4bd007ab5 gcc versi