Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions app/metro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[package]
edition = "2024"
readme = "README.md"
name = "metro"
version = "0.1.0"

[features]
traptrace = ["ringbuf"]
dump = ["kern/dump"]
measurement-handoff = ["drv-stm32h7-startup/measurement-handoff"]

[dependencies]
cortex-m = { workspace = true }
cortex-m-rt ={ workspace = true }
cfg-if = { workspace = true }
stm32h7 = { workspace = true, features = ["rt", "stm32h753"] }
ringbuf = { path = "../../lib/ringbuf", optional = true }

drv-stm32h7-startup = { path = "../../drv/stm32h7-startup", features = ["h753"] }
kern = { path = "../../sys/kern" }

[build-dependencies]
build-util = {path = "../../build/util"}

# this lets you use `cargo fix`!
[[bin]]
name = "metro"
test = false
bench = false

[lints]
workspace = true
8 changes: 8 additions & 0 deletions app/metro/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Metro Service Processor (SP) firmware

The Metro is the (TBA) compute sled in the Oxide rack.

This folder contains the firmware that runs on its service processor (SP).

The Root of Trust firmware is common across multiple boards and can be found
in the [`oxide-rot-1` subfolder](../oxide-rot-1).
Loading
Loading