public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] How to add Timer Interrupt to u-boot?
@ 2007-07-27  8:14 Robert
  2007-07-27 12:57 ` Jerry Van Baren
  2007-07-30 14:17 ` Detlev Zundel
  0 siblings, 2 replies; 3+ messages in thread
From: Robert @ 2007-07-27  8:14 UTC (permalink / raw)
  To: u-boot

Hello all:

    Everybody knows how to add Timer Interrupt to the u-boot?
I wrote a fuction called timer0_isr(), and wanted to add it to Uboot,
but I didn't know what to do,  Does the uboot has a funciton like
function  request_irq() in linux kernel?
    Thanks in advance!

With kind regards,

Robert Xia 

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

* [U-Boot-Users] How to add Timer Interrupt to u-boot?
  2007-07-27  8:14 [U-Boot-Users] How to add Timer Interrupt to u-boot? Robert
@ 2007-07-27 12:57 ` Jerry Van Baren
  2007-07-30 14:17 ` Detlev Zundel
  1 sibling, 0 replies; 3+ messages in thread
From: Jerry Van Baren @ 2007-07-27 12:57 UTC (permalink / raw)
  To: u-boot

Robert wrote:
> Hello all:
> 
>     Everybody knows how to add Timer Interrupt to the u-boot?
> I wrote a fuction called timer0_isr(), and wanted to add it to Uboot,
> but I didn't know what to do,  Does the uboot has a funciton like
> function  request_irq() in linux kernel?
>     Thanks in advance!
> 
> With kind regards,
> 
> Robert Xia 

Hi Robert,

Interrupts are not used by u-boot (with some rare exceptions). 
Generally things poll and there is usually some type of counter register 
(processor or board-specific) for measuring elapsed time.

If you really need interrupts, you will probably have to set up the 
vectors, interrupt registers, etc. yourself.

Best regards,
gvb

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

* [U-Boot-Users] How to add Timer Interrupt to u-boot?
  2007-07-27  8:14 [U-Boot-Users] How to add Timer Interrupt to u-boot? Robert
  2007-07-27 12:57 ` Jerry Van Baren
@ 2007-07-30 14:17 ` Detlev Zundel
  1 sibling, 0 replies; 3+ messages in thread
From: Detlev Zundel @ 2007-07-30 14:17 UTC (permalink / raw)
  To: u-boot

Hi Robert,

>     Everybody knows how to add Timer Interrupt to the u-boot?
> I wrote a fuction called timer0_isr(), and wanted to add it to Uboot,
> but I didn't know what to do,  Does the uboot has a funciton like
> function  request_irq() in linux kernel?

As Jerry told you, U-Boot generally avoids using interrupts.  

For some architectures however we have code to allow using interrupts,
e.g. from standalone applications.  You can look at
examples/interrupt.c which effectively was written with
cpu/mpc5xxx/interrupts.c in mind.  The latter was of course derived
from the Linux version so it shouldn't be a big problem to do
something similar for other architectures.

Cheers
  Detlev

-- 
Once the  implementation is  up and running,  it is still a trick to keep it
running.  In a normal,  closed implementation,  this is not a problem;  in a
system with metaobject protocols [..] there is the potential for spectacular
failure modes if certain situations are not properly anticipated.
                                       -- The Art of the Metaobject Protocol
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

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

end of thread, other threads:[~2007-07-30 14:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-27  8:14 [U-Boot-Users] How to add Timer Interrupt to u-boot? Robert
2007-07-27 12:57 ` Jerry Van Baren
2007-07-30 14:17 ` Detlev Zundel

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