[PATCH] documentation: DocBook/media : Fix typo in dvbproperty.xml

2013-03-23 Thread Masanari Iida
Correct spelling typos. Signed-off-by: Masanari Iida --- Documentation/DocBook/media/dvb/dvbproperty.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/DocBook/media/dvb/dvbproperty.xml b/Documentation/DocBook/media/dvb/dvbproperty.xml index 4a5eaee..31d

Fwd: Delock 61959

2013-03-23 Thread David
Hi there, today i got a new DVB-T / DVB-C USB Stick but as far as i can see on the web it is not (yet) supported. Is this currently being worked on or is there something i can do to get it working? Here is the lsusb output: Device Descriptor: bLength18 bDescriptorType

[PATCH] hverkuil/go7007: media: i2c : tw2804: Revert ADC Control Reverting patch commit 3d321ebba68f1fc50a9461373e8da0887e39fbbc Case: In AdLink MPG24 there is bt878 exists (it captures one frame of a

2013-03-23 Thread Volokh Konstantin
Signed-off-by: Volokh Konstantin --- drivers/media/i2c/tw2804.c | 17 + 1 files changed, 1 insertions(+), 16 deletions(-) diff --git a/drivers/media/i2c/tw2804.c b/drivers/media/i2c/tw2804.c index 441b766..c5dc2c3 100644 --- a/drivers/media/i2c/tw2804.c +++ b/drivers/media/i2c/

[PATCH v2 1/1] v4l: Document timestamp behaviour to correspond to reality

2013-03-23 Thread Sakari Ailus
Document that monotonic timestamps are taken after the corresponding frame has been received, not when the reception has begun. This corresponds to the reality of current drivers: the timestamp is naturally taken when the hardware triggers an interrupt to tell the driver to handle the received fram

Re: [RFC 11/12] exynos-fimc-is: Adds the Kconfig and Makefile

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: Modifies the exynos5-is Makefile and Kconfig to include the new fimc-is driver. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- drivers/media/platform/exynos5-is/Kconfig | 12 drivers/media/platform/exynos5-is/Makefile |

Re: [RFC 10/12] exynos-fimc-is: Adds the hardware interface module

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: The hardware interface module finally sends the commands to the FIMC-IS firmware and runs the interrupt handler for getting the responses. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- .../media/platform/exynos5-is/fimc-is-interface.c |

cron job: media_tree daily build: ERRORS

2013-03-23 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 Mar 23 19:03:46 CET 2013 git branch: test git hash: 69aa6f4ec669b9121057cc9e32cb10b5f744f6d6 gcc versio

Re: [RFC 07/12] exynos-fimc-is: Adds isp subdev

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: fimc-is driver takes video data input from the ISP video node which is added in this patch. This node accepts Bayer input buffers which is given from the IS sensors. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- drivers/media/platform/exy

[PATCH v2 5/5] em28xx: write output frame resolution to regs 0x34+0x35 for em25xx family bridges

2013-03-23 Thread Frank Schäfer
The Windows driver writes the output resolution to registers 0x34 (width / 16) and 0x35 (height / 16) always. We don't know yet what these registers are used for. Signed-off-by: Frank Schäfer --- drivers/media/usb/em28xx/em28xx-core.c |7 +++ drivers/media/usb/em28xx/em28xx-reg.h |6

[PATCH v2 4/5] em28xx: make em28xx_set_outfmt() working with EM25xx family bridges

2013-03-23 Thread Frank Schäfer
Streaming doesn't work with the EM2765 if bit 5 of the output format register 0x27 is set. It's actually not clear if really has to be set for the other chips, but for now let's keep it to avoid regressions and add a comment to the code. Signed-off-by: Frank Schäfer --- drivers/media/usb/em28xx/

[PATCH v2 3/5] em28xx: add support for em25xx/em276x/em277x/em278x frame data processing

2013-03-23 Thread Frank Schäfer
The em25xx/em276x/em277x/em278x frame data format is different to the one used by the em2710/em2750/em28xx chips. With the recent cleanups and reorganization of the frame data processing code it can be easily extended to support these devices. Signed-off-by: Frank Schäfer --- drivers/media/usb/e

[PATCH v2 2/5] em28xx: add chip id of the em2765

2013-03-23 Thread Frank Schäfer
This chip can be found in the SpeedLink VAD Laplace webcam (1ae7:9003 and 1ae7:9004). Signed-off-by: Frank Schäfer --- drivers/media/usb/em28xx/em28xx-cards.c | 11 ++- drivers/media/usb/em28xx/em28xx-reg.h |1 + drivers/media/usb/em28xx/em28xx.h |1 + 3 Dateien geände

[PATCH v2 1/5] em28xx: add support for em25xx i2c bus B read/write/check device operations

2013-03-23 Thread Frank Schäfer
The webcam "SpeedLink VAD Laplace" (em2765 + ov2640) uses a special algorithm for i2c communication with the sensor, which is connected to a second i2c bus. We don't know yet how to find out which devices support/use it. It's very likely used by all em25xx and em276x+ bridges. Tests with other em2

[PATCH v2 0/5] em28xx: add support for the em2765 bridge

2013-03-23 Thread Frank Schäfer
This patch series adds basic support for the em25xx/276x/7x/8x camera bridges. These devices differ from the em2710/2750 and em28xx bridges in several points: 1) a second i2c bus is provided which has to be accessed with a different read/write algorithm (=> patch 1) 2) a different frame data fo

Re: [RFC 06/12] exynos-fimc-is: Adds the sensor subdev

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: FIMC-IS uses certain sensors which are exclusively controlled from the IS firmware. This patch adds the sensor subdev for the fimc-is sensors. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- drivers/media/platform/exynos5-is/fimc-is-sensor.

Re: [RFC 05/12] exynos-fimc-is: Adds the register definition and context header

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: This patch adds the register definition file for the fimc-is driver and also the header file containing the main context for the driver. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- drivers/media/platform/exynos5-is/fimc-is-regs.h | 352

Re: [RFC 04/12] exynos-fimc-is: Adds common driver header files

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: This patch adds all the common header files used by the fimc-is driver. It includes the commands for interfacing with the firmware and error codes from IS firmware, metadata and command parameter definitions. Signed-off-by: Arun Kumar K Signed-off-by:

Re: [RFC 03/12] exynos-fimc-is: Adds fimc-is driver core files

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: This driver is for the FIMC-IS IP available in Samsung Exynos5 SoC onwards. This patch adds the core files for the new driver. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- drivers/media/platform/exynos5-is/fimc-is-core.c | 421 +

Re: [RFC 01/12] exynos-fimc-is: Adding device tree nodes

2013-03-23 Thread Sylwester Nawrocki
On 03/08/2013 03:59 PM, Arun Kumar K wrote: Add the fimc-is node and the required pinctrl nodes for fimc-is driver for Exynos5. Also adds the DT binding documentation for the new fimc-is node. Signed-off-by: Arun Kumar K Signed-off-by: Kilyeon Im --- .../devicetree/bindings/media/soc/exynos5-i

[PATCH v2 2/4] [media] tuners: use IS_ENABLED

2013-03-23 Thread Mauro Carvalho Chehab
Instead of checking everywhere there for 3 symbols, use instead IS_ENABLED macro. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/tuners/e4000.h| 4 ++-- drivers/media/tuners/fc0011.h | 4 ++-- drivers/media/tuners/fc0012.h | 4 ++-- drivers/media/tuners/fc0013.h | 4 ++-- drive

[PATCH v2 3/4] [media] cx23885: use IS_ENABLED

2013-03-23 Thread Mauro Carvalho Chehab
Instead of checking everywhere there for 3 symbols, use instead IS_ENABLED macro. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/pci/cx23885/altera-ci.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/media/pci/cx23885/altera-ci.h b/drivers/media/pci/cx2

[PATCH v2 1/4] [media] dvb-frontends: use IS_ENABLED

2013-03-23 Thread Mauro Carvalho Chehab
Instead of checking everywhere there for 3 symbols, use instead IS_ENABLED macro. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/dvb-frontends/a8293.h| 5 +++-- drivers/media/dvb-frontends/af9013.h | 4 ++-- drivers/media/dvb-frontends/af9033.h | 5 +++-- drivers/medi

[PATCH v2 4/4] [media] dvb-usb/dvb-usb-v2: use IS_ENABLED

2013-03-23 Thread Mauro Carvalho Chehab
Instead of checking everywhere there for 3 symbols, use instead IS_ENABLED macro. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/usb/dvb-usb-v2/mxl111sf-demod.h | 4 ++-- drivers/media/usb/dvb-usb-v2/mxl111sf-tuner.h | 5 ++--- drivers/media/usb/dvb-usb/dibusb-common.c | 5 +++-- 3 f

Re: [RFC 12/12] ARM: dts: Add camera node to exynos5250-smdk5250.dts

2013-03-23 Thread Sylwester Nawrocki
On 03/06/2013 12:53 PM, Shaik Ameer Basha wrote: Signed-off-by: Shaik Ameer Basha --- arch/arm/boot/dts/exynos5250-smdk5250.dts | 43 - 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/exynos5250-smdk5250.dts b/arch/arm/boot/dts/exy

Re: [RFC 11/12] media: m5mols: Adding dt support to m5mols driver

2013-03-23 Thread Sylwester Nawrocki
Hi Shaik, On 03/06/2013 12:53 PM, Shaik Ameer Basha wrote: This patch adds the dt support to m5mols driver. Signed-off-by: Shaik Ameer Basha --- drivers/media/i2c/m5mols/m5mols_core.c | 54 +++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/drive

em28xx: new board id [eb1a:e323]

2013-03-23 Thread Frank Reimann
Hi, I've made tests with my MSI DIGIVOX A/D II stick: Model: MSI DIGIVOX A/D II Vendor/Product id: [eb1a:e323]. Tests made: - DVB[Worked] Tested-by: Frank Reimann Frank Reimann -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message

eb1a:2860

2013-03-23 Thread LM
Hi, lsusb: eb1a:2860 eMPIA Technology, Inc With card=25 composite works TV does not. Thanks lars Mar 23 16:09:53 IdeaPad kernel: [1703066.947284] tuner-simple 7-0060: destroying instance Mar 23 16:09:58 IdeaPad kernel: [1703071.605605] em28xx: New device USB 2860 Device @ 480 Mbps (eb1a:2