RE: [PATCH 2/7] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-03-15 Thread Nori, Sekhar
Hi Arnd, On Mon, Mar 14, 2011 at 21:51:51, Arnd Bergmann wrote: On Monday 14 March 2011, Manjunath Hadli wrote: Current devices.c file has a number of instances where IO_ADDRESS() is used for system module register access. Eliminate this in favor of a ioremap() based access.

Re: [Query] VIDIOC_QBUF and VIDIOC_STREAMON order

2011-03-15 Thread Hans Verkuil
On Tuesday, March 15, 2011 04:21:05 Pawel Osciak wrote: Hi, On Mon, Mar 14, 2011 at 03:49, Subash Patel subas...@gmail.com wrote: VIDIOC_STREAMON expects buffers to be queued before hardware part of image/video pipe is enabled. From my experience of V4L2 user space, I have always QBUFfed

Re: [PATCH 3/7] ARM: Samsung: update/rewrite Samsung SYSMMU (IOMMU) driver

2011-03-15 Thread Russell King - ARM Linux
On Tue, Mar 15, 2011 at 10:45:50AM +0900, InKi Dae wrote: 2011/3/14 Russell King - ARM Linux li...@arm.linux.org.uk: On Mon, Mar 14, 2011 at 09:37:51PM +0900, KyongHo Cho wrote: I have also noticed that dma_map_single/page/sg() can map physical memory into an arbitrary device address

Re: [PATCH 1/2 v3] [media] dib0700: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
On Sun, 6 Mar 2011 18:57:13 +0100 Florian Mickler flor...@mickler.org wrote: On Sun, 6 Mar 2011 18:47:56 +0100 Florian Mickler flor...@mickler.org wrote: +static void dib0700_disconnect(struct usb_interface *intf) { That { should go on its own line... sorry ;-) If that patch is

wis go7007 driver

2011-03-15 Thread Leopold Palomo-Avellaneda
Hi, I have asked to some people and they have point me to this list to ask. I hope this is the right place. :-) We have a card Addlink PCI-MPG24 that has 4 bt878 and 4 wis go7007. We have used the driver from [1] and [2]. Also, I have compiled the kernel source staged (2.6.32) and although

[PATCH 07/16] [media] friio: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

[PATCH 06/16] [media] ce6230: get rid of on-stack dma buffer

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

[PATCH 05/16] [media] ec168: get rid of on stack dma buffers

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

[PATCH 03/16] [media] a800: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

[PATCH 01/16] [media] dib0700: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

[PATCH 04/16] [media] vp7045: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

[PATCH 12/16] [media] lmedm04: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING: at lib/dma-debug.c:866 check_for_stack Note: This

Re: [PATCH 2/7] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-03-15 Thread Arnd Bergmann
On Tuesday 15 March 2011 07:00:44 Nori, Sekhar wrote: * If you need to access sysmod in multiple places, a nicer way would be to make the virtual address pointer static, and export the accessor functions for it, rather than having a global pointer. Seems like opinion is divided

Re: [PATCH 3/7] ARM: Samsung: update/rewrite Samsung SYSMMU (IOMMU) driver

2011-03-15 Thread daeinki
Russell King - ARM Linux 쓴 글: On Tue, Mar 15, 2011 at 10:45:50AM +0900, InKi Dae wrote: 2011/3/14 Russell King - ARM Linux li...@arm.linux.org.uk: On Mon, Mar 14, 2011 at 09:37:51PM +0900, KyongHo Cho wrote: I have also noticed that dma_map_single/page/sg() can map physical memory into an

Re: [PATCH 3/7] ARM: Samsung: update/rewrite Samsung SYSMMU (IOMMU) driver

2011-03-15 Thread Russell King - ARM Linux
On Tue, Mar 15, 2011 at 06:34:42PM +0900, daeinki wrote: Russell King - ARM Linux 쓴 글: On Tue, Mar 15, 2011 at 10:45:50AM +0900, InKi Dae wrote: 2011/3/14 Russell King - ARM Linux li...@arm.linux.org.uk: On Mon, Mar 14, 2011 at 09:37:51PM +0900, KyongHo Cho wrote: I have also noticed that

Re: [Query] VIDIOC_QBUF and VIDIOC_STREAMON order

2011-03-15 Thread Sylwester Nawrocki
Hi Subash, thanks for your comments. On 03/14/2011 11:44 AM, Subash Patel wrote: VIDIOC_STREAMON expects buffers to be queued before hardware part of image/video pipe is enabled. From my experience of V4L2 user space, I have always QBUFfed before invoking the STREAMON. Below is the API

Re: [PATCH 1/2 v3] [media] dib0700: get rid of on-stack dma buffers

2011-03-15 Thread Mauro Carvalho Chehab
Em 15-03-2011 05:36, Florian Mickler escreveu: On Sun, 6 Mar 2011 18:57:13 +0100 Florian Mickler flor...@mickler.org wrote: On Sun, 6 Mar 2011 18:47:56 +0100 Florian Mickler flor...@mickler.org wrote: +static void dib0700_disconnect(struct usb_interface *intf) { That { should go on

Re: [Security] [PATCH 00/20] world-writable files in sysfs and debugfs

2011-03-15 Thread James Bottomley
On Mon, 2011-03-14 at 20:09 -0700, Greg KH wrote: On Mon, Mar 14, 2011 at 10:26:05PM -0400, James Bottomley wrote: On Sat, 2011-03-12 at 23:23 +0300, Vasiliy Kulikov wrote: Vasiliy Kulikov (20): mach-ux500: mbox-db5500: world-writable sysfs fifo file leds: lp5521: world-writable

Re: [PATCH 01/16] [media] dib0700: get rid of on-stack dma buffers

2011-03-15 Thread Mauro Carvalho Chehab
Em 15-03-2011 05:43, Florian Mickler escreveu: usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function check_for_stack even warns about it: WARNING:

Re: [PATCH] DVB-APPS: azap gets -p argument

2011-03-15 Thread Janne Grunau
Hi, On Sat, Mar 05, 2011 at 03:16:51AM +0100, Christian Ulrich wrote: I've written a patch against the latest version of azap in the hg repository during the work of my Archos Gen8 DVB-T / ATSC project. Details of patch: - add -p argument from tzap to azap - thus ts streaming to dvr0

Re: [PATCH] DVB-APPS: azap gets -p argument

2011-03-15 Thread Janne Grunau
On Tue, Mar 15, 2011 at 01:23:40PM +0100, Christian Ulrich wrote: Hi, thank you for your feedback. Indeed, I never used -r alone, but only with -p. So with your patch, [acst]zap -r will be the same as -rp. That looks good to me. well, azap not yet. iirc I implemented -p for azap but it was

Re: [PATCH] DVB-APPS: azap gets -p argument

2011-03-15 Thread Oliver Endriss
On Tuesday 15 March 2011 13:32:58 Janne Grunau wrote: On Tue, Mar 15, 2011 at 01:23:40PM +0100, Christian Ulrich wrote: Hi, thank you for your feedback. Indeed, I never used -r alone, but only with -p. So with your patch, [acst]zap -r will be the same as -rp. That looks good to me.

[PATCH v17 00/13] davinci vpbe: dm6446 v4l2 driver

2011-03-15 Thread Manjunath Hadli
version17: The more important among the patch history from previous comments 1. Replacing _raw_readl() with readl(). 2. Removal of platform resource overlap. 3. Removal of unused macros. 4. Fixing the module params typo. 5. Minor changes in the GPL licensing header. 6. Removed the initializer for

[PATCH v15 02/13] davinci vpbe: VPBE display driver

2011-03-15 Thread Manjunath Hadli
This patch implements the core functionality of the dislay driver, mainly controlling the VENC and other encoders, and acting as the one point interface for the main V4L2 driver. This implements the core of each of the V4L2 IOCTLs. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by:

[PATCH v15 04/13] davinci vpbe: VENC( Video Encoder) implementation

2011-03-15 Thread Manjunath Hadli
This patch adds the VENC or the Video encoder, which is responsible for the blending of all source planes and timing generation for Video modes like NTSC, PAL and other digital outputs. the VENC implementation currently supports COMPOSITE and COMPONENT outputs and NTSC and PAL resolutions through

[PATCH v15 05/13] davinci vpbe: Build infrastructure for VPBE driver

2011-03-15 Thread Manjunath Hadli
This patch adds the build infra-structure for Davinci VPBE dislay driver. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by: Muralidharan Karicheri m-kariche...@ti.com Acked-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/davinci/Kconfig | 22 ++

[PATCH v17 09/13] davinci: dm644x: Replace register base value with a defined macro

2011-03-15 Thread Manjunath Hadli
Replace hard coded value of vpss register base to a define macro DM644X_VPSS_REG_BASE for proper readability Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com --- arch/arm/mach-davinci/dm644x.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git

[PATCH v17 11/13] davinci: dm644x: move vpfe init from soc to board specific files

2011-03-15 Thread Manjunath Hadli
Move all vpfe platform device registrations to the board specific file like the rest of the devices, and have all of them together. This would remove the restriction of inclusion and registration of vpfe platform devices for non-vpfe boards. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com

[PATCH v17 13/13] davinci: dm644x EVM: add support for VPBE display

2011-03-15 Thread Manjunath Hadli
This patch adds support for V4L2 video display to DM6446 EVM. Support for SD and ED modes is provided, along with Composite and Component outputs. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com --- arch/arm/mach-davinci/board-dm644x-evm.c| 108 ++-

[PATCH v17 12/13] davinci: dm644x: add support for v4l2 video display

2011-03-15 Thread Manjunath Hadli
Create platform devices for various video modules like venc,osd, vpbe and v4l2 driver for dm644x. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com --- arch/arm/mach-davinci/dm644x.c | 130 ++- arch/arm/mach-davinci/include/mach/dm644x.h |4 + 2

[PATCH v17 08/13] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-03-15 Thread Manjunath Hadli
Current devices.c file has a number of instances where IO_ADDRESS() is used for system module register access. Eliminate this in favor of a ioremap() based access. Consequent to this, a new global pointer davinci_sysmodbase has been introduced which gets initialized during the initialization of

[PATCH v15 06/13] davinci vpbe: Readme text for Dm6446 vpbe

2011-03-15 Thread Manjunath Hadli
Please refer to this file for detailed documentation of davinci vpbe v4l2 driver. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by: Muralidharan Karicheri m-kariche...@ti.com Acked-by: Hans Verkuil hverk...@xs4all.nl --- Documentation/video4linux/README.davinci-vpbe | 93

[PATCH v17 10/13] davinci: dm644x: change vpfe capture structure variables for consistency

2011-03-15 Thread Manjunath Hadli
change the vpfe capture related configuration structure variables from config to dm644xevm_config to make it consistent with the rest of the file. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com --- arch/arm/mach-davinci/board-dm644x-evm.c | 24

Re: [Security] [PATCH 00/20] world-writable files in sysfs and debugfs

2011-03-15 Thread Greg KH
On Tue, Mar 15, 2011 at 07:50:28AM -0400, James Bottomley wrote: On Mon, 2011-03-14 at 20:09 -0700, Greg KH wrote: On Mon, Mar 14, 2011 at 10:26:05PM -0400, James Bottomley wrote: On Sat, 2011-03-12 at 23:23 +0300, Vasiliy Kulikov wrote: Vasiliy Kulikov (20): mach-ux500:

Re: [Security] [PATCH 00/20] world-writable files in sysfs and debugfs

2011-03-15 Thread James Bottomley
On Tue, 2011-03-15 at 07:18 -0700, Greg KH wrote: On Tue, Mar 15, 2011 at 07:50:28AM -0400, James Bottomley wrote: On Mon, 2011-03-14 at 20:09 -0700, Greg KH wrote: There are no capability checks on sysfs files right now, so these all need to be fixed. That statement is true but

Help with tuner/demux ST chips on i2c bus

2011-03-15 Thread Antoine Maillard
Hello, I'm currently working on a Set Top Box which embeds two ST chips for digital TV (stv6110b for the tuning and stv0900b for the demod). Since those two chips are often used in retail PCI cards, the DVBAPI includes drivers for these chips. Thus I'd like to know if I can use those drivers just

Re: Yet another memory provider: can linaro organize a meeting?

2011-03-15 Thread Robert Fekete
On 8 March 2011 20:23, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Andy, On Tuesday 08 March 2011 20:12:45 Andy Walls wrote: On Tue, 2011-03-08 at 16:52 +0100, Laurent Pinchart wrote: [snip] It really shouldn't be that hard to get everyone involved together and

Re: [Security] [PATCH 00/20] world-writable files in sysfs and debugfs

2011-03-15 Thread Vasiliy Kulikov
On Tue, Mar 15, 2011 at 07:50 -0400, James Bottomley wrote: 1. Did anyone actually check for capabilities before assuming world writeable files were wrong? I didn't check all these files as I haven't got these hardware :-) But as I can chmod a+w all sysfs files on my machine and

Re: [Security] [PATCH 00/20] world-writable files in sysfs and debugfs

2011-03-15 Thread James Bottomley
On Tue, 2011-03-15 at 19:08 +0300, Vasiliy Kulikov wrote: On Tue, Mar 15, 2011 at 07:50 -0400, James Bottomley wrote: 1. Did anyone actually check for capabilities before assuming world writeable files were wrong? I didn't check all these files as I haven't got these hardware

Re: Yet another memory provider: can linaro organize a meeting?

2011-03-15 Thread Alex Deucher
On Tue, Mar 15, 2011 at 12:07 PM, Robert Fekete robert.fek...@linaro.org wrote: On 8 March 2011 20:23, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Andy, On Tuesday 08 March 2011 20:12:45 Andy Walls wrote: On Tue, 2011-03-08 at 16:52 +0100, Laurent Pinchart wrote: [snip]

[cron job] v4l-dvb daily build: ERRORS

2011-03-15 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Tue Mar 15 19:00:29 CET 2011 git hash:41f3becb7bef489f9e8c35284dd88a1ff59b190c gcc version: i686-linux-gcc (GCC)

add dvb-t fr-All frequency

2011-03-15 Thread matthieu castet
Hi, can this file be added to dvb-apps/util/scan/dvb-t Thanks Matthieu #http://tvignaud.pagesperso-orange.fr/ T 47400 8MHz AUTO AUTO QAM64 AUTO AUTO NONE T 48200 8MHz AUTO AUTO QAM64 AUTO AUTO NONE T 49000 8MHz AUTO AUTO QAM64 AUTO AUTO NONE T 49800 8MHz AUTO AUTO QAM64 AUTO

Re: [PATCH 12/16] [media] lmedm04: get rid of on-stack dma buffers

2011-03-15 Thread Malcolm Priestley
The patch failed for the following reason. On Tue, 2011-03-15 at 09:43 +0100, Florian Mickler wrote: usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer thus has to be seperately allocated on the heap. In lib/dma_debug.c the function

Re: [PATCH 01/16] [media] dib0700: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
On Tue, 15 Mar 2011 09:02:00 -0300 Mauro Carvalho Chehab mche...@infradead.org wrote: You're allocating a buffer for URB control messages. IMO, this is a good idea, as this way, allocating/freeing on each urb call is avoided. However, on most places, you're not using it. The better would

Re: [PATCH 12/16] [media] lmedm04: get rid of on-stack dma buffers

2011-03-15 Thread Florian Mickler
On Tue, 15 Mar 2011 20:54:43 + Malcolm Priestley tvbox...@gmail.com wrote: The patch failed for the following reason. On Tue, 2011-03-15 at 09:43 +0100, Florian Mickler wrote: usb_control_msg initiates (and waits for completion of) a dma transfer using the supplied buffer. That buffer

Support for StarTech SVID2USB2 USB 2.0 Video Capture Cable

2011-03-15 Thread Nels Poulsen
Hello, I've been trying to get StarTech SVID2USB2 working for Ubuntu 10.04 LTS - the Lucid Lynx to no avail. Although drivers in Windows XP identify the device as using an empi2821 chipset and device probe in Ubuntu seem to identify the chip correctly, there does not seem to be a automatically

Re: wis go7007 driver

2011-03-15 Thread Leopold Palomo Avellaneda
A Dimarts 15 Març 2011, Leopold Palomo-Avellaneda va escriure: Hi, I have asked to some people and they have point me to this list to ask. I hope this is the right place. :-) We have a card Addlink PCI-MPG24 that has 4 bt878 and 4 wis go7007. We have used the driver from [1] and [2].

Re: the focus terms or sequences

2011-03-15 Thread Kim, HeungJun
Hi Laurent, First, I hope to be good at the warsaw meeting. :) 2011-03-16 오전 9:14, Laurent Pinchart 쓴 글: Hi HeungJun, On Monday 14 March 2011 08:02:01 Kim, HeungJun wrote: Hi Laurent, I heard of that there was a chance between you and Sylwester telling about the menu entries focus, and