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

Critical boot failure on RPi 3 #2

Closed
oliverbrandt opened this issue Jan 8, 2019 · 1 comment
Closed

Critical boot failure on RPi 3 #2

oliverbrandt opened this issue Jan 8, 2019 · 1 comment

Comments

@oliverbrandt
Copy link

After finally having set up a test environment, the following problem occured on an RPi 3: https://gist.github.com/oliverbrandt/ec66ed2d7229d62f915e69a8124dab25

As I am not familiar enought with the ARM and AROS world, do you happen to know why this would happen or where to start searching for the cause?

@oliverbrandt
Copy link
Author

The problem is asm volatile("mov r0, #0\n\t mcr p15, 0, r0, c7, c0, 4":::"r0")
in arch/arm-native/exec/exec_idle.c which is not supported in ARM v8.
Changing it to asm volatile("wfi") works.
According to http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka13332.html this should also work on ARM v7.

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

No branches or pull requests

1 participant