* Git tree updated
@ 2007-05-08 3:19 Tony Lindgren
2007-05-08 12:05 ` Trilok Soni
` (2 more replies)
0 siblings, 3 replies; 20+ messages in thread
From: Tony Lindgren @ 2007-05-08 3:19 UTC (permalink / raw)
To: linux-omap-open-source
Hi all,
I've updated our git tree to be in sync with mainline tree as Russell
has merged some of our pending patches.
Looks like 24xx does not currently boot, it seems to hang at
devicemaps_init(). I've verified that at least 16xx boots.
I'll have to continue debugging the 24xx devicemaps_init issue tomorrow,
if somebody gets it working before that, please post the patch :)
Regards,
Tony
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: Git tree updated
2007-05-08 3:19 Git tree updated Tony Lindgren
@ 2007-05-08 12:05 ` Trilok Soni
2007-05-08 16:26 ` Tony Lindgren
2007-05-08 17:45 ` Woodruff, Richard
2007-05-10 15:49 ` Dirk Behme
2 siblings, 1 reply; 20+ messages in thread
From: Trilok Soni @ 2007-05-08 12:05 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-omap-open-source
[-- Attachment #1: Type: text/plain, Size: 610 bytes --]
Tony,
On 5/8/07, Tony Lindgren <tony@atomide.com> wrote:
> Hi all,
>
> I've updated our git tree to be in sync with mainline tree as Russell
> has merged some of our pending patches.
>
> Looks like 24xx does not currently boot, it seems to hang at
> devicemaps_init(). I've verified that at least 16xx boots.
>
> I'll have to continue debugging the 24xx devicemaps_init issue tomorrow,
> if somebody gets it working before that, please post the patch :)
>
arch/arm/mach-omap2/io.c seems have some duplication due to merging
problem it seems.
I have attached patch to remove those entries.
--
--Trilok Soni
[-- Attachment #2: 0001-ARM-OMAP-Remove-duplicate-entries-from-omap2-io.c.patch --]
[-- Type: text/x-patch, Size: 1835 bytes --]
From 80b2b47d373c840903e8c4dfa68b1485cd490c83 Mon Sep 17 00:00:00 2001
From: Trilok Soni <soni.trilok@gmail.com>
Date: Tue, 8 May 2007 23:05:25 +0530
Subject: [PATCH] ARM: OMAP: Remove duplicate entries from omap2 io.c
- Remove duplicate entries generated due to merging.
Signed-off-by: Trilok Soni <soni.trilok@gmail.com>
---
arch/arm/mach-omap2/io.c | 44 --------------------------------------------
1 files changed, 0 insertions(+), 44 deletions(-)
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c
index a88bd1e..fba2e86 100644
--- a/arch/arm/mach-omap2/io.c
+++ b/arch/arm/mach-omap2/io.c
@@ -88,50 +88,6 @@ static struct map_desc omap2_io_desc[] __initdata = {
.length = DSP_MMU_24XX_SIZE,
.type = MT_DEVICE
},
-#ifdef CONFIG_ARCH_OMAP2430
- {
- .virtual = L4_WK_243X_VIRT,
- .pfn = __phys_to_pfn(L4_WK_243X_PHYS),
- .length = L4_WK_243X_SIZE,
- .type = MT_DEVICE
- },
- {
- .virtual = OMAP243X_GPMC_VIRT,
- .pfn = __phys_to_pfn(OMAP243X_GPMC_PHYS),
- .length = OMAP243X_GPMC_SIZE,
- .type = MT_DEVICE
- },
- {
- .virtual = OMAP243X_SDRC_VIRT,
- .pfn = __phys_to_pfn(OMAP243X_SDRC_PHYS),
- .length = OMAP243X_SDRC_SIZE,
- .type = MT_DEVICE
- },
- {
- .virtual = OMAP243X_SMS_VIRT,
- .pfn = __phys_to_pfn(OMAP243X_SMS_PHYS),
- .length = OMAP243X_SMS_SIZE,
- .type = MT_DEVICE
- },
-#endif
- {
- .virtual = DSP_MEM_24XX_VIRT,
- .pfn = __phys_to_pfn(DSP_MEM_24XX_PHYS),
- .length = DSP_MEM_24XX_SIZE,
- .type = MT_DEVICE
- },
- {
- .virtual = DSP_IPI_24XX_VIRT,
- .pfn = __phys_to_pfn(DSP_IPI_24XX_PHYS),
- .length = DSP_IPI_24XX_SIZE,
- .type = MT_DEVICE
- },
- {
- .virtual = DSP_MMU_24XX_VIRT,
- .pfn = __phys_to_pfn(DSP_MMU_24XX_PHYS),
- .length = DSP_MMU_24XX_SIZE,
- .type = MT_DEVICE
- }
};
void __init omap2_map_common_io(void)
--
1.5.0
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: Git tree updated
2007-05-08 12:05 ` Trilok Soni
@ 2007-05-08 16:26 ` Tony Lindgren
0 siblings, 0 replies; 20+ messages in thread
From: Tony Lindgren @ 2007-05-08 16:26 UTC (permalink / raw)
To: Trilok Soni; +Cc: linux-omap-open-source
* Trilok Soni <soni.trilok@gmail.com> [070508 05:06]:
> Tony,
>
> On 5/8/07, Tony Lindgren <tony@atomide.com> wrote:
> >Hi all,
> >
> >I've updated our git tree to be in sync with mainline tree as Russell
> >has merged some of our pending patches.
> >
> >Looks like 24xx does not currently boot, it seems to hang at
> >devicemaps_init(). I've verified that at least 16xx boots.
> >
> >I'll have to continue debugging the 24xx devicemaps_init issue tomorrow,
> >if somebody gets it working before that, please post the patch :)
> >
>
> arch/arm/mach-omap2/io.c seems have some duplication due to merging
> problem it seems.
> I have attached patch to remove those entries.
Ah, thanks, it's that thing again!
OK I need to get it merged in the omap-upstream branch, otherwise
the automerge always seems to mess it up...
Regards,
Tony
^ permalink raw reply [flat|nested] 20+ messages in thread
* RE: Git tree updated
2007-05-08 3:19 Git tree updated Tony Lindgren
2007-05-08 12:05 ` Trilok Soni
@ 2007-05-08 17:45 ` Woodruff, Richard
2007-05-08 17:51 ` Syed Mohammed, Khasim
2007-05-10 15:49 ` Dirk Behme
2 siblings, 1 reply; 20+ messages in thread
From: Woodruff, Richard @ 2007-05-08 17:45 UTC (permalink / raw)
To: Tony Lindgren, linux-omap-open-source
I noticed that MMC doesn't compile either.
The include/linux/mmc/card.h structure mmc_card changed removing the
'node' element.
Regards,
Richard W.
> -----Original Message-----
> From: linux-omap-open-source-bounces@linux.omap.com
[mailto:linux-omap-
> open-source-bounces@linux.omap.com] On Behalf Of Tony Lindgren
> Sent: Monday, May 07, 2007 10:20 PM
> To: linux-omap-open-source@linux.omap.com
> Subject: Git tree updated
>
> Hi all,
>
> I've updated our git tree to be in sync with mainline tree as Russell
> has merged some of our pending patches.
>
> Looks like 24xx does not currently boot, it seems to hang at
> devicemaps_init(). I've verified that at least 16xx boots.
>
> I'll have to continue debugging the 24xx devicemaps_init issue
tomorrow,
> if somebody gets it working before that, please post the patch :)
>
> Regards,
>
> Tony
> _______________________________________________
> Linux-omap-open-source mailing list
> Linux-omap-open-source@linux.omap.com
> http://linux.omap.com/mailman/listinfo/linux-omap-open-source
^ permalink raw reply [flat|nested] 20+ messages in thread
* RE: Git tree updated
2007-05-08 17:45 ` Woodruff, Richard
@ 2007-05-08 17:51 ` Syed Mohammed, Khasim
2007-05-08 17:58 ` Tony Lindgren
0 siblings, 1 reply; 20+ messages in thread
From: Syed Mohammed, Khasim @ 2007-05-08 17:51 UTC (permalink / raw)
To: Woodruff, Richard, Tony Lindgren, linux-omap-open-source
Yeah, I was also getting an error for the "if(i2c_del_driver" in twl4030 driver. The i2c_del_driver is a void function and we were testing the return condition.
static void __exit twl4030_exit(void)
{
if (i2c_del_driver(&twl4030_driver))
printk(KERN_ERR
"TWL4030: Driver remove failed, module not removed\n");
Temporarily I disabled MMC and corrected io.c and T2. 2430 SDP hangs while booting, I think this is what Tony was debugging yesterday.
Uncompressing Linux.............................................................
................................. done, booting the kernel.
<5>Linux version 2.6.21-omap1-gf2c4487d-dirty (khasim@omap-linux2) (gcc version
4.1.1 (CodeSourcery ARM Sourcery G++ 2006q3-26)) #1 PREEMPT Tue May 8 12:36:26 C
DT 2007
CPU: ARMv6-compatible processor [4107b366] revision 6 (ARMv6TEJ), cr=00c5387f
Machine: OMAP2430 sdp2430 board
Memory policy: ECC disabled, Data cache writeback
<7>On node 0 totalpages: 32768
<7> DMA zone: 256 pages used for memmap
<7> DMA zone: 0 pages reserved
<7> DMA zone: 32512 pages, LIFO batch:7
<7> Normal zone: 0 pages used for memmap
>-----Original Message-----
>From: linux-omap-open-source-bounces@linux.omap.com [mailto:linux-omap-
>open-source-bounces@linux.omap.com] On Behalf Of Woodruff, Richard
>Sent: Tuesday, May 08, 2007 12:45 PM
>To: Tony Lindgren; linux-omap-open-source@linux.omap.com
>Subject: RE: Git tree updated
>
>I noticed that MMC doesn't compile either.
>
>The include/linux/mmc/card.h structure mmc_card changed removing the
>'node' element.
>
>Regards,
>Richard W.
>
>> -----Original Message-----
>> From: linux-omap-open-source-bounces@linux.omap.com
>[mailto:linux-omap-
>> open-source-bounces@linux.omap.com] On Behalf Of Tony Lindgren
>> Sent: Monday, May 07, 2007 10:20 PM
>> To: linux-omap-open-source@linux.omap.com
>> Subject: Git tree updated
>>
>> Hi all,
>>
>> I've updated our git tree to be in sync with mainline tree as Russell
>> has merged some of our pending patches.
>>
>> Looks like 24xx does not currently boot, it seems to hang at
>> devicemaps_init(). I've verified that at least 16xx boots.
>>
>> I'll have to continue debugging the 24xx devicemaps_init issue
>tomorrow,
>> if somebody gets it working before that, please post the patch :)
>>
>> Regards,
>>
>> Tony
>> _______________________________________________
>> Linux-omap-open-source mailing list
>> Linux-omap-open-source@linux.omap.com
>> http://linux.omap.com/mailman/listinfo/linux-omap-open-source
>_______________________________________________
>Linux-omap-open-source mailing list
>Linux-omap-open-source@linux.omap.com
>http://linux.omap.com/mailman/listinfo/linux-omap-open-source
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: Git tree updated
2007-05-08 17:51 ` Syed Mohammed, Khasim
@ 2007-05-08 17:58 ` Tony Lindgren
2007-05-08 18:02 ` Syed Mohammed, Khasim
0 siblings, 1 reply; 20+ messages in thread
From: Tony Lindgren @ 2007-05-08 17:58 UTC (permalink / raw)
To: Syed Mohammed, Khasim; +Cc: linux-omap-open-source
* Syed Mohammed, Khasim <x0khasim@ti.com> [070508 10:52]:
> Yeah, I was also getting an error for the "if(i2c_del_driver" in twl4030 driver. The i2c_del_driver is a void function and we were testing the return condition.
>
> static void __exit twl4030_exit(void)
> {
> if (i2c_del_driver(&twl4030_driver))
> printk(KERN_ERR
> "TWL4030: Driver remove failed, module not removed\n");
>
> Temporarily I disabled MMC and corrected io.c and T2. 2430 SDP hangs while booting, I think this is what Tony was debugging yesterday.
Yeah, I thought Trilok's patch fixed this, but it seems it not the
case, 24xx still does not boot.
Tony
^ permalink raw reply [flat|nested] 20+ messages in thread* RE: Git tree updated
2007-05-08 17:58 ` Tony Lindgren
@ 2007-05-08 18:02 ` Syed Mohammed, Khasim
2007-05-08 18:19 ` Tony Lindgren
0 siblings, 1 reply; 20+ messages in thread
From: Syed Mohammed, Khasim @ 2007-05-08 18:02 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-omap-open-source
>Yeah, I thought Trilok's patch fixed this, but it seems it not the
>case, 24xx still does not boot.
I applied Trilok's patch, but still it doesn't boot on 2430 SDP. Need to debug more.
Regards,
Khasim
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Git tree updated
2007-05-08 18:02 ` Syed Mohammed, Khasim
@ 2007-05-08 18:19 ` Tony Lindgren
2007-05-08 18:44 ` Syed Mohammed, Khasim
0 siblings, 1 reply; 20+ messages in thread
From: Tony Lindgren @ 2007-05-08 18:19 UTC (permalink / raw)
To: Syed Mohammed, Khasim; +Cc: linux-omap-open-source
[-- Attachment #1: Type: text/plain, Size: 283 bytes --]
* Syed Mohammed, Khasim <x0khasim@ti.com> [070508 11:02]:
> >Yeah, I thought Trilok's patch fixed this, but it seems it not the
> >case, 24xx still does not boot.
>
> I applied Trilok's patch, but still it doesn't boot on 2430 SDP. Need to debug more.
Found it, see below.
Tony
[-- Attachment #2: fix-24xx-boot.patch --]
[-- Type: text/x-diff, Size: 482 bytes --]
Fix booting of 24xx
Looks like automerge again...
Signed-off-by: Tony Lindgren <tony@atomide.com>
--- a/arch/arm/mach-omap2/io.c
+++ b/arch/arm/mach-omap2/io.c
@@ -42,6 +42,12 @@ static struct map_desc omap2_io_desc[] __initdata = {
.length = L3_24XX_SIZE,
.type = MT_DEVICE
},
+ {
+ .virtual = L4_24XX_VIRT,
+ .pfn = __phys_to_pfn(L4_24XX_PHYS),
+ .length = L4_24XX_SIZE,
+ .type = MT_DEVICE
+ },
#ifdef CONFIG_ARCH_OMAP2430
{
.virtual = L4_WK_243X_VIRT,
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Git tree updated
2007-05-08 3:19 Git tree updated Tony Lindgren
2007-05-08 12:05 ` Trilok Soni
2007-05-08 17:45 ` Woodruff, Richard
@ 2007-05-10 15:49 ` Dirk Behme
2007-05-10 16:03 ` Tony Lindgren
2 siblings, 1 reply; 20+ messages in thread
From: Dirk Behme @ 2007-05-10 15:49 UTC (permalink / raw)
To: Tony Lindgren, linux-omap-open-source
Tony Lindgren wrote:
> I've updated our git tree to be in sync with mainline tree as Russell
> has merged some of our pending patches.
Looks like some stuff went upstream:
http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git&a=search&h=HEAD&st=commit&s=OMAP
:)
Dirk
^ permalink raw reply [flat|nested] 20+ messages in thread
* Git tree updated
@ 2007-07-11 13:04 Tony Lindgren
2007-07-11 16:51 ` Syed Mohammed, Khasim
0 siblings, 1 reply; 20+ messages in thread
From: Tony Lindgren @ 2007-07-11 13:04 UTC (permalink / raw)
To: linux-omap-open-source
Hi all,
I've updated our git tree to 2.6.22 and posted 2.6.22-omap1 to the
usual places.
I've also merged Khasim's 3430 patches which should not affect other
platforms. Please report in case you see some breakage.
I'm mostly on vacation during July, so my response time may be slow,
I'll try to check my email few times a week though :)
Regards,
Tony
^ permalink raw reply [flat|nested] 20+ messages in thread
* RE: Git tree updated
2007-07-11 13:04 Tony Lindgren
@ 2007-07-11 16:51 ` Syed Mohammed, Khasim
2007-07-11 23:24 ` Kyungmin Park
0 siblings, 1 reply; 20+ messages in thread
From: Syed Mohammed, Khasim @ 2007-07-11 16:51 UTC (permalink / raw)
To: Tony Lindgren, linux-omap-open-source
>I've updated our git tree to 2.6.22 and posted 2.6.22-omap1 to the
>usual places.
>
>I've also merged Khasim's 3430 patches which should not affect other
>platforms. Please report in case you see some breakage.
>
>I'm mostly on vacation during July, so my response time may be slow,
>I'll try to check my email few times a week though :)
>
I validated 2420 H4, 2430 SDP and 3430 SDP on this merge. Every thing seems to be booting fine, I didn't find any new issues as such.
Tony, thanks for considering 3430 patches and working during vacation :)
Regards,
Khasim
^ permalink raw reply [flat|nested] 20+ messages in thread
* RE: Git tree updated
2007-07-11 16:51 ` Syed Mohammed, Khasim
@ 2007-07-11 23:24 ` Kyungmin Park
[not found] ` <ae36f8040707111843m274eb2fdlc0c38042c6af8daa@mail.gmail.com>
0 siblings, 1 reply; 20+ messages in thread
From: Kyungmin Park @ 2007-07-11 23:24 UTC (permalink / raw)
To: 'Syed Mohammed, Khasim', 'Tony Lindgren',
linux-omap-open-source
> >I've updated our git tree to 2.6.22 and posted 2.6.22-omap1 to the
> >usual places.
> >
> >I've also merged Khasim's 3430 patches which should not affect other
> >platforms. Please report in case you see some breakage.
> >
> >I'm mostly on vacation during July, so my response time may be slow,
> >I'll try to check my email few times a week though :)
> >
>
> I validated 2420 H4, 2430 SDP and 3430 SDP on this merge. Every thing seems to be booting fine, I
> didn't find any new issues as such.
>
It's OK with 2420 Apollon & Apollon Plus.
Thank you,
Kyungmin Park
^ permalink raw reply [flat|nested] 20+ messages in thread
* Git tree updated
@ 2007-03-01 14:33 Tony Lindgren
2007-03-16 18:57 ` Dirk Behme
0 siblings, 1 reply; 20+ messages in thread
From: Tony Lindgren @ 2007-03-01 14:33 UTC (permalink / raw)
To: linux-omap-open-source
Hi all,
As discussed earlier, I've made some changes to our git tree to make it
easier to send patches upstream. I've added some branches internally to
the git tree, and the master branch is based on these new branches.
>From usage point of view, this change is transparent. Git pull should
work as earlier, there are just new branches there. The master branch
is still our development branch, and the other branches are just queues
for upstream.
Now we have following branches:
linus
\
omap-fixes
\
omap-upstream
\
omap-drivers
\
master
The branches have following purpose:
linus Linus' mainline tree
omap-fixes Queue of omap fixes for -rcN series
omap-upstream Queue of omap core patches for next merge window
omap-drivers Queue of omap drivers for next merge window
master Linux omap tree
I'll be rebasing the omap-fixes, omap-upstream, and omap-drivers branches
against the mainline tree, and then merging the changes to the master
branch.
Sorry if this change took a bit longer than expected, I got interrupted
with few other things and was not happy with the branch layout until
today :)
In case anybody is wondering, I rebuilt the new master branch by
applying the patch queues on top of 2.6.20 to various branches,
and then merged in our old tree so the resulting trees were identical.
Today I also updated the new tree few times to make sure things work
out as planned, so the tree is now in sync with the mainline tree.
Regards,
Tony
^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2007-07-12 2:18 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-08 3:19 Git tree updated Tony Lindgren
2007-05-08 12:05 ` Trilok Soni
2007-05-08 16:26 ` Tony Lindgren
2007-05-08 17:45 ` Woodruff, Richard
2007-05-08 17:51 ` Syed Mohammed, Khasim
2007-05-08 17:58 ` Tony Lindgren
2007-05-08 18:02 ` Syed Mohammed, Khasim
2007-05-08 18:19 ` Tony Lindgren
2007-05-08 18:44 ` Syed Mohammed, Khasim
2007-05-10 15:49 ` Dirk Behme
2007-05-10 16:03 ` Tony Lindgren
-- strict thread matches above, loose matches on Subject: below --
2007-07-11 13:04 Tony Lindgren
2007-07-11 16:51 ` Syed Mohammed, Khasim
2007-07-11 23:24 ` Kyungmin Park
[not found] ` <ae36f8040707111843m274eb2fdlc0c38042c6af8daa@mail.gmail.com>
2007-07-12 1:44 ` Luís Vitório Cargnini
2007-07-12 2:03 ` Nishanth Menon
2007-07-12 2:18 ` Luís Vitório Cargnini
2007-03-01 14:33 Tony Lindgren
2007-03-16 18:57 ` Dirk Behme
2007-03-19 12:39 ` tony
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox