Skip to main content

A Device Tree Manipulation Framework

Project description

# Overview:

Fundamentally, lopper takes an input device tree (normally a system device tree),
applies operations to that tree, and outputs one or more modified/processed trees.

See the README-architecture.txt for details on how lopper works. This README file
has practical information, known limitations and TODO items.

# config/setup:

Lopper is in a single repository, and is available via git or pypi:

## git:

% git clone git://github.com/devicetree-org/lopper

Ensure that the prerequisite tools are installed on your host. Lopper is written
in python3, and requires that standard support libraries are installed. Current
testing has been against python 3.10.x (the minimum version), but no issues are
expected on newer 3.x releases.

In addition to the standard libraries, Lopper uses: pcpp (or cpp), humanfriendly,
dtc and libfdt for processing and manipulating device trees. These tools must be
installed and on the PATH. You can also use the [venv](https://docs.python.org/3/library/venv.html)
to install and manage the python dependencies, more on this below.

**Note:** (python cpp) pcpp is optional (available on PyPi), and if not available cpp
will be used for pre-processing input files. If comments are to be maintained
through the processing flow, pcpp must be used since it has functionality to
not strip them during processing.

For yaml file processing, lopper has an optional dependency on python's yaml
and ruamel, and anytree for importing the contents of yaml files.

### Using [venv](https://docs.python.org/3/library/venv.html) based flow with git:

Using python3's venv faciliates lopper development and usage. Please refer to
python documentation to get more information about this topic. Some starting
information follows:

First time virtual env setup:

```
cd <lopper-repo>
python3 -m venv .venv
source .venv/bin/activate
# this will install all lopper dependencies locally within the virtual env
(.venv) % pip3 install -r requirements.txt
(.venv) % pip list
deactivate
```
Now, everytime you'd like to use lopper, just activate and deactivate within any shell:

```
# Activate the virtual env on demand
cd <lopper-repo>
source .venv/bin/activate

# Now, you are inside a virtual env
# Use lopper, do development etc.
# (.venv) % ./lopper.py ...

# when done, deactivate virtual env
deactivate
```

## pypi:

% pip install lopper

The pip installation will pull in the required dependencies, and also contains
the following optional features:

- 'server' : enable if the ReST API server is required
- 'yaml' : enable for yaml support
- 'dt' : enable if non-libfdt support is required
- 'pcpp' : enable for enhanced preprocessing functionality

i.e.:

% pip install lopper[server,yaml,dt,pcpp]

**Note:** lopper (via clone or pip) contains a vendored python libfdt (from dtc),
since it is not available via a pip dependency. If the vendored versions do not
match the python in use, you must manually ensure that libfdt is installed and
available.

If libfdt python bindings are not in a standard location, make sure they are
on PYTHONPATH:

% export PYTHONPATH=<path to pylibfdt>:$PYTHONPATH

# submitting patches / reporting issues

Pull requests or patches are acceptable for sending changes/fixes/features to Lopper,
chose whichever matches your preferred workflow.

For pull requests and issues:

- Use the Lopper github: https://github.com/devicetree-org/lopper

For Patches:

- Use the groups.io mailing list: https://groups.io/g/lopper-devel
- kernel (lkml) style patch sending is preferred
- Send patches via git send-mail, using something like:

% git send-email -M --to lopper-devel@groups.io <path to your patches>

For discussion:

- Use the mailing list or the github wiki/discussions/issue tracker

# Lopper overview:

```
lopper.py --help

Usage: lopper [OPTION] <system device tree> [<output file>]...
-v, --verbose enable verbose/debug processing (specify more than once for more verbosity)
-t, --target indicate the starting domain for processing (i.e. chosen node or domain label)
, --dryrun run all processing, but don't write any output files
-d, --dump dump a dtb as dts source
-i, --input process supplied input device tree description
-I, --input-dirs colon separated list of directories to search for input files (any type)
input directories can also be set by environment variable LOPPER_INPUT_DIRS
-a, --assist load specified python assist (for node or output processing)
-A, --assist-paths colon separated lists of paths to search for assist loading
, --enhanced when writing output files, do enhanced processing (this includes phandle replacement, comments, etc
. --auto automatically run any eligible assists (via -a) or lops (embedded)
, --permissive do not enforce fully validated properties (phandles, etc)
, -W enable a warning:
invalid_phandle (warn on invalid phandles)
duplicate_phandle (warn on duplicate phandle values)
phandle_change (warn when phandle value changes)
memory_cells (validate #address-cells, #size-cells)
memory_reg (validate reg property format)
memory_overlap (detect reserved-memory overlaps)
memory_all (enable all memory checks)
all (enable all warnings)
, --memmap output file for memory map visualization (use - for stdout)
, --symbols generate (and maintain) the __symbols__ node during processing
-o, --output output file
, --overlay Allow input files (dts or yaml) to overlay system device tree nodes
-x. --xlate run automatic translations on nodes for indicated input types (yaml,dts)
, --no-libfdt don't use dtc/libfdt for parsing/compiling device trees
-f, --force force overwrite output file(s)
, --werror treat warnings as errors
-S, --save-temps don't remove temporary files
, --cfgfile specify a lopper configuration file to use (configparser format)
, --cfgval specify a configuration value to use (in configparser section format). Can be specified multiple times
, --schema one of: "path to a dts schema", "learn" or "none"
-h, --help display this help and exit
-O, --outdir directory to use for output files
, --server after processing, start a server for ReST API calls
, --version output the version and exit
```

A few command line notes:

-i <file>: these can be any supported input file (.yaml, .dts). The compatible
string in .dts files is used to distinguish operation files (lops)
from device tree files. If passed, multiple compatible input files are
merged before processing.

<output> file: The default output file for the modified system device tree. lopper
operations can output more variants as required

**Note:** Since lopper manipulates dtb's (as compiled by dtc), some information
that is in the source dts is lost on the output of the final dts. This includes
comments, symbolic phandles, formatting of strings, etc. If you are transforming
to dts files and want to maintain this information, use the --enhanced flag.
This flag indicates that lopper should perform pre-processing and output phandle
mapping to restore both comments, labels and symbolic phandles to the final
output.

**Note:** By default Lopper puts pre-processed files (.pp) into the same
directory as the system device tree. This is required, since in some cases when
the .pp files and device tree are not in the same directory, dtc cannot resolve
labels from include files, and will error. That being said, if the -O option is
used to specify an output directory, the pre-processed file will be placed
there.

## Sample run:

% ./lopper.py -f --enhanced --werror -v -v -i lopper/lops/lop-load.dts -i lopper/lops/lop-domain-r5.dts device-trees/system-device-tree.dts modified-sdt.dts


% python -m lopper -f --enhanced --werror -v -v -i lopper/lops/lop-load.dts -i lopper/lops/lop-domain-r5.dts device-trees/system-device-tree.dts modified-sdt.dts

## Limitations:

- Internal interfaces are subject to change

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lopper-1.4.1.tar.gz (2.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lopper-1.4.1-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file lopper-1.4.1.tar.gz.

File metadata

  • Download URL: lopper-1.4.1.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lopper-1.4.1.tar.gz
Algorithm Hash digest
SHA256 03bf1b56aa351e831210e62e1b131344cbf01502fa3c0d70ffd94a40796ff889
MD5 c63d45353067df815fbc8eaa8e0b66ea
BLAKE2b-256 9bd2c9b5a5729731da31a37e956a09efef6a37df7d1f1f71341e2970d3cb7b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for lopper-1.4.1.tar.gz:

Publisher: release.yml on devicetree-org/lopper

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lopper-1.4.1-py3-none-any.whl.

File metadata

  • Download URL: lopper-1.4.1-py3-none-any.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lopper-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 389035b2004ffd132bf0f1ea7b47c75f613301402077062bfe6a7448ec29de88
MD5 e8bcff596b61fc3bac3555e53ebf1624
BLAKE2b-256 37e86505e53394af86f7d9711e725f59e3d5dc7340f2cd900033d3b4a9d029ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for lopper-1.4.1-py3-none-any.whl:

Publisher: release.yml on devicetree-org/lopper

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page