use super::ir::{SilabsDir, SilabsIr, SilabsRoutingKind};
use anyhow::{Context, Result};
use minijinja::{Environment, Value, context};
use serde::Serialize;
use std::path::Path;
const TPL_MOD: &str = include_str!("templates/mod.rs.jinja");
const TPL_PAC: &str = include_str!("templates/pac.rs.jinja");
const TPL_CLOCKS: &str = include_str!("templates/clocks.rs.jinja");
const TPL_IO_MUX: &str = include_str!("templates/io_mux.rs.jinja");
const TPL_PERIPHS: &str = include_str!("templates/peripherals.rs.jinja");
const TPL_BOARD: &str = include_str!("templates/board.rs.jinja");
const TPL_MEMORY_X: &str = include_str!("templates/memory.x.jinja");
const TPL_CHIP_X: &str = include_str!("templates/chip.x.jinja");
#[derive(Serialize, Debug, Clone)]
#[serde(tag = "kind", rename_all = "snake_case")]
pub enum PinRouteKind {
Routeloc {
route_reg: String,
route_field: String,
pen_reg: String,
pen_field: String,
loc: u8,
},
Plain,
}
#[derive(Serialize, Debug, Clone)]
pub struct PinRoute {
pub port: String,
pub pin: u8,
pub signal: String,
pub peripheral: Option<String>,
pub direction: String,
pub pull: Option<String>,
pub initial: Option<String>,
pub label: Option<String>,
pub route: PinRouteKind,
}
pub fn render_silabs_pac(ir: &SilabsIr, out_dir: &Path) -> Result<Vec<std::path::PathBuf>> {
let board_stem = snake_case(&ir.board.name);
let chip_stem = snake_case(&ir.chip.name);
let target = out_dir.join(&board_stem);
std::fs::create_dir_all(&target).with_context(|| format!("create {}", target.display()))?;
let peripherals_used = peripherals_used(ir);
let pin_routes = resolve_pin_routes(ir);
let mut env = Environment::new();
env.add_filter("pac_path", pac_path_filter);
env.add_filter("hex32", hex32_filter);
env.add_template("mod.rs", TPL_MOD)?;
env.add_template("pac.rs", TPL_PAC)?;
env.add_template("clocks.rs", TPL_CLOCKS)?;
env.add_template("io_mux.rs", TPL_IO_MUX)?;
env.add_template("peripherals.rs", TPL_PERIPHS)?;
env.add_template("board.rs", TPL_BOARD)?;
let emit_linker = ir.chip.linker.is_some();
let chip_x_name = format!("{chip_stem}.x");
if emit_linker {
env.add_template("memory.x", TPL_MEMORY_X)?;
env.add_template("chip.x", TPL_CHIP_X)?;
}
let ctx = context! {
ir => Value::from_serialize(ir),
peripherals_used => Value::from_serialize(&peripherals_used),
pin_routes => Value::from_serialize(&pin_routes),
board_stem => board_stem.clone(),
chip_stem => chip_stem,
};
let mut files: Vec<String> = [
"mod.rs",
"pac.rs",
"clocks.rs",
"io_mux.rs",
"peripherals.rs",
"board.rs",
]
.iter()
.map(|s| s.to_string())
.collect();
if emit_linker {
files.push("memory.x".to_string());
files.push("chip.x".to_string());
}
let mut written = Vec::new();
for name in &files {
let tmpl = env.get_template(name)?;
let rendered = tmpl
.render(&ctx)
.with_context(|| format!("render {name}"))?;
let out_name: &str = if name == "chip.x" { &chip_x_name } else { name };
let path = target.join(out_name);
std::fs::write(&path, rendered).with_context(|| format!("write {}", path.display()))?;
written.push(path);
}
Ok(written)
}
fn peripherals_used(ir: &SilabsIr) -> Vec<String> {
let mut out: Vec<String> = Vec::new();
for pin in &ir.pins {
if let Some(p) = pin.peripheral.as_deref()
&& !out.iter().any(|s| s == p)
{
out.push(p.to_string());
}
}
out
}
fn resolve_pin_routes(ir: &SilabsIr) -> Vec<PinRoute> {
ir.pins
.iter()
.map(|pin| {
let route = match (
ir.chip.routing_kind,
pin.peripheral.as_deref(),
pin.routeloc,
) {
(SilabsRoutingKind::Routeloc, Some(periph_name), Some(loc))
if periph_name != "gpio" =>
{
let role_hint = pin_role_hint(&pin.signal, Some(periph_name));
ir.chip
.peripherals
.get(periph_name)
.and_then(|periph| {
pick_routeloc_signal(periph, pin.direction, role_hint.as_deref(), loc)
})
.unwrap_or(PinRouteKind::Plain)
}
_ => PinRouteKind::Plain,
};
PinRoute {
port: pin.port.clone(),
pin: pin.pin,
signal: pin.signal.clone(),
peripheral: pin.peripheral.clone(),
direction: dir_to_str(pin.direction).to_string(),
pull: pin.pull.clone(),
initial: pin.initial.clone(),
label: pin.label.clone(),
route,
}
})
.collect()
}
fn pin_role_hint(signal: &str, peripheral: Option<&str>) -> Option<String> {
if signal.is_empty() {
return None;
}
let lowered = signal.to_ascii_lowercase();
if let Some(p) = peripheral {
let prefix = format!("{}_", p.to_ascii_lowercase());
if let Some(rest) = lowered.strip_prefix(&prefix) {
return Some(rest.to_string());
}
}
if let Some(idx) = lowered.rfind('_') {
return Some(lowered[idx + 1..].to_string());
}
Some(lowered)
}
fn pick_routeloc_signal(
periph: &super::ir::SilabsPeripheral,
direction: SilabsDir,
role_hint: Option<&str>,
loc: u8,
) -> Option<PinRouteKind> {
if let Some(hint) = role_hint {
for sig in &periph.signals {
if !direction_compatible(direction, sig.direction) {
continue;
}
if sig.role.eq_ignore_ascii_case(hint) {
return Some(PinRouteKind::Routeloc {
route_reg: sig.route_reg.clone(),
route_field: sig.route_field.clone(),
pen_reg: sig.pen_reg.clone(),
pen_field: sig.pen_field.clone(),
loc,
});
}
}
}
for sig in &periph.signals {
if !direction_compatible(direction, sig.direction) {
continue;
}
return Some(PinRouteKind::Routeloc {
route_reg: sig.route_reg.clone(),
route_field: sig.route_field.clone(),
pen_reg: sig.pen_reg.clone(),
pen_field: sig.pen_field.clone(),
loc,
});
}
None
}
fn direction_compatible(pin: SilabsDir, sig: SilabsDir) -> bool {
match (pin, sig) {
(SilabsDir::Inout, _) | (_, SilabsDir::Inout) => true,
(a, b) => a == b,
}
}
fn dir_to_str(d: SilabsDir) -> &'static str {
match d {
SilabsDir::In => "in",
SilabsDir::Out => "out",
SilabsDir::Inout => "inout",
}
}
fn hex32_filter(value: u32) -> String {
format!("0x{value:08X}")
}
fn pac_path_filter(value: String) -> String {
let mut segments = value.split('.');
let mut out = match segments.next() {
Some(first) => first.to_ascii_uppercase(),
None => return String::new(),
};
for rest in segments {
out.push('.');
out.push_str(rest);
}
out
}
fn snake_case(input: &str) -> String {
let mut out = String::with_capacity(input.len());
let mut prev_was_lower = false;
for ch in input.chars() {
if ch.is_ascii_alphanumeric() {
if ch.is_ascii_uppercase() {
if prev_was_lower {
out.push('_');
}
out.extend(ch.to_lowercase());
prev_was_lower = false;
} else {
out.push(ch);
prev_was_lower = true;
}
} else {
if !out.ends_with('_') && !out.is_empty() {
out.push('_');
}
prev_was_lower = false;
}
}
while out.ends_with('_') {
out.pop();
}
out
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn snake_case_lowercases_silabs_names() {
assert_eq!(snake_case("SLSTK3701A"), "slstk3701_a");
assert_eq!(snake_case("EFM32GG11"), "efm32_gg11");
}
#[test]
fn pac_path_filter_uppercases_instance_and_emits_field_direct_registers() {
assert_eq!(pac_path_filter("cmu.hfperclken0".into()), "CMU.hfperclken0");
assert_eq!(pac_path_filter("gpio".into()), "GPIO");
assert_eq!(
pac_path_filter("usart4.routeloc0".into()),
"USART4.routeloc0"
);
}
#[test]
fn role_hint_strips_peripheral_prefix() {
assert_eq!(
pin_role_hint("USART4_TX", Some("usart4")),
Some("tx".into())
);
assert_eq!(pin_role_hint("I2C2_SCL", Some("i2c2")), Some("scl".into()));
assert_eq!(pin_role_hint("GPIO", Some("gpio")), Some("gpio".into()));
}
}