Skip to content

axelkar/dt-tools

Devicetree tools

🚧 NOTE: dt-tools is experimental

dt-tools helps you to write, debug and read Devicetree files more efficiently with advanced tooling!

  • IDE integration
  • Linting
  • Devicetree binding validation
  • Preprocessor features with some restrictions:
    • Macros can only substitute references (&-syntax), name definitions of nodes, properties and labels, property values, cell values, nodes and properties.
    • Macros must be individually parseable. This is not allowed:
      #define SPECIAL_SYNTAX ) + (
      #define SUM1 1 + 2
      #define SUM2 (1 + 2)
      
      / {
        prop = (1 SPECIAL_SYNTAX 2);
        equal = (SUM1 * 2), (SUM2 * 2); // The C preprocessor would not evaluate these to the same value
      };
      
    • #include directives can only be used outside of nodes (🚧 note that this may change)
    • Conditionals can only wrap nodes, properties and other preprocessor directives
  • Extensive unit and integration tests written in Rust
  • Possibly in the future:
    • Comparing DTS or DTB files
    • Comparing Android dt and dtbo partitions with /sys/firmware/fdt

Crates

Screenshots

Syntax error resiliency showcase in Neovim

Lint showcase in Neovim

Help needed

Any kinds of contributions are welcome! Just spreading awareness helps!

See the GitHub issues, especially the ones tagged with help wanted or good first issue.

If you can, take care of code containing TODO, FIXME, todo!(, unimplemented!( or similar

Contributing

Please read CONTRIBUTING.md.

LSP

The VSCode extension's documentation can be found here.

The language server is also packaged for Neovim with the Lua script in ./crates/dt-tools-lsp/lsp.lua.

cargo build -p dt-tools-lsp
nvim --cmd 'luafile ./crates/dt-tools-lsp/lsp.lua' lint_showcase.dts

Features:

  • Fast and safe parser and linter
  • (TODO) View binding documentation straight from DTS!
  • (TODO) Binding errors integrated into linter

License

Licensed under either of

at your option.

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Modern devicetree tools in Rust

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Contributing

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Contributors