RE: vpif_display.c bug

2009-08-11 Thread chaithrika
On Mon, Aug 10, 2009 at 20:39:05, Karicheri, Muralidharan wrote: Chaithrika, No need to change this since this is already corrected as part of my vpif capture patch set that I had submitted for review. I had mentioned this to Hans as well. Murali, Thank you for correcting this bug in

Re: How to efficiently handle DMA and cache on ARMv7 ? (was Is get_user_pages() enough to prevent pages from being swapped out ?)

2009-08-11 Thread Catalin Marinas
On Thu, 2009-08-06 at 22:59 -0700, David Xiao wrote: The V7 speculative prefetching will then probably apply to DMA coherency issue in general, both kernel and user space DMAs. Could this be addressed by inside the dma_unmap_sg/single() calling dma_cache_maint() when the direction is

Re: vpif_display.c bug

2009-08-11 Thread Hans Verkuil
On Monday 10 August 2009 17:07:51 Karicheri, Muralidharan wrote: Hans, I have already changed v4l2_i2c_new_probed_subdev() to v4l2_i2c_new_subdev_board() in my latest patch set for adding vpif capture driver for DM6467 that you had reviewed. I think this change is not needed once that

[PULL] http://www.linuxtv.org/hg/~hverkuil/v4l-dvb-core2

2009-08-11 Thread Hans Verkuil
Hi Mauro, Please pull from http://www.linuxtv.org/hg/~hverkuil/v4l-dvb-core2 for the following: - v4l: simplify v4l2_i2c_new_subdev and friends - v4l: remove video_register_device_index The first patch simplifies v4l2_i2c_new_subdev and removes v4l2_i2c_new_probed_subdev and

Re: [PATCH] V4L: videobuf-core.c VIDIOC_QBUF should return video buffer flags

2009-08-11 Thread Laurent Pinchart
On Monday 10 August 2009 19:37:40 Tuukka.O Toivonen wrote: When user space queues a buffer using VIDIOC_QBUF, the kernel should set flags to V4L2_BUF_FLAG_QUEUED in struct v4l2_buffer. videobuf_qbuf() was missing a call to videobuf_status() which does that. This patch adds the proper function

Re: [PULL] http://linuxtv.org/hg/~dougsland/video4linux

2009-08-11 Thread Mauro Carvalho Chehab
Em Wed, 5 Aug 2009 13:09:47 -0300 Douglas Schilling Landgraf dougsl...@gmail.com escreveu: Hello Mauro, Please pull from http://linuxtv.org/hg/~dougsland/video4linux for the following: - cxusb, d680 dmbth use unified lgs8gxx code instead of lgs8gl5 - media/zr364xx: fix build errors -

Re: [PULL] soc-camera: fix recursive cpin-lock (2.6.31)

2009-08-11 Thread Mauro Carvalho Chehab
Hi Guennadi, Em Thu, 6 Aug 2009 01:28:17 +0200 (CEST) Guennadi Liakhovetski g.liakhovet...@gmx.de escreveu: Hi Mauro, I posted this fix and haven't got any objections (apart from unused variables, which are removed in this version), but - please have a look at it before pulling. In

Re: [PULL] http://www.linuxtv.org/hg/~hverkuil/v4l-dvb

2009-08-11 Thread Hans Verkuil
Hi Mauro, Em Thu, 6 Aug 2009 22:04:13 +0200 Hans Verkuil hverk...@xs4all.nl escreveu: Hi Mauro, Please pull from http://www.linuxtv.org/hg/~hverkuil/v4l-dvb for the following: - v4l: introduce string control support. - v4l2-spec: document the new string control type. - v4l2-ctl:

[patch v2 0/1] video: initial support for ADV7180

2009-08-11 Thread Richard Röjfors
This is a an updated version of my previous patch. Hans: I have updated the patch according to you feedback (almost). Thanks for the feedback btw. * I left the state struct even though it only contains the subdev, it's for the future when more functions are added in. * I left the function

[patch v2 1/1] video: initial support for ADV7180

2009-08-11 Thread Richard Röjfors
This is an initial driver for Analog Devices ADV7180 Video Decoder. So far it only supports setting the chip in autodetect mode and query the detected standard. Signed-off-by: Richard Röjfors richard.rojfors@mocean-labs.com --- diff --git a/drivers/media/video/Kconfig

dmesg | grep em28xx

2009-08-11 Thread Emanuele Deiola
/foclick.cgi?mid=d=20090811 -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PULL] http://kernellabs.com/hg/~mkrufky/sms1xxx

2009-08-11 Thread Mauro Carvalho Chehab
Em Sat, 1 Aug 2009 14:03:24 -0400 Michael Krufky mkru...@kernellabs.com escreveu: On Sat, Aug 1, 2009 at 12:40 AM, Mauro Carvalho Chehabmche...@infradead.org wrote: Em Fri, 31 Jul 2009 11:25:55 -0400 Michael Krufky mkru...@kernellabs.com escreveu: Please review this patch yourself --

gspca: Trust webcam WB 300P ID 093a:2608 doesn't work

2009-08-11 Thread Claudio Chimera
Hello, I'm trying to use the Trust webcam WB 300P (ID 093a:2608 ) unsuccessful. The complete lsusb command is following: Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 002: ID 093a:2608 Pixart Imaging,

Re: [PATCH] gspca: add g_std/s_std methods

2009-08-11 Thread Jean-Francois Moine
On Sun, 09 Aug 2009 22:13:12 +0200 Olaf Titz olaf.t...@inka.de wrote: Some applications are unhappy about getting EINVAL errors for query/set TV standard operations, especially (or only?) when working over the v4l1compat.so bridge. This patch adds the appropriate methods to the gspca driver

Re: How to efficiently handle DMA and cache on ARMv7 ? (was Is get_user_pages() enough to prevent pages from being swapped out ?)

2009-08-11 Thread David Xiao
On Tue, 2009-08-11 at 02:31 -0700, Catalin Marinas wrote: On Thu, 2009-08-06 at 22:59 -0700, David Xiao wrote: The V7 speculative prefetching will then probably apply to DMA coherency issue in general, both kernel and user space DMAs. Could this be addressed by inside the

Re: [PATCH] gspca: add g_std/s_std methods

2009-08-11 Thread Olaf Titz
Jean-Francois Moine wrote: The vidioc_s_std() has been removed last month by Németh Márton according to the v4l2 API http://v4l2spec.bytesex.org/spec/x448.htm Ah, I see. This is a recent change, which explains why it has not come up earlier :-) The standard clearly states that my change is

Re: [linux-dvb] TechnoTrend TT-connect S2-3650 CI

2009-08-11 Thread Niels Wagenaar
Op Di, 11 augustus, 2009 20:32, schreef Christopher Thornley: -- SNIP -- I probably would like to get both the S2API and Multiprot methods working. Many Thanks Chris That won't be possible. It's S2API or Multiproto. And since S2API is the official standard - besides the fact that

[PATCH 1/4 - v2] V4L: vpfe capture driver - adding support for camera capture

2009-08-11 Thread m-karicheri2
From: Muralidharan Karicheri m-kariche...@ti.com This patch incorporated comments received against v1 patch series. Following are the major comments incorporated:- 1) retained vpfe_g_std() since for vbi support g_std handling in v4l2 framework is not sufficient. 2)

[PATCH 2/4 - v2] V4L: ccdc driver - adding support for camera capture

2009-08-11 Thread m-karicheri2
From: Muralidharan Karicheri m-kariche...@ti.com There was no comment against v1 of the patch. So no change in this file Reviewed-by: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Muralidharan Karicheri m-kariche...@ti.com --- Applies to V4L-DVB linux-next repository

[PATCH 3/4 - v2] V4L: ccdc driver - select MSP driver for CCDC input selection

2009-08-11 Thread m-karicheri2
From: Muralidharan Karicheri m-kariche...@ti.com There were no comments against v1 of this patch. So no change from v1 of the patch Reviewed-by: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Muralidharan Karicheri m-kariche...@ti.com --- Applies to V4L-DVB linux-next repository

Re: [PULL] http://www.linuxtv.org/hg/~hverkuil/v4l-dvb

2009-08-11 Thread Mauro Carvalho Chehab
Em Tue, 11 Aug 2009 17:08:27 +0200 Hans Verkuil hverk...@xs4all.nl escreveu: I also agree with Trent that, instead of having to maintain some sort of list or code to identify string controls, the better would be to reserve one bit to indicate pointer controls (like bit 31). People