├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README-architecture.md ├── README.md ├── README.pydoc ├── demos └── openamp │ ├── .gitignore │ ├── README.md │ └── inputs │ ├── 0001-xilinx-overlay-Default-to-using-upstream-remoteproc-.patch │ ├── openamp-overlay-versal-2ve-2vm.yaml │ ├── openamp-overlay-versal-lockstep.yaml │ ├── openamp-overlay-versal-net-lockstep.yaml │ ├── openamp-overlay-versal-net-split.yaml │ ├── openamp-overlay-versal-net.yaml │ ├── openamp-overlay-versal-split.yaml │ ├── openamp-overlay-versal.yaml │ ├── openamp-overlay-zynqmp-dev-mem.yaml │ ├── openamp-overlay-zynqmp-lockstep.yaml │ ├── openamp-overlay-zynqmp-split.yaml │ ├── openamp-overlay-zynqmp.yaml │ ├── openamp_versal.dts │ ├── openamp_zu.dts │ ├── versal2_run.sh │ └── versal2_vek385_sdt │ ├── HashBlock0.bin │ ├── aie_primitive.json │ ├── include │ └── dt-bindings │ │ ├── clock │ │ ├── xlnx-versal-clk.h │ │ ├── xlnx-versal-net-clk.h │ │ ├── xlnx-versal2-clk.h │ │ └── xlnx-zynqmp-clk.h │ │ ├── dma │ │ └── xlnx-zynqmp-dpdma.h │ │ ├── gpio │ │ └── gpio.h │ │ ├── input │ │ ├── input.h │ │ └── linux-event-codes.h │ │ ├── interrupt-controller │ │ ├── arm-gic.h │ │ └── irq.h │ │ ├── net │ │ ├── mscc-phy-vsc8531.h │ │ └── ti-dp83867.h │ │ ├── phy │ │ └── phy.h │ │ ├── pinctrl │ │ └── pinctrl-zynqmp.h │ │ ├── power │ │ ├── xlnx-versal-net-power.h │ │ ├── xlnx-versal-power.h │ │ ├── xlnx-versal-regnode.h │ │ ├── xlnx-versal2-power.h │ │ └── xlnx-zynqmp-power.h │ │ ├── reset │ │ ├── xlnx-versal-net-resets.h │ │ ├── xlnx-versal-resets.h │ │ ├── xlnx-versal2-resets.h │ │ └── xlnx-zynqmp-resets.h │ │ └── thermal │ │ └── thermal.h │ ├── pcw.dtsi │ ├── pl.dtsi │ ├── pl.dtsi-bak │ ├── system-top.dts │ ├── versal2-clk-ccf.dtsi │ ├── versal2-vek385-reva.dtsi │ └── versal2.dtsi ├── device-trees ├── system-device-tree-tenzing.dts ├── system-device-tree-versal-vck190.dts ├── system-device-tree-zynq.dts ├── system-device-tree-zynqmp.dts └── system-device-tree.dts ├── docs └── amd │ ├── linux │ ├── .gitignore │ ├── Makefile │ ├── make.bat │ └── source │ │ ├── chapter1-introduction.rst │ │ ├── chapter2-linux_device_tree_generation.rst │ │ ├── chapter3-overlay_generation.rst │ │ ├── conf.py │ │ └── index.rst │ └── zephyr │ ├── .gitignore │ ├── Makefile │ ├── make.bat │ └── source │ ├── cortex-a78 │ └── index.rst │ ├── cortex-r52 │ └── index.rst │ ├── index.rst │ └── microblaze-riscv │ └── index.rst ├── lopper.py ├── lopper ├── VERSION ├── __init__.py ├── __main__.py ├── assists │ ├── README │ ├── baremetal_bspconfig_xlnx.py │ ├── baremetal_gentestapp_xlnx.py │ ├── baremetal_getsupported_comp_xlnx.py │ ├── baremetal_validate_comp_xlnx.py │ ├── baremetal_xparameters_xlnx.py │ ├── baremetalconfig_xlnx.py │ ├── baremetaldrvlist_xlnx.py │ ├── baremetallinker_xlnx.py │ ├── bmcmake_metadata_xlnx.py │ ├── cfg_obj │ │ └── modules │ │ │ ├── cfg_data_tpl.py │ │ │ ├── cfgobj_hard_coding.py │ │ │ ├── sdtinfo.py │ │ │ └── section.py │ ├── common_utils.py │ ├── compare.py │ ├── domain_access.py │ ├── extract-xen.py │ ├── extract.py │ ├── gen_domain_dts.py │ ├── generate_config_object.py │ ├── grep.py │ ├── image-builder.py │ ├── isospec.py │ ├── lopper_lib.py │ ├── openamp.py │ ├── openamp_xlnx.py │ ├── openamp_xlnx_common.py │ ├── petalinuxconfig_xlnx.py │ ├── subsystem.py │ ├── topology_headr.py │ ├── xlnx │ │ ├── cdogen.py │ │ ├── ftb.py │ │ ├── power.py │ │ ├── protections.py │ │ ├── subsystem.py │ │ ├── xmpu.py │ │ └── xppu.py │ ├── xlnx_overlay_dt.py │ ├── xlnx_overlay_pl_dt.py │ ├── yaml_bindings │ │ ├── xlnx,audio-formatter.yaml │ │ ├── xlnx,axis-broadcaster.yaml │ │ ├── xlnx,clocking-wizard.yaml │ │ ├── xlnx,csi2rxss.yaml │ │ ├── xlnx,dp-tx.yaml │ │ ├── xlnx,dsi.yaml │ │ ├── xlnx,frmbuf-rd-wr.yaml │ │ ├── xlnx,i2s.yaml │ │ ├── xlnx,mixer.yaml │ │ ├── xlnx,rfdc.yaml │ │ ├── xlnx,sd-fec.yaml │ │ ├── xlnx,sdi-tx.yaml │ │ ├── xlnx,sdirxss.yaml │ │ ├── xlnx,spdif.yaml │ │ ├── xlnx,v-axi4s-switch.yaml │ │ ├── xlnx,v-demosaic.yaml │ │ ├── xlnx,v-dprxss.yaml │ │ ├── xlnx,v-gamma-lut.yaml │ │ ├── xlnx,v-hdmi-phy1.yaml │ │ ├── xlnx,v-hdmi-rx-ss.yaml │ │ ├── xlnx,v-hdmi-rxss1.yaml │ │ ├── xlnx,v-hdmi-tx-ss.yaml │ │ ├── xlnx,v-hdmi-txss1.yaml │ │ ├── xlnx,v-multi-scaler.yaml │ │ ├── xlnx,v-scd.yaml │ │ ├── xlnx,v-tpg.yaml │ │ ├── xlnx,v-vpss-csc.yaml │ │ ├── xlnx,v-vpss-scaler.yaml │ │ ├── xlnx,versal-gt.yaml │ │ ├── xlnx,vphy.yaml │ │ ├── xlnx,xdma-host.yaml │ │ └── xlnx,zynqmp-ipi-mailbox.yaml │ ├── yaml_to_dts_expansion.py │ ├── zephyr_board_dt.py │ ├── zephyr_supported_comp.yaml │ ├── zuplus_config.py │ ├── zuplus_xppu_config.py │ └── zuplus_xppu_default.py ├── base.py ├── dt.py ├── fdt.py ├── fmt.py ├── log.py ├── lopper.ini ├── lops │ ├── README │ ├── domain%.lop │ ├── lop-a53-32bit.dts │ ├── lop-a53-imux.dts │ ├── lop-a72-imux.dts │ ├── lop-a78-imux.dts │ ├── lop-bin.dts │ ├── lop-cpu-oslist.dts │ ├── lop-cpulist.dts │ ├── lop-delete-chosen.dts │ ├── lop-domain-a53.dts │ ├── lop-domain-a72-prune.dts │ ├── lop-domain-a72.dts │ ├── lop-domain-linux-a53-prune.dts │ ├── lop-domain-linux-a53.dts │ ├── lop-domain-linux.dts │ ├── lop-domain-r5-zynqmp.dts │ ├── lop-domain-r5.dts │ ├── lop-domain-simple.dts │ ├── lop-domain-zephyr.dts │ ├── lop-gen_domain_dts-invoke.dts │ ├── lop-gic-el1.dts │ ├── lop-load.dts │ ├── lop-mbv-zephyr-intc.dts │ ├── lop-microblaze-riscv.dts │ ├── lop-microblaze.dts │ ├── lop-openamp-invoke.dts │ ├── lop-openamp-prune.dts │ ├── lop-r5-imux.dts │ ├── lop-r52-imux.dts │ ├── lop-select-example.dts │ ├── lop-ttc-split.dts │ ├── lop-versal-vck190_apu_sub-xilpm_subsystem.dts │ ├── lop-versal-vck190_domains-xilpm_subsystem.dts │ ├── lop-versal-vck190_ls-xilpm_subsystem.dts │ ├── lop-versal-vck190_split-xilpm_subsystem.dts │ ├── lop-versal-vck190_sub_perms.dts │ ├── lop-xlate-yaml.dts │ └── lop-zyxclmm-drm-memory-region.dts ├── query.py ├── rest.py ├── schema.py ├── selftest │ ├── assist-sanity.py │ ├── domains │ │ ├── domains-child-all-glob.yaml │ │ ├── domains-child-no-glob.yaml │ │ ├── domains-child-serial-glob.yaml │ │ └── domains-parent.yaml │ ├── system-top-embedded-lop.dts │ └── system-top.dts ├── tree.py ├── vendor │ └── lib │ │ ├── python3.10 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-310-x86_64-linux-gnu.so │ │ │ ├── _libfdt.py │ │ │ └── libfdt.py │ │ ├── python3.11 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-311-x86_64-linux-gnu.so │ │ │ └── libfdt.py │ │ ├── python3.12 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-312-x86_64-linux-gnu.so │ │ │ ├── _libfdt.py │ │ │ └── libfdt.py │ │ ├── python3.13 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-313-x86_64-linux-gnu.so │ │ │ ├── _libfdt.py │ │ │ └── libfdt.py │ │ ├── python3.5 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-35m-x86_64-linux-gnu.so │ │ │ ├── libfdt-1.5.0_gd37f6b20-py3.5.egg-info │ │ │ └── libfdt.py │ │ ├── python3.6 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-36m-x86_64-linux-gnu.so │ │ │ ├── libfdt-1.5.0_gd37f6b20_dirty-py3.6.egg-info │ │ │ └── libfdt.py │ │ ├── python3.7 │ │ └── site-packages │ │ │ ├── _libfdt.cpython-37m-x86_64-linux-gnu.so │ │ │ ├── libfdt-1.5.0_gd37f6b20_dirty-py3.7.egg-info │ │ │ └── libfdt.py │ │ └── python3.8 │ │ └── site-packages │ │ ├── _libfdt.cpython-38-x86_64-linux-gnu.so │ │ ├── libfdt-1.6.0_gca19c3db_dirty-py3.8.egg-info │ │ └── libfdt.py └── yaml.py ├── lopper_sanity.py ├── requirements.txt ├── setup.py └── specification ├── .gitignore ├── Makefile ├── README.md └── source ├── appendix-example.rst ├── chapter1-introduction.rst ├── chapter2-hardware.rst ├── chapter3-execution-domains.rst ├── chapter4-bus-firewalls.rst ├── chapter5-remoteproc.rst ├── chapter6-simplified-yaml.rst ├── chapter7-domains-yaml.rst ├── conf.py ├── index.rst ├── references.rst ├── system-device-tree.dts └── under-discussion.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__* 2 | *.swp 3 | dist/* 4 | build/* 5 | lopper.egg-info/ 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/README-architecture.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/README.md -------------------------------------------------------------------------------- /README.pydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/README.pydoc -------------------------------------------------------------------------------- /demos/openamp/.gitignore: -------------------------------------------------------------------------------- 1 | scratch/ 2 | -------------------------------------------------------------------------------- /demos/openamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/README.md -------------------------------------------------------------------------------- /demos/openamp/inputs/0001-xilinx-overlay-Default-to-using-upstream-remoteproc-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/0001-xilinx-overlay-Default-to-using-upstream-remoteproc-.patch -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal-2ve-2vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal-2ve-2vm.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal-lockstep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal-lockstep.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal-net-lockstep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal-net-lockstep.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal-net-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal-net-split.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal-net.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal-net.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal-split.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-versal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-versal.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-zynqmp-dev-mem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-zynqmp-dev-mem.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-zynqmp-lockstep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-zynqmp-lockstep.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-zynqmp-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-zynqmp-split.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp-overlay-zynqmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp-overlay-zynqmp.yaml -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp_versal.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp_versal.dts -------------------------------------------------------------------------------- /demos/openamp/inputs/openamp_zu.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/openamp_zu.dts -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_run.sh -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/HashBlock0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/HashBlock0.bin -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/aie_primitive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/aie_primitive.json -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-versal-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-versal-clk.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-versal-net-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-versal-net-clk.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-versal2-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-versal2-clk.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-zynqmp-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/clock/xlnx-zynqmp-clk.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/dma/xlnx-zynqmp-dpdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/dma/xlnx-zynqmp-dpdma.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/gpio/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/gpio/gpio.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/input/input.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/input/linux-event-codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/input/linux-event-codes.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/interrupt-controller/arm-gic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/interrupt-controller/arm-gic.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/interrupt-controller/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/interrupt-controller/irq.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/net/mscc-phy-vsc8531.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/net/mscc-phy-vsc8531.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/net/ti-dp83867.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/net/ti-dp83867.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/phy/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/phy/phy.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/pinctrl/pinctrl-zynqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/pinctrl/pinctrl-zynqmp.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal-net-power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal-net-power.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal-power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal-power.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal-regnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal-regnode.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal2-power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-versal2-power.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-zynqmp-power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/power/xlnx-zynqmp-power.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-versal-net-resets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-versal-net-resets.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-versal-resets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-versal-resets.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-versal2-resets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-versal2-resets.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-zynqmp-resets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/reset/xlnx-zynqmp-resets.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/thermal/thermal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/include/dt-bindings/thermal/thermal.h -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/pcw.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/pcw.dtsi -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/pl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/pl.dtsi -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/pl.dtsi-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/pl.dtsi-bak -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/system-top.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/system-top.dts -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/versal2-clk-ccf.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/versal2-clk-ccf.dtsi -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/versal2-vek385-reva.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/versal2-vek385-reva.dtsi -------------------------------------------------------------------------------- /demos/openamp/inputs/versal2_vek385_sdt/versal2.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/demos/openamp/inputs/versal2_vek385_sdt/versal2.dtsi -------------------------------------------------------------------------------- /device-trees/system-device-tree-tenzing.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/device-trees/system-device-tree-tenzing.dts -------------------------------------------------------------------------------- /device-trees/system-device-tree-versal-vck190.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/device-trees/system-device-tree-versal-vck190.dts -------------------------------------------------------------------------------- /device-trees/system-device-tree-zynq.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/device-trees/system-device-tree-zynq.dts -------------------------------------------------------------------------------- /device-trees/system-device-tree-zynqmp.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/device-trees/system-device-tree-zynqmp.dts -------------------------------------------------------------------------------- /device-trees/system-device-tree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/device-trees/system-device-tree.dts -------------------------------------------------------------------------------- /docs/amd/linux/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /docs/amd/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/Makefile -------------------------------------------------------------------------------- /docs/amd/linux/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/make.bat -------------------------------------------------------------------------------- /docs/amd/linux/source/chapter1-introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/source/chapter1-introduction.rst -------------------------------------------------------------------------------- /docs/amd/linux/source/chapter2-linux_device_tree_generation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/source/chapter2-linux_device_tree_generation.rst -------------------------------------------------------------------------------- /docs/amd/linux/source/chapter3-overlay_generation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/source/chapter3-overlay_generation.rst -------------------------------------------------------------------------------- /docs/amd/linux/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/source/conf.py -------------------------------------------------------------------------------- /docs/amd/linux/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/linux/source/index.rst -------------------------------------------------------------------------------- /docs/amd/zephyr/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /docs/amd/zephyr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/zephyr/Makefile -------------------------------------------------------------------------------- /docs/amd/zephyr/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/zephyr/make.bat -------------------------------------------------------------------------------- /docs/amd/zephyr/source/cortex-a78/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/zephyr/source/cortex-a78/index.rst -------------------------------------------------------------------------------- /docs/amd/zephyr/source/cortex-r52/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/zephyr/source/cortex-r52/index.rst -------------------------------------------------------------------------------- /docs/amd/zephyr/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/zephyr/source/index.rst -------------------------------------------------------------------------------- /docs/amd/zephyr/source/microblaze-riscv/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/docs/amd/zephyr/source/microblaze-riscv/index.rst -------------------------------------------------------------------------------- /lopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper.py -------------------------------------------------------------------------------- /lopper/VERSION: -------------------------------------------------------------------------------- 1 | 1.3.0 2 | -------------------------------------------------------------------------------- /lopper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/__init__.py -------------------------------------------------------------------------------- /lopper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/__main__.py -------------------------------------------------------------------------------- /lopper/assists/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/README -------------------------------------------------------------------------------- /lopper/assists/baremetal_bspconfig_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetal_bspconfig_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetal_gentestapp_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetal_gentestapp_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetal_getsupported_comp_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetal_getsupported_comp_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetal_validate_comp_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetal_validate_comp_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetal_xparameters_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetal_xparameters_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetalconfig_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetalconfig_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetaldrvlist_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetaldrvlist_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/baremetallinker_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/baremetallinker_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/bmcmake_metadata_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/bmcmake_metadata_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/cfg_obj/modules/cfg_data_tpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/cfg_obj/modules/cfg_data_tpl.py -------------------------------------------------------------------------------- /lopper/assists/cfg_obj/modules/cfgobj_hard_coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/cfg_obj/modules/cfgobj_hard_coding.py -------------------------------------------------------------------------------- /lopper/assists/cfg_obj/modules/sdtinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/cfg_obj/modules/sdtinfo.py -------------------------------------------------------------------------------- /lopper/assists/cfg_obj/modules/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/cfg_obj/modules/section.py -------------------------------------------------------------------------------- /lopper/assists/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/common_utils.py -------------------------------------------------------------------------------- /lopper/assists/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/compare.py -------------------------------------------------------------------------------- /lopper/assists/domain_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/domain_access.py -------------------------------------------------------------------------------- /lopper/assists/extract-xen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/extract-xen.py -------------------------------------------------------------------------------- /lopper/assists/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/extract.py -------------------------------------------------------------------------------- /lopper/assists/gen_domain_dts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/gen_domain_dts.py -------------------------------------------------------------------------------- /lopper/assists/generate_config_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/generate_config_object.py -------------------------------------------------------------------------------- /lopper/assists/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/grep.py -------------------------------------------------------------------------------- /lopper/assists/image-builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/image-builder.py -------------------------------------------------------------------------------- /lopper/assists/isospec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/isospec.py -------------------------------------------------------------------------------- /lopper/assists/lopper_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/lopper_lib.py -------------------------------------------------------------------------------- /lopper/assists/openamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/openamp.py -------------------------------------------------------------------------------- /lopper/assists/openamp_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/openamp_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/openamp_xlnx_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/openamp_xlnx_common.py -------------------------------------------------------------------------------- /lopper/assists/petalinuxconfig_xlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/petalinuxconfig_xlnx.py -------------------------------------------------------------------------------- /lopper/assists/subsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/subsystem.py -------------------------------------------------------------------------------- /lopper/assists/topology_headr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/topology_headr.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/cdogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/cdogen.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/ftb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/ftb.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/power.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/protections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/protections.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/subsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/subsystem.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/xmpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/xmpu.py -------------------------------------------------------------------------------- /lopper/assists/xlnx/xppu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx/xppu.py -------------------------------------------------------------------------------- /lopper/assists/xlnx_overlay_dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx_overlay_dt.py -------------------------------------------------------------------------------- /lopper/assists/xlnx_overlay_pl_dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/xlnx_overlay_pl_dt.py -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,audio-formatter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,audio-formatter.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,axis-broadcaster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,axis-broadcaster.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,clocking-wizard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,clocking-wizard.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,csi2rxss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,csi2rxss.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,dp-tx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,dp-tx.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,dsi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,dsi.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,frmbuf-rd-wr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,frmbuf-rd-wr.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,i2s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,i2s.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,mixer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,mixer.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,rfdc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,rfdc.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,sd-fec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,sd-fec.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,sdi-tx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,sdi-tx.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,sdirxss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,sdirxss.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,spdif.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,spdif.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-axi4s-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-axi4s-switch.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-demosaic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-demosaic.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-dprxss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-dprxss.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-gamma-lut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-gamma-lut.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-hdmi-phy1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-hdmi-phy1.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-hdmi-rx-ss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-hdmi-rx-ss.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-hdmi-rxss1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-hdmi-rxss1.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-hdmi-tx-ss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-hdmi-tx-ss.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-hdmi-txss1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-hdmi-txss1.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-multi-scaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-multi-scaler.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-scd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-scd.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-tpg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-tpg.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-vpss-csc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-vpss-csc.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,v-vpss-scaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,v-vpss-scaler.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,versal-gt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,versal-gt.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,vphy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,vphy.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,xdma-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,xdma-host.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_bindings/xlnx,zynqmp-ipi-mailbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_bindings/xlnx,zynqmp-ipi-mailbox.yaml -------------------------------------------------------------------------------- /lopper/assists/yaml_to_dts_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/yaml_to_dts_expansion.py -------------------------------------------------------------------------------- /lopper/assists/zephyr_board_dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/zephyr_board_dt.py -------------------------------------------------------------------------------- /lopper/assists/zephyr_supported_comp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/zephyr_supported_comp.yaml -------------------------------------------------------------------------------- /lopper/assists/zuplus_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/zuplus_config.py -------------------------------------------------------------------------------- /lopper/assists/zuplus_xppu_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/zuplus_xppu_config.py -------------------------------------------------------------------------------- /lopper/assists/zuplus_xppu_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/assists/zuplus_xppu_default.py -------------------------------------------------------------------------------- /lopper/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/base.py -------------------------------------------------------------------------------- /lopper/dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/dt.py -------------------------------------------------------------------------------- /lopper/fdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/fdt.py -------------------------------------------------------------------------------- /lopper/fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/fmt.py -------------------------------------------------------------------------------- /lopper/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/log.py -------------------------------------------------------------------------------- /lopper/lopper.ini: -------------------------------------------------------------------------------- 1 | [yaml] 2 | bool_as_int=True 3 | lists_as_nodes=False 4 | -------------------------------------------------------------------------------- /lopper/lops/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/README -------------------------------------------------------------------------------- /lopper/lops/domain%.lop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/domain%.lop -------------------------------------------------------------------------------- /lopper/lops/lop-a53-32bit.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-a53-32bit.dts -------------------------------------------------------------------------------- /lopper/lops/lop-a53-imux.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-a53-imux.dts -------------------------------------------------------------------------------- /lopper/lops/lop-a72-imux.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-a72-imux.dts -------------------------------------------------------------------------------- /lopper/lops/lop-a78-imux.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-a78-imux.dts -------------------------------------------------------------------------------- /lopper/lops/lop-bin.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-bin.dts -------------------------------------------------------------------------------- /lopper/lops/lop-cpu-oslist.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-cpu-oslist.dts -------------------------------------------------------------------------------- /lopper/lops/lop-cpulist.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-cpulist.dts -------------------------------------------------------------------------------- /lopper/lops/lop-delete-chosen.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-delete-chosen.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-a53.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-a53.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-a72-prune.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-a72-prune.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-a72.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-a72.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-linux-a53-prune.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-linux-a53-prune.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-linux-a53.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-linux-a53.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-linux.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-linux.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-r5-zynqmp.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-r5-zynqmp.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-r5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-r5.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-simple.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-simple.dts -------------------------------------------------------------------------------- /lopper/lops/lop-domain-zephyr.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-domain-zephyr.dts -------------------------------------------------------------------------------- /lopper/lops/lop-gen_domain_dts-invoke.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-gen_domain_dts-invoke.dts -------------------------------------------------------------------------------- /lopper/lops/lop-gic-el1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-gic-el1.dts -------------------------------------------------------------------------------- /lopper/lops/lop-load.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-load.dts -------------------------------------------------------------------------------- /lopper/lops/lop-mbv-zephyr-intc.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-mbv-zephyr-intc.dts -------------------------------------------------------------------------------- /lopper/lops/lop-microblaze-riscv.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-microblaze-riscv.dts -------------------------------------------------------------------------------- /lopper/lops/lop-microblaze.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-microblaze.dts -------------------------------------------------------------------------------- /lopper/lops/lop-openamp-invoke.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-openamp-invoke.dts -------------------------------------------------------------------------------- /lopper/lops/lop-openamp-prune.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-openamp-prune.dts -------------------------------------------------------------------------------- /lopper/lops/lop-r5-imux.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-r5-imux.dts -------------------------------------------------------------------------------- /lopper/lops/lop-r52-imux.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-r52-imux.dts -------------------------------------------------------------------------------- /lopper/lops/lop-select-example.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-select-example.dts -------------------------------------------------------------------------------- /lopper/lops/lop-ttc-split.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-ttc-split.dts -------------------------------------------------------------------------------- /lopper/lops/lop-versal-vck190_apu_sub-xilpm_subsystem.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-versal-vck190_apu_sub-xilpm_subsystem.dts -------------------------------------------------------------------------------- /lopper/lops/lop-versal-vck190_domains-xilpm_subsystem.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-versal-vck190_domains-xilpm_subsystem.dts -------------------------------------------------------------------------------- /lopper/lops/lop-versal-vck190_ls-xilpm_subsystem.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-versal-vck190_ls-xilpm_subsystem.dts -------------------------------------------------------------------------------- /lopper/lops/lop-versal-vck190_split-xilpm_subsystem.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-versal-vck190_split-xilpm_subsystem.dts -------------------------------------------------------------------------------- /lopper/lops/lop-versal-vck190_sub_perms.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-versal-vck190_sub_perms.dts -------------------------------------------------------------------------------- /lopper/lops/lop-xlate-yaml.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-xlate-yaml.dts -------------------------------------------------------------------------------- /lopper/lops/lop-zyxclmm-drm-memory-region.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/lops/lop-zyxclmm-drm-memory-region.dts -------------------------------------------------------------------------------- /lopper/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/query.py -------------------------------------------------------------------------------- /lopper/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/rest.py -------------------------------------------------------------------------------- /lopper/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/schema.py -------------------------------------------------------------------------------- /lopper/selftest/assist-sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/assist-sanity.py -------------------------------------------------------------------------------- /lopper/selftest/domains/domains-child-all-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/domains/domains-child-all-glob.yaml -------------------------------------------------------------------------------- /lopper/selftest/domains/domains-child-no-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/domains/domains-child-no-glob.yaml -------------------------------------------------------------------------------- /lopper/selftest/domains/domains-child-serial-glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/domains/domains-child-serial-glob.yaml -------------------------------------------------------------------------------- /lopper/selftest/domains/domains-parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/domains/domains-parent.yaml -------------------------------------------------------------------------------- /lopper/selftest/system-top-embedded-lop.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/system-top-embedded-lop.dts -------------------------------------------------------------------------------- /lopper/selftest/system-top.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/selftest/system-top.dts -------------------------------------------------------------------------------- /lopper/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/tree.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.10/site-packages/_libfdt.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.10/site-packages/_libfdt.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.10/site-packages/_libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.10/site-packages/_libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.10/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.10/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.11/site-packages/_libfdt.cpython-311-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.11/site-packages/_libfdt.cpython-311-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.11/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.11/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.12/site-packages/_libfdt.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.12/site-packages/_libfdt.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.12/site-packages/_libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.12/site-packages/_libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.12/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.12/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.13/site-packages/_libfdt.cpython-313-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.13/site-packages/_libfdt.cpython-313-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.13/site-packages/_libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.13/site-packages/_libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.13/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.13/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.5/site-packages/_libfdt.cpython-35m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.5/site-packages/_libfdt.cpython-35m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.5/site-packages/libfdt-1.5.0_gd37f6b20-py3.5.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.5/site-packages/libfdt-1.5.0_gd37f6b20-py3.5.egg-info -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.5/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.5/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.6/site-packages/_libfdt.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.6/site-packages/_libfdt.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.6/site-packages/libfdt-1.5.0_gd37f6b20_dirty-py3.6.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.6/site-packages/libfdt-1.5.0_gd37f6b20_dirty-py3.6.egg-info -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.6/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.6/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.7/site-packages/_libfdt.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.7/site-packages/_libfdt.cpython-37m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.7/site-packages/libfdt-1.5.0_gd37f6b20_dirty-py3.7.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.7/site-packages/libfdt-1.5.0_gd37f6b20_dirty-py3.7.egg-info -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.7/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.7/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.8/site-packages/_libfdt.cpython-38-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.8/site-packages/_libfdt.cpython-38-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.8/site-packages/libfdt-1.6.0_gca19c3db_dirty-py3.8.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.8/site-packages/libfdt-1.6.0_gca19c3db_dirty-py3.8.egg-info -------------------------------------------------------------------------------- /lopper/vendor/lib/python3.8/site-packages/libfdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/vendor/lib/python3.8/site-packages/libfdt.py -------------------------------------------------------------------------------- /lopper/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper/yaml.py -------------------------------------------------------------------------------- /lopper_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/lopper_sanity.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/setup.py -------------------------------------------------------------------------------- /specification/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /specification/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/Makefile -------------------------------------------------------------------------------- /specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/README.md -------------------------------------------------------------------------------- /specification/source/appendix-example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/appendix-example.rst -------------------------------------------------------------------------------- /specification/source/chapter1-introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter1-introduction.rst -------------------------------------------------------------------------------- /specification/source/chapter2-hardware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter2-hardware.rst -------------------------------------------------------------------------------- /specification/source/chapter3-execution-domains.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter3-execution-domains.rst -------------------------------------------------------------------------------- /specification/source/chapter4-bus-firewalls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter4-bus-firewalls.rst -------------------------------------------------------------------------------- /specification/source/chapter5-remoteproc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter5-remoteproc.rst -------------------------------------------------------------------------------- /specification/source/chapter6-simplified-yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter6-simplified-yaml.rst -------------------------------------------------------------------------------- /specification/source/chapter7-domains-yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/chapter7-domains-yaml.rst -------------------------------------------------------------------------------- /specification/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/conf.py -------------------------------------------------------------------------------- /specification/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/index.rst -------------------------------------------------------------------------------- /specification/source/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/references.rst -------------------------------------------------------------------------------- /specification/source/system-device-tree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/system-device-tree.dts -------------------------------------------------------------------------------- /specification/source/under-discussion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicetree-org/lopper/HEAD/specification/source/under-discussion.txt --------------------------------------------------------------------------------