Re: [PATCH] OMAP_LDP: Support LCD display as a FB device on ZOOM MDK (Re: LDP support)

2009-05-16 Thread Russell King - ARM Linux
On Fri, May 08, 2009 at 07:47:09PM +0300, Kalle Valo wrote: stanley.miao stanley.m...@windriver.com writes: Looks like you used the CodeSourcery 2007q3 toolchain. This had been reported earlier. Switching to 2008q3 works. Yeah, Now the kernel booted. it's compiler's problem. I was

Re: [PATCH 3/6] omap iommu: omap3 iommu device registration

2009-05-16 Thread Russell King - ARM Linux
On Tue, May 05, 2009 at 03:47:00PM +0300, Hiroshi DOYU wrote: +static struct resource omap3_iommu_res[] = { + { /* Camera ISP MMU */ + .start = OMAP3_MMU1_BASE, + .end= OMAP3_MMU1_BASE + MMU_REG_SIZE - 1, + .flags =

Re: [PATCH 4/6] omap iommu: simple virtual address space management

2009-05-16 Thread Russell King - ARM Linux
On Tue, May 05, 2009 at 03:47:06PM +0300, Hiroshi DOYU wrote: +int ioremap_page(unsigned long virt, unsigned long phys, unsigned int mtype) +{ + const struct mem_type *type; + + type = get_mem_type(mtype); + if (!type) + return -EINVAL; I think it would make more

Re: [RESUBMIT][PATCH 2/7] OMAP4: Create board support for OMAP_4430SDP.

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 11:59:11AM +0530, Santosh Shilimkar wrote: This patch creates the bare minimal board files to support OMAP_4430SDP. Additinaly new omap44xx.h is created which contains the base addresses for OMAP4430.File omap34xx.h is adapted to avoid A space after a full stop (after

Re: [PATCH 3/6] omap iommu: omap3 iommu device registration

2009-05-16 Thread Felipe Contreras
On Sat, May 16, 2009 at 12:20 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Tue, May 05, 2009 at 03:47:00PM +0300, Hiroshi DOYU wrote: +static struct resource omap3_iommu_res[] = { +     { /* Camera ISP MMU */ +             .start          = OMAP3_MMU1_BASE, +             .end

Re: [RESUBMIT][PATCH 4/7] OMAP4: Update common omap platform common sources.

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 11:59:13AM +0530, Santosh Shilimkar wrote: @@ -309,3 +313,26 @@ void __init omap2_set_globals_343x(void) } #endif +#if defined(CONFIG_ARCH_OMAP4) +static struct omap_globals *omap4_globals; + +static void __init __omap4_set_globals(void) +{ +

Re: [PATCH 3/6] omap iommu: omap3 iommu device registration

2009-05-16 Thread Russell King - ARM Linux
On Sat, May 16, 2009 at 12:38:23PM +0300, Felipe Contreras wrote: On Sat, May 16, 2009 at 12:20 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Tue, May 05, 2009 at 03:47:00PM +0300, Hiroshi DOYU wrote: +static struct resource omap3_iommu_res[] = { +     { /* Camera ISP MMU

Re: [PATCH 3/6] omap iommu: omap3 iommu device registration

2009-05-16 Thread Felipe Contreras
On Sat, May 16, 2009 at 12:54 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Sat, May 16, 2009 at 12:38:23PM +0300, Felipe Contreras wrote: On Sat, May 16, 2009 at 12:20 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Tue, May 05, 2009 at 03:47:00PM +0300, Hiroshi

[RFC/PATCH 0/3] omap3-iommu: cleanups and remote registration

2009-05-16 Thread Felipe Contreras
This patch series cleanups up a bit the opap3-iommu device registration and then allows registration from other parts of the code. Currently the iva2 code (tidspbridge) is not using iommu, therefore it can't be used as-is with the current omap iommu. By allowing devies to be registered externaly

[RFC/PATCH 1/3] omap3-iommu: reorganize

2009-05-16 Thread Felipe Contreras
From: Felipe Contreras felipe.contre...@nokia.com No functional changes. Signed-off-by: Felipe Contreras felipe.contre...@nokia.com --- arch/arm/mach-omap2/omap3-iommu.c | 72 ++-- 1 files changed, 36 insertions(+), 36 deletions(-) diff --git

[RFC/PATCH 2/3] omap3-iommu: split init function into omap_iommu_add

2009-05-16 Thread Felipe Contreras
In preparation for external registration. Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- arch/arm/mach-omap2/omap3-iommu.c | 76 - 1 files changed, 49 insertions(+), 27 deletions(-) diff --git a/arch/arm/mach-omap2/omap3-iommu.c

[RFC/PATCH 3/3] omap3-iommu: remote registration

2009-05-16 Thread Felipe Contreras
This allows devices to be registered only when they are used. The current dsp-bridge driver for example is not using iommu so registering the iommu iva2 device would conflict. By allowing remote registration the dsp-bridge can decide when the iommu iva2 device is registered. Signed-off-by: Felipe

Re: [RESUBMIT][PATCH 5/7] OMAP4: Update common omap machine specific sources.

2009-05-16 Thread Russell King - ARM Linux
I think this is going to take several separate reviews to group stuff together. On Thu, May 07, 2009 at 11:59:14AM +0530, Santosh Shilimkar wrote: This patch updates the common machine spcific source files for OMAP4430. Spelling - specific. diff --git a/arch/arm/mach-omap2/clockdomain.c

Re: [RESUBMIT][PATCH 5/7] OMAP4: Update common omap machine specific sources.

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 11:59:14AM +0530, Santosh Shilimkar wrote: @@ -196,7 +199,10 @@ void __init omap2_check_revision(void) * At this point we have an idea about the processor revision set * earlier with omap2_set_globals_tap(). */ - if (cpu_is_omap24xx()) +

Re: [RESUBMIT][PATCH 6/7] OMAP4: Clock stubs since clock management framework not in.

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 11:59:15AM +0530, Santosh Shilimkar wrote: This patch update the cooomon clock.c file for OMAP4. The clk_get() and Spelling - common. +/* This functions is moved to arch/arm/common/clkdev.c. For OMAP4 since + * clock framework is not up , it is defined here to avoid

Re: [PATCH 0/2] OMAP4: Patch series

2009-05-16 Thread Russell King - ARM Linux
On Tue, May 12, 2009 at 11:49:35AM +0530, Syed Rafiuddin wrote: This patch series enables McBSP and UART4 support for OMAP4430 development platform. The series contains: [PATCH 1/2]OMAP4: McBSP support for OMAP4430 [PATCH 2/2]OMAP4: UART4 support for OMAP4430 Not nice - you've replied to

Re: [PATCH 1/3] OMAP4: SMP: Add OMAP4430 SMP board files

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 12:59:24PM +0530, Santosh Shilimkar wrote: +/* + * OMAP4 specific entry point for secondary CPU to jump from ROM + * code. This routine also provides a holding flag into which + * secondary core is held until we're ready for it to initialise. + * The primary core will

Re: [PATCH 0/2] OMAP4: Patch series

2009-05-16 Thread Russell King - ARM Linux
On Sat, May 16, 2009 at 11:16:47AM +0100, Russell King - ARM Linux wrote: Santosh - I don't seem to have your SMP patch set, just your introductory message for them. Actually, I do have these patches, they just aren't threaded with your introductory message. -- To unsubscribe from this list:

Re: [PATCH 1/3] OMAP4: SMP: Add OMAP4430 SMP board files

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 01:46:54PM -0700, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [090507 00:29]: This patch adds SMP platform files support for OMAP4430SDP. TI's OMAP4430 SOC is based on ARM Cortex-A9 SMP architecture. It's a dual core SOC with GIC used for

Re: [PATCH 1/3] OMAP4: SMP: Add OMAP4430 SMP board files

2009-05-16 Thread Russell King - ARM Linux
On Fri, May 08, 2009 at 12:27:33PM +0530, Shilimkar, Santosh wrote: This is done using __enable_mmu in head.S. Bye the way even if the u-boot don't enable I-cache , D-caches, kernel does that anyways depending on settings. uboot should not be calling the kernel with caches enabled. This is

Re: [PATCH 0/3] OMAP4: SMP: Patch series

2009-05-16 Thread Russell King - ARM Linux
On Thu, May 07, 2009 at 12:47:30PM +0530, Shilimkar, Santosh wrote: [PATCH 1/3]OMAP4: SMP: Add OMAP4430 SMP board files [PATCH 2/3]OMAP4: SMP: Add mpu timer support for OMAP4430 [PATCH 3/3]OMAP4: SMP: Enable SMP support for OMAP4430 Overall comment - you seem to be re-using ARMs SCU and TWD

[RFC/PATCH 1/3] omap3-iommu: reorganize

2009-05-16 Thread Felipe Contreras
No functional changes. Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- arch/arm/mach-omap2/omap3-iommu.c | 72 ++-- 1 files changed, 36 insertions(+), 36 deletions(-) diff --git a/arch/arm/mach-omap2/omap3-iommu.c

Re: [PATCH 6/8] ARM: OMAP2/3: Change omapfb to use clkdev for dispc and rfbi

2009-05-16 Thread Tony Lindgren
* Russell King - ARM Linux li...@arm.linux.org.uk [090516 02:06]: On Thu, May 14, 2009 at 01:28:06PM -0700, Tony Lindgren wrote: commit 27db33cfadd3c47c9499def6e71aaf5d2fd51e60 Author: Tony Lindgren t...@atomide.com Date: Tue May 12 11:20:03 2009 -0700 ARM: OMAP2/3: Change omapfb

Re: [RESUBMIT][PATCH 5/7] OMAP4: Update common omap machine specific sources.

2009-05-16 Thread Tony Lindgren
* Russell King - ARM Linux li...@arm.linux.org.uk [090516 03:12]: On Thu, May 07, 2009 at 11:59:14AM +0530, Santosh Shilimkar wrote: @@ -196,7 +199,10 @@ void __init omap2_check_revision(void) * At this point we have an idea about the processor revision set * earlier with

Re: git pull request for omap-fixes, v2 (Re: [PATCH 0/8] Omap fixes for 2.6.30-rc5)

2009-05-16 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [090515 15:42]: Russell, * Tony Lindgren t...@atomide.com [090514 10:42]: Hi, Here are some omap fixes for 2.6.30-rc5 for review. Here's the pull request for you assuming you don't have any comments for these fixes. Updated pull request below with

Re: [PATCH 6/8] ARM: OMAP2/3: Change omapfb to use clkdev for dispc and rfbi

2009-05-16 Thread Russell King - ARM Linux
On Sat, May 16, 2009 at 08:25:43AM -0700, Tony Lindgren wrote: The code does not work for omap3 without this patch because of the different clock names. It only works for 24xx. And because of the different source clocks, it's pointless trying to fix it in any other way for -rc series. If

Re: git pull request for omap-fixes, v3 (Re: [PATCH 0/8] Omap fixes for 2.6.30-rc5)

2009-05-16 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [090516 08:41]: * Tony Lindgren t...@atomide.com [090515 15:42]: Russell, * Tony Lindgren t...@atomide.com [090514 10:42]: Hi, Here are some omap fixes for 2.6.30-rc5 for review. Here's the pull request for you assuming you don't have any

Re: [RFC/PATCH 0/3] omap3-iommu: cleanups and remote registration

2009-05-16 Thread Felipe Contreras
On Sat, May 16, 2009 at 7:36 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Sat, May 16, 2009 at 01:05:47PM +0300, Felipe Contreras wrote: This patch series cleanups up a bit the opap3-iommu device registration and then allows registration from other parts of the code.

RE: [RESUBMIT][PATCH 4/7] OMAP4: Update common omap platform common sources.

2009-05-16 Thread Shilimkar, Santosh
Thanks Russell for scanning all the patches minutely !! -Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Saturday, May 16, 2009 3:24 PM To: Shilimkar, Santosh Cc: linux-arm-ker...@lists.arm.linux.org.uk; linux-omap@vger.kernel.org Subject:

RE: [RESUBMIT][PATCH 5/7] OMAP4: Update common omap machine specific sources.

2009-05-16 Thread Shilimkar, Santosh
-Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Saturday, May 16, 2009 3:38 PM To: Shilimkar, Santosh Cc: linux-arm-ker...@lists.arm.linux.org.uk; linux-omap@vger.kernel.org Subject: Re: [RESUBMIT][PATCH 5/7] OMAP4: Update common omap

RE: [RESUBMIT][PATCH 6/7] OMAP4: Clock stubs since clock management framework not in.

2009-05-16 Thread Shilimkar, Santosh
-Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Saturday, May 16, 2009 3:44 PM To: Shilimkar, Santosh Cc: linux-arm-ker...@lists.arm.linux.org.uk; linux-omap@vger.kernel.org Subject: Re: [RESUBMIT][PATCH 6/7] OMAP4: Clock stubs since

RE: [PATCH 0/2] OMAP4: Patch series

2009-05-16 Thread Shilimkar, Santosh
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Russell King - ARM Linux Sent: Saturday, May 16, 2009 3:59 PM To: Syed, Rafiuddin Cc: linux-arm-ker...@lists.arm.linux.org.uk; linux-omap@vger.kernel.org Subject: