Re: [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file

2013-08-19 Thread Hans Verkuil
On 08/18/2013 10:00 PM, Sylwester Nawrocki wrote: Include the v4l2-dv-timings.h header file which in the s5p-tv driver which was supposed to be updated in commit 2576415846bcbad3c0a6885fc44f95083710 [media] v4l2: move dv-timings related code to v4l2-dv-timings.c This fixes following build

Hauppauge WinTV MiniStick firmware not loading

2013-08-19 Thread Christoph Pegel
Hi, I have a Hauppauge WinTV MiniStick that wouldn't work anymore with recent linux kernels. Right now I'm running kernel version 3.10.6 in Arch Linux. Plugging the device results in usb 1-1.5.1: new high-speed USB device number 9 using ehci-pci smscore_load_firmware_family2: line: 986: sending

[RFC PATCH] drm/nouveau: rework to new fence interface

2013-08-19 Thread Maarten Lankhorst
nouveau was a bit tricky, it has no support for interrupts on nv84, so I added an extra call to nouveau_fence_update in nouveau_fence_emit to increase the chance slightly that deferred work gets triggered. This patch depends on the vblank locking fix for the definitions of

[RFC PATCH] drm/radeon: rework to new fence interface

2013-08-19 Thread Maarten Lankhorst
Signed-off-by: Maarten Lankhorst maarten.lankho...@canonical.com --- diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 9f19259..971284e 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -64,6 +64,7 @@ #include linux/wait.h

[PATCH v2 1/5] [media] exynos-mscl: Add new driver for M-Scaler

2013-08-19 Thread Shaik Ameer Basha
This patch adds support for M-Scaler (M2M Scaler) device which is a new device for scaling, blending, color fill and color space conversion on EXYNOS5 SoCs. This device supports the followings as key feature. input image format - YCbCr420 2P(UV/VU), 3P - YCbCr422

[PATCH v2 2/5] [media] exynos-mscl: Add core functionality for the M-Scaler driver

2013-08-19 Thread Shaik Ameer Basha
This patch adds the core functionality for the M-Scaler driver. Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com --- drivers/media/platform/exynos-mscl/mscl-core.c | 1312 drivers/media/platform/exynos-mscl/mscl-core.h | 549 ++ 2 files changed, 1861

[PATCH v2 4/5] [media] exynos-mscl: Add DT bindings for M-Scaler driver

2013-08-19 Thread Shaik Ameer Basha
This patch adds the DT binding documentation for the exynos5 based M-Scaler device driver. Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com --- .../devicetree/bindings/media/exynos5-mscl.txt | 34 1 file changed, 34 insertions(+) create mode 100644

[PATCH v2 0/5] Exynos5 M-Scaler Driver

2013-08-19 Thread Shaik Ameer Basha
This patch adds support for M-Scaler (M2M Scaler) device which is a new device for scaling, blending, color fill and color space conversion on EXYNOS5 SoCs. This device supports the following as key features. input image format - YCbCr420 2P(UV/VU), 3P - YCbCr422

[PATCH v2 5/5] [media] exynos-mscl: Add Makefile for M-Scaler driver

2013-08-19 Thread Shaik Ameer Basha
This patch adds the Makefile for the M-Scaler (M2M scaler). Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com --- drivers/media/platform/Kconfig |8 drivers/media/platform/Makefile |1 + drivers/media/platform/exynos-mscl/Makefile |3 +++ 3

[PATCH v2 3/5] [media] exynos-mscl: Add m2m functionality for the M-Scaler driver

2013-08-19 Thread Shaik Ameer Basha
This patch adds the memory to memory (m2m) interface functionality for the M-Scaler driver. Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com --- drivers/media/platform/exynos-mscl/mscl-m2m.c | 763 + 1 file changed, 763 insertions(+) create mode 100644

Re: [v2] mt9v032: Use the common clock framework

2013-08-19 Thread Laurent Pinchart
Hi Peter, On Tuesday 13 August 2013 04:31:30 Peter A. Bigot wrote: FWIW: I found it necessary to use this along with http://git.linuxtv.org/pinchartl/media.git/shortlog/refs/heads/board/overo/ mt9v032 to get the Caspa to work on Gumstix under Linux 3.10. That's expected :-) Work is still

RE: [PATCH v2 0/5] Exynos5 M-Scaler Driver

2013-08-19 Thread Inki Dae
-Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Shaik Ameer Basha Sent: Monday, August 19, 2013 7:59 PM To: linux-media@vger.kernel.org; linux-samsung-...@vger.kernel.org Cc: s.nawro...@samsung.com;

Re: [RFC PATCH] drm/radeon: rework to new fence interface

2013-08-19 Thread Christian König
Am 19.08.2013 12:17, schrieb Maarten Lankhorst: [SNIP] @@ -190,25 +225,24 @@ void radeon_fence_process(struct radeon_device *rdev, int ring) } } while (atomic64_xchg(rdev-fence_drv[ring].last_seq, seq) seq); - if (wake) { + if (wake)

RE: [PATCH v2 4/5] [media] exynos-mscl: Add DT bindings for M-Scaler driver

2013-08-19 Thread Inki Dae
-Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Shaik Ameer Basha Sent: Monday, August 19, 2013 7:59 PM To: linux-media@vger.kernel.org; linux-samsung-...@vger.kernel.org Cc: s.nawro...@samsung.com;

Re: [PATCH v2 3/5] [media] exynos-mscl: Add m2m functionality for the M-Scaler driver

2013-08-19 Thread Hans Verkuil
On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote: This patch adds the memory to memory (m2m) interface functionality for the M-Scaler driver. Just one small comment below... Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com --- drivers/media/platform/exynos-mscl/mscl-m2m.c | 763

Re: [PATCH v2 2/5] [media] exynos-mscl: Add core functionality for the M-Scaler driver

2013-08-19 Thread Hans Verkuil
On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote: This patch adds the core functionality for the M-Scaler driver. Some more comments below... Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com --- drivers/media/platform/exynos-mscl/mscl-core.c | 1312

Re: [PATCH v2 3/5] [media] exynos-mscl: Add m2m functionality for the M-Scaler driver

2013-08-19 Thread Hans Verkuil
On 08/19/2013 02:58 PM, Hans Verkuil wrote: On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote: This patch adds the memory to memory (m2m) interface functionality for the M-Scaler driver. Just one small comment below... Signed-off-by: Shaik Ameer Basha shaik.am...@samsung.com ---

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Pawel Moll
On Mon, 2013-08-19 at 14:18 +0100, Andrzej Hajda wrote: +++ b/Documentation/devicetree/bindings/media/samsung-s5k5baf.txt @@ -0,0 +1,51 @@ +Samsung S5K5BAF UXGA 1/5 2M CMOS Image Sensor with embedded SoC ISP +- + +Required

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Mark Rutland
On Mon, Aug 19, 2013 at 02:18:27PM +0100, Andrzej Hajda wrote: Driver for Samsung S5K5BAF UXGA 1/5 2M CMOS Image Sensor with embedded SoC ISP. The driver exposes the sensor as two V4L2 subdevices: - S5K5BAF-CIS - pure CMOS Image Sensor, fixed 1600x1200 format, no controls. - S5K5BAF-ISP -

avermedia A306 / PCIe-minicard (laptop)

2013-08-19 Thread remi
Hello   I have this card since months,   http://www.avermedia.com/avertv/Product/ProductDetail.aspx?Id=376SI=true   I have finally retested it with the cx23885 driver : card=39       If I could do anything to identify : [    2.414734] cx23885[0]: i2c scan: found device @ 0x66  [???]   Or hookup

[RFCv2 PATCH 00/20] dv-timings/adv7604/ad9389b fixes and new adv7511/adv7842 drivers

2013-08-19 Thread Hans Verkuil
This second patch series combines these two earlier patch series: http://www.mail-archive.com/linux-media@vger.kernel.org/msg65582.html http://www.mail-archive.com/linux-media@vger.kernel.org/msg65510.html While rebasing the new drivers on the latest code I realized that it made more sense to

[RFCv2 PATCH 02/20] adv7604: debounce format change notifications

2013-08-19 Thread Hans Verkuil
From: Mats Randgaard matra...@cisco.com The bridge driver is only notified when the input status has changed since the previous interrupt. Signed-off-by: Mats Randgaard matra...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/adv7604.c | 20

[RFCv2 PATCH 10/20] v4l2-dv-timings: add v4l2_print_dv_timings helper

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Drivers often have to log the contents of a dv_timings struct. Adding this helper will make it easier for drivers to do so. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/v4l2-dv-timings.c | 49

[RFCv2 PATCH 07/20] ad9389b: trigger edid re-read by power-cycle chip

2013-08-19 Thread Hans Verkuil
From: Martin Bugge marbu...@cisco.com Signed-off-by: Martin Bugge marbu...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/ad9389b.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/media/i2c/ad9389b.c

[RFCv2 PATCH 03/20] adv7604: pixel-clock depends on deep-color-mode

2013-08-19 Thread Hans Verkuil
From: Martin Bugge marbu...@cisco.com The frequency calculation has to take deep-color mode into account. While we're at it, also log the deep-color mode in log_status. Signed-off-by: Martin Bugge marbu...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com ---

[RFCv2 PATCH 05/20] adv7604: print flags and standards in timing information

2013-08-19 Thread Hans Verkuil
From: Mats Randgaard matra...@cisco.com Signed-off-by: Mats Randgaard matra...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/adv7604.c | 41 - 1 file changed, 28 insertions(+), 13 deletions(-) diff --git

[RFCv2 PATCH 16/20] v4l2-dv-timings: rename v4l2_dv_valid_timings to v4l2_valid_dv_timings

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com All other functions follow the v4l2_foo_dv_timings pattern, do the same for this function. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/ad9389b.c | 2 +- drivers/media/i2c/ths8200.c | 2 +-

[RFCv2 PATCH 20/20] MAINTAINERS: add entries for adv7511 and adv7842.

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- MAINTAINERS | 12 1 file changed, 12 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index bf61e04..e50819b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -580,12 +580,24 @@ L:

[RFCv2 PATCH 19/20] adv7511: add new video encoder.

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/Kconfig | 11 + drivers/media/i2c/Makefile |1 + drivers/media/i2c/adv7511.c | 1192 +++ include/media/adv7511.h | 49 ++ 4

[RFCv2 PATCH 17/20] v4l2-dv-timings: add callback to handle exceptions

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com In most cases the v4l2_bt_timings_cap struct has all the information necessary to determine valid timings, but occasionally there are exceptions. Add a callback function to be able to test for those exceptions. Signed-off-by: Hans Verkuil

[RFCv2 PATCH 15/20] v4l2-dv-timings: export the timings list.

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Some drivers need to be able to access the full list of timings. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/v4l2-dv-timings.c | 18 ++ include/media/v4l2-dv-timings.h | 4 2 files

[RFCv2 PATCH 13/20] adv7604/ad9389b/ths8200: decrease min_pixelclock to 25MHz

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The CEA-861 standard allows for the 640x480 format at 25.175 MHz. Ensure that that's allowed according to the struct v4l2_bt_timings_cap. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/ad9389b.c | 2 +-

[RFCv2 PATCH 01/20] v4l2-dv-timings: fix CVT calculation

2013-08-19 Thread Hans Verkuil
From: Martin Bugge marbu...@cisco.com This patch fixes two errors that caused incorrect format detections: The first bug is in the calculation of the vertical backporch: the combined period of vsync and backporch must *exceed* a certain minimum value, and not be equal to it. The second bug is a

[RFCv2 PATCH 12/20] v4l2-dv-timings: rename v4l_match_dv_timings to v4l2_match_dv_timings

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com It's the only function in v4l2-dv-timings.c with the v4l prefix instead of v4l2. Make it consistent with the other functions. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/adv7604.c | 4 ++--

[RFCv2 PATCH 09/20] ad9389b: change initial register configuration in ad9389b_setup()

2013-08-19 Thread Hans Verkuil
From: Mats Randgaard matra...@cisco.com - register 0x17: CSC scaling factor was set to +/- 2.0. This register is set by ad9389b_csc_conversion_mode() to the right value. - register 0x3b: bits for pixel repetition and CSC was set to zero, but that is the default value. Signed-off-by: Mats

[RFCv2 PATCH 11/20] ad9389b/adv7604/ths8200: use new v4l2_print_dv_timings helper.

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com These three drivers all have code to log the dv_timings contents. Replace that code with the new helper function. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/ad9389b.c | 17 +++-- drivers/media/i2c/adv7604.c | 61

[RFCv2 PATCH 06/20] ad9389b: no monitor if EDID is wrong

2013-08-19 Thread Hans Verkuil
From: Mats Randgaard matra...@cisco.com state-have_monitor is set to false if the EDID that is read from the monitor has too many segments or wrong CRC. Signed-off-by: Mats Randgaard matra...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/ad9389b.c | 3 +++ 1

[RFCv2 PATCH 14/20] v4l2-dv-timings: fill in type field

2013-08-19 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The detect_cvt/gtf functions didn't fill in the type field. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/v4l2-dv-timings.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/media/v4l2-core/v4l2-dv-timings.c

[RFCv2 PATCH 04/20] adv7604: improve log_status for HDMI/DVI-D signals

2013-08-19 Thread Hans Verkuil
From: Mats Randgaard matra...@cisco.com Don't log if there is no signal. If there is a signal, then also log HDCP and audio status. Signed-off-by: Mats Randgaard matra...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/adv7604.c | 44

Re: OMAP3 ISP DQBUF hangs

2013-08-19 Thread Tom
Su Jiaquan jiaquan.lnx at gmail.com writes: Hello, Hi Tom, On Thu, Aug 15, 2013 at 10:15 PM, Tom Bassai_Dai at gmx.net wrote: Hello, I'm working with an OMAP3 DM3730 processor module with a ov3640 camera module attached on parallel interface. I'm using Linux 3.5 and an

Re: [RFC PATCH 1/3] adv7842: add new video decoder driver.

2013-08-19 Thread Hans Verkuil
On 08/16/2013 12:10 PM, Scott Jiang wrote: + +static int adv7842_g_mbus_fmt(struct v4l2_subdev *sd, + struct v4l2_mbus_framefmt *fmt) +{ + struct adv7842_state *state = to_state(sd); + + fmt-width = state-timings.bt.width; + fmt-height =

Re: [PATCH] usb: USB host support should depend on HAS_DMA

2013-08-19 Thread Alan Stern
On Sun, 18 Aug 2013, Geert Uytterhoeven wrote: On Thu, Jul 11, 2013 at 1:12 AM, Arnd Bergmann a...@arndb.de wrote: On Wednesday 10 July 2013, Alan Stern wrote: This isn't right. There are USB host controllers that use PIO, not DMA. The HAS_DMA dependency should go with the controller

Re: avermedia A306 / PCIe-minicard (laptop)

2013-08-19 Thread Antti Palosaari
On 08/19/2013 05:18 PM, remi wrote: Hello I have this card since months, http://www.avermedia.com/avertv/Product/ProductDetail.aspx?Id=376SI=true I have finally retested it with the cx23885 driver : card=39 If I could do anything to identify : [2.414734] cx23885[0]: i2c scan: found

Re: OMAP3 ISP DQBUF hangs

2013-08-19 Thread Enrico
On Mon, Aug 19, 2013 at 4:53 PM, Tom bassai_...@gmx.net wrote: you are right. it seems that the list of the ccdc has no buffer left, because the printk(TOM ccdc_isr_buffer ERROR 1 ##\n); is shown in my log. But I don't understand what I need to do to solve the problem. What I do is:

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Sylwester Nawrocki
On 08/19/2013 03:25 PM, Pawel Moll wrote: On Mon, 2013-08-19 at 14:18 +0100, Andrzej Hajda wrote: +++ b/Documentation/devicetree/bindings/media/samsung-s5k5baf.txt @@ -0,0 +1,51 @@ +Samsung S5K5BAF UXGA 1/5 2M CMOS Image Sensor with embedded SoC ISP

[PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Wolfram Sang
I2C of helpers used to live in of_i2c.c but experience (from SPI) shows that it is much cleaner to have this in the core. This also removes a circular dependency between the helpers and the core, and so we can finally register child nodes in the core instead of doing this manually in each driver.

RE: DVR card SAA7134/SAA7135HL unknown

2013-08-19 Thread Charlie X. Liu
As long as you found a card number that works, it shouldn't matter. BTW, do you have its card info, like manufacturer, Model number, picture, ..., etc.? What's your app? If you only use it for video surveillance and don't need stereo audio, you may use a low cost capture card, like Sensoray Model

Re: [PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Sylwester Nawrocki
On 08/19/2013 07:59 PM, Wolfram Sang wrote: I2C of helpers used to live in of_i2c.c but experience (from SPI) shows that it is much cleaner to have this in the core. This also removes a circular dependency between the helpers and the core, and so we can finally register child nodes in the core

Alerta final‏

2013-08-19 Thread CORREO
Su contraseña caducará en 3 días formulario llenar y enviar de inmediato para validar su dirección de e-mail. Nombre de Usuario: . Contraseña anterior: . Nueva Contraseña: gracias administrador del sistema -- To unsubscribe from this list: send the

Re: [PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Wolfram Sang
However this patch fails to apply onto either v3.11-rc4 or v3.11-rc6: Argh, did not drop the MPC patch before rebasing :( So either pick the patch i2c: powermac: fix return path on error before, pull the branch [1], or force me to resend ;) Thanks! [1]

Re: [RFC PATCH] drm/radeon: rework to new fence interface

2013-08-19 Thread Maarten Lankhorst
Op 19-08-13 14:35, Christian König schreef: Am 19.08.2013 12:17, schrieb Maarten Lankhorst: [SNIP] @@ -190,25 +225,24 @@ void radeon_fence_process(struct radeon_device *rdev, int ring) } } while (atomic64_xchg(rdev-fence_drv[ring].last_seq, seq) seq); -if (wake) { +

Re: [PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Thierry Reding
On Mon, Aug 19, 2013 at 07:59:40PM +0200, Wolfram Sang wrote: [...] diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c [...] +#if IS_ENABLED(CONFIG_OF) +static void of_i2c_register_devices(struct i2c_adapter *adap) +{ [...] +} [...] +#endif /* CONFIG_OF */ Isn't this missing the

Re: Hauppauge HVR-900 HD and HVR 930C-HD with si2165

2013-08-19 Thread Hans Petter Selasky
On 08/18/13 21:02, Steven Toth wrote: FYI: The Si2168 driver is available from dvbsky-linux-3.9-hps-v2.diff inside. Maybe the Si2165 is similar? Excellent. Hi Guys, I was contacted by someone claiming to be from RSD ??, named Danny Griegs, off-list, claiming I have the source code for

Re: Hauppauge HVR-900 HD and HVR 930C-HD with si2165

2013-08-19 Thread Antti Palosaari
On 08/19/2013 10:47 PM, Hans Petter Selasky wrote: On 08/18/13 21:02, Steven Toth wrote: FYI: The Si2168 driver is available from dvbsky-linux-3.9-hps-v2.diff inside. Maybe the Si2165 is similar? Excellent. Hi Guys, I was contacted by someone claiming to be from RSD ??, named Danny

Re: [PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Felipe Balbi
On Mon, Aug 19, 2013 at 07:59:40PM +0200, Wolfram Sang wrote: I2C of helpers used to live in of_i2c.c but experience (from SPI) shows that it is much cleaner to have this in the core. This also removes a circular dependency between the helpers and the core, and so we can finally register child

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Sylwester Nawrocki
On 08/19/2013 03:39 PM, Mark Rutland wrote: On Mon, Aug 19, 2013 at 02:18:27PM +0100, Andrzej Hajda wrote: Driver for Samsung S5K5BAF UXGA 1/5 2M CMOS Image Sensor with embedded SoC ISP. The driver exposes the sensor as two V4L2 subdevices: - S5K5BAF-CIS - pure CMOS Image Sensor, fixed

Re: [PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Wolfram Sang
On Mon, Aug 19, 2013 at 09:46:04PM +0200, Thierry Reding wrote: On Mon, Aug 19, 2013 at 07:59:40PM +0200, Wolfram Sang wrote: [...] diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c [...] +#if IS_ENABLED(CONFIG_OF) +static void of_i2c_register_devices(struct i2c_adapter *adap)

Re: [PATCH RESEND] i2c: move of helpers into the core

2013-08-19 Thread Rob Herring
On 08/19/2013 12:59 PM, Wolfram Sang wrote: I2C of helpers used to live in of_i2c.c but experience (from SPI) shows that it is much cleaner to have this in the core. This also removes a circular dependency between the helpers and the core, and so we can finally register child nodes in the core

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Stephen Warren
On 08/19/2013 11:25 AM, Sylwester Nawrocki wrote: On 08/19/2013 03:25 PM, Pawel Moll wrote: On Mon, 2013-08-19 at 14:18 +0100, Andrzej Hajda wrote: +++ b/Documentation/devicetree/bindings/media/samsung-s5k5baf.txt @@ -0,0 +1,51 @@ +Samsung S5K5BAF UXGA 1/5 2M CMOS Image Sensor with embedded

Re: Hauppauge HVR-900 HD and HVR 930C-HD with si2165

2013-08-19 Thread Konstantin Dimitrov
hi Hans, On Mon, Aug 19, 2013 at 10:47 PM, Hans Petter Selasky h...@bitfrost.no wrote: On 08/18/13 21:02, Steven Toth wrote: FYI: The Si2168 driver is available from dvbsky-linux-3.9-hps-v2.diff inside. Maybe the Si2165 is similar? Excellent. Hi Guys, I was contacted by someone

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Tomasz Figa
On Monday 19 of August 2013 16:30:45 Stephen Warren wrote: On 08/19/2013 11:25 AM, Sylwester Nawrocki wrote: On 08/19/2013 03:25 PM, Pawel Moll wrote: On Mon, 2013-08-19 at 14:18 +0100, Andrzej Hajda wrote: +++ b/Documentation/devicetree/bindings/media/samsung-s5k5baf.txt @@ -0,0 +1,51 @@

Re: [PATCH RFC v5] s5k5baf: add camera sensor driver

2013-08-19 Thread Stephen Warren
On 08/19/2013 04:53 PM, Tomasz Figa wrote: On Monday 19 of August 2013 16:30:45 Stephen Warren wrote: On 08/19/2013 11:25 AM, Sylwester Nawrocki wrote: On 08/19/2013 03:25 PM, Pawel Moll wrote: On Mon, 2013-08-19 at 14:18 +0100, Andrzej Hajda wrote: +++

Re: OMAP3 ISP DQBUF hangs

2013-08-19 Thread Su Jiaquan
Hi Tom you are right. it seems that the list of the ccdc has no buffer left, because the printk(TOM ccdc_isr_buffer ERROR 1 ##\n); is shown in my log. But I don't understand what I need to do to solve the problem. What I do is: - configure the pipeline - open the video device - do

cron job: media_tree daily build: WARNINGS

2013-08-19 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 Aug 20 04:00:23 CEST 2013 git branch: test git hash: bfd22c490bc74f9603ea90c37823036660a313e2 gcc

Re: [PATCH v2 2/5] [media] exynos-mscl: Add core functionality for the M-Scaler driver

2013-08-19 Thread Shaik Ameer Basha
+ linux-media, linux-samsung-soc Hi Hans, Thanks for the review. Will address all your comments in v3. I have only one doubt regarding try_ctrl... (addressed inline) On Mon, Aug 19, 2013 at 6:36 PM, Hans Verkuil hverk...@xs4all.nl wrote: On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote:

Re: [PATCH v2 0/5] Exynos5 M-Scaler Driver

2013-08-19 Thread Shaik Ameer Basha
Hi Inki Dae, Thanks for the review. On Mon, Aug 19, 2013 at 5:56 PM, Inki Dae inki@samsung.com wrote: -Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Shaik Ameer Basha Sent: Monday, August 19, 2013 7:59 PM To: