[PATCH 1/4] [media] sh_veu.c: Convert to devm_ioremap_resource()

2013-03-04 Thread Sachin Kamat
Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/platform/sh_veu.c |7 --- 1 files

[PATCH 2/4] [media] soc_camera/pxa_camera: Convert to devm_ioremap_resource()

2013-03-04 Thread Sachin Kamat
Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- drivers/media/platform/soc_camera/pxa_camera.c |8 +--- 1 files changed, 5 insertions(+), 3

[PATCH 3/4] [media] soc_camera/sh_mobile_ceu_camera: Convert to devm_ioremap_resource()

2013-03-04 Thread Sachin Kamat
Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages; so all explicit error messages can be removed from the failure code paths. Signed-off-by: Sachin Kamat

[PATCH 4/4] [media] soc_camera/sh_mobile_csi2: Convert to devm_ioremap_resource()

2013-03-04 Thread Sachin Kamat
Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages; so all explicit error messages can be removed from the failure code paths. Signed-off-by: Sachin Kamat

[REVIEW PATCH 00/11] davinci/blackfin DV_PRESET/current_norm removal

2013-03-04 Thread Hans Verkuil
Hi all, This patch series is for the most part identical to the RFC patch series posted earlier: http://www.mail-archive.com/linux-media@vger.kernel.org/msg58762.html The main changes are: - dropped the Samsung-related patches, those will go through a separate patch series. - added patches

[REVIEW PATCH 02/11] tvp7002: use dv_timings structs instead of presets.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com In the functions tvp7002_mbus_fmt(), tvp7002_log_status and tvp7002_probe() we should use the dv_timings data structures instead of dv_preset data structures and functions. This is the second step towards removing the deprecated preset support of this

[REVIEW PATCH 01/11] tvp7002: replace 'preset' by 'timings' in various structs/variables.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This is the first step towards removing the deprecated preset support of this driver. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Acked-by: Lad, Prabhakar prabhakar@ti.com --- drivers/media/i2c/tvp7002.c | 90

[REVIEW PATCH 10/11] davinci/dm644x_ccdc: fix compiler warning

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/platform/davinci/dm644x_ccdc.c: In function ‘validate_ccdc_param’: drivers/media/platform/davinci/dm644x_ccdc.c:233:32: warning: comparison between ‘enum ccdc_gama_width’ and ‘enum ccdc_data_size’ [-Wenum-compare] Signed-off-by: Hans

[REVIEW PATCH 04/11] davinci_vpfe: fix copy-paste errors in several comments.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This removes some incorrect dv_preset references left over from copy-and-paste errors. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Acked-by: Lad, Prabhakar prabhakar@ti.com --- drivers/staging/media/davinci_vpfe/vpfe_video.c | 12

[REVIEW PATCH 03/11] tvp7002: remove dv_preset support.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Finally remove the dv_preset support from this driver. Note that dv_preset support was already removed from any bridge drivers that use this i2c driver, so the dv_preset ops were no longer called and can be removed safely. Signed-off-by: Hans Verkuil

[REVIEW PATCH 06/11] davinci: replace V4L2_OUT_CAP_CUSTOM_TIMINGS by V4L2_OUT_CAP_DV_TIMINGS

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The use of V4L2_OUT_CAP_CUSTOM_TIMINGS is deprecated, use DV_TIMINGS instead. Note that V4L2_OUT_CAP_CUSTOM_TIMINGS is just a #define for V4L2_OUT_CAP_DV_TIMINGS. At some point in the future these CUSTOM_TIMINGS defines might be removed. Signed-off-by:

[REVIEW PATCH 11/11] blackfin: replace V4L2_IN/OUT_CAP_CUSTOM_TIMINGS by DV_TIMINGS

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The use of V4L2_IN/OUT_CAP_CUSTOM_TIMINGS is obsolete, use DV_TIMINGS instead. Note that V4L2_IN/OUT_CAP_CUSTOM_TIMINGS is just a #define for V4L2_IN/OUT_CAP_DV_TIMINGS. At some point in the future these CUSTOM_TIMINGS defines might be removed.

[REVIEW PATCH 05/11] davinci: remove VPBE_ENC_DV_PRESET and rename VPBE_ENC_CUSTOM_TIMINGS

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Remove VPBE_ENC_DV_PRESET (the DV_PRESET API is no longer supported) and VPBE_ENC_CUSTOM_TIMINGS is renamed to VPBE_ENC_DV_TIMINGS since the old CUSTOM_TIMINGS name is deprecated in favor of DV_TIMINGS. Signed-off-by: Hans Verkuil hans.verk...@cisco.com

[REVIEW PATCH 08/11] davinci/vpbe_display: remove deprecated current_norm.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Since vpbe_display already provides a g_std op setting current_norm didn't do anything. Remove that code. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/davinci/vpbe_display.c | 10 +- 1 file changed, 1

[REVIEW PATCH 07/11] davinci/vpfe_capture: convert to the control framework.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/davinci/vpfe_capture.c | 47 - 1 file changed, 7 insertions(+), 40 deletions(-) diff --git a/drivers/media/platform/davinci/vpfe_capture.c

[REVIEW PATCH 09/11] davinci/vpfe_capture: remove current_norm

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Since vpfe_capture already provided a g_std op setting current_norm does not actually do anything. Remove it. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/davinci/vpfe_capture.c |1 - 1 file changed, 1 deletion(-)

Re: [PATCH 1/4] [media] sh_veu.c: Convert to devm_ioremap_resource()

2013-03-04 Thread Thierry Reding
On Mon, Mar 04, 2013 at 01:45:18PM +0530, Sachin Kamat wrote: Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Cc: Guennadi Liakhovetski

Re: [PATCH 2/4] [media] soc_camera/pxa_camera: Convert to devm_ioremap_resource()

2013-03-04 Thread Thierry Reding
On Mon, Mar 04, 2013 at 01:45:19PM +0530, Sachin Kamat wrote: Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org ---

Re: [PATCH 3/4] [media] soc_camera/sh_mobile_ceu_camera: Convert to devm_ioremap_resource()

2013-03-04 Thread Thierry Reding
On Mon, Mar 04, 2013 at 01:45:20PM +0530, Sachin Kamat wrote: Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages; so all explicit error messages can be

Re: [PATCH 4/4] [media] soc_camera/sh_mobile_csi2: Convert to devm_ioremap_resource()

2013-03-04 Thread Thierry Reding
On Mon, Mar 04, 2013 at 01:45:21PM +0530, Sachin Kamat wrote: Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages; so all explicit error messages can be

Re: [REVIEW PATCH 09/11] davinci/vpfe_capture: remove current_norm

2013-03-04 Thread Prabhakar Lad
Hi Hans, Thanks for the patch! On Mon, Mar 4, 2013 at 2:35 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com Since vpfe_capture already provided a g_std op setting current_norm does not actually do anything. Remove it. Signed-off-by: Hans Verkuil

RE: MFC decode failed in S5PV210 in kernel 3.8

2013-03-04 Thread Kamil Debski
Hi, From: Lonsn [mailto:lonsn2...@gmail.com] Sent: Sunday, March 03, 2013 4:10 AM Which firmware should be used for S5PV210 for kernel 3.8? Here: https://git.kernel.org/cgit/linux/kernel/git/firmware/linux- firmware.git/commit/?id=fb5cda9c70277f633ca0c1e81b6fa7b13007bbf6 It only says for

RE: MFC decode failed in S5PV210 in kernel 3.8

2013-03-04 Thread Kamil Debski
Hi Lonsn, From: Lonsn [mailto:lonsn2...@gmail.com] Sent: Saturday, March 02, 2013 5:00 AM Hi, I tested the MFC decode example v4l2_decode from http://git.infradead.org/users/kmpark/public-apps and meet some problems as following: # ./v4l2_decode -f /dev/video5 -m /dev/video9 -d /dev/fb0

Re: [REVIEW PATCH 07/11] davinci/vpfe_capture: convert to the control framework.

2013-03-04 Thread Prabhakar Lad
Hi Hans, On Mon, Mar 4, 2013 at 2:35 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com Acked-by: Lad, Prabhakar prabhakar@ti.com Regards, --Prabhakar Lad ---

Re: [REVIEW PATCH 08/11] davinci/vpbe_display: remove deprecated current_norm.

2013-03-04 Thread Prabhakar Lad
Hi Hans, Thanks for the patch! On Mon, Mar 4, 2013 at 2:35 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com Since vpbe_display already provides a g_std op setting current_norm didn't do anything. Remove that code. Signed-off-by: Hans Verkuil

Re: [PATCH 1/4] [media] sh_veu.c: Convert to devm_ioremap_resource()

2013-03-04 Thread Guennadi Liakhovetski
Hi On Mon, 4 Mar 2013, Sachin Kamat wrote: Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Thanks for

Re: [REVIEW PATCH 10/11] davinci/dm644x_ccdc: fix compiler warning

2013-03-04 Thread Prabhakar Lad
Hi Hans, On Mon, Mar 4, 2013 at 2:35 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com drivers/media/platform/davinci/dm644x_ccdc.c: In function ‘validate_ccdc_param’: drivers/media/platform/davinci/dm644x_ccdc.c:233:32: warning: comparison between ‘enum

RE: MFC decode failed in S5PV210 in kernel 3.8

2013-03-04 Thread Kamil Debski
Hi, This problem is known to us and Marek is planning a fix. However, the problem proved to be quite difficult, so please be patient. Best wishes, -- Kamil Debski Linux Platform Group Samsung Poland RD Center -Original Message- From: Lonsn [mailto:lonsn2...@gmail.com] Sent:

Re: [REVIEW PATCH 10/11] davinci/dm644x_ccdc: fix compiler warning

2013-03-04 Thread Hans Verkuil
On Mon March 4 2013 10:29:26 Prabhakar Lad wrote: Hi Hans, On Mon, Mar 4, 2013 at 2:35 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com drivers/media/platform/davinci/dm644x_ccdc.c: In function ‘validate_ccdc_param’:

Re: [REVIEW PATCH 10/11] davinci/dm644x_ccdc: fix compiler warning

2013-03-04 Thread Prabhakar Lad
Hi Hans, On Mon, Mar 4, 2013 at 3:06 PM, Hans Verkuil hverk...@xs4all.nl wrote: On Mon March 4 2013 10:29:26 Prabhakar Lad wrote: Hi Hans, On Mon, Mar 4, 2013 at 2:35 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com

[REVIEW PATCH 0/2] davinci: fix compiler warning

2013-03-04 Thread Hans Verkuil
Hi all, This is a second try at fixing the dm644x_ccdc compiler warning. In addition it also fixes more 'gama' misspellings. Prabhakar, can you look at this? I think this is a good solution for this compiler warning. Regards, Hans -- To unsubscribe from this list: send the line

[REVIEW PATCH 2/2] davinci: more gama - gamma typo fixes.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/davinci/dm355_ccdc.c | 10 +- drivers/media/platform/davinci/dm355_ccdc_regs.h |2 +- drivers/media/platform/davinci/isif.c|2 +-

[REVIEW PATCH 1/2] davinci/dm644x_ccdc: fix compiler warning

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/platform/davinci/dm644x_ccdc.c: In function ‘validate_ccdc_param’: drivers/media/platform/davinci/dm644x_ccdc.c:233:32: warning: comparison between ‘enum ccdc_gama_width’ and ‘enum ccdc_data_size’ [-Wenum-compare] It took a bit of work,

Re: [PATCH 03/11] [media] mb86a20s: provide CNR stats before FE_HAS_SYNC

2013-03-04 Thread Mauro Carvalho Chehab
Em Sun, 3 Mar 2013 12:58:43 -0300 Mauro Carvalho Chehab mche...@redhat.com escreveu: State 9 means TS started to be output, and it should be associated with FE_HAS_SYNC. The mb86a20scan get CNR statistics at state 7, when frame sync is obtained. As CNR may help to adjust the antenna,

Re: MFC decode failed in S5PV210 in kernel 3.8

2013-03-04 Thread Lonsn
于 2013/3/4 17:30, Kamil Debski 写道: Hi, This problem is known to us and Marek is planning a fix. However, the problem proved to be quite difficult, so please be patient. Best wishes, Kamil, Thanks for your information. Is there any workaround method which can let me continue the MFC decoder

Re: [REVIEW PATCH 2/2] davinci: more gama - gamma typo fixes.

2013-03-04 Thread Prabhakar Lad
Hi Hans, Thanks for the patch! On Mon, Mar 4, 2013 at 4:49 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com Acked-by: Lad, Prabhakar prabhakar@ti.com Regards, --Prabhakar Lad ---

Re: [REVIEW PATCH 1/2] davinci/dm644x_ccdc: fix compiler warning

2013-03-04 Thread Prabhakar Lad
Hi Hans, Thanks for the fix! On Mon, Mar 4, 2013 at 4:49 PM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com drivers/media/platform/davinci/dm644x_ccdc.c: In function ‘validate_ccdc_param’: drivers/media/platform/davinci/dm644x_ccdc.c:233:32: warning:

[REVIEW PATCH 0/6] s5p-tv: replace dv_preset by dv_timings

2013-03-04 Thread Hans Verkuil
Hi Tomasz, Here is what I hope is the final patch series for this. I've incorporated your suggestions and it's split off from the davinci/blackfin changes into its own patch series to keep things better organized. The changes since the previous version are: - changed the order of the first

[REVIEW PATCH 1/6] s5p-tv: add dv_timings support for hdmiphy.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This just adds dv_timings support without modifying existing dv_preset support, although I had to refactor a little bit in order to share hdmiphy_find_conf() between the preset and timings code. Signed-off-by: Hans Verkuil hans.verk...@cisco.com

[REVIEW PATCH 3/6] s5p-tv: add dv_timings support for mixer_video.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This just adds dv_timings support without modifying existing dv_preset support. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Tested-by: Tomasz Stanislawski t.stanisl...@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com ---

[REVIEW PATCH 2/6] s5p-tv: add dv_timings support for hdmi.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This just adds dv_timings support without modifying existing dv_preset support. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Tested-by: Tomasz Stanislawski t.stanisl...@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com ---

[REVIEW PATCH 6/6] s5p-tv: remove the dv_preset API from hdmiphy.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The dv_preset API is deprecated and is replaced by the much improved dv_timings API. Remove the dv_preset support from this driver as this will allow us to remove the dv_preset API altogether (s5p-tv being the last user of this code). Signed-off-by: Hans

[REVIEW PATCH 4/6] s5p-tv: remove dv_preset support from mixer_video.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The dv_preset API is deprecated and is replaced by the much improved dv_timings API. Remove the dv_preset support from this driver as this will allow us to remove the dv_preset API altogether (s5p-tv being the last user of this code). Signed-off-by: Hans

[REVIEW PATCH 5/6] s5p-tv: remove the dv_preset API from hdmi.

2013-03-04 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The dv_preset API is deprecated and is replaced by the much improved dv_timings API. Remove the dv_preset support from this driver as this will allow us to remove the dv_preset API altogether (s5p-tv being the last user of this code). Signed-off-by: Hans

[PATCH] [media] m920x: let GCC see 'ret' is used initialized

2013-03-04 Thread Paul Bolle
Since commit 7543f344e9b06afe86b55a2620f5c11b38bd5642 ([media] m920x: factor out a m920x_write_seq() function) building m920x.o triggers this GCC warning: drivers/media/usb/dvb-usb/m920x.c: In function ‘m920x_probe’: drivers/media/usb/dvb-usb/m920x.c:91:6: warning: ‘ret’ may be used

Re: [PATCH v2 01/11] em28xx-i2c: replace printk() with the corresponding em28xx macros

2013-03-04 Thread Mauro Carvalho Chehab
Em Sun, 3 Mar 2013 20:37:34 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: Reduces the number of characters/lines, unifies the code and improves readability. Had you actually test this patch? The reason why printk() is used on some places is because dev-name is not available

Re: [PATCH v2 01/11] em28xx-i2c: replace printk() with the corresponding em28xx macros

2013-03-04 Thread Frank Schäfer
Am 04.03.2013 19:09, schrieb Mauro Carvalho Chehab: Em Sun, 3 Mar 2013 20:37:34 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: Reduces the number of characters/lines, unifies the code and improves readability. Had you actually test this patch? The reason why printk() is used on

Re: [PATCH v2 01/11] em28xx-i2c: replace printk() with the corresponding em28xx macros

2013-03-04 Thread Mauro Carvalho Chehab
Em Mon, 04 Mar 2013 19:27:12 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: Am 04.03.2013 19:09, schrieb Mauro Carvalho Chehab: Em Sun, 3 Mar 2013 20:37:34 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: Reduces the number of characters/lines, unifies the code and

Re: [PATCH v2 06/11] em28xx: make sure we are at i2c bus A when calling em28xx_i2c_register()

2013-03-04 Thread Mauro Carvalho Chehab
Em Sun, 3 Mar 2013 20:37:39 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: The current code first configures register EM28XX_R06_I2C_CLK, which includes i2c speed, ack, wait and (on some devices) i2c bus selection. The register value usually comes from the board definition.

[PATCH 2/2] [media] mb86a20s: Don't assume a 32.57142MHz clock

2013-03-04 Thread Mauro Carvalho Chehab
Now that some devices initialize register 0x2a with different values, add the calculus formula, instead of hardcoding it. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/media/dvb-frontends/mb86a20s.c | 26 -- drivers/media/dvb-frontends/mb86a20s.h |

[PATCH 1/2] [media] mb86a20s: Implement set_frontend cache logic

2013-03-04 Thread Mauro Carvalho Chehab
Up to now, the driver was simply assuming TV mode, 13 segs. Implement the logic to control the ISDB operational mode. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/media/dvb-frontends/mb86a20s.c | 74 +- 1 file changed, 63 insertions(+), 11

Re: mb86a20s and cx23885

2013-03-04 Thread Mauro Carvalho Chehab
Em Sun, 3 Mar 2013 13:40:51 -0300 Mauro Carvalho Chehab mche...@redhat.com escreveu: Em Sun, 03 Mar 2013 11:50:25 -0300 Alfredo Jesús Delaiti alfredodela...@netscape.net escreveu: The new data replacement in mb86a20s /* * Initialization sequence: Use whatevere default values that

cron job: media_tree daily build: ERRORS

2013-03-04 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: Mon Mar 4 19:00:45 CET 2013 git branch: for_v3.9 git hash: d34c353cd40ff0e6e5ed3753e80f6aa7eaa2c298 gcc

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

2013-03-04 Thread Mauro Carvalho Chehab
Em Sun, 3 Mar 2013 20:40:57 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: 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

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

2013-03-04 Thread Mauro Carvalho Chehab
Em Mon, 4 Mar 2013 17:20:05 -0300 Mauro Carvalho Chehab mche...@redhat.com escreveu: Em Sun, 3 Mar 2013 20:40:57 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: The webcam SpeedLink VAD Laplace (em2765 + ov2640) uses a special algorithm for i2c communication with the

[PATCH] media/v4l2: VIDEOBUF2_DMA_CONTIG should depend on HAS_DMA

2013-03-04 Thread Geert Uytterhoeven
m68k/sun3: drivers/media/v4l2-core/videobuf2-dma-contig.c: In function ‘vb2_dc_mmap’: drivers/media/v4l2-core/videobuf2-dma-contig.c:204: error: implicit declaration of function ‘dma_mmap_coherent’ drivers/media/v4l2-core/videobuf2-dma-contig.c: In function ‘vb2_dc_get_base_sgt’:

Re: [PATCH v2 06/11] em28xx: make sure we are at i2c bus A when calling em28xx_i2c_register()

2013-03-04 Thread Frank Schäfer
Am 04.03.2013 20:14, schrieb Mauro Carvalho Chehab: Em Sun, 3 Mar 2013 20:37:39 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: The current code first configures register EM28XX_R06_I2C_CLK, which includes i2c speed, ack, wait and (on some devices) i2c bus selection. The register

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

2013-03-04 Thread Frank Schäfer
Am 04.03.2013 21:23, schrieb Mauro Carvalho Chehab: Em Mon, 4 Mar 2013 17:20:05 -0300 Mauro Carvalho Chehab mche...@redhat.com escreveu: Em Sun, 3 Mar 2013 20:40:57 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: ... @@ -277,7 +386,9 @@ static int em28xx_i2c_xfer(struct

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

2013-03-04 Thread Frank Schäfer
Am 04.03.2013 22:31, schrieb Frank Schäfer: ... I don't expect this chip to appear in one of the devices with the currently supported generic IDs. Hmm... maybe I should add: it doesn't make sense to add the generic USB ID of this chip (eb1a:2765) to the driver, because most of the devices

Re: [REVIEW PATCH V4 01/12] [media] marvell-ccic: add MIPI support for marvell-ccic driver

2013-03-04 Thread Guennadi Liakhovetski
Hi Albert A general comment first: I have no idea about this hardware, so, feel free to ignore all my hardware-handling related comments. But just from looking your handling of the pll1 clock does seem a bit fishy to me. You acquire and release the clock in the generic mcam code, but only use

Re: mb86a20s and cx23885

2013-03-04 Thread Alfredo Jesús Delaiti
Hi Mauro and others El 03/03/13 13:15, Mauro Carvalho Chehab escribió: Em Sun, 03 Mar 2013 11:50:25 -0300 Alfredo Jesús Delaiti alfredodela...@netscape.net escreveu: Hi Mauro and others from the list I searched for a plan B to get the data bus and after several alternative plans that were

Re: mb86a20s and cx23885

2013-03-04 Thread Alfredo Jesús Delaiti
Hi all El 04/03/13 16:42, Mauro Carvalho Chehab escribió: Em Sun, 3 Mar 2013 13:40:51 -0300 Mauro Carvalho Chehab mche...@redhat.com escreveu: Em Sun, 03 Mar 2013 11:50:25 -0300 Alfredo Jesús Delaiti alfredodela...@netscape.net escreveu: The new data replacement in mb86a20s /* *

Re: mb86a20s and cx23885

2013-03-04 Thread Mauro Carvalho Chehab
Em Mon, 04 Mar 2013 21:00:17 -0300 Alfredo Jesús Delaiti alfredodela...@netscape.net escreveu: Hi all El 04/03/13 16:42, Mauro Carvalho Chehab escribió: Em Sun, 3 Mar 2013 13:40:51 -0300 Mauro Carvalho Chehab mche...@redhat.com escreveu: Em Sun, 03 Mar 2013 11:50:25 -0300 Alfredo

Re: [PATCH v2 06/11] em28xx: make sure we are at i2c bus A when calling em28xx_i2c_register()

2013-03-04 Thread Mauro Carvalho Chehab
Em Mon, 04 Mar 2013 22:24:43 +0100 Frank Schäfer fschaefer@googlemail.com escreveu: Am 04.03.2013 20:14, schrieb Mauro Carvalho Chehab: 3) It doesn't properly address the real issue: a separate I2C register is needed for bus B. Definitely. :( We talked about that at the

[no subject]

2013-03-04 Thread fmh
binQR42zVOSJh.bin Description: iso-8859-1

[no subject]

2013-03-04 Thread fmh
binV6uiUv4OS6.bin Description: iso-8859-1

[PATCH 1/3] [media] sh_veu: Use module_platform_driver_probe macro

2013-03-04 Thread Sachin Kamat
module_platform_driver_probe() eliminates the boilerplate and simplifies the code. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- drivers/media/platform/sh_veu.c | 13 + 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/drivers/media/platform/sh_veu.c

[PATCH 2/3] [media] sh_vou: Use module_platform_driver_probe macro

2013-03-04 Thread Sachin Kamat
module_platform_driver_probe() eliminates the boilerplate and simplifies the code. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- drivers/media/platform/sh_vou.c | 13 + 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/drivers/media/platform/sh_vou.c

[PATCH 3/3] [media] soc_camera/mx1_camera: Use module_platform_driver_probe macro

2013-03-04 Thread Sachin Kamat
module_platform_driver_probe() eliminates the boilerplate and simplifies the code. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- drivers/media/platform/soc_camera/mx1_camera.c | 13 + 1 files changed, 1 insertions(+), 12 deletions(-) diff --git

DMX_SET_SOURCE documentation

2013-03-04 Thread Divneil Rai WADHAWAN
Hi, I have been working on LinuxDVB port, where the application wants to switch dynamically from FRONT0 to DVR0 as DEMUX0 source, time and again. The obvious way to handle this is to use DMX_SET_SOURCE which connects/disconnects the FRONT0/DVR0 to DEMUX0. Before implementing that, I would like

Re: [PATCH 1/3] [media] sh_veu: Use module_platform_driver_probe macro

2013-03-04 Thread Guennadi Liakhovetski
On Tue, 5 Mar 2013, Sachin Kamat wrote: module_platform_driver_probe() eliminates the boilerplate and simplifies the code. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Thanks, all 3 queued for 3.10 Regards Guennadi --- drivers/media/platform/sh_veu.c | 13 + 1

Re: [GIT PULL FOR v3.9] cx231xx: v4l2 compliance and big-endian fixes.

2013-03-04 Thread Hans Verkuil
Small update: I've added Matt Gomboc's patch to this series as well: http://patchwork.linuxtv.org/patch/17026/ Regards, Hans On Fri February 15 2013 09:46:59 Hans Verkuil wrote: This patch series cleans up the cx231xx driver based on v4l2-compliance reports. It is identical to the