[GIT PULL FOR v3.15] 3.15 updates

2014-02-21 Thread Hans Verkuil
Hi Mauro, Some sleep_on race fixes, s2255 driver cleanups and vb2 conversion and some ths8200 fixes. This pull request superseded https://patchwork.linuxtv.org/patch/22207/. The only change is the addition of the s2255drv: upgrade to videobuf2 patch which completes the vb2 conversion of that

[patch v2] [media] stv090x: remove indent levels in stv090x_get_coldlock()

2014-02-21 Thread Dan Carpenter
This code is needlessly complicated and checkpatch.pl complains that we go over the 80 characters per line limit. If we flip the if (!lock) { test to if (lock) return; then we can remove an indent level from the rest of the function. We can add two returns in the if (state-srate = 1000) {

[PATCH] v4l2-ctrls: replace BUG_ON by WARN_ON

2014-02-21 Thread Hans Verkuil
BUG_ON is unnecessarily strict. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/v4l2-ctrls.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/media/v4l2-core/v4l2-ctrls.c b/drivers/media/v4l2-core/v4l2-ctrls.c index 6ff002b..35d551d

Re: [PATCH v5.1 3/7] v4l: Add timestamp source flags, mask and document them

2014-02-21 Thread Sakari Ailus
Hi Hans, Hans Verkuil wrote: On 02/20/2014 08:41 PM, Sakari Ailus wrote: Some devices do not produce timestamps that correspond to the end of the frame. The user space should be informed on the matter. This patch achieves that by adding buffer flags (and a mask) for timestamp sources since

Re: PWC webcam and setpwc tool no longer working with 3.12.11 kernel

2014-02-21 Thread Hans de Goede
Hi, On 02/20/2014 08:30 PM, Chris Rankin wrote: Hi, I have an old Logitech webcam, with USB IDs 046d:08b3. When I try to use this camera now, I see this error in the dmesg log: [ 2883.852464] pwc: isoc_init() submit_urb 0 failed with error -28 This error is apparently ENOSPC,

Re: [PATCH v5.1 3/7] v4l: Add timestamp source flags, mask and document them

2014-02-21 Thread Sakari Ailus
Hi Sylwester, Thanks for the comments. Sylwester Nawrocki wrote: ... On 02/20/2014 09:36 PM, Hans Verkuil wrote: On 02/20/2014 08:41 PM, Sakari Ailus wrote: Some devices do not produce timestamps that correspond to the end of the frame. The user space should be informed on the matter. This

Re: [RFC v5,2/3] controls.xml : add addtional Flash fault bits

2014-02-21 Thread Sakari Ailus
Hi Daniel, Daniel Jeong wrote: Added more comment about Input voltage flash monitor and external temp function. Signed-off-by: Daniel Jeong gshark.je...@gmail.com --- Documentation/DocBook/media/v4l/controls.xml | 18 ++ 1 file changed, 18 insertions(+) diff --git

Re: [patch v2] [media] stv090x: remove indent levels in stv090x_get_coldlock()

2014-02-21 Thread walter harms
Am 21.02.2014 09:50, schrieb Dan Carpenter: This code is needlessly complicated and checkpatch.pl complains that we go over the 80 characters per line limit. If we flip the if (!lock) { test to if (lock) return; then we can remove an indent level from the rest of the function. We can

Re: [PATCH v5.1 3/7] v4l: Add timestamp source flags, mask and document them

2014-02-21 Thread Laurent Pinchart
Hi Sakari, On Friday 21 February 2014 11:31:38 Sakari Ailus wrote: Hans Verkuil wrote: On 02/20/2014 08:41 PM, Sakari Ailus wrote: Some devices do not produce timestamps that correspond to the end of the frame. The user space should be informed on the matter. This patch achieves that by

[PATCH 2/3] media: omap3isp: ispccdc: remove unwanted comments

2014-02-21 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com this patch removes the description of members which does not exists for ispccdc_lsc structure. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/platform/omap3isp/ispccdc.h |6 -- 1 file changed, 6 deletions(-)

[PATCH 3/3] media: omap3isp: rename the variable names in description

2014-02-21 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com this patch renames the variable in the description to match it appropriately to function definition. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/platform/omap3isp/isp.h| 12 ++--

[PATCH 1/3] media: omap3isp: fix typos

2014-02-21 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/platform/omap3isp/isp.c|2 +- drivers/media/platform/omap3isp/ispccdc.c|2 +- drivers/media/platform/omap3isp/ispccp2.c|4 ++--

[PATCH 0/3] media: omap3isp: trivial cleanup

2014-02-21 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series include fixing some typos and removal of unwanted comments. Lad, Prabhakar (3): media: omap3isp: fix typos media: omap3isp: ispccdc: remove unwanted comments media: omap3isp: rename the variable names in description

Re: video from USB DVB-T get damaged after some time (it9135)

2014-02-21 Thread kapetr
Hello, == Antti: May I ask, if you have the same one stick? Does it work without problems ? == everybody: I have final tested it under W-XP SP2 with orig drivers and SW. It goes into problems after some time too, BUT there is a difference: It is able to recover from it itself and it plays

Re: [PATCH v5.1 3/7] v4l: Add timestamp source flags, mask and document them

2014-02-21 Thread Sakari Ailus
Hi Laurent, On Fri, Feb 21, 2014 at 12:58:58PM +0100, Laurent Pinchart wrote: ... It's possible to calculate it (decrementing the readout time + exposure time from the end of frame timestamp) and that's what the devices supposedly do. The pre-frame exposure time isn't available to the host,

Re: [PATCH v5.1 3/7] v4l: Add timestamp source flags, mask and document them

2014-02-21 Thread Laurent Pinchart
Hi Sakari, On Friday 21 February 2014 15:04:48 Sakari Ailus wrote: Hi Laurent, On Fri, Feb 21, 2014 at 12:58:58PM +0100, Laurent Pinchart wrote: ... It's possible to calculate it (decrementing the readout time + exposure time from the end of frame timestamp) and that's what the

[PATCHv7][ 1/7] [media] v4l2: add new V4L2_PIX_FMT_RGB666 pixel format.

2014-02-21 Thread Denis Carikli
That new macro is needed by the imx_drm staging driver for supporting the QVGA display of the eukrea-cpuimx51 board. Cc: Eric BĂ©nard e...@eukrea.com CC: Troy Kisky troy.ki...@boundarydevices.com Cc: linux-media@vger.kernel.org Signed-off-by: Denis Carikli de...@eukrea.com Acked-by: Mauro

Re: PWC webcam and setpwc tool no longer working with 3.12.11 kernel

2014-02-21 Thread Chris Rankin
On Friday, 21 February 2014, 9:47, Hans de Goede hdego...@redhat.com wrote: This is likely caused by the camera being plugged into a usb-bus which already is used by other reserved-bandwidth devices such as mice, keyboard, usb soundcards, etc. If possible USB-3 ports are preferred over

Re: [PATCH v4 02/10] Documentation: dt: Add DT binding documentation for S5C73M3 camera

2014-02-21 Thread Mark Rutland
On Thu, Feb 20, 2014 at 07:40:29PM +, Sylwester Nawrocki wrote: This adds DT binding documentation for Samsung S5C73M3 camera sensor with an embedded ISP. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v3:

Re: [PATCH v4 03/10] Documentation: devicetree: Update Samsung FIMC DT binding

2014-02-21 Thread Mark Rutland
On Thu, Feb 20, 2014 at 07:40:30PM +, Sylwester Nawrocki wrote: This patch documents following updates of the Exynos4 SoC camera subsystem devicetree binding: - addition of #clock-cells property to 'camera' node - the #clock-cells property is needed when the sensor sub-devices use

Re: [PATCH v4 07/10] exynos4-is: Add clock provider for the SCLK_CAM clock outputs

2014-02-21 Thread Mark Rutland
On Thu, Feb 20, 2014 at 07:40:34PM +, Sylwester Nawrocki wrote: This patch adds clock provider so the the SCLK_CAM0/1 output clocks can be accessed by image sensor devices through the clk API. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Kyungmin Park

Re: [PATCH v4 02/10] Documentation: dt: Add DT binding documentation for S5C73M3 camera

2014-02-21 Thread Sylwester Nawrocki
On 21/02/14 16:42, Mark Rutland wrote: [...] +++ b/Documentation/devicetree/bindings/media/samsung-s5c73m3.txt @@ -0,0 +1,97 @@ +Samsung S5C73M3 8Mp camera ISP +-- + +The S5C73M3 camera ISP supports MIPI CSI-2 and parallel (ITU-R BT.656) video +data busses. The

[PATCH] [media] v4l: VIDEO_SH_VOU should depend on HAS_DMA

2014-02-21 Thread Geert Uytterhoeven
If NO_DMA=y: warning: (VIDEO_DM6446_CCDC VIDEO_DM355_CCDC VIDEO_DM365_ISIF VIDEO_OMAP2_VOUT VIDEO_SH_VOU VIDEO_VIU VIDEO_TIMBERDALE VIDEO_MX1 VIDEO_OMAP1) selects VIDEOBUF_DMA_CONTIG which has unmet direct dependencies (MEDIA_SUPPORT HAS_DMA) drivers/built-in.o: In function

[RFC] [PATCH 5/6] media: em28xx-video - implement em28xx_ops: suspend/resume hooks

2014-02-21 Thread Shuah Khan
Implement em28xx_ops: suspend/resume hooks. em28xx usb driver will invoke em28xx_ops: suspend and resume hooks for all its extensions from its suspend() and resume() interfaces. Signed-off-by: Shuah Khan shuah...@samsung.com --- drivers/media/usb/em28xx/em28xx-video.c | 28

[RFC] [PATCH 1/6] media: em28xx - add suspend/resume to em28xx_ops

2014-02-21 Thread Shuah Khan
em28xx usb driver will have to suspend and resume its extensions. Adding suspend and resume to em28xx_ops gives extensions the ability to install suspend and resume that can be invoked from em28xx_usb driver suspend() and resume() interfaces. Approach: Add power management support to em28xx usb

[RFC] [PATCH 0/6] media: em28xx - power management support em28xx

2014-02-21 Thread Shuah Khan
Add power management support to em28xx usb driver. This driver works in conjunction with extensions for each of the functions on the USB device for video/audio/dvb/remote functionality that is present on media USB devices it supports. During suspend and resume each of these extensions will have to

[RFC] [PATCH 2/6] media: em28xx-audio - implement em28xx_ops: suspend/resume hooks

2014-02-21 Thread Shuah Khan
Implement em28xx_ops: suspend/resume hooks. em28xx usb driver will invoke em28xx_ops: suspend and resume hooks for all its extensions from its suspend() and resume() interfaces. Signed-off-by: Shuah Khan shuah...@samsung.com --- drivers/media/usb/em28xx/em28xx-audio.c | 30

[RFC] [PATCH 3/6] media: em28xx-dvb - implement em28xx_ops: suspend/resume hooks

2014-02-21 Thread Shuah Khan
Implement em28xx_ops: suspend/resume hooks. em28xx usb driver will invoke em28xx_ops: suspend and resume hooks for all its extensions from its suspend() and resume() interfaces. Signed-off-by: Shuah Khan shuah...@samsung.com --- drivers/media/usb/em28xx/em28xx-dvb.c | 57

[RFC] [PATCH 6/6] media: em28xx - implement em28xx_usb_driver suspend, resume, reset_resume hooks

2014-02-21 Thread Shuah Khan
Implement em28xx_usb_driver suspend, resume, and reset_resume hooks. These hooks will invoke em28xx core em28xx_suspend_extension() and em28xx_resume_extension() to suspend and resume registered extensions. Approach: Add power management support to em28xx usb driver. This driver works in

[RFC] [PATCH 4/6] media: em28xx-input - implement em28xx_ops: suspend/resume hooks

2014-02-21 Thread Shuah Khan
Implement em28xx_ops: suspend/resume hooks. em28xx usb driver will invoke em28xx_ops: suspend and resume hooks for all its extensions from its suspend() and resume() interfaces. Signed-off-by: Shuah Khan shuah...@samsung.com --- drivers/media/usb/em28xx/em28xx-input.c | 35

cron job: media_tree daily build: WARNINGS

2014-02-21 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: Sat Feb 22 04:00:35 CET 2014 git branch: test git hash: 37e59f876bc710d67a30b660826a5e83e07101ce gcc