public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* kernel 2.6.19 porting
@ 2007-08-17 16:24 Xu Yang
  2007-08-18  5:28 ` Willy Tarreau
  0 siblings, 1 reply; 5+ messages in thread
From: Xu Yang @ 2007-08-17 16:24 UTC (permalink / raw)
  To: linux-kernel

Hi everyone,

I have built up a software virtual prototype system with ARM11MPCORE.
my system is similar with realview_eb_mpcore. but my system is
simpler, which has only a mpcore , uart0, console,timer0_1, and
memorys.

I want to run kernel 2.6.19 on it. I have done some modification, and
now I can just print out some information onto the console, and stuck
at

<7>Calibrating delay loop...

Could you guys give me some suggestion that what other adaptions
should I do according to my system?

any suggestion is welcome:)

thanks,

regards,

yang

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel 2.6.19 porting
  2007-08-17 16:24 kernel 2.6.19 porting Xu Yang
@ 2007-08-18  5:28 ` Willy Tarreau
  2007-08-18  9:58   ` Stefan Richter
  0 siblings, 1 reply; 5+ messages in thread
From: Willy Tarreau @ 2007-08-18  5:28 UTC (permalink / raw)
  To: Xu Yang; +Cc: linux-kernel

On Fri, Aug 17, 2007 at 06:24:17PM +0200, Xu Yang wrote:
> Hi everyone,
> 
> I have built up a software virtual prototype system with ARM11MPCORE.
> my system is similar with realview_eb_mpcore. but my system is
> simpler, which has only a mpcore , uart0, console,timer0_1, and
> memorys.
> 
> I want to run kernel 2.6.19 on it. I have done some modification, and
> now I can just print out some information onto the console, and stuck
> at
> 
> <7>Calibrating delay loop...
> 
> Could you guys give me some suggestion that what other adaptions
> should I do according to my system?

it's likely that one of your timers is not working. Adding a few
of printk() in the calibration function should help you.

> any suggestion is welcome:)

If you upgrade to a more recent kernel (eg: 2.6.22), you'll get
more feedback because it's fresher in people's mind.

Willy


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel 2.6.19 porting
  2007-08-18  5:28 ` Willy Tarreau
@ 2007-08-18  9:58   ` Stefan Richter
  2007-08-18 10:21     ` Xu Yang
  2007-08-18 10:22     ` Xu Yang
  0 siblings, 2 replies; 5+ messages in thread
From: Stefan Richter @ 2007-08-18  9:58 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: Xu Yang, linux-kernel

Willy Tarreau wrote:
> On Fri, Aug 17, 2007 at 06:24:17PM +0200, Xu Yang wrote:
>> I have built up a software virtual prototype system with ARM11MPCORE.
>> my system is similar with realview_eb_mpcore. but my system is
>> simpler, which has only a mpcore , uart0, console,timer0_1, and
>> memorys.
>>
>> I want to run kernel 2.6.19 on it.
...
> If you upgrade to a more recent kernel (eg: 2.6.22), you'll get
> more feedback because it's fresher in people's mind.

Also, newer kernels apparently have updates which are relevant to EB MPCore.
-- 
Stefan Richter
-=====-=-=== =--- =--=-
http://arcgraph.de/sr/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel 2.6.19 porting
  2007-08-18  9:58   ` Stefan Richter
@ 2007-08-18 10:21     ` Xu Yang
  2007-08-18 10:22     ` Xu Yang
  1 sibling, 0 replies; 5+ messages in thread
From: Xu Yang @ 2007-08-18 10:21 UTC (permalink / raw)
  To: Stefan Richter; +Cc: Willy Tarreau, linux-kernel

Hi Willy ,

thanks for your reply.

I am sure that my timer is working( TIMER0_1), because I checked the
register , it was counting , and the interrupt flag register also
gives out interrupts periodicly.
the problem is that it seems that the program just toggles here:
interrupt rountines, gic_ack(), interrupt handle
functions.............., my simulation enviorment also tells me that
invalid iqr id (0x21) is writen to EOI(end of interrupt).
I am also sure in the interrupt routine I clean the interrupt flag of the timer.

so this is roughly my situation.

does anyone have some idea?

thanks,

regards,

yang


2007/8/18, Stefan Richter <stefanr@s5r6.in-berlin.de>:
> Willy Tarreau wrote:
> > On Fri, Aug 17, 2007 at 06:24:17PM +0200, Xu Yang wrote:
> >> I have built up a software virtual prototype system with ARM11MPCORE.
> >> my system is similar with realview_eb_mpcore. but my system is
> >> simpler, which has only a mpcore , uart0, console,timer0_1, and
> >> memorys.
> >>
> >> I want to run kernel 2.6.19 on it.
> ...
> > If you upgrade to a more recent kernel (eg: 2.6.22), you'll get
> > more feedback because it's fresher in people's mind.
>
> Also, newer kernels apparently have updates which are relevant to EB MPCore.
> --
> Stefan Richter
> -=====-=-=== =--- =--=-
> http://arcgraph.de/sr/
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel 2.6.19 porting
  2007-08-18  9:58   ` Stefan Richter
  2007-08-18 10:21     ` Xu Yang
@ 2007-08-18 10:22     ` Xu Yang
  1 sibling, 0 replies; 5+ messages in thread
From: Xu Yang @ 2007-08-18 10:22 UTC (permalink / raw)
  To: Stefan Richter; +Cc: Willy Tarreau, linux-kernel

Ok I will try that.

thanks :)

2007/8/18, Stefan Richter <stefanr@s5r6.in-berlin.de>:
> Willy Tarreau wrote:
> > On Fri, Aug 17, 2007 at 06:24:17PM +0200, Xu Yang wrote:
> >> I have built up a software virtual prototype system with ARM11MPCORE.
> >> my system is similar with realview_eb_mpcore. but my system is
> >> simpler, which has only a mpcore , uart0, console,timer0_1, and
> >> memorys.
> >>
> >> I want to run kernel 2.6.19 on it.
> ...
> > If you upgrade to a more recent kernel (eg: 2.6.22), you'll get
> > more feedback because it's fresher in people's mind.
>
> Also, newer kernels apparently have updates which are relevant to EB MPCore.
> --
> Stefan Richter
> -=====-=-=== =--- =--=-
> http://arcgraph.de/sr/
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-08-18 10:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-17 16:24 kernel 2.6.19 porting Xu Yang
2007-08-18  5:28 ` Willy Tarreau
2007-08-18  9:58   ` Stefan Richter
2007-08-18 10:21     ` Xu Yang
2007-08-18 10:22     ` Xu Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox