Yet another memory provider: can linaro organize a meeting?

2011-03-08 Thread Hans Verkuil
Hi all, We had a discussion yesterday regarding ways in which linaro can assist V4L2 development. One topic was that of sorting out memory providers like GEM and HWMEM. Today I learned of yet another one: UMP from ARM.

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread Hiroshi DOYU
From: ext David Cohen daco...@gmail.com Subject: Re: [PATCH] omap: iommu: disallow mapping NULL address Date: Mon, 7 Mar 2011 21:41:21 +0200 On Mon, Mar 7, 2011 at 9:25 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Mon, Mar 7, 2011 at 1:19 PM, David Cohen daco...@gmail.com wrote:

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread Hiroshi DOYU
From: ext David Cohen daco...@gmail.com Subject: Re: [PATCH] omap: iommu: disallow mapping NULL address Date: Mon, 7 Mar 2011 23:35:31 +0200 On Mon, Mar 7, 2011 at 11:19 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi David, Hi Laurent, On Monday 07 March 2011 20:41:21

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread Sakari Ailus
Guzman Lugo, Fernando wrote: On Mon, Mar 7, 2011 at 1:19 PM, David Cohen daco...@gmail.com wrote: On Mon, Mar 7, 2011 at 9:17 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Mon, Mar 7, 2011 at 7:10 AM, Michael Jones michael.jo...@matrix-vision.de wrote: From

RE: [PATCH/RFC 0/7] Samsung IOMMU videobuf2 allocator and s5p-fimc update

2011-03-08 Thread Marek Szyprowski
Hello, On Tuesday, March 08, 2011 8:29 AM Kukjin Kim wrote: Hello, There are comments for your System MMU driver below. Please take into account that this was an initial version of our SYSMMU driver to start the discussion, so there were a few minor problems left. Thanks for pointing them

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread David Cohen
Hi Fernando, On Tue, Mar 8, 2011 at 11:13 AM, Sakari Ailus sakari.ai...@maxwell.research.nokia.com wrote: Guzman Lugo, Fernando wrote: On Mon, Mar 7, 2011 at 1:19 PM, David Cohen daco...@gmail.com wrote: On Mon, Mar 7, 2011 at 9:17 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On

Re: [RFC/PATCH 1/2] v4l: videobuf2: Handle buf_queue errors

2011-03-08 Thread Laurent Pinchart
Hi Pawel, On Monday 07 March 2011 00:20:36 Pawel Osciak wrote: On Tue, Mar 1, 2011 at 02:54, Laurent Pinchart wrote: On Monday 28 February 2011 16:44:38 Pawel Osciak wrote: Hi Laurent, A few questions from me below. I feel we need to talk about this change a bit more, it introduces some

RE: V4L2 'brainstorming' meeting in Warsaw, March 2011

2011-03-08 Thread Marek Szyprowski
Hello once again, I will come to Polonia Palace Hotel on Wednesday morning. I propose to meet near the reception desk at 8:45 AM and then we will come together to the SPRC Office. If one decided to stay in a different hotel, he can also join us near the SPRC Office building at 9:00 AM. In case

RE: V4L2 'brainstorming' meeting in Warsaw, March 2011

2011-03-08 Thread Marek Szyprowski
Hello once again, I will come to Polonia Palace Hotel on Wednesday morning. I propose to meet near the reception desk at 8:45 AM and then we will come together to the SPRC Office. If one decided to stay in a different hotel, he can also join us near the SPRC Office building at 9:00 AM. In case

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

2011-03-08 Thread Kyungmin Park
Dear Jonghun, It's also helpful to explain what's the original purpose of UMP (for GPU, MALI) and what's the goal of UMP usage for multimedia stack. Especially, what's the final goal of UMP from LSI. Also consider the previous GPU memory management program, e.g., SGX. Thank you, Kyungmin Park

[PATCH 0/3] omap: iovmm: Fix IOVMM check for fixed 'da'

2011-03-08 Thread David Cohen
IOVMM driver checks input 'da == 0' when mapping address to determine whether user wants fixed 'da' or not. At the same time, it doesn't disallow address 0x0 to be used, what creates an ambiguous situation. This patch set moves fixed 'da' check to the input flags. It also fixes da_start value for

[PATCH 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread David Cohen
ISP doesn't consider 0x0 as a valid address, so it should explicitly exclude first page from allowed 'da' range. Signed-off-by: David Cohen daco...@gmail.com --- arch/arm/mach-omap2/omap-iommu.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATCH 1/3] omap: iovmm: disallow mapping NULL address

2011-03-08 Thread David Cohen
From: Michael Jones michael.jo...@matrix-vision.de commit c7f4ab26e3bcdaeb3e19ec658e3ad9092f1a6ceb allowed mapping the NULL address if da_start==0, which would then not get unmapped. Disallow this again. And spell variable 'alignment' correctly. Signed-off-by: Michael Jones

[PATCH 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED/IOVMF_DA_ANON flags

2011-03-08 Thread David Cohen
Currently IOVMM driver sets IOVMF_DA_FIXED/IOVMF_DA_ANON flags according to input 'da' address when mapping memory: da == 0: IOVMF_DA_ANON da != 0: IOVMF_DA_FIXED It prevents IOMMU to map first page with fixed 'da'. To avoid such issue, IOVMM will not automatically set IOVMF_DA_FIXED. It should

Re: [PATCH 0/3] omap: iovmm: Fix IOVMM check for fixed 'da'

2011-03-08 Thread Hiroshi DOYU
From: ext David Cohen daco...@gmail.com Subject: [PATCH 0/3] omap: iovmm: Fix IOVMM check for fixed 'da' Date: Tue, 8 Mar 2011 14:46:02 +0200 IOVMM driver checks input 'da == 0' when mapping address to determine whether user wants fixed 'da' or not. At the same time, it doesn't disallow address

Re: [PATCH] v4l: soc-camera: Store negotiated buffer settings

2011-03-08 Thread Sergio Aguirre
Hi Guennadi, On 03/08/2011 01:19 AM, Guennadi Liakhovetski wrote: On Mon, 7 Mar 2011, Sergio Aguirre wrote: This fixes the problem in which a host driver sets a personalized sizeimage or bytesperline field, and gets ignored when doing G_FMT. Can you tell what that personalised value is? Is

Re: [PATCH 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread Sakari Ailus
David Cohen wrote: ISP doesn't consider 0x0 as a valid address, so it should explicitly exclude first page from allowed 'da' range. Signed-off-by: David Cohen daco...@gmail.com --- arch/arm/mach-omap2/omap-iommu.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

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

2011-03-08 Thread Laurent Pinchart
Hi Andy, On Tuesday 08 March 2011 15:01:10 Andy Walls wrote: On Tue, 2011-03-08 at 09:13 +0100, Hans Verkuil wrote: Hi all, We had a discussion yesterday regarding ways in which linaro can assist V4L2 development. One topic was that of sorting out memory providers like GEM and HWMEM.

Re: [GIT PULL FOR 2.6.39] s5p-fimc driver and videobuf2 fixes

2011-03-08 Thread Sylwester Nawrocki
Mauro, please ignore the below pull request. I've found some issues in s5p-fimc patches so I want to fix this and resent the pull request. My apologies for the hassle. Regards, Sylwester On 03/04/2011 11:53 AM, Sylwester Nawrocki wrote: Hi Mauro, please pull the following change set, it's

Re: [PATCH 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread David Cohen
Hi Sakari, On Tue, Mar 8, 2011 at 4:06 PM, Sakari Ailus sakari.ai...@maxwell.research.nokia.com wrote: David Cohen wrote: ISP doesn't consider 0x0 as a valid address, so it should explicitly exclude first page from allowed 'da' range. Signed-off-by: David Cohen daco...@gmail.com ---  

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

2011-03-08 Thread Hans Verkuil
On Tuesday, March 08, 2011 15:01:10 Andy Walls wrote: On Tue, 2011-03-08 at 09:13 +0100, Hans Verkuil wrote: Hi all, We had a discussion yesterday regarding ways in which linaro can assist V4L2 development. One topic was that of sorting out memory providers like GEM and HWMEM.

Re: WinTV HVR-900 (usb 2040:6500) (model 65008) / no audio but clicking noise

2011-03-08 Thread AW
hi! i was able to find an antenna position/orientation that allows good quality for 7 stations with SNR above 0x78... *wag tail* up to 4 stations with just one stick at the same time... *w00t* so it is not as urgent as before that the analog audio part works... thx... bye arne -- To

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread Guzman Lugo, Fernando
On Tue, Mar 8, 2011 at 3:13 AM, Sakari Ailus sakari.ai...@maxwell.research.nokia.com wrote: Guzman Lugo, Fernando wrote: On Mon, Mar 7, 2011 at 1:19 PM, David Cohen daco...@gmail.com wrote: On Mon, Mar 7, 2011 at 9:17 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Mon, Mar 7, 2011

Re: [PATCH 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED/IOVMF_DA_ANON flags

2011-03-08 Thread David Cohen
Hi Hiroshi, Fernando, On Tue, Mar 8, 2011 at 8:53 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Tue, Mar 8, 2011 at 12:09 PM, Hiroshi DOYU hiroshi.d...@nokia.com wrote: From: ext Guzman Lugo, Fernando fernando.l...@ti.com Subject: Re: [PATCH 3/3] omap: iovmm: don't check 'da' to set

Re: [PATCH 1/3] omap: iovmm: disallow mapping NULL address

2011-03-08 Thread David Cohen
On Tue, Mar 8, 2011 at 8:06 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Tue, Mar 8, 2011 at 6:46 AM, David Cohen daco...@gmail.com wrote: From: Michael Jones michael.jo...@matrix-vision.de commit c7f4ab26e3bcdaeb3e19ec658e3ad9092f1a6ceb allowed mapping the NULL address if

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

2011-03-08 Thread Andy Walls
Hi LAurent, On Tue, 2011-03-08 at 16:52 +0100, Laurent Pinchart wrote: Hi Andy, [snip] It really shouldn't be that hard to get everyone involved together and settle on a single solution (either based on an existing proposal or create a 'the best of' vendor-neutral solution).

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

2011-03-08 Thread Laurent Pinchart
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 settle on a single solution (either based on an existing proposal or create a

[cron job] v4l-dvb daily build: ERRORS

2011-03-08 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 8 19:01:09 CET 2011 git hash:88a763df226facb74fdb254563e30e9efb64275c gcc version: i686-linux-gcc (GCC)

Re: Hauppauge WinTV USB 2

2011-03-08 Thread Vivek Periaraj
Hi, Can anyone pls confirm this is fixed in the latest v4l driver? I am using the one in the kernel 2.6.38-rc6. My feeling is that tuning is not working properly because of this error. Thanks, Vivek. On Monday 07 March 2011 19:26:58 Vivek Periaraj wrote: Hello Folks, I am having hardtime

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

2011-03-08 Thread Andy Walls
Hi Hans, On Tue, 2011-03-08 at 18:23 +0100, Hans Verkuil wrote: Single might be making the problem impossibly hard to solve well. One-size-fits-all solutions have a tendency to fall short on meeting someone's critical requirement. I will agree that less than n, for some small n, is

Re: [PATCH 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED/IOVMF_DA_ANON flags

2011-03-08 Thread Guzman Lugo, Fernando
On Tue, Mar 8, 2011 at 12:57 PM, David Cohen daco...@gmail.com wrote: Hi Hiroshi, Fernando, On Tue, Mar 8, 2011 at 8:53 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Tue, Mar 8, 2011 at 12:09 PM, Hiroshi DOYU hiroshi.d...@nokia.com wrote: From: ext Guzman Lugo, Fernando

Re: [PATCH 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED/IOVMF_DA_ANON flags

2011-03-08 Thread David Cohen
[snip] -       flags |= (da ? IOVMF_DA_FIXED : IOVMF_DA_ANON); +       if (~flags IOVMF_DA_FIXED) +               flags |= IOVMF_DA_ANON; could we use only one? both are mutual exclusive, what happen if flag is IOVMF_DA_FIXED | IOVMF_DA_ANON? so, I suggest to get rid of IOVMF_DA_ANON.

Re: [PATCH 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED/IOVMF_DA_ANON flags

2011-03-08 Thread David Cohen
On Tue, Mar 8, 2011 at 9:46 PM, David Cohen daco...@gmail.com wrote: [snip] -       flags |= (da ? IOVMF_DA_FIXED : IOVMF_DA_ANON); +       if (~flags IOVMF_DA_FIXED) +               flags |= IOVMF_DA_ANON; could we use only one? both are mutual exclusive, what happen if flag is

Re: [PATCH 1/3] omap: iovmm: disallow mapping NULL address

2011-03-08 Thread Guzman Lugo, Fernando
On Tue, Mar 8, 2011 at 1:06 PM, David Cohen daco...@gmail.com wrote: On Tue, Mar 8, 2011 at 8:06 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Tue, Mar 8, 2011 at 6:46 AM, David Cohen daco...@gmail.com wrote: From: Michael Jones michael.jo...@matrix-vision.de commit

Re: [PATCH 1/3] omap: iovmm: disallow mapping NULL address

2011-03-08 Thread David Cohen
On Tue, Mar 8, 2011 at 9:53 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Tue, Mar 8, 2011 at 1:06 PM, David Cohen daco...@gmail.com wrote: On Tue, Mar 8, 2011 at 8:06 PM, Guzman Lugo, Fernando fernando.l...@ti.com wrote: On Tue, Mar 8, 2011 at 6:46 AM, David Cohen daco...@gmail.com

Re: [PATCH v2 0/3] *** SUBJECT HERE ***

2011-03-08 Thread David Cohen
On Tue, Mar 8, 2011 at 10:04 PM, David Cohen daco...@gmail.com wrote: *** BLURB HERE *** Sorry for this garbage :/ Br, David David Cohen (2):  omap3: change ISP's IOMMU da_start address  omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED flag Michael Jones (1):  omap: iovmm: disallow

[PATCH v2 0/3] omap: iovmm: Fix IOVMM check for fixed 'da'

2011-03-08 Thread David Cohen
IOVMM driver checks input 'da == 0' when mapping address to determine whether user wants fixed 'da' or not. At the same time, it doesn't disallow address 0x0 to be used, what creates an ambiguous situation. This patch set moves fixed 'da' check to the input flags. It also fixes da_start value for

[PATCH v2 1/3] omap: iovmm: disallow mapping NULL address when IOVMF_DA_ANON is set

2011-03-08 Thread David Cohen
From: Michael Jones michael.jo...@matrix-vision.de commit c7f4ab26e3bcdaeb3e19ec658e3ad9092f1a6ceb allowed mapping the NULL address if da_start==0, which would then not get unmapped. Disallow this again if IOVMF_DA_ANON is set. And spell variable 'alignment' correctly. Signed-off-by: Michael

[PATCH v2 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread David Cohen
ISP doesn't consider 0x0 as a valid address, so it should explicitly exclude first page from allowed 'da' range. Signed-off-by: David Cohen daco...@gmail.com --- arch/arm/mach-omap2/omap-iommu.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATCH v2 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED flag

2011-03-08 Thread David Cohen
Currently IOVMM driver sets IOVMF_DA_FIXED/IOVMF_DA_ANON flags according to input 'da' address when mapping memory: da == 0: IOVMF_DA_ANON da != 0: IOVMF_DA_FIXED It prevents IOMMU to map first page with fixed 'da'. To avoid such issue, IOVMM will not automatically set IOVMF_DA_FIXED. It should

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread Laurent Pinchart
Hi David, On Monday 07 March 2011 22:35:31 David Cohen wrote: On Mon, Mar 7, 2011 at 11:19 PM, Laurent Pinchart wrote: On Monday 07 March 2011 20:41:21 David Cohen wrote: On Mon, Mar 7, 2011 at 9:25 PM, Guzman Lugo, Fernando wrote: On Mon, Mar 7, 2011 at 1:19 PM, David Cohen wrote: On

Re: [PATCH v2 1/3] omap: iovmm: disallow mapping NULL address when IOVMF_DA_ANON is set

2011-03-08 Thread Guzman Lugo, Fernando
On Tue, Mar 8, 2011 at 2:15 PM, David Cohen daco...@gmail.com wrote: From: Michael Jones michael.jo...@matrix-vision.de commit c7f4ab26e3bcdaeb3e19ec658e3ad9092f1a6ceb allowed mapping the NULL address if da_start==0, which would then not get unmapped. Disallow this again if IOVMF_DA_ANON is

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread Guzman Lugo, Fernando
On Tue, Mar 8, 2011 at 2:31 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi David, On Monday 07 March 2011 22:35:31 David Cohen wrote: On Mon, Mar 7, 2011 at 11:19 PM, Laurent Pinchart wrote: On Monday 07 March 2011 20:41:21 David Cohen wrote: On Mon, Mar 7, 2011 at 9:25

Re: [PATCH v2 3/3] omap: iovmm: don't check 'da' to set IOVMF_DA_FIXED flag

2011-03-08 Thread Guzman Lugo, Fernando
On Tue, Mar 8, 2011 at 2:15 PM, David Cohen daco...@gmail.com wrote: Currently IOVMM driver sets IOVMF_DA_FIXED/IOVMF_DA_ANON flags according to input 'da' address when mapping memory: da == 0: IOVMF_DA_ANON da != 0: IOVMF_DA_FIXED It prevents IOMMU to map first page with fixed 'da'. To

Re: [PATCH] omap: iommu: disallow mapping NULL address

2011-03-08 Thread David Cohen
On Tue, Mar 8, 2011 at 10:31 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi David, On Monday 07 March 2011 22:35:31 David Cohen wrote: On Mon, Mar 7, 2011 at 11:19 PM, Laurent Pinchart wrote: On Monday 07 March 2011 20:41:21 David Cohen wrote: On Mon, Mar 7, 2011 at 9:25

Re: [RFC PATCH RESEND v2 3/3] v4l2-ctrls: document the changes about auto focus mode

2011-03-08 Thread Sylwester Nawrocki
Hi HeungJun, On 03/03/2011 04:22 PM, Laurent Pinchart wrote: Hi, On Thursday 03 March 2011 15:34:36 Kim HeungJun wrote: 2011. 3. 3., 오후 10:24, Laurent Pinchart 작성: On Thursday 03 March 2011 14:17:10 Kim HeungJun wrote: 2011. 3. 3., 오후 7:08, Laurent Pinchart 작성: On Thursday 03 March 2011

Re: BUG at mm/mmap.c:2309 when cx18.ko and cx18-alsa.ko loaded

2011-03-08 Thread Andy Walls
On Sun, 2011-03-06 at 16:04 -0500, Andy Walls wrote: On Sun, 2011-03-06 at 10:37 -0800, Hugh Dickins wrote: Thanks for all the effort you are putting into investigating this: you deserve a better response than I can give you. mm/vmalloc.c's vmap_area handling is entirely separate

Re: [RFC PATCH RESEND v2 3/3] v4l2-ctrls: document the changes about auto focus mode

2011-03-08 Thread Kim, HeungJun
Hi Sylwester, 2011-03-09 오전 8:08, Sylwester Nawrocki 쓴 글: Hi HeungJun, On 03/03/2011 04:22 PM, Laurent Pinchart wrote: Hi, On Thursday 03 March 2011 15:34:36 Kim HeungJun wrote: 2011. 3. 3., 오후 10:24, Laurent Pinchart 작성: On Thursday 03 March 2011 14:17:10 Kim HeungJun wrote: 2011. 3.

RE: [ANN] First draft of the agenda for the Warsaw meeting

2011-03-08 Thread Jaeryul Oh
Hi, Hans We want to confirm if it is possible to discuss our concerning points at each item of 1st draft that you made as below. Our concerning items that we want to discuss are : 1. Issues when using V4l2 control framework with codec :

Re: [PATCH v2 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread Sakari Ailus
David Cohen wrote: ISP doesn't consider 0x0 as a valid address, so it should explicitly exclude first page from allowed 'da' range. Signed-off-by: David Cohen daco...@gmail.com --- arch/arm/mach-omap2/omap-iommu.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

Re: [PATCH v2 1/3] omap: iovmm: disallow mapping NULL address when IOVMF_DA_ANON is set

2011-03-08 Thread Michael Jones
On 03/08/2011 09:31 PM, Guzman Lugo, Fernando wrote: On Tue, Mar 8, 2011 at 2:15 PM, David Cohen daco...@gmail.com wrote: From: Michael Jones michael.jo...@matrix-vision.de commit c7f4ab26e3bcdaeb3e19ec658e3ad9092f1a6ceb allowed mapping the NULL address if da_start==0, which would then not