🚧 NOTE:
dt-toolsis very experimental and is currently ongoing a rewrite!
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 and items (like nodes and properties) - Macros must be parseable on their own. This is not allowed:
#define SPECIAL_SYNTAX ) + ( / { prop = (1 SPECIAL_SYNTAX 2); }; #includedirectives can only be used outside of nodes (note that this may change)- Conditionals can only wrap nodoes, properties and other preprocessor directives
- 🚧 Currently fully unimplemented
- Can only check for definition, equality or ordering
- Macros can only substitute references (
- Extensive unit and integration tests written in Rust
- Possibly in the future:
- Comparing DTS or DTB files
- Comparing Android
dtanddtbopartitions with/sys/firmware/fdt
dt-parserimplements an error-resistant parser inspired by rust-analyzerdt-analyzeris a source file analyzerdt-lspis a language server for devicetreedt-lintis a linter for DTSdt-binding-matcheris a crate supposed to validate and match devicetree binding YAMLs
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
Please read CONTRIBUTING.md.
The VSCode extension's documentation can be found here.
The language server is also packaged for Neovim with the Lua script in ./crates/dt-lsp/lsp.lua.
cargo build -p dt-lsp
nvim --cmd 'luafile ./crates/dt-lsp/lsp.lua' lint_showcase.dtsFeatures:
- Fast and safe parser and linter
- (TODO) View binding documentation straight from DTS!
- (TODO) Binding errors integrated into linter
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
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.