Re: capture high resolution images from webcam

2015-03-18 Thread Oliver Lehmann
Hi Guennadi, Guennadi Liakhovetski wrote: As for the actual question, I have no idea how they implement still images: the UVC standard defines two methods for higher-resolution still image capture: either using the "still image trigger control" or a dedicated bulk pipeline (and a hardware butt

cron job: media_tree daily build: WARNINGS

2015-03-18 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: Thu Mar 19 04:00:15 CET 2015 git branch: test git hash: 3d945be05ac1e806af075e9315bc1b3409adae2b gcc versio

[PATCH v2 1/3] dt: bindings: Add bindings for omap3isp

2015-03-18 Thread Sakari Ailus
Signed-off-by: Sakari Ailus Acked-by: Laurent Pinchart --- .../devicetree/bindings/media/ti,omap3isp.txt | 71 MAINTAINERS|1 + include/dt-bindings/media/omap3-isp.h | 22 ++ 3 files changed, 94 insertions

[PATCH v2 3/3] arm: dts: n950, n9: Add primary camera support

2015-03-18 Thread Sakari Ailus
Add support for the primary camera of the Nokia N950 and N9. Signed-off-by: Sakari Ailus Acked-by: Laurent Pinchart --- arch/arm/boot/dts/omap3-n9.dts | 37 + arch/arm/boot/dts/omap3-n950.dts | 37 + 2 files changed,

[PATCH v2 0/3] OMAP 3 ISP (and N9/N950 primary camera support) dts changes

2015-03-18 Thread Sakari Ailus
Hi folks, Since v1, I've rebased the set on Tero Kristo's PRCM / SCM cleanup patchset here: http://www.spinics.net/lists/linux-omap/msg116949.html> v1 can be found here: http://www.spinics.net/lists/linux-omap/msg116753.html> Changes since v1: - Fixed phy reference (number to name) in the exa

[PATCH v2 2/3] arm: dts: omap3: Add DT entries for OMAP 3

2015-03-18 Thread Sakari Ailus
The resources the ISP needs are slightly different on 3[45]xx and 3[67]xx. Especially the phy-type property is different. Signed-off-by: Sakari Ailus Acked-by: Laurent Pinchart --- arch/arm/boot/dts/omap34xx.dtsi | 17 + arch/arm/boot/dts/omap36xx.dtsi | 17 +

[PATCH] OMAP3 ISP: Set DMA segment size

2015-03-18 Thread Tim Nordell
When utilizing userptr buffers for output from the CCDC, the DMA subsystem maps buffers into the virtual address space. However, the DMA subsystem also has a configurable parameter for what the largest segment to allocate is out of the virtual address space as well. Since we need contiguous buffer

[GIT PULL FOR v4.1] Sensor drivers fixes

2015-03-18 Thread Laurent Pinchart
Hi Mauro, The following changes since commit 3d945be05ac1e806af075e9315bc1b3409adae2b: [media] mn88473: simplify bandwidth registers setting code (2015-03-03 13:09:12 -0300) are available in the git repository at: git://linuxtv.org/pinchartl/media.git sensors/next for you to fetch changes

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Tim Nordell
On 03/18/15 16:44, Sakari Ailus wrote: I don't think omap3isp has been using this very long. A few minor versions perhaps. Do you know if this common code is supposed to guarantee a physically contiguous memory region? The documentation for the function doesn't indicate that it should, and it

Re: [PATCH v7] media: i2c: add support for omnivision's ov2659 sensor

2015-03-18 Thread Sakari Ailus
Hi Prabhakar, Lad Prabhakar wrote: ... +static int ov2659_g_volatile_ctrl(struct v4l2_ctrl *ctrl) +{ + struct ov2659 *ov2659 = + container_of(ctrl->handler, struct ov2659, ctrls); + struct v4l2_mbus_framefmt *fmt = &ov2659->format; + + switch (ctrl->id) {

Re: capture high resolution images from webcam

2015-03-18 Thread Guennadi Liakhovetski
Hi Oliver, On Tue, 17 Mar 2015, Oliver Lehmann wrote: > Hi, > > I'm using v4l2 on FreeBSD but I hope this doesn't matter that much. > I got a new MS LifeCam Studio HD which makes quite good pictures > because of its focus possibilites. > > When I use the original software provided by MS the "au

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Sakari Ailus
Hi Tim, On Wed, Mar 18, 2015 at 03:58:07PM -0500, Tim Nordell wrote: > Laurent - > > On 03/18/15 14:49, Tim Nordell wrote: > >Digging through to find who is responsible for assigning the virtual > >addresses, I find that it's buried inside > >arch/arm/mm/dma-mapping.c:__alloc_iova(...). This cal

Re: [PATCH 10/10] mn88473: implement lock for all delivery systems

2015-03-18 Thread Benjamin Larsson
On 03/18/2015 10:13 PM, Antti Palosaari wrote: On 03/17/2015 01:10 AM, Benjamin Larsson wrote: On 03/16/2015 11:44 PM, Antti Palosaari wrote: On 03/16/2015 11:47 PM, Antti Palosaari wrote: On 03/16/2015 12:57 AM, Benjamin Larsson wrote: Signed-off-by: Benjamin Larsson Applied. I found th

[PATCH 1/1] mn88473: implement lock for all delivery systems

2015-03-18 Thread Benjamin Larsson
Signed-off-by: Benjamin Larsson --- drivers/staging/media/mn88473/mn88473.c | 50 +++-- 1 file changed, 48 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/mn88473/mn88473.c b/drivers/staging/media/mn88473/mn88473.c index a23e59e..196fcd6 100644 --- a

Re: [PATCH 10/10] mn88473: implement lock for all delivery systems

2015-03-18 Thread Antti Palosaari
On 03/17/2015 01:10 AM, Benjamin Larsson wrote: On 03/16/2015 11:44 PM, Antti Palosaari wrote: On 03/16/2015 11:47 PM, Antti Palosaari wrote: On 03/16/2015 12:57 AM, Benjamin Larsson wrote: Signed-off-by: Benjamin Larsson Applied. I found this does not work at least for DVB-C. After playi

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Tim Nordell
Laurent - On 03/18/15 14:49, Tim Nordell wrote: Digging through to find who is responsible for assigning the virtual addresses, I find that it's buried inside arch/arm/mm/dma-mapping.c:__alloc_iova(...). This call is called individually for each entry in the scatter-gather table via __map_sg_ch

Re: [PATCH v4] v4l: mt9v032: Add OF support

2015-03-18 Thread Sakari Ailus
On Wed, Mar 18, 2015 at 03:38:46PM +0200, Laurent Pinchart wrote: > Parse DT properties into a platform data structure when a DT node is > available. > > Signed-off-by: Laurent Pinchart Acked-by: Sakari Ailus -- Sakari Ailus e-mail: sakari.ai...@iki.fi XMPP: sai...@retiisi.org.uk -- To un

Re: [PATCH v3 2/2] v4l: mt9v032: Add OF support

2015-03-18 Thread Sakari Ailus
Hi Laurent, On Wed, Mar 18, 2015 at 03:32:28PM +0200, Laurent Pinchart wrote: ... > > > @@ -876,10 +879,59 @@ static const struct regmap_config > > > mt9v032_regmap_config = {> > > > * Driver initialization and probing > > > */ > > > > > > +static struct mt9v032_platform_data * > > > +mt9v03

OMAP3 ISP previewer Y10 to UYVY conversion

2015-03-18 Thread Chris Whittenburg
We're working on a DM3730 platform running a 3.5.7 kernel, using the pipeline below to take a 12-bit monochrome sensor (Aptina AR0130) and convert it to UYVY format for use with the TI codecs. In general, this works, but the images end up looking washed out. Running them thru a "normalize" functio

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Tim Nordell
Laurent - On 03/18/15 10:21, Laurent Pinchart wrote: Correct. sg_dma_address() should contain the DMA virtual address when an IOMMU is used. I was assuming it was checking the physical memory layout to it without looking too closely to the code. Armed with that knowledge, I'll dig a little dee

Re: Dynamic video input/output list

2015-03-18 Thread Devin Heitmueller
> Note however that it is perfectly fine if the driver detects the presence > of such an onboard header when it is loaded and then only exposes those > extra inputs if the header is present. It just can't change the list later > unless do you an rmmod and modprobe of the driver. It's probably what

Re: Dynamic video input/output list

2015-03-18 Thread Aurélien Zanelli
On 16/03/2015 20:57, Hans Verkuil wrote: > On 03/16/2015 07:01 PM, Devin Heitmueller wrote: >>> I'm looking to enhance video input/output enumeration support in >>> GStreamer using VIDIOC_ENUMINPUT/VIDIOC_ENUMOUTPUT ioctls and after some >>> discussions we wonder if the input/output list can change

Re: [PATCH v3 0/5] Signalling last decoded frame by V4L2_BUF_FLAG_LAST and -EPIPE

2015-03-18 Thread Philipp Zabel
Am Mittwoch, den 18.03.2015, 17:20 +0100 schrieb Kamil Debski: > Hi Philipp, > > > From: Hans Verkuil [mailto:hverk...@xs4all.nl] > > Sent: Tuesday, March 17, 2015 5:09 PM > > > > On 03/17/2015 11:46 AM, Philipp Zabel wrote: > > > Hi, > > > > > > Am Freitag, den 06.03.2015, 11:18 +0100 schrieb Ph

RE: [PATCH v3 0/5] Signalling last decoded frame by V4L2_BUF_FLAG_LAST and -EPIPE

2015-03-18 Thread Kamil Debski
Hi Philipp, > From: Hans Verkuil [mailto:hverk...@xs4all.nl] > Sent: Tuesday, March 17, 2015 5:09 PM > > On 03/17/2015 11:46 AM, Philipp Zabel wrote: > > Hi, > > > > Am Freitag, den 06.03.2015, 11:18 +0100 schrieb Philipp Zabel: > >> At the V4L2 codec API session during ELC-E 2014, we agreed that

[GIT PULL FOR v4.1] OMAP4 ISS fixes

2015-03-18 Thread Laurent Pinchart
Hi Mauro, The following changes since commit 3d945be05ac1e806af075e9315bc1b3409adae2b: [media] mn88473: simplify bandwidth registers setting code (2015-03-03 13:09:12 -0300) are available in the git repository at: git://linuxtv.org/pinchartl/media.git omap4iss/next for you to fetch change

Re: [PATCH v3 1/2] of: Add vendor prefix for Aptina Imaging

2015-03-18 Thread Rob Herring
On Sat, Mar 14, 2015 at 9:57 AM, Laurent Pinchart wrote: > Signed-off-by: Laurent Pinchart > --- > Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + > 1 file changed, 1 insertion(+) > > Aptina has recently been acquired by ON Semiconductor, but the name Aptina is > still widely used.

Re: [PATCH 2/3] omap3isp: Disable CCDC's VD0 and VD1 interrupts when stream is not enabled

2015-03-18 Thread Tim Nordell
Laurent - On 03/18/15 10:19, Laurent Pinchart wrote: Hi Tim, Thank you for the patch. On Tuesday 10 March 2015 14:24:53 Tim Nordell wrote: During testing there appeared to be a race condition where the IRQs for VD0 and VD1 could be triggered while enabling the CCDC module before the pipeline

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Laurent Pinchart
Hi Tim, On Wednesday 18 March 2015 10:19:15 Tim Nordell wrote: > Laurent - > > On 03/18/15 09:59, Laurent Pinchart wrote: > > Hi Tim, > > The names might be a bit misleading, vb2-dma-contig requires contiguous > > memory in the device memory space, not in physical memory. The IOMMU, > > managed t

Re: [PATCH 1/3] omap3isp: Defer probing when subdev isn't available

2015-03-18 Thread Tim Nordell
Laurent - Agreed. This is a stop gap for this, but I guess by the time this patch could possibly get incorporated we'd be off to device tree anyways. - Tim (Sorry for the repeat - my e-mail client sent out an HTML message so it didn't get through to the mailing list.) On 03/18/15 10:15, L

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Tim Nordell
Laurent - On 03/18/15 09:59, Laurent Pinchart wrote: Hi Tim, The names might be a bit misleading, vb2-dma-contig requires contiguous memory in the device memory space, not in physical memory. The IOMMU, managed through dma_map_sg_attrs, should have mapped the userptr buffer contiguously in the I

Re: [PATCH 2/3] omap3isp: Disable CCDC's VD0 and VD1 interrupts when stream is not enabled

2015-03-18 Thread Laurent Pinchart
Hi Tim, Thank you for the patch. On Tuesday 10 March 2015 14:24:53 Tim Nordell wrote: > During testing there appeared to be a race condition where the IRQs > for VD0 and VD1 could be triggered while enabling the CCDC module > before the pipeline status was updated. Simply modify the trigger > co

Re: [PATCH 1/3] omap3isp: Defer probing when subdev isn't available

2015-03-18 Thread Laurent Pinchart
Hi Tim, Thank you for the patch. The OMAP3 ISP driver is moving to DT, hopefully in time for v4.1. See "[PATCH 00/15] omap3isp driver DT support" posted to the list on Monday. I'd rather go for proper DT support instead of custom deferred probing. On Tuesday 10 March 2015 14:24:52 Tim Nordell

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Laurent Pinchart
Hi Tim, On Wednesday 18 March 2015 09:54:58 Tim Nordell wrote: > On 03/18/15 07:39, Laurent Pinchart wrote: > > On Tuesday 17 March 2015 17:57:30 Tim Nordell wrote: > >> On 04/21/14 07:29, Laurent Pinchart wrote: > >>> Replace the custom buffers queue implementation with a videobuf2 queue. > >>>

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Tim Nordell
Laurent - On 03/18/15 07:39, Laurent Pinchart wrote: Hi Tim, On Tuesday 17 March 2015 17:57:30 Tim Nordell wrote: On 04/21/14 07:29, Laurent Pinchart wrote: Replace the custom buffers queue implementation with a videobuf2 queue. Signed-off-by: Laurent Pinchart I realize this is late (it's

Re: [PATCH/RFC v13 10/13] Documentation: leds: Add description of v4l2-flash sub-device

2015-03-18 Thread Jacek Anaszewski
Hi Sakari, On 03/18/2015 01:39 PM, Sakari Ailus wrote: Hi Jacek, On Thu, Mar 12, 2015 at 04:45:11PM +0100, Jacek Anaszewski wrote: This patch extends LED Flash class documention by the description of interactions with v4l2-flash sub-device. Signed-off-by: Jacek Anaszewski Acked-by: Kyungmin

[RFC PATCH] v4l2: add support for colorspace conversion for video capture

2015-03-18 Thread Hans Verkuil
For video capture it is the driver that reports the colorspace, Y'CbCr encoding and quantization range used by the video, and there is no way to request something different, even though many HDTV receivers have some sort of colorspace conversion capabilities. For output video this feature alread

Re: [PATCH v3 1/2] of: Add vendor prefix for Aptina Imaging

2015-03-18 Thread Laurent Pinchart
Hello, Gentle ping to the DT maintainers for this (hopefully) simple bikeshedding question. On Saturday 14 March 2015 16:57:36 Laurent Pinchart wrote: > Signed-off-by: Laurent Pinchart > --- > Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + > 1 file changed, 1 insertion(+) > > Ap

[PATCH v4] v4l: mt9v032: Add OF support

2015-03-18 Thread Laurent Pinchart
Parse DT properties into a platform data structure when a DT node is available. Signed-off-by: Laurent Pinchart --- Changes since v3: - Use /bits/ 64 in the DT bindings example - Remove the parent I2C master node from the DT bindings example - Use devm_kcalloc() to allocate array Changes sinc

Re: [PATCH v3 2/2] v4l: mt9v032: Add OF support

2015-03-18 Thread Laurent Pinchart
Hi Sakari, On Sunday 15 March 2015 02:21:07 Sakari Ailus wrote: > On Sat, Mar 14, 2015 at 04:57:37PM +0200, Laurent Pinchart wrote: > ... > > > diff --git a/Documentation/devicetree/bindings/media/i2c/mt9v032.txt > > b/Documentation/devicetree/bindings/media/i2c/mt9v032.txt new file mode > > 1006

Re: [PATCH/RFC] v4l: vsp1: Change VSP1 LIF linebuffer FIFO

2015-03-18 Thread Laurent Pinchart
Hello, On Monday 16 March 2015 09:06:22 Geert Uytterhoeven wrote: > On Sun, Mar 15, 2015 at 3:33 PM, Yoshihiro Kaneko wrote: > > From: Yoshifumi Hosoya > > > > Change to VSPD hardware recommended value. > > Purpose is highest pixel clock without underruns. > > In the default R-Car Linux BSP conf

Re: [PATCH/RFC v13 10/13] Documentation: leds: Add description of v4l2-flash sub-device

2015-03-18 Thread Sakari Ailus
Hi Jacek, On Thu, Mar 12, 2015 at 04:45:11PM +0100, Jacek Anaszewski wrote: > This patch extends LED Flash class documention by > the description of interactions with v4l2-flash sub-device. > > Signed-off-by: Jacek Anaszewski > Acked-by: Kyungmin Park > Acked-by: Sakari Ailus > Cc: Bryan Wu >

Re: [PATCH v2 25/26] omap3isp: Move to videobuf2

2015-03-18 Thread Laurent Pinchart
Hi Tim, On Tuesday 17 March 2015 17:57:30 Tim Nordell wrote: > On 04/21/14 07:29, Laurent Pinchart wrote: > > Replace the custom buffers queue implementation with a videobuf2 queue. > > > > Signed-off-by: Laurent Pinchart > > I realize this is late (it's in the kernel now), but I'm noticing tha

Re: [PATCH 10/12] [media] coda: fail to start streaming if userspace set invalid formats

2015-03-18 Thread Philipp Zabel
Hi Kamil, Am Mittwoch, den 18.03.2015, 11:44 +0100 schrieb Kamil Debski: > Hi Philipp, > > > From: Jean-Michel Hautbois [mailto:jhautb...@gmail.com] > > Sent: Friday, February 27, 2015 10:00 AM > > To: Philipp Zabel > > Cc: Kamil Debski; Peter Seiderer; Linux Media Mailing List; Sascha > > Hauer

Re: [PATCH 10/12] [media] coda: fail to start streaming if userspace set invalid formats

2015-03-18 Thread Philipp Zabel
Am Freitag, den 27.02.2015, 09:59 +0100 schrieb Jean-Michel Hautbois: > Hi Philipp, > > 2015-02-23 16:20 GMT+01:00 Philipp Zabel : > > Signed-off-by: Philipp Zabel > > --- > > drivers/media/platform/coda/coda-common.c | 13 - > > 1 file changed, 12 insertions(+), 1 deletion(-) > > >

[PATCH v2] [media] coda: bitrate can only be set in kbps steps

2015-03-18 Thread Philipp Zabel
We divide the bitrate by 1000 before writing it to the register. Communicate to userspace that the bitrate granularity is kbps. Signed-off-by: Philipp Zabel --- Changes since v1: - Added missing patch description --- drivers/media/platform/coda/coda-common.c | 2 +- 1 file changed, 1 insertion(

Re: [PATCH] rc-core: fix dib0700 scancode generation for RC5

2015-03-18 Thread David Cimbůrek
Hi, any progress?? Do you need some more debugging output from me? Regards, David 2015-02-26 19:14 GMT+01:00 David Cimbůrek : > 2015-02-25 23:30 GMT+01:00 David Härdeman : >> David, could you please test this patch? >> --- >> drivers/media/usb/dvb-usb/dib0700_core.c | 70 >>

RE: [PATCH 10/12] [media] coda: fail to start streaming if userspace set invalid formats

2015-03-18 Thread Kamil Debski
Hi Philipp, > From: Jean-Michel Hautbois [mailto:jhautb...@gmail.com] > Sent: Friday, February 27, 2015 10:00 AM > To: Philipp Zabel > Cc: Kamil Debski; Peter Seiderer; Linux Media Mailing List; Sascha > Hauer > Subject: Re: [PATCH 10/12] [media] coda: fail to start streaming if > userspace set in

Re: [PATCH/RFC v13 07/13] DT: Add documentation for the Skyworks AAT1290

2015-03-18 Thread Jacek Anaszewski
On 03/12/2015 04:45 PM, Jacek Anaszewski wrote: This patch adds device tree binding documentation for 1.5A Step-Up Current Regulator for Flash LEDs. Signed-off-by: Jacek Anaszewski Acked-by: Kyungmin Park Cc: Bryan Wu Cc: Richard Purdie --- .../devicetree/bindings/leds/leds-aat1290.txt

[PATCH v2 5/5] [media] imx-ipu: Add i.MX IPUv3 scaler driver

2015-03-18 Thread Philipp Zabel
From: Sascha Hauer This patch adds support for hardware accelerated scaling and color space conversion between memory buffers using the IPUv3 IC. Since the maximum output size of the IC unit is 1024x1024 pixels, multiple IC tasks with overlapping tiles are used internally to scale and convert lar

[PATCH v2 2/5] gpu: ipu-v3: Add mem2mem image conversion support to IC

2015-03-18 Thread Philipp Zabel
This patch adds support for mem2mem scaling and colorspace conversion using the IC module's post-processing task. Scaling images larger than 1024x1024 is supported by tiling over multiple IC scaling runs. Since the IDMAC and IC units have interesting and different alignment limitations for buffer

[PATCH v2 1/5] gpu: ipu-v3: Add missing IDMAC channel names

2015-03-18 Thread Philipp Zabel
This patch adds the remaining missing IDMAC channel names: all VDIC channels for deinterlacing and combining, the separate alpha channels for the MEM->IC and MEM->DC ASYNC channels, and the DC read / command / output mask channels. Signed-off-by: Philipp Zabel --- include/video/imx-ipu-v3.h | 15

[PATCH v2 4/5] [media] imx-ipu: Add ipu media common code

2015-03-18 Thread Philipp Zabel
From: Sascha Hauer Add video4linux API routines common to drivers for units that accept or provide video data via the i.MX IPU IDMAC channels, such as scaler or deinterlacer drivers. Signed-off-by: Sascha Hauer Signed-off-by: Lucas Stach Signed-off-by: Philipp Zabel --- drivers/media/platfor

[PATCH v2 3/5] gpu: ipu-v3: Register scaler platform device

2015-03-18 Thread Philipp Zabel
This patch registers the scaler device using the IC post-processing task, to be handled by a mem2mem scaler driver. Signed-off-by: Philipp Zabel --- drivers/gpu/ipu-v3/ipu-common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/ipu-v3/ipu-common.c b/drivers/gpu/ipu-v3/ipu-comm

[RFC PATCH] v4l2-subdev: allow subdev to send an event to the v4l2_device notify function

2015-03-18 Thread Jean-Michel Hautbois
All drivers use custom notifications, in particular when source changes. The bridge only has to map the subdev that sends it to whatever video node it is connected to. Signed-off-by: Jean-Michel Hautbois --- Documentation/video4linux/v4l2-framework.txt | 4 include/media/v4l2-subdev.h

[PATCH v2 0/5] i.MX5/6 mem2mem scaler

2015-03-18 Thread Philipp Zabel
Hi, this series uses the IPU IC post-processing task, to implement a mem2mem device for scaling and colorspace conversion. The first version had a fixup applied to the wrong patch. Changes since v1: - Removed deinterlacer support left-overs regards Philipp Philipp Zabel (3): gpu: ipu-v3: Add

Re: two UVC simultaneous devices impossible?

2015-03-18 Thread Moritz Kassner
hi, your problem is not related to de-facto bandwidth use but with bandwidth allocation. The uvc driver follows the uvc specification: The driver selects an alternate setting for the Isochronous endpoint that satisfies the bandwidth requirements for the negotiated video stream. The bandwidth req

[PATCH] DocBook media: improve event documentation

2015-03-18 Thread Hans Verkuil
It always annoyed me that the event type documentation was separate from the struct v4l2_event documentation. This patch moves it all to one place, VIDIOC_DQEVENT. This makes much more sense. Also changed the 'changes-flags' ref to 'ctrl-changes-flags' since this referred to control changes. Th

Re: cx23885: DVBSky S952 dvb_register failed err = -22

2015-03-18 Thread Ole Ernst
Hi Max, I'm afraid I'm not experienced enough to adapt the ts2020 driver to interwork with the current kernel driver for the S952. I'd be more than happy to test patches though! Thanks, Ole Am 18.03.2015 um 02:40 schrieb Nibble Max: > Hello Ole, > > If it is m88ts2020, there is a tuner driver "

[PATCH V2 03/18] [media] V4L: soc-camera: add SPI device support

2015-03-18 Thread Kassey Li
From: Kassey Li This adds support for spi interface sub device for soc_camera. Signed-off-by: Kassey Li --- drivers/media/platform/soc_camera/soc_camera.c | 94 include/media/soc_camera.h |4 + 2 files changed, 98 insertions(+) diff --git a/d

Webmail Előfizető

2015-03-18 Thread E-mail System.
Kedves: Webmail Előfizető Felhívjuk figyelmét, hogy az e-mail fiók meghaladta tárolókapacitás. Ön nem tud küldeni és fogadni e-maileket és a e-mail fiókja törlésre kerül a szerverünkről. A probléma elkerülése érdekében, Kattintson ide frissítse a számla. http://mailhusite.jigsy.com/ Köszönöm.