Skip to content

Commit 464b17c

Browse files
v0.2.1 release commit
0 parents  commit 464b17c

22 files changed

+1420
-0
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# SPDX-FileCopyrightText: 2024 Ledger SAS
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
reports
6+
build
7+
dist
8+
*.egg-info
9+
**__pycache__
10+
.eggs/
11+
.tox
12+
.coverage
13+
*.pyc
14+
.doc

.reuse/dep5

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: pyledger-devicetree-parser
3+
Upstream-Contact: Ledger SAS <[email protected]>
4+
Source: https://git.orange.ledgerlabs.net/outpost/python-devicetree-parser
5+
6+
Files: doc/*
7+
Copyright: 2024 Ledger SAS
8+
License: Apache-2.0

CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# SPDX-FileCopyrightText: 2024 Ledger SAS
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
# These owners will be the default owners for everything in
6+
# the repo. Unless a later match takes precedence.
7+
* @florent-valette @philippe-thierry

LICENSES/Apache-2.0.txt

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
2+
Apache License
3+
Version 2.0, January 2004
4+
http://www.apache.org/licenses/
5+
6+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7+
8+
1. Definitions.
9+
10+
"License" shall mean the terms and conditions for use, reproduction,
11+
and distribution as defined by Sections 1 through 9 of this document.
12+
13+
"Licensor" shall mean the copyright owner or entity authorized by
14+
the copyright owner that is granting the License.
15+
16+
"Legal Entity" shall mean the union of the acting entity and all
17+
other entities that control, are controlled by, or are under common
18+
control with that entity. For the purposes of this definition,
19+
"control" means (i) the power, direct or indirect, to cause the
20+
direction or management of such entity, whether by contract or
21+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
22+
outstanding shares, or (iii) beneficial ownership of such entity.
23+
24+
"You" (or "Your") shall mean an individual or Legal Entity
25+
exercising permissions granted by this License.
26+
27+
"Source" form shall mean the preferred form for making modifications,
28+
including but not limited to software source code, documentation
29+
source, and configuration files.
30+
31+
"Object" form shall mean any form resulting from mechanical
32+
transformation or translation of a Source form, including but
33+
not limited to compiled object code, generated documentation,
34+
and conversions to other media types.
35+
36+
"Work" shall mean the work of authorship, whether in Source or
37+
Object form, made available under the License, as indicated by a
38+
copyright notice that is included in or attached to the work
39+
(an example is provided in the Appendix below).
40+
41+
"Derivative Works" shall mean any work, whether in Source or Object
42+
form, that is based on (or derived from) the Work and for which the
43+
editorial revisions, annotations, elaborations, or other modifications
44+
represent, as a whole, an original work of authorship. For the purposes
45+
of this License, Derivative Works shall not include works that remain
46+
separable from, or merely link (or bind by name) to the interfaces of,
47+
the Work and Derivative Works thereof.
48+
49+
"Contribution" shall mean any work of authorship, including
50+
the original version of the Work and any modifications or additions
51+
to that Work or Derivative Works thereof, that is intentionally
52+
submitted to Licensor for inclusion in the Work by the copyright owner
53+
or by an individual or Legal Entity authorized to submit on behalf of
54+
the copyright owner. For the purposes of this definition, "submitted"
55+
means any form of electronic, verbal, or written communication sent
56+
to the Licensor or its representatives, including but not limited to
57+
communication on electronic mailing lists, source code control systems,
58+
and issue tracking systems that are managed by, or on behalf of, the
59+
Licensor for the purpose of discussing and improving the Work, but
60+
excluding communication that is conspicuously marked or otherwise
61+
designated in writing by the copyright owner as "Not a Contribution."
62+
63+
"Contributor" shall mean Licensor and any individual or Legal Entity
64+
on behalf of whom a Contribution has been received by Licensor and
65+
subsequently incorporated within the Work.
66+
67+
2. Grant of Copyright License. Subject to the terms and conditions of
68+
this License, each Contributor hereby grants to You a perpetual,
69+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70+
copyright license to reproduce, prepare Derivative Works of,
71+
publicly display, publicly perform, sublicense, and distribute the
72+
Work and such Derivative Works in Source or Object form.
73+
74+
3. Grant of Patent License. Subject to the terms and conditions of
75+
this License, each Contributor hereby grants to You a perpetual,
76+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77+
(except as stated in this section) patent license to make, have made,
78+
use, offer to sell, sell, import, and otherwise transfer the Work,
79+
where such license applies only to those patent claims licensable
80+
by such Contributor that are necessarily infringed by their
81+
Contribution(s) alone or by combination of their Contribution(s)
82+
with the Work to which such Contribution(s) was submitted. If You
83+
institute patent litigation against any entity (including a
84+
cross-claim or counterclaim in a lawsuit) alleging that the Work
85+
or a Contribution incorporated within the Work constitutes direct
86+
or contributory patent infringement, then any patent licenses
87+
granted to You under this License for that Work shall terminate
88+
as of the date such litigation is filed.
89+
90+
4. Redistribution. You may reproduce and distribute copies of the
91+
Work or Derivative Works thereof in any medium, with or without
92+
modifications, and in Source or Object form, provided that You
93+
meet the following conditions:
94+
95+
(a) You must give any other recipients of the Work or
96+
Derivative Works a copy of this License; and
97+
98+
(b) You must cause any modified files to carry prominent notices
99+
stating that You changed the files; and
100+
101+
(c) You must retain, in the Source form of any Derivative Works
102+
that You distribute, all copyright, patent, trademark, and
103+
attribution notices from the Source form of the Work,
104+
excluding those notices that do not pertain to any part of
105+
the Derivative Works; and
106+
107+
(d) If the Work includes a "NOTICE" text file as part of its
108+
distribution, then any Derivative Works that You distribute must
109+
include a readable copy of the attribution notices contained
110+
within such NOTICE file, excluding those notices that do not
111+
pertain to any part of the Derivative Works, in at least one
112+
of the following places: within a NOTICE text file distributed
113+
as part of the Derivative Works; within the Source form or
114+
documentation, if provided along with the Derivative Works; or,
115+
within a display generated by the Derivative Works, if and
116+
wherever such third-party notices normally appear. The contents
117+
of the NOTICE file are for informational purposes only and
118+
do not modify the License. You may add Your own attribution
119+
notices within Derivative Works that You distribute, alongside
120+
or as an addendum to the NOTICE text from the Work, provided
121+
that such additional attribution notices cannot be construed
122+
as modifying the License.
123+
124+
You may add Your own copyright statement to Your modifications and
125+
may provide additional or different license terms and conditions
126+
for use, reproduction, or distribution of Your modifications, or
127+
for any such Derivative Works as a whole, provided Your use,
128+
reproduction, and distribution of the Work otherwise complies with
129+
the conditions stated in this License.
130+
131+
5. Submission of Contributions. Unless You explicitly state otherwise,
132+
any Contribution intentionally submitted for inclusion in the Work
133+
by You to the Licensor shall be under the terms and conditions of
134+
this License, without any additional terms or conditions.
135+
Notwithstanding the above, nothing herein shall supersede or modify
136+
the terms of any separate license agreement you may have executed
137+
with Licensor regarding such Contributions.
138+
139+
6. Trademarks. This License does not grant permission to use the trade
140+
names, trademarks, service marks, or product names of the Licensor,
141+
except as required for reasonable and customary use in describing the
142+
origin of the Work and reproducing the content of the NOTICE file.
143+
144+
7. Disclaimer of Warranty. Unless required by applicable law or
145+
agreed to in writing, Licensor provides the Work (and each
146+
Contributor provides its Contributions) on an "AS IS" BASIS,
147+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148+
implied, including, without limitation, any warranties or conditions
149+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150+
PARTICULAR PURPOSE. You are solely responsible for determining the
151+
appropriateness of using or redistributing the Work and assume any
152+
risks associated with Your exercise of permissions under this License.
153+
154+
8. Limitation of Liability. In no event and under no legal theory,
155+
whether in tort (including negligence), contract, or otherwise,
156+
unless required by applicable law (such as deliberate and grossly
157+
negligent acts) or agreed to in writing, shall any Contributor be
158+
liable to You for damages, including any direct, indirect, special,
159+
incidental, or consequential damages of any character arising as a
160+
result of this License or out of the use or inability to use the
161+
Work (including but not limited to damages for loss of goodwill,
162+
work stoppage, computer failure or malfunction, or any and all
163+
other commercial damages or losses), even if such Contributor
164+
has been advised of the possibility of such damages.
165+
166+
9. Accepting Warranty or Additional Liability. While redistributing
167+
the Work or Derivative Works thereof, You may choose to offer,
168+
and charge a fee for, acceptance of support, warranty, indemnity,
169+
or other liability obligations and/or rights consistent with this
170+
License. However, in accepting such obligations, You may act only
171+
on Your own behalf and on Your sole responsibility, not on behalf
172+
of any other Contributor, and only if You agree to indemnify,
173+
defend, and hold each Contributor harmless for any liability
174+
incurred by, or claims asserted against, such Contributor by reason
175+
of your accepting any such warranty or additional liability.
176+
177+
END OF TERMS AND CONDITIONS

README.md

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2024 Ledger SAS
3+
4+
SPDX-License-Identifier: Apache-2.0
5+
-->
6+
7+
# dts-utils python package
8+
`dts-utils` is an utility python package that aims to ease dts handling in python and source code
9+
generation based on dts files. Dts file parsing, preprocessing, validation are **out of scope** of
10+
this package. This package is built on top of [Zephyr](https://github.com/zephyrproject-rtos/zephyr)
11+
[devicetree](https://pypi.org/project/devicetree/) package.
12+
13+
This package was built to fit OutpostOS needs but was designed to be generic enough and code
14+
generation language agnostic. Thus, this package can be used by any project which need to use
15+
dts files and generate code source or anything else based on it.
16+
17+
Provided [dts2src entrypoint](#dts2src-entrypoint) is based on Jinja2 template processing, allowing
18+
users to fully controlled generated output by providing his/her very own templates.
19+
20+
## Dependencies
21+
- Python >= 3.10
22+
- Jinja2 >= 3
23+
- devicetree >= 0.0.2
24+
- rich
25+
26+
## Prerequisites
27+
One may read, as an introduction, the following documentation:
28+
- [Jinja2 template writing](https://jinja.palletsprojects.com/en/3.1.x/templates/)
29+
- [Devicetree specification](https://www.devicetree.org/)
30+
- [Zephyr devicetree.dtlib](https://python-devicetree.readthedocs.io/en/latest/dtlib.html)
31+
32+
## Usage
33+
`dts_utils.Dts` is the based class, it uses internally `devicetree.dtlib.Dts` and ease handling
34+
by extending class attributes with `__getattr__`. For `Dts` object, attributes are resolved, in
35+
order, from aliases and then in root `Node`. For `Node`, attribute are resolved from child node,
36+
label and, then, property. `Property` are converted according to internal dtlib value type.
37+
38+
Accessing a property or child node is straightforward and simply need to use the dot (`.`)
39+
notation. If node or property contain special characters (e.g. `@`, `,`, `#`, `-`) in their name, one
40+
should use [`getattr`](https://docs.python.org/3/library/functions.html#getattr) python built-in.
41+
42+
```python
43+
import dts_utils
44+
45+
dts = dts_utils.Dts('/path/to/dts/file')
46+
47+
# get root node
48+
root = dts.root
49+
50+
# get soc node
51+
soc = dts.soc
52+
53+
# get usart1 device node by label
54+
# labeled node are accessible from dts file or parent node
55+
usart1 = dts.usart1
56+
# OR
57+
usart1 = soc.usart1
58+
59+
# get usart1 device node by name
60+
usart1 = getattr(dts, 'usart@4xxxxxxx')
61+
```
62+
63+
### dts_dump entrypoint
64+
65+
Command line entrypoint that can dump in a pretty formatted form the dts file.
66+
67+
```console
68+
$ dts_dump --help
69+
usage: dts_dump [-h] [-s] [-v] dts [node]
70+
71+
dump a dts in a human readable format
72+
73+
positional arguments:
74+
dts dts file
75+
node filter on node name or label
76+
77+
options:
78+
-h, --help show this help message and exit
79+
-s, --status-okay dump only status=okay nodes, except clocks
80+
-v, --version show program's version number and exit
81+
```
82+
Example:
83+
```console
84+
$ dts_dump /path/to/dts usart1
85+
usart1: serial@40013800 {
86+
compatible = "st,stm32-usart", "st,stm32-uart";
87+
reg = < 0x40013800 0x400 >;
88+
clocks = < &rcc 0xa4 0x4000 >;
89+
resets = < &rctl 0xf8e >;
90+
interrupts = < 0x3d 0x0 >;
91+
status = "okay";
92+
pinctrl-0 = < &usart1_tx_pc1 >, < &usart1_rx_pc0 >;
93+
phandle = < 0x7 >;
94+
};
95+
```
96+
97+
### dts2src entrypoint
98+
`dts2src` entrypoint is a helper command line tool that process Jinja2 templates with the given
99+
dts file. To ease template writing, built-in jinja extension `loopcontrol` is enabled, dts object
100+
and environment variables are pass to the jinja environment along with custom jinja filters and
101+
tests
102+
103+
```console
104+
$ dts2src --help
105+
usage: dts2src [-h] -d DTS -t TEMPLATE [-v] output
106+
107+
render jinja2 template using dts as data source
108+
109+
positional arguments:
110+
output output filename
111+
112+
options:
113+
-h, --help show this help message and exit
114+
-d DTS, --dts DTS dts file to use as data source
115+
-t TEMPLATE, --template TEMPLATE
116+
source template in jinja2 syntax
117+
-v, --version show program's version number and exit
118+
```
119+
120+
121+
#### access to dts node and property
122+
From Jinja environment, `dts_utils.Dts` is available as `dts`.
123+
Each nodes and/or properties are available using the dot (`.`) operator or `[]` operator (this is
124+
required if node or porperty name contains special characters).
125+
126+
e.g.
127+
```jinja
128+
{{ dts.soc }}
129+
```
130+
or
131+
```jinja
132+
{{ dts.usart1['pinctrl-0'] }}
133+
```
134+
135+
#### access to environment variable
136+
Environment variables are available, without external jinja extensions. Those are available as a
137+
dictionary named `env`.
138+
139+
e.g.
140+
```jinja
141+
{{ env.USER }}
142+
```
143+
144+
<!--
145+
Add custom filters/tests ref
146+
do not duplicate documentation entries
147+
Those are documented with pythondoc and generated with sphinx
148+
-->
149+
150+
<!-- TODO
151+
## Contributing
152+
-->
153+
154+
## License
155+
```
156+
Copyright 2023 - 2024 Ledger SAS
157+
158+
Licensed under the Apache License, Version 2.0 (the "License");
159+
you may not use this file except in compliance with the License.
160+
You may obtain a copy of the License at
161+
162+
http://www.apache.org/licenses/LICENSE-2.0
163+
164+
Unless required by applicable law or agreed to in writing, software
165+
distributed under the License is distributed on an "AS IS" BASIS,
166+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
167+
See the License for the specific language governing permissions and
168+
limitations under the License.
169+
```

0 commit comments

Comments
 (0)