Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xtensa: gen_zsr: select software interrupt at <= EXCM_LEVEL #87483

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

williamtcdns
Copy link
Contributor

The current logic selects a software interrupt even if it is at > EXCM_LEVEL.
However the arch_irq_lock() function only locks out interrupts upto EXCM_LEVEL.

In include/zephyr/arch/xtensa/irq.h -

/** Implementation of @ref arch_irq_lock. */
static ALWAYS_INLINE unsigned int arch_irq_lock(void) {
unsigned int key;
asm volatile("rsil %0, %1"
: "=r"(key) : "i"(XCHAL_EXCM_LEVEL) : "memory");
return key;
}

The current logic selects a software interrupt even if it is
at > EXCM_LEVEL. However the arch_irq_lock() function only locks
out interrupts upto EXCM_LEVEL.

In include/zephyr/arch/xtensa/irq.h -

/** Implementation of @ref arch_irq_lock. */
static ALWAYS_INLINE unsigned int arch_irq_lock(void)
{
  unsigned int key;
  __asm__ volatile("rsil %0, %1"
                   : "=r"(key) : "i"(XCHAL_EXCM_LEVEL) : "memory");
  return key;
}

Signed-off-by: William Tambe <williamt@cadence.com>
@williamtcdns
Copy link
Contributor Author

Feedback on this PR ?

@williamtcdns
Copy link
Contributor Author

@andyross @ceolin @nashif just one more review needed.

Copy link
Collaborator

@andyross andyross left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sort of seems like an angels-on-a-pinhead argument? It's a software interrupt, it's triggered synchronously under control of the code being "interrupted". Is it really wrong that it works when interrupts are masked?

The purpose of this feature is to find a software interrupt we can use for testing purposes, e.g. for nested interrupts. And the test code doesn't mask interrupts around it currently, since it obviously works. So the effect of this patch is to disallow that on some number (maybe zero?) of hardware platforms, and therefore to reduce test coverage on those platforms.

Seems like a bad trade to me. Tentative -1, but I'm willing to be convinced if there's a bug somewhere that needs this as a fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: Xtensa Xtensa Architecture
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants