#device-tree #fdt #dtb #dt

no-std flat_device_tree

用于解析Flattened Devicetrees的纯Rust #![no_std]

5个稳定版本

3.1.1 2024年6月7日
3.1.0 2024年5月19日
3.0.0 2024年4月28日
2.1.1 2024年3月12日
2.1.0 2024年1月27日

153嵌入式开发 中排名

Download history 7/week @ 2024-05-03 179/week @ 2024-05-17 9/week @ 2024-05-24 2/week @ 2024-05-31 165/week @ 2024-06-07 3/week @ 2024-06-14 1/week @ 2024-06-28 17/week @ 2024-07-05 42/week @ 2024-07-12 35/week @ 2024-07-19 26/week @ 2024-07-26 12/week @ 2024-08-02 34/week @ 2024-08-09 58/week @ 2024-08-16

131 每月下载量
用于 2 crates

MPL-2.0 许可证

71KB
1.5K SLoC

flat_device_tree

注意 fdt 的友好分支。

用于解析Flattened Devicetrees的纯Rust #![no_std] 包,目标是拥有一个非常直观和符合语法的API。

crates.io Documentation Build

许可证

本包采用Mozilla Public License 2.0许可(请参阅LICENSE文件)。

示例

static MY_FDT: &[u8] = include_bytes!("../dtb/test.dtb");

fn main() {
    let fdt = fdt::Fdt::new(MY_FDT).unwrap();

    println!("This is a devicetree representation of a {}", fdt.root().model());
    println!("...which is compatible with at least: {}", fdt.root().compatible().first());
    println!("...and has {} CPU(s)", fdt.cpus().count());
    println!(
        "...and has at least one memory location at: {:#X}\n",
        fdt.memory().regions().next().unwrap().starting_address as usize
    );

    let chosen = fdt.chosen();
    if let Some(bootargs) = chosen.bootargs() {
        println!("The bootargs are: {:?}", bootargs);
    }

    if let Some(stdout) = chosen.stdout() {
        println!("It would write stdout to: {}", stdout.node().name);
    }

    let soc = fdt.find_node("/soc");
    println!("Does it have a `/soc` node? {}", if soc.is_some() { "yes" } else { "no" });
    if let Some(soc) = soc {
        println!("...and it has the following children:");
        for child in soc.children() {
            println!("    {}", child.name);
        }
    }
}

无运行时依赖

功能