Re: AW: AW: v4l2_buffer with PBO mapped memory

2014-04-15 Thread Thomas Scheuermann
Hi Laurent, On 11.04.2014 07:56, Thomas Scheuermann wrote: Hi Laurent, On 07.04.2014 01:37, Laurent Pinchart wrote: Hi Thomas, On Friday 04 April 2014 20:01:33 Scheuermann, Mail wrote: Hi Laurent, I've done the following: echo 3 /sys/module/videobuf2_core/parameters/debug and found in

[RFC] Drop support for kernel 2.6.31 in the media_build

2014-04-15 Thread Hans Verkuil
I've been updating the compatibility build for 3.15-rc1 (it should be OK again) and as usual it is the 2.6.31 kernel that gives me the most trouble due to changes in device.h. I would like to drop support for 2.6.31 because of this. Frankly, I have better things to do with my time :-) Comments?

[PATCHv2 0/4] drm: exynos: update/fixes to HDMI driver

2014-04-15 Thread Tomasz Stanislawski
Hi everyone, This patchset adds 4 fixes/updates to EXYNOS DRM driver for HDMI subsystem. All comments are welcome. Regards, Tomasz Stanislawski Changelog: v2: * fix check with gpio_is_valid() * use U32_MAX instead of ULONG_MAX to be 64-bit-friendly * use hdmi_driver_data as hdmi's compatile

[PATCHv2 1/4] drm: exynos: hdmi: simplify extracting hpd-gpio from DT

2014-04-15 Thread Tomasz Stanislawski
This patch eliminates redundant checks while retrieving HPD gpio from DT during HDMI's probe(). Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- drivers/gpu/drm/exynos/exynos_hdmi.c | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git

[PATCHv2 2/4] drm: exynos: mixer: fix using usleep() in atomic context

2014-04-15 Thread Tomasz Stanislawski
This patch fixes calling usleep_range() after taking reg_slock using spin_lock_irqsave(). The mdelay() is used instead. Waiting in atomic context is not the best idea in general. Hopefully, waiting occurs only when Video Processor fails to reset correctly. Signed-off-by: Tomasz Stanislawski

[PATCHv2 3/4] drm: exynos: add compatibles for HDMI and Mixer chips and exynos4210 SoC

2014-04-15 Thread Tomasz Stanislawski
This patch add proper compatibles for Mixer and HDMI chip available on exynos4210 SoCs. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- drivers/gpu/drm/exynos/exynos_hdmi.c |7 +++ drivers/gpu/drm/exynos/exynos_mixer.c |3 +++ 2 files changed, 10 insertions(+) diff

[PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Tomasz Stanislawski
Adds support for limitation of maximal pixel clock of HDMI signal. This feature is needed on boards that contains lines or bridges with frequency limitations. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- .../devicetree/bindings/video/exynos_hdmi.txt |4

[PATCH 00/10] [2013:025f] PCTV tripleStick (292e)

2014-04-15 Thread Antti Palosaari
http://blog.palosaari.fi/2014/04/naked-hardware-15-pctv-triplestick-292e.html Antti Antti Palosaari (10): si2157: Silicon Labs Si2157 silicon tuner driver si2168: Silicon Labs Si2168 DVB-T/T2/C demod driver em28xx: add [2013:025f] PCTV tripleStick (292e) si2168: add support for DVB-T2

[PATCH 07/10] si2157: add copyright and license

2014-04-15 Thread Antti Palosaari
Add copyright and license for each file. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/tuners/si2157.c | 16 drivers/media/tuners/si2157.h | 16 drivers/media/tuners/si2157_priv.h | 16 3 files changed, 48 insertions(+)

[PATCH 09/10] MAINTAINERS: add si2168 driver

2014-04-15 Thread Antti Palosaari
Silicon Labs Si2168 DVB-T/T2/C demod driver Signed-off-by: Antti Palosaari cr...@iki.fi --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 94c9cff..c44c914 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7813,6 +7813,16 @@ M:

[PATCH 01/10] si2157: Silicon Labs Si2157 silicon tuner driver

2014-04-15 Thread Antti Palosaari
Silicon Labs Si2157 silicon tuner driver. Currently it supports only DVB-T. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/tuners/Kconfig | 7 ++ drivers/media/tuners/Makefile | 1 + drivers/media/tuners/si2157.c | 244 +

[PATCH 10/10] MAINTAINERS: add si2157 driver

2014-04-15 Thread Antti Palosaari
Silicon Labs Si2157 silicon tuner driver. Signed-off-by: Antti Palosaari cr...@iki.fi --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index c44c914..9322a3a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7813,6 +7813,16 @@ M: Robin

[PATCH 02/10] si2168: Silicon Labs Si2168 DVB-T/T2/C demod driver

2014-04-15 Thread Antti Palosaari
Silicon Labs Si2168 DVB-T/T2/C demod driver. That driver version supports only DVB-T. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/dvb-frontends/Kconfig | 7 + drivers/media/dvb-frontends/Makefile | 1 + drivers/media/dvb-frontends/si2168.c | 708

[PATCH 06/10] si2168: add support for DVB-C (annex A version)

2014-04-15 Thread Antti Palosaari
Add support for DVB-C (annex A version). Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/dvb-frontends/si2168.c | 36 ++-- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/drivers/media/dvb-frontends/si2168.c

[PATCH 08/10] si2168: add copyright and license

2014-04-15 Thread Antti Palosaari
Add copyright and license for each file. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/dvb-frontends/si2168.c | 16 drivers/media/dvb-frontends/si2168.h | 16 drivers/media/dvb-frontends/si2168_priv.h | 16 3 files

[PATCH 04/10] si2168: add support for DVB-T2

2014-04-15 Thread Antti Palosaari
Add support for DVB-T2. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/dvb-frontends/si2168.c | 55 1 file changed, 43 insertions(+), 12 deletions(-) diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c

[PATCH 05/10] si2157: extend frequency range for DVB-C

2014-04-15 Thread Antti Palosaari
DVB-C uses lower frequencies than DVB-T. Extend frequency range down to 110 MHz in order to support DVB-C. 110 - 862 MHz range is defined by NorDig Unified 2.2 specification. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/tuners/si2157.c | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 03/10] em28xx: add [2013:025f] PCTV tripleStick (292e)

2014-04-15 Thread Antti Palosaari
Empia EM28178, Silicon Labs Si2168, Silicon Labs Si2157. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/usb/em28xx/Kconfig| 2 + drivers/media/usb/em28xx/em28xx-cards.c | 25 +++ drivers/media/usb/em28xx/em28xx-dvb.c | 73 +

Re: [PATCH] [media] s2255drv: fix memory leak s2255_probe()

2014-04-15 Thread Sakari Ailus
Hi Daeseok, On Tue, Apr 15, 2014 at 01:49:34PM +0900, Daeseok Youn wrote: smatch says: drivers/media/usb/s2255/s2255drv.c:2246 s2255_probe() warn: possible memory leak of 'dev' Signed-off-by: Daeseok Youn daeseok.y...@gmail.com --- drivers/media/usb/s2255/s2255drv.c |1 + 1 files

Re: [PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Rahul Sharma
Hi Tomasz, On 15 April 2014 14:57, Tomasz Stanislawski t.stanisl...@samsung.com wrote: Adds support for limitation of maximal pixel clock of HDMI signal. This feature is needed on boards that contains lines or bridges with frequency limitations. Signed-off-by: Tomasz Stanislawski

Re: [PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Lucas Stach
Am Dienstag, den 15.04.2014, 11:27 +0200 schrieb Tomasz Stanislawski: Adds support for limitation of maximal pixel clock of HDMI signal. This feature is needed on boards that contains lines or bridges with frequency limitations. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com

Re: [PATCH] cx23885: add support for Hauppauge ImpactVCB-e

2014-04-15 Thread it-support
Hi Guys, This is a very noobie question, but my 'patch' command does not return to the command prompt. I assume that my problem is one (or all four) of: 1) the patch doesn't start or end where I think it does (I assume the first line is diff --git

Re: [PATCH] cx23885: add support for Hauppauge ImpactVCB-e

2014-04-15 Thread Hans Verkuil
On 04/15/2014 12:41 PM, it-support wrote: Hi Guys, This is a very noobie question, but my 'patch' command does not return to the command prompt. I assume that my problem is one (or all four) of: 1) the patch doesn't start or end where I think it does (I assume the first line is

Re: [PATCH] [media] s2255drv: fix memory leak s2255_probe()

2014-04-15 Thread DaeSeok Youn
Hi, Sakari 2014-04-15 18:33 GMT+09:00 Sakari Ailus sakari.ai...@iki.fi: Hi Daeseok, On Tue, Apr 15, 2014 at 01:49:34PM +0900, Daeseok Youn wrote: smatch says: drivers/media/usb/s2255/s2255drv.c:2246 s2255_probe() warn: possible memory leak of 'dev' Signed-off-by: Daeseok Youn

[GIT PULL FOR v3.15] davinci fixes

2014-04-15 Thread Hans Verkuil
This pull request was posted earlier, but it contained a patch of mine that was wrong. Luckily it hasn't been merged yet, so this pull request replaces the old one. It is identical, except for being rebased and without my bad patch. Regards, Hans The following changes since commit

Re: [PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Tomasz Stanislawski
On 04/15/2014 11:42 AM, Rahul Sharma wrote: Hi Tomasz, On 15 April 2014 14:57, Tomasz Stanislawski t.stanisl...@samsung.com wrote: Adds support for limitation of maximal pixel clock of HDMI signal. This feature is needed on boards that contains lines or bridges with frequency limitations.

Re: [GIT PULL new driver for 3.15] media/usb/gspca: Add support for Scopium astro webcam (0547:7303)

2014-04-15 Thread Mauro Carvalho Chehab
Hi Hans, Em Wed, 02 Apr 2014 10:40:58 +0200 Hans de Goede hdego...@redhat.com escreveu: Hi Mauro, Please pull from my gspca git tree for a new gspca based webcam driver, since this is a new driver which does not touch anything else, I would like to see this go into 3.15 . Unfortunately,

Re: [PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Rahul Sharma
On 15 April 2014 18:41, Tomasz Stanislawski t.stanisl...@samsung.com wrote: On 04/15/2014 11:42 AM, Rahul Sharma wrote: Hi Tomasz, On 15 April 2014 14:57, Tomasz Stanislawski t.stanisl...@samsung.com wrote: Adds support for limitation of maximal pixel clock of HDMI signal. This feature is

Re: [PATCH] media: stk1160: Avoid stack-allocated buffer for control URBs

2014-04-15 Thread Alan Stern
On Mon, 14 Apr 2014, Ezequiel Garcia wrote: On Apr 14, Alan Stern wrote: On Mon, 14 Apr 2014, Ezequiel Garcia wrote: Currently stk1160_read_reg() uses a stack-allocated char to get the read control value. This is wrong because usb_control_msg() requires a kmalloc-ed buffer, and a

Re: [PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Tomasz Stanislawski
On 04/15/2014 03:42 PM, Rahul Sharma wrote: On 15 April 2014 18:41, Tomasz Stanislawski t.stanisl...@samsung.com wrote: On 04/15/2014 11:42 AM, Rahul Sharma wrote: Hi Tomasz, On 15 April 2014 14:57, Tomasz Stanislawski t.stanisl...@samsung.com wrote: Adds support for limitation of maximal

Re: AW: AW: v4l2_buffer with PBO mapped memory

2014-04-15 Thread Hans Verkuil
On 04/15/2014 08:04 AM, Thomas Scheuermann wrote: Hi Laurent, On 11.04.2014 07:56, Thomas Scheuermann wrote: Hi Laurent, On 07.04.2014 01:37, Laurent Pinchart wrote: Hi Thomas, On Friday 04 April 2014 20:01:33 Scheuermann, Mail wrote: Hi Laurent, I've done the following: echo 3

Re: [PATCH] uvc: update uvc_endpoint_max_bpi to handle USB_SPEED_WIRELESS devices

2014-04-15 Thread Laurent Pinchart
Hi Thomas, On Monday 14 April 2014 21:07:12 Thomas Pugliese wrote: On Mon, 27 Jan 2014, Laurent Pinchart wrote: On Monday 27 January 2014 09:54:58 Thomas Pugliese wrote: On Mon, 27 Jan 2014, Laurent Pinchart wrote: On Friday 24 January 2014 15:17:28 Thomas Pugliese wrote:

Re: Hauppauge ImpactVCB-e 01385

2014-04-15 Thread Steve Cookson - IT
Hi Hans, On 14/04/14 15:02, Hans Verkuil wrote: I'd appreciate it if you can test this with a proper video feed. Well, I've been installing the patch today. I finished the compilation script and the card is not detected. Here's what I did: It's been a bit hard-going because my ISP has

Re: Hauppauge ImpactVCB-e 01385

2014-04-15 Thread Hans Verkuil
On 04/15/2014 06:45 PM, Steve Cookson - IT wrote: Hi Hans, On 14/04/14 15:02, Hans Verkuil wrote: I'd appreciate it if you can test this with a proper video feed. Well, I've been installing the patch today. I finished the compilation script and the card is not detected. Here's what

[PATCH] exynos4-is: Fix compilation for !CONFIG_COMMON_CLK

2014-04-15 Thread Sylwester Nawrocki
CONFIG_COMMON_CLK is not enabled on S5PV210 platform, so include some clk API data structures conditionally to avoid compilation errors. These #ifdefs will be removed for next kernel release, when the S5PV210 platform moves to DT and the common clk API. Signed-off-by: Sylwester Nawrocki

Re: Hauppauge ImpactVCB-e 01385

2014-04-15 Thread Steve Cookson
On 15/04/14 18:13, Hans Verkuil wrote: Somewhat strange error message. Does 'dmesg' give you any useful info? I get this: image@image-H61M-DS2:~$ dmesg | grep -i cx23885 [ 13.237914] cx23885: disagrees about version of symbol altera_init [ 13.237917] cx23885: Unknown symbol altera_init

[PATCH 0/5] Exynos4 SoC camera subsystem driver cleanups

2014-04-15 Thread Sylwester Nawrocki
This patch series removes support for non-dt platforms from the Exynos4/S5P SoC camera interface drivers and removes (ab)use of simple-bus compatible string. Sylwester Nawrocki (5): ARM: S5PV210: Remove camera support from mach-goni.c exynos4-is: Fix compilation for !CONFIG_COMMON_CLK

[PATCH 1/5] ARM: S5PV210: Remove camera support from mach-goni.c

2014-04-15 Thread Sylwester Nawrocki
S5PV210 is going to get DT support, so we can remove the camera bits from the only board using camera on S5PV210. This allows to clean the exynos4-is driver by dropping code for non-dt platforms. This patch can be dropped if a patch removing the whole board file is applied first. Signed-off-by:

[PATCH 2/5] exynos4-is: Fix compilation for !CONFIG_COMMON_CLK

2014-04-15 Thread Sylwester Nawrocki
CONFIG_COMMON_CLK is not enabled on S5PV210 platform, so include some clk API data structures conditionally to avoid compilation errors. These #ifdefs will be removed for next kernel release, when the S5PV210 platform moves to DT and the common clk API. Signed-off-by: Sylwester Nawrocki

[PATCH 3/5] exynos4-is: Remove support for non-dt platforms

2014-04-15 Thread Sylwester Nawrocki
All platforms supported by this driver are going to get device tree support in this kernel release so remove code that would have been actually not used any more. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com ---

[PATCH 4/5] exynos4-is: Remove requirement for simple-bus compatible

2014-04-15 Thread Sylwester Nawrocki
This patch makes the driver instantiating its child devices itself, rather than relying on an OS to instantiate devices as children of simple-bus. This removes an incorrect usage of simple-bus compatible. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Kyungmin Park

[PATCH 5/5] ARM: dts: exynos4: Remove simple-bus compatible from camera subsystem nodes

2014-04-15 Thread Sylwester Nawrocki
The usage of simple-bus was incorrect and the drivers now will also work without it so remove it. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/boot/dts/exynos4.dtsi|2 +- arch/arm/boot/dts/exynos4x12.dtsi |2

[PATCH 1/4] libdvbv5: move table parsers to separate directory

2014-04-15 Thread André Roth
move the dvb table parsers from the descriptors/ directory to tables/ to have a nice and clear separation. Signed-off-by: André Roth neol...@gmail.com --- lib/libdvbv5/Makefile.am| 42 - lib/libdvbv5/{descriptors = tables}/atsc_eit.c | 0

[PATCH 3/4] libdvbv5: short API description

2014-04-15 Thread André Roth
Signed-off-by: André Roth neol...@gmail.com --- lib/include/libdvbv5/dvb-scan.h | 26 ++ 1 file changed, 26 insertions(+) diff --git a/lib/include/libdvbv5/dvb-scan.h b/lib/include/libdvbv5/dvb-scan.h index f0af9d7..8f0e553 100644 --- a/lib/include/libdvbv5/dvb-scan.h +++

[PATCH 4/4] libdvbv5: build dynamic libdvbv5 by default

2014-04-15 Thread André Roth
- renamed ./configure option --enable-libdvbv5 to --disable-libdvbv5 - thus libdvbv5 will be build shared by default - cleanups in configure.ac Signed-off-by: André Roth neol...@gmail.com --- configure.ac | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff

[PATCH 2/4] libdvbv5: cleanup parser API

2014-04-15 Thread André Roth
- fix initialization of dvb_table_initializers - check return value of dvb_desc_parse - allocate table inside the parser - remove unneeded table_length argument Signed-off-by: André Roth neol...@gmail.com --- lib/include/libdvbv5/atsc_eit.h| 2 +- lib/include/libdvbv5/cat.h | 2 +-

Re: Hauppauge ImpactVCB-e 01385

2014-04-15 Thread Steve Cookson
On 15/04/14 19:44, Steve Cookson wrote: [ 13.237914] cx23885: disagrees about version of symbol altera_init [ 13.237917] cx23885: Unknown symbol altera_init (err -22) Is it a regression issue? https://github.com/ljalves/linux_media/issues/2#issuecomment-23365778 I'm on 3.11.0-18. Regards

[PATCH] libdvbv5: improve CRC size handling

2014-04-15 Thread André Roth
- provide buffer without CRC to the table parsers - remove unneeded defines Signed-off-by: André Roth neol...@gmail.com --- lib/include/libdvbv5/descriptors.h | 3 +-- lib/libdvbv5/dvb-scan.c| 2 +- lib/libdvbv5/tables/atsc_eit.c | 2 +- lib/libdvbv5/tables/cat.c | 4

spende /Donation

2014-04-15 Thread isabelle
Hallo Wenn ich diese Nachricht zu senden wollte, ist dies nicht einfach Zufall. Dies ist, weil Ihre e-Mail vom elektronischen Roboter gesichert meine WX.7AR BW ausgewählt wurde. Zunächst möchte ich mich für dieses Eindringen in Ihr Leben zu entschuldigen, obwohl ich zugeben, dass es mir sehr

Re: [PATCH] uvc: update uvc_endpoint_max_bpi to handle USB_SPEED_WIRELESS devices

2014-04-15 Thread Thomas Pugliese
On Tue, 15 Apr 2014, Laurent Pinchart wrote: Hi Thomas, Could you please send me a proper revert patch with the above description in the commit message and CC Mauro Carvalho Chehab m.che...@samsung.com ? -- Regards, Laurent Pinchart Hi Laurent, I can submit a patch to revert

Help with SMS2270 @ linux-sunxi (A20 devices)

2014-04-15 Thread Roberto Alcantara
Guys, I’m trying enable Siano SMS2270 ISDB-T tuner in development board with Allwinner A20 SoC. I recompiled kernel with modules I can load them but something seems wrong. After insert USB Sms2270 dongle I only see: Jan 1 00:15:20 awsom kernel: [ 922.645502] usb 1-1.4: new high-speed USB

Re: [PATCHv2 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-15 Thread Rahul Sharma
On 15 April 2014 19:59, Tomasz Stanislawski t.stanisl...@samsung.com wrote: On 04/15/2014 03:42 PM, Rahul Sharma wrote: On 15 April 2014 18:41, Tomasz Stanislawski t.stanisl...@samsung.com wrote: On 04/15/2014 11:42 AM, Rahul Sharma wrote: Hi Tomasz, On 15 April 2014 14:57, Tomasz

cron job: media_tree daily build: ERRORS

2014-04-15 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: Wed Apr 16 04:00:12 CEST 2014 git branch: test git hash: 30ece903f5470cf80971a5f2dc6924dd62d5d96c gcc