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

Pi Support Strategy? #10

Open
mtx2d opened this issue May 2, 2020 · 4 comments
Open

Pi Support Strategy? #10

mtx2d opened this issue May 2, 2020 · 4 comments
Labels
feature request A feature not implemented yet

Comments

@mtx2d
Copy link

mtx2d commented May 2, 2020

Dear Team,
Thanks for sharing this amazing project!
Was wondering if this project can be extended to run on a Raspberry-Pi?

If we think it a good idea, could the team please share some guidance on what might be important milestones to supporting Pi?

With a high level roadmap, I (or other ppl with same interest) can chip off the work and eventually we can have this OS running on Pis.

What do we think?

@wangrunji0408
Copy link
Member

Thanks for your interest!

The official Zircon kernel supports ARM64 and was able to run on Raspi3.
Currently our implementation only supports x86_64, but ARM64 and Raspi is in the plan.
Fortunately we have similar experience before on the rCore project. So I believe the Raspi support will come soon :)

Actually it's not hard to support a new ISA or platform. zCore has a hardware abstraction layer to isolate architecture-dependent code. We only need to check the code on kernel-hal-bare crate, and give another implementation for aarch64. And this crate is more like a wrapper of other low-level crates, e.g. x86_64 and aarch64, which provides arch-specific registers and page table operations. Another important dependency of HAL is trapframe-rs, which is used for switching between kernel and user space, handling interrupt and exceptions. We also need to port it to aarch64.

To summary, a high-level roadmap to Raspi might like this:

  • Construct a minimal kernel on Raspi (continue to use embedded booting from rCore or explore a new UEFI solution).
  • Port kernel-hal-bare to aarch64.
  • Port trapframe-rs to aarch64.

Once we have any progress on this topic, we will share them below.
Any other ideas or comments are welcome!

@jiegec jiegec added the feature request A feature not implemented yet label May 4, 2020
@tlightsky
Copy link

also interested in run zCore on my Respi Zero W/Respi 3

@wangrunji0408
Copy link
Member

First step completed:

We have ported trapframe-rs to aarch64.
Now Zircon libos can basically run on ARM64 Linux!

See #78

@YdrMaster
Copy link
Collaborator

YdrMaster commented Jun 13, 2022

Thanks to 国防科大, aarch64 is supported since #306.

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

No branches or pull requests

5 participants