-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from rust-embedded/riscv-pac
riscv-pac crate
- Loading branch information
Showing
7 changed files
with
163 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
resolver = "2" | ||
members = [ | ||
"riscv", | ||
"riscv-pac", | ||
"riscv-rt", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Add `InterruptNumber`, `PriorityNumber`, and `HartIdNumber` traits. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "riscv-pac" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
repository = "https://github.com/rust-embedded/riscv" | ||
authors = ["The RISC-V Team <[email protected]>"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
description = "Low level access to RISC-V processors" | ||
documentation = "https://docs.rs/riscv-pac" | ||
keywords = ["riscv", "register", "peripheral"] | ||
license = "ISC" | ||
|
||
[package.metadata.docs.rs] | ||
default-target = "riscv64imac-unknown-none-elf" | ||
targets = [ | ||
"riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf", | ||
"riscv64imac-unknown-none-elf", "riscv64gc-unknown-none-elf", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[![crates.io](https://img.shields.io/crates/d/riscv.svg)](https://crates.io/crates/riscv) | ||
[![crates.io](https://img.shields.io/crates/v/riscv.svg)](https://crates.io/crates/riscv) | ||
|
||
# `riscv-pac` | ||
|
||
> Target-specific traits to be implemented by PACs | ||
This project is developed and maintained by the [RISC-V team][team]. | ||
|
||
## [Documentation](https://docs.rs/crate/riscv) | ||
|
||
## Minimum Supported Rust Version (MSRV) | ||
|
||
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might* | ||
compile with older versions but that may change in any new patch release. | ||
|
||
## License | ||
|
||
Copyright 2023-2024s [RISC-V team][team] | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any purpose | ||
with or without fee is hereby granted, provided that the above copyright notice | ||
and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | ||
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS | ||
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | ||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | ||
THIS SOFTWARE. | ||
|
||
## Code of Conduct | ||
|
||
Contribution to this crate is organized under the terms of the [Rust Code of | ||
Conduct][CoC], the maintainer of this crate, the [RISC-V team][team], promises | ||
to intervene to uphold that code of conduct. | ||
|
||
[CoC]: CODE_OF_CONDUCT.md | ||
[team]: https://github.com/rust-embedded/wg#the-risc-v-team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#![no_std] | ||
|
||
/// Trait for enums of target-specific external interrupt numbers. | ||
/// | ||
/// This trait should be implemented by a peripheral access crate (PAC) | ||
/// on its enum of available external interrupts for a specific device. | ||
/// Each variant must convert to a `u16` of its interrupt number. | ||
/// | ||
/// # Safety | ||
/// | ||
/// * This trait must only be implemented on a PAC of a RISC-V target. | ||
/// * This trait must only be implemented on enums of external interrupts. | ||
/// * Each enum variant must represent a distinct value (no duplicates are permitted), | ||
/// * Each enum variant must always return the same value (do not change at runtime). | ||
/// * All the interrupt numbers must be less than or equal to `MAX_INTERRUPT_NUMBER`. | ||
/// * `MAX_INTERRUPT_NUMBER` must coincide with the highest allowed interrupt number. | ||
pub unsafe trait InterruptNumber: Copy { | ||
/// Highest number assigned to an interrupt source. | ||
const MAX_INTERRUPT_NUMBER: u16; | ||
|
||
/// Converts an interrupt source to its corresponding number. | ||
fn number(self) -> u16; | ||
|
||
/// Tries to convert a number to a valid interrupt source. | ||
/// If the conversion fails, it returns an error with the number back. | ||
fn from_number(value: u16) -> Result<Self, u16>; | ||
} | ||
|
||
/// Trait for enums of priority levels. | ||
/// | ||
/// This trait should be implemented by a peripheral access crate (PAC) | ||
/// on its enum of available priority numbers for a specific device. | ||
/// Each variant must convert to a `u8` of its priority level. | ||
/// | ||
/// # Safety | ||
/// | ||
/// * This trait must only be implemented on a PAC of a RISC-V target. | ||
/// * This trait must only be implemented on enums of priority levels. | ||
/// * Each enum variant must represent a distinct value (no duplicates are permitted). | ||
/// * Each enum variant must always return the same value (do not change at runtime). | ||
/// * All the priority level numbers must be less than or equal to `MAX_PRIORITY_NUMBER`. | ||
/// * `MAX_PRIORITY_NUMBER` must coincide with the highest allowed priority number. | ||
pub unsafe trait PriorityNumber: Copy { | ||
/// Number assigned to the highest priority level. | ||
const MAX_PRIORITY_NUMBER: u8; | ||
|
||
/// Converts a priority level to its corresponding number. | ||
fn number(self) -> u8; | ||
|
||
/// Tries to convert a number to a valid priority level. | ||
/// If the conversion fails, it returns an error with the number back. | ||
fn from_number(value: u8) -> Result<Self, u8>; | ||
} | ||
|
||
/// Trait for enums of HART identifiers. | ||
/// | ||
/// This trait should be implemented by a peripheral access crate (PAC) | ||
/// on its enum of available HARTs for a specific device. | ||
/// Each variant must convert to a `u16` of its HART ID number. | ||
/// | ||
/// # Safety | ||
/// | ||
/// * This trait must only be implemented on a PAC of a RISC-V target. | ||
/// * This trait must only be implemented on enums of HART IDs. | ||
/// * Each enum variant must represent a distinct value (no duplicates are permitted), | ||
/// * Each anum variant must always return the same value (do not change at runtime). | ||
/// * All the HART ID numbers must be less than or equal to `MAX_HART_ID_NUMBER`. | ||
/// * `MAX_HART_ID_NUMBER` must coincide with the highest allowed HART ID number. | ||
pub unsafe trait HartIdNumber: Copy { | ||
/// Highest number assigned to a context. | ||
const MAX_HART_ID_NUMBER: u16; | ||
|
||
/// Converts a HART ID to its corresponding number. | ||
fn number(self) -> u16; | ||
|
||
/// Tries to convert a number to a valid HART ID. | ||
/// If the conversion fails, it returns an error with the number back. | ||
fn from_number(value: u16) -> Result<Self, u16>; | ||
} |