commit | f0570dbe98f19a958649f0d2e40467611c673ea9 | [log] [tgz] |
---|---|---|
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | Tue Jan 19 22:48:30 2021 +0000 |
committer | GitHub <noreply@github.com> | Tue Jan 19 22:48:30 2021 +0000 |
tree | 1f91f208a83953eaf632f636f9461795a93fef96 | |
parent | 968fe6ba8984ec7ed1e515f90a701029ae67571a [diff] | |
parent | fdd0c3622d05a0bff9e0f4b7b1812df218dca291 [diff] |
Merge #268 268: Add the libtock_runtime crate and platform switching. r=hudson-ayers a=jrvanwhy This is the first `libtock_runtime` PR. It contains: A. `Cargo.toml` for `libtock_runtime` B. Automatic linker script identification. The automatic linker script identification is based on `libtock-rs`'s current `build.rs` (in the root of the repository), but makes the following improvements: A. Better supports out-of-tree platforms by adding a cargo feature to disable linker script identification. `libtock-rs`'s build.rs always emits a warning of the PLATFORM variable is not specified. B. Improves error handling, particularly around builds in paths we cannot support (e.g. if `cargo` is executed in a directory whose name contains a newline character). C. Moves the layout file location into `cargo`'s `OUT_DIR`, which is the only directory build scripts are *supposed* to modify. D. Removes support for the `platform` file to select a platform. `libtock-rs` looked for a `platform` file in its own source to identify the platform it is run in -- I'm not really sure how this was supposed to be used. Co-authored-by: Johnathan Van Why <jrvanwhy@google.com>
Rust userland library for Tock (WIP)
Generally this library was tested with tock Release 1.5. Since then changes have been made that might not work with the Tock release 1.5, but instead target Tock master. For example this library might support newer boards (Apollo3), changed boards (HiFive1 revB) or new drivers (HMAC).
The library works in principle on most boards, but there is currently the showstopper bug #28 that prevents the generation of relocatable code. This means that all applications must be installed at the flash address they are compiled with, which usually means that they must be compiled especially for your board and that there can only be one application written in rust at a time and it must be installed as the first application on the board, unless you want to play games with linker scripts. There are some boards/layout_*.ld
files provided that allow to run the examples on common boards. Due to MPU region alignment issues they may not work for applications that use a lot of RAM, in that case you may have to change the SRAM start address to fit your application.
This project is nascent and still under heavy development, but first steps:
Ensure you have rustup installed.
Clone the repository:
git clone --recursive https://github.com/tock/libtock-rs cd libtock-rs
Install the dependencies:
make setup
Use make
to build examples
make nrf52 # Builds all examples for the nrf52 platform
make opentitan # Builds all examples for the OpenTitan platform
make opentitan FEATURES=alloc # Builds all examples for the OpenTitan platform, with alloc feature enabled
make flash-hail EXAMPLE=blink # Flash the example 'blink' program to the hail platform
For an unknown platform, you may have to create your own memory layout definition. Place the layout definition file at boards/layout_<platform>.ld
and do not forget to enhance the tockloader_flags
dispatching section in tools/flash.sh
. You are welcome to create a PR, s.t. the number of supported platforms grows.
The easiest way to start using libtock-rs is adding an example to the examples folder. The boiler plate code you would write is
#![no_std] use libtock::result::TockResult; #[libtock::main] async fn main() -> TockResult<()> { // Your code }
If you want to use heap based allocation you will have to add
extern crate alloc;
to the preamble and store your example in the examples-alloc
folder.
To build the examples for your board you can use
make <platform> [FEATURES=alloc]
An example can be flashed to your board after the build process by running:
make flash-<platform> EXAMPLE=<example>
This script does the following steps for you:
libtock-rs is licensed under either of
at your option.
Submodules have their own licenses.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
The contribution guidelines can be found here: contribution guidelines