-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Some Xtensa cores do not support NMI #67859
Some Xtensa cores do not support NMI #67859
Conversation
NOTE: this is for main branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't other places using XCHAL_NMILEVEL
be changed too ?
c8026a2
to
4d70cc1
Compare
4d70cc1
to
a08b076
Compare
per @ceolin feedback, I've added fixes in other places (userspace.S, vector_handlers.c) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still good with me. Is the device in question likely to be upstreamed soon? (As mentioned before, the mt8195 DSP has the same issue -- no NMI level exists)
a08b076
to
4a14acc
Compare
Updated title. My apologies, those are my first changes and it takes me a while to adjust to new requirements on workflow |
Please fix the compliance check errors. |
Some Xtensa cores do not support NMI, so XCHAL_HAVE_NMI=0 and XCHAL_NMILEVEL won't be defined at all causing arch/xtensa/include/xtensa-asm2-s.h to throw compilation error. Fixes: zephyrproject-rtos#67855 Signed-off-by: Maciej Kusio <[email protected]> Signed-off-by: Anas Nashif <[email protected]>
4a14acc
to
b96d0c1
Compare
Looks like this needs a rebase now. |
...wait I see that on all commits, github issue I guess |
The base branch was changed.
Hi @rysiof! To celebrate this milestone and showcase your contribution, we'd love to award you the Zephyr Technical Contributor badge. If you're interested, please claim your badge by filling out this form: Claim Your Zephyr Badge. Thank you for your valuable input, and we look forward to seeing more of your contributions in the future! 🪁 |
Some Xtensa cores do not support NMI, so XCHAL_HAVE_NMI=0 and XCHAL_NMILEVEL won't be defined at all causing arch/xtensa/include/xtensa-asm2-s.h` to throw compilation error.
Fixes: #67855