rlvgl 0.2.1

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
//! IR types for BSP generator tests.
//!
//! Provides a minimal schema used by unit tests to validate the
//! `.ioc` → IR → template pipeline without relying on any
//! vendor-specific tables.

use indexmap::IndexMap;
use serde::{Deserialize, Serialize};

/// CPU core selector for dual-core MCUs (e.g., STM32H747 CM7/CM4).
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum Core {
    /// Cortex-M7 core
    Cm7,
    /// Cortex-M4 core
    Cm4,
}

/// Top-level intermediate representation describing the board.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct Ir {
    /// Microcontroller identifier, e.g. "STM32H747XIHx".
    pub mcu: String,
    /// Package identifier, e.g. "LQFP176".
    pub package: String,
    /// Clock tree configuration including PLL parameters and kernel muxes.
    pub clocks: Clocks,
    /// Pin configuration entries.
    pub pinctrl: Vec<Pin>,
    /// Discovered peripherals keyed by instance name.
    pub peripherals: IndexMap<String, Peripheral>,
    /// Optional power configuration (supply/VOS) extracted from the `.ioc`.
    #[serde(default)]
    pub pwr: Power,
}

/// Clock configuration extracted from the vendor project.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Default)]
pub struct Clocks {
    /// Phase-locked loop settings keyed by name (`pll1`, `pll2`, ...).
    #[serde(default)]
    pub pll: IndexMap<String, Pll>,
    /// Kernel clock selections per peripheral (`usart1` → `pclk2`).
    #[serde(default)]
    pub kernels: IndexMap<String, String>,
    /// Which core is responsible for system clock/PLL initialization.
    ///
    /// If `None`, generators should assume unified initialization is handled
    /// externally or select a sensible default.
    #[serde(default)]
    pub init_by: Option<Core>,
    /// System clock source (e.g., "HSI", "HSE", "PLL1").
    #[serde(default)]
    pub sys_src: Option<String>,
    /// PLL source (e.g., "HSE", "HSI", "CSI").
    #[serde(default)]
    pub pll_src: Option<String>,
    /// Optional HSE frequency in Hz (e.g., 25000000).
    #[serde(default)]
    pub hse_hz: Option<u32>,
    /// Domain prescalers from .ioc (raw tokens).
    #[serde(default)]
    pub d1cpu: Option<String>,
    #[serde(default)]
    pub d1ppre: Option<String>,
    #[serde(default)]
    pub d2ppre1: Option<String>,
    #[serde(default)]
    pub d2ppre2: Option<String>,
    #[serde(default)]
    pub d3ppre: Option<String>,
}

/// Power configuration (supply/VOS) as declared in the vendor project.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Default)]
pub struct Power {
    /// Supply mode selected in CubeMX (e.g., "SMPS", "LDO").
    #[serde(default)]
    pub supply: Option<String>,
    /// VOS/SDLEVEL (e.g., "VOS1").
    #[serde(default)]
    pub sdlevel: Option<String>,
}

/// PLL parameter block.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct Pll {
    /// Pre-divider value.
    pub m: u8,
    /// Multiplier value.
    pub n: u16,
    /// Post-divider P output.
    pub p: u8,
    /// Post-divider Q output.
    pub q: u8,
    /// Post-divider R output.
    pub r: u8,
}

/// Pin description capturing function, label, and alternate function number.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct Pin {
    /// Pin name, e.g. "PA9".
    pub pin: String,
    /// Signal name, e.g. "USART1_TX" or "GPIO_Output".
    pub func: String,
    /// Optional user-assigned label from the vendor project (e.g. `GPIO_Label` in `.ioc`).
    ///
    /// When present, code generators can surface this label in comments or use
    /// it to derive identifier aliases.
    #[serde(default)]
    pub label: Option<String>,
    /// Alternate function number for the signal (0 for GPIO).
    pub af: u8,
}

/// Peripheral description with class and signal-to-pin mapping.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct Peripheral {
    /// Class name aligned with `embedded-hal` families, e.g. "serial".
    pub class: String,
    /// Mapping of signal role (tx, rx, sck, …) to pin name.
    #[serde(default)]
    pub signals: IndexMap<String, String>,
    /// Owning core for this peripheral when targeting dual-core devices.
    ///
    /// If `None`, ownership is unspecified/unified.
    #[serde(default)]
    pub core: Option<Core>,
}