Skip to content
This repository has been archived by the owner on Nov 7, 2022. It is now read-only.

Cortex A7 support? #11

Closed
UniqueActive opened this issue Dec 4, 2019 · 16 comments
Closed

Cortex A7 support? #11

UniqueActive opened this issue Dec 4, 2019 · 16 comments

Comments

@UniqueActive
Copy link

UniqueActive commented Dec 4, 2019

Hello,

First of all, I am completely new to embedded development and relatively new to Rust, but I have an ARMv7 board with the Allwinner A20 (Olimex A20 OLinuXinoLime2 to be precise) laying around that I would like to experiment and learn embedded Rust with.

I saw that the PR for the Cortex A working group only mentioned aarch64 while the A20 uses Cortex A7 cores which would be the armv7 target.

Is there any work happening/done for supporting bare metal armv7 yet? Is this something that I should even attempt to work on as someone new to embedded?

Thanks in advance!

@andre-richter
Copy link
Member

This crate is a support crate (library). It currently only supports aarch64 cortex-a processors, and due to limited bandwidth on my side, no plans to add aarch32 support for now. Having such a support crate is only one part of the equation, though.

To actually compile for aarch32 bare-metal, you would first need to have a suitable target for cargo xbuild to use (--target). For aarch64, those are:

There is no bare-metal target for armv7 yet. There was an attempt (rust-lang/rust#60135), but it didn't make it upstream. However, for starters, you could use the targets in the PR to generate a custom target .json and use that (Example here: https://os.phil-opp.com/minimal-rust-kernel/#putting-it-together).

@RobertBuhren
Copy link

@andre-richter
Copy link
Member

@RobertBuhren
Copy link

IMHO there is not difference to Cortex-A regarding the toolchain. Both architectures are defined by the ARMv7-AR reference manual.

@andre-richter
Copy link
Member

andre-richter commented Dec 10, 2019

I faintly remember that one of the few differences is that the R profile doesn't have VMSA support?
Don't know if the llvm backend accounts for that, though.

So depending on if you're going to use that or not it might work.

@RobertBuhren
Copy link

Correct, it uses PMSA. But that shouldn't be relevant for the toolchain?

@raw-bin
Copy link

raw-bin commented Dec 10, 2019 via email

@andre-richter
Copy link
Member

In summary, there's two things you need for bare-metal Cortex A7.

  1. A compiler target for (bare-metal) AArch32.
    1. There's multiple ways to get there, for starters, I would suggest the --target json way from my first comment.
  2. Once you have the target, you can use support crates like cortex-a to wrap the unsafe code.
    1. This repository currently only supports aarch64. aarch32 support is not on the roadmap, but we would accept PRs.

Hope that helps. I would close this issue if all your questions are answered. Is there anything open?

Thanks,
Andre

@RobertBuhren
Copy link

There is already a toolchain available for ARMv7: "armv7r_none_eabi.rs".
According to the name it is for ARMv7 Cortex-R cores, but afaik there is no difference in the toolchain compared to a toolchain for an ARMv7 Cortex-A.

So toolchain support is already there.

As for this issues, maybe it would help to clarify in the readme which "Cortex-A" CPU's are supported by this repo in the readme? "Cortex-A" can refer to both ARMv8 and ARMv7 CPU's.

Regards,

Robert

@andre-richter
Copy link
Member

As for this issues, maybe it would help to clarify in the readme which "Cortex-A" CPU's are supported by this repo in the readme? "Cortex-A" can refer to both ARMv8 and ARMv7 CPU's.

Good point. I pushed 9ec8dd7

@UniqueActive
Copy link
Author

UniqueActive commented Dec 19, 2019 via email

@andre-richter
Copy link
Member

Thanks! Closing for now.

@mcdoll
Copy link

mcdoll commented Jan 18, 2020

Shameless ad: I am writing stuff for the beaglebone, which is a 32bit Cortex-A SoC (armv7). If someone is interested in this, I can make the repos public, but the code is very experimental and I am not an comp-sci expert.

@UniqueActive
Copy link
Author

UniqueActive commented Jan 18, 2020 via email

@andre-richter
Copy link
Member

andre-richter commented Jan 18, 2020

On that topic, said bare metal targets are upstream soon rust-lang/rust#68253

@mcdoll
Copy link

mcdoll commented Jan 18, 2020

@andre-richter that is cool. I thought about making a pull request, but was not sure whether people are interested in that.
@UniqueActive https://github.com/mcdoll/armv7 here is the low-level armv7 stuff. The memory management unit needs some asm at startup, otherwise nothing will work and my way to use the interrupts is quite sketchy, but does not need asm. I add another repo with a simple reference implementation for the beagle later and link to it in the armv7 repo.

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

No branches or pull requests

5 participants