qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] why do qem/arm not clear CPU_INTERRUPT_HARD bit of env->interrupt_request automatically?
@ 2006-10-07 18:15 Donald Liew
  2006-10-08  2:23 ` Paul Brook
  0 siblings, 1 reply; 3+ messages in thread
From: Donald Liew @ 2006-10-07 18:15 UTC (permalink / raw)
  To: qemu-devel

i'm reading qemu-system-arm code and trying to add some more
evaluation boards support for it. in the 0.8.2 source code i found
something i can't understand, when handling interrupts all other
targets clears this bit after calling do_interrupt, however the arm
target doesn't do this, why? won't this cause problems like redundant
interrupts? any special consideration about this?

donald

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

* Re: [Qemu-devel] why do qem/arm not clear CPU_INTERRUPT_HARD bit of env->interrupt_request automatically?
  2006-10-07 18:15 [Qemu-devel] why do qem/arm not clear CPU_INTERRUPT_HARD bit of env->interrupt_request automatically? Donald Liew
@ 2006-10-08  2:23 ` Paul Brook
  2006-10-08  7:40   ` Donald Liew
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Brook @ 2006-10-08  2:23 UTC (permalink / raw)
  To: qemu-devel

On Saturday 07 October 2006 19:15, Donald Liew wrote:
> i'm reading qemu-system-arm code and trying to add some more
> evaluation boards support for it. in the 0.8.2 source code i found
> something i can't understand, when handling interrupts all other
> targets clears this bit after calling do_interrupt, however the arm
> target doesn't do this, why? won't this cause problems like redundant
> interrupts? any special consideration about this?

I this this is the correct behavior. The nIRQ line is level triggered. 
spurious interrupts are avoided because do_interrupt sets the CPSR_I flag.

During normal operation theguest OS will clear the IRQ condition (by masking 
the interrupt on the PIC or device) before clearing the CPSE_I flag, so it 
doesn't matter what we do.

Consider the case where the guest OS were to clear CPSR_F without touching the 
IRQ line. In this case we would expect annother IRQ exception to be taken 
immediately. If (as you suggest above) we cleared CPU_INTERRUPT_HARD in 
cpu_exec then the IRQ would not be taken until something re-raised the IRQ 
line.

Paul

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

* Re: [Qemu-devel] why do qem/arm not clear CPU_INTERRUPT_HARD bit of env->interrupt_request automatically?
  2006-10-08  2:23 ` Paul Brook
@ 2006-10-08  7:40   ` Donald Liew
  0 siblings, 0 replies; 3+ messages in thread
From: Donald Liew @ 2006-10-08  7:40 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 1222 bytes --]

i see. you are right, thanks very much

2006/10/8, Paul Brook <paul@codesourcery.com>:
>
> On Saturday 07 October 2006 19:15, Donald Liew wrote:
> > i'm reading qemu-system-arm code and trying to add some more
> > evaluation boards support for it. in the 0.8.2 source code i found
> > something i can't understand, when handling interrupts all other
> > targets clears this bit after calling do_interrupt, however the arm
> > target doesn't do this, why? won't this cause problems like redundant
> > interrupts? any special consideration about this?
>
> I this this is the correct behavior. The nIRQ line is level triggered.
> spurious interrupts are avoided because do_interrupt sets the CPSR_I flag.
>
> During normal operation theguest OS will clear the IRQ condition (by
> masking
> the interrupt on the PIC or device) before clearing the CPSE_I flag, so it
> doesn't matter what we do.
>
> Consider the case where the guest OS were to clear CPSR_F without touching
> the
> IRQ line. In this case we would expect annother IRQ exception to be taken
> immediately. If (as you suggest above) we cleared CPU_INTERRUPT_HARD in
> cpu_exec then the IRQ would not be taken until something re-raised the IRQ
> line.
>
> Paul
>

[-- Attachment #2: Type: text/html, Size: 1508 bytes --]

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

end of thread, other threads:[~2006-10-08  7:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-07 18:15 [Qemu-devel] why do qem/arm not clear CPU_INTERRUPT_HARD bit of env->interrupt_request automatically? Donald Liew
2006-10-08  2:23 ` Paul Brook
2006-10-08  7:40   ` Donald Liew

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).