├── .clang-format ├── .clangd ├── .gitattributes ├── .github └── workflows │ ├── build-defconfigs.yml │ ├── container.yml │ └── test-labgrid-pytest.yml ├── .gitignore ├── .mailmap ├── COPYING ├── Documentation ├── .gitignore ├── barebox.svg ├── boards.rst ├── boards │ ├── aarch64-qemu-virt.rst │ ├── am335x.rst │ ├── am335x │ │ └── phytec-som.rst │ ├── arm-qemu-vexpress.rst │ ├── at91.rst │ ├── at91 │ │ ├── microchip-at91rm9200-ek.rst │ │ ├── microchip-at91sam9260-ek.rst │ │ ├── microchip-at91sam9261-ek.rst │ │ ├── microchip-at91sam9263-ek.rst │ │ ├── microchip-at91sam9g10-ek.rst │ │ ├── microchip-at91sam9g20-ek.rst │ │ ├── microchip-at91sam9m10g45-ek.rst │ │ ├── microchip-at91sam9n12-ek.rst │ │ ├── microchip-at91sam9x5-ek.rst │ │ ├── microchip-sama5d3x-ek.rst │ │ ├── microchip-sama5d4-xplained.rst │ │ ├── somfy-animeo-ip.rst │ │ └── telit-evk-pro3.rst │ ├── bcm2835.rst │ ├── cirrus-logic.rst │ ├── davinci.rst │ ├── digic.rst │ ├── edb9xxx │ │ ├── cirrus_logic_edb9301.rst │ │ ├── cirrus_logic_edb9302.rst │ │ ├── cirrus_logic_edb9302a.rst │ │ ├── cirrus_logic_edb9307.rst │ │ ├── cirrus_logic_edb9307a.rst │ │ ├── cirrus_logic_edb9312.rst │ │ ├── cirrus_logic_edb9315.rst │ │ └── cirrus_logic_edb9315a.rst │ ├── efi.rst │ ├── emulated.rst │ ├── garz-fricke.rst │ ├── ibase-mi991af.rst │ ├── imx.rst │ ├── imx │ │ ├── amazon-kindle-3.rst │ │ ├── amazon-kindle-4-5.rst │ │ ├── digi-ccimx6ulsbcpro.rst │ │ ├── element14-warp7.rst │ │ ├── embest-i.mx6s-riotboard.rst │ │ ├── embest-marsboard.rst │ │ ├── eukrea_cpuimx27.rst │ │ ├── garz-fricke-cupid.rst │ │ ├── garz-fricke-vincell.rst │ │ ├── karo-tx25.rst │ │ ├── karo-tx6.rst │ │ ├── meerkat96.rst │ │ ├── nxp-imx6ull-evk.rst │ │ ├── nxp-imx8mm-evk.rst │ │ ├── nxp-imx8mn-evk.rst │ │ ├── nxp-imx8mp-evk.rst │ │ ├── nxp-imx8mq-evk.rst │ │ ├── phytec-phycard-i.mx27.rst │ │ ├── phytec-phycore-i.mx27.rst │ │ ├── phytec-phycore-i.mx31.rst │ │ ├── phytec-phycore-i.mx35.rst │ │ ├── protonic-prt8mm.rst │ │ ├── synertronixx_scb9328.rst │ │ ├── variscite-dt8mcustomboard-imx8mp.rst │ │ ├── wandboard.rst │ │ ├── zii-imx6-rdu2 │ │ │ ├── bootstrap.sh │ │ │ ├── openocd.cfg │ │ │ └── readme.rst │ │ ├── zii-imx7d-dev │ │ │ ├── bootstrap.sh │ │ │ ├── openocd.cfg │ │ │ └── readme.rst │ │ ├── zii-imx8mq-dev │ │ │ ├── bootstrap.sh │ │ │ ├── openocd.cfg │ │ │ └── readme.rst │ │ └── zii-vf610-dev │ │ │ ├── bootstrap.sh │ │ │ ├── openocd.cfg │ │ │ └── readme.rst │ ├── k3.rst │ ├── kvx.rst │ ├── kvx │ │ └── kalray-k200.rst │ ├── layerscape.rst │ ├── layerscape │ │ ├── ls1046ardb.rst │ │ └── tqmls1046a.rst │ ├── mips.rst │ ├── mips │ │ ├── dlink-dir-320.rst │ │ ├── img-ci20.rst │ │ ├── loongson_ls1b.rst │ │ ├── max9331.rst │ │ ├── qemu-malta.rst │ │ ├── ritmix-rzx50.rst │ │ └── tplink-mr3020.rst │ ├── mvebu.rst │ ├── mvebu │ │ └── Netgear-ReadyNAS-2120.rst │ ├── mxs.rst │ ├── mxs │ │ ├── Chumby-Falconwing.rst │ │ ├── Freescale-i.MX23-evk.rst │ │ ├── KaRo-TX28.rst │ │ └── Olimex-olinuxino.rst │ ├── omap.rst │ ├── openrisc.rst │ ├── powerpc.rst │ ├── powerpc │ │ └── Phytec-phyCORE-MPC5200-Tiny.rst │ ├── pxa.rst │ ├── pxa │ │ └── Phytec-phyCORE-PXA270.rst │ ├── riscv.rst │ ├── riscv │ │ ├── barebox-virt32.cfg │ │ └── barebox-virt64.cfg │ ├── rk3288.rst │ ├── rk3288 │ │ └── phytec-som.rst │ ├── rockchip.rst │ ├── sandbox.rst │ ├── socfpga.rst │ ├── stm32mp.rst │ ├── tegra.rst │ ├── uemd.rst │ └── zynqmp.rst ├── commands.rst ├── conf.py ├── devel │ ├── background-execution.rst │ ├── devel.rst │ ├── porting.rst │ └── project-ideas.rst ├── devicetree │ ├── bindings │ │ ├── README │ │ ├── barebox │ │ │ ├── aliases.rst │ │ │ ├── barebox,environment.rst │ │ │ ├── barebox,state.rst │ │ │ ├── barebox,uboot-environment.rst │ │ │ └── virtual-reg.rst │ │ ├── clocks │ │ │ └── xlnx,ps7-clkc.rst │ │ ├── firmware │ │ │ ├── altr,passive-serial.rst │ │ │ └── altr,socfpga-fpga-mgr.rst │ │ ├── leds │ │ │ └── common.rst │ │ ├── misc │ │ │ ├── fsl,imx-iim.rst │ │ │ └── fsl,imx-ocotp.rst │ │ ├── mtd │ │ │ ├── m25p80.rst │ │ │ └── partition.rst │ │ ├── power │ │ │ └── restart.rst │ │ ├── regulator │ │ │ └── regulator.rst │ │ ├── rtc │ │ │ └── dallas,ds1307.rst │ │ └── watchdog │ │ │ └── watchdog.rst │ └── index.rst ├── filesystems.rst ├── filesystems │ ├── fat.rst │ ├── nfs.rst │ ├── pstore.rst │ ├── ramfs.rst │ ├── smhfs.rst │ ├── squashfs.rst │ ├── tftp.rst │ └── ubootvarfs.rst ├── gen_commands.py ├── glossary.rst ├── index.rst ├── talks.rst └── user │ ├── automount.rst │ ├── barebox.rst │ ├── bootchooser.rst │ ├── booting-linux.rst │ ├── debugging.rst │ ├── defaultenv-2.rst │ ├── devicetree.rst │ ├── driver-model.rst │ ├── framebuffer.rst │ ├── hush.rst │ ├── imd.rst │ ├── introduction.rst │ ├── memory-areas.rst │ ├── multi-image.rst │ ├── networking.rst │ ├── optee.rst │ ├── pbl.rst │ ├── random.rst │ ├── reboot-mode.rst │ ├── remote-control.rst │ ├── reset-reason.rst │ ├── state.rst │ ├── system-reset.rst │ ├── system-setup.rst │ ├── ubi.rst │ ├── updating.rst │ ├── usb.rst │ ├── user-manual.rst │ ├── variables.rst │ ├── virtio.rst │ └── watchdog.rst ├── Kbuild ├── Kconfig ├── LICENSES ├── deprecated │ ├── ISC │ └── X11 ├── dual │ └── Apache-2.0 ├── exceptions │ ├── LicenseRef-OpenSSL-exception │ ├── Linux-syscall-note │ └── eCos-exception-2.0 └── preferred │ ├── BSD-1-Clause │ ├── BSD-2-Clause │ ├── BSD-3-Clause │ ├── GPL-2.0 │ ├── LGPL-2.1 │ └── MIT ├── MAKEALL ├── Makefile ├── README ├── arch ├── Kconfig ├── arm │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ ├── Makefile │ │ ├── ac-sxb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx7d-lpddr2.imxcfg │ │ │ └── lowlevel.c │ │ ├── advantech-mx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-advantech-rom-7421.imxcfg │ │ │ └── lowlevel.c │ │ ├── afi-gf │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-gf │ │ │ │ └── boot │ │ │ │ │ └── sd │ │ │ └── lowlevel.c │ │ ├── altera-socdk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── animeo_ip │ │ │ ├── Makefile │ │ │ ├── defaultenv-animeo_ip │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91rm9200ek │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-at91rm9200ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9260ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9260ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9261ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9261ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel_init.c │ │ ├── at91sam9263ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9263ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ ├── lowlevel_init.c │ │ │ └── of_init.c │ │ ├── at91sam9m10g45ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9m10g45ek │ │ │ │ ├── bin │ │ │ │ │ ├── boot_board │ │ │ │ │ └── menu_boot │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9m10ihd │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── android │ │ │ │ │ ├── mmc │ │ │ │ │ ├── net │ │ │ │ │ └── net-usb │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ ├── mtdparts-001-nand │ │ │ │ │ ├── mtdparts-002-m25p80 │ │ │ │ │ └── splash │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── hw_version.c │ │ │ ├── hw_version.h │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9n12ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9n12ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9x5ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9x5ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── hw_version.c │ │ │ ├── hw_version.h │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── avnet-zedboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ └── nv │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── zedboard.zynqcfg │ │ ├── beagle │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-beagle │ │ │ │ ├── boot │ │ │ │ │ ├── mmc │ │ │ │ │ ├── nand-ubi │ │ │ │ │ └── nand-ubi-dt │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nand │ │ │ │ └── network │ │ │ │ │ └── eth0-discover │ │ │ └── lowlevel.c │ │ ├── beaglebone │ │ │ ├── Makefile │ │ │ ├── beaglebone.h │ │ │ ├── board.c │ │ │ ├── defaultenv-beaglebone │ │ │ │ ├── boot │ │ │ │ │ └── sd │ │ │ │ └── init │ │ │ │ │ └── usb-limit-1300 │ │ │ └── lowlevel.c │ │ ├── beagleplay │ │ │ ├── Makefile │ │ │ ├── entry.S │ │ │ └── lowlevel.c │ │ ├── boundarydevices-nitrogen6 │ │ │ ├── 1066mhz_4x128mx16.imxcfg │ │ │ ├── 1066mhz_4x256mx16.imxcfg │ │ │ ├── 1066mhz_4x512mx16-qp.imxcfg │ │ │ ├── 800mhz_4x128mx16.imxcfg │ │ │ ├── 800mhz_4x256mx16.imxcfg │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-nitrogen6dl-1g.imxcfg │ │ │ ├── flash-header-nitrogen6dl-2g.imxcfg │ │ │ ├── flash-header-nitrogen6q-1g.imxcfg │ │ │ ├── flash-header-nitrogen6q-2g.imxcfg │ │ │ ├── flash-header-nitrogen6qp-max.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── ram-base.imxcfg │ │ ├── calao │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── ccxmx51 │ │ │ ├── Makefile │ │ │ ├── ccxmx51.c │ │ │ ├── defaultenv-ccxmx51 │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ ├── flash-header-x16.imxcfg │ │ │ ├── flash-header-x32.imxcfg │ │ │ └── lowlevel.c │ │ ├── ccxmx53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx53-ccxmx53_1gib.imxcfg │ │ │ ├── flash-header-imx53-ccxmx53_512mb.imxcfg │ │ │ └── lowlevel.c │ │ ├── chumby_falconwing │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── boot │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── falconwing.c │ │ │ └── lowlevel.c │ │ ├── clep7212 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-clep7212 │ │ │ │ ├── boot │ │ │ │ │ └── nor │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── linux.bootargs.console │ │ │ │ │ └── linux.bootargs.debug │ │ │ └── lowlevel.c │ │ ├── cm-fx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-cm-fx6.imxcfg │ │ │ └── lowlevel.c │ │ ├── congatec-qmx8p │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-congatec-qmx8p.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── crystalfontz-cfa10036 │ │ │ ├── Makefile │ │ │ ├── cfa10036.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc-ext3 │ │ │ │ ├── init │ │ │ │ │ └── automount │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── hwdetect.c │ │ │ ├── hwdetect.h │ │ │ └── lowlevel.c │ │ ├── datamodul-edm-qmx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc │ │ │ │ └── init │ │ │ │ │ └── automount │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── dfi-fs700-m60 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-fs700-m60-6q-micron.imxcfg │ │ │ ├── flash-header-fs700-m60-6q-nanya.imxcfg │ │ │ ├── flash-header-fs700-m60-6s.imxcfg │ │ │ └── lowlevel.c │ │ ├── digi-ccimx6ulsom │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx6ul-ccimx6ulsbcpro.imxcfg │ │ │ └── lowlevel.c │ │ ├── dss11 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── duckbill │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── ebv-socrates │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── efika-mx-smartbook │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-efikasb │ │ │ │ ├── bin │ │ │ │ │ └── lvds_init │ │ │ │ ├── boot │ │ │ │ │ ├── hd-internal │ │ │ │ │ └── mmc-left │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ │ └── network │ │ │ │ │ └── eth0-discover │ │ │ ├── env │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── linux.bootargs.console │ │ │ │ │ ├── linux.bootargs.lpj │ │ │ │ │ └── linux.bootargs.quiet │ │ │ ├── flash-header-imx51-genesi-efikasb.imxcfg │ │ │ └── lowlevel.c │ │ ├── element14-warp7 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx7-warp.imxcfg │ │ │ └── lowlevel.c │ │ ├── eltec-hipercam │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-eltec-hipercam.imxcfg │ │ │ └── lowlevel.c │ │ ├── embedsky-e9 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-e9 │ │ │ │ ├── boot │ │ │ │ │ ├── mmc1 │ │ │ │ │ └── mmc3 │ │ │ │ ├── init │ │ │ │ │ └── bootsource │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── hostname │ │ │ ├── flash-header-e9.imxcfg │ │ │ └── lowlevel.c │ │ ├── embest-marsboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-mars │ │ │ │ └── init │ │ │ │ │ └── fastboot │ │ │ ├── flash-header-embest-marsboard.imxcfg │ │ │ └── lowlevel.c │ │ ├── embest-riotboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-embest-riotboard.imxcfg │ │ │ └── lowlevel.c │ │ ├── enclustra-aa1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux-config-arria10.c │ │ │ └── pll-config-arria10.c │ │ ├── freescale-mx23-evk │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ └── mx23-evk.c │ │ ├── freescale-mx28-evk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── freescale-mx51-babbage │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx51-babbage.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── power.c │ │ ├── freescale-mx53-qsb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx53-loco.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx53-vmx53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx53-vmx53.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx6-sabrelite │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-sabrelite.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx6-sabresd │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6dl-sabresd.imxcfg │ │ │ ├── flash-header-mx6q-sabresd.imxcfg │ │ │ ├── flash-header-mx6qp-sabresd.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx6sx-sabresdb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6sx-sabresdb.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx7-sabresd │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx7-sabresd.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-vf610-twr │ │ │ ├── Makefile │ │ │ ├── flash-header-vf610-twr.imxcfg │ │ │ └── lowlevel.c │ │ ├── gateworks-ventana │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-ventana-quad-1gx64.imxcfg │ │ │ ├── gsc.c │ │ │ ├── gsc.h │ │ │ ├── lowlevel.c │ │ │ ├── quad_128x64.imxcfg │ │ │ └── ram-base.imxcfg │ │ ├── gk802 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── globalscale-guruplug │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── globalscale-mirabox │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── grinn-liteboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-liteboard-256mb.imxcfg │ │ │ ├── flash-header-liteboard-512mb.imxcfg │ │ │ ├── flash-header-liteboard.h │ │ │ └── lowlevel.c │ │ ├── guf-santaro │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── guf-vincell │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── haba-knx │ │ │ ├── Makefile │ │ │ ├── defaultenv-haba-knx │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── imx233-olinuxino │ │ │ ├── Makefile │ │ │ ├── defaultenv-imx233-olinuxino │ │ │ │ ├── boot │ │ │ │ │ └── sd │ │ │ │ ├── init │ │ │ │ │ └── automount-sd │ │ │ │ ├── network │ │ │ │ │ └── eth0-discover │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── imx23-olinuxino.c │ │ │ └── lowlevel.c │ │ ├── innocomm-imx8mm-wb15 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx8mm-wb15.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── lowlevel.h │ │ │ └── lpddr4-timing.c │ │ ├── kamstrup-mx7-concentrator │ │ │ ├── Makefile │ │ │ ├── flash-header-tqma7d.imxcfg │ │ │ └── lowlevel.c │ │ ├── karo-qsxp-ml81 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-karo-qsxp-ml81.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── lowlevel.h │ │ │ └── lpddr4-timing.c │ │ ├── karo-tx25 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand-ubi │ │ │ │ └── init │ │ │ │ │ └── mtdparts-nand │ │ │ ├── flash-header-tx25.imxcfg │ │ │ └── lowlevel.c │ │ ├── karo-tx28 │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ ├── tx28-stk5.c │ │ │ ├── tx28.c │ │ │ └── tx28.h │ │ ├── karo-tx53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tx53-rev1011.imxcfg │ │ │ ├── flash-header-tx53-revxx30-samsung.imxcfg │ │ │ ├── flash-header-tx53-revxx30.imxcfg │ │ │ └── lowlevel.c │ │ ├── karo-tx6x │ │ │ ├── 1600mhz_4x128mx16.imxcfg │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tx6dl-1g.imxcfg │ │ │ ├── flash-header-tx6dl-512m.imxcfg │ │ │ ├── flash-header-tx6q-1g.imxcfg │ │ │ ├── flash-header-tx6qp-2g.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── pmic-ltc3676.c │ │ │ ├── pmic-rn5t567.c │ │ │ ├── pmic-rn5t618.c │ │ │ ├── pmic.h │ │ │ └── ram-base.imxcfg │ │ ├── kindle-mx50 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-kindle-mx50 │ │ │ │ ├── boot │ │ │ │ │ └── mmc_kernel │ │ │ │ ├── init │ │ │ │ │ └── usbconsole │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── linux.bootargs.consoleblank │ │ │ │ │ └── linux.bootargs.eink │ │ │ ├── flash-header-kindle-lpddr1.imxcfg │ │ │ ├── flash-header-kindle-lpddr2.imxcfg │ │ │ └── lowlevel.c │ │ ├── kontron-samx6i │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-samx6i-duallite.imxcfg │ │ │ ├── flash-header-samx6i-quad.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── mem.c │ │ │ └── mem.h │ │ ├── lenovo-ix4-300d │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── ls1021aiot │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ ├── ls102xa_pbi.cfg │ │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ │ └── start.S │ │ ├── ls1028ardb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ ├── ls1028ardb_pbi.cfg │ │ │ ├── ls1028ardb_rcw_sd.cfg │ │ │ └── start.S │ │ ├── ls1046ardb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-ls1046ardb │ │ │ │ └── nv │ │ │ │ │ ├── dev.eth4.mode │ │ │ │ │ ├── dev.eth5.mode │ │ │ │ │ ├── dev.eth6.mode │ │ │ │ │ └── dev.eth7.mode │ │ │ ├── lowlevel.c │ │ │ ├── ls1046ardb_pbi.cfg │ │ │ ├── ls1046ardb_qspi_pbi.cfg │ │ │ ├── ls1046ardb_rcw_emmc.cfg │ │ │ ├── ls1046ardb_rcw_qspi.cfg │ │ │ ├── ls1046ardb_rcw_sd.cfg │ │ │ └── start.S │ │ ├── lxa-mc1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── marvell-armada-xp-db │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── marvell-armada-xp-gp │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── meerkat96 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx7-meerkat96.imxcfg │ │ │ └── lowlevel.c │ │ ├── microchip-ksz9477-evb │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── microchip-sama5d3-eds │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── mnt-reform │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mnt-reform.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── myirtech-x335x │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-myirtech-x335x │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ └── lowlevel.c │ │ ├── netgear-rn104 │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── netgear-rn2120 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── novena │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ddr_regs.h │ │ │ ├── flash-header-novena.imxcfg │ │ │ └── lowlevel.c │ │ ├── nvidia-beaver │ │ │ ├── Makefile │ │ │ ├── beaver-2gb-emmc.bct.cfg │ │ │ ├── board.c │ │ │ └── entry.c │ │ ├── nvidia-jetson-tk1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── entry.c │ │ │ └── jetson-tk1-2gb-emmc.bct.cfg │ │ ├── nxp-imx6ull-evk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-nxp-imx6ull-evk.imxcfg │ │ │ └── lowlevel.c │ │ ├── nxp-imx8mm-evk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx8mm-evk.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── nxp-imx8mn-evk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ddr4-timing.c │ │ │ ├── flash-header-imx8mn-evk.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── nxp-imx8mp-evk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx8mp-evk.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── nxp-imx8mq-evk │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ddr.h │ │ │ ├── ddr_init.c │ │ │ ├── ddrphy_train.c │ │ │ ├── flash-header-imx8mq-evk.imxcfg │ │ │ └── lowlevel.c │ │ ├── phytec-phycard-imx27 │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ └── pca100.c │ │ ├── phytec-phycore-imx27 │ │ │ ├── Makefile │ │ │ ├── defaultenv-pcm038 │ │ │ │ └── boot │ │ │ │ │ ├── nand-ubi │ │ │ │ │ └── nor │ │ │ ├── lowlevel.c │ │ │ ├── pcm038.c │ │ │ ├── pcm970.c │ │ │ └── pll.h │ │ ├── phytec-phycore-imx7 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-phytec-phycore-imx7.imxcfg │ │ │ └── lowlevel.c │ │ ├── phytec-phycore-stm32mp1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── phytec-som-am335x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-physom-am335x │ │ │ │ ├── boot │ │ │ │ │ ├── emmc │ │ │ │ │ ├── mmc │ │ │ │ │ ├── nand │ │ │ │ │ └── spi │ │ │ │ ├── init │ │ │ │ │ └── bootsource │ │ │ │ └── nv │ │ │ │ │ ├── allow_color │ │ │ │ │ ├── boot.watchdog_timeout │ │ │ │ │ ├── linux.bootargs.base │ │ │ │ │ └── linux.bootargs.rootfs │ │ │ ├── lowlevel.c │ │ │ └── ram-timings.h │ │ ├── phytec-som-imx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-physom-imx6-phycore │ │ │ │ ├── boot │ │ │ │ │ └── emmc │ │ │ │ └── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ ├── defaultenv-physom-imx6 │ │ │ │ ├── boot │ │ │ │ │ ├── emmc │ │ │ │ │ ├── mmc │ │ │ │ │ ├── nand │ │ │ │ │ └── spi │ │ │ │ └── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ ├── defaultenv-physom-imx6ul-phycore │ │ │ │ ├── boot │ │ │ │ │ ├── emmc │ │ │ │ │ ├── mmc │ │ │ │ │ └── nand │ │ │ │ └── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ ├── flash-header-phytec-pcaaxl3-1gib-1bank.imxcfg │ │ │ ├── flash-header-phytec-pcaaxl3-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcaaxl3-2gib.imxcfg │ │ │ ├── flash-header-phytec-pcaaxl3.h │ │ │ ├── flash-header-phytec-pcl063-512mb.h │ │ │ ├── flash-header-phytec-pcl063.h │ │ │ ├── flash-header-phytec-pcl063ul-512mb.imxcfg │ │ │ ├── flash-header-phytec-pcl063ull-256mb.imxcfg │ │ │ ├── flash-header-phytec-pcl063ull-512mb.imxcfg │ │ │ ├── flash-header-phytec-pcm058-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058-2gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058.h │ │ │ ├── flash-header-phytec-pcm058dl-1gib-32bit.imxcfg │ │ │ ├── flash-header-phytec-pcm058dl-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058dl-256mb.imxcfg │ │ │ ├── flash-header-phytec-pcm058dl-512mb.imxcfg │ │ │ ├── flash-header-phytec-pcm058dl.h │ │ │ ├── flash-header-phytec-pcm058qp-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058qp.h │ │ │ ├── flash-header-phytec-pfla02-1gib-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02-1gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02-2gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02-4gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02-512mb-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02.h │ │ │ ├── flash-header-phytec-pfla02dl-1gib-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02dl-1gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02dl.h │ │ │ ├── flash-header-phytec-pfla02s-128mb-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02s-256mb-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02s-512mb-1bank.imxcfg │ │ │ └── lowlevel.c │ │ ├── phytec-som-imx8mm │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx8mm-phyboard-polis-rdk.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── lowlevel.h │ │ │ └── lpddr4-timing.c │ │ ├── phytec-som-imx8mq │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ddr.h │ │ │ ├── ddr_init.c │ │ │ ├── ddrphy_train.c │ │ │ ├── flash-header-phycore-imx8mq.imxcfg │ │ │ └── lowlevel.c │ │ ├── phytec-som-rk3288 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-physom-rk3288 │ │ │ │ ├── boot │ │ │ │ │ ├── emmc │ │ │ │ │ └── mmc │ │ │ │ ├── init │ │ │ │ │ └── automount-mmc │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ └── lowlevel.c │ │ ├── pine64-quartz64 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── plathome-openblocks-a6 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── plathome-openblocks-ax3 │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── pm9261 │ │ │ ├── Makefile │ │ │ ├── defaultenv-pm9261 │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel_init.c │ │ ├── pm9263 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel_init.c │ │ ├── pm9g45 │ │ │ ├── Makefile │ │ │ ├── defaultenv-pm9g45 │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── polyhex-debix │ │ │ ├── 8g-lpddr4-timing.c │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-polyhex-debix.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── protonic-imx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ddr3-defines.imxcfg │ │ │ ├── flash-header-alti6p.imxcfg │ │ │ ├── flash-header-jozacp.imxcfg │ │ │ ├── flash-header-lanmcu.imxcfg │ │ │ ├── flash-header-plybas.imxcfg │ │ │ ├── flash-header-plym2m.imxcfg │ │ │ ├── flash-header-prti6g.imxcfg │ │ │ ├── flash-header-prti6q.imxcfg │ │ │ ├── flash-header-prtmvt.imxcfg │ │ │ ├── flash-header-prtrvt.imxcfg │ │ │ ├── flash-header-prtvt7.imxcfg │ │ │ ├── flash-header-prtwd2.imxcfg │ │ │ ├── flash-header-prtwd3.imxcfg │ │ │ ├── flash-header-victgo.imxcfg │ │ │ ├── flash-header-vicut1.imxcfg │ │ │ ├── flash-header-vicut1q.imxcfg │ │ │ ├── flash-header-vicutp.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── lpddr2-defines.imxcfg │ │ │ ├── padsetup-dl.imxcfg │ │ │ ├── padsetup-q.imxcfg │ │ │ └── padsetup-ul.imxcfg │ │ ├── protonic-imx8m │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-prt8m │ │ │ │ ├── boot │ │ │ │ │ └── prt8mm-default │ │ │ │ ├── network │ │ │ │ │ └── eth0-discover │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ ├── flash-header-prt8mm.imxcfg │ │ │ ├── lowlevel-prt8mm.c │ │ │ └── lpddr4-timing-prt8mm.c │ │ ├── protonic-mecsbc │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── protonic-stm32mp1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── qemu-virt │ │ │ └── Makefile │ │ ├── qil-a926x │ │ │ ├── Makefile │ │ │ ├── defaultenv-qil-a926x │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── radxa-cm3 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── radxa-rock │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-radxa-rock │ │ │ │ ├── boot │ │ │ │ │ ├── mshc1 │ │ │ │ │ └── mshc1-old │ │ │ │ ├── init │ │ │ │ │ └── bootsource │ │ │ │ └── nv │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ └── lowlevel.c │ │ ├── radxa-rock3 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── radxa-rock5 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── raspberry-pi │ │ │ ├── Makefile │ │ │ ├── defaultenv-rpi │ │ │ │ └── boot │ │ │ │ │ └── rpi │ │ │ ├── lowlevel.c │ │ │ ├── lowlevel.h │ │ │ ├── mbox-helpers.c │ │ │ └── rpi-common.c │ │ ├── reflex-achilles │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux-config-arria10.c │ │ │ └── pll-config-arria10.c │ │ ├── rockchip-rk3568-bpi-r2pro │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── rockchip-rk3568-evb │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── sama5d27-giantboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-giantboard │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ └── lowlevel.c │ │ ├── sama5d27-som1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-sama5d27-som1 │ │ │ │ └── nv │ │ │ │ │ └── dev.wdog0.autoping │ │ │ └── lowlevel.c │ │ ├── sama5d3_xplained │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-sama5d3_xplained │ │ │ │ └── config │ │ │ └── lowlevel.c │ │ ├── sama5d4_wifx │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── sama5d4_xplained │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── mmc │ │ │ │ │ └── nand │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── splash │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── sama5d4_xplained.c │ │ ├── scb9328 │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ ├── lowlevel_init.S │ │ │ └── scb9328.c │ │ ├── seeed-odyssey │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── skov-arm9cpu │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── skov-imx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-skov-imx6 │ │ │ │ └── network │ │ │ │ │ └── eth1-discover │ │ │ ├── flash-header-mx6-skov-imx6.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── version.c │ │ │ └── version.h │ │ ├── skov-imx8mp │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-skov-imx8mp.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── solidrun-cubox │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── solidrun-microsom │ │ │ ├── 1066mhz-4x128mx16.imxcfg │ │ │ ├── 1066mhz-4x256mx16.imxcfg │ │ │ ├── 1066mhz-64b.imxcfg │ │ │ ├── 800mhz-2x128mx16.imxcfg │ │ │ ├── 800mhz-32b.imxcfg │ │ │ ├── 800mhz-4x128mx16.imxcfg │ │ │ ├── 800mhz-64b.imxcfg │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-microsom-i1.imxcfg │ │ │ ├── flash-header-microsom-i2.imxcfg │ │ │ ├── flash-header-microsom-i2eX.imxcfg │ │ │ ├── flash-header-microsom-i4.imxcfg │ │ │ └── lowlevel.c │ │ ├── stm32mp13xx-dk │ │ │ ├── Makefile │ │ │ └── board.c │ │ ├── stm32mp15x-ev1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── stm32mp15xx-dkx │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── technexion-pico-hobbit │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx6ul-pico-hobbit-256.imxcfg │ │ │ ├── flash-header-imx6ul-pico-hobbit-512.imxcfg │ │ │ └── lowlevel.c │ │ ├── technexion-wandboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc2.1 │ │ │ │ └── init │ │ │ │ │ └── bootsource │ │ │ ├── flash-header-technexion-wandboard.imxcfg │ │ │ └── lowlevel.c │ │ ├── telit-evk-pro3 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand-ubi │ │ │ │ ├── init │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── usb │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── terasic-de0-nano-soc │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── terasic-de10-nano │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── terasic-sockit │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── tny-a926x │ │ │ ├── Makefile │ │ │ ├── defaultenv-tny-a926x │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ ├── tny_a9260_lowlevel.c │ │ │ ├── tny_a9263_bootstrap.c │ │ │ └── tny_a9263_lowlevel.c │ │ ├── toradex-colibri-t20 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── colibri-t20_256_hsmmc.bct.cfg │ │ │ ├── colibri-t20_256_v11_nand.bct.cfg │ │ │ ├── colibri-t20_256_v12_nand.bct.cfg │ │ │ ├── colibri-t20_512_hsmmc.bct.cfg │ │ │ ├── colibri-t20_512_v11_nand.bct.cfg │ │ │ ├── colibri-t20_512_v12_nand.bct.cfg │ │ │ └── entry.c │ │ ├── toshiba-ac100 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── entry.c │ │ ├── tqma53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tq-tqma53-1gib.imxcfg │ │ │ ├── flash-header-tq-tqma53-512mib.imxcfg │ │ │ ├── flash-header-tq-tqma53.h │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── tqma6ulx │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx6ul-tqma6ulx.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── tqma6ulx.h │ │ ├── tqma6x │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tqma6dl.imxcfg │ │ │ ├── flash-header-tqma6q.imxcfg │ │ │ └── lowlevel.c │ │ ├── tqma8mpxl │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tqma8mpxl.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── tqma93xx │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ ├── lpddr4x_tqma93xxca_timing.c │ │ │ └── lpddr4x_tqma93xxla_timing.c │ │ ├── tqmls1046a │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-tqmls1046a │ │ │ │ └── nv │ │ │ │ │ ├── dev.eth0.mode │ │ │ │ │ ├── dev.eth1.mode │ │ │ │ │ ├── dev.eth4.mode │ │ │ │ │ ├── dev.eth5.mode │ │ │ │ │ ├── dev.eth6.mode │ │ │ │ │ └── dev.eth7.mode │ │ │ ├── lowlevel.c │ │ │ ├── start.S │ │ │ ├── tqmls1046a_pbi.cfg │ │ │ ├── tqmls1046a_rcw_qspi_3333_5559.cfg │ │ │ └── tqmls1046a_rcw_sd_3333_5559.cfg │ │ ├── turris-omnia │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── udoo-neo │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6sx-udoo-neo_full.imxcfg │ │ │ └── lowlevel.c │ │ ├── udoo │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-udoo.imxcfg │ │ │ └── lowlevel.c │ │ ├── usb-a926x │ │ │ ├── Makefile │ │ │ ├── defaultenv-usb-a926x │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ ├── usb_a9260_lowlevel.c │ │ │ ├── usb_a9263_bootstrap.c │ │ │ └── usb_a9263_lowlevel.c │ │ ├── usi-topkick │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── variscite-dt8mcustomboard-imx8mp │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx8mp-dart.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── lpddr4-timing.c │ │ ├── variscite-mx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-variscite.imxcfg │ │ │ └── lowlevel.c │ │ ├── variscite-som-mx7 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── versatile │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot.d │ │ │ │ │ ├── 001-nor │ │ │ │ │ └── 101-nor-update │ │ │ │ ├── boot │ │ │ │ │ ├── nor │ │ │ │ │ └── nor-update │ │ │ │ ├── init │ │ │ │ │ └── automount │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── versatilepb.c │ │ ├── vexpress │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── vscom-baltos │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── wago-pfc-am35xx │ │ │ ├── Makefile │ │ │ ├── board-mlo.c │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── webasto-ccbv2 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ccbv2.h │ │ │ ├── flash-header-imx6ul-webasto-ccbv2-256.imxcfg │ │ │ ├── flash-header-imx6ul-webasto-ccbv2-512.imxcfg │ │ │ └── lowlevel.c │ │ ├── wolfvision-pf5 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── xilinx-zcu102 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── xilinx-zcu104 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ └── lowlevel_init.S │ │ ├── xilinx-zcu106 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── lowlevel.c │ │ │ └── lowlevel_init.S │ │ ├── zii-common │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-zii-common │ │ │ │ └── boot │ │ │ │ │ └── net │ │ │ ├── pn-fixup.c │ │ │ ├── pn-fixup.h │ │ │ └── switch-cmd.c │ │ ├── zii-imx51-rdu1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-rdu1 │ │ │ │ ├── boot │ │ │ │ │ ├── nfs │ │ │ │ │ └── rdu-default │ │ │ │ ├── network │ │ │ │ │ └── eth0-discover │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_abort_key │ │ │ │ │ └── boot.default │ │ │ ├── flash-header-imx51-zii-rdu1.imxcfg │ │ │ └── lowlevel.c │ │ ├── zii-imx6q-rdu2 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-rdu2 │ │ │ │ ├── boot │ │ │ │ │ ├── nfs │ │ │ │ │ └── rdu-default │ │ │ │ ├── network │ │ │ │ │ └── eth0-discover │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_abort_key │ │ │ │ │ ├── boot.default │ │ │ │ │ └── dev.eth1.mode │ │ │ ├── flash-header-rdu2.imxcfg │ │ │ └── lowlevel.c │ │ ├── zii-imx7d-dev │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-zii-imx7d-dev.imxcfg │ │ │ └── lowlevel.c │ │ ├── zii-imx8mq-dev │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── ddr.h │ │ │ ├── ddr_init.c │ │ │ ├── ddrphy_train.c │ │ │ ├── defaultenv-imx8mq-zii-dev │ │ │ │ ├── boot │ │ │ │ │ ├── nfs │ │ │ │ │ └── rdu-default │ │ │ │ ├── network │ │ │ │ │ └── eth0-discover │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_abort_key │ │ │ │ │ ├── boot.default │ │ │ │ │ └── dev.eth1.mode │ │ │ ├── flash-header-zii-imx8mq-dev.imxcfg │ │ │ └── lowlevel.c │ │ └── zii-vf610-dev │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-zii-vf610-dev │ │ │ ├── boot │ │ │ │ └── sd │ │ │ └── nv │ │ │ │ ├── autoboot_abort_key │ │ │ │ └── dev.eth1.mode │ │ │ ├── flash-header-zii-vf610-dev.imxcfg │ │ │ └── lowlevel.c │ ├── configs │ │ ├── am335x_mlo_defconfig │ │ ├── am35xx_pfc200_xload_defconfig │ │ ├── animeo_ip_defconfig │ │ ├── at91_multi_defconfig │ │ ├── at91rm9200ek_defconfig │ │ ├── at91sam9260ek_defconfig │ │ ├── at91sam9261ek_bootstrap_defconfig │ │ ├── at91sam9261ek_defconfig │ │ ├── at91sam9261ek_first_stage_defconfig │ │ ├── at91sam9g10ek_defconfig │ │ ├── at91sam9g20ek_defconfig │ │ ├── at91sam9m10g45ek_defconfig │ │ ├── at91sam9m10ihd_defconfig │ │ ├── at91sam9n12ek_defconfig │ │ ├── clps711x_defconfig │ │ ├── dss11_defconfig │ │ ├── haba_knx_lite_defconfig │ │ ├── imx23_defconfig │ │ ├── imx28_defconfig │ │ ├── imx_v7_defconfig │ │ ├── imx_v8_defconfig │ │ ├── kindle-mx50_defconfig │ │ ├── layerscape_defconfig │ │ ├── layerscape_v7_defconfig │ │ ├── multi_v5_v6_defconfig │ │ ├── multi_v7_defconfig │ │ ├── multi_v8_defconfig │ │ ├── mvebu_defconfig │ │ ├── omap_defconfig │ │ ├── pm9261_defconfig │ │ ├── pm9263_defconfig │ │ ├── pm9g45_defconfig │ │ ├── qil_a9260_defconfig │ │ ├── qil_a9g20_defconfig │ │ ├── rockchip_v7a_defconfig │ │ ├── rockchip_v8_defconfig │ │ ├── rpi_defconfig │ │ ├── rpi_v8a_defconfig │ │ ├── sama5d3xek_defconfig │ │ ├── socfpga-arria10_defconfig │ │ ├── socfpga-xload_defconfig │ │ ├── socfpga_defconfig │ │ ├── stm32mp_defconfig │ │ ├── tegra_v7_defconfig │ │ ├── telit_evk_pro3_defconfig │ │ ├── tny_a9260_defconfig │ │ ├── tny_a9263_bootstrap_defconfig │ │ ├── tny_a9263_defconfig │ │ ├── tny_a9g20_defconfig │ │ ├── usb_a9260_defconfig │ │ ├── usb_a9263_bootstrap_defconfig │ │ ├── usb_a9263_defconfig │ │ ├── usb_a9g20_defconfig │ │ ├── zii_vf610_dev_defconfig │ │ ├── zynq_defconfig │ │ └── zynqmp_defconfig │ ├── cpu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── atf.c │ │ ├── board-dt-2nd-aarch64.S │ │ ├── board-dt-2nd.c │ │ ├── bootm-elf.c │ │ ├── cache-armv4.S │ │ ├── cache-armv5.S │ │ ├── cache-armv6.S │ │ ├── cache-armv7.S │ │ ├── cache-armv8.S │ │ ├── cache-l2x0.c │ │ ├── cache_32.c │ │ ├── cache_64.c │ │ ├── common.c │ │ ├── cpu.c │ │ ├── cpuinfo.c │ │ ├── dma_32.c │ │ ├── dma_64.c │ │ ├── dtb.c │ │ ├── efi-header-aarch64.S │ │ ├── entry.c │ │ ├── entry.h │ │ ├── entry_ll_32.S │ │ ├── entry_ll_64.S │ │ ├── exceptions_32.S │ │ ├── exceptions_64.S │ │ ├── head_64.S │ │ ├── hyp.S │ │ ├── interrupts_32.c │ │ ├── interrupts_64.c │ │ ├── lowlevel_32.S │ │ ├── lowlevel_64.S │ │ ├── mmu-common.c │ │ ├── mmu-common.h │ │ ├── mmu_32.c │ │ ├── mmu_32.h │ │ ├── mmu_64.c │ │ ├── mmu_64.h │ │ ├── mmuinfo.c │ │ ├── mmuinfo_32.c │ │ ├── mmuinfo_64.c │ │ ├── no-mmu.c │ │ ├── psci-client.c │ │ ├── psci-of.c │ │ ├── psci.c │ │ ├── sections.c │ │ ├── setupc_32.S │ │ ├── setupc_64.S │ │ ├── sm.c │ │ ├── sm_as.S │ │ ├── smccc-call_32.S │ │ ├── smccc-call_64.S │ │ ├── start.c │ │ └── uncompress.c │ ├── crypto │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── sha1-armv4-large.S │ │ ├── sha1-ce-core.S │ │ ├── sha1-ce-glue.c │ │ ├── sha1_glue.c │ │ ├── sha2-ce-core.S │ │ ├── sha2-ce-glue.c │ │ ├── sha256-armv4.pl │ │ ├── sha256-core.S_shipped │ │ └── sha256_glue.c │ ├── dts │ │ ├── Makefile │ │ ├── ac-sxb.dts │ │ ├── am335x-afi-gf.dts │ │ ├── am335x-baltos-minimal.dts │ │ ├── am335x-bone-common-strip.dtsi │ │ ├── am335x-bone-common.dts │ │ ├── am335x-bone-common.dtsi │ │ ├── am335x-bone.dts │ │ ├── am335x-boneblack.dts │ │ ├── am335x-myirtech-myd.dts │ │ ├── am335x-phytec-phycard-som-mlo.dts │ │ ├── am335x-phytec-phycard-som.dts │ │ ├── am335x-phytec-phycard-som.dtsi │ │ ├── am335x-phytec-phycore-som-emmc.dts │ │ ├── am335x-phytec-phycore-som-mlo.dts │ │ ├── am335x-phytec-phycore-som-nand-no-eeprom.dts │ │ ├── am335x-phytec-phycore-som-nand-no-spi-no-eeprom.dts │ │ ├── am335x-phytec-phycore-som-nand-no-spi.dts │ │ ├── am335x-phytec-phycore-som-nand.dts │ │ ├── am335x-phytec-phycore-som.dtsi │ │ ├── am335x-phytec-phyflex-som-mlo.dts │ │ ├── am335x-phytec-phyflex-som-no-eeprom.dts │ │ ├── am335x-phytec-phyflex-som-no-spi-no-eeprom.dts │ │ ├── am335x-phytec-phyflex-som-no-spi.dts │ │ ├── am335x-phytec-phyflex-som.dts │ │ ├── am335x-phytec-phyflex-som.dtsi │ │ ├── am335x-phytec-state.dtsi │ │ ├── am33xx-clocks-strip.dtsi │ │ ├── am33xx-strip.dtsi │ │ ├── am33xx.dtsi │ │ ├── am35xx-pfc-750_820x.dts │ │ ├── am3xxx-pfc-nandparts.dtsi │ │ ├── armada-370-mirabox-bb.dts │ │ ├── armada-370-rn104-bb.dts │ │ ├── armada-385-turris-omnia-bb.dts │ │ ├── armada-xp-db-bb.dts │ │ ├── armada-xp-gp-bb.dts │ │ ├── armada-xp-lenovo-ix4-300d-bb.dts │ │ ├── armada-xp-openblocks-ax3-4-bb.dts │ │ ├── armada-xp-rn2120-bb.dts │ │ ├── at91-microchip-ksz9477-evb.dts │ │ ├── at91-microchip-sama5d3-eds.dts │ │ ├── at91-sama5d27_giantboard.dts │ │ ├── at91-sama5d27_som1.dtsi │ │ ├── at91-sama5d27_som1_ek.dts │ │ ├── at91-sama5d3_xplained.dts │ │ ├── at91-sama5d4_wifx_l1.dts │ │ ├── at91-skov-arm9cpu.dts │ │ ├── at91sam9260.dtsi │ │ ├── at91sam9263ek.dts │ │ ├── at91sam9g20.dtsi │ │ ├── at91sam9x5ek.dts │ │ ├── bcm2711-rpi-4.dts │ │ ├── bcm2711-rpi-400.dts │ │ ├── bcm2711-rpi-cm4-io.dts │ │ ├── bcm2711-rpi-cm4s-io.dts │ │ ├── bcm2711-rpi.dtsi │ │ ├── bcm2835-rpi.dts │ │ ├── bcm2836-rpi-2.dts │ │ ├── bcm2837-rpi-3.dts │ │ ├── bcm2837-rpi-cm3.dts │ │ ├── bootstate.dtsi │ │ ├── calao_nand.dtsi │ │ ├── digic4.dtsi │ │ ├── dm365.dtsi │ │ ├── dove-cubox-bb.dts │ │ ├── ep7212-clep7212.dts │ │ ├── fsl-ls1021a-iot.dts │ │ ├── fsl-ls1028a-rdb.dts │ │ ├── fsl-ls1028a.dtsi │ │ ├── fsl-ls1046a-rdb.dts │ │ ├── fsl-ls1046a-tqmls1046a-mbls10xxa.dts │ │ ├── fsl-ls1046a.dtsi │ │ ├── imx1-scb9328.dts │ │ ├── imx25-karo-tx25.dts │ │ ├── imx25.dtsi │ │ ├── imx27-phytec-phycard-s-rdk-bb.dts │ │ ├── imx27-phytec-phycore-rdk.dts │ │ ├── imx28-duckbill.dts │ │ ├── imx28-evk.dts │ │ ├── imx50-kindle-common.dtsi │ │ ├── imx50-kindle-d01100.dts │ │ ├── imx50-kindle-d01200.dts │ │ ├── imx50-kindle-ey21.dts │ │ ├── imx50.dtsi │ │ ├── imx51-babbage.dts │ │ ├── imx51-ccxmx51.dts │ │ ├── imx51-genesi-efika-sb.dts │ │ ├── imx51-zii-rdu1.dts │ │ ├── imx51-zii-scu2-mezz.dts │ │ ├── imx51-zii-scu3-esb.dts │ │ ├── imx51.dtsi │ │ ├── imx53-ccxmx53.dts │ │ ├── imx53-ccxmx53.dtsi │ │ ├── imx53-guf-vincell-lt.dts │ │ ├── imx53-guf-vincell.dts │ │ ├── imx53-mba53.dts │ │ ├── imx53-qsb-common.dtsi │ │ ├── imx53-qsb.dts │ │ ├── imx53-qsrb.dts │ │ ├── imx53-tqma53.dtsi │ │ ├── imx53-tx53-1011.dts │ │ ├── imx53-tx53-xx30.dts │ │ ├── imx53-voipac-bsb.dts │ │ ├── imx53-voipac-dmm-668.dtsi │ │ ├── imx53.dtsi │ │ ├── imx6dl-advantech-rom-7421.dts │ │ ├── imx6dl-alti6p.dts │ │ ├── imx6dl-cm-fx6.dts │ │ ├── imx6dl-dfi-fs700-m60-6s.dts │ │ ├── imx6dl-eltec-hipercam.dts │ │ ├── imx6dl-hummingboard.dts │ │ ├── imx6dl-hummingboard2.dts │ │ ├── imx6dl-lanmcu.dts │ │ ├── imx6dl-mba6x.dts │ │ ├── imx6dl-nitrogen6x.dts │ │ ├── imx6dl-phytec-pbab01.dts │ │ ├── imx6dl-phytec-pfla02.dtsi │ │ ├── imx6dl-phytec-phyboard-subra.dts │ │ ├── imx6dl-phytec-phycore-som-emmc.dts │ │ ├── imx6dl-phytec-phycore-som-lc-emmc.dts │ │ ├── imx6dl-phytec-phycore-som-lc-nand.dts │ │ ├── imx6dl-phytec-phycore-som-nand.dts │ │ ├── imx6dl-plybas.dts │ │ ├── imx6dl-plym2m.dts │ │ ├── imx6dl-prtmvt.dts │ │ ├── imx6dl-prtrvt.dts │ │ ├── imx6dl-prtvt7.dts │ │ ├── imx6dl-sabrelite.dts │ │ ├── imx6dl-sabresd.dts │ │ ├── imx6dl-samx6i.dts │ │ ├── imx6dl-skov-imx6.dts │ │ ├── imx6dl-tqma6s.dtsi │ │ ├── imx6dl-tx6u.dts │ │ ├── imx6dl-victgo.dts │ │ ├── imx6dl-vicut1.dts │ │ ├── imx6dl-wandboard.dts │ │ ├── imx6dl.dtsi │ │ ├── imx6q-cm-fx6.dts │ │ ├── imx6q-dfi-fs700-m60-6q.dts │ │ ├── imx6q-dmo-edmqmx6.dts │ │ ├── imx6q-embedsky-e9.dts │ │ ├── imx6q-embedsky-e9.dtsi │ │ ├── imx6q-gk802.dts │ │ ├── imx6q-guf-santaro.dts │ │ ├── imx6q-gw54xx.dts │ │ ├── imx6q-h100.dts │ │ ├── imx6q-hummingboard.dts │ │ ├── imx6q-hummingboard2.dts │ │ ├── imx6q-marsboard.dts │ │ ├── imx6q-mba6x.dts │ │ ├── imx6q-nitrogen6x.dts │ │ ├── imx6q-novena.dts │ │ ├── imx6q-phytec-pbab01.dts │ │ ├── imx6q-phytec-pfla02.dtsi │ │ ├── imx6q-phytec-phyboard-alcor.dts │ │ ├── imx6q-phytec-phyboard-subra.dts │ │ ├── imx6q-phytec-phycard.dts │ │ ├── imx6q-phytec-phycore-som-emmc.dts │ │ ├── imx6q-phytec-phycore-som-nand.dts │ │ ├── imx6q-prti6q.dts │ │ ├── imx6q-prtwd2.dts │ │ ├── imx6q-sabrelite.dts │ │ ├── imx6q-sabresd.dts │ │ ├── imx6q-samx6i.dts │ │ ├── imx6q-skov-imx6.dts │ │ ├── imx6q-tqma6q.dtsi │ │ ├── imx6q-tx6q.dts │ │ ├── imx6q-udoo.dts │ │ ├── imx6q-utilite.dts │ │ ├── imx6q-var-custom.dts │ │ ├── imx6q-var-som.dtsi │ │ ├── imx6q-vicut1.dts │ │ ├── imx6q-wandboard.dts │ │ ├── imx6q-zii-rdu2.dts │ │ ├── imx6q.dtsi │ │ ├── imx6qdl-cm-fx6.dtsi │ │ ├── imx6qdl-dfi-fs700-m60.dtsi │ │ ├── imx6qdl-gw54xx.dtsi │ │ ├── imx6qdl-hummingboard2.dtsi │ │ ├── imx6qdl-mba6x.dtsi │ │ ├── imx6qdl-nitrogen6_max.dtsi │ │ ├── imx6qdl-nitrogen6x.dtsi │ │ ├── imx6qdl-phytec-mira.dtsi │ │ ├── imx6qdl-phytec-pbab01.dtsi │ │ ├── imx6qdl-phytec-pfla02.dtsi │ │ ├── imx6qdl-phytec-phyboard-subra.dtsi │ │ ├── imx6qdl-phytec-phycard-som.dtsi │ │ ├── imx6qdl-phytec-phycore-som.dtsi │ │ ├── imx6qdl-phytec-state.dtsi │ │ ├── imx6qdl-prti6q-emmc.dtsi │ │ ├── imx6qdl-prti6q-nor.dtsi │ │ ├── imx6qdl-sabrelite.dtsi │ │ ├── imx6qdl-sabresd.dtsi │ │ ├── imx6qdl-skov-imx6.dtsi │ │ ├── imx6qdl-smarc-samx6i.dtsi │ │ ├── imx6qdl-tqma6x.dtsi │ │ ├── imx6qdl-tx6x.dtsi │ │ ├── imx6qdl-udoo.dtsi │ │ ├── imx6qdl-zii-rdu2.dtsi │ │ ├── imx6qdl.dtsi │ │ ├── imx6qp-nitrogen6_max.dts │ │ ├── imx6qp-phytec-phycore-som-nand.dts │ │ ├── imx6qp-prtwd3.dts │ │ ├── imx6qp-sabresd.dts │ │ ├── imx6qp-vicutp.dts │ │ ├── imx6qp-zii-rdu2.dts │ │ ├── imx6s-phytec-pbab01.dts │ │ ├── imx6s-phytec-pfla02.dtsi │ │ ├── imx6s-riotboard.dts │ │ ├── imx6s-skov-imx6.dts │ │ ├── imx6sx-sdb.dts │ │ ├── imx6sx-udoo-neo-full.dts │ │ ├── imx6sx.dtsi │ │ ├── imx6ul-ccimx6ulsbcpro.dts │ │ ├── imx6ul-liteboard.dts │ │ ├── imx6ul-litesom.dtsi │ │ ├── imx6ul-phytec-phycore-som-emmc.dts │ │ ├── imx6ul-phytec-phycore-som-nand.dts │ │ ├── imx6ul-phytec-phycore-som.dtsi │ │ ├── imx6ul-phytec-state.dtsi │ │ ├── imx6ul-pico-hobbit.dts │ │ ├── imx6ul-prti6g.dts │ │ ├── imx6ul-tqma6ul-common.dtsi │ │ ├── imx6ul-tqma6ul2-mba6ulx.dts │ │ ├── imx6ul-tqma6ul2l-mba6ulx.dts │ │ ├── imx6ul-webasto-ccbv2.dts │ │ ├── imx6ul-webasto-ccbv2.dtsi │ │ ├── imx6ul-webasto-marvel.dts │ │ ├── imx6ul.dtsi │ │ ├── imx6ull-14x14-evk.dts │ │ ├── imx6ull-jozacp.dts │ │ ├── imx6ull-jozacp.dtsi │ │ ├── imx6ull-phytec-phycore-som-emmc.dts │ │ ├── imx6ull-phytec-phycore-som-lc-nand.dts │ │ ├── imx6ull-phytec-phycore-som-nand.dts │ │ ├── imx6ull-tqma6ull2-mba6ulx.dts │ │ ├── imx6ull-tqma6ull2l-mba6ulx.dts │ │ ├── imx7.dtsi │ │ ├── imx7d-ac-sxb.dtsi │ │ ├── imx7d-ddrc.dtsi │ │ ├── imx7d-flex-concentrator-mfg.dts │ │ ├── imx7d-gome-e143_01.dts │ │ ├── imx7d-gome-e143_01.kernel.dts │ │ ├── imx7d-meerkat96.dts │ │ ├── imx7d-pba-c-09.dtsi │ │ ├── imx7d-peb-av-02.dtsi │ │ ├── imx7d-peb-eval-02.dtsi │ │ ├── imx7d-phyboard-zeta.dts │ │ ├── imx7d-phycore-som.dtsi │ │ ├── imx7d-pinfunc.kernel.h │ │ ├── imx7d-sdb.dts │ │ ├── imx7d-var-som-mx7.dtsi │ │ ├── imx7d-var-som-mx7.kernel.dtsi │ │ ├── imx7d-zii-rmu2.dts │ │ ├── imx7d-zii-rpu2.dts │ │ ├── imx7d.kernel.dtsi │ │ ├── imx7s-warp.dts │ │ ├── imx7s.kernel.dtsi │ │ ├── imx8mm-evk.dts │ │ ├── imx8mm-evk.dtsi │ │ ├── imx8mm-evkb.dts │ │ ├── imx8mm-innocomm-wb15-evk.dts │ │ ├── imx8mm-phyboard-polis-rdk.dts │ │ ├── imx8mm-prt8mm.dts │ │ ├── imx8mm.dtsi │ │ ├── imx8mn-ddr4-evk.dts │ │ ├── imx8mn-evk.dts │ │ ├── imx8mn-evk.dtsi │ │ ├── imx8mn.dtsi │ │ ├── imx8mp-congatec-qmx8p.dtsi │ │ ├── imx8mp-congatec-qmx8p.kernel.dtsi │ │ ├── imx8mp-debix-model-a-upstream.dts │ │ ├── imx8mp-debix-model-a.dts │ │ ├── imx8mp-debix-som-a-bmb-08-upstream.dts │ │ ├── imx8mp-debix-som-a-bmb-08.dts │ │ ├── imx8mp-debix-som-a-upstream.dtsi │ │ ├── imx8mp-evk.dts │ │ ├── imx8mp-karo-qsxp-ml81-qsbase4.dts │ │ ├── imx8mp-karo-qsxp-ml81-upstream.dtsi │ │ ├── imx8mp-karo-qsxp-ml81.dtsi │ │ ├── imx8mp-karo.dtsi │ │ ├── imx8mp-koenigbauer-alphajet.dts │ │ ├── imx8mp-koenigbauer-alphajet.kernel.dts │ │ ├── imx8mp-nominal.dtsi │ │ ├── imx8mp-skov.dts │ │ ├── imx8mp-tqma8mpql-mba8mpxl.dts │ │ ├── imx8mp-var-dart-dt8mcustomboard.dts │ │ ├── imx8mp-var-dart.dtsi │ │ ├── imx8mp.dtsi │ │ ├── imx8mq-ddrc.dtsi │ │ ├── imx8mq-evk.dts │ │ ├── imx8mq-mnt-reform2.dts │ │ ├── imx8mq-phytec-phycore-som.dts │ │ ├── imx8mq-zii-ultra-rmb3.dts │ │ ├── imx8mq-zii-ultra-zest.dts │ │ ├── imx8mq-zii-ultra.dtsi │ │ ├── imx8mq.dtsi │ │ ├── imx93-tqma9352-mba93xxca.dts │ │ ├── imx93-tqma9352-mba93xxla.dts │ │ ├── imx93-tqma93xx.dtsi │ │ ├── imx93.dtsi │ │ ├── k3-am625-beagleplay.dts │ │ ├── kirkwood-guruplug-server-plus-bb.dts │ │ ├── kirkwood-openblocks_a6-bb.dts │ │ ├── kirkwood-topkick-bb.dts │ │ ├── rk3188-radxarock.dts │ │ ├── rk3288-phycore-som.dts │ │ ├── rk3566-cm3-io.dts │ │ ├── rk3566-quartz64-a.dts │ │ ├── rk3568-bpi-r2-pro.dts │ │ ├── rk3568-evb1-v10.dts │ │ ├── rk3568-mecsbc-linux.dts │ │ ├── rk3568-mecsbc.dts │ │ ├── rk3568-rock-3a.dts │ │ ├── rk3568-wolfvision-pf5-io-expander-upstream.dtso │ │ ├── rk3568-wolfvision-pf5-io-expander.dtso │ │ ├── rk3568-wolfvision-pf5-upstream.dts │ │ ├── rk3568-wolfvision-pf5.dts │ │ ├── rk356x.dtsi │ │ ├── rk3588-rock-5b.dts │ │ ├── rk3588.dtsi │ │ ├── rk3588s.dtsi │ │ ├── sama5d2.dtsi │ │ ├── sama5d3.dtsi │ │ ├── sama5d4.dtsi │ │ ├── socfpga.dtsi │ │ ├── socfpga_arria10_achilles.dts │ │ ├── socfpga_arria10_mercury_aa1.dts │ │ ├── socfpga_cyclone5_de0_nano_soc.dts │ │ ├── socfpga_cyclone5_de10_nano.dts │ │ ├── socfpga_cyclone5_socdk.dts │ │ ├── socfpga_cyclone5_sockit.dts │ │ ├── socfpga_cyclone5_socrates.dts │ │ ├── state-example.dtsi │ │ ├── stm32mp1-scmi-smc.dtsi │ │ ├── stm32mp131.dtsi │ │ ├── stm32mp135f-dk.dts │ │ ├── stm32mp151-prtt1a.dts │ │ ├── stm32mp151-prtt1c.dts │ │ ├── stm32mp151-prtt1l-net.dtsi │ │ ├── stm32mp151-prtt1l.dtsi │ │ ├── stm32mp151-prtt1s.dts │ │ ├── stm32mp151.dtsi │ │ ├── stm32mp157a-dk1-scmi.dts │ │ ├── stm32mp157a-dk1.dts │ │ ├── stm32mp157c-dk2-scmi.dts │ │ ├── stm32mp157c-dk2.dts │ │ ├── stm32mp157c-ev1-scmi.dts │ │ ├── stm32mp157c-ev1.dts │ │ ├── stm32mp157c-lxa-mc1-scmi.dts │ │ ├── stm32mp157c-lxa-mc1.dts │ │ ├── stm32mp157c-odyssey.dts │ │ ├── stm32mp157c-phycore-stm32mp1-3.dts │ │ ├── stm32mp15xx-dkx.dtsi │ │ ├── tegra124-jetson-tk1.dts │ │ ├── tegra124.dtsi │ │ ├── tegra20-colibri-iris.dts │ │ ├── tegra20-colibri.dtsi │ │ ├── tegra20-paz00.dts │ │ ├── tegra20.dtsi │ │ ├── tegra30-beaver.dts │ │ ├── tegra30.dtsi │ │ ├── tny_a9260.dts │ │ ├── tny_a9g20.dts │ │ ├── usb_a9260.dts │ │ ├── usb_a9g20.dts │ │ ├── versatile-pb.dts │ │ ├── vexpress-v2p-ca15.dts │ │ ├── vexpress-v2p-ca9.dts │ │ ├── vf610-ddrmc.dtsi │ │ ├── vf610-twr.dts │ │ ├── vf610-zii-cfu1.dts │ │ ├── vf610-zii-dev-rev-b.dts │ │ ├── vf610-zii-dev-rev-c.dts │ │ ├── vf610-zii-dev.dtsi │ │ ├── vf610-zii-scu4-aib.dts │ │ ├── vf610-zii-spb4.dts │ │ ├── vf610-zii-spb4.dtsi │ │ ├── vf610-zii-ssmb-dtu.dts │ │ ├── vf610-zii-ssmb-spu3.dts │ │ ├── vf610.dtsi │ │ ├── wolfvision-state.dtsi │ │ ├── zynq-7000.dtsi │ │ ├── zynq-zed.dts │ │ ├── zynqmp-zcu102-revA.dts │ │ ├── zynqmp-zcu102-revB.dts │ │ ├── zynqmp-zcu104-revA.dts │ │ └── zynqmp-zcu106-revA.dts │ ├── include │ │ └── asm │ │ │ ├── arch-check.h │ │ │ ├── armlinux.h │ │ │ ├── asm-offsets.h │ │ │ ├── assembler.h │ │ │ ├── assembler64.h │ │ │ ├── atf_common.h │ │ │ ├── atomic.h │ │ │ ├── barebox-arm-head.h │ │ │ ├── barebox-arm.h │ │ │ ├── barebox-arm64.h │ │ │ ├── barebox.lds.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache-l2x0.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── cputype.h │ │ │ ├── debug_ll.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── errata.h │ │ │ ├── esr.h │ │ │ ├── fncpy.h │ │ │ ├── gic.h │ │ │ ├── hardware │ │ │ ├── arm_timer.h │ │ │ └── sp810.h │ │ │ ├── image.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mach-types.h │ │ │ ├── memory.h │ │ │ ├── mmu.h │ │ │ ├── mmuinfo.h │ │ │ ├── module.h │ │ │ ├── neon.h │ │ │ ├── opcodes-sec.h │ │ │ ├── opcodes-virt.h │ │ │ ├── opcodes.h │ │ │ ├── optee.h │ │ │ ├── pci.h │ │ │ ├── pgtable.h │ │ │ ├── pgtable64.h │ │ │ ├── posix_types.h │ │ │ ├── proc-armv │ │ │ └── system.h │ │ │ ├── psci.h │ │ │ ├── ptrace.h │ │ │ ├── reloc.h │ │ │ ├── sections.h │ │ │ ├── secure.h │ │ │ ├── semihosting.h │ │ │ ├── setjmp.h │ │ │ ├── setup.h │ │ │ ├── stacktrace.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── syscounter.h │ │ │ ├── sysreg.h │ │ │ ├── system.h │ │ │ ├── system_info.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ ├── unified.h │ │ │ ├── unwind.h │ │ │ └── word-at-a-time.h │ ├── lib │ │ ├── asm-offsets.c │ │ └── pbl.lds.S │ ├── lib32 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── arm_architected_timer.c │ │ ├── armlinux.c │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── barebox.lds.S │ │ ├── bootm.c │ │ ├── bootu.c │ │ ├── bootz.c │ │ ├── copy_template.S │ │ ├── div0.c │ │ ├── findbit.S │ │ ├── io-readsb.S │ │ ├── io-readsl.S │ │ ├── io-readsw-armv4.S │ │ ├── io-writesb.S │ │ ├── io-writesl.S │ │ ├── io-writesw-armv4.S │ │ ├── io.c │ │ ├── lib1funcs.S │ │ ├── lshrdi3.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── module-plts.c │ │ ├── module.c │ │ ├── module.lds │ │ ├── optee-early.c │ │ ├── runtime-offset.S │ │ ├── semihosting-trap.S │ │ ├── semihosting.c │ │ ├── setjmp.S │ │ ├── start-kernel-optee.S │ │ └── unwind.c │ ├── lib64 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── armlinux.c │ │ ├── barebox.lds.S │ │ ├── copy_template.S │ │ ├── div0.c │ │ ├── io.c │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── pbl.c │ │ ├── runtime-offset.S │ │ ├── setjmp.S │ │ ├── stacktrace.c │ │ └── string.c │ ├── mach-at91 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── aic.c │ │ ├── at91_pmc_ll.c │ │ ├── at91rm9200.c │ │ ├── at91rm9200_devices.c │ │ ├── at91rm9200_time.c │ │ ├── at91sam9260.c │ │ ├── at91sam9260_devices.c │ │ ├── at91sam9261.c │ │ ├── at91sam9261_devices.c │ │ ├── at91sam9263.c │ │ ├── at91sam9263_devices.c │ │ ├── at91sam9_reset.S │ │ ├── at91sam9_rst.c │ │ ├── at91sam9_sdramc_ll.c │ │ ├── at91sam9_xload_mmc.c │ │ ├── at91sam9g45.c │ │ ├── at91sam9g45_devices.c │ │ ├── at91sam9g45_reset.S │ │ ├── at91sam9n12.c │ │ ├── at91sam9n12_devices.c │ │ ├── at91sam9x5.c │ │ ├── at91sam9x5_devices.c │ │ ├── boot_test_cmd.c │ │ ├── bootm-barebox.c │ │ ├── bootstrap.c │ │ ├── clock.c │ │ ├── clock.h │ │ ├── ddramc.c │ │ ├── ddramc_ll.c │ │ ├── early_udelay.c │ │ ├── generic.h │ │ ├── matrix.c │ │ ├── sam9263_ll.c │ │ ├── sam9_smc.c │ │ ├── sama5_bootsource.c │ │ ├── sama5d2.c │ │ ├── sama5d2_ll.c │ │ ├── sama5d3.c │ │ ├── sama5d3_devices.c │ │ ├── sama5d3_ll.c │ │ ├── sama5d4.c │ │ ├── sama5d4_devices.c │ │ ├── sdramc.c │ │ ├── setup.c │ │ └── xload-mmc.c │ ├── mach-bcm283x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ └── mbox.c │ ├── mach-clps711x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── common.c │ │ └── lowlevel.c │ ├── mach-imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── atf.c │ │ ├── boot.c │ │ ├── bootrom-cmd.c │ │ ├── cpu_init.c │ │ ├── ele.c │ │ ├── esdctl-v4.c │ │ ├── esdctl.c │ │ ├── external-nand-boot.c │ │ ├── iim.c │ │ ├── imx-bbu-external-nand.c │ │ ├── imx-bbu-internal.c │ │ ├── imx-udc.c │ │ ├── imx.c │ │ ├── imx1.c │ │ ├── imx21.c │ │ ├── imx25.c │ │ ├── imx27.c │ │ ├── imx31.c │ │ ├── imx35.c │ │ ├── imx5.c │ │ ├── imx50.c │ │ ├── imx51.c │ │ ├── imx53.c │ │ ├── imx6-mmdc.c │ │ ├── imx6.c │ │ ├── imx7.c │ │ ├── imx8m.c │ │ ├── imx9.c │ │ ├── imx93-trdc.c │ │ ├── nand.c │ │ ├── romapi.c │ │ ├── scratch.c │ │ ├── src.c │ │ ├── tzasc.c │ │ ├── vf610.c │ │ ├── xload-common.c │ │ ├── xload-gpmi-nand.c │ │ ├── xload-imx-nand.c │ │ ├── xload-qspi.c │ │ └── xload-spi.c │ ├── mach-k3 │ │ ├── Kconfig │ │ ├── Makefile │ │ └── common.c │ ├── mach-layerscape │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── boot.c │ │ ├── errata.c │ │ ├── icid.c │ │ ├── lowlevel-ls1028a.c │ │ ├── lowlevel-ls102xa.c │ │ ├── lowlevel-ls1046a.c │ │ ├── lowlevel.S │ │ ├── ls102xa_stream_id.c │ │ ├── pblimage.c │ │ ├── ppa-entry.S │ │ ├── ppa.c │ │ ├── restart.c │ │ ├── soc.c │ │ ├── tzc400.c │ │ ├── tzc400.h │ │ ├── xload-qspi.c │ │ └── xload.c │ ├── mach-mvebu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── armada-370-xp.c │ │ ├── common.c │ │ ├── dove.c │ │ ├── kirkwood.c │ │ ├── kwb_bbu.c │ │ └── kwbootimage.c │ ├── mach-mxs │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bcb.c │ │ ├── clocksource-imx23.c │ │ ├── clocksource-imx28.c │ │ ├── imx.c │ │ ├── iomux-imx.c │ │ ├── lradc-init.c │ │ ├── mem-init.c │ │ ├── mxs23img.cfg │ │ ├── mxs28img.cfg │ │ ├── ocotp.c │ │ ├── power-init.c │ │ ├── power.c │ │ ├── soc-imx23.c │ │ ├── soc-imx28.c │ │ ├── usb-imx23.c │ │ └── usb-imx28.c │ ├── mach-omap │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am33xx_bbu_emmc.c │ │ ├── am33xx_bbu_nand.c │ │ ├── am33xx_bbu_spi_mlo.c │ │ ├── am33xx_clock.c │ │ ├── am33xx_generic.c │ │ ├── am33xx_mux.c │ │ ├── am33xx_scrm.c │ │ ├── am3xxx.c │ │ ├── auxcr.S │ │ ├── boot_order.c │ │ ├── devices-gpmc-nand.c │ │ ├── emif4.c │ │ ├── gpmc.c │ │ ├── omap3_clock.c │ │ ├── omap3_generic.c │ │ ├── omap3_xload_usb.c │ │ ├── omap4_clock.c │ │ ├── omap4_generic.c │ │ ├── omap4_rom_usb.c │ │ ├── omap4_twl6030_mmc.c │ │ ├── omap_devices.c │ │ ├── omap_generic.c │ │ ├── syslib.c │ │ └── xload.c │ ├── mach-pxa │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clocksource.c │ │ ├── common.c │ │ ├── devices.c │ │ ├── gpio.c │ │ ├── mfp-pxa2xx.c │ │ ├── mfp-pxa3xx.c │ │ ├── pxa2xx.c │ │ ├── pxa3xx.c │ │ ├── sleep.S │ │ ├── speed-pxa25x.c │ │ ├── speed-pxa27x.c │ │ └── speed-pxa3xx.c │ ├── mach-rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── atf.c │ │ ├── bbu.c │ │ ├── bootm.c │ │ ├── bootrom.c │ │ ├── dmc.c │ │ ├── rk3188.c │ │ ├── rk3288.c │ │ ├── rk3568.c │ │ ├── rk3588.c │ │ └── rockchip.c │ ├── mach-socfpga │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arria10-bootsource.c │ │ ├── arria10-clock-manager.c │ │ ├── arria10-generic.c │ │ ├── arria10-init.c │ │ ├── arria10-reset-manager.c │ │ ├── arria10-sdram.c │ │ ├── arria10-xload-emmc.c │ │ ├── arria10-xload.c │ │ ├── cpu_init.c │ │ ├── cyclone5-bootsource.c │ │ ├── cyclone5-clock-manager.c │ │ ├── cyclone5-freeze-controller.c │ │ ├── cyclone5-generic.c │ │ ├── cyclone5-init.c │ │ ├── cyclone5-reset-manager.c │ │ ├── cyclone5-scan-manager.c │ │ ├── cyclone5-system-manager.c │ │ ├── nic301.c │ │ └── xload.c │ ├── mach-stm32mp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bbu.c │ │ ├── bl33-generic.c │ │ ├── ddrctrl.c │ │ ├── init.c │ │ └── stm32image.c │ ├── mach-tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── tegra-bbu.c │ │ ├── tegra20-pmc.c │ │ ├── tegra20-timer.c │ │ ├── tegra20.c │ │ ├── tegra_avp_init.c │ │ └── tegra_maincomplex_init.c │ ├── mach-versatile │ │ ├── Kconfig │ │ ├── Makefile │ │ └── core.c │ ├── mach-vexpress │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── reset.c │ │ └── v2m.c │ ├── mach-zynq │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bootm-zynqimg.c │ │ ├── cpu_init.c │ │ └── zynq.c │ └── mach-zynqmp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── firmware-zynqmp.c │ │ ├── zynqmp-bbu.c │ │ └── zynqmp.c ├── kvx │ ├── Kconfig │ ├── Makefile │ ├── configs │ │ └── generic_defconfig │ ├── cpu │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── cpu.c │ │ ├── exception.S │ │ ├── reset.c │ │ └── start.S │ ├── dts │ │ ├── Makefile │ │ └── k200.dts │ ├── include │ │ └── asm │ │ │ ├── barebox.lds.h │ │ │ ├── barrier.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── ftu.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── posix_types.h │ │ │ ├── privilege.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── sfr.h │ │ │ ├── sfr_defs.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── sys_arch.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ └── word-at-a-time.h │ └── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── board.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── cpuinfo.c │ │ ├── dma-default.c │ │ ├── dtb.c │ │ ├── poweroff.c │ │ └── setjmp.S ├── mips │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ ├── 8devices-lima │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── Makefile │ │ ├── black-swift │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── board-dt-2nd.S │ │ ├── dlink-dir-320 │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── dptechnics-dpt-module │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── img-ci20 │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── loongson-ls1b │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── netgear-wg102 │ │ │ ├── Makefile │ │ │ ├── lowlevel.S │ │ │ └── ram.c │ │ ├── okud-max9331 │ │ │ ├── Makefile │ │ │ ├── lowlevel.S │ │ │ └── lowlevel_boot0.S │ │ ├── openembed-som9331 │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── qemu-malta │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── ritmix-rzx50 │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ ├── tplink-mr3020 │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ │ └── tplink-wdr4300 │ │ │ ├── Makefile │ │ │ └── lowlevel.S │ ├── boot │ │ ├── Makefile │ │ ├── dtb.c │ │ ├── main_entry-pbl.c │ │ ├── main_entry.c │ │ └── start.c │ ├── configs │ │ ├── ath79_defconfig │ │ ├── bcm47xx_defconfig │ │ ├── gxemul-malta_defconfig │ │ ├── le.config │ │ ├── loongson-ls1b_defconfig │ │ ├── mips64.config │ │ ├── qemu-malta_defconfig │ │ └── xburst_defconfig │ ├── dts │ │ ├── Makefile │ │ ├── ar9331-dptechnics-dpt-module.dts │ │ ├── ar9331-okud-max9331.dts │ │ ├── ar9331-openembed-som9331-board.dts │ │ ├── ar9331.dtsi │ │ ├── ar9331_tl_mr3020.dts │ │ ├── ar9344-tl-wdr4300-v1.7.dts │ │ ├── ar9344.dtsi │ │ ├── black-swift.dts │ │ ├── dlink-dir-320.dts │ │ ├── img-ci20.dts │ │ ├── jz4755.dtsi │ │ ├── jz4780.dtsi │ │ ├── loongson-ls1b.dts │ │ ├── ls1b.dtsi │ │ ├── qca4531-8devices-lima.dts │ │ ├── qca4531.dtsi │ │ ├── qemu-malta.dts │ │ └── rzx50.dts │ ├── include │ │ └── asm │ │ │ ├── addrspace.h │ │ │ ├── asm-offsets.h │ │ │ ├── asm.h │ │ │ ├── barebox.lds.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cacheops.h │ │ │ ├── common.h │ │ │ ├── cpu-features.h │ │ │ ├── cpu-info.h │ │ │ ├── cpu.h │ │ │ ├── debug_ll.h │ │ │ ├── debug_ll_ns16550.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── memory.h │ │ │ ├── mipsregs.h │ │ │ ├── mmu.h │ │ │ ├── module.h │ │ │ ├── pbl_macros.h │ │ │ ├── pbl_nmon.h │ │ │ ├── pci.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── regdef.h │ │ │ ├── reloc.h │ │ │ ├── relocs.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── sgidefs.h │ │ │ ├── stackframe.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ └── word-at-a-time.h │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── barebox.lds.S │ │ ├── bootm.c │ │ ├── c-r4k.c │ │ ├── cpu-probe.c │ │ ├── cpuinfo.c │ │ ├── csrc-r4k.c │ │ ├── dma-default.c │ │ ├── end.S │ │ ├── genex.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── pbl.lds.S │ │ ├── reloc.c │ │ ├── sections.c │ │ ├── setjmp.S │ │ ├── shutdown.c │ │ └── traps.c │ ├── mach-ar231x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ar231x.c │ │ ├── ar231x_reset.c │ │ ├── board.c │ │ └── include │ │ │ └── mach │ │ │ ├── ar2312_regs.h │ │ │ ├── ar231x_platform.h │ │ │ ├── debug_ll.h │ │ │ └── pbl_macros.h │ ├── mach-ath79 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── art.c │ │ ├── bbu.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── ar71xx_regs.h │ │ │ │ ├── ath79.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── debug_ll_ar9331.h │ │ │ │ ├── debug_ll_ar9344.h │ │ │ │ ├── pbl_ll_init_ar9344_1.1.h │ │ │ │ ├── pbl_ll_init_qca4531.h │ │ │ │ └── pbl_macros.h │ │ ├── lowlevel_ar9331_spi_trap.S │ │ ├── lowlevel_ar9331_sram.S │ │ └── reset.c │ ├── mach-bcm47xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ └── hardware.h │ │ └── reset.c │ ├── mach-loongson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── loongson1.h │ │ │ │ ├── pbl_ll_init_loongson1.h │ │ │ │ ├── pbl_macros.h │ │ │ │ ├── regs-clk.h │ │ │ │ ├── regs-mux.h │ │ │ │ ├── regs-pwm.h │ │ │ │ ├── regs-rtc.h │ │ │ │ └── regs-wdt.h │ │ └── loongson1_reset.c │ ├── mach-malta │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── gt64120.h │ │ │ │ └── hardware.h │ │ └── pci.c │ ├── mach-xburst │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── csrc-jz4750.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── debug_ll_jz4750d.h │ │ │ │ ├── debug_ll_jz4780.h │ │ │ │ ├── devices.h │ │ │ │ ├── jz4750d_regs.h │ │ │ │ └── jz4780.h │ │ └── reset-jz4750.c │ └── pbl │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── piggy.gzip.S │ │ ├── piggy.lz4.S │ │ ├── piggy.lzo.S │ │ ├── piggy.shipped.S │ │ ├── piggy.xzkern.S │ │ └── zbarebox.lds.S ├── openrisc │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ └── generic │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── env │ │ │ └── config │ │ │ └── generic.c │ ├── configs │ │ └── generic_defconfig │ ├── cpu │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── exceptions.c │ │ └── start.S │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ └── or1ksim.dts │ ├── include │ │ └── asm │ │ │ ├── barebox.lds.h │ │ │ ├── bitops.h │ │ │ ├── bitops │ │ │ ├── ffs.h │ │ │ └── fls.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── openrisc_exc.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── spr-defs.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ └── word-at-a-time.h │ └── lib │ │ ├── Makefile │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── asm-offsets.c │ │ ├── board.c │ │ ├── clock.c │ │ ├── cpuinfo.c │ │ ├── dtb.c │ │ ├── lshrdi3.S │ │ ├── muldi3.S │ │ └── setjmp.S ├── powerpc │ ├── Kbuild │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ ├── .gitignore │ │ ├── freescale-p1010rdb │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── ddr.c │ │ │ ├── defaultenv-freescale-p1010rdb │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── law.c │ │ │ ├── p1010rdb.c │ │ │ ├── p1010rdb.h │ │ │ └── tlb.c │ │ ├── freescale-p1022ds │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── ddr.c │ │ │ ├── defaultenv-freescale-p1022ds │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── ics307_clk.c │ │ │ ├── law.c │ │ │ ├── p1022ds.c │ │ │ ├── p1022ds.h │ │ │ └── tlb.c │ │ ├── freescale-p2020rdb │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-freescale-p2020rdb │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── law.c │ │ │ ├── p2020rdb.c │ │ │ └── tlb.c │ │ ├── owc-da923rc │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── da923rc.c │ │ │ ├── ddr.c │ │ │ ├── defaultenv-owc-da923rc │ │ │ │ ├── bin │ │ │ │ │ ├── boot │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── law.c │ │ │ ├── nand.c │ │ │ ├── product_data.c │ │ │ ├── product_data.h │ │ │ └── tlb.c │ │ └── pcm030 │ │ │ ├── Makefile │ │ │ ├── barebox.lds.S │ │ │ ├── config.h │ │ │ ├── eeprom.c │ │ │ ├── env │ │ │ ├── init │ │ │ │ └── mtdparts-nor │ │ │ └── nv │ │ │ │ └── linux.bootargs.console │ │ │ ├── mt46v32m16-75.h │ │ │ └── pcm030.c │ ├── configs │ │ ├── owc_da923rc_defconfig │ │ ├── p1010rdb_defconfig │ │ ├── p1022ds_defconfig │ │ ├── p2020rdb_defconfig │ │ └── pcm030_defconfig │ ├── cpu-85xx │ │ ├── Makefile │ │ ├── fixed_ivor.S │ │ ├── mmu.c │ │ ├── resetvec.S │ │ ├── start.S │ │ ├── tlb.c │ │ └── traps.c │ ├── ddr-8xxx │ │ ├── Makefile │ │ ├── common_timing_params.h │ │ ├── ctrl_regs.c │ │ ├── ddr.h │ │ ├── ddr2_dimm_params.c │ │ ├── ddr3_dimm_params.c │ │ ├── ddr_setctrl.c │ │ ├── lc_common_dimm_params.c │ │ ├── main.c │ │ ├── options.c │ │ └── util.c │ ├── include │ │ └── asm │ │ │ ├── atomic.h │ │ │ ├── barebox.lds.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── fsl_ddr_dimm_params.h │ │ │ ├── fsl_ddr_sdram.h │ │ │ ├── fsl_ifc.h │ │ │ ├── fsl_law.h │ │ │ ├── fsl_lbc.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── module.h │ │ │ ├── pci_io.h │ │ │ ├── posix_types.h │ │ │ ├── ppc_asm.tmpl │ │ │ ├── ppc_defs.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontext.h │ │ │ ├── signal.h │ │ │ ├── status_led.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ └── word-at-a-time.h │ ├── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── bat_rw.c │ │ ├── board.c │ │ ├── crtsavres.S │ │ ├── extable.c │ │ ├── kgdb.c │ │ ├── misc.S │ │ ├── module.c │ │ ├── ppclinux.c │ │ ├── ppcstring.S │ │ ├── reloc.S │ │ ├── setjmp.S │ │ └── ticks.S │ ├── mach-mpc5xxx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── cpu_init.c │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clock.h │ │ │ │ ├── mpc5xxx.h │ │ │ │ └── sdma.h │ │ ├── loadtask.c │ │ ├── reginfo.c │ │ ├── speed.c │ │ ├── start.S │ │ ├── time.c │ │ └── traps.c │ └── mach-mpc85xx │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── cpu.c │ │ ├── cpu_init.c │ │ ├── cpuid.c │ │ ├── eth-devices.c │ │ ├── fdt.c │ │ ├── fsl_gpio.c │ │ ├── fsl_i2c.c │ │ ├── fsl_law.c │ │ ├── include │ │ └── mach │ │ │ ├── clock.h │ │ │ ├── config_mpc85xx.h │ │ │ ├── early_udelay.h │ │ │ ├── ffs64.h │ │ │ ├── fsl_i2c.h │ │ │ ├── gianfar.h │ │ │ ├── gpio.h │ │ │ ├── immap_85xx.h │ │ │ ├── mmu.h │ │ │ └── mpc85xx.h │ │ ├── speed.c │ │ └── time.c ├── riscv │ ├── Kconfig │ ├── Kconfig.socs │ ├── Makefile │ ├── boards │ │ ├── Makefile │ │ ├── allwinner-d1 │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── beaglev │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-beaglev │ │ │ │ ├── boot │ │ │ │ │ ├── buildroot │ │ │ │ │ └── fedora │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ └── lowlevel.c │ │ ├── erizo │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── hifive │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── litex-linux │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ └── riscvemu │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-riscvemu │ │ │ ├── data │ │ │ │ └── tutorial │ │ │ │ │ ├── 00-init │ │ │ │ │ ├── 01-interactive │ │ │ │ │ ├── 02-ofdump │ │ │ │ │ ├── 03-devinfo │ │ │ │ │ ├── 04-cs0 │ │ │ │ │ ├── 05-drvinfo │ │ │ │ │ ├── 06-devinfo-dev │ │ │ │ │ ├── 07-mw │ │ │ │ │ ├── 08-devfs │ │ │ │ │ ├── 09-partitions │ │ │ │ │ ├── 10-environment │ │ │ │ │ ├── 11-env-data │ │ │ │ │ ├── 12-dmesg │ │ │ │ │ ├── 13-env-bin │ │ │ │ │ ├── 14-env-init │ │ │ │ │ ├── 15-magicvar │ │ │ │ │ ├── 16-env-nv │ │ │ │ │ ├── 17-env-saveenv │ │ │ │ │ ├── 17-env-usage │ │ │ │ │ ├── 18-mnt │ │ │ │ │ ├── 19-automount │ │ │ │ │ ├── 20-mount-fs │ │ │ │ │ ├── 21-state │ │ │ │ │ ├── 22-device-params │ │ │ │ │ ├── 23-device-param-types │ │ │ │ │ ├── 24-boot │ │ │ │ │ └── 99-end │ │ │ └── init │ │ │ │ └── 90-tutorial-intro │ │ │ └── riscvemu-sram.dtso │ ├── boot │ │ ├── Makefile │ │ ├── board-dt-2nd.c │ │ ├── entry.c │ │ ├── entry.h │ │ ├── nmon_entry.S │ │ ├── start.c │ │ └── uncompress.c │ ├── configs │ │ ├── erizo_generic_defconfig │ │ ├── litex_linux_defconfig │ │ ├── rv64i_defconfig │ │ └── virt32_defconfig │ ├── cpu │ │ ├── Makefile │ │ ├── core.c │ │ ├── dma.c │ │ ├── interrupts.c │ │ ├── mtrap.S │ │ ├── strap.S │ │ └── time.c │ ├── dts │ │ ├── Makefile │ │ ├── erizo-generic.dts │ │ ├── erizo.dtsi │ │ ├── hifive-unleashed-a00.dts │ │ ├── hifive-unmatched-a00.dts │ │ ├── jh7100-beaglev-starlight.dts │ │ ├── jh7100-beaglev-starlight.dtsi │ │ ├── jh7100.dtsi │ │ ├── litex-linux.dts │ │ └── litex_soc_linux.dtsi │ ├── include │ │ └── asm │ │ │ ├── asm-offsets.h │ │ │ ├── asm.h │ │ │ ├── barebox-riscv-head.h │ │ │ ├── barebox-riscv.h │ │ │ ├── barebox.lds.h │ │ │ ├── barrier.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── csr.h │ │ │ ├── debug_ll.h │ │ │ ├── debug_ll_litex.h │ │ │ ├── debug_ll_ns16550.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── htif.h │ │ │ ├── image.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── ns16550.h │ │ │ ├── pci.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── reloc.h │ │ │ ├── riscv_nmon.h │ │ │ ├── sbi.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── system.h │ │ │ ├── timer.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ ├── unwind.h │ │ │ ├── vendorid_list.h │ │ │ └── word-at-a-time.h │ └── lib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── barebox.lds.S │ │ ├── bootm.c │ │ ├── cpuinfo.c │ │ ├── dtb.c │ │ ├── longjmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── pbl.lds.S │ │ ├── reloc.c │ │ ├── runtime-offset.S │ │ ├── sbi.c │ │ ├── sections.c │ │ ├── setjmp.S │ │ ├── setupc.S │ │ └── stacktrace.c ├── sandbox │ ├── Kconfig │ ├── Makefile │ ├── board │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── board.c │ │ ├── clock.c │ │ ├── console.c │ │ ├── dev-random.c │ │ ├── devices.c │ │ ├── dtb.c │ │ ├── env │ │ │ ├── network │ │ │ │ └── eth0 │ │ │ └── nv │ │ │ │ └── autoboot │ │ ├── hostfile.c │ │ ├── led.c │ │ ├── power.c │ │ ├── stickypage.S │ │ └── watchdog.c │ ├── configs │ │ ├── hosttools_defconfig │ │ ├── sandbox_defconfig │ │ └── targettools_defconfig │ ├── dts │ │ ├── Makefile │ │ ├── sandbox-libftdi-example.dtsi │ │ └── sandbox.dts │ ├── include │ │ └── asm │ │ │ ├── atomic.h │ │ │ ├── barebox.lds.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── common.h │ │ │ ├── debug_ll.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── posix_types.h │ │ │ ├── reset_source.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ └── word-at-a-time.h │ ├── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ └── unwind.c │ ├── mach-sandbox │ │ └── include │ │ │ └── mach │ │ │ ├── hostfile.h │ │ │ └── linux.h │ └── os │ │ ├── Makefile │ │ ├── common.c │ │ ├── ftdi.c │ │ ├── libc_malloc.c │ │ ├── sdl.c │ │ ├── setjmp.c │ │ └── tap.c └── x86 │ ├── Kconfig │ ├── Makefile │ ├── configs │ └── efi_defconfig │ ├── include │ └── asm │ │ ├── barebox.lds.h │ │ ├── bitops.h │ │ ├── bitsperlong.h │ │ ├── byteorder.h │ │ ├── common.h │ │ ├── debug_ll.h │ │ ├── dma.h │ │ ├── elf.h │ │ ├── io.h │ │ ├── linkage.h │ │ ├── mmu.h │ │ ├── modes.h │ │ ├── module.h │ │ ├── pci.h │ │ ├── posix_types.h │ │ ├── sections.h │ │ ├── segment.h │ │ ├── setjmp.h │ │ ├── string.h │ │ ├── swab.h │ │ ├── types.h │ │ ├── unaligned.h │ │ └── word-at-a-time.h │ ├── lib │ ├── Makefile │ ├── asm-offsets.c │ ├── setjmp_32.S │ └── setjmp_64.S │ └── mach-efi │ ├── .gitignore │ ├── Makefile │ ├── clocksource.c │ ├── crt0-efi-ia32.S │ ├── crt0-efi-x86_64.S │ ├── elf_ia32_efi.lds.S │ ├── elf_x86_64_efi.lds.S │ ├── include │ └── mach │ │ └── debug_ll.h │ ├── reloc_ia32.c │ └── reloc_x86_64.c ├── commands ├── 2048.c ├── Kconfig ├── Makefile ├── automount.c ├── barebox-update.c ├── basename.c ├── beep.c ├── blobgen.c ├── boot.c ├── bootchooser.c ├── bootm.c ├── bthread.c ├── cat.c ├── cd.c ├── clear.c ├── clk.c ├── cmp.c ├── cp.c ├── crc.c ├── defaultenv.c ├── detect.c ├── devinfo.c ├── devlookup.c ├── devunbind.c ├── dfu.c ├── dhcp.c ├── dhrystone.c ├── digest.c ├── dirname.c ├── dmesg.c ├── drvinfo.c ├── echo.c ├── edit.c ├── efi_handle_dump.c ├── ethlog.c ├── exec.c ├── export.c ├── false.c ├── fbtest.c ├── filetype.c ├── findmnt.c ├── firmwareload.c ├── flash.c ├── global.c ├── go.c ├── gpio.c ├── hab.c ├── hashsum.c ├── help.c ├── hwclock.c ├── hwmon.c ├── i2c.c ├── imd.c ├── insmod.c ├── internal.h ├── iomemport.c ├── ip-route-get.c ├── kallsyms.c ├── keystore.c ├── led.c ├── let.c ├── linux_exec.c ├── ln.c ├── loadb.c ├── loadenv.c ├── loads.c ├── loadxy.c ├── login.c ├── ls.c ├── lsmod.c ├── lspci.c ├── magicvar.c ├── md.c ├── memcmp.c ├── memcpy.c ├── meminfo.c ├── memset.c ├── memtest.c ├── memtester │ ├── Makefile │ ├── memtester.c │ ├── memtester.h │ ├── sizes.h │ ├── tests.c │ ├── tests.h │ └── types.h ├── menu.c ├── menutree.c ├── miitool.c ├── mipi_dbi.c ├── mkdir.c ├── mm.c ├── mmc.c ├── mmc_extcsd.c ├── mount.c ├── msleep.c ├── mw.c ├── nand-bitflip.c ├── nand.c ├── nandtest.c ├── nv.c ├── nvmem.c ├── of_compatible.c ├── of_diff.c ├── of_display_timings.c ├── of_dump.c ├── of_fixup.c ├── of_fixup_status.c ├── of_node.c ├── of_overlay.c ├── of_property.c ├── oftree.c ├── parted.c ├── partition.c ├── passwd.c ├── pm_domain.c ├── poweroff.c ├── printenv.c ├── pwd.c ├── pwm.c ├── readf.c ├── readline.c ├── readlink.c ├── reginfo.c ├── regulator.c ├── reset.c ├── rm.c ├── rmdir.c ├── saveenv.c ├── seed.c ├── selftest.c ├── setenv.c ├── sleep.c ├── smc.c ├── spd_decode.c ├── spi.c ├── splash.c ├── stacksmash.c ├── stat.c ├── state.c ├── stddev.c ├── test.c ├── tftp.c ├── time.c ├── timeout.c ├── trigger.c ├── true.c ├── tutorial.c ├── ubi.c ├── ubiformat.c ├── ubsan.c ├── uimage.c ├── umount.c ├── uncompress.c ├── uptime.c ├── usb.c ├── usbgadget.c ├── usbserial.c ├── version.c └── wd.c ├── common ├── .gitignore ├── Kconfig ├── Kconfig.debug ├── Kconfig.debug_ll ├── Makefile ├── bbu.c ├── binfmt.c ├── block.c ├── blspec.c ├── boards │ ├── Kconfig │ ├── Makefile │ ├── configs │ │ ├── base.config │ │ ├── disable_size_check.config │ │ ├── disable_target_tools.config │ │ ├── enable_self_test.config │ │ ├── enable_werror.config │ │ ├── full.config │ │ ├── headless.config │ │ ├── noshell.config │ │ └── virtio-pci.config │ ├── phytec │ │ ├── Makefile │ │ ├── phytec-som-detection.c │ │ └── phytec-som-imx8m-detection.c │ ├── qemu-virt │ │ ├── Makefile │ │ ├── board.c │ │ ├── fitimage-pubkey.dts │ │ ├── qemu-virt-flash.dtso │ │ └── qemu-virt-flash.h │ ├── tq │ │ ├── Makefile │ │ └── tq_eeprom.c │ └── wolfvision │ │ ├── Makefile │ │ └── common.c ├── boot.c ├── bootargs.c ├── bootchooser.c ├── booti.c ├── bootm.c ├── bootsource.c ├── bthread.c ├── calloc.c ├── clock.c ├── command.c ├── complete.c ├── console.c ├── console_common.c ├── console_countdown.c ├── console_simple.c ├── date.c ├── ddr1_dimm_params.c ├── ddr2_dimm_params.c ├── ddr3_dimm_params.c ├── ddr4_dimm_params.c ├── ddr_spd.c ├── deep-probe.c ├── dlmalloc.c ├── dummy_malloc.c ├── elf.c ├── env.c ├── envfs-core.c ├── environment.c ├── fastboot.c ├── file-list.c ├── filetype.c ├── firmware.c ├── globalvar.c ├── hush.c ├── image-fit.c ├── image.c ├── imd-barebox.c ├── imd.c ├── imx-bbu-nand-fcb.c ├── kallsyms.c ├── machine_id.c ├── meminfo.c ├── memory.c ├── memory_display.c ├── memsize.c ├── memtest.c ├── menu.c ├── menutree.c ├── misc.c ├── module.c ├── module.lds.S ├── oftree.c ├── optee.c ├── parser.c ├── partitions.c ├── partitions │ ├── Kconfig │ ├── Makefile │ ├── dos.c │ └── efi.c ├── password.c ├── pe.c ├── poller.c ├── poweroff.c ├── ratp │ ├── Kconfig │ ├── Makefile │ ├── getenv.c │ ├── gpio.c │ ├── i2c.c │ ├── md.c │ ├── mw.c │ ├── ping.c │ ├── ratp.c │ └── reset.c ├── reset_source.c ├── resource.c ├── restart.c ├── s_record.c ├── sched.c ├── serdev.c ├── slice.c ├── startup.c ├── state │ ├── Makefile │ ├── backend_bucket_circular.c │ ├── backend_bucket_direct.c │ ├── backend_format_dtb.c │ ├── backend_format_raw.c │ ├── backend_storage.c │ ├── state.c │ ├── state.h │ └── state_variables.c ├── system-partitions.c ├── tlsf.c ├── tlsf_malloc.c ├── tlsfbits.h ├── ubiformat.c ├── uimage.c ├── usbgadget.c ├── version.c └── workqueue.c ├── crypto ├── .gitignore ├── Kconfig ├── Makefile ├── crc-itu-t.c ├── crc32.c ├── crc32_digest.c ├── crc7.c ├── digest.c ├── hmac.c ├── jwt.c ├── keystore.c ├── md5.c ├── memneq.c ├── pbkdf2.c ├── rsa.c ├── sha1.c ├── sha2.c └── sha4.c ├── defaultenv ├── .gitignore ├── Makefile ├── defaultenv-1 │ ├── bin │ │ ├── _boot_help │ │ ├── _update │ │ ├── _update_help │ │ ├── boot │ │ ├── init │ │ └── update │ └── config ├── defaultenv-2-base │ ├── bin │ │ └── mtdparts-add │ ├── boot │ │ ├── bnet │ │ └── net │ ├── config │ ├── data │ │ ├── ansi-colors │ │ └── boot-template │ ├── init │ │ ├── automount │ │ ├── automount-ratp │ │ └── ps1 │ ├── network │ │ └── README │ └── nv │ │ ├── allow_color │ │ ├── autoboot_timeout │ │ └── user ├── defaultenv-2-dfu │ └── boot │ │ └── dfu ├── defaultenv-2-menu │ └── menu │ │ ├── 00-boot-default │ │ ├── action │ │ └── title │ │ ├── 10-boot-all │ │ ├── action │ │ ├── net │ │ │ ├── action │ │ │ └── title │ │ └── title │ │ ├── 20-settings │ │ ├── config │ │ │ ├── action │ │ │ └── title │ │ ├── network │ │ │ ├── action │ │ │ └── title │ │ └── title │ │ ├── 30-saveenv │ │ ├── action │ │ └── title │ │ ├── 40-shell │ │ ├── action │ │ └── title │ │ ├── 50-reset │ │ ├── action │ │ └── title │ │ ├── mainmenu │ │ └── title ├── defaultenv-2-reboot-mode │ └── bmode │ │ ├── bootloader │ │ ├── loader │ │ └── recovery └── defaultenv.c ├── drivers ├── Kconfig ├── Makefile ├── aiodev │ ├── Kconfig │ ├── Makefile │ ├── am335x_adc.c │ ├── core.c │ ├── imx7d_adc.c │ ├── imx_thermal.c │ ├── lm75.c │ ├── mc13xxx_adc.c │ ├── qoriq_thermal.c │ ├── rockchip_saradc.c │ ├── st_gyro.c │ ├── stm32-adc-core.c │ ├── stm32-adc-core.h │ ├── stm32-adc.c │ ├── ti_am335x_tscadc.h │ └── vf610_adc.c ├── amba │ ├── Kconfig │ ├── Makefile │ └── bus.c ├── ata │ ├── Kconfig │ ├── Makefile │ ├── ahci.c │ ├── ahci.h │ ├── disk_ata_drive.c │ ├── ide-sff.c │ ├── intf_platform_ide.c │ ├── pata-imx.c │ ├── sata-imx.c │ └── sata_mv.c ├── base │ ├── Kconfig │ ├── Makefile │ ├── bus.c │ ├── driver.c │ ├── featctrl.c │ ├── platform.c │ ├── power.c │ ├── regmap │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── internal.h │ │ ├── regmap-fmt.c │ │ ├── regmap-i2c.c │ │ ├── regmap-mmio.c │ │ ├── regmap-multi.c │ │ ├── regmap-spi.c │ │ └── regmap.c │ ├── resource.c │ └── soc.c ├── block │ ├── Kconfig │ ├── Makefile │ ├── efi-block-io.c │ └── virtio_blk.c ├── bus │ ├── Kconfig │ ├── Makefile │ ├── acpi.c │ ├── imx-weim.c │ ├── mvebu-mbus.c │ ├── omap-gpmc.c │ └── ti-sysc.c ├── clk │ ├── Kconfig │ ├── Makefile │ ├── analogbits │ │ ├── Makefile │ │ └── wrpll-cln28hpc.c │ ├── at91 │ │ ├── Makefile │ │ ├── at91rm9200.c │ │ ├── at91sam9260.c │ │ ├── at91sam9g45.c │ │ ├── at91sam9n12.c │ │ ├── at91sam9rl.c │ │ ├── at91sam9x5.c │ │ ├── clk-audio-pll.c │ │ ├── clk-generated.c │ │ ├── clk-h32mx.c │ │ ├── clk-i2s-mux.c │ │ ├── clk-main.c │ │ ├── clk-master.c │ │ ├── clk-peripheral.c │ │ ├── clk-pll.c │ │ ├── clk-plldiv.c │ │ ├── clk-programmable.c │ │ ├── clk-sam9x60-pll.c │ │ ├── clk-slow.c │ │ ├── clk-smd.c │ │ ├── clk-system.c │ │ ├── clk-usb.c │ │ ├── clk-utmi.c │ │ ├── pmc.c │ │ ├── pmc.h │ │ ├── sam9x60.c │ │ ├── sama5d2.c │ │ ├── sama5d3.c │ │ ├── sama5d4.c │ │ ├── sama7g5.c │ │ └── sckc.c │ ├── bcm │ │ ├── Makefile │ │ └── clk-bcm2835-aux.c │ ├── clk-ar933x.c │ ├── clk-ar9344.c │ ├── clk-bulk.c │ ├── clk-composite.c │ ├── clk-conf.c │ ├── clk-divider.c │ ├── clk-fixed-factor.c │ ├── clk-fixed.c │ ├── clk-fractional-divider.c │ ├── clk-gate-shared.c │ ├── clk-gate.c │ ├── clk-gpio.c │ ├── clk-mux.c │ ├── clk-qoric.c │ ├── clk-rpi.c │ ├── clk-scmi.c │ ├── clk-stm32f4.c │ ├── clk-stm32mp1.c │ ├── clk.c │ ├── clkdev.c │ ├── imx │ │ ├── Makefile │ │ ├── clk-composite-8m.c │ │ ├── clk-composite-93.c │ │ ├── clk-cpu.c │ │ ├── clk-frac-pll.c │ │ ├── clk-fracn-gppll.c │ │ ├── clk-gate-93.c │ │ ├── clk-gate-exclusive.c │ │ ├── clk-gate2.c │ │ ├── clk-imx1.c │ │ ├── clk-imx21.c │ │ ├── clk-imx25.c │ │ ├── clk-imx27.c │ │ ├── clk-imx31.c │ │ ├── clk-imx35.c │ │ ├── clk-imx5.c │ │ ├── clk-imx6.c │ │ ├── clk-imx6sl.c │ │ ├── clk-imx6sx.c │ │ ├── clk-imx6ul.c │ │ ├── clk-imx7.c │ │ ├── clk-imx8mm.c │ │ ├── clk-imx8mn.c │ │ ├── clk-imx8mp.c │ │ ├── clk-imx8mq.c │ │ ├── clk-imx93.c │ │ ├── clk-pfd.c │ │ ├── clk-pll14xx.c │ │ ├── clk-pllv1.c │ │ ├── clk-pllv2.c │ │ ├── clk-pllv3.c │ │ ├── clk-sccg-pll.c │ │ ├── clk-vf610.c │ │ ├── clk.c │ │ └── clk.h │ ├── loongson │ │ ├── Makefile │ │ └── clk-ls1b200.c │ ├── mvebu │ │ ├── Makefile │ │ ├── armada-370.c │ │ ├── armada-38x.c │ │ ├── armada-xp.c │ │ ├── common.c │ │ ├── common.h │ │ ├── corediv.c │ │ ├── dove.c │ │ └── kirkwood.c │ ├── mxs │ │ ├── Makefile │ │ ├── clk-div.c │ │ ├── clk-frac.c │ │ ├── clk-imx23.c │ │ ├── clk-imx28.c │ │ ├── clk-lcdif.c │ │ ├── clk-pll.c │ │ ├── clk-ref.c │ │ └── clk.h │ ├── rockchip │ │ ├── Makefile │ │ ├── clk-cpu.c │ │ ├── clk-inverter.c │ │ ├── clk-mmc-phase.c │ │ ├── clk-muxgrf.c │ │ ├── clk-pll.c │ │ ├── clk-rk3188.c │ │ ├── clk-rk3288.c │ │ ├── clk-rk3399.c │ │ ├── clk-rk3568.c │ │ ├── clk-rk3588.c │ │ ├── clk.c │ │ ├── clk.h │ │ ├── rst-rk3588.c │ │ └── softrst.c │ ├── sifive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fu540-prci.c │ │ ├── fu540-prci.h │ │ ├── fu740-prci.c │ │ ├── fu740-prci.h │ │ ├── sifive-prci.c │ │ └── sifive-prci.h │ ├── socfpga │ │ ├── Makefile │ │ ├── clk-gate-a10.c │ │ ├── clk-periph-a10.c │ │ ├── clk-pll-a10.c │ │ ├── clk.c │ │ └── clk.h │ ├── starfive │ │ ├── Makefile │ │ ├── clk.h │ │ └── jh7100-clkgen.c │ ├── stm32 │ │ ├── Makefile │ │ ├── clk-stm32-core.c │ │ ├── clk-stm32-core.h │ │ ├── clk-stm32mp13.c │ │ ├── reset-stm32.c │ │ ├── reset-stm32.h │ │ └── stm32mp13_rcc.h │ ├── tegra │ │ ├── Makefile │ │ ├── clk-divider.c │ │ ├── clk-periph.c │ │ ├── clk-pll-out.c │ │ ├── clk-pll.c │ │ ├── clk-tegra124.c │ │ ├── clk-tegra20.c │ │ ├── clk-tegra30.c │ │ ├── clk.c │ │ └── clk.h │ ├── ti-sci-clk.c │ ├── vexpress │ │ ├── Makefile │ │ ├── clk-sp810.c │ │ └── clk-vexpress-osc.c │ ├── zynq │ │ ├── Makefile │ │ └── clkc.c │ └── zynqmp │ │ ├── Makefile │ │ ├── clk-divider-zynqmp.c │ │ ├── clk-gate-zynqmp.c │ │ ├── clk-mux-zynqmp.c │ │ ├── clk-pll-zynqmp.c │ │ ├── clk-zynqmp.h │ │ └── clkc.c ├── clocksource │ ├── Kconfig │ ├── Makefile │ ├── amba-sp804.c │ ├── arm_architected_timer.c │ ├── arm_global_timer.c │ ├── arm_smp_twd.c │ ├── armv7m_systick.c │ ├── bcm2835.c │ ├── clps711x.c │ ├── digic.c │ ├── dw_apb_timer.c │ ├── efi.c │ ├── efi_x86.c │ ├── kvx_timer.c │ ├── mvebu.c │ ├── nomadik.c │ ├── orion.c │ ├── rk_timer.c │ ├── timer-atmel-pit.c │ ├── timer-clint.c │ ├── timer-imx-gpt.c │ ├── timer-riscv.c │ ├── timer-stm32.c │ ├── timer-ti-32k.c │ ├── timer-ti-dm.c │ └── uemd.c ├── crypto │ ├── Kconfig │ ├── Makefile │ ├── caam │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── caam-blobgen.c │ │ ├── caamrng.c │ │ ├── ctrl.c │ │ ├── ctrl.h │ │ ├── desc.h │ │ ├── desc_constr.h │ │ ├── detect.h │ │ ├── error.c │ │ ├── error.h │ │ ├── intern.h │ │ ├── jr.c │ │ ├── jr.h │ │ ├── pbl-init.c │ │ ├── regs.h │ │ ├── rng_self_test.c │ │ └── rng_self_test.h │ └── imx-scc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── scc-blobgen.c │ │ ├── scc.c │ │ └── scc.h ├── ddr │ ├── Kconfig │ ├── Makefile │ ├── fsl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arm_ddr_gen3.c │ │ ├── ctrl_regs.c │ │ ├── fsl_ddr.h │ │ ├── fsl_ddr_gen4.c │ │ ├── lc_common_dimm_params.c │ │ ├── main.c │ │ ├── options.c │ │ └── util.c │ └── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ddrphy_csr.c │ │ ├── ddrphy_train.c │ │ ├── ddrphy_utils.c │ │ ├── helper.c │ │ ├── imx8m_ddr_init.c │ │ └── imx9_ddr_init.c ├── dma │ ├── Kconfig │ ├── Makefile │ ├── apbh_dma.c │ ├── debug.c │ ├── debug.h │ ├── map.c │ └── of_fixups.c ├── eeprom │ ├── Kconfig │ ├── Makefile │ ├── at24.c │ └── at25.c ├── efi │ ├── Makefile │ ├── efi-device.c │ └── efi-handle.c ├── firmware │ ├── Kconfig │ ├── Makefile │ ├── altera_serial.c │ ├── arm_scmi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── base.c │ │ ├── bus.c │ │ ├── clock.c │ │ ├── common.h │ │ ├── driver.c │ │ ├── msg.c │ │ ├── optee.c │ │ ├── power.c │ │ ├── protocols.h │ │ ├── reset.c │ │ ├── scmi_pm_domain.c │ │ ├── sensors.c │ │ ├── shmem.c │ │ ├── smc.c │ │ └── voltage.c │ ├── qemu_fw_cfg.c │ ├── socfpga.c │ ├── socfpga_sdr.S │ ├── ti_sci.c │ ├── ti_sci.h │ └── zynqmp-fpga.c ├── fpga │ ├── Kconfig │ ├── Makefile │ ├── fpga-bridge.c │ ├── socfpga-fpga2sdram-bridge.c │ └── socfpga-hps2fpga-bridge.c ├── gpio │ ├── Kconfig │ ├── Makefile │ ├── gpio-74164.c │ ├── gpio-74xx-mmio.c │ ├── gpio-ath79.c │ ├── gpio-clps711x.c │ ├── gpio-davinci.c │ ├── gpio-digic.c │ ├── gpio-dw.c │ ├── gpio-generic.c │ ├── gpio-imx.c │ ├── gpio-intel.c │ ├── gpio-jz4740.c │ ├── gpio-latch.c │ ├── gpio-libftdi1.c │ ├── gpio-malta-fpga-i2c.c │ ├── gpio-mpc8xxx.c │ ├── gpio-mxs.c │ ├── gpio-omap.c │ ├── gpio-orion.c │ ├── gpio-pca953x.c │ ├── gpio-pcf857x.c │ ├── gpio-pl061.c │ ├── gpio-raspberrypi-exp.c │ ├── gpio-rockchip.c │ ├── gpio-sifive.c │ ├── gpio-starfive-vic.c │ ├── gpio-stmpe.c │ ├── gpio-sx150x.c │ ├── gpio-tegra.c │ ├── gpio-vf610.c │ ├── gpio-zynq.c │ └── gpiolib.c ├── hab │ ├── Makefile │ ├── hab.c │ ├── hab.h │ ├── habv3.c │ └── habv4.c ├── hw_random │ ├── Kconfig │ ├── Makefile │ ├── atmel-rng.c │ ├── bcm2835-rng.c │ ├── core.c │ ├── dev-random.c │ ├── efi-rng.c │ ├── iproc-rng200.c │ ├── mxc-rngc.c │ ├── omap-rng.c │ ├── optee-rng.c │ ├── rockchip-rng.c │ ├── starfive-vic-rng.c │ ├── stm32-rng.c │ ├── timeriomem-rng.c │ └── virtio-rng.c ├── i2c │ ├── Kconfig │ ├── Makefile │ ├── algos │ │ ├── Kconfig │ │ ├── Makefile │ │ └── i2c-algo-bit.c │ ├── busses │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── i2c-at91.c │ │ ├── i2c-bcm283x.c │ │ ├── i2c-cadence.c │ │ ├── i2c-designware.c │ │ ├── i2c-efi.c │ │ ├── i2c-gpio.c │ │ ├── i2c-imx-early.c │ │ ├── i2c-imx-lpi2c.c │ │ ├── i2c-imx.c │ │ ├── i2c-imx.h │ │ ├── i2c-mv64xxx.c │ │ ├── i2c-omap.c │ │ ├── i2c-rockchip.c │ │ ├── i2c-stm32.c │ │ ├── i2c-tegra.c │ │ └── i2c-versatile.c │ ├── i2c-mux.c │ ├── i2c-smbus.c │ ├── i2c.c │ └── muxes │ │ ├── Kconfig │ │ ├── Makefile │ │ └── i2c-mux-pca954x.c ├── input │ ├── Kconfig │ ├── Makefile │ ├── gpio_keys.c │ ├── imx_keypad.c │ ├── input.c │ ├── keymap.c │ ├── matrix-keymap.c │ ├── qt1070.c │ ├── specialkeys.c │ ├── twl6030_pwrbtn.c │ ├── usb_kbd.c │ └── virtio_input.c ├── led │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── led-gpio.c │ ├── led-pca955x.c │ ├── led-pwm.c │ └── led-triggers.c ├── mailbox │ ├── Kconfig │ ├── Makefile │ ├── mailbox.c │ └── ti-msgmgr.c ├── mci │ ├── Kconfig │ ├── Makefile │ ├── am654-sdhci.c │ ├── arasan-sdhci.c │ ├── atmel-mci-regs.h │ ├── atmel-sdhci-common.c │ ├── atmel-sdhci-pbl.c │ ├── atmel-sdhci.c │ ├── atmel-sdhci.h │ ├── atmel_mci.c │ ├── atmel_mci_common.c │ ├── atmel_mci_pbl.c │ ├── bcm2835-sdhost.c │ ├── dove-sdhci.c │ ├── dw_mmc.c │ ├── dw_mmc.h │ ├── dwcmshc-sdhci.c │ ├── imx-esdhc-common.c │ ├── imx-esdhc-pbl.c │ ├── imx-esdhc.c │ ├── imx-esdhc.h │ ├── imx.c │ ├── mci-bcm2835.c │ ├── mci-bcm2835.h │ ├── mci-core.c │ ├── mci_spi.c │ ├── mmci.c │ ├── mmci.h │ ├── mxs.c │ ├── omap_hsmmc.c │ ├── pxamci.c │ ├── pxamci.h │ ├── rockchip-dwcmshc-sdhci.c │ ├── sdhci.c │ ├── sdhci.h │ ├── stm32_sdmmc2.c │ └── tegra-sdmmc.c ├── memory │ ├── Kconfig │ ├── Makefile │ ├── atmel-ebi.c │ ├── mc-tegra124.c │ └── stm32-fmc2-ebi.c ├── mfd │ ├── Kconfig │ ├── Makefile │ ├── act8846.c │ ├── atmel-flexcom.c │ ├── atmel-smc.c │ ├── axp20x-i2c.c │ ├── axp20x.c │ ├── core.c │ ├── da9053.c │ ├── da9063.c │ ├── fintek-superio.c │ ├── lp3972.c │ ├── mc13xxx.c │ ├── mc34704.c │ ├── mc9sdz60.c │ ├── pca9450.c │ ├── rave-sp.c │ ├── rk808.c │ ├── rn5t568.c │ ├── rohm-bd718x7.c │ ├── smsc-superio.c │ ├── stm32-timers.c │ ├── stmpe-i2c.c │ ├── stpmic1.c │ ├── superio.c │ ├── syscon.c │ ├── twl-core.c │ ├── twl4030.c │ └── twl6030.c ├── misc │ ├── Kconfig │ ├── Makefile │ ├── jtag.c │ ├── mem.c │ ├── sram.c │ ├── starfive-pwrseq.c │ ├── state.c │ ├── storage-by-uuid.c │ └── ubootvar.c ├── mtd │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── devices │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── docg3.c │ │ ├── docg3.h │ │ ├── m25p80.c │ │ ├── mtd_dataflash.c │ │ └── mtdram.c │ ├── mtd.h │ ├── mtdconcat.c │ ├── mtdoob.c │ ├── mtdraw.c │ ├── nand │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bbt.c │ │ ├── core.c │ │ ├── ecc-sw-bch.c │ │ ├── ecc-sw-hamming.c │ │ ├── ecc.c │ │ ├── nand-bb.c │ │ └── raw │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── atmel │ │ │ ├── Makefile │ │ │ ├── atmel_nand_ecc.h │ │ │ ├── legacy.c │ │ │ ├── nand-controller.c │ │ │ ├── pmecc.c │ │ │ └── pmecc.h │ │ │ ├── denali.h │ │ │ ├── fsl_ifc.h │ │ │ ├── internals.h │ │ │ ├── mxc_nand.c │ │ │ ├── nand_amd.c │ │ │ ├── nand_base.c │ │ │ ├── nand_bbt.c │ │ │ ├── nand_denali.c │ │ │ ├── nand_denali_dt.c │ │ │ ├── nand_ecc.c │ │ │ ├── nand_esmt.c │ │ │ ├── nand_fsl_ifc.c │ │ │ ├── nand_hynix.c │ │ │ ├── nand_ids.c │ │ │ ├── nand_jedec.c │ │ │ ├── nand_legacy.c │ │ │ ├── nand_macronix.c │ │ │ ├── nand_micron.c │ │ │ ├── nand_mrvl_nfc.c │ │ │ ├── nand_mxs.c │ │ │ ├── nand_omap_bch_decoder.c │ │ │ ├── nand_omap_bch_decoder.h │ │ │ ├── nand_omap_gpmc.c │ │ │ ├── nand_onfi.c │ │ │ ├── nand_orion.c │ │ │ ├── nand_samsung.c │ │ │ ├── nand_timings.c │ │ │ ├── nand_toshiba.c │ │ │ ├── nomadik_nand.c │ │ │ ├── omap_elm.c │ │ │ └── stm32_fmc2_nand.c │ ├── nor │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cfi_flash.c │ │ ├── cfi_flash.h │ │ ├── cfi_flash_amd.c │ │ └── cfi_flash_intel.c │ ├── partition.c │ ├── peb.c │ ├── spi-nor │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cadence-quadspi.c │ │ ├── dw-ospi-nor.c │ │ └── spi-nor.c │ └── ubi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── attach.c │ │ ├── barebox.c │ │ ├── build.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── eba.c │ │ ├── fastmap-wl.c │ │ ├── fastmap.c │ │ ├── io.c │ │ ├── kapi.c │ │ ├── misc.c │ │ ├── ubi-barebox.h │ │ ├── ubi-media.h │ │ ├── ubi.h │ │ ├── upd.c │ │ ├── vmt.c │ │ ├── vtbl.c │ │ ├── wl.c │ │ └── wl.h ├── net │ ├── Kconfig │ ├── Makefile │ ├── ag71xx.c │ ├── ar231x.c │ ├── ar231x.h │ ├── arc_emac.c │ ├── at91_ether.c │ ├── at91_ether.h │ ├── bcmgenet.c │ ├── cpsw.c │ ├── cs8900.c │ ├── davinci_emac.c │ ├── davinci_emac.h │ ├── designware.c │ ├── designware.h │ ├── designware_eqos.c │ ├── designware_eqos.h │ ├── designware_generic.c │ ├── designware_imx.c │ ├── designware_rockchip.c │ ├── designware_socfpga.c │ ├── designware_starfive.c │ ├── designware_stm32.c │ ├── designware_tegra186.c │ ├── dm9k.c │ ├── dsa.c │ ├── e1000 │ │ ├── Makefile │ │ ├── e1000.h │ │ ├── eeprom.c │ │ ├── main.c │ │ ├── mtd.c │ │ └── regio.c │ ├── efi-snp.c │ ├── enc28j60.c │ ├── enc28j60_hw.h │ ├── ep93xx.c │ ├── ep93xx.h │ ├── ethoc.c │ ├── fec_imx.c │ ├── fec_imx.h │ ├── fec_mpc5200.c │ ├── fec_mpc5200.h │ ├── fsl-fman.c │ ├── fsl_enetc.c │ ├── fsl_enetc.h │ ├── fsl_enetc_mdio.c │ ├── gianfar.c │ ├── gianfar.h │ ├── ks8851_mll.c │ ├── ksz8864rmn.c │ ├── ksz8873.c │ ├── ksz9477.c │ ├── ksz_common.h │ ├── liteeth.c │ ├── macb.c │ ├── macb.h │ ├── mvneta.c │ ├── orion-gbe.c │ ├── orion-gbe.h │ ├── phy │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ar8327.c │ │ ├── at803x.c │ │ ├── davicom.c │ │ ├── dp83867.c │ │ ├── dp83td510.c │ │ ├── dp83tg720.c │ │ ├── lxt.c │ │ ├── marvell.c │ │ ├── mdio-bitbang.c │ │ ├── mdio-gpio.c │ │ ├── mdio-mux-gpio.c │ │ ├── mdio-mux.c │ │ ├── mdio-mvebu.c │ │ ├── mdio_bus.c │ │ ├── micrel.c │ │ ├── motorcomm.c │ │ ├── mv88e6xxx │ │ │ ├── Makefile │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── global1.c │ │ │ ├── global1.h │ │ │ ├── global2.c │ │ │ ├── global2.h │ │ │ ├── port.c │ │ │ └── port.h │ │ ├── national.c │ │ ├── phy-core.c │ │ ├── phy.c │ │ ├── realtek.c │ │ └── smsc.c │ ├── r8169.h │ ├── r8169_firmware.c │ ├── r8169_firmware.h │ ├── r8169_main.c │ ├── r8169_phy_config.c │ ├── realtek-dsa │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dsa_priv.h │ │ ├── realtek-mdio.c │ │ ├── realtek-smi.c │ │ ├── realtek.h │ │ ├── rtl8365mb.c │ │ ├── rtl8366rb.c │ │ ├── tag_rtl4_a.c │ │ ├── tag_rtl8_4.c │ │ └── tagger.c │ ├── rtl8139.c │ ├── sja1105.c │ ├── smc91111.c │ ├── smc911x.c │ ├── smc911x.h │ ├── tap.c │ ├── usb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── asix.c │ │ ├── ax88179_178a.c │ │ ├── r8152.c │ │ ├── r8152.h │ │ ├── r8152_fw.c │ │ ├── smsc95xx.c │ │ ├── smsc95xx.h │ │ └── usbnet.c │ └── virtio.c ├── nvme │ ├── Kconfig │ ├── Makefile │ └── host │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── nvme.h │ │ └── pci.c ├── nvmem │ ├── Kconfig │ ├── Makefile │ ├── bsec.c │ ├── core.c │ ├── eeprom_93xx46.c │ ├── imx-ocotp-ele.c │ ├── kvx-otp-nv.c │ ├── ocotp.c │ ├── partition.c │ ├── rave-sp-eeprom.c │ ├── regmap.c │ ├── rmem.c │ ├── rockchip-otp.c │ ├── snvs_lpgpr.c │ ├── starfive-otp.c │ ├── stm32-bsec-optee-ta.c │ └── stm32-bsec-optee-ta.h ├── of │ ├── Kconfig │ ├── Makefile │ ├── address.c │ ├── barebox.c │ ├── base.c │ ├── device.c │ ├── fdt.c │ ├── mem_generic.c │ ├── of_firmware.c │ ├── of_gpio.c │ ├── of_mtd.c │ ├── of_net.c │ ├── of_path.c │ ├── of_pci.c │ ├── overlay.c │ ├── partition.c │ ├── platform.c │ ├── reserved-mem.c │ └── resolver.c ├── pci │ ├── Kconfig │ ├── Makefile │ ├── bus.c │ ├── host-bridge.c │ ├── of.c │ ├── pci-ecam-generic.c │ ├── pci-efi.c │ ├── pci-efi.h │ ├── pci-imx6.c │ ├── pci-layerscape.c │ ├── pci-mvebu-phy.c │ ├── pci-mvebu.c │ ├── pci-mvebu.h │ ├── pci-tegra.c │ ├── pci.c │ ├── pci_iomap.c │ ├── pcie-designware-host.c │ ├── pcie-designware.c │ ├── pcie-designware.h │ └── pcie-dw-rockchip.c ├── phy │ ├── Kconfig │ ├── Makefile │ ├── freescale │ │ ├── Kconfig │ │ ├── Makefile │ │ └── phy-fsl-imx8mq-usb.c │ ├── phy-core.c │ ├── phy-stm32-usbphyc.c │ ├── rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── phy-rockchip-inno-usb2.c │ │ ├── phy-rockchip-naneng-combphy.c │ │ └── phy-rockchip-snps-pcie3.c │ └── usb-nop-xceiv.c ├── pinctrl │ ├── Kconfig │ ├── Makefile │ ├── imx-iomux-v1.c │ ├── imx-iomux-v2.c │ ├── imx-iomux-v3.c │ ├── mvebu │ │ ├── Makefile │ │ ├── armada-370.c │ │ ├── armada-xp.c │ │ ├── common.c │ │ ├── common.h │ │ ├── dove.c │ │ └── kirkwood.c │ ├── pinctrl-at91-pio4.c │ ├── pinctrl-at91.c │ ├── pinctrl-bcm2835.c │ ├── pinctrl-mxs.c │ ├── pinctrl-rockchip.c │ ├── pinctrl-rockchip.h │ ├── pinctrl-single.c │ ├── pinctrl-stm32.c │ ├── pinctrl-tegra-xusb.c │ ├── pinctrl-tegra20.c │ ├── pinctrl-tegra30.c │ ├── pinctrl-vf610.c │ └── pinctrl.c ├── pmdomain │ ├── Kconfig │ ├── Makefile │ ├── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── gpcv2.c │ │ └── imx8mp-blk-ctrl.c │ └── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ └── ti_sci_pm_domains.c ├── power │ ├── Kconfig │ ├── Makefile │ └── reset │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── gpio-poweroff.c │ │ ├── gpio-restart.c │ │ ├── htif-poweroff.c │ │ ├── nvmem-reboot-mode.c │ │ ├── reboot-mode.c │ │ ├── stm32-reboot.c │ │ ├── syscon-poweroff.c │ │ ├── syscon-reboot-mode.c │ │ └── syscon-reboot.c ├── pwm │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── pwm-atmel.c │ ├── pwm-imx.c │ ├── pwm-mxs.c │ ├── pwm-rockchip.c │ ├── pwm-stm32.c │ └── pxa_pwm.c ├── regulator │ ├── Kconfig │ ├── Makefile │ ├── anatop-regulator.c │ ├── bcm2835.c │ ├── core.c │ ├── fixed.c │ ├── helpers.c │ ├── of_regulator.c │ ├── pfuze.c │ ├── rk808-regulator.c │ ├── scmi-regulator.c │ ├── stm32-pwr.c │ ├── stm32-vrefbuf.c │ └── stpmic1_regulator.c ├── remoteproc │ ├── Kconfig │ ├── Makefile │ ├── imx_rproc.c │ ├── remoteproc_core.c │ ├── remoteproc_elf_loader.c │ ├── remoteproc_internal.h │ └── stm32_rproc.c ├── reset │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── reset-imx7.c │ ├── reset-scmi.c │ ├── reset-simple.c │ ├── reset-socfpga.c │ └── reset-starfive-vic.c ├── rtc │ ├── Kconfig │ ├── Makefile │ ├── class.c │ ├── rtc-abracon.c │ ├── rtc-ds1307.c │ ├── rtc-imxdi.c │ ├── rtc-jz4740.c │ ├── rtc-lib.c │ └── rtc-pcf85363.c ├── serial │ ├── Kconfig │ ├── Makefile │ ├── amba-pl011.c │ ├── arm_dcc.c │ ├── atmel.c │ ├── efi-stdio.c │ ├── linux_console.c │ ├── serial_ar933x.c │ ├── serial_ar933x.h │ ├── serial_auart.c │ ├── serial_cadence.c │ ├── serial_clps711x.c │ ├── serial_digic.c │ ├── serial_efi.c │ ├── serial_imx.c │ ├── serial_litex.c │ ├── serial_lpuart.c │ ├── serial_lpuart32.c │ ├── serial_mpc5xxx.c │ ├── serial_ns16550.c │ ├── serial_ns16550.h │ ├── serial_ns16550_pci.c │ ├── serial_omap4_usbboot.c │ ├── serial_pl010.c │ ├── serial_pl010.h │ ├── serial_pxa.c │ ├── serial_sbi.c │ ├── serial_sifive.c │ ├── serial_stm32.c │ ├── serial_stm32.h │ ├── stm-serial.c │ └── virtio_console.c ├── soc │ ├── Kconfig │ ├── Makefile │ ├── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── imx8m-featctrl.c │ │ └── soc-imx8m.c │ ├── kvx │ │ ├── Kconfig │ │ ├── Makefile │ │ └── kvx_socinfo.c │ ├── rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ └── io-domain.c │ ├── sifive │ │ ├── Makefile │ │ └── sifive_l2_cache.c │ └── starfive │ │ ├── Makefile │ │ └── jh7100_dma.c ├── sound │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── gpio-beeper.c │ ├── pwm-beeper.c │ ├── sdl.c │ └── synth.c ├── spi │ ├── Kconfig │ ├── Makefile │ ├── ath79_spi.c │ ├── atmel-quadspi.c │ ├── atmel_spi.c │ ├── atmel_spi.h │ ├── dspi_spi.c │ ├── gpio_spi.c │ ├── imx_spi.c │ ├── litex_spiflash.c │ ├── mvebu_spi.c │ ├── mxs_spi.c │ ├── omap3_spi.c │ ├── omap3_spi.h │ ├── spi-bitbang-txrx.h │ ├── spi-fsl-dspi.c │ ├── spi-fsl-qspi.c │ ├── spi-mem.c │ ├── spi-nxp-fspi.c │ ├── spi-sifive.c │ ├── spi.c │ ├── stm32_spi.c │ └── zynq_qspi.c ├── tee │ ├── Kconfig │ ├── Makefile │ ├── optee │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── call.c │ │ ├── core.c │ │ ├── device.c │ │ ├── of_fixup.c │ │ ├── optee_msg.h │ │ ├── optee_private.h │ │ ├── optee_smc.h │ │ ├── rpc.c │ │ └── smc_abi.c │ ├── tee_core.c │ ├── tee_private.h │ └── tee_shm.c ├── usb │ ├── Kconfig │ ├── Makefile │ ├── core │ │ ├── Makefile │ │ ├── common.c │ │ ├── hub.c │ │ ├── of.c │ │ ├── usb.c │ │ └── usb.h │ ├── dwc2 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── core.h │ │ ├── dwc2.c │ │ ├── dwc2.h │ │ ├── gadget.c │ │ ├── host.c │ │ ├── regs.h │ │ └── rhub.c │ ├── dwc3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── core.h │ │ ├── debug.h │ │ ├── dwc3-of-simple.c │ │ ├── ep0.c │ │ ├── gadget.c │ │ ├── gadget.h │ │ ├── host.c │ │ └── io.h │ ├── gadget │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── composite.c │ │ ├── config.c │ │ ├── epautoconf.c │ │ ├── function │ │ │ ├── Makefile │ │ │ ├── dfu.c │ │ │ ├── f_acm.c │ │ │ ├── f_fastboot.c │ │ │ ├── f_mass_storage.c │ │ │ ├── f_serial.c │ │ │ ├── storage_common.c │ │ │ ├── storage_common.h │ │ │ ├── u_serial.c │ │ │ └── u_serial.h │ │ ├── functions.c │ │ ├── legacy │ │ │ ├── Makefile │ │ │ ├── multi.c │ │ │ └── serial.c │ │ ├── u_os_desc.h │ │ ├── udc │ │ │ ├── Makefile │ │ │ ├── at91_udc.c │ │ │ ├── at91_udc.h │ │ │ ├── core.c │ │ │ ├── fsl_udc.c │ │ │ ├── pxa27x_udc.c │ │ │ └── pxa27x_udc.h │ │ └── usbstring.c │ ├── host │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ehci-atmel.c │ │ ├── ehci-core.h │ │ ├── ehci-hcd.c │ │ ├── ehci-omap.c │ │ ├── ehci.h │ │ ├── ohci-at91.c │ │ ├── ohci-hcd.c │ │ ├── ohci.h │ │ ├── xhci-mem.c │ │ ├── xhci-ring.c │ │ ├── xhci.c │ │ └── xhci.h │ ├── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── chipidea-imx.c │ │ ├── imx-usb-misc.c │ │ └── imx-usb-phy.c │ ├── misc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── onboard_usb_hub.c │ │ ├── onboard_usb_hub.h │ │ └── usb251xb.c │ ├── musb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am35x-phy-control.h │ │ ├── musb_am335x.c │ │ ├── musb_barebox.c │ │ ├── musb_core.c │ │ ├── musb_core.h │ │ ├── musb_dma.h │ │ ├── musb_dsps.c │ │ ├── musb_gadget.c │ │ ├── musb_gadget.h │ │ ├── musb_gadget_ep0.c │ │ ├── musb_host.c │ │ ├── musb_host.h │ │ ├── musb_io.h │ │ ├── musb_regs.h │ │ ├── phy-am335x-control.c │ │ └── phy-am335x.c │ ├── otg │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── otgdev.c │ │ ├── twl4030.c │ │ └── ulpi.c │ ├── storage │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── transport.c │ │ ├── transport.h │ │ ├── usb.c │ │ └── usb.h │ └── typec │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── class.c │ │ └── tusb320.c ├── video │ ├── Kconfig │ ├── Makefile │ ├── atmel_hlcdfb.c │ ├── atmel_lcdfb.c │ ├── atmel_lcdfb.h │ ├── atmel_lcdfb_core.c │ ├── backlight-pwm.c │ ├── backlight.c │ ├── bcm2835.c │ ├── bochs │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bochs_hw.c │ │ ├── bochs_hw.h │ │ ├── bochs_isa.c │ │ └── bochs_pci.c │ ├── edid.c │ ├── edid.h │ ├── efi_gop.c │ ├── fb.c │ ├── fbconsole.c │ ├── imx-ipu-fb.c │ ├── imx-ipu-v3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── imx-hdmi.c │ │ ├── imx-hdmi.h │ │ ├── imx-ipu-v3.h │ │ ├── imx-ldb.c │ │ ├── imx-pd.c │ │ ├── ipu-common.c │ │ ├── ipu-dc.c │ │ ├── ipu-di.c │ │ ├── ipu-dmfc.c │ │ ├── ipu-dp.c │ │ ├── ipu-prv.h │ │ ├── ipufb.c │ │ ├── ipuv3-plane.c │ │ └── ipuv3-plane.h │ ├── imx.c │ ├── mipi_dbi.c │ ├── mtl017.c │ ├── of_display_timing.c │ ├── omap.c │ ├── omap.h │ ├── panel-ilitek-ili9341.c │ ├── panel-mipi-dbi.c │ ├── pxa.c │ ├── ramfb.c │ ├── rave-sp-backlight.c │ ├── sdl.c │ ├── simple-panel.c │ ├── simplefb-client.c │ ├── simplefb-fixup.c │ ├── ssd1307fb.c │ ├── stm.c │ ├── stm32_ltdc.c │ ├── stm32_ltdc.h │ ├── tc358767.c │ └── vpl.c ├── virtio │ ├── Kconfig │ ├── Makefile │ ├── virtio.c │ ├── virtio_mmio.c │ ├── virtio_pci_common.c │ ├── virtio_pci_common.h │ ├── virtio_pci_modern.c │ └── virtio_ring.c ├── w1 │ ├── Kconfig │ ├── Makefile │ ├── masters │ │ ├── Kconfig │ │ ├── Makefile │ │ └── w1-gpio.c │ ├── slaves │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── w1_ds2431.c │ │ └── w1_ds2433.c │ ├── w1.c │ └── w1.h └── watchdog │ ├── Kconfig │ ├── Makefile │ ├── ar9344_wdt.c │ ├── at91sam9_wdt.c │ ├── bcm2835_wdt.c │ ├── cadence_wdt.c │ ├── davinci_wdt.c │ ├── dw_wdt.c │ ├── efi_wdt.c │ ├── f71808e_wdt.c │ ├── gpio_wdt.c │ ├── im28wd.c │ ├── imxulp-wdt.c │ ├── imxwd.c │ ├── itco_wdt.c │ ├── jz4740.c │ ├── kvx_wdt.c │ ├── omap_wdt.c │ ├── orion_wdt.c │ ├── rave-sp-wdt.c │ ├── rn5t568_wdt.c │ ├── starfive_wdt.c │ ├── stm32_iwdg.c │ ├── stpmic1_wdt.c │ ├── wd_core.c │ └── wdat_wdt.c ├── dts ├── Bindings │ ├── .gitignore │ ├── .yamllint │ ├── ABI.rst │ ├── Makefile │ ├── arc │ │ ├── archs-pct.txt │ │ ├── axs101.txt │ │ ├── axs103.txt │ │ ├── eznps.txt │ │ ├── hsdk.txt │ │ └── pct.txt │ ├── arm │ │ ├── actions.yaml │ │ ├── airoha.yaml │ │ ├── altera.yaml │ │ ├── altera │ │ │ ├── socfpga-clk-manager.yaml │ │ │ ├── socfpga-sdram-controller.txt │ │ │ ├── socfpga-sdram-edac.txt │ │ │ └── socfpga-system.txt │ │ ├── amazon,al.yaml │ │ ├── amd,pensando.yaml │ │ ├── amlogic.yaml │ │ ├── amlogic │ │ │ ├── amlogic,meson-gx-ao-secure.yaml │ │ │ ├── amlogic,meson-mx-secbus2.yaml │ │ │ ├── analog-top.txt │ │ │ ├── assist.txt │ │ │ ├── bootrom.txt │ │ │ └── pmu.txt │ │ ├── apm │ │ │ └── scu.txt │ │ ├── apple.yaml │ │ ├── apple │ │ │ └── apple,pmgr.yaml │ │ ├── arm,cci-400.yaml │ │ ├── arm,coresight-catu.yaml │ │ ├── arm,coresight-cpu-debug.yaml │ │ ├── arm,coresight-cti.yaml │ │ ├── arm,coresight-dummy-sink.yaml │ │ ├── arm,coresight-dummy-source.yaml │ │ ├── arm,coresight-dynamic-funnel.yaml │ │ ├── arm,coresight-dynamic-replicator.yaml │ │ ├── arm,coresight-etb10.yaml │ │ ├── arm,coresight-etm.yaml │ │ ├── arm,coresight-static-funnel.yaml │ │ ├── arm,coresight-static-replicator.yaml │ │ ├── arm,coresight-stm.yaml │ │ ├── arm,coresight-tmc.yaml │ │ ├── arm,coresight-tpiu.yaml │ │ ├── arm,corstone1000.yaml │ │ ├── arm,embedded-trace-extension.yaml │ │ ├── arm,integrator.yaml │ │ ├── arm,realview.yaml │ │ ├── arm,scu.yaml │ │ ├── arm,trace-buffer-extension.yaml │ │ ├── arm,versatile-sysreg.yaml │ │ ├── arm,versatile.yaml │ │ ├── arm,vexpress-juno.yaml │ │ ├── aspeed │ │ │ ├── aspeed,sbc.yaml │ │ │ └── aspeed.yaml │ │ ├── atmel-at91.yaml │ │ ├── atmel-sysregs.txt │ │ ├── axis.txt │ │ ├── axxia.yaml │ │ ├── bcm │ │ │ ├── bcm2835.yaml │ │ │ ├── brcm,bcm11351.yaml │ │ │ ├── brcm,bcm21664.yaml │ │ │ ├── brcm,bcm23550.yaml │ │ │ ├── brcm,bcm4708.yaml │ │ │ ├── brcm,bcm53573.yaml │ │ │ ├── brcm,bcm63138.txt │ │ │ ├── brcm,bcmbca.yaml │ │ │ ├── brcm,brcmstb.txt │ │ │ ├── brcm,cygnus.yaml │ │ │ ├── brcm,hr2.yaml │ │ │ ├── brcm,ns2.yaml │ │ │ ├── brcm,nsp.yaml │ │ │ ├── brcm,stingray.yaml │ │ │ ├── brcm,vulcan-soc.yaml │ │ │ └── raspberrypi,bcm2835-firmware.yaml │ │ ├── bitmain.yaml │ │ ├── calxeda.yaml │ │ ├── calxeda │ │ │ ├── hb-sregs.yaml │ │ │ └── l2ecc.yaml │ │ ├── cavium-thunder.txt │ │ ├── cavium-thunder2.txt │ │ ├── cci-control-port.yaml │ │ ├── cpu-enable-method │ │ │ ├── al,alpine-smp │ │ │ ├── marvell,berlin-smp │ │ │ └── nuvoton,npcm750-smp │ │ ├── cpus.yaml │ │ ├── digicolor.yaml │ │ ├── firmware │ │ │ ├── linaro,optee-tz.yaml │ │ │ ├── sdei.txt │ │ │ └── tlm,trusted-foundations.yaml │ │ ├── freescale │ │ │ ├── fsl,imx7ulp-pm.yaml │ │ │ ├── fsl,imx7ulp-sim.yaml │ │ │ ├── fsl,vf610-mscm-cpucfg.txt │ │ │ ├── fsl,vf610-mscm-ir.txt │ │ │ ├── m4if.txt │ │ │ └── tigerp.txt │ │ ├── fsl.yaml │ │ ├── gemini.yaml │ │ ├── google.yaml │ │ ├── hisilicon │ │ │ ├── controller │ │ │ │ ├── cpuctrl.yaml │ │ │ │ ├── hi3798cv200-perictrl.yaml │ │ │ │ ├── hi6220-domain-ctrl.yaml │ │ │ │ ├── hip04-bootwrapper.yaml │ │ │ │ ├── hip04-fabric.yaml │ │ │ │ ├── pctrl.yaml │ │ │ │ └── sysctrl.yaml │ │ │ ├── hisilicon.yaml │ │ │ └── low-pin-count.yaml │ │ ├── hpe,gxp.yaml │ │ ├── intel,keembay.yaml │ │ ├── intel,socfpga.yaml │ │ ├── intel-ixp4xx.yaml │ │ ├── keystone │ │ │ ├── keystone.txt │ │ │ ├── ti,k3-sci-common.yaml │ │ │ └── ti,sci.yaml │ │ ├── linux,dummy-virt.yaml │ │ ├── marvell │ │ │ ├── 98dx3236-resume-ctrl.txt │ │ │ ├── 98dx3236.txt │ │ │ ├── ap80x-system-controller.txt │ │ │ ├── armada-370-xp-pmsu.txt │ │ │ ├── armada-370-xp.txt │ │ │ ├── armada-375.txt │ │ │ ├── armada-37xx.txt │ │ │ ├── armada-37xx.yaml │ │ │ ├── armada-380-mpcore-soc-ctrl.txt │ │ │ ├── armada-38x.yaml │ │ │ ├── armada-39x.txt │ │ │ ├── armada-7k-8k.yaml │ │ │ ├── armada-8kp.txt │ │ │ ├── armada-cpu-reset.txt │ │ │ ├── coherency-fabric.txt │ │ │ ├── cp110-system-controller.txt │ │ │ ├── kirkwood.txt │ │ │ ├── marvell,ac5.yaml │ │ │ ├── marvell,dove.txt │ │ │ ├── marvell,kirkwood.txt │ │ │ ├── marvell,orion5x.txt │ │ │ ├── mvebu-cpu-config.txt │ │ │ └── mvebu-system-controller.txt │ │ ├── mediatek.yaml │ │ ├── mediatek │ │ │ ├── mediatek,audsys.yaml │ │ │ ├── mediatek,bdpsys.txt │ │ │ ├── mediatek,camsys.txt │ │ │ ├── mediatek,g3dsys.txt │ │ │ ├── mediatek,imgsys.txt │ │ │ ├── mediatek,infracfg.yaml │ │ │ ├── mediatek,ipesys.txt │ │ │ ├── mediatek,ipu.txt │ │ │ ├── mediatek,jpgdecsys.txt │ │ │ ├── mediatek,mcucfg.txt │ │ │ ├── mediatek,mfgcfg.txt │ │ │ ├── mediatek,mipi0a.txt │ │ │ ├── mediatek,mmsys.yaml │ │ │ ├── mediatek,mt7622-pcie-mirror.yaml │ │ │ ├── mediatek,mt7622-wed.yaml │ │ │ ├── mediatek,mt7986-wed-pcie.yaml │ │ │ ├── mediatek,mt8186-clock.yaml │ │ │ ├── mediatek,mt8186-sys-clock.yaml │ │ │ ├── mediatek,mt8192-clock.yaml │ │ │ ├── mediatek,mt8192-sys-clock.yaml │ │ │ ├── mediatek,mt8195-clock.yaml │ │ │ ├── mediatek,mt8195-sys-clock.yaml │ │ │ ├── mediatek,pericfg.yaml │ │ │ ├── mediatek,vcodecsys.txt │ │ │ ├── mediatek,vdecsys.txt │ │ │ ├── mediatek,vencltsys.txt │ │ │ └── mediatek,vencsys.txt │ │ ├── microchip,sparx5.yaml │ │ ├── moxart.yaml │ │ ├── mrvl │ │ │ └── mrvl.yaml │ │ ├── mstar │ │ │ ├── mstar,l3bridge.yaml │ │ │ ├── mstar,smpctrl.yaml │ │ │ └── mstar.yaml │ │ ├── nuvoton │ │ │ ├── nuvoton,ma35d1.yaml │ │ │ └── nuvoton,npcm.yaml │ │ ├── nvidia,tegra194-ccplex.yaml │ │ ├── nxp │ │ │ └── lpc32xx.yaml │ │ ├── omap │ │ │ ├── counter.txt │ │ │ ├── crossbar.txt │ │ │ ├── ctrl.txt │ │ │ ├── dmm.txt │ │ │ ├── dsp.txt │ │ │ ├── iva.txt │ │ │ ├── l3-noc.txt │ │ │ ├── l4.txt │ │ │ ├── mpu.txt │ │ │ ├── omap.txt │ │ │ ├── prcm.txt │ │ │ └── prm-inst.txt │ │ ├── pmu.yaml │ │ ├── primecell.yaml │ │ ├── psci.yaml │ │ ├── qcom,coresight-remote-etm.yaml │ │ ├── qcom,coresight-tpda.yaml │ │ ├── qcom,coresight-tpdm.yaml │ │ ├── qcom-soc.yaml │ │ ├── qcom.yaml │ │ ├── rda.yaml │ │ ├── realtek.yaml │ │ ├── rockchip.yaml │ │ ├── rockchip │ │ │ └── pmu.yaml │ │ ├── rtsm-dcscb.txt │ │ ├── samsung │ │ │ ├── samsung-boards.yaml │ │ │ ├── samsung-secure-firmware.yaml │ │ │ └── samsung-soc.yaml │ │ ├── secure.txt │ │ ├── socionext │ │ │ ├── milbeaut.yaml │ │ │ ├── synquacer.yaml │ │ │ └── uniphier.yaml │ │ ├── sp810.yaml │ │ ├── spear-misc.txt │ │ ├── spear.yaml │ │ ├── sprd │ │ │ └── sprd.yaml │ │ ├── ste-nomadik.txt │ │ ├── sti.yaml │ │ ├── stm32 │ │ │ ├── st,mlahb.yaml │ │ │ ├── st,stm32-syscon.yaml │ │ │ └── stm32.yaml │ │ ├── sunplus,sp7021.yaml │ │ ├── sunxi.yaml │ │ ├── sunxi │ │ │ ├── allwinner,sun4i-a10-mbus.yaml │ │ │ ├── allwinner,sun6i-a31-cpuconfig.yaml │ │ │ └── allwinner,sun9i-a80-prcm.yaml │ │ ├── syna.txt │ │ ├── tegra.yaml │ │ ├── tegra │ │ │ ├── nvidia,tegra-ccplex-cluster.yaml │ │ │ ├── nvidia,tegra186-pmc.yaml │ │ │ ├── nvidia,tegra194-axi2apb.yaml │ │ │ ├── nvidia,tegra194-cbb.yaml │ │ │ └── nvidia,tegra234-cbb.yaml │ │ ├── tesla.yaml │ │ ├── ti │ │ │ ├── k3.yaml │ │ │ ├── nspire.yaml │ │ │ ├── omap.yaml │ │ │ └── ti,davinci.yaml │ │ ├── toshiba.yaml │ │ ├── ux500.yaml │ │ ├── ux500 │ │ │ ├── boards.txt │ │ │ └── power_domain.txt │ │ ├── vexpress-config.yaml │ │ ├── vexpress-scc.txt │ │ ├── vexpress-sysreg.yaml │ │ ├── vt8500.yaml │ │ ├── vt8500 │ │ │ └── via,vt8500-pmc.txt │ │ └── xen.txt │ ├── ata │ │ ├── ahci-common.yaml │ │ ├── ahci-da850.txt │ │ ├── ahci-dm816.txt │ │ ├── ahci-fsl-qoriq.txt │ │ ├── ahci-platform.yaml │ │ ├── ahci-st.txt │ │ ├── allwinner,sun4i-a10-ahci.yaml │ │ ├── allwinner,sun8i-r40-ahci.yaml │ │ ├── apm-xgene.txt │ │ ├── ata-generic.yaml │ │ ├── baikal,bt1-ahci.yaml │ │ ├── brcm,sata-brcm.yaml │ │ ├── cavium-compact-flash.txt │ │ ├── ceva,ahci-1v84.yaml │ │ ├── cortina,gemini-sata-bridge.yaml │ │ ├── faraday,ftide010.yaml │ │ ├── fsl-sata.txt │ │ ├── imx-pata.txt │ │ ├── imx-sata.yaml │ │ ├── intel,ixp4xx-compact-flash.yaml │ │ ├── marvell.txt │ │ ├── mediatek,mtk-ahci.yaml │ │ ├── nvidia,tegra-ahci.yaml │ │ ├── pata-arasan.txt │ │ ├── pata-common.yaml │ │ ├── qcom-sata.txt │ │ ├── renesas,rcar-sata.yaml │ │ ├── rockchip,dwc-ahci.yaml │ │ ├── sata-common.yaml │ │ ├── sata_highbank.yaml │ │ ├── snps,dwc-ahci-common.yaml │ │ └── snps,dwc-ahci.yaml │ ├── auxdisplay │ │ ├── arm,versatile-lcd.yaml │ │ ├── gpio-7-segment.yaml │ │ ├── hit,hd44780.yaml │ │ ├── holtek,ht16k33.yaml │ │ ├── img,ascii-lcd.yaml │ │ ├── maxim,max6959.yaml │ │ └── modtronix,lcd2s.yaml │ ├── board │ │ └── fsl-board.txt │ ├── bus │ │ ├── allwinner,sun50i-a64-de2.yaml │ │ ├── allwinner,sun8i-a23-rsb.yaml │ │ ├── arm,integrator-ap-lm.yaml │ │ ├── aspeed,ast2600-ahbc.yaml │ │ ├── baikal,bt1-apb.yaml │ │ ├── baikal,bt1-axi.yaml │ │ ├── brcm,bus-axi.txt │ │ ├── brcm,gisb-arb.yaml │ │ ├── fsl,imx8qxp-pixel-link-msi-bus.yaml │ │ ├── fsl,spba-bus.yaml │ │ ├── microsoft,vmbus.yaml │ │ ├── moxtet.txt │ │ ├── mti,mips-cdmm.yaml │ │ ├── mvebu-mbus.txt │ │ ├── nvidia,tegra20-gmi.txt │ │ ├── nvidia,tegra210-aconnect.yaml │ │ ├── omap-ocp2scp.txt │ │ ├── palmbus.yaml │ │ ├── qcom,ebi2.txt │ │ ├── qcom,ssbi.yaml │ │ ├── qcom,ssc-block-bus.yaml │ │ ├── renesas,bsc.yaml │ │ ├── simple-pm-bus.yaml │ │ ├── socionext,uniphier-system-bus.yaml │ │ ├── ti,da850-mstpri.txt │ │ ├── ti-sysc.yaml │ │ ├── ts-nbus.txt │ │ └── xlnx,versal-net-cdx.yaml │ ├── cache │ │ ├── andestech,ax45mp-cache.yaml │ │ ├── baikal,bt1-l2-ctl.yaml │ │ ├── freescale-l2cache.txt │ │ ├── l2c2x0.yaml │ │ ├── marvell,feroceon-cache.txt │ │ ├── marvell,tauros2-cache.txt │ │ ├── qcom,llcc.yaml │ │ ├── sifive,ccache0.yaml │ │ └── socionext,uniphier-system-cache.yaml │ ├── chrome │ │ ├── google,cros-ec-typec.yaml │ │ └── google,cros-kbd-led-backlight.yaml │ ├── clock │ │ ├── actions,owl-cmu.txt │ │ ├── adi,axi-clkgen.yaml │ │ ├── airoha,en7523-scu.yaml │ │ ├── allwinner,sun4i-a10-ahb-clk.yaml │ │ ├── allwinner,sun4i-a10-apb0-clk.yaml │ │ ├── allwinner,sun4i-a10-apb1-clk.yaml │ │ ├── allwinner,sun4i-a10-axi-clk.yaml │ │ ├── allwinner,sun4i-a10-ccu.yaml │ │ ├── allwinner,sun4i-a10-cpu-clk.yaml │ │ ├── allwinner,sun4i-a10-display-clk.yaml │ │ ├── allwinner,sun4i-a10-gates-clk.yaml │ │ ├── allwinner,sun4i-a10-mbus-clk.yaml │ │ ├── allwinner,sun4i-a10-mmc-clk.yaml │ │ ├── allwinner,sun4i-a10-mod0-clk.yaml │ │ ├── allwinner,sun4i-a10-mod1-clk.yaml │ │ ├── allwinner,sun4i-a10-osc-clk.yaml │ │ ├── allwinner,sun4i-a10-pll1-clk.yaml │ │ ├── allwinner,sun4i-a10-pll3-clk.yaml │ │ ├── allwinner,sun4i-a10-pll5-clk.yaml │ │ ├── allwinner,sun4i-a10-pll6-clk.yaml │ │ ├── allwinner,sun4i-a10-tcon-ch0-clk.yaml │ │ ├── allwinner,sun4i-a10-usb-clk.yaml │ │ ├── allwinner,sun4i-a10-ve-clk.yaml │ │ ├── allwinner,sun5i-a13-ahb-clk.yaml │ │ ├── allwinner,sun6i-a31-pll6-clk.yaml │ │ ├── allwinner,sun7i-a20-gmac-clk.yaml │ │ ├── allwinner,sun7i-a20-out-clk.yaml │ │ ├── allwinner,sun8i-a83t-de2-clk.yaml │ │ ├── allwinner,sun8i-h3-bus-gates-clk.yaml │ │ ├── allwinner,sun9i-a80-ahb-clk.yaml │ │ ├── allwinner,sun9i-a80-apb0-clk.yaml │ │ ├── allwinner,sun9i-a80-cpus-clk.yaml │ │ ├── allwinner,sun9i-a80-de-clks.yaml │ │ ├── allwinner,sun9i-a80-gt-clk.yaml │ │ ├── allwinner,sun9i-a80-mmc-config-clk.yaml │ │ ├── allwinner,sun9i-a80-pll4-clk.yaml │ │ ├── allwinner,sun9i-a80-usb-clks.yaml │ │ ├── allwinner,sun9i-a80-usb-mod-clk.yaml │ │ ├── allwinner,sun9i-a80-usb-phy-clk.yaml │ │ ├── alphascale,acc.txt │ │ ├── altr_socfpga.txt │ │ ├── amlogic,a1-peripherals-clkc.yaml │ │ ├── amlogic,a1-pll-clkc.yaml │ │ ├── amlogic,axg-audio-clkc.txt │ │ ├── amlogic,gxbb-aoclkc.yaml │ │ ├── amlogic,gxbb-clkc.yaml │ │ ├── amlogic,meson8-ddr-clkc.yaml │ │ ├── amlogic,meson8b-clkc.txt │ │ ├── amlogic,s4-peripherals-clkc.yaml │ │ ├── amlogic,s4-pll-clkc.yaml │ │ ├── apple,nco.yaml │ │ ├── arm,syscon-icst.yaml │ │ ├── armada3700-periph-clock.txt │ │ ├── armada3700-tbg-clock.txt │ │ ├── armada3700-xtal-clock.txt │ │ ├── artpec6.txt │ │ ├── atmel,at91rm9200-pmc.yaml │ │ ├── atmel,at91sam9x5-sckc.yaml │ │ ├── axs10x-i2s-pll-clock.txt │ │ ├── baikal,bt1-ccu-div.yaml │ │ ├── baikal,bt1-ccu-pll.yaml │ │ ├── bitmain,bm1880-clk.yaml │ │ ├── brcm,bcm2711-dvp.yaml │ │ ├── brcm,bcm2835-aux-clock.txt │ │ ├── brcm,bcm2835-cprman.txt │ │ ├── brcm,bcm53573-ilp.txt │ │ ├── brcm,bcm63268-timer-clocks.yaml │ │ ├── brcm,bcm63xx-clocks.txt │ │ ├── brcm,iproc-clocks.yaml │ │ ├── brcm,kona-ccu.yaml │ │ ├── calxeda.yaml │ │ ├── canaan,k210-clk.yaml │ │ ├── cirrus,cs2000-cp.yaml │ │ ├── cirrus,lochnagar.yaml │ │ ├── clk-palmas-clk32kg-clocks.txt │ │ ├── clock-bindings.txt │ │ ├── clps711x-clock.txt │ │ ├── dove-divider-clock.txt │ │ ├── fixed-clock.yaml │ │ ├── fixed-factor-clock.yaml │ │ ├── fixed-mmio-clock.yaml │ │ ├── fsl,flexspi-clock.yaml │ │ ├── fsl,imx8-acm.yaml │ │ ├── fsl,imx8m-anatop.yaml │ │ ├── fsl,imx93-anatop.yaml │ │ ├── fsl,plldig.yaml │ │ ├── fsl,sai-clock.yaml │ │ ├── fsl,scu-clk.yaml │ │ ├── fujitsu,mb86s70-crg11.txt │ │ ├── google,gs101-clock.yaml │ │ ├── gpio-gate-clock.yaml │ │ ├── gpio-mux-clock.yaml │ │ ├── hi3660-clock.txt │ │ ├── hi3670-clock.txt │ │ ├── hi6220-clock.txt │ │ ├── hisi-crg.txt │ │ ├── hisilicon,hi3559av100-clock.yaml │ │ ├── idt,versaclock5.yaml │ │ ├── img,boston-clock.txt │ │ ├── imx1-clock.yaml │ │ ├── imx21-clock.yaml │ │ ├── imx23-clock.yaml │ │ ├── imx25-clock.yaml │ │ ├── imx27-clock.yaml │ │ ├── imx28-clock.yaml │ │ ├── imx31-clock.yaml │ │ ├── imx35-clock.yaml │ │ ├── imx5-clock.yaml │ │ ├── imx6q-clock.yaml │ │ ├── imx6sl-clock.yaml │ │ ├── imx6sll-clock.yaml │ │ ├── imx6sx-clock.yaml │ │ ├── imx6ul-clock.yaml │ │ ├── imx7d-clock.yaml │ │ ├── imx7ulp-pcc-clock.yaml │ │ ├── imx7ulp-scg-clock.yaml │ │ ├── imx8m-clock.yaml │ │ ├── imx8mp-audiomix.yaml │ │ ├── imx8qxp-lpcg.yaml │ │ ├── imx8ulp-cgc-clock.yaml │ │ ├── imx8ulp-pcc-clock.yaml │ │ ├── imx93-clock.yaml │ │ ├── imxrt1050-clock.yaml │ │ ├── ingenic,cgu.yaml │ │ ├── intel,agilex.yaml │ │ ├── intel,agilex5-clkmgr.yaml │ │ ├── intel,cgu-lgm.yaml │ │ ├── intel,easic-n5x.yaml │ │ ├── intel,stratix10.yaml │ │ ├── keystone-gate.txt │ │ ├── keystone-pll.txt │ │ ├── loongson,ls1x-clk.yaml │ │ ├── loongson,ls2k-clk.yaml │ │ ├── lpc1850-ccu.txt │ │ ├── lpc1850-cgu.txt │ │ ├── lpc1850-creg-clk.txt │ │ ├── lsi,axm5516-clks.txt │ │ ├── marvell,armada-3700-uart-clock.yaml │ │ ├── marvell,berlin.txt │ │ ├── marvell,mmp2-audio-clock.yaml │ │ ├── marvell,mmp2-clock.yaml │ │ ├── marvell,pxa168.txt │ │ ├── marvell,pxa1928.txt │ │ ├── marvell,pxa910.txt │ │ ├── maxim,max77686.txt │ │ ├── maxim,max9485.txt │ │ ├── mediatek,apmixedsys.yaml │ │ ├── mediatek,ethsys.yaml │ │ ├── mediatek,mt2701-hifsys.yaml │ │ ├── mediatek,mt6795-clock.yaml │ │ ├── mediatek,mt6795-sys-clock.yaml │ │ ├── mediatek,mt7621-sysc.yaml │ │ ├── mediatek,mt7622-pciesys.yaml │ │ ├── mediatek,mt7622-ssusbsys.yaml │ │ ├── mediatek,mt7988-ethwarp.yaml │ │ ├── mediatek,mt7988-xfi-pll.yaml │ │ ├── mediatek,mt8186-fhctl.yaml │ │ ├── mediatek,mt8188-clock.yaml │ │ ├── mediatek,mt8188-sys-clock.yaml │ │ ├── mediatek,mt8365-clock.yaml │ │ ├── mediatek,mt8365-sys-clock.yaml │ │ ├── mediatek,mtmips-sysc.yaml │ │ ├── mediatek,topckgen.yaml │ │ ├── microchip,lan966x-gck.yaml │ │ ├── microchip,mpfs-ccc.yaml │ │ ├── microchip,mpfs-clkcfg.yaml │ │ ├── microchip,pic32.txt │ │ ├── microchip,sparx5-dpll.yaml │ │ ├── milbeaut-clock.yaml │ │ ├── mobileye,eyeq5-clk.yaml │ │ ├── moxa,moxart-clock.txt │ │ ├── mstar,msc313-cpupll.yaml │ │ ├── mstar,msc313-mpll.yaml │ │ ├── mvebu-core-clock.txt │ │ ├── mvebu-corediv-clock.txt │ │ ├── mvebu-cpu-clock.txt │ │ ├── mvebu-gated-clock.txt │ │ ├── nspire-clock.txt │ │ ├── nuvoton,ma35d1-clk.yaml │ │ ├── nuvoton,npcm750-clk.txt │ │ ├── nuvoton,npcm845-clk.yaml │ │ ├── nvidia,tegra124-car.yaml │ │ ├── nvidia,tegra124-dfll.txt │ │ ├── nvidia,tegra20-car.yaml │ │ ├── nxp,lpc3220-clk.txt │ │ ├── nxp,lpc3220-usb-clk.txt │ │ ├── pistachio-clock.txt │ │ ├── pwm-clock.yaml │ │ ├── pxa-clock.txt │ │ ├── qca,ath79-pll.txt │ │ ├── qcom,a53pll.yaml │ │ ├── qcom,a7pll.yaml │ │ ├── qcom,aoncc-sm8250.yaml │ │ ├── qcom,audiocc-sm8250.yaml │ │ ├── qcom,camcc-sm8250.yaml │ │ ├── qcom,dispcc-sc8280xp.yaml │ │ ├── qcom,dispcc-sm6125.yaml │ │ ├── qcom,dispcc-sm6350.yaml │ │ ├── qcom,dispcc-sm8x50.yaml │ │ ├── qcom,gcc-apq8064.yaml │ │ ├── qcom,gcc-apq8084.yaml │ │ ├── qcom,gcc-ipq4019.yaml │ │ ├── qcom,gcc-ipq6018.yaml │ │ ├── qcom,gcc-ipq8064.yaml │ │ ├── qcom,gcc-ipq8074.yaml │ │ ├── qcom,gcc-msm8660.yaml │ │ ├── qcom,gcc-msm8909.yaml │ │ ├── qcom,gcc-msm8916.yaml │ │ ├── qcom,gcc-msm8953.yaml │ │ ├── qcom,gcc-msm8974.yaml │ │ ├── qcom,gcc-msm8976.yaml │ │ ├── qcom,gcc-msm8994.yaml │ │ ├── qcom,gcc-msm8996.yaml │ │ ├── qcom,gcc-msm8998.yaml │ │ ├── qcom,gcc-other.yaml │ │ ├── qcom,gcc-qcm2290.yaml │ │ ├── qcom,gcc-qcs404.yaml │ │ ├── qcom,gcc-sc7180.yaml │ │ ├── qcom,gcc-sc7280.yaml │ │ ├── qcom,gcc-sc8180x.yaml │ │ ├── qcom,gcc-sc8280xp.yaml │ │ ├── qcom,gcc-sdm660.yaml │ │ ├── qcom,gcc-sdm845.yaml │ │ ├── qcom,gcc-sdx55.yaml │ │ ├── qcom,gcc-sdx65.yaml │ │ ├── qcom,gcc-sm6115.yaml │ │ ├── qcom,gcc-sm6125.yaml │ │ ├── qcom,gcc-sm6350.yaml │ │ ├── qcom,gcc-sm8150.yaml │ │ ├── qcom,gcc-sm8250.yaml │ │ ├── qcom,gcc-sm8350.yaml │ │ ├── qcom,gcc-sm8450.yaml │ │ ├── qcom,gcc.yaml │ │ ├── qcom,gpucc-sdm660.yaml │ │ ├── qcom,gpucc.yaml │ │ ├── qcom,hfpll.txt │ │ ├── qcom,ipq5018-gcc.yaml │ │ ├── qcom,ipq5332-gcc.yaml │ │ ├── qcom,ipq9574-gcc.yaml │ │ ├── qcom,kpss-acc-v1.yaml │ │ ├── qcom,kpss-gcc.yaml │ │ ├── qcom,krait-cc.txt │ │ ├── qcom,lcc.yaml │ │ ├── qcom,mmcc.yaml │ │ ├── qcom,msm8996-apcc.yaml │ │ ├── qcom,msm8996-cbf.yaml │ │ ├── qcom,msm8998-gpucc.yaml │ │ ├── qcom,q6sstopcc.yaml │ │ ├── qcom,qcm2290-dispcc.yaml │ │ ├── qcom,qdu1000-ecpricc.yaml │ │ ├── qcom,qdu1000-gcc.yaml │ │ ├── qcom,rpmcc.yaml │ │ ├── qcom,rpmhcc.yaml │ │ ├── qcom,sa8775p-gcc.yaml │ │ ├── qcom,sc7180-camcc.yaml │ │ ├── qcom,sc7180-dispcc.yaml │ │ ├── qcom,sc7180-lpasscorecc.yaml │ │ ├── qcom,sc7280-camcc.yaml │ │ ├── qcom,sc7280-dispcc.yaml │ │ ├── qcom,sc7280-lpasscc.yaml │ │ ├── qcom,sc7280-lpasscorecc.yaml │ │ ├── qcom,sc8280xp-lpasscc.yaml │ │ ├── qcom,sdm845-camcc.yaml │ │ ├── qcom,sdm845-dispcc.yaml │ │ ├── qcom,sdm845-lpasscc.yaml │ │ ├── qcom,sdx75-gcc.yaml │ │ ├── qcom,sm4450-gcc.yaml │ │ ├── qcom,sm6115-dispcc.yaml │ │ ├── qcom,sm6115-gpucc.yaml │ │ ├── qcom,sm6125-gpucc.yaml │ │ ├── qcom,sm6350-camcc.yaml │ │ ├── qcom,sm6375-dispcc.yaml │ │ ├── qcom,sm6375-gcc.yaml │ │ ├── qcom,sm6375-gpucc.yaml │ │ ├── qcom,sm7150-gcc.yaml │ │ ├── qcom,sm8350-videocc.yaml │ │ ├── qcom,sm8450-camcc.yaml │ │ ├── qcom,sm8450-dispcc.yaml │ │ ├── qcom,sm8450-gpucc.yaml │ │ ├── qcom,sm8450-videocc.yaml │ │ ├── qcom,sm8550-dispcc.yaml │ │ ├── qcom,sm8550-gcc.yaml │ │ ├── qcom,sm8550-tcsr.yaml │ │ ├── qcom,sm8650-gcc.yaml │ │ ├── qcom,spmi-clkdiv.yaml │ │ ├── qcom,turingcc.txt │ │ ├── qcom,videocc.yaml │ │ ├── qcom,x1e80100-gcc.yaml │ │ ├── qoriq-clock.txt │ │ ├── renesas,5p35023.yaml │ │ ├── renesas,9series.yaml │ │ ├── renesas,cpg-clocks.yaml │ │ ├── renesas,cpg-div6-clock.yaml │ │ ├── renesas,cpg-mssr.yaml │ │ ├── renesas,cpg-mstp-clocks.yaml │ │ ├── renesas,emev2-smu.yaml │ │ ├── renesas,r9a06g032-sysctrl.yaml │ │ ├── renesas,rcar-usb2-clock-sel.yaml │ │ ├── renesas,rzg2l-cpg.yaml │ │ ├── renesas,versaclock7.yaml │ │ ├── rockchip,px30-cru.yaml │ │ ├── rockchip,rk3036-cru.yaml │ │ ├── rockchip,rk3128-cru.yaml │ │ ├── rockchip,rk3188-cru.yaml │ │ ├── rockchip,rk3228-cru.yaml │ │ ├── rockchip,rk3288-cru.yaml │ │ ├── rockchip,rk3308-cru.yaml │ │ ├── rockchip,rk3328-cru.txt │ │ ├── rockchip,rk3368-cru.yaml │ │ ├── rockchip,rk3399-cru.yaml │ │ ├── rockchip,rk3568-cru.yaml │ │ ├── rockchip,rk3588-cru.yaml │ │ ├── rockchip,rv1108-cru.yaml │ │ ├── rockchip,rv1126-cru.yaml │ │ ├── samsung,exynos-audss-clock.yaml │ │ ├── samsung,exynos-clock.yaml │ │ ├── samsung,exynos-ext-clock.yaml │ │ ├── samsung,exynos4412-isp-clock.yaml │ │ ├── samsung,exynos5260-clock.yaml │ │ ├── samsung,exynos5410-clock.yaml │ │ ├── samsung,exynos5433-clock.yaml │ │ ├── samsung,exynos7-clock.yaml │ │ ├── samsung,exynos7885-clock.yaml │ │ ├── samsung,exynos850-clock.yaml │ │ ├── samsung,exynosautov9-clock.yaml │ │ ├── samsung,s2mps11.yaml │ │ ├── samsung,s3c64xx-clock.txt │ │ ├── samsung,s5pv210-audss-clock.yaml │ │ ├── samsung,s5pv210-clock.yaml │ │ ├── sifive │ │ │ ├── fu540-prci.yaml │ │ │ └── fu740-prci.yaml │ │ ├── silabs,si514.txt │ │ ├── silabs,si5341.txt │ │ ├── silabs,si5351.yaml │ │ ├── silabs,si544.txt │ │ ├── silabs,si570.txt │ │ ├── skyworks,si521xx.yaml │ │ ├── snps,hsdk-pll-clock.txt │ │ ├── snps,pll-clock.txt │ │ ├── socionext,uniphier-clock.yaml │ │ ├── sophgo,cv1800-clk.yaml │ │ ├── sprd,sc9860-clk.txt │ │ ├── sprd,sc9863a-clk.yaml │ │ ├── sprd,ums512-clk.yaml │ │ ├── st,nomadik.txt │ │ ├── st,stm32-rcc.txt │ │ ├── st,stm32h7-rcc.txt │ │ ├── st,stm32mp1-rcc.yaml │ │ ├── st,stm32mp25-rcc.yaml │ │ ├── st │ │ │ ├── st,clkgen-mux.txt │ │ │ ├── st,clkgen-pll.txt │ │ │ ├── st,clkgen.txt │ │ │ ├── st,flexgen.txt │ │ │ └── st,quadfs.txt │ │ ├── starfive,jh7100-audclk.yaml │ │ ├── starfive,jh7100-clkgen.yaml │ │ ├── starfive,jh7110-aoncrg.yaml │ │ ├── starfive,jh7110-ispcrg.yaml │ │ ├── starfive,jh7110-pll.yaml │ │ ├── starfive,jh7110-stgcrg.yaml │ │ ├── starfive,jh7110-syscrg.yaml │ │ ├── starfive,jh7110-voutcrg.yaml │ │ ├── stericsson,abx500.txt │ │ ├── stericsson,u8500-clks.yaml │ │ ├── sunplus,sp7021-clkc.yaml │ │ ├── tesla,fsd-clock.yaml │ │ ├── ti,am62-audio-refclk.yaml │ │ ├── ti,am654-ehrpwm-tbclk.yaml │ │ ├── ti,cdce706.txt │ │ ├── ti,cdce925.yaml │ │ ├── ti,lmk04832.yaml │ │ ├── ti,sci-clk.yaml │ │ ├── ti-clkctrl.txt │ │ ├── ti-keystone-pllctrl.txt │ │ ├── ti │ │ │ ├── adpll.txt │ │ │ ├── apll.txt │ │ │ ├── autoidle.txt │ │ │ ├── clockdomain.txt │ │ │ ├── composite.txt │ │ │ ├── davinci │ │ │ │ ├── da8xx-cfgchip.txt │ │ │ │ ├── pll.txt │ │ │ │ └── psc.txt │ │ │ ├── divider.txt │ │ │ ├── dpll.txt │ │ │ ├── dra7-atl.txt │ │ │ ├── fapll.txt │ │ │ ├── fixed-factor-clock.txt │ │ │ ├── gate.txt │ │ │ ├── interface.txt │ │ │ ├── mux.txt │ │ │ └── ti,clksel.yaml │ │ ├── toshiba,tmpv770x-pipllct.yaml │ │ ├── toshiba,tmpv770x-pismu.yaml │ │ ├── vf610-clock.txt │ │ ├── vt8500.txt │ │ ├── xgene.txt │ │ ├── xlnx,clocking-wizard.yaml │ │ ├── xlnx,versal-clk.yaml │ │ └── zynq-7000.txt │ ├── common-properties.txt │ ├── connector │ │ └── usb-connector.yaml │ ├── counter │ │ ├── ftm-quaddec.txt │ │ ├── interrupt-counter.yaml │ │ ├── ti,am62-ecap-capture.yaml │ │ └── ti-eqep.yaml │ ├── cpu │ │ ├── cpu-capacity.txt │ │ ├── cpu-topology.txt │ │ ├── idle-states.yaml │ │ └── nvidia,tegra186-ccplex-cluster.yaml │ ├── cpufreq │ │ ├── apple,cluster-cpufreq.yaml │ │ ├── brcm,stb-avs-cpu-freq.txt │ │ ├── cpufreq-dt.txt │ │ ├── cpufreq-mediatek-hw.yaml │ │ ├── cpufreq-mediatek.txt │ │ ├── cpufreq-qcom-hw.yaml │ │ ├── cpufreq-spear.txt │ │ ├── cpufreq-st.txt │ │ ├── imx-cpufreq-dt.txt │ │ ├── nvidia,tegra124-cpufreq.txt │ │ ├── nvidia,tegra20-cpufreq.txt │ │ └── qcom-cpufreq-nvmem.yaml │ ├── crypto │ │ ├── allwinner,sun4i-a10-crypto.yaml │ │ ├── allwinner,sun8i-ce.yaml │ │ ├── allwinner,sun8i-ss.yaml │ │ ├── amd-ccp.txt │ │ ├── amlogic,gxl-crypto.yaml │ │ ├── arm,cryptocell.yaml │ │ ├── artpec6-crypto.txt │ │ ├── aspeed,ast2500-hace.yaml │ │ ├── aspeed,ast2600-acry.yaml │ │ ├── atmel,at91sam9g46-aes.yaml │ │ ├── atmel,at91sam9g46-sha.yaml │ │ ├── atmel,at91sam9g46-tdes.yaml │ │ ├── brcm,spu-crypto.txt │ │ ├── cortina,sl3516-crypto.yaml │ │ ├── fsl,sec-v4.0-mon.yaml │ │ ├── fsl,sec-v4.0.yaml │ │ ├── fsl-dcp.yaml │ │ ├── fsl-imx-sahara.yaml │ │ ├── fsl-imx-scc.yaml │ │ ├── fsl-sec2.txt │ │ ├── fsl-sec6.txt │ │ ├── hisilicon,hip07-sec.txt │ │ ├── img-hash.txt │ │ ├── inside-secure,safexcel.yaml │ │ ├── intel,ixp4xx-crypto.yaml │ │ ├── intel,keembay-ocs-aes.yaml │ │ ├── intel,keembay-ocs-ecc.yaml │ │ ├── intel,keembay-ocs-hcu.yaml │ │ ├── marvell-cesa.txt │ │ ├── mediatek-crypto.txt │ │ ├── mv_cesa.txt │ │ ├── omap-aes.txt │ │ ├── omap-des.txt │ │ ├── omap-sham.txt │ │ ├── qcom,inline-crypto-engine.yaml │ │ ├── qcom,prng.yaml │ │ ├── qcom-qce.yaml │ │ ├── rockchip,rk3288-crypto.yaml │ │ ├── samsung-slimsss.yaml │ │ ├── samsung-sss.yaml │ │ ├── st,stm32-crc.yaml │ │ ├── st,stm32-cryp.yaml │ │ ├── st,stm32-hash.yaml │ │ ├── starfive,jh7110-crypto.yaml │ │ ├── ti,sa2ul.yaml │ │ └── xlnx,zynqmp-aes.yaml │ ├── csky │ │ ├── cpus.txt │ │ └── pmu.txt │ ├── devfreq │ │ ├── event │ │ │ ├── rockchip,dfi.yaml │ │ │ ├── samsung,exynos-nocp.yaml │ │ │ └── samsung,exynos-ppmu.yaml │ │ └── nvidia,tegra30-actmon.yaml │ ├── display │ │ ├── allwinner,sun4i-a10-display-backend.yaml │ │ ├── allwinner,sun4i-a10-display-engine.yaml │ │ ├── allwinner,sun4i-a10-display-frontend.yaml │ │ ├── allwinner,sun4i-a10-hdmi.yaml │ │ ├── allwinner,sun4i-a10-tcon.yaml │ │ ├── allwinner,sun4i-a10-tv-encoder.yaml │ │ ├── allwinner,sun6i-a31-drc.yaml │ │ ├── allwinner,sun6i-a31-mipi-dsi.yaml │ │ ├── allwinner,sun8i-a83t-de2-mixer.yaml │ │ ├── allwinner,sun8i-a83t-dw-hdmi.yaml │ │ ├── allwinner,sun8i-a83t-hdmi-phy.yaml │ │ ├── allwinner,sun8i-r40-tcon-top.yaml │ │ ├── allwinner,sun9i-a80-deu.yaml │ │ ├── amlogic,meson-dw-hdmi.yaml │ │ ├── amlogic,meson-g12a-dw-mipi-dsi.yaml │ │ ├── amlogic,meson-vpu.yaml │ │ ├── arm,hdlcd.yaml │ │ ├── arm,komeda.yaml │ │ ├── arm,malidp.yaml │ │ ├── arm,pl11x.yaml │ │ ├── armada │ │ │ └── marvell,dove-lcd.txt │ │ ├── atmel,lcdc.txt │ │ ├── atmel │ │ │ └── atmel,hlcdc-display-controller.yaml │ │ ├── brcm,bcm2711-hdmi.yaml │ │ ├── brcm,bcm2835-dpi.yaml │ │ ├── brcm,bcm2835-dsi0.yaml │ │ ├── brcm,bcm2835-hdmi.yaml │ │ ├── brcm,bcm2835-hvs.yaml │ │ ├── brcm,bcm2835-pixelvalve0.yaml │ │ ├── brcm,bcm2835-txp.yaml │ │ ├── brcm,bcm2835-v3d.yaml │ │ ├── brcm,bcm2835-vc4.yaml │ │ ├── brcm,bcm2835-vec.yaml │ │ ├── bridge │ │ │ ├── adi,adv7511.yaml │ │ │ ├── adi,adv7533.yaml │ │ │ ├── analogix,anx7625.yaml │ │ │ ├── analogix,anx7814.yaml │ │ │ ├── analogix,dp.yaml │ │ │ ├── anx6345.yaml │ │ │ ├── cdns,dsi.yaml │ │ │ ├── cdns,mhdp8546.yaml │ │ │ ├── chipone,icn6211.yaml │ │ │ ├── chrontel,ch7033.yaml │ │ │ ├── fsl,imx8mp-hdmi-tx.yaml │ │ │ ├── fsl,imx8qxp-ldb.yaml │ │ │ ├── fsl,imx8qxp-pixel-combiner.yaml │ │ │ ├── fsl,imx8qxp-pixel-link.yaml │ │ │ ├── fsl,imx8qxp-pxl2dpi.yaml │ │ │ ├── fsl,imx93-mipi-dsi.yaml │ │ │ ├── fsl,ldb.yaml │ │ │ ├── google,cros-ec-anx7688.yaml │ │ │ ├── ingenic,jz4780-hdmi.yaml │ │ │ ├── intel,keembay-dsi.yaml │ │ │ ├── ite,it6505.yaml │ │ │ ├── ite,it66121.yaml │ │ │ ├── lontium,lt8912b.yaml │ │ │ ├── lontium,lt9211.yaml │ │ │ ├── lontium,lt9611.yaml │ │ │ ├── lvds-codec.yaml │ │ │ ├── megachips-stdpxxxx-ge-b850v3-fw.txt │ │ │ ├── nwl-dsi.yaml │ │ │ ├── nxp,ptn3460.yaml │ │ │ ├── nxp,tda998x.yaml │ │ │ ├── parade,ps8622.yaml │ │ │ ├── ps8640.yaml │ │ │ ├── renesas,dsi-csi2-tx.yaml │ │ │ ├── renesas,dsi.yaml │ │ │ ├── renesas,dw-hdmi.yaml │ │ │ ├── renesas,lvds.yaml │ │ │ ├── samsung,mipi-dsim.yaml │ │ │ ├── sil,sii8620.yaml │ │ │ ├── sil,sii9022.yaml │ │ │ ├── sil,sii9234.yaml │ │ │ ├── simple-bridge.yaml │ │ │ ├── snps,dw-mipi-dsi.yaml │ │ │ ├── synopsys,dw-hdmi.yaml │ │ │ ├── thine,thc63lvd1024.yaml │ │ │ ├── ti,dlpc3433.yaml │ │ │ ├── ti,sn65dsi83.yaml │ │ │ ├── ti,sn65dsi86.yaml │ │ │ ├── ti,tfp410.yaml │ │ │ ├── toshiba,tc358762.yaml │ │ │ ├── toshiba,tc358764.yaml │ │ │ ├── toshiba,tc358767.yaml │ │ │ ├── toshiba,tc358768.yaml │ │ │ └── toshiba,tc358775.yaml │ │ ├── cirrus,clps711x-fb.txt │ │ ├── connector │ │ │ ├── analog-tv-connector.yaml │ │ │ ├── dp-connector.yaml │ │ │ ├── dvi-connector.yaml │ │ │ ├── hdmi-connector.yaml │ │ │ └── vga-connector.yaml │ │ ├── dp-aux-bus.yaml │ │ ├── dsi-controller.yaml │ │ ├── exynos │ │ │ └── exynos_dp.txt │ │ ├── faraday,tve200.yaml │ │ ├── fsl,dcu.txt │ │ ├── fsl,lcdif.yaml │ │ ├── fsl,tcon.txt │ │ ├── google,goldfish-fb.txt │ │ ├── himax,hx8357d.txt │ │ ├── hisilicon │ │ │ ├── dw-dsi.txt │ │ │ └── hisi-ade.txt │ │ ├── ilitek,ili9225.txt │ │ ├── ilitek,ili9486.yaml │ │ ├── imx │ │ │ ├── fsl,imx-lcdc.yaml │ │ │ ├── fsl,imx6-hdmi.yaml │ │ │ ├── fsl,imx8mp-hdmi-pvi.yaml │ │ │ ├── fsl-imx-drm.txt │ │ │ ├── ldb.txt │ │ │ └── nxp,imx8mq-dcss.yaml │ │ ├── ingenic,ipu.yaml │ │ ├── ingenic,lcd.yaml │ │ ├── intel,keembay-display.yaml │ │ ├── intel,keembay-msscam.yaml │ │ ├── lvds-data-mapping.yaml │ │ ├── lvds.yaml │ │ ├── marvell,pxa2xx-lcdc.txt │ │ ├── marvell,pxa300-gcu.txt │ │ ├── mediatek │ │ │ ├── mediatek,aal.yaml │ │ │ ├── mediatek,ccorr.yaml │ │ │ ├── mediatek,cec.yaml │ │ │ ├── mediatek,color.yaml │ │ │ ├── mediatek,dither.yaml │ │ │ ├── mediatek,dp.yaml │ │ │ ├── mediatek,dpi.yaml │ │ │ ├── mediatek,dsc.yaml │ │ │ ├── mediatek,dsi.yaml │ │ │ ├── mediatek,ethdr.yaml │ │ │ ├── mediatek,gamma.yaml │ │ │ ├── mediatek,hdmi-ddc.yaml │ │ │ ├── mediatek,hdmi.yaml │ │ │ ├── mediatek,merge.yaml │ │ │ ├── mediatek,od.yaml │ │ │ ├── mediatek,ovl-2l.yaml │ │ │ ├── mediatek,ovl.yaml │ │ │ ├── mediatek,padding.yaml │ │ │ ├── mediatek,postmask.yaml │ │ │ ├── mediatek,rdma.yaml │ │ │ ├── mediatek,split.yaml │ │ │ ├── mediatek,ufoe.yaml │ │ │ └── mediatek,wdma.yaml │ │ ├── mipi-dsi-bus.txt │ │ ├── msm │ │ │ ├── dp-controller.yaml │ │ │ ├── dpu-common.yaml │ │ │ ├── dsi-controller-main.yaml │ │ │ ├── dsi-phy-10nm.yaml │ │ │ ├── dsi-phy-14nm.yaml │ │ │ ├── dsi-phy-20nm.yaml │ │ │ ├── dsi-phy-28nm.yaml │ │ │ ├── dsi-phy-7nm.yaml │ │ │ ├── dsi-phy-common.yaml │ │ │ ├── gmu.yaml │ │ │ ├── gpu.yaml │ │ │ ├── hdmi.yaml │ │ │ ├── mdp4.yaml │ │ │ ├── mdss-common.yaml │ │ │ ├── qcom,mdp5.yaml │ │ │ ├── qcom,mdss.yaml │ │ │ ├── qcom,msm8998-dpu.yaml │ │ │ ├── qcom,msm8998-mdss.yaml │ │ │ ├── qcom,qcm2290-dpu.yaml │ │ │ ├── qcom,qcm2290-mdss.yaml │ │ │ ├── qcom,sc7180-dpu.yaml │ │ │ ├── qcom,sc7180-mdss.yaml │ │ │ ├── qcom,sc7280-dpu.yaml │ │ │ ├── qcom,sc7280-mdss.yaml │ │ │ ├── qcom,sc8280xp-dpu.yaml │ │ │ ├── qcom,sc8280xp-mdss.yaml │ │ │ ├── qcom,sdm670-mdss.yaml │ │ │ ├── qcom,sdm845-dpu.yaml │ │ │ ├── qcom,sdm845-mdss.yaml │ │ │ ├── qcom,sm6115-dpu.yaml │ │ │ ├── qcom,sm6115-mdss.yaml │ │ │ ├── qcom,sm6125-mdss.yaml │ │ │ ├── qcom,sm6350-mdss.yaml │ │ │ ├── qcom,sm6375-mdss.yaml │ │ │ ├── qcom,sm8150-dpu.yaml │ │ │ ├── qcom,sm8150-mdss.yaml │ │ │ ├── qcom,sm8250-dpu.yaml │ │ │ ├── qcom,sm8250-mdss.yaml │ │ │ ├── qcom,sm8350-dpu.yaml │ │ │ ├── qcom,sm8350-mdss.yaml │ │ │ ├── qcom,sm8450-dpu.yaml │ │ │ ├── qcom,sm8450-mdss.yaml │ │ │ ├── qcom,sm8550-dpu.yaml │ │ │ ├── qcom,sm8550-mdss.yaml │ │ │ ├── qcom,sm8650-dpu.yaml │ │ │ ├── qcom,sm8650-mdss.yaml │ │ │ └── qcom,x1e80100-mdss.yaml │ │ ├── multi-inno,mi0283qt.txt │ │ ├── panel │ │ │ ├── abt,y030xx067a.yaml │ │ │ ├── advantech,idk-1110wr.yaml │ │ │ ├── advantech,idk-2121wr.yaml │ │ │ ├── arm,rtsm-display.yaml │ │ │ ├── arm,versatile-tft-panel.yaml │ │ │ ├── armadeus,st0700-adapt.yaml │ │ │ ├── asus,z00t-tm5p5-nt35596.yaml │ │ │ ├── auo,a030jtn01.yaml │ │ │ ├── bananapi,s070wv20-ct16.yaml │ │ │ ├── boe,bf060y8m-aj0.yaml │ │ │ ├── boe,himax8279d.yaml │ │ │ ├── boe,th101mb31ig002-28a.yaml │ │ │ ├── boe,tv101wum-nl6.yaml │ │ │ ├── display-timing.txt │ │ │ ├── display-timings.yaml │ │ │ ├── dlc,dlc0700yzg-1.yaml │ │ │ ├── ebbg,ft8719.yaml │ │ │ ├── elida,kd35t133.yaml │ │ │ ├── fascontek,fs035vg158.yaml │ │ │ ├── feixin,k101-im2ba02.yaml │ │ │ ├── feiyang,fy07024di26a30d.yaml │ │ │ ├── focaltech,gpt3.yaml │ │ │ ├── himax,hx83112a.yaml │ │ │ ├── himax,hx8394.yaml │ │ │ ├── ilitek,ili9163.yaml │ │ │ ├── ilitek,ili9322.yaml │ │ │ ├── ilitek,ili9341.yaml │ │ │ ├── ilitek,ili9805.yaml │ │ │ ├── ilitek,ili9881c.yaml │ │ │ ├── innolux,ee101ia-01d.yaml │ │ │ ├── innolux,ej030na.yaml │ │ │ ├── innolux,p097pfg.yaml │ │ │ ├── jadard,jd9365da-h3.yaml │ │ │ ├── jdi,lpm102a188a.yaml │ │ │ ├── jdi,lt070me05000.yaml │ │ │ ├── kingdisplay,kd035g6-54nt.yaml │ │ │ ├── leadtek,ltk035c5444t.yaml │ │ │ ├── leadtek,ltk050h3146w.yaml │ │ │ ├── leadtek,ltk500hd1829.yaml │ │ │ ├── lg,lg4573.yaml │ │ │ ├── lgphilips,lb035q02.yaml │ │ │ ├── logicpd,type28.yaml │ │ │ ├── mantix,mlaf057we51-x.yaml │ │ │ ├── mitsubishi,aa104xd12.yaml │ │ │ ├── mitsubishi,aa121td01.yaml │ │ │ ├── nec,nl8048hl11.yaml │ │ │ ├── newvision,nv3051d.yaml │ │ │ ├── novatek,nt35510.yaml │ │ │ ├── novatek,nt35950.yaml │ │ │ ├── novatek,nt36523.yaml │ │ │ ├── novatek,nt36672a.yaml │ │ │ ├── novatek,nt36672e.yaml │ │ │ ├── olimex,lcd-olinuxino.yaml │ │ │ ├── orisetech,otm8009a.yaml │ │ │ ├── panel-common.yaml │ │ │ ├── panel-dpi.yaml │ │ │ ├── panel-dsi-cm.yaml │ │ │ ├── panel-edp.yaml │ │ │ ├── panel-lvds.yaml │ │ │ ├── panel-mipi-dbi-spi.yaml │ │ │ ├── panel-simple-dsi.yaml │ │ │ ├── panel-simple-lvds-dual-ports.yaml │ │ │ ├── panel-simple.yaml │ │ │ ├── panel-timing.yaml │ │ │ ├── pda,91-00156-a0.yaml │ │ │ ├── raspberrypi,7inch-touchscreen.yaml │ │ │ ├── raydium,rm67191.yaml │ │ │ ├── raydium,rm68200.yaml │ │ │ ├── raydium,rm692e5.yaml │ │ │ ├── rocktech,jh057n00900.yaml │ │ │ ├── ronbo,rb070d30.yaml │ │ │ ├── samsung,amoled-mipi-dsi.yaml │ │ │ ├── samsung,ams495qa01.yaml │ │ │ ├── samsung,ld9040.yaml │ │ │ ├── samsung,lms380kf01.yaml │ │ │ ├── samsung,lms397kf04.yaml │ │ │ ├── samsung,s6d16d0.yaml │ │ │ ├── samsung,s6d27a1.yaml │ │ │ ├── samsung,s6d7aa0.yaml │ │ │ ├── samsung,s6e63m0.yaml │ │ │ ├── samsung,s6e88a0-ams452ef01.yaml │ │ │ ├── samsung,s6e8aa0.yaml │ │ │ ├── seiko,43wvf1g.yaml │ │ │ ├── sgd,gktw70sdae4se.yaml │ │ │ ├── sharp,ld-d5116z01b.yaml │ │ │ ├── sharp,lq101r1sx01.yaml │ │ │ ├── sharp,lq150x1lg11.yaml │ │ │ ├── sharp,ls037v7dw01.yaml │ │ │ ├── sharp,ls043t1le01.yaml │ │ │ ├── sharp,ls060t1sx01.yaml │ │ │ ├── sitronix,st7701.yaml │ │ │ ├── sitronix,st7789v.yaml │ │ │ ├── sony,acx424akp.yaml │ │ │ ├── sony,acx565akm.yaml │ │ │ ├── sony,td4353-jdi.yaml │ │ │ ├── sony,tulip-truly-nt35521.yaml │ │ │ ├── startek,kd070fhfid015.yaml │ │ │ ├── startek,startek-kd050c.yaml │ │ │ ├── synaptics,r63353.yaml │ │ │ ├── tfc,s9700rtwv43tr-01b.yaml │ │ │ ├── ti,nspire.yaml │ │ │ ├── tpo,td.yaml │ │ │ ├── tpo,tpg110.yaml │ │ │ ├── visionox,r66451.yaml │ │ │ ├── visionox,rm69299.yaml │ │ │ ├── visionox,vtdr6130.yaml │ │ │ └── xinpeng,xpp055c272.yaml │ │ ├── renesas,cmm.yaml │ │ ├── renesas,du.yaml │ │ ├── renesas,rzg2l-du.yaml │ │ ├── renesas,shmobile-lcdc.yaml │ │ ├── repaper.txt │ │ ├── rockchip │ │ │ ├── cdn-dp-rockchip.txt │ │ │ ├── rockchip,analogix-dp.yaml │ │ │ ├── rockchip,dw-hdmi.yaml │ │ │ ├── rockchip,dw-mipi-dsi.yaml │ │ │ ├── rockchip,inno-hdmi.yaml │ │ │ ├── rockchip,lvds.yaml │ │ │ ├── rockchip,rk3066-hdmi.yaml │ │ │ ├── rockchip-drm.yaml │ │ │ ├── rockchip-vop.yaml │ │ │ └── rockchip-vop2.yaml │ │ ├── samsung │ │ │ ├── samsung,exynos-hdmi-ddc.yaml │ │ │ ├── samsung,exynos-hdmi.yaml │ │ │ ├── samsung,exynos-mixer.yaml │ │ │ ├── samsung,exynos5433-decon.yaml │ │ │ ├── samsung,exynos5433-mic.yaml │ │ │ ├── samsung,exynos7-decon.yaml │ │ │ └── samsung,fimd.yaml │ │ ├── simple-framebuffer.yaml │ │ ├── sitronix,st7586.txt │ │ ├── sitronix,st7735r.yaml │ │ ├── sm501fb.txt │ │ ├── snps,arcpgu.txt │ │ ├── solomon,ssd-common.yaml │ │ ├── solomon,ssd1307fb.yaml │ │ ├── solomon,ssd132x.yaml │ │ ├── solomon,ssd133x.yaml │ │ ├── sprd │ │ │ ├── sprd,display-subsystem.yaml │ │ │ ├── sprd,sharkl3-dpu.yaml │ │ │ └── sprd,sharkl3-dsi-host.yaml │ │ ├── ssd1289fb.txt │ │ ├── st,stih4xx.txt │ │ ├── st,stm32-dsi.yaml │ │ ├── st,stm32-ltdc.yaml │ │ ├── ste,mcde.yaml │ │ ├── tegra │ │ │ ├── nvidia,tegra114-mipi.yaml │ │ │ ├── nvidia,tegra124-dpaux.yaml │ │ │ ├── nvidia,tegra124-sor.yaml │ │ │ ├── nvidia,tegra124-vic.yaml │ │ │ ├── nvidia,tegra186-dc.yaml │ │ │ ├── nvidia,tegra186-display.yaml │ │ │ ├── nvidia,tegra186-dsi-padctl.yaml │ │ │ ├── nvidia,tegra20-dc.yaml │ │ │ ├── nvidia,tegra20-dsi.yaml │ │ │ ├── nvidia,tegra20-epp.yaml │ │ │ ├── nvidia,tegra20-gr2d.yaml │ │ │ ├── nvidia,tegra20-gr3d.yaml │ │ │ ├── nvidia,tegra20-hdmi.yaml │ │ │ ├── nvidia,tegra20-host1x.yaml │ │ │ ├── nvidia,tegra20-isp.yaml │ │ │ ├── nvidia,tegra20-mpe.yaml │ │ │ ├── nvidia,tegra20-tvo.yaml │ │ │ ├── nvidia,tegra20-vi.yaml │ │ │ ├── nvidia,tegra20-vip.yaml │ │ │ └── nvidia,tegra210-csi.yaml │ │ ├── ti │ │ │ ├── ti,am65x-dss.yaml │ │ │ ├── ti,dra7-dss.txt │ │ │ ├── ti,j721e-dss.yaml │ │ │ ├── ti,k2g-dss.yaml │ │ │ ├── ti,omap-dss.txt │ │ │ ├── ti,omap2-dss.txt │ │ │ ├── ti,omap3-dss.txt │ │ │ ├── ti,omap4-dss.txt │ │ │ ├── ti,omap5-dss.txt │ │ │ ├── ti,opa362.txt │ │ │ └── ti,tpd12s015.txt │ │ ├── tilcdc │ │ │ ├── panel.txt │ │ │ └── tilcdc.txt │ │ ├── truly,nt35597.txt │ │ ├── via,vt8500-fb.txt │ │ ├── wm,prizm-ge-rops.txt │ │ ├── wm,wm8505-fb.txt │ │ ├── xlnx │ │ │ └── xlnx,zynqmp-dpsub.yaml │ │ └── xylon,logicvc-display.yaml │ ├── dma │ │ ├── adi,axi-dmac.txt │ │ ├── allwinner,sun4i-a10-dma.yaml │ │ ├── allwinner,sun50i-a64-dma.yaml │ │ ├── allwinner,sun6i-a31-dma.yaml │ │ ├── altr,msgdma.yaml │ │ ├── apm-xgene-dma.txt │ │ ├── apple,admac.yaml │ │ ├── arm,pl330.yaml │ │ ├── arm-pl08x.yaml │ │ ├── atmel-dma.txt │ │ ├── atmel-xdma.txt │ │ ├── brcm,bcm2835-dma.yaml │ │ ├── brcm,iproc-sba.txt │ │ ├── dma-common.yaml │ │ ├── dma-controller.yaml │ │ ├── dma-router.yaml │ │ ├── dma.txt │ │ ├── fsl,edma.yaml │ │ ├── fsl,imx-sdma.yaml │ │ ├── fsl,mxs-dma.yaml │ │ ├── fsl-imx-dma.txt │ │ ├── fsl-qdma.txt │ │ ├── img-mdc-dma.txt │ │ ├── ingenic,dma.yaml │ │ ├── intel,ldma.yaml │ │ ├── k3dma.txt │ │ ├── loongson,ls2x-apbdma.yaml │ │ ├── lpc1850-dmamux.txt │ │ ├── marvell,mmp-dma.yaml │ │ ├── mediatek,mt7622-hsdma.yaml │ │ ├── mediatek,uart-dma.yaml │ │ ├── milbeaut-m10v-hdmac.txt │ │ ├── milbeaut-m10v-xdmac.txt │ │ ├── moxa,moxart-dma.txt │ │ ├── mpc512x-dma.txt │ │ ├── mv-xor-v2.txt │ │ ├── mv-xor.txt │ │ ├── nvidia,tegra186-gpc-dma.yaml │ │ ├── nvidia,tegra20-apbdma.txt │ │ ├── nvidia,tegra210-adma.yaml │ │ ├── owl-dma.yaml │ │ ├── qcom,adm.yaml │ │ ├── qcom,bam-dma.yaml │ │ ├── qcom,gpi.yaml │ │ ├── qcom_hidma_mgmt.txt │ │ ├── renesas,nbpfaxi.txt │ │ ├── renesas,rcar-dmac.yaml │ │ ├── renesas,rz-dmac.yaml │ │ ├── renesas,rzn1-dmamux.yaml │ │ ├── renesas,usb-dmac.yaml │ │ ├── sifive,fu540-c000-pdma.yaml │ │ ├── snps,dma-spear1340.yaml │ │ ├── snps,dw-axi-dmac.yaml │ │ ├── socionext,uniphier-mio-dmac.yaml │ │ ├── socionext,uniphier-xdmac.yaml │ │ ├── sprd-dma.txt │ │ ├── st,stm32-dma.yaml │ │ ├── st,stm32-dmamux.yaml │ │ ├── st,stm32-mdma.yaml │ │ ├── st_fdma.txt │ │ ├── stericsson,dma40.yaml │ │ ├── ti-dma-crossbar.txt │ │ ├── ti-edma.txt │ │ ├── ti │ │ │ ├── k3-bcdma.yaml │ │ │ ├── k3-pktdma.yaml │ │ │ └── k3-udma.yaml │ │ └── xilinx │ │ │ ├── xilinx_dma.txt │ │ │ ├── xlnx,zynqmp-dma-1.0.yaml │ │ │ └── xlnx,zynqmp-dpdma.yaml │ ├── dsp │ │ ├── fsl,dsp.yaml │ │ ├── mediatek,mt8186-dsp.yaml │ │ └── mediatek,mt8195-dsp.yaml │ ├── dts-coding-style.rst │ ├── dvfs │ │ └── performance-domain.yaml │ ├── edac │ │ ├── amazon,al-mc-edac.yaml │ │ ├── apm-xgene-edac.txt │ │ ├── aspeed-sdram-edac.txt │ │ ├── dmc-520.yaml │ │ └── socfpga-eccmgr.txt │ ├── eeprom │ │ ├── at24.yaml │ │ ├── at25.yaml │ │ └── microchip,93lc46b.yaml │ ├── example-schema.yaml │ ├── extcon │ │ ├── extcon-max3355.txt │ │ ├── extcon-palmas.txt │ │ ├── extcon-ptn5150.yaml │ │ ├── extcon-rt8973a.txt │ │ ├── extcon-usb-gpio.txt │ │ ├── extcon-usbc-cros-ec.yaml │ │ ├── extcon-usbc-tusb320.yaml │ │ ├── fcs,fsa880.yaml │ │ ├── maxim,max77843.yaml │ │ ├── qcom,pm8941-misc.yaml │ │ ├── siliconmitus,sm5502-muic.yaml │ │ └── wlf,arizona.yaml │ ├── firmware │ │ ├── amlogic,meson-gxbb-sm.yaml │ │ ├── arm,scmi.yaml │ │ ├── arm,scpi.yaml │ │ ├── brcm,kona-smc.yaml │ │ ├── coreboot.txt │ │ ├── cznic,turris-mox-rwtm.txt │ │ ├── fsl,scu.yaml │ │ ├── intel,ixp4xx-network-processing-engine.yaml │ │ ├── intel,stratix10-svc.txt │ │ ├── nvidia,tegra186-bpmp.yaml │ │ ├── nvidia,tegra210-bpmp.txt │ │ ├── qcom,scm.yaml │ │ ├── qemu,fw-cfg-mmio.yaml │ │ └── xilinx │ │ │ └── xlnx,zynqmp-firmware.yaml │ ├── fpga │ │ ├── altera-passive-serial.txt │ │ ├── altera-pr-ip.txt │ │ ├── altera-socfpga-a10-fpga-mgr.txt │ │ ├── altera-socfpga-fpga-mgr.txt │ │ ├── altr,freeze-bridge-controller.yaml │ │ ├── altr,socfpga-fpga2sdram-bridge.yaml │ │ ├── altr,socfpga-hps2fpga-bridge.yaml │ │ ├── fpga-bridge.yaml │ │ ├── fpga-region.yaml │ │ ├── intel-stratix10-soc-fpga-mgr.txt │ │ ├── lattice,sysconfig.yaml │ │ ├── lattice-ice40-fpga-mgr.txt │ │ ├── lattice-machxo2-spi.txt │ │ ├── microchip,mpf-spi-fpga-mgr.yaml │ │ ├── xilinx-zynq-fpga-mgr.yaml │ │ ├── xlnx,fpga-slave-serial.yaml │ │ ├── xlnx,pr-decoupler.yaml │ │ ├── xlnx,versal-fpga.yaml │ │ └── xlnx,zynqmp-pcap-fpga.yaml │ ├── fsi │ │ ├── fsi-master-aspeed.txt │ │ ├── fsi-master-ast-cf.txt │ │ ├── fsi-master-gpio.txt │ │ ├── fsi.txt │ │ ├── ibm,fsi2spi.yaml │ │ ├── ibm,i2cr-fsi-master.yaml │ │ └── ibm,p9-occ.txt │ ├── fuse │ │ └── nvidia,tegra20-fuse.yaml │ ├── gnss │ │ ├── brcm,bcm4751.yaml │ │ ├── gnss-common.yaml │ │ ├── mediatek.yaml │ │ ├── sirfstar.yaml │ │ └── u-blox,neo-6m.yaml │ ├── goldfish │ │ ├── audio.txt │ │ ├── battery.txt │ │ ├── events.txt │ │ ├── pipe.txt │ │ └── tty.txt │ ├── gpio │ │ ├── 8xxx_gpio.txt │ │ ├── abilis,tb10x-gpio.txt │ │ ├── adi,ds4520-gpio.yaml │ │ ├── airoha,en7523-gpio.yaml │ │ ├── aspeed,ast2400-gpio.yaml │ │ ├── aspeed,sgpio.yaml │ │ ├── brcm,bcm63xx-gpio.yaml │ │ ├── brcm,brcmstb-gpio.yaml │ │ ├── brcm,kona-gpio.yaml │ │ ├── brcm,xgs-iproc-gpio.yaml │ │ ├── cavium-octeon-gpio.txt │ │ ├── cdns,gpio.txt │ │ ├── cirrus,clps711x-mctrl-gpio.txt │ │ ├── delta,tn48m-gpio.yaml │ │ ├── fairchild,74hc595.yaml │ │ ├── faraday,ftgpio010.yaml │ │ ├── fcs,fxl6408.yaml │ │ ├── fsl,imx8qxp-sc-gpio.yaml │ │ ├── fsl-imx-gpio.yaml │ │ ├── fujitsu,mb86s70-gpio.yaml │ │ ├── gateworks,pld-gpio.txt │ │ ├── gpio-74xx-mmio.txt │ │ ├── gpio-adnp.txt │ │ ├── gpio-altera.txt │ │ ├── gpio-ath79.txt │ │ ├── gpio-clps711x.txt │ │ ├── gpio-consumer-common.yaml │ │ ├── gpio-davinci.yaml │ │ ├── gpio-delay.yaml │ │ ├── gpio-dsp-keystone.txt │ │ ├── gpio-ep9301.yaml │ │ ├── gpio-exar.txt │ │ ├── gpio-grgpio.txt │ │ ├── gpio-latch.yaml │ │ ├── gpio-lp3943.txt │ │ ├── gpio-max3191x.txt │ │ ├── gpio-max77620.txt │ │ ├── gpio-mm-lantiq.txt │ │ ├── gpio-mmio.yaml │ │ ├── gpio-moxtet.txt │ │ ├── gpio-mpc8xxx.txt │ │ ├── gpio-mvebu.yaml │ │ ├── gpio-mxs.yaml │ │ ├── gpio-palmas.txt │ │ ├── gpio-pca9570.yaml │ │ ├── gpio-pca95xx.yaml │ │ ├── gpio-pisosr.txt │ │ ├── gpio-rda.yaml │ │ ├── gpio-stp-xway.yaml │ │ ├── gpio-thunderx.txt │ │ ├── gpio-tpic2810.yaml │ │ ├── gpio-ts4800.txt │ │ ├── gpio-ts4900.txt │ │ ├── gpio-twl4030.txt │ │ ├── gpio-vf610.yaml │ │ ├── gpio-virtio.yaml │ │ ├── gpio-xgene-sb.txt │ │ ├── gpio-xgene.txt │ │ ├── gpio-xra1403.txt │ │ ├── gpio-zevio.txt │ │ ├── gpio-zynq.yaml │ │ ├── gpio.txt │ │ ├── gpio_atmel.txt │ │ ├── gpio_lpc32xx.txt │ │ ├── hisilicon,ascend910-gpio.yaml │ │ ├── ibm,ppc4xx-gpio.txt │ │ ├── idt,32434-gpio.yaml │ │ ├── intel,ixp4xx-gpio.yaml │ │ ├── kontron,sl28cpld-gpio.yaml │ │ ├── loongson,ls-gpio.yaml │ │ ├── loongson,ls1x-gpio.yaml │ │ ├── mediatek,mt7621-gpio.yaml │ │ ├── microchip,mpfs-gpio.yaml │ │ ├── microchip,pic32-gpio.txt │ │ ├── mrvl-gpio.yaml │ │ ├── mstar,msc313-gpio.yaml │ │ ├── netxbig-gpio-ext.txt │ │ ├── nintendo,hollywood-gpio.txt │ │ ├── nuvoton,sgpio.yaml │ │ ├── nvidia,tegra186-gpio.yaml │ │ ├── nvidia,tegra20-gpio.yaml │ │ ├── nxp,lpc1850-gpio.txt │ │ ├── nxp,pcf8575.yaml │ │ ├── pl061-gpio.yaml │ │ ├── qcom,wcd934x-gpio.yaml │ │ ├── raspberrypi,firmware-gpio.txt │ │ ├── realtek,otto-gpio.yaml │ │ ├── realtek,rtd-gpio.yaml │ │ ├── renesas,em-gio.yaml │ │ ├── renesas,rcar-gpio.yaml │ │ ├── rockchip,gpio-bank.yaml │ │ ├── rockchip,rk3328-grf-gpio.yaml │ │ ├── sifive,gpio.yaml │ │ ├── snps,creg-gpio.txt │ │ ├── snps,dw-apb-gpio.yaml │ │ ├── socionext,uniphier-gpio.yaml │ │ ├── sodaville.txt │ │ ├── spear_spics.txt │ │ ├── sprd,gpio-eic.yaml │ │ ├── sprd,gpio.yaml │ │ ├── st,nomadik-gpio.yaml │ │ ├── st,stmpe-gpio.yaml │ │ ├── ti,omap-gpio.yaml │ │ ├── toshiba,gpio-visconti.yaml │ │ ├── x-powers,axp209-gpio.yaml │ │ ├── xlnx,gpio-xilinx.yaml │ │ ├── xlnx,zynqmp-gpio-modepin.yaml │ │ └── xylon,logicvc-gpio.yaml │ ├── gpu │ │ ├── arm,mali-bifrost.yaml │ │ ├── arm,mali-midgard.yaml │ │ ├── arm,mali-utgard.yaml │ │ ├── aspeed-gfx.txt │ │ ├── brcm,bcm-v3d.yaml │ │ ├── host1x │ │ │ ├── nvidia,tegra210-nvdec.yaml │ │ │ ├── nvidia,tegra210-nvenc.yaml │ │ │ ├── nvidia,tegra210-nvjpg.yaml │ │ │ └── nvidia,tegra234-nvdec.yaml │ │ ├── img,powervr-rogue.yaml │ │ ├── img,powervr-sgx.yaml │ │ ├── nvidia,gk20a.txt │ │ ├── samsung-g2d.yaml │ │ ├── samsung-rotator.yaml │ │ ├── samsung-scaler.yaml │ │ └── vivante,gc.yaml │ ├── graph.txt │ ├── hsi │ │ ├── client-devices.txt │ │ ├── nokia-modem.txt │ │ └── omap-ssi.txt │ ├── hwinfo │ │ ├── loongson,ls2k-chipid.yaml │ │ ├── renesas,prr.yaml │ │ ├── samsung,exynos-chipid.yaml │ │ ├── samsung,s5pv210-chipid.yaml │ │ └── ti,k3-socinfo.yaml │ ├── hwlock │ │ ├── allwinner,sun6i-a31-hwspinlock.yaml │ │ ├── hwlock.txt │ │ ├── qcom-hwspinlock.yaml │ │ ├── sprd-hwspinlock.txt │ │ ├── st,stm32-hwspinlock.yaml │ │ └── ti,omap-hwspinlock.yaml │ ├── hwmon │ │ ├── adc128d818.txt │ │ ├── adi,ad741x.yaml │ │ ├── adi,adm1177.yaml │ │ ├── adi,adm1266.yaml │ │ ├── adi,adm1275.yaml │ │ ├── adi,axi-fan-control.yaml │ │ ├── adi,ltc2945.yaml │ │ ├── adi,ltc2947.yaml │ │ ├── adi,ltc2991.yaml │ │ ├── adi,ltc2992.yaml │ │ ├── adi,ltc4282.yaml │ │ ├── adi,max31760.yaml │ │ ├── adi,max31827.yaml │ │ ├── adt7475.yaml │ │ ├── amd,sbrmi.yaml │ │ ├── amd,sbtsi.yaml │ │ ├── amphenol,chipcap2.yaml │ │ ├── apm-xgene-hwmon.txt │ │ ├── as370.txt │ │ ├── aspeed,g6-pwm-tach.yaml │ │ ├── aspeed-pwm-tacho.txt │ │ ├── baikal,bt1-pvt.yaml │ │ ├── cirrus,lochnagar.yaml │ │ ├── fan-common.yaml │ │ ├── g762.txt │ │ ├── gpio-fan.yaml │ │ ├── hpe,gxp-fan-ctrl.yaml │ │ ├── hwmon-common.yaml │ │ ├── ibm,occ-hwmon.yaml │ │ ├── ibm,p8-occ-hwmon.txt │ │ ├── ibmpowernv.txt │ │ ├── iio-hwmon.yaml │ │ ├── jedec,jc42.yaml │ │ ├── kontron,sl28cpld-hwmon.yaml │ │ ├── lltc,ltc4151.yaml │ │ ├── lltc,ltc4286.yaml │ │ ├── lm75.yaml │ │ ├── lm87.txt │ │ ├── ltc2978.txt │ │ ├── ltc2990.txt │ │ ├── ltq-cputemp.txt │ │ ├── max31785.txt │ │ ├── max6650.txt │ │ ├── max6697.txt │ │ ├── maxim,max20730.yaml │ │ ├── microchip,lan966x.yaml │ │ ├── microchip,mcp3021.yaml │ │ ├── microchip,sparx5-temp.yaml │ │ ├── moortec,mr75203.yaml │ │ ├── national,lm90.yaml │ │ ├── npcm750-pwm-fan.txt │ │ ├── nsa320-mcu.txt │ │ ├── ntc-thermistor.yaml │ │ ├── nuvoton,nct6775.yaml │ │ ├── nuvoton,nct7802.yaml │ │ ├── nxp,mc34vr500.yaml │ │ ├── pmbus │ │ │ ├── infineon,tda38640.yaml │ │ │ ├── ti,lm25066.yaml │ │ │ └── ti,ucd90320.yaml │ │ ├── pwm-fan.txt │ │ ├── pwm-fan.yaml │ │ ├── sensirion,sht15.yaml │ │ ├── sensirion,shtc1.yaml │ │ ├── starfive,jh71x0-temp.yaml │ │ ├── stts751.txt │ │ ├── ti,ads7828.yaml │ │ ├── ti,ina2xx.yaml │ │ ├── ti,ina3221.yaml │ │ ├── ti,tmp102.yaml │ │ ├── ti,tmp108.yaml │ │ ├── ti,tmp401.yaml │ │ ├── ti,tmp421.yaml │ │ ├── ti,tmp464.yaml │ │ ├── ti,tmp513.yaml │ │ ├── ti,tps23861.yaml │ │ ├── vexpress.txt │ │ └── winbond,w83781d.yaml │ ├── i2c │ │ ├── allwinner,sun6i-a31-p2wi.yaml │ │ ├── amlogic,meson6-i2c.yaml │ │ ├── apple,i2c.yaml │ │ ├── arm,i2c-versatile.yaml │ │ ├── aspeed,i2c.yaml │ │ ├── atmel,at91sam-i2c.yaml │ │ ├── brcm,bcm2835-i2c.yaml │ │ ├── brcm,brcmstb-i2c.yaml │ │ ├── brcm,iproc-i2c.yaml │ │ ├── brcm,kona-i2c.yaml │ │ ├── cdns,i2c-r1p10.yaml │ │ ├── google,cros-ec-i2c-tunnel.yaml │ │ ├── hisilicon,ascend910-i2c.yaml │ │ ├── hpe,gxp-i2c.yaml │ │ ├── i2c-altera.txt │ │ ├── i2c-arb-gpio-challenge.yaml │ │ ├── i2c-atr.yaml │ │ ├── i2c-axxia.txt │ │ ├── i2c-cbus-gpio.txt │ │ ├── i2c-davinci.txt │ │ ├── i2c-demux-pinctrl.yaml │ │ ├── i2c-digicolor.txt │ │ ├── i2c-exynos5.yaml │ │ ├── i2c-fsi.txt │ │ ├── i2c-gate.yaml │ │ ├── i2c-gpio.yaml │ │ ├── i2c-hix5hd2.txt │ │ ├── i2c-img-scb.txt │ │ ├── i2c-imx-lpi2c.yaml │ │ ├── i2c-imx.yaml │ │ ├── i2c-iop3xx.txt │ │ ├── i2c-lpc2k.txt │ │ ├── i2c-mpc.yaml │ │ ├── i2c-mt65xx.yaml │ │ ├── i2c-mux-gpio.yaml │ │ ├── i2c-mux-gpmux.yaml │ │ ├── i2c-mux-ltc4306.txt │ │ ├── i2c-mux-pca954x.yaml │ │ ├── i2c-mux-pinctrl.yaml │ │ ├── i2c-mux-reg.txt │ │ ├── i2c-mux.yaml │ │ ├── i2c-mxs.yaml │ │ ├── i2c-octeon.txt │ │ ├── i2c-opal.txt │ │ ├── i2c-owl.yaml │ │ ├── i2c-pca-platform.txt │ │ ├── i2c-pnx.txt │ │ ├── i2c-pxa-pci-ce4100.txt │ │ ├── i2c-pxa.yaml │ │ ├── i2c-rk3x.yaml │ │ ├── i2c-sprd.txt │ │ ├── i2c-virtio.yaml │ │ ├── i2c-wmt.txt │ │ ├── i2c-xgene-slimpro.txt │ │ ├── ingenic,i2c.yaml │ │ ├── loongson,ls2x-i2c.yaml │ │ ├── marvell,mv64xxx-i2c.yaml │ │ ├── mediatek,mt7621-i2c.yaml │ │ ├── microchip,corei2c.yaml │ │ ├── nuvoton,npcm7xx-i2c.yaml │ │ ├── nvidia,tegra186-bpmp-i2c.yaml │ │ ├── nvidia,tegra20-i2c.yaml │ │ ├── nxp,pca9541.yaml │ │ ├── opencores,i2c-ocores.yaml │ │ ├── qcom,i2c-cci.yaml │ │ ├── qcom,i2c-geni-qcom.yaml │ │ ├── qcom,i2c-qup.yaml │ │ ├── renesas,iic-emev2.yaml │ │ ├── renesas,rcar-i2c.yaml │ │ ├── renesas,riic.yaml │ │ ├── renesas,rmobile-iic.yaml │ │ ├── renesas,rzv2m.yaml │ │ ├── samsung,s3c2410-i2c.yaml │ │ ├── snps,designware-i2c.yaml │ │ ├── socionext,synquacer-i2c.yaml │ │ ├── socionext,uniphier-fi2c.yaml │ │ ├── socionext,uniphier-i2c.yaml │ │ ├── st,nomadik-i2c.yaml │ │ ├── st,sti-i2c.yaml │ │ ├── st,stm32-i2c.yaml │ │ ├── ti,omap4-i2c.yaml │ │ └── xlnx,xps-iic-2.00.a.yaml │ ├── i3c │ │ ├── aspeed,ast2600-i3c.yaml │ │ ├── cdns,i3c-master.yaml │ │ ├── i3c.yaml │ │ ├── mipi-i3c-hci.yaml │ │ ├── silvaco,i3c-master.yaml │ │ └── snps,dw-i3c-master.yaml │ ├── iio │ │ ├── accel │ │ │ ├── adi,adis16201.yaml │ │ │ ├── adi,adis16240.yaml │ │ │ ├── adi,adxl313.yaml │ │ │ ├── adi,adxl345.yaml │ │ │ ├── adi,adxl355.yaml │ │ │ ├── adi,adxl367.yaml │ │ │ ├── adi,adxl372.yaml │ │ │ ├── bosch,bma220.yaml │ │ │ ├── bosch,bma255.yaml │ │ │ ├── bosch,bma400.yaml │ │ │ ├── bosch,bmi088.yaml │ │ │ ├── fsl,mma7455.yaml │ │ │ ├── fsl,mma8452.yaml │ │ │ ├── kionix,kx022a.yaml │ │ │ ├── kionix,kxcjk1013.yaml │ │ │ ├── kionix,kxsd9.yaml │ │ │ ├── lis302.txt │ │ │ ├── memsensing,msa311.yaml │ │ │ ├── murata,sca3300.yaml │ │ │ └── nxp,fxls8962af.yaml │ │ ├── adc │ │ │ ├── adc.yaml │ │ │ ├── adi,ad4130.yaml │ │ │ ├── adi,ad7091r5.yaml │ │ │ ├── adi,ad7124.yaml │ │ │ ├── adi,ad7192.yaml │ │ │ ├── adi,ad7280a.yaml │ │ │ ├── adi,ad7291.yaml │ │ │ ├── adi,ad7292.yaml │ │ │ ├── adi,ad7298.yaml │ │ │ ├── adi,ad7476.yaml │ │ │ ├── adi,ad7606.yaml │ │ │ ├── adi,ad7768-1.yaml │ │ │ ├── adi,ad7780.yaml │ │ │ ├── adi,ad7923.yaml │ │ │ ├── adi,ad7949.yaml │ │ │ ├── adi,ad799x.yaml │ │ │ ├── adi,ad9467.yaml │ │ │ ├── adi,axi-adc.yaml │ │ │ ├── adi,max11410.yaml │ │ │ ├── allwinner,sun20i-d1-gpadc.yaml │ │ │ ├── allwinner,sun8i-a33-ths.yaml │ │ │ ├── amlogic,meson-saradc.yaml │ │ │ ├── aspeed,ast2400-adc.yaml │ │ │ ├── aspeed,ast2600-adc.yaml │ │ │ ├── atmel,sama5d2-adc.yaml │ │ │ ├── atmel,sama9260-adc.yaml │ │ │ ├── avia-hx711.yaml │ │ │ ├── brcm,iproc-static-adc.yaml │ │ │ ├── cirrus,ep9301-adc.yaml │ │ │ ├── cosmic,10001-adc.yaml │ │ │ ├── dlg,da9150-gpadc.yaml │ │ │ ├── envelope-detector.yaml │ │ │ ├── fsl,imx25-gcq.yaml │ │ │ ├── fsl,imx7d-adc.yaml │ │ │ ├── fsl,vf610-adc.yaml │ │ │ ├── holt,hi8435.yaml │ │ │ ├── ingenic,adc.yaml │ │ │ ├── lltc,ltc2496.yaml │ │ │ ├── lltc,ltc2497.yaml │ │ │ ├── marvell,berlin2-adc.yaml │ │ │ ├── maxim,max1027.yaml │ │ │ ├── maxim,max11100.yaml │ │ │ ├── maxim,max1118.yaml │ │ │ ├── maxim,max11205.yaml │ │ │ ├── maxim,max1238.yaml │ │ │ ├── maxim,max1241.yaml │ │ │ ├── maxim,max1363.yaml │ │ │ ├── maxim,max34408.yaml │ │ │ ├── maxim,max9611.yaml │ │ │ ├── mediatek,mt2701-auxadc.yaml │ │ │ ├── mediatek,mt6360-adc.yaml │ │ │ ├── microchip,mcp3201.yaml │ │ │ ├── microchip,mcp3564.yaml │ │ │ ├── microchip,mcp3911.yaml │ │ │ ├── microchip,pac1934.yaml │ │ │ ├── motorola,cpcap-adc.yaml │ │ │ ├── nuvoton,nau7802.yaml │ │ │ ├── nuvoton,npcm750-adc.yaml │ │ │ ├── nxp,imx8qxp-adc.yaml │ │ │ ├── nxp,imx93-adc.yaml │ │ │ ├── nxp,lpc1850-adc.yaml │ │ │ ├── nxp,lpc3220-adc.yaml │ │ │ ├── qcom,pm8018-adc.yaml │ │ │ ├── qcom,spmi-iadc.yaml │ │ │ ├── qcom,spmi-rradc.yaml │ │ │ ├── qcom,spmi-vadc.yaml │ │ │ ├── renesas,rcar-gyroadc.yaml │ │ │ ├── renesas,rzg2l-adc.yaml │ │ │ ├── richtek,rtq6056.yaml │ │ │ ├── rockchip-saradc.yaml │ │ │ ├── samsung,exynos-adc.yaml │ │ │ ├── sigma-delta-modulator.yaml │ │ │ ├── sprd,sc2720-adc.yaml │ │ │ ├── st,stm32-adc.yaml │ │ │ ├── st,stm32-dfsdm-adc.yaml │ │ │ ├── st,stmpe-adc.yaml │ │ │ ├── ti,adc081c.yaml │ │ │ ├── ti,adc0832.yaml │ │ │ ├── ti,adc084s021.yaml │ │ │ ├── ti,adc108s102.yaml │ │ │ ├── ti,adc12138.yaml │ │ │ ├── ti,adc128s052.yaml │ │ │ ├── ti,adc161s626.yaml │ │ │ ├── ti,ads1015.yaml │ │ │ ├── ti,ads1100.yaml │ │ │ ├── ti,ads124s08.yaml │ │ │ ├── ti,ads1298.yaml │ │ │ ├── ti,ads131e08.yaml │ │ │ ├── ti,ads7924.yaml │ │ │ ├── ti,ads7950.yaml │ │ │ ├── ti,ads8344.yaml │ │ │ ├── ti,ads8688.yaml │ │ │ ├── ti,am3359-adc.yaml │ │ │ ├── ti,lmp92064.yaml │ │ │ ├── ti,palmas-gpadc.yaml │ │ │ ├── ti,tlc4541.yaml │ │ │ ├── ti,tsc2046.yaml │ │ │ ├── ti,twl4030-madc.yaml │ │ │ ├── ti,twl6030-gpadc.yaml │ │ │ ├── x-powers,axp209-adc.yaml │ │ │ ├── xilinx-xadc.txt │ │ │ └── xlnx,zynqmp-ams.yaml │ │ ├── addac │ │ │ ├── adi,ad74115.yaml │ │ │ └── adi,ad74413r.yaml │ │ ├── afe │ │ │ ├── current-sense-amplifier.yaml │ │ │ ├── current-sense-shunt.yaml │ │ │ ├── temperature-sense-rtd.yaml │ │ │ ├── temperature-transducer.yaml │ │ │ └── voltage-divider.yaml │ │ ├── amplifiers │ │ │ ├── adi,ada4250.yaml │ │ │ └── adi,hmc425a.yaml │ │ ├── cdc │ │ │ ├── adi,ad7150.yaml │ │ │ └── adi,ad7746.yaml │ │ ├── chemical │ │ │ ├── ams,ccs811.yaml │ │ │ ├── aosong,ags02ma.yaml │ │ │ ├── atlas,sensor.yaml │ │ │ ├── plantower,pms7003.yaml │ │ │ ├── senseair,sunrise.yaml │ │ │ ├── sensirion,scd30.yaml │ │ │ ├── sensirion,scd4x.yaml │ │ │ └── sensirion,sps30.yaml │ │ ├── common.yaml │ │ ├── dac │ │ │ ├── adi,ad3552r.yaml │ │ │ ├── adi,ad5064.yaml │ │ │ ├── adi,ad5360.yaml │ │ │ ├── adi,ad5380.yaml │ │ │ ├── adi,ad5421.yaml │ │ │ ├── adi,ad5449.yaml │ │ │ ├── adi,ad5504.yaml │ │ │ ├── adi,ad5592r.yaml │ │ │ ├── adi,ad5624r.yaml │ │ │ ├── adi,ad5686.yaml │ │ │ ├── adi,ad5696.yaml │ │ │ ├── adi,ad5755.yaml │ │ │ ├── adi,ad5758.yaml │ │ │ ├── adi,ad5761.yaml │ │ │ ├── adi,ad5764.yaml │ │ │ ├── adi,ad5766.yaml │ │ │ ├── adi,ad5770r.yaml │ │ │ ├── adi,ad5791.yaml │ │ │ ├── adi,ad7293.yaml │ │ │ ├── adi,ad7303.yaml │ │ │ ├── adi,ad8801.yaml │ │ │ ├── adi,ltc2688.yaml │ │ │ ├── dpot-dac.yaml │ │ │ ├── fsl,vf610-dac.yaml │ │ │ ├── lltc,ltc1660.yaml │ │ │ ├── lltc,ltc2632.yaml │ │ │ ├── maxim,ds4424.yaml │ │ │ ├── maxim,max5522.yaml │ │ │ ├── maxim,max5821.yaml │ │ │ ├── microchip,mcp4725.yaml │ │ │ ├── microchip,mcp4728.yaml │ │ │ ├── microchip,mcp4821.yaml │ │ │ ├── microchip,mcp4922.yaml │ │ │ ├── nxp,lpc1850-dac.yaml │ │ │ ├── st,stm32-dac.yaml │ │ │ ├── ti,dac082s085.yaml │ │ │ ├── ti,dac5571.yaml │ │ │ ├── ti,dac7311.yaml │ │ │ ├── ti,dac7512.yaml │ │ │ └── ti,dac7612.yaml │ │ ├── filter │ │ │ └── adi,admv8818.yaml │ │ ├── frequency │ │ │ ├── adf4371.yaml │ │ │ ├── adi,adf4350.yaml │ │ │ ├── adi,adf4377.yaml │ │ │ ├── adi,admfm2000.yaml │ │ │ ├── adi,admv1013.yaml │ │ │ ├── adi,admv1014.yaml │ │ │ ├── adi,admv4420.yaml │ │ │ └── adi,adrf6780.yaml │ │ ├── gyroscope │ │ │ ├── adi,adxrs290.yaml │ │ │ ├── bosch,bmg160.yaml │ │ │ ├── invensense,mpu3050.yaml │ │ │ └── nxp,fxas21002c.yaml │ │ ├── health │ │ │ ├── maxim,max30100.yaml │ │ │ ├── maxim,max30102.yaml │ │ │ ├── ti,afe4403.yaml │ │ │ └── ti,afe4404.yaml │ │ ├── humidity │ │ │ ├── dht11.yaml │ │ │ ├── st,hts221.yaml │ │ │ ├── ti,hdc2010.yaml │ │ │ └── ti,hdc3020.yaml │ │ ├── impedance-analyzer │ │ │ └── adi,ad5933.yaml │ │ ├── imu │ │ │ ├── adi,adis16460.yaml │ │ │ ├── adi,adis16475.yaml │ │ │ ├── adi,adis16480.yaml │ │ │ ├── bosch,bmi160.yaml │ │ │ ├── bosch,bmi323.yaml │ │ │ ├── bosch,bno055.yaml │ │ │ ├── invensense,icm42600.yaml │ │ │ ├── invensense,mpu6050.yaml │ │ │ ├── nxp,fxos8700.yaml │ │ │ └── st,lsm6dsx.yaml │ │ ├── light │ │ │ ├── adux1020.yaml │ │ │ ├── ams,as73211.yaml │ │ │ ├── amstaos,tsl2563.yaml │ │ │ ├── amstaos,tsl2591.yaml │ │ │ ├── avago,apds9300.yaml │ │ │ ├── avago,apds9960.yaml │ │ │ ├── bh1750.yaml │ │ │ ├── capella,cm3605.yaml │ │ │ ├── capella,cm36651.yaml │ │ │ ├── dynaimage,al3010.yaml │ │ │ ├── dynaimage,al3320a.yaml │ │ │ ├── isl29018.yaml │ │ │ ├── liteon,ltr390.yaml │ │ │ ├── liteon,ltr501.yaml │ │ │ ├── liteon,ltrf216a.yaml │ │ │ ├── maxim,max44009.yaml │ │ │ ├── noa1305.yaml │ │ │ ├── rohm,bu27008.yaml │ │ │ ├── rohm,bu27010.yaml │ │ │ ├── rohm,bu27034.yaml │ │ │ ├── sharp,gp2ap002.yaml │ │ │ ├── sharp,gp2ap020a00f.yaml │ │ │ ├── st,uvis25.yaml │ │ │ ├── st,vl6180.yaml │ │ │ ├── stk33xx.yaml │ │ │ ├── ti,opt3001.yaml │ │ │ ├── ti,opt4001.yaml │ │ │ ├── tsl2583.yaml │ │ │ ├── tsl2772.yaml │ │ │ ├── upisemi,us5182.yaml │ │ │ ├── veml6030.yaml │ │ │ ├── vishay,vcnl4000.yaml │ │ │ ├── vishay,vcnl4035.yaml │ │ │ └── vishay,veml6075.yaml │ │ ├── magnetometer │ │ │ ├── asahi-kasei,ak8974.yaml │ │ │ ├── asahi-kasei,ak8975.yaml │ │ │ ├── bosch,bmc150_magn.yaml │ │ │ ├── fsl,mag3110.yaml │ │ │ ├── honeywell,hmc5843.yaml │ │ │ ├── pni,rm3100.yaml │ │ │ ├── ti,tmag5273.yaml │ │ │ ├── voltafield,af8133j.yaml │ │ │ └── yamaha,yas530.yaml │ │ ├── mount-matrix.txt │ │ ├── multiplexer │ │ │ └── io-channel-mux.yaml │ │ ├── potentiometer │ │ │ ├── adi,ad5272.yaml │ │ │ ├── max5432.yaml │ │ │ ├── microchip,mcp41010.yaml │ │ │ ├── microchip,mcp4131.yaml │ │ │ ├── microchip,mcp4531.yaml │ │ │ └── renesas,x9250.yaml │ │ ├── potentiostat │ │ │ └── ti,lmp91000.yaml │ │ ├── pressure │ │ │ ├── asc,dlhl60d.yaml │ │ │ ├── bmp085.yaml │ │ │ ├── honeywell,hsc030pa.yaml │ │ │ ├── honeywell,mprls0025pa.yaml │ │ │ ├── hoperf,hp03.yaml │ │ │ ├── meas,ms5611.yaml │ │ │ ├── murata,zpa2326.yaml │ │ │ └── rohm,bm1390.yaml │ │ ├── proximity │ │ │ ├── ams,as3935.yaml │ │ │ ├── devantech-srf04.yaml │ │ │ ├── google,cros-ec-mkbp-proximity.yaml │ │ │ ├── maxbotix,mb1232.yaml │ │ │ ├── murata,irsd200.yaml │ │ │ ├── parallax-ping.yaml │ │ │ ├── semtech,sx9310.yaml │ │ │ ├── semtech,sx9324.yaml │ │ │ ├── semtech,sx9360.yaml │ │ │ ├── semtech,sx9500.yaml │ │ │ ├── st,vl53l0x.yaml │ │ │ └── vishay,vcnl3020.yaml │ │ ├── resolver │ │ │ ├── adi,ad2s1210.yaml │ │ │ └── adi,ad2s90.yaml │ │ ├── samsung,sensorhub-rinato.yaml │ │ ├── st,st-sensors.yaml │ │ └── temperature │ │ │ ├── adi,ltc2983.yaml │ │ │ ├── maxim,max31855k.yaml │ │ │ ├── maxim,max31856.yaml │ │ │ ├── maxim,max31865.yaml │ │ │ ├── melexis,mlx90614.yaml │ │ │ ├── melexis,mlx90632.yaml │ │ │ ├── microchip,mcp9600.yaml │ │ │ ├── ti,tmp006.yaml │ │ │ ├── ti,tmp007.yaml │ │ │ └── ti,tmp117.yaml │ ├── index.rst │ ├── infiniband │ │ └── hisilicon-hns-roce.txt │ ├── input │ │ ├── adafruit,seesaw-gamepad.yaml │ │ ├── adc-joystick.yaml │ │ ├── adc-keys.yaml │ │ ├── adi,adp5588.yaml │ │ ├── allwinner,sun4i-a10-lradc-keys.yaml │ │ ├── ariel-pwrbutton.yaml │ │ ├── atmel,captouch.yaml │ │ ├── atmel,maxtouch.yaml │ │ ├── azoteq,iqs7222.yaml │ │ ├── brcm,bcm-keypad.txt │ │ ├── clps711x-keypad.txt │ │ ├── cpcap-pwrbutton.txt │ │ ├── cypress,cyapa.yaml │ │ ├── cypress,tm2-touchkey.yaml │ │ ├── cypress-sf.yaml │ │ ├── dlg,da7280.txt │ │ ├── dlg,da9062-onkey.yaml │ │ ├── dlink,dir685-touchkeys.txt │ │ ├── e3x0-button.txt │ │ ├── elan,ekth3000.yaml │ │ ├── elan,ekth6915.yaml │ │ ├── fsl,mpr121-touchkey.yaml │ │ ├── fsl,scu-key.yaml │ │ ├── goodix,gt7375p.yaml │ │ ├── google,cros-ec-keyb.yaml │ │ ├── gpio-beeper.yaml │ │ ├── gpio-decoder.txt │ │ ├── gpio-keys.yaml │ │ ├── gpio-matrix-keypad.txt │ │ ├── gpio-mouse.yaml │ │ ├── gpio-vibrator.yaml │ │ ├── hid-over-i2c.yaml │ │ ├── ibm,op-panel.yaml │ │ ├── ilitek,ili9882t.yaml │ │ ├── imx-keypad.yaml │ │ ├── input-reset.txt │ │ ├── input.yaml │ │ ├── iqs269a.yaml │ │ ├── iqs626a.yaml │ │ ├── iqs62x-keys.yaml │ │ ├── lpc32xx-key.txt │ │ ├── matrix-keymap.txt │ │ ├── matrix-keymap.yaml │ │ ├── max77650-onkey.yaml │ │ ├── mediatek,mt6779-keypad.yaml │ │ ├── mediatek,pmic-keys.yaml │ │ ├── microchip,cap11xx.yaml │ │ ├── microchip,qt1050.txt │ │ ├── nvidia,tegra20-kbc.txt │ │ ├── omap-keypad.txt │ │ ├── pine64,pinephone-keyboard.yaml │ │ ├── ps2keyb-mouse-apbps2.txt │ │ ├── pwm-beeper.yaml │ │ ├── pwm-vibrator.yaml │ │ ├── pxa27x-keypad.txt │ │ ├── qcom,pm8921-keypad.yaml │ │ ├── qcom,pm8921-pwrkey.yaml │ │ ├── qcom,pm8941-pwrkey.yaml │ │ ├── qcom,pm8xxx-vib.yaml │ │ ├── raydium_i2c_ts.txt │ │ ├── regulator-haptic.yaml │ │ ├── rotary-encoder.txt │ │ ├── samsung,s3c6410-keypad.yaml │ │ ├── spear-keyboard.txt │ │ ├── sprd,sc27xx-vibrator.yaml │ │ ├── st-keyscan.txt │ │ ├── syna,rmi4.yaml │ │ ├── tca8418_keypad.txt │ │ ├── ti,drv260x.yaml │ │ ├── ti,drv266x.yaml │ │ ├── ti,nspire-keypad.txt │ │ ├── ti,palmas-pwrbutton.txt │ │ ├── touchscreen │ │ │ ├── ad7879.txt │ │ │ ├── ads7846.txt │ │ │ ├── ar1021.txt │ │ │ ├── auo_pixcir_ts.txt │ │ │ ├── azoteq,iqs5xx.yaml │ │ │ ├── azoteq,iqs7211.yaml │ │ │ ├── brcm,iproc-touchscreen.txt │ │ │ ├── bu21013.txt │ │ │ ├── bu21029.txt │ │ │ ├── chipone,icn8318.yaml │ │ │ ├── colibri-vf50-ts.txt │ │ │ ├── cypress,cy8ctma140.yaml │ │ │ ├── cypress,cy8ctma340.yaml │ │ │ ├── cypress,tt21000.yaml │ │ │ ├── edt-ft5x06.yaml │ │ │ ├── eeti,exc3000.yaml │ │ │ ├── eeti.txt │ │ │ ├── egalax-ts.txt │ │ │ ├── ektf2127.txt │ │ │ ├── elan,elants_i2c.yaml │ │ │ ├── fsl,imx6ul-tsc.yaml │ │ │ ├── fsl-mx25-tcq.txt │ │ │ ├── goodix,gt9916.yaml │ │ │ ├── goodix.yaml │ │ │ ├── hideep.txt │ │ │ ├── himax,hx83112b.yaml │ │ │ ├── hycon,hy46xx.yaml │ │ │ ├── hynitron,cstxxx.yaml │ │ │ ├── ilitek_ts_i2c.yaml │ │ │ ├── imagis,ist3038c.yaml │ │ │ ├── lpc32xx-tsc.txt │ │ │ ├── max11801-ts.txt │ │ │ ├── melfas,mms114.yaml │ │ │ ├── melfas_mip4.txt │ │ │ ├── mstar,msg2638.yaml │ │ │ ├── neonode,zforce.yaml │ │ │ ├── pixcir,pixcir_ts.yaml │ │ │ ├── raspberrypi,firmware-ts.txt │ │ │ ├── resistive-adc-touch.yaml │ │ │ ├── samsung,s6sy761.yaml │ │ │ ├── silead,gsl1680.yaml │ │ │ ├── sis_i2c.txt │ │ │ ├── sitronix,st1232.yaml │ │ │ ├── st,stmfts.yaml │ │ │ ├── sx8654.txt │ │ │ ├── ti,am3359-tsc.yaml │ │ │ ├── ti,tsc2005.yaml │ │ │ ├── touchscreen.txt │ │ │ ├── touchscreen.yaml │ │ │ ├── ts4800-ts.txt │ │ │ ├── tsc2007.txt │ │ │ ├── zet6223.txt │ │ │ └── zinitix,bt400.yaml │ │ ├── tps65218-pwrbutton.txt │ │ ├── twl4030-keypad.txt │ │ ├── twl4030-pwrbutton.txt │ │ └── zii,rave-sp-pwrbutton.txt │ ├── interconnect │ │ ├── fsl,imx8m-noc.yaml │ │ ├── interconnect.txt │ │ ├── mediatek,cci.yaml │ │ ├── qcom,bcm-voter.yaml │ │ ├── qcom,msm8939.yaml │ │ ├── qcom,msm8974.yaml │ │ ├── qcom,msm8996.yaml │ │ ├── qcom,msm8998-bwmon.yaml │ │ ├── qcom,osm-l3.yaml │ │ ├── qcom,qcm2290.yaml │ │ ├── qcom,qdu1000-rpmh.yaml │ │ ├── qcom,rpm-common.yaml │ │ ├── qcom,rpm.yaml │ │ ├── qcom,rpmh-common.yaml │ │ ├── qcom,rpmh.yaml │ │ ├── qcom,sa8775p-rpmh.yaml │ │ ├── qcom,sc7280-rpmh.yaml │ │ ├── qcom,sc8280xp-rpmh.yaml │ │ ├── qcom,sdm660.yaml │ │ ├── qcom,sdx75-rpmh.yaml │ │ ├── qcom,sm6115.yaml │ │ ├── qcom,sm6350-rpmh.yaml │ │ ├── qcom,sm7150-rpmh.yaml │ │ ├── qcom,sm8450-rpmh.yaml │ │ ├── qcom,sm8550-rpmh.yaml │ │ ├── qcom,sm8650-rpmh.yaml │ │ ├── qcom,x1e80100-rpmh.yaml │ │ └── samsung,exynos-bus.yaml │ ├── interrupt-controller │ │ ├── abilis,tb10x-ictl.txt │ │ ├── actions,owl-sirq.yaml │ │ ├── al,alpine-msix.txt │ │ ├── allwinner,sun4i-a10-ic.yaml │ │ ├── allwinner,sun6i-a31-r-intc.yaml │ │ ├── allwinner,sun7i-a20-sc-nmi.yaml │ │ ├── amazon,al-fic.txt │ │ ├── amlogic,meson-gpio-intc.yaml │ │ ├── apple,aic.yaml │ │ ├── apple,aic2.yaml │ │ ├── arm,gic-v3.yaml │ │ ├── arm,gic.yaml │ │ ├── arm,nvic.txt │ │ ├── arm,versatile-fpga-irq.txt │ │ ├── arm,vic.yaml │ │ ├── aspeed,ast2400-i2c-ic.txt │ │ ├── aspeed,ast2400-vic.txt │ │ ├── aspeed,ast2xxx-scu-ic.txt │ │ ├── atmel,aic.yaml │ │ ├── brcm,bcm2835-armctrl-ic.txt │ │ ├── brcm,bcm2836-l1-intc.txt │ │ ├── brcm,bcm6345-l1-intc.txt │ │ ├── brcm,bcm7038-l1-intc.yaml │ │ ├── brcm,bcm7120-l2-intc.yaml │ │ ├── brcm,l2-intc.yaml │ │ ├── cdns,xtensa-mx.txt │ │ ├── cdns,xtensa-pic.txt │ │ ├── cirrus,clps711x-intc.txt │ │ ├── csky,apb-intc.txt │ │ ├── csky,mpintc.txt │ │ ├── digicolor-ic.txt │ │ ├── ezchip,nps400-ic.txt │ │ ├── faraday,ftintc010.txt │ │ ├── fsl,intmux.yaml │ │ ├── fsl,irqsteer.yaml │ │ ├── fsl,ls-extirq.yaml │ │ ├── fsl,ls-scfg-msi.txt │ │ ├── fsl,mu-msi.yaml │ │ ├── google,goldfish-pic.txt │ │ ├── hisilicon,mbigen-v2.txt │ │ ├── idt,32434-pic.yaml │ │ ├── img,pdc-intc.txt │ │ ├── ingenic,intc.yaml │ │ ├── intel,ce4100-ioapic.yaml │ │ ├── intel,ce4100-lapic.yaml │ │ ├── intel,ixp4xx-interrupt.yaml │ │ ├── interrupts.txt │ │ ├── jcore,aic.txt │ │ ├── kontron,sl28cpld-intc.yaml │ │ ├── loongson,cpu-interrupt-controller.yaml │ │ ├── loongson,eiointc.yaml │ │ ├── loongson,htpic.yaml │ │ ├── loongson,htvec.yaml │ │ ├── loongson,liointc.yaml │ │ ├── loongson,ls1x-intc.yaml │ │ ├── loongson,pch-msi.yaml │ │ ├── loongson,pch-pic.yaml │ │ ├── lsi,zevio-intc.txt │ │ ├── marvell,armada-370-xp-mpic.txt │ │ ├── marvell,armada-8k-pic.txt │ │ ├── marvell,gicp.txt │ │ ├── marvell,icu.txt │ │ ├── marvell,odmi-controller.txt │ │ ├── marvell,orion-intc.txt │ │ ├── marvell,sei.txt │ │ ├── mediatek,mt6577-sysirq.yaml │ │ ├── mediatek,mtk-cirq.yaml │ │ ├── microchip,pic32-evic.txt │ │ ├── microchip,sama7g5-eic.yaml │ │ ├── mrvl,intc.yaml │ │ ├── mscc,ocelot-icpu-intr.yaml │ │ ├── msi-controller.yaml │ │ ├── msi.txt │ │ ├── mstar,mst-intc.yaml │ │ ├── mti,cpu-interrupt-controller.yaml │ │ ├── mti,gic.yaml │ │ ├── nuvoton,wpcm450-aic.yaml │ │ ├── nvidia,tegra20-ictlr.txt │ │ ├── nxp,lpc3220-mic.txt │ │ ├── open-pic.txt │ │ ├── opencores,or1k-pic.txt │ │ ├── openrisc,ompic.txt │ │ ├── qca,ath79-cpu-intc.txt │ │ ├── qca,ath79-misc-intc.txt │ │ ├── qcom,mpm.yaml │ │ ├── qcom,pdc.yaml │ │ ├── ralink,rt2880-intc.yaml │ │ ├── rda,8810pl-intc.yaml │ │ ├── realtek,rtl-intc.yaml │ │ ├── renesas,intc-irqpin.yaml │ │ ├── renesas,irqc.yaml │ │ ├── renesas,rza1-irqc.yaml │ │ ├── renesas,rzg2l-irqc.yaml │ │ ├── riscv,cpu-intc.txt │ │ ├── samsung,exynos4210-combiner.yaml │ │ ├── sifive,plic-1.0.0.yaml │ │ ├── snps,arc700-intc.txt │ │ ├── snps,archs-idu-intc.txt │ │ ├── snps,archs-intc.txt │ │ ├── snps,dw-apb-ictl.txt │ │ ├── socionext,synquacer-exiu.yaml │ │ ├── socionext,uniphier-aidet.yaml │ │ ├── st,spear3xx-shirq.txt │ │ ├── st,stih407-irq-syscfg.yaml │ │ ├── st,stm32-exti.yaml │ │ ├── starfive,jh8100-intc.yaml │ │ ├── sunplus,sp7021-intc.yaml │ │ ├── technologic,ts4800.txt │ │ ├── thead,c900-aclint-mswi.yaml │ │ ├── ti,cp-intc.txt │ │ ├── ti,keystone-irq.txt │ │ ├── ti,omap-intc-irq.txt │ │ ├── ti,omap2-intc.txt │ │ ├── ti,omap4-wugen-mpu │ │ ├── ti,pruss-intc.yaml │ │ ├── ti,sci-inta.yaml │ │ ├── ti,sci-intr.yaml │ │ └── via,vt8500-intc.txt │ ├── iommu │ │ ├── allwinner,sun50i-h6-iommu.yaml │ │ ├── apple,dart.yaml │ │ ├── apple,sart.yaml │ │ ├── arm,smmu-v3.yaml │ │ ├── arm,smmu.yaml │ │ ├── iommu.txt │ │ ├── mediatek,iommu.yaml │ │ ├── msm,iommu-v0.txt │ │ ├── nvidia,tegra30-smmu.txt │ │ ├── qcom,iommu.yaml │ │ ├── renesas,ipmmu-vmsa.yaml │ │ ├── rockchip,iommu.yaml │ │ ├── samsung,sysmmu.yaml │ │ ├── sprd,iommu.yaml │ │ ├── ti,omap-iommu.txt │ │ └── xen,grant-dma.yaml │ ├── ipmi │ │ ├── aspeed,ast2400-ibt-bmc.txt │ │ ├── aspeed,ast2400-kcs-bmc.yaml │ │ ├── ipmi-ipmb.yaml │ │ ├── ipmi-smic.yaml │ │ ├── npcm7xx-kcs-bmc.txt │ │ └── ssif-bmc.yaml │ ├── jailhouse.txt │ ├── leds │ │ ├── allwinner,sun50i-a100-ledc.yaml │ │ ├── ams,as3645a.txt │ │ ├── awinic,aw200xx.yaml │ │ ├── backlight │ │ │ ├── 88pm860x.txt │ │ │ ├── arcxcnn_bl.txt │ │ │ ├── common.yaml │ │ │ ├── gpio-backlight.yaml │ │ │ ├── kinetic,ktd253.yaml │ │ │ ├── kinetic,ktd2801.yaml │ │ │ ├── kinetic,ktz8866.yaml │ │ │ ├── led-backlight.yaml │ │ │ ├── lm3630a-backlight.yaml │ │ │ ├── lp855x-backlight.yaml │ │ │ ├── mediatek,mt6370-backlight.yaml │ │ │ ├── mps,mp3309c.yaml │ │ │ ├── pwm-backlight.yaml │ │ │ ├── qcom-wled.yaml │ │ │ ├── richtek,rt4831-backlight.yaml │ │ │ ├── sky81452-backlight.txt │ │ │ ├── tps65217-backlight.txt │ │ │ └── zii,rave-sp-backlight.txt │ │ ├── common.txt │ │ ├── common.yaml │ │ ├── cznic,turris-omnia-leds.yaml │ │ ├── irled │ │ │ ├── gpio-ir-tx.yaml │ │ │ ├── ir-spi-led.yaml │ │ │ └── pwm-ir-tx.yaml │ │ ├── issi,is31fl319x.yaml │ │ ├── kinetic,ktd202x.yaml │ │ ├── kinetic,ktd2692.yaml │ │ ├── leds-aw2013.yaml │ │ ├── leds-bcm63138.yaml │ │ ├── leds-bcm6328.yaml │ │ ├── leds-bcm6358.txt │ │ ├── leds-class-multicolor.yaml │ │ ├── leds-cpcap.txt │ │ ├── leds-cr0014114.txt │ │ ├── leds-el15203000.txt │ │ ├── leds-gpio.yaml │ │ ├── leds-group-multicolor.yaml │ │ ├── leds-is31fl32xx.txt │ │ ├── leds-lgm.yaml │ │ ├── leds-lm3532.txt │ │ ├── leds-lm3601x.txt │ │ ├── leds-lm36274.txt │ │ ├── leds-lm3692x.txt │ │ ├── leds-lm3697.txt │ │ ├── leds-lp50xx.yaml │ │ ├── leds-lp55xx.yaml │ │ ├── leds-lp8860.txt │ │ ├── leds-lt3593.txt │ │ ├── leds-max77650.yaml │ │ ├── leds-mt6323.txt │ │ ├── leds-mt6360.yaml │ │ ├── leds-netxbig.txt │ │ ├── leds-ns2.txt │ │ ├── leds-pca955x.txt │ │ ├── leds-powernv.txt │ │ ├── leds-pwm-multicolor.yaml │ │ ├── leds-pwm.yaml │ │ ├── leds-qcom-lpg.yaml │ │ ├── leds-rt4505.yaml │ │ ├── leds-sc27xx-bltc.txt │ │ ├── leds-sgm3140.yaml │ │ ├── leds-spi-byte.txt │ │ ├── leds-tlc591xx.txt │ │ ├── leds-trigger-pattern.txt │ │ ├── maxim,max77693.yaml │ │ ├── mediatek,mt6370-flashlight.yaml │ │ ├── mediatek,mt6370-indicator.yaml │ │ ├── nxp,pca953x.yaml │ │ ├── nxp,pca995x.yaml │ │ ├── onnn,ncp5623.yaml │ │ ├── panasonic,an30259a.yaml │ │ ├── pca963x.txt │ │ ├── qcom,pm8058-led.yaml │ │ ├── qcom,spmi-flash-led.yaml │ │ ├── register-bit-led.yaml │ │ ├── regulator-led.yaml │ │ ├── richtek,rt8515.yaml │ │ ├── rohm,bd2606mvv.yaml │ │ ├── rohm,bd71828-leds.yaml │ │ ├── skyworks,aat1290.yaml │ │ ├── ti,tca6507.yaml │ │ └── trigger-source.yaml │ ├── loongarch │ │ ├── cpus.yaml │ │ └── loongson.yaml │ ├── mailbox │ │ ├── allwinner,sun6i-a31-msgbox.yaml │ │ ├── altera-mailbox.txt │ │ ├── amlogic,meson-gxbb-mhu.yaml │ │ ├── apple,mailbox.yaml │ │ ├── arm,mhu.yaml │ │ ├── arm,mhuv2.yaml │ │ ├── brcm,bcm2835-mbox.yaml │ │ ├── brcm,iproc-flexrm-mbox.txt │ │ ├── brcm,iproc-pdc-mbox.txt │ │ ├── fsl,mu.yaml │ │ ├── hisilicon,hi3660-mailbox.txt │ │ ├── hisilicon,hi6220-mailbox.txt │ │ ├── mailbox.txt │ │ ├── marvell,armada-3700-rwtm-mailbox.txt │ │ ├── mediatek,gce-mailbox.yaml │ │ ├── microchip,mpfs-mailbox.yaml │ │ ├── mtk,adsp-mbox.yaml │ │ ├── nvidia,tegra186-hsp.yaml │ │ ├── qcom,apcs-kpss-global.yaml │ │ ├── qcom-ipcc.yaml │ │ ├── rockchip-mailbox.txt │ │ ├── sprd-mailbox.yaml │ │ ├── st,sti-mailbox.yaml │ │ ├── st,stm32-ipcc.yaml │ │ ├── ti,message-manager.txt │ │ ├── ti,omap-mailbox.yaml │ │ ├── ti,secure-proxy.yaml │ │ ├── xgene-slimpro-mailbox.txt │ │ └── xlnx,zynqmp-ipi-mailbox.yaml │ ├── media │ │ ├── allegro,al5e.yaml │ │ ├── allwinner,sun4i-a10-csi.yaml │ │ ├── allwinner,sun4i-a10-ir.yaml │ │ ├── allwinner,sun4i-a10-video-engine.yaml │ │ ├── allwinner,sun50i-h6-vpu-g2.yaml │ │ ├── allwinner,sun6i-a31-csi.yaml │ │ ├── allwinner,sun6i-a31-isp.yaml │ │ ├── allwinner,sun6i-a31-mipi-csi2.yaml │ │ ├── allwinner,sun8i-a83t-de2-rotate.yaml │ │ ├── allwinner,sun8i-a83t-mipi-csi2.yaml │ │ ├── allwinner,sun8i-h3-deinterlace.yaml │ │ ├── amlogic,axg-ge2d.yaml │ │ ├── amlogic,gx-vdec.yaml │ │ ├── amlogic,meson-ir-tx.yaml │ │ ├── amlogic,meson6-ir.yaml │ │ ├── amphion,vpu.yaml │ │ ├── aspeed-video.txt │ │ ├── atmel,isc.yaml │ │ ├── atmel-isi.txt │ │ ├── cdns,csi2rx.yaml │ │ ├── cdns,csi2tx.txt │ │ ├── cec │ │ │ ├── amlogic,meson-gx-ao-cec.yaml │ │ │ ├── cec-common.yaml │ │ │ ├── cec-gpio.yaml │ │ │ ├── nvidia,tegra114-cec.yaml │ │ │ ├── samsung,s5p-cec.yaml │ │ │ ├── st,stih-cec.yaml │ │ │ └── st,stm32-cec.yaml │ │ ├── cnm,wave521c.yaml │ │ ├── coda.yaml │ │ ├── fsl,imx6ull-pxp.yaml │ │ ├── fsl-vdoa.txt │ │ ├── gpio-ir-receiver.yaml │ │ ├── hix5hd2-ir.txt │ │ ├── i2c │ │ │ ├── ad5820.txt │ │ │ ├── adp1653.txt │ │ │ ├── adv7180.yaml │ │ │ ├── adv7343.txt │ │ │ ├── adv748x.yaml │ │ │ ├── adv7604.yaml │ │ │ ├── alliedvision,alvium-csi2.yaml │ │ │ ├── aptina,mt9p031.yaml │ │ │ ├── aptina,mt9v111.yaml │ │ │ ├── asahi-kasei,ak7375.yaml │ │ │ ├── chrontel,ch7322.yaml │ │ │ ├── dongwoon,dw9714.yaml │ │ │ ├── dongwoon,dw9768.yaml │ │ │ ├── dongwoon,dw9807-vcm.yaml │ │ │ ├── galaxycore,gc0308.yaml │ │ │ ├── galaxycore,gc2145.yaml │ │ │ ├── hynix,hi846.yaml │ │ │ ├── imi,rdacm2x-gmsl.yaml │ │ │ ├── imx219.yaml │ │ │ ├── imx258.yaml │ │ │ ├── isil,isl79987.yaml │ │ │ ├── max2175.txt │ │ │ ├── maxim,max9286.yaml │ │ │ ├── maxim,max96712.yaml │ │ │ ├── melexis,mlx90640.txt │ │ │ ├── mipi-ccs.yaml │ │ │ ├── mt9m001.txt │ │ │ ├── mt9m111.txt │ │ │ ├── mt9v032.txt │ │ │ ├── onnn,ar0521.yaml │ │ │ ├── onnn,mt9m114.yaml │ │ │ ├── ov2640.txt │ │ │ ├── ov2659.txt │ │ │ ├── ov7670.txt │ │ │ ├── ov7740.txt │ │ │ ├── ov8856.yaml │ │ │ ├── ov9650.txt │ │ │ ├── ovti,ov02a10.yaml │ │ │ ├── ovti,ov2680.yaml │ │ │ ├── ovti,ov2685.yaml │ │ │ ├── ovti,ov4689.yaml │ │ │ ├── ovti,ov5640.yaml │ │ │ ├── ovti,ov5642.yaml │ │ │ ├── ovti,ov5645.yaml │ │ │ ├── ovti,ov5647.yaml │ │ │ ├── ovti,ov5648.yaml │ │ │ ├── ovti,ov5670.yaml │ │ │ ├── ovti,ov5675.yaml │ │ │ ├── ovti,ov5693.yaml │ │ │ ├── ovti,ov64a40.yaml │ │ │ ├── ovti,ov7251.yaml │ │ │ ├── ovti,ov772x.yaml │ │ │ ├── ovti,ov8858.yaml │ │ │ ├── ovti,ov8865.yaml │ │ │ ├── ovti,ov9282.yaml │ │ │ ├── panasonic,amg88xx.txt │ │ │ ├── rda,rda5807.yaml │ │ │ ├── samsung,s5k5baf.yaml │ │ │ ├── samsung,s5k6a3.yaml │ │ │ ├── sony,imx214.yaml │ │ │ ├── sony,imx274.yaml │ │ │ ├── sony,imx290.yaml │ │ │ ├── sony,imx296.yaml │ │ │ ├── sony,imx334.yaml │ │ │ ├── sony,imx335.yaml │ │ │ ├── sony,imx412.yaml │ │ │ ├── sony,imx415.yaml │ │ │ ├── st,st-mipid02.yaml │ │ │ ├── st,st-vgxy61.yaml │ │ │ ├── tc358743.txt │ │ │ ├── tda1997x.txt │ │ │ ├── techwell,tw9900.yaml │ │ │ ├── thine,thp7312.yaml │ │ │ ├── ths8200.txt │ │ │ ├── ti,ds90ub913.yaml │ │ │ ├── ti,ds90ub953.yaml │ │ │ ├── ti,ds90ub960.yaml │ │ │ ├── toshiba,et8ek8.txt │ │ │ ├── toshiba,tc358746.yaml │ │ │ ├── tvp514x.txt │ │ │ ├── tvp5150.txt │ │ │ └── tvp7002.txt │ │ ├── img-ir-rev1.txt │ │ ├── imx.txt │ │ ├── marvell,mmp2-ccic.yaml │ │ ├── mediatek,mdp3-fg.yaml │ │ ├── mediatek,mdp3-hdr.yaml │ │ ├── mediatek,mdp3-rdma.yaml │ │ ├── mediatek,mdp3-rsz.yaml │ │ ├── mediatek,mdp3-stitch.yaml │ │ ├── mediatek,mdp3-tcc.yaml │ │ ├── mediatek,mdp3-tdshp.yaml │ │ ├── mediatek,mdp3-wrot.yaml │ │ ├── mediatek,mt8195-jpegdec.yaml │ │ ├── mediatek,mt8195-jpegenc.yaml │ │ ├── mediatek,vcodec-decoder.yaml │ │ ├── mediatek,vcodec-encoder.yaml │ │ ├── mediatek,vcodec-subdev-decoder.yaml │ │ ├── mediatek-jpeg-decoder.yaml │ │ ├── mediatek-jpeg-encoder.yaml │ │ ├── mediatek-mdp.txt │ │ ├── mediatek-vpu.txt │ │ ├── microchip,csi2dc.yaml │ │ ├── microchip,sama5d4-vdec.yaml │ │ ├── microchip,xisc.yaml │ │ ├── mtk-cir.txt │ │ ├── nuvoton,npcm-ece.yaml │ │ ├── nuvoton,npcm-vcd.yaml │ │ ├── nvidia,tegra-vde.yaml │ │ ├── nxp,dw100.yaml │ │ ├── nxp,imx-mipi-csi2.yaml │ │ ├── nxp,imx7-csi.yaml │ │ ├── nxp,imx8-isi.yaml │ │ ├── nxp,imx8-jpeg.yaml │ │ ├── nxp,imx8mq-mipi-csi2.yaml │ │ ├── nxp,imx8mq-vpu.yaml │ │ ├── pxa-camera.txt │ │ ├── qcom,msm8916-camss.yaml │ │ ├── qcom,msm8916-venus.yaml │ │ ├── qcom,msm8996-camss.yaml │ │ ├── qcom,msm8996-venus.yaml │ │ ├── qcom,sc7180-venus.yaml │ │ ├── qcom,sc7280-venus.yaml │ │ ├── qcom,sdm660-camss.yaml │ │ ├── qcom,sdm660-venus.yaml │ │ ├── qcom,sdm845-camss.yaml │ │ ├── qcom,sdm845-venus-v2.yaml │ │ ├── qcom,sdm845-venus.yaml │ │ ├── qcom,sm8250-camss.yaml │ │ ├── qcom,sm8250-venus.yaml │ │ ├── qcom,venus-common.yaml │ │ ├── rc.txt │ │ ├── rc.yaml │ │ ├── renesas,ceu.yaml │ │ ├── renesas,csi2.yaml │ │ ├── renesas,drif.yaml │ │ ├── renesas,fcp.yaml │ │ ├── renesas,fdp1.yaml │ │ ├── renesas,imr.yaml │ │ ├── renesas,isp.yaml │ │ ├── renesas,jpu.yaml │ │ ├── renesas,rzg2l-cru.yaml │ │ ├── renesas,rzg2l-csi2.yaml │ │ ├── renesas,vin.yaml │ │ ├── renesas,vsp1.yaml │ │ ├── rockchip,rk3568-vepu.yaml │ │ ├── rockchip,vdec.yaml │ │ ├── rockchip-isp1.yaml │ │ ├── rockchip-rga.yaml │ │ ├── rockchip-vpu.yaml │ │ ├── s5p-mfc.txt │ │ ├── samsung,exynos4210-csis.yaml │ │ ├── samsung,exynos4210-fimc.yaml │ │ ├── samsung,exynos4212-fimc-is.yaml │ │ ├── samsung,exynos4212-fimc-lite.yaml │ │ ├── samsung,exynos5250-gsc.yaml │ │ ├── samsung,fimc.yaml │ │ ├── samsung,s5c73m3.yaml │ │ ├── samsung,s5p-mfc.yaml │ │ ├── samsung,s5pv210-jpeg.yaml │ │ ├── si4713.txt │ │ ├── silabs,si470x.yaml │ │ ├── spi │ │ │ └── sony-cxd2880.txt │ │ ├── st,st-delta.txt │ │ ├── st,st-hva.txt │ │ ├── st,stih4xx.txt │ │ ├── st,stm32-dcmi.yaml │ │ ├── st,stm32-dcmipp.yaml │ │ ├── st,stm32-dma2d.yaml │ │ ├── st,stm32mp25-video-codec.yaml │ │ ├── st-rc.txt │ │ ├── starfive,jh7110-camss.yaml │ │ ├── stih407-c8sectpfe.txt │ │ ├── ti,cal.yaml │ │ ├── ti,da850-vpif.txt │ │ ├── ti,j721e-csi2rx-shim.yaml │ │ ├── ti,omap3isp.txt │ │ ├── ti,vpe.yaml │ │ ├── ti-am437x-vpfe.txt │ │ ├── video-interface-devices.yaml │ │ ├── video-interfaces.txt │ │ ├── video-interfaces.yaml │ │ ├── video-mux.yaml │ │ └── xilinx │ │ │ ├── video.txt │ │ │ ├── xlnx,csi2rxss.yaml │ │ │ ├── xlnx,v-tc.txt │ │ │ ├── xlnx,v-tpg.txt │ │ │ └── xlnx,video.txt │ ├── memory-controllers │ │ ├── arm,pl172.txt │ │ ├── arm,pl35x-smc.yaml │ │ ├── atmel,ebi.txt │ │ ├── brcm,brcmstb-memc-ddr.yaml │ │ ├── brcm,dpfe-cpu.yaml │ │ ├── calxeda-ddr-ctrlr.yaml │ │ ├── canaan,k210-sram.yaml │ │ ├── ddr │ │ │ ├── jedec,lpddr-channel.yaml │ │ │ ├── jedec,lpddr-props.yaml │ │ │ ├── jedec,lpddr2-timings.yaml │ │ │ ├── jedec,lpddr2.yaml │ │ │ ├── jedec,lpddr3-timings.yaml │ │ │ ├── jedec,lpddr3.yaml │ │ │ ├── jedec,lpddr4.yaml │ │ │ └── jedec,lpddr5.yaml │ │ ├── exynos-srom.yaml │ │ ├── fsl │ │ │ ├── fsl,ddr.yaml │ │ │ ├── fsl,ifc.yaml │ │ │ ├── fsl,imx-weim-peripherals.yaml │ │ │ ├── fsl,imx-weim.yaml │ │ │ ├── imx8m-ddrc.yaml │ │ │ └── mmdc.yaml │ │ ├── ingenic,nemc-peripherals.yaml │ │ ├── ingenic,nemc.yaml │ │ ├── intel,ixp4xx-expansion-bus-controller.yaml │ │ ├── intel,ixp4xx-expansion-peripheral-props.yaml │ │ ├── marvell,mvebu-sdram-controller.yaml │ │ ├── mc-peripheral-props.yaml │ │ ├── mediatek,mt7621-memc.yaml │ │ ├── mediatek,smi-common.yaml │ │ ├── mediatek,smi-larb.yaml │ │ ├── mvebu-devbus.txt │ │ ├── nuvoton,npcm-memory-controller.yaml │ │ ├── nvidia,tegra124-emc.yaml │ │ ├── nvidia,tegra124-mc.yaml │ │ ├── nvidia,tegra186-mc.yaml │ │ ├── nvidia,tegra20-emc.yaml │ │ ├── nvidia,tegra20-mc.yaml │ │ ├── nvidia,tegra210-emc.yaml │ │ ├── nvidia,tegra30-emc.yaml │ │ ├── nvidia,tegra30-mc.yaml │ │ ├── qca,ath79-ddr-controller.yaml │ │ ├── renesas,dbsc.yaml │ │ ├── renesas,rpc-if.yaml │ │ ├── rockchip,rk3399-dmc.yaml │ │ ├── samsung,exynos5422-dmc.yaml │ │ ├── snps,dw-umctl2-ddrc.yaml │ │ ├── st,stm32-fmc2-ebi-props.yaml │ │ ├── st,stm32-fmc2-ebi.yaml │ │ ├── ti,da8xx-ddrctl.yaml │ │ ├── ti,gpmc-child.yaml │ │ ├── ti,gpmc.yaml │ │ ├── ti-aemif.txt │ │ ├── ti │ │ │ └── emif.txt │ │ ├── xlnx,versal-ddrmc-edac.yaml │ │ ├── xlnx,zynq-ddrc-a05.yaml │ │ └── xlnx,zynqmp-ocmc-1.0.yaml │ ├── mfd │ │ ├── 88pm860x.txt │ │ ├── act8945a.txt │ │ ├── actions,atc260x.yaml │ │ ├── adi,max77541.yaml │ │ ├── allwinner,sun4i-a10-ts.yaml │ │ ├── allwinner,sun6i-a31-prcm.yaml │ │ ├── allwinner,sun8i-a23-prcm.yaml │ │ ├── altera-a10sr.txt │ │ ├── ampere,smpro.yaml │ │ ├── ams,as3711.yaml │ │ ├── arm,dev-platforms-syscon.yaml │ │ ├── as3722.txt │ │ ├── aspeed,ast2x00-scu.yaml │ │ ├── aspeed-gfx.txt │ │ ├── aspeed-lpc.yaml │ │ ├── atmel,hlcdc.yaml │ │ ├── atmel,sama5d2-flexcom.yaml │ │ ├── atmel-gpbr.txt │ │ ├── atmel-matrix.txt │ │ ├── atmel-smc.txt │ │ ├── bfticu.txt │ │ ├── brcm,bcm59056.txt │ │ ├── brcm,bcm6318-gpio-sysctl.yaml │ │ ├── brcm,bcm63268-gpio-sysctl.yaml │ │ ├── brcm,bcm6328-gpio-sysctl.yaml │ │ ├── brcm,bcm6358-gpio-sysctl.yaml │ │ ├── brcm,bcm6362-gpio-sysctl.yaml │ │ ├── brcm,bcm6368-gpio-sysctl.yaml │ │ ├── brcm,cru.yaml │ │ ├── brcm,iproc-cdru.txt │ │ ├── brcm,iproc-mhb.txt │ │ ├── brcm,misc.yaml │ │ ├── brcm,twd.yaml │ │ ├── canaan,k210-sysctl.yaml │ │ ├── cirrus,lochnagar.yaml │ │ ├── cirrus,madera.yaml │ │ ├── da9052-i2c.txt │ │ ├── da9055.txt │ │ ├── da9150.txt │ │ ├── delta,tn48m-cpld.yaml │ │ ├── dlg,da9063.yaml │ │ ├── ene-kb3930.yaml │ │ ├── ene-kb930.yaml │ │ ├── fsl,imx8qxp-csr.yaml │ │ ├── fsl-imx25-tsadc.txt │ │ ├── gateworks-gsc.yaml │ │ ├── google,cros-ec.yaml │ │ ├── hi6421.txt │ │ ├── hisilicon,hi6421-spmi-pmic.yaml │ │ ├── hisilicon,hi655x.txt │ │ ├── iqs62x.yaml │ │ ├── khadas,mcu.yaml │ │ ├── kontron,sl28cpld.yaml │ │ ├── lp3943.txt │ │ ├── lp873x.txt │ │ ├── max77620.txt │ │ ├── max77650.yaml │ │ ├── maxim,max14577.yaml │ │ ├── maxim,max5970.yaml │ │ ├── maxim,max77686.yaml │ │ ├── maxim,max77693.yaml │ │ ├── maxim,max77714.yaml │ │ ├── maxim,max77802.yaml │ │ ├── maxim,max77843.yaml │ │ ├── maxim,max8925.yaml │ │ ├── maxim,max8998.yaml │ │ ├── mc13xxx.txt │ │ ├── mediatek,mt6357.yaml │ │ ├── mediatek,mt6360.yaml │ │ ├── mediatek,mt6370.yaml │ │ ├── mediatek,mt8195-scpsys.yaml │ │ ├── mfd.txt │ │ ├── motorola-cpcap.txt │ │ ├── mps,mp2629.yaml │ │ ├── mscc,ocelot.yaml │ │ ├── mt6397.txt │ │ ├── mxs-lradc.txt │ │ ├── netronix,ntxec.yaml │ │ ├── nxp,bbnsm.yaml │ │ ├── omap-usb-host.txt │ │ ├── omap-usb-tll.txt │ │ ├── palmas.txt │ │ ├── qcom,pm8008.yaml │ │ ├── qcom,spmi-pmic.yaml │ │ ├── qcom,tcsr.yaml │ │ ├── qcom-pm8xxx.yaml │ │ ├── qriox.txt │ │ ├── retu.txt │ │ ├── richtek,rt4831.yaml │ │ ├── richtek,rt5033.yaml │ │ ├── richtek,rt5120.yaml │ │ ├── ricoh,rn5t618.yaml │ │ ├── rockchip,rk805.yaml │ │ ├── rockchip,rk806.yaml │ │ ├── rockchip,rk808.yaml │ │ ├── rockchip,rk809.yaml │ │ ├── rockchip,rk817.yaml │ │ ├── rockchip,rk818.yaml │ │ ├── rohm,bd71815-pmic.yaml │ │ ├── rohm,bd71828-pmic.yaml │ │ ├── rohm,bd71837-pmic.yaml │ │ ├── rohm,bd71847-pmic.yaml │ │ ├── rohm,bd9571mwv.yaml │ │ ├── rohm,bd9576-pmic.yaml │ │ ├── samsung,exynos5433-lpass.yaml │ │ ├── samsung,s2mpa01.yaml │ │ ├── samsung,s2mps11.yaml │ │ ├── samsung,s5m8767.yaml │ │ ├── silergy,sy7636a.yaml │ │ ├── sky81452.txt │ │ ├── sprd,sc27xx-pmic.txt │ │ ├── sprd,ums512-glbreg.yaml │ │ ├── st,stm32-lptimer.yaml │ │ ├── st,stm32-timers.yaml │ │ ├── st,stmfx.yaml │ │ ├── st,stmpe.yaml │ │ ├── st,stpmic1.yaml │ │ ├── stericsson,ab8500.yaml │ │ ├── stericsson,db8500-prcmu.yaml │ │ ├── syscon.yaml │ │ ├── tc3589x.txt │ │ ├── ti,am3359-tscadc.yaml │ │ ├── ti,j721e-system-controller.yaml │ │ ├── ti,lp87524-q1.yaml │ │ ├── ti,lp87561-q1.yaml │ │ ├── ti,lp87565-q1.yaml │ │ ├── ti,nspire-misc.yaml │ │ ├── ti,tps65086.yaml │ │ ├── ti,tps6594.yaml │ │ ├── ti,twl.yaml │ │ ├── ti-keystone-devctrl.txt │ │ ├── ti-lmu.txt │ │ ├── tps6105x.txt │ │ ├── tps6507x.txt │ │ ├── tps65910.txt │ │ ├── tps65912.txt │ │ ├── twl4030-audio.txt │ │ ├── twl4030-power.txt │ │ ├── twl6040.txt │ │ ├── wlf,arizona.yaml │ │ ├── wm831x.txt │ │ ├── x-powers,ac100.yaml │ │ ├── x-powers,axp152.yaml │ │ ├── xylon,logicvc.yaml │ │ └── zii,rave-sp.txt │ ├── mips │ │ ├── ath79-soc.txt │ │ ├── brcm │ │ │ ├── soc.txt │ │ │ └── soc.yaml │ │ ├── cavium │ │ │ ├── bootbus.txt │ │ │ ├── cib.txt │ │ │ ├── ciu.txt │ │ │ ├── ciu2.txt │ │ │ ├── ciu3.txt │ │ │ ├── dma-engine.txt │ │ │ ├── sata-uctl.txt │ │ │ └── uctl.txt │ │ ├── cpus.yaml │ │ ├── img │ │ │ ├── pistachio-marduk.txt │ │ │ ├── pistachio.txt │ │ │ └── xilfpga.txt │ │ ├── ingenic │ │ │ └── devices.yaml │ │ ├── lantiq │ │ │ ├── fpi-bus.txt │ │ │ ├── lantiq,cgu.yaml │ │ │ ├── lantiq,dma-xway.yaml │ │ │ ├── lantiq,ebu.yaml │ │ │ ├── lantiq,pmu.yaml │ │ │ └── rcu.txt │ │ ├── loongson │ │ │ ├── devices.yaml │ │ │ ├── ls2k-reset.yaml │ │ │ └── rs780e-acpi.yaml │ │ ├── mobileye.yaml │ │ ├── mscc.txt │ │ ├── ni.txt │ │ ├── pic32 │ │ │ └── microchip,pic32mzda.txt │ │ ├── ralink.yaml │ │ └── realtek-rtl.yaml │ ├── misc │ │ ├── aspeed,cvic.txt │ │ ├── aspeed-p2a-ctrl.txt │ │ ├── atmel-ssc.txt │ │ ├── fsl,dpaa2-console.yaml │ │ ├── fsl,qoriq-mc.txt │ │ ├── ge-achc.yaml │ │ ├── idt,89hpesx.yaml │ │ ├── ifm-csi.txt │ │ ├── intel,ixp4xx-ahb-queue-manager.yaml │ │ ├── lwn-bk4.txt │ │ ├── nvidia,tegra186-misc.yaml │ │ ├── nvidia,tegra20-apbmisc.yaml │ │ ├── olpc,xo1.75-ec.yaml │ │ ├── pvpanic-mmio.txt │ │ ├── qcom,fastrpc.yaml │ │ ├── qemu,vcpu-stall-detector.yaml │ │ ├── ti,j721e-esm.yaml │ │ ├── xlnx,sd-fec.yaml │ │ ├── xlnx,tmr-inject.yaml │ │ └── xlnx,tmr-manager.yaml │ ├── mmc │ │ ├── allwinner,sun4i-a10-mmc.yaml │ │ ├── amlogic,meson-gx-mmc.yaml │ │ ├── amlogic,meson-mx-sdhc.yaml │ │ ├── amlogic,meson-mx-sdio.txt │ │ ├── arasan,sdhci.yaml │ │ ├── arm,pl18x.yaml │ │ ├── aspeed,sdhci.yaml │ │ ├── atmel-hsmci.txt │ │ ├── bluefield-dw-mshc.txt │ │ ├── brcm,bcm2835-sdhost.yaml │ │ ├── brcm,iproc-sdhci.yaml │ │ ├── brcm,kona-sdhci.yaml │ │ ├── brcm,sdhci-brcmstb.yaml │ │ ├── cavium-mmc.txt │ │ ├── cdns,sdhci.yaml │ │ ├── davinci_mmc.txt │ │ ├── fsl-esdhc.txt │ │ ├── fsl-imx-esdhc.yaml │ │ ├── fsl-imx-mmc.yaml │ │ ├── fujitsu,sdhci-fujitsu.yaml │ │ ├── hisilicon,hi3798cv200-dw-mshc.yaml │ │ ├── ingenic,mmc.yaml │ │ ├── k3-dw-mshc.txt │ │ ├── litex,mmc.yaml │ │ ├── marvell,dove-sdhci.yaml │ │ ├── marvell,orion-sdio.yaml │ │ ├── marvell,xenon-sdhci.yaml │ │ ├── microchip,dw-sparx5-sdhci.yaml │ │ ├── microchip,sdhci-pic32.txt │ │ ├── mmc-card.yaml │ │ ├── mmc-controller.yaml │ │ ├── mmc-pwrseq-emmc.yaml │ │ ├── mmc-pwrseq-sd8787.yaml │ │ ├── mmc-pwrseq-simple.yaml │ │ ├── mmc-spi-slot.yaml │ │ ├── mmc.txt │ │ ├── moxa,moxart-mmc.txt │ │ ├── mtk-sd.yaml │ │ ├── mxs-mmc.yaml │ │ ├── npcm,sdhci.yaml │ │ ├── nvidia,tegra20-sdhci.yaml │ │ ├── owl-mmc.yaml │ │ ├── pxa-mmc.txt │ │ ├── renesas,mmcif.yaml │ │ ├── renesas,sdhi.yaml │ │ ├── rockchip-dw-mshc.yaml │ │ ├── samsung,exynos-dw-mshc.yaml │ │ ├── samsung,s3c6410-sdhci.yaml │ │ ├── sdhci-am654.yaml │ │ ├── sdhci-atmel.txt │ │ ├── sdhci-common.yaml │ │ ├── sdhci-milbeaut.txt │ │ ├── sdhci-msm.yaml │ │ ├── sdhci-omap.txt │ │ ├── sdhci-pxa.yaml │ │ ├── sdhci-spear.txt │ │ ├── sdhci-sprd.txt │ │ ├── sdhci-st.txt │ │ ├── sdhci.txt │ │ ├── snps,dwcmshc-sdhci.yaml │ │ ├── socionext,uniphier-sd.yaml │ │ ├── starfive,jh7110-mmc.yaml │ │ ├── sunplus,mmc.yaml │ │ ├── synopsys-dw-mshc-common.yaml │ │ ├── synopsys-dw-mshc.yaml │ │ ├── ti-omap-hsmmc.txt │ │ ├── ti-omap.txt │ │ ├── usdhi6rol0.txt │ │ └── vt8500-sdmmc.txt │ ├── mtd │ │ ├── allwinner,sun4i-a10-nand.yaml │ │ ├── amlogic,meson-nand.yaml │ │ ├── arasan,nand-controller.yaml │ │ ├── arm,pl353-nand-r2p1.yaml │ │ ├── atmel-dataflash.txt │ │ ├── atmel-nand.txt │ │ ├── brcm,brcmnand.yaml │ │ ├── cadence-nand-controller.txt │ │ ├── davinci-nand.txt │ │ ├── denali,nand.yaml │ │ ├── diskonchip.txt │ │ ├── flctl-nand.txt │ │ ├── fsl-upm-nand.txt │ │ ├── fsmc-nand.txt │ │ ├── gpio-control-nand.txt │ │ ├── gpmi-nand.yaml │ │ ├── hisi504-nand.txt │ │ ├── hisilicon,fmc-spi-nor.txt │ │ ├── ibm,ndfc.txt │ │ ├── ingenic,nand.yaml │ │ ├── intel,lgm-ebunand.yaml │ │ ├── jedec,spi-nor.yaml │ │ ├── lpc32xx-mlc.txt │ │ ├── lpc32xx-slc.txt │ │ ├── marvell,nand-controller.yaml │ │ ├── mediatek,mtk-nfc.yaml │ │ ├── mediatek,nand-ecc-engine.yaml │ │ ├── microchip,mchp23k256.txt │ │ ├── microchip,mchp48l640.yaml │ │ ├── mtd-physmap.yaml │ │ ├── mtd.yaml │ │ ├── mxc-nand.yaml │ │ ├── mxic-nand.txt │ │ ├── mxicy,nand-ecc-engine.yaml │ │ ├── nand-chip.yaml │ │ ├── nand-controller.yaml │ │ ├── nand-macronix.txt │ │ ├── nvidia-tegra20-nand.txt │ │ ├── nxp-spifi.txt │ │ ├── orion-nand.txt │ │ ├── partitions │ │ │ ├── arm,arm-firmware-suite.yaml │ │ │ ├── brcm,bcm4908-partitions.yaml │ │ │ ├── brcm,bcm947xx-cfe-partitions.yaml │ │ │ ├── brcm,bcm963xx-cfe-nor-partitions.txt │ │ │ ├── brcm,bcm963xx-imagetag.txt │ │ │ ├── brcm,trx.txt │ │ │ ├── fixed-partitions.yaml │ │ │ ├── linksys,ns-partitions.yaml │ │ │ ├── linux,ubi.yaml │ │ │ ├── nvmem-cells.yaml │ │ │ ├── partition.yaml │ │ │ ├── partitions.yaml │ │ │ ├── qcom,smem-part.yaml │ │ │ ├── redboot-fis.yaml │ │ │ ├── seama.yaml │ │ │ ├── tplink,safeloader-partitions.yaml │ │ │ ├── u-boot.yaml │ │ │ └── ubi-volume.yaml │ │ ├── qcom,nandc.yaml │ │ ├── raw-nand-chip.yaml │ │ ├── renesas-nandc.yaml │ │ ├── rockchip,nand-controller.yaml │ │ ├── samsung-s3c2410.txt │ │ ├── spear_smi.txt │ │ ├── spi-nand.yaml │ │ ├── st,stm32-fmc2-nand.yaml │ │ ├── st-fsm.txt │ │ ├── ti,am654-hbmc.yaml │ │ ├── ti,elm.yaml │ │ ├── ti,gpmc-nand.yaml │ │ ├── ti,gpmc-onenand.yaml │ │ └── vf610-nfc.txt │ ├── mux │ │ ├── adi,adg792a.txt │ │ ├── adi,adgs1408.txt │ │ ├── gpio-mux.yaml │ │ ├── mux-consumer.yaml │ │ ├── mux-controller.yaml │ │ └── reg-mux.yaml │ ├── net │ │ ├── actions,owl-emac.yaml │ │ ├── adi,adin.yaml │ │ ├── adi,adin1110.yaml │ │ ├── allwinner,sun4i-a10-emac.yaml │ │ ├── allwinner,sun4i-a10-mdio.yaml │ │ ├── allwinner,sun7i-a20-gmac.yaml │ │ ├── allwinner,sun8i-a83t-emac.yaml │ │ ├── altr,tse.yaml │ │ ├── amd-xgbe.txt │ │ ├── amlogic,g12a-mdio-mux.yaml │ │ ├── amlogic,gxl-mdio-mux.yaml │ │ ├── amlogic,meson-dwmac.yaml │ │ ├── anarion-gmac.txt │ │ ├── apm-xgene-enet.txt │ │ ├── apm-xgene-mdio.txt │ │ ├── arc_emac.txt │ │ ├── asix,ax88178.yaml │ │ ├── asix,ax88796c.yaml │ │ ├── aspeed,ast2600-mdio.yaml │ │ ├── bluetooth │ │ │ ├── bluetooth-controller.yaml │ │ │ ├── brcm,bcm4377-bluetooth.yaml │ │ │ ├── nxp,88w8987-bt.yaml │ │ │ └── qualcomm-bluetooth.yaml │ │ ├── brcm,amac.yaml │ │ ├── brcm,asp-v2.0.yaml │ │ ├── brcm,bcm4908-enet.yaml │ │ ├── brcm,bcm6368-mdio-mux.yaml │ │ ├── brcm,bcm7445-switch-v4.0.txt │ │ ├── brcm,bcmgenet.yaml │ │ ├── brcm,iproc-mdio.yaml │ │ ├── brcm,mdio-mux-iproc.yaml │ │ ├── brcm,systemport.yaml │ │ ├── brcm,unimac-mdio.yaml │ │ ├── broadcom-bcm87xx.txt │ │ ├── broadcom-bluetooth.yaml │ │ ├── btusb.txt │ │ ├── calxeda-xgmac.yaml │ │ ├── can │ │ │ ├── allwinner,sun4i-a10-can.yaml │ │ │ ├── atmel-can.txt │ │ │ ├── bosch,c_can.yaml │ │ │ ├── bosch,m_can.yaml │ │ │ ├── can-controller.yaml │ │ │ ├── can-transceiver.yaml │ │ │ ├── cc770.txt │ │ │ ├── ctu,ctucanfd.yaml │ │ │ ├── fsl,flexcan.yaml │ │ │ ├── grcan.txt │ │ │ ├── holt_hi311x.txt │ │ │ ├── ifi_canfd.txt │ │ │ ├── microchip,mcp251x.txt │ │ │ ├── microchip,mcp251xfd.yaml │ │ │ ├── microchip,mpfs-can.yaml │ │ │ ├── mpc5xxx-mscan.txt │ │ │ ├── nxp,sja1000.yaml │ │ │ ├── renesas,rcar-can.yaml │ │ │ ├── renesas,rcar-canfd.yaml │ │ │ ├── st,stm32-bxcan.yaml │ │ │ ├── tcan4x5x.txt │ │ │ ├── ti_hecc.txt │ │ │ └── xilinx,can.yaml │ │ ├── cavium-mdio.txt │ │ ├── cavium-mix.txt │ │ ├── cavium-pip.txt │ │ ├── cdns,macb.yaml │ │ ├── cirrus,cs89x0.txt │ │ ├── cortina,gemini-ethernet.yaml │ │ ├── cortina.txt │ │ ├── cpsw-phy-sel.txt │ │ ├── cpsw.txt │ │ ├── davicom,dm9000.yaml │ │ ├── davicom,dm9051.yaml │ │ ├── davinci_emac.txt │ │ ├── dsa │ │ │ ├── arrow,xrs700x.yaml │ │ │ ├── brcm,b53.yaml │ │ │ ├── brcm,sf2.yaml │ │ │ ├── dsa-port.yaml │ │ │ ├── dsa.txt │ │ │ ├── dsa.yaml │ │ │ ├── hirschmann,hellcreek.yaml │ │ │ ├── lan9303.txt │ │ │ ├── lantiq-gswip.txt │ │ │ ├── marvell,mv88e6060.yaml │ │ │ ├── marvell,mv88e6xxx.yaml │ │ │ ├── mediatek,mt7530.yaml │ │ │ ├── microchip,ksz.yaml │ │ │ ├── microchip,lan937x.yaml │ │ │ ├── mscc,ocelot.yaml │ │ │ ├── nxp,sja1105.yaml │ │ │ ├── qca,ar9331.yaml │ │ │ ├── qca8k.yaml │ │ │ ├── realtek.yaml │ │ │ ├── renesas,rzn1-a5psw.yaml │ │ │ └── vitesse,vsc73xx.txt │ │ ├── engleder,tsnep.yaml │ │ ├── ethernet-controller.yaml │ │ ├── ethernet-phy-package.yaml │ │ ├── ethernet-phy.yaml │ │ ├── ethernet-switch-port.yaml │ │ ├── ethernet-switch.yaml │ │ ├── ethernet.txt │ │ ├── ezchip_enet.txt │ │ ├── faraday,ftgmac100.yaml │ │ ├── faraday,ftmac.txt │ │ ├── fixed-link.txt │ │ ├── fsl,fec.yaml │ │ ├── fsl,fman-dtsec.yaml │ │ ├── fsl,qoriq-mc-dpmac.yaml │ │ ├── fsl-enetc.txt │ │ ├── fsl-fman.txt │ │ ├── fsl-tsec-phy.txt │ │ ├── hisilicon-femac-mdio.txt │ │ ├── hisilicon-femac.txt │ │ ├── hisilicon-hip04-net.txt │ │ ├── hisilicon-hix5hd2-gmac.txt │ │ ├── hisilicon-hns-dsaf.txt │ │ ├── hisilicon-hns-mdio.txt │ │ ├── hisilicon-hns-nic.txt │ │ ├── ibm,emac.txt │ │ ├── icplus-ip101ag.txt │ │ ├── idt,3243x-emac.yaml │ │ ├── ieee802154 │ │ │ ├── adf7242.txt │ │ │ ├── at86rf230.txt │ │ │ ├── ca8210.txt │ │ │ ├── cc2520.txt │ │ │ ├── mcr20a.txt │ │ │ └── mrf24j40.txt │ │ ├── ingenic,mac.yaml │ │ ├── intel,dwmac-plat.yaml │ │ ├── intel,ixp46x-ptp-timer.yaml │ │ ├── intel,ixp4xx-ethernet.yaml │ │ ├── intel,ixp4xx-hss.yaml │ │ ├── ipq806x-dwmac.txt │ │ ├── keystone-netcp.txt │ │ ├── lantiq,etop-xway.yaml │ │ ├── lantiq,pef2256.yaml │ │ ├── lantiq,xrx200-net.yaml │ │ ├── litex,liteeth.yaml │ │ ├── loongson,ls1b-gmac.yaml │ │ ├── loongson,ls1c-emac.yaml │ │ ├── lpc-eth.txt │ │ ├── marvell,aquantia.yaml │ │ ├── marvell,dfx-server.yaml │ │ ├── marvell,mvusb.yaml │ │ ├── marvell,orion-mdio.yaml │ │ ├── marvell,pp2.yaml │ │ ├── marvell,prestera.yaml │ │ ├── marvell-armada-370-neta.txt │ │ ├── marvell-bluetooth.yaml │ │ ├── marvell-bt-8xxx.txt │ │ ├── marvell-neta-bm.txt │ │ ├── marvell-orion-net.txt │ │ ├── marvell-pxa168.txt │ │ ├── maxim,ds26522.txt │ │ ├── maxlinear,gpy2xx.yaml │ │ ├── mctp-i2c-controller.yaml │ │ ├── mdio-gpio.yaml │ │ ├── mdio-mux-gpio.yaml │ │ ├── mdio-mux-mmioreg.yaml │ │ ├── mdio-mux-multiplexer.yaml │ │ ├── mdio-mux.yaml │ │ ├── mdio.txt │ │ ├── mdio.yaml │ │ ├── mediatek,net.yaml │ │ ├── mediatek,star-emac.yaml │ │ ├── mediatek-bluetooth.txt │ │ ├── mediatek-dwmac.yaml │ │ ├── micrel,ks8851.yaml │ │ ├── micrel-ks8995.txt │ │ ├── micrel-ksz90x1.txt │ │ ├── micrel.txt │ │ ├── microchip,enc28j60.txt │ │ ├── microchip,lan78xx.txt │ │ ├── microchip,lan95xx.yaml │ │ ├── microchip,lan966x-switch.yaml │ │ ├── microchip,sparx5-switch.yaml │ │ ├── motorcomm,yt8xxx.yaml │ │ ├── mscc,miim.yaml │ │ ├── mscc,vsc7514-switch.yaml │ │ ├── mscc-phy-vsc8531.txt │ │ ├── nfc │ │ │ ├── marvell,nci.yaml │ │ │ ├── nxp,nci.yaml │ │ │ ├── nxp,pn532.yaml │ │ │ ├── nxp,pn544.yaml │ │ │ ├── samsung,s3fwrn5.yaml │ │ │ ├── st,st-nci.yaml │ │ │ ├── st,st21nfca.yaml │ │ │ ├── st,st95hf.yaml │ │ │ └── ti,trf7970a.yaml │ │ ├── nixge.txt │ │ ├── nokia-bluetooth.txt │ │ ├── nvidia,tegra234-mgbe.yaml │ │ ├── nxp,dwmac-imx.yaml │ │ ├── nxp,lpc1850-dwmac.txt │ │ ├── nxp,tja11xx.yaml │ │ ├── opencores-ethoc.txt │ │ ├── pcs │ │ │ ├── fsl,lynx-pcs.yaml │ │ │ ├── mediatek,sgmiisys.yaml │ │ │ └── renesas,rzn1-miic.yaml │ │ ├── phy.txt │ │ ├── pse-pd │ │ │ ├── podl-pse-regulator.yaml │ │ │ └── pse-controller.yaml │ │ ├── qca,ar71xx.yaml │ │ ├── qca,ar803x.yaml │ │ ├── qca,qca7000.txt │ │ ├── qca,qca808x.yaml │ │ ├── qcom,bam-dmux.yaml │ │ ├── qcom,ethqos.yaml │ │ ├── qcom,ipa.yaml │ │ ├── qcom,ipq4019-mdio.yaml │ │ ├── qcom,ipq8064-mdio.yaml │ │ ├── qcom,qca807x.yaml │ │ ├── qcom-emac.txt │ │ ├── realtek,rtl82xx.yaml │ │ ├── realtek-bluetooth.yaml │ │ ├── renesas,ether.yaml │ │ ├── renesas,etheravb.yaml │ │ ├── renesas,ethertsn.yaml │ │ ├── renesas,r8a779f0-ether-switch.yaml │ │ ├── rfkill-gpio.yaml │ │ ├── rockchip,emac.yaml │ │ ├── rockchip-dwmac.yaml │ │ ├── samsung-sxgbe.txt │ │ ├── sff,sfp.yaml │ │ ├── smsc,lan9115.yaml │ │ ├── smsc,lan91c111.yaml │ │ ├── smsc-lan87xx.txt │ │ ├── snps,dwc-qos-ethernet.txt │ │ ├── snps,dwmac.yaml │ │ ├── socfpga-dwmac.txt │ │ ├── socionext,synquacer-netsec.yaml │ │ ├── socionext,uniphier-ave4.yaml │ │ ├── starfive,jh7110-dwmac.yaml │ │ ├── sti-dwmac.txt │ │ ├── stm32-dwmac.yaml │ │ ├── stmmac.txt │ │ ├── sunplus,sp7021-emac.yaml │ │ ├── ti,bluetooth.yaml │ │ ├── ti,cc1352p7.yaml │ │ ├── ti,cpsw-switch.yaml │ │ ├── ti,davinci-mdio.yaml │ │ ├── ti,dp83822.yaml │ │ ├── ti,dp83867.yaml │ │ ├── ti,dp83869.yaml │ │ ├── ti,icss-iep.yaml │ │ ├── ti,icssg-prueth.yaml │ │ ├── ti,k3-am654-cpsw-nuss.yaml │ │ ├── ti,k3-am654-cpts.yaml │ │ ├── toshiba,visconti-dwmac.yaml │ │ ├── vertexcom-mse102x.yaml │ │ ├── via-rhine.txt │ │ ├── via-velocity.txt │ │ ├── wireless │ │ │ ├── brcm,bcm4329-fmac.yaml │ │ │ ├── esp,esp8089.yaml │ │ │ ├── ieee80211.yaml │ │ │ ├── marvell-8xxx.txt │ │ │ ├── mediatek,mt76.yaml │ │ │ ├── microchip,wilc1000.yaml │ │ │ ├── qca,ath9k.yaml │ │ │ ├── qcom,ath10k.yaml │ │ │ ├── qcom,ath11k-pci.yaml │ │ │ ├── qcom,ath11k.yaml │ │ │ ├── silabs,wfx.yaml │ │ │ ├── ti,wl1251.txt │ │ │ └── ti,wlcore.yaml │ │ ├── wiznet,w5x00.txt │ │ ├── xlnx,axi-ethernet.yaml │ │ ├── xlnx,emaclite.yaml │ │ └── xlnx,gmii-to-rgmii.yaml │ ├── nios2 │ │ └── nios2.txt │ ├── numa.txt │ ├── nvme │ │ └── apple,nvme-ans.yaml │ ├── nvmem │ │ ├── allwinner,sun4i-a10-sid.yaml │ │ ├── amlogic,meson-gxbb-efuse.yaml │ │ ├── amlogic,meson6-efuse.yaml │ │ ├── apple,efuses.yaml │ │ ├── brcm,nvram.yaml │ │ ├── brcm,ocotp.txt │ │ ├── fsl,layerscape-sfp.yaml │ │ ├── fsl,scu-ocotp.yaml │ │ ├── fsl,t1023-sfp.yaml │ │ ├── imx-iim.yaml │ │ ├── imx-ocotp.yaml │ │ ├── ingenic,jz4780-efuse.yaml │ │ ├── layouts │ │ │ ├── fixed-cell.yaml │ │ │ ├── fixed-layout.yaml │ │ │ ├── kontron,sl28-vpd.yaml │ │ │ ├── nvmem-layout.yaml │ │ │ └── onie,tlv-layout.yaml │ │ ├── lpc1850-otp.txt │ │ ├── lpc1857-eeprom.txt │ │ ├── mediatek,efuse.yaml │ │ ├── microchip,lan9662-otpc.yaml │ │ ├── microchip,sama7g5-otpc.yaml │ │ ├── mxs-ocotp.yaml │ │ ├── nintendo-otp.yaml │ │ ├── nvmem-consumer.yaml │ │ ├── nvmem-deprecated-cells.yaml │ │ ├── nvmem-provider.yaml │ │ ├── nvmem.txt │ │ ├── nvmem.yaml │ │ ├── qcom,qfprom.yaml │ │ ├── qcom,sec-qfprom.yaml │ │ ├── qcom,spmi-sdam.yaml │ │ ├── rmem.yaml │ │ ├── rockchip,otp.yaml │ │ ├── rockchip-efuse.yaml │ │ ├── sc27xx-efuse.txt │ │ ├── snvs-lpgpr.yaml │ │ ├── socionext,uniphier-efuse.yaml │ │ ├── sprd-efuse.txt │ │ ├── st,stm32-romem.yaml │ │ ├── sunplus,sp7021-ocotp.yaml │ │ ├── u-boot,env.yaml │ │ ├── vf610-ocotp.txt │ │ ├── xlnx,zynqmp-nvmem.yaml │ │ └── zii,rave-sp-eeprom.txt │ ├── openrisc │ │ └── opencores │ │ │ └── or1ksim.txt │ ├── opp │ │ ├── allwinner,sun50i-h6-operating-points.yaml │ │ ├── operating-points-v2-ti-cpu.yaml │ │ ├── opp-v1.yaml │ │ ├── opp-v2-base.yaml │ │ ├── opp-v2-kryo-cpu.yaml │ │ ├── opp-v2-qcom-level.yaml │ │ ├── opp-v2.yaml │ │ └── ti,omap-opp-supply.yaml │ ├── pci │ │ ├── 83xx-512x-pci.txt │ │ ├── aardvark-pci.txt │ │ ├── altera-pcie-msi.txt │ │ ├── altera-pcie.txt │ │ ├── amlogic,axg-pcie.yaml │ │ ├── apple,pcie.yaml │ │ ├── axis,artpec6-pcie.txt │ │ ├── baikal,bt1-pcie.yaml │ │ ├── brcm,iproc-pcie.yaml │ │ ├── brcm,stb-pcie.yaml │ │ ├── cdns,cdns-pcie-ep.yaml │ │ ├── cdns,cdns-pcie-host.yaml │ │ ├── cdns-pcie-ep.yaml │ │ ├── cdns-pcie-host.yaml │ │ ├── cdns-pcie.yaml │ │ ├── faraday,ftpci100.yaml │ │ ├── fsl,imx6q-pcie-common.yaml │ │ ├── fsl,imx6q-pcie-ep.yaml │ │ ├── fsl,imx6q-pcie.yaml │ │ ├── fsl,pci.txt │ │ ├── hisilicon,kirin-pcie.yaml │ │ ├── hisilicon-histb-pcie.txt │ │ ├── host-generic-pci.yaml │ │ ├── intel,ixp4xx-pci.yaml │ │ ├── intel,keembay-pcie-ep.yaml │ │ ├── intel,keembay-pcie.yaml │ │ ├── intel-gw-pcie.yaml │ │ ├── layerscape-pci.txt │ │ ├── layerscape-pcie-gen4.txt │ │ ├── loongson.yaml │ │ ├── mediatek,mt7621-pcie.yaml │ │ ├── mediatek-pcie-cfg.yaml │ │ ├── mediatek-pcie-gen3.yaml │ │ ├── mediatek-pcie.txt │ │ ├── microchip,pcie-host.yaml │ │ ├── mobiveil-pcie.txt │ │ ├── mvebu-pci.txt │ │ ├── nvidia,tegra194-pcie-ep.yaml │ │ ├── nvidia,tegra194-pcie.yaml │ │ ├── nvidia,tegra20-pcie.txt │ │ ├── pci-armada8k.txt │ │ ├── pci-ep.yaml │ │ ├── pci-iommu.txt │ │ ├── pci-msi.txt │ │ ├── pci.txt │ │ ├── pcie-al.txt │ │ ├── qcom,pcie-common.yaml │ │ ├── qcom,pcie-ep.yaml │ │ ├── qcom,pcie-sa8775p.yaml │ │ ├── qcom,pcie-sc7280.yaml │ │ ├── qcom,pcie-sc8180x.yaml │ │ ├── qcom,pcie-sc8280xp.yaml │ │ ├── qcom,pcie-sm8150.yaml │ │ ├── qcom,pcie-sm8250.yaml │ │ ├── qcom,pcie-sm8350.yaml │ │ ├── qcom,pcie-sm8450.yaml │ │ ├── qcom,pcie-sm8550.yaml │ │ ├── qcom,pcie-x1e80100.yaml │ │ ├── qcom,pcie.yaml │ │ ├── ralink,rt3883-pci.txt │ │ ├── rcar-gen4-pci-ep.yaml │ │ ├── rcar-gen4-pci-host.yaml │ │ ├── rcar-pci-ep.yaml │ │ ├── rcar-pci-host.yaml │ │ ├── renesas,pci-rcar-gen2.yaml │ │ ├── rockchip,rk3399-pcie-common.yaml │ │ ├── rockchip,rk3399-pcie-ep.yaml │ │ ├── rockchip,rk3399-pcie.yaml │ │ ├── rockchip-dw-pcie.yaml │ │ ├── samsung,exynos-pcie.yaml │ │ ├── sifive,fu740-pcie.yaml │ │ ├── snps,dw-pcie-common.yaml │ │ ├── snps,dw-pcie-ep.yaml │ │ ├── snps,dw-pcie.yaml │ │ ├── socionext,uniphier-pcie-ep.yaml │ │ ├── socionext,uniphier-pcie.yaml │ │ ├── spear13xx-pcie.txt │ │ ├── ti,am65-pci-ep.yaml │ │ ├── ti,am65-pci-host.yaml │ │ ├── ti,j721e-pci-ep.yaml │ │ ├── ti,j721e-pci-host.yaml │ │ ├── ti-pci.txt │ │ ├── toshiba,visconti-pcie.yaml │ │ ├── v3-v360epc-pci.txt │ │ ├── versatile.yaml │ │ ├── xgene-pci-msi.txt │ │ ├── xgene-pci.txt │ │ ├── xilinx-versal-cpm.yaml │ │ ├── xlnx,axi-pcie-host.yaml │ │ ├── xlnx,nwl-pcie.yaml │ │ └── xlnx,xdma-host.yaml │ ├── peci │ │ ├── nuvoton,npcm-peci.yaml │ │ ├── peci-aspeed.yaml │ │ └── peci-controller.yaml │ ├── perf │ │ ├── amlogic,g12-ddr-pmu.yaml │ │ ├── apm-xgene-pmu.txt │ │ ├── arm,ccn.yaml │ │ ├── arm,cmn.yaml │ │ ├── arm,coresight-pmu.yaml │ │ ├── arm,dsu-pmu.yaml │ │ ├── arm,smmu-v3-pmcg.yaml │ │ ├── fsl-imx-ddr.yaml │ │ ├── marvell-cn10k-ddr.yaml │ │ ├── marvell-cn10k-tad.yaml │ │ ├── riscv,pmu.yaml │ │ ├── spe-pmu.yaml │ │ └── starfive,jh8100-starlink-pmu.yaml │ ├── phy │ │ ├── allwinner,sun4i-a10-usb-phy.yaml │ │ ├── allwinner,sun50i-a64-usb-phy.yaml │ │ ├── allwinner,sun50i-h6-usb-phy.yaml │ │ ├── allwinner,sun50i-h6-usb3-phy.yaml │ │ ├── allwinner,sun5i-a13-usb-phy.yaml │ │ ├── allwinner,sun6i-a31-mipi-dphy.yaml │ │ ├── allwinner,sun6i-a31-usb-phy.yaml │ │ ├── allwinner,sun8i-a23-usb-phy.yaml │ │ ├── allwinner,sun8i-a83t-usb-phy.yaml │ │ ├── allwinner,sun8i-h3-usb-phy.yaml │ │ ├── allwinner,sun8i-r40-usb-phy.yaml │ │ ├── allwinner,sun8i-v3s-usb-phy.yaml │ │ ├── allwinner,sun9i-a80-usb-phy.yaml │ │ ├── allwinner,suniv-f1c100s-usb-phy.yaml │ │ ├── amlogic,axg-mipi-dphy.yaml │ │ ├── amlogic,g12a-mipi-dphy-analog.yaml │ │ ├── amlogic,g12a-usb2-phy.yaml │ │ ├── amlogic,g12a-usb3-pcie-phy.yaml │ │ ├── amlogic,meson-axg-mipi-pcie-analog.yaml │ │ ├── amlogic,meson-axg-pcie.yaml │ │ ├── amlogic,meson-gxl-usb2-phy.yaml │ │ ├── amlogic,meson8-hdmi-tx-phy.yaml │ │ ├── amlogic,meson8b-usb2-phy.yaml │ │ ├── apm-xgene-phy.txt │ │ ├── bcm-ns-usb2-phy.yaml │ │ ├── bcm-ns-usb3-phy.yaml │ │ ├── berlin-sata-phy.txt │ │ ├── berlin-usb-phy.txt │ │ ├── brcm,bcm63xx-usbh-phy.yaml │ │ ├── brcm,brcmstb-usb-phy.yaml │ │ ├── brcm,cygnus-pcie-phy.yaml │ │ ├── brcm,kona-usb2-phy.yaml │ │ ├── brcm,ns2-drd-phy.txt │ │ ├── brcm,ns2-pcie-phy.yaml │ │ ├── brcm,sata-phy.yaml │ │ ├── brcm,sr-pcie-phy.txt │ │ ├── brcm,stingray-usb-phy.txt │ │ ├── calxeda-combophy.yaml │ │ ├── cdns,dphy-rx.yaml │ │ ├── cdns,dphy.yaml │ │ ├── cdns,salvo-phy.yaml │ │ ├── dm816x-phy.txt │ │ ├── fsl,imx8-pcie-phy.yaml │ │ ├── fsl,imx8mq-usb-phy.yaml │ │ ├── fsl,imx8qm-lvds-phy.yaml │ │ ├── fsl,lynx-28g.yaml │ │ ├── fsl,mxs-usbphy.yaml │ │ ├── hisilicon,hi3660-usb3.yaml │ │ ├── hisilicon,hi3670-usb3.yaml │ │ ├── hisilicon,phy-hi3670-pcie.yaml │ │ ├── hix5hd2-phy.txt │ │ ├── ingenic,phy-usb.yaml │ │ ├── intel,combo-phy.yaml │ │ ├── intel,keembay-phy-usb.yaml │ │ ├── intel,lgm-emmc-phy.yaml │ │ ├── intel,lgm-usb-phy.yaml │ │ ├── keystone-usb-phy.txt │ │ ├── lantiq,vrx200-pcie-phy.yaml │ │ ├── marvell,armada-3700-utmi-phy.yaml │ │ ├── marvell,armada-cp110-utmi-phy.yaml │ │ ├── marvell,mmp3-hsic-phy.yaml │ │ ├── marvell,mmp3-usb-phy.yaml │ │ ├── marvell,pxa1928-usb-phy.yaml │ │ ├── mediatek,dsi-phy.yaml │ │ ├── mediatek,hdmi-phy.yaml │ │ ├── mediatek,mt7621-pci-phy.yaml │ │ ├── mediatek,mt7628-usbphy.yaml │ │ ├── mediatek,mt8365-csi-rx.yaml │ │ ├── mediatek,pcie-phy.yaml │ │ ├── mediatek,tphy.yaml │ │ ├── mediatek,ufs-phy.yaml │ │ ├── mediatek,xsphy.yaml │ │ ├── microchip,lan966x-serdes.yaml │ │ ├── microchip,sparx5-serdes.yaml │ │ ├── mixel,mipi-dsi-phy.yaml │ │ ├── mscc,vsc7514-serdes.yaml │ │ ├── nvidia,tegra124-xusb-padctl.yaml │ │ ├── nvidia,tegra186-xusb-padctl.yaml │ │ ├── nvidia,tegra194-xusb-padctl.yaml │ │ ├── nvidia,tegra20-usb-phy.yaml │ │ ├── nvidia,tegra210-xusb-padctl.yaml │ │ ├── phy-armada38x-comphy.txt │ │ ├── phy-ath79-usb.txt │ │ ├── phy-bindings.txt │ │ ├── phy-cadence-sierra.yaml │ │ ├── phy-cadence-torrent.yaml │ │ ├── phy-cpcap-usb.txt │ │ ├── phy-da8xx-usb.txt │ │ ├── phy-hi3798cv200-combphy.txt │ │ ├── phy-hi6220-usb.txt │ │ ├── phy-hisi-inno-usb2.txt │ │ ├── phy-lantiq-rcu-usb2.txt │ │ ├── phy-lpc18xx-usb-otg.txt │ │ ├── phy-mapphone-mdm6600.txt │ │ ├── phy-miphy28lp.txt │ │ ├── phy-miphy365x.txt │ │ ├── phy-mvebu-comphy.txt │ │ ├── phy-mvebu.txt │ │ ├── phy-pxa-usb.txt │ │ ├── phy-rockchip-inno-hdmi.txt │ │ ├── phy-rockchip-naneng-combphy.yaml │ │ ├── phy-rockchip-typec.txt │ │ ├── phy-stm32-usbphyc.yaml │ │ ├── phy-tegra194-p2u.yaml │ │ ├── pistachio-usb-phy.txt │ │ ├── qcom,edp-phy.yaml │ │ ├── qcom,hdmi-phy-other.yaml │ │ ├── qcom,hdmi-phy-qmp.yaml │ │ ├── qcom,ipq5332-usb-hsphy.yaml │ │ ├── qcom,ipq806x-usb-phy-hs.yaml │ │ ├── qcom,ipq806x-usb-phy-ss.yaml │ │ ├── qcom,ipq8074-qmp-pcie-phy.yaml │ │ ├── qcom,msm8996-qmp-pcie-phy.yaml │ │ ├── qcom,msm8998-qmp-pcie-phy.yaml │ │ ├── qcom,msm8998-qmp-usb3-phy.yaml │ │ ├── qcom,pcie2-phy.yaml │ │ ├── qcom,qusb2-phy.yaml │ │ ├── qcom,sa8775p-dwmac-sgmii-phy.yaml │ │ ├── qcom,sc8280xp-qmp-pcie-phy.yaml │ │ ├── qcom,sc8280xp-qmp-ufs-phy.yaml │ │ ├── qcom,sc8280xp-qmp-usb3-uni-phy.yaml │ │ ├── qcom,sc8280xp-qmp-usb43dp-phy.yaml │ │ ├── qcom,snps-eusb2-phy.yaml │ │ ├── qcom,snps-eusb2-repeater.yaml │ │ ├── qcom,usb-8x16-phy.txt │ │ ├── qcom,usb-hs-28nm.yaml │ │ ├── qcom,usb-hs-phy.yaml │ │ ├── qcom,usb-hsic-phy.yaml │ │ ├── qcom,usb-snps-femto-v2.yaml │ │ ├── qcom,usb-ss.yaml │ │ ├── qcom-apq8064-sata-phy.txt │ │ ├── qcom-ipq806x-sata-phy.txt │ │ ├── qcom-usb-ipq4019-phy.yaml │ │ ├── realtek,usb2phy.yaml │ │ ├── realtek,usb3phy.yaml │ │ ├── renesas,r8a779f0-ether-serdes.yaml │ │ ├── renesas,rcar-gen2-usb-phy.yaml │ │ ├── renesas,rcar-gen3-pcie-phy.yaml │ │ ├── renesas,usb2-phy.yaml │ │ ├── renesas,usb3-phy.yaml │ │ ├── rockchip,inno-usb2phy.yaml │ │ ├── rockchip,pcie3-phy.yaml │ │ ├── rockchip,px30-dsi-dphy.yaml │ │ ├── rockchip,rk3288-dp-phy.yaml │ │ ├── rockchip,rk3588-hdptx-phy.yaml │ │ ├── rockchip-emmc-phy.txt │ │ ├── rockchip-inno-csi-dphy.yaml │ │ ├── rockchip-mipi-dphy-rx0.yaml │ │ ├── rockchip-pcie-phy.txt │ │ ├── rockchip-usb-phy.yaml │ │ ├── samsung,dp-video-phy.yaml │ │ ├── samsung,exynos-hdmi-phy.yaml │ │ ├── samsung,exynos-pcie-phy.yaml │ │ ├── samsung,exynos5250-sata-phy.yaml │ │ ├── samsung,mipi-video-phy.yaml │ │ ├── samsung,ufs-phy.yaml │ │ ├── samsung,usb2-phy.yaml │ │ ├── samsung,usb3-drd-phy.yaml │ │ ├── socionext,uniphier-ahci-phy.yaml │ │ ├── socionext,uniphier-pcie-phy.yaml │ │ ├── socionext,uniphier-usb2-phy.yaml │ │ ├── socionext,uniphier-usb3hs-phy.yaml │ │ ├── socionext,uniphier-usb3ss-phy.yaml │ │ ├── st,stih407-usb2-phy.yaml │ │ ├── st-spear-miphy.txt │ │ ├── starfive,jh7110-dphy-rx.yaml │ │ ├── starfive,jh7110-pcie-phy.yaml │ │ ├── starfive,jh7110-usb-phy.yaml │ │ ├── sunplus,sp7021-usb2-phy.yaml │ │ ├── ti,omap-usb2.yaml │ │ ├── ti,phy-am654-serdes.yaml │ │ ├── ti,phy-gmii-sel.yaml │ │ ├── ti,phy-j721e-wiz.yaml │ │ ├── ti,tcan104x-can.yaml │ │ ├── ti-phy.txt │ │ ├── transmit-amplitude.yaml │ │ └── xlnx,zynqmp-psgtr.yaml │ ├── pinctrl │ │ ├── abilis,tb10x-iomux.txt │ │ ├── actions,s500-pinctrl.yaml │ │ ├── actions,s700-pinctrl.txt │ │ ├── actions,s900-pinctrl.txt │ │ ├── allwinner,sun4i-a10-pinctrl.yaml │ │ ├── amlogic,meson-pinctrl-a1.yaml │ │ ├── amlogic,meson-pinctrl-common.yaml │ │ ├── amlogic,meson-pinctrl-g12a-aobus.yaml │ │ ├── amlogic,meson-pinctrl-g12a-periphs.yaml │ │ ├── amlogic,meson8-pinctrl-aobus.yaml │ │ ├── amlogic,meson8-pinctrl-cbus.yaml │ │ ├── apple,pinctrl.yaml │ │ ├── aspeed,ast2400-pinctrl.yaml │ │ ├── aspeed,ast2500-pinctrl.yaml │ │ ├── aspeed,ast2600-pinctrl.yaml │ │ ├── atmel,at91-pinctrl.txt │ │ ├── atmel,at91-pio4-pinctrl.txt │ │ ├── awinic,aw9523-pinctrl.yaml │ │ ├── axis,artpec6-pinctrl.txt │ │ ├── berlin,pinctrl.txt │ │ ├── bitmain,bm1880-pinctrl.txt │ │ ├── brcm,bcm11351-pinctrl.yaml │ │ ├── brcm,bcm2835-gpio.txt │ │ ├── brcm,bcm4908-pinctrl.yaml │ │ ├── brcm,bcm6318-pinctrl.yaml │ │ ├── brcm,bcm63268-pinctrl.yaml │ │ ├── brcm,bcm6328-pinctrl.yaml │ │ ├── brcm,bcm6358-pinctrl.yaml │ │ ├── brcm,bcm6362-pinctrl.yaml │ │ ├── brcm,bcm6368-pinctrl.yaml │ │ ├── brcm,cygnus-pinmux.txt │ │ ├── brcm,iproc-gpio.txt │ │ ├── brcm,ns-pinmux.yaml │ │ ├── brcm,ns2-pinmux.txt │ │ ├── brcm,nsp-gpio.txt │ │ ├── brcm,nsp-pinmux.txt │ │ ├── canaan,k210-fpioa.yaml │ │ ├── cirrus,lochnagar.yaml │ │ ├── cirrus,madera.yaml │ │ ├── cnxt,cx92755-pinctrl.txt │ │ ├── cortina,gemini-pinctrl.txt │ │ ├── cypress,cy8c95x0.yaml │ │ ├── fsl,imx-pinctrl.txt │ │ ├── fsl,imx25-pinctrl.txt │ │ ├── fsl,imx27-pinctrl.txt │ │ ├── fsl,imx35-pinctrl.txt │ │ ├── fsl,imx50-pinctrl.txt │ │ ├── fsl,imx51-pinctrl.txt │ │ ├── fsl,imx53-pinctrl.txt │ │ ├── fsl,imx6dl-pinctrl.txt │ │ ├── fsl,imx6q-pinctrl.txt │ │ ├── fsl,imx6sl-pinctrl.txt │ │ ├── fsl,imx6sll-pinctrl.txt │ │ ├── fsl,imx6sx-pinctrl.txt │ │ ├── fsl,imx6ul-pinctrl.yaml │ │ ├── fsl,imx7d-pinctrl.yaml │ │ ├── fsl,imx7ulp-pinctrl.txt │ │ ├── fsl,imx8m-pinctrl.yaml │ │ ├── fsl,imx8ulp-pinctrl.yaml │ │ ├── fsl,imx93-pinctrl.yaml │ │ ├── fsl,imxrt1050.yaml │ │ ├── fsl,imxrt1170.yaml │ │ ├── fsl,mxs-pinctrl.txt │ │ ├── fsl,scu-pinctrl.yaml │ │ ├── fsl,vf610-pinctrl.txt │ │ ├── img,pistachio-pinctrl.txt │ │ ├── ingenic,pinctrl.yaml │ │ ├── intel,lgm-io.yaml │ │ ├── intel,pinctrl-keembay.yaml │ │ ├── lantiq,pinctrl-falcon.txt │ │ ├── lantiq,pinctrl-xway.txt │ │ ├── loongson,ls2k-pinctrl.yaml │ │ ├── marvell,ac5-pinctrl.yaml │ │ ├── marvell,armada-370-pinctrl.txt │ │ ├── marvell,armada-375-pinctrl.txt │ │ ├── marvell,armada-37xx-pinctrl.txt │ │ ├── marvell,armada-38x-pinctrl.txt │ │ ├── marvell,armada-39x-pinctrl.txt │ │ ├── marvell,armada-98dx3236-pinctrl.txt │ │ ├── marvell,armada-xp-pinctrl.txt │ │ ├── marvell,dove-pinctrl.txt │ │ ├── marvell,kirkwood-pinctrl.txt │ │ ├── marvell,mvebu-pinctrl.txt │ │ ├── marvell,orion-pinctrl.txt │ │ ├── mediatek,mt65xx-pinctrl.yaml │ │ ├── mediatek,mt6779-pinctrl.yaml │ │ ├── mediatek,mt6795-pinctrl.yaml │ │ ├── mediatek,mt7620-pinctrl.yaml │ │ ├── mediatek,mt7621-pinctrl.yaml │ │ ├── mediatek,mt7622-pinctrl.yaml │ │ ├── mediatek,mt76x8-pinctrl.yaml │ │ ├── mediatek,mt7981-pinctrl.yaml │ │ ├── mediatek,mt7986-pinctrl.yaml │ │ ├── mediatek,mt8183-pinctrl.yaml │ │ ├── mediatek,mt8186-pinctrl.yaml │ │ ├── mediatek,mt8188-pinctrl.yaml │ │ ├── mediatek,mt8192-pinctrl.yaml │ │ ├── mediatek,mt8195-pinctrl.yaml │ │ ├── mediatek,mt8365-pinctrl.yaml │ │ ├── microchip,pic32-pinctrl.txt │ │ ├── microchip,sparx5-sgpio.yaml │ │ ├── mobileye,eyeq5-pinctrl.yaml │ │ ├── mscc,ocelot-pinctrl.yaml │ │ ├── nuvoton,npcm7xx-pinctrl.txt │ │ ├── nuvoton,npcm845-pinctrl.yaml │ │ ├── nuvoton,wpcm450-pinctrl.yaml │ │ ├── nvidia,tegra-pinmux-common.yaml │ │ ├── nvidia,tegra114-pinmux.yaml │ │ ├── nvidia,tegra124-pinmux.yaml │ │ ├── nvidia,tegra124-xusb-padctl.txt │ │ ├── nvidia,tegra194-pinmux.yaml │ │ ├── nvidia,tegra20-pinmux.yaml │ │ ├── nvidia,tegra210-pinmux.yaml │ │ ├── nvidia,tegra234-pinmux-aon.yaml │ │ ├── nvidia,tegra234-pinmux-common.yaml │ │ ├── nvidia,tegra234-pinmux.yaml │ │ ├── nvidia,tegra30-pinmux.yaml │ │ ├── nxp,lpc1850-scu.txt │ │ ├── nxp,s32g2-siul2-pinctrl.yaml │ │ ├── pincfg-node.yaml │ │ ├── pinctrl-bindings.txt │ │ ├── pinctrl-max77620.txt │ │ ├── pinctrl-mcp23s08.txt │ │ ├── pinctrl-palmas.txt │ │ ├── pinctrl-rk805.txt │ │ ├── pinctrl-single.yaml │ │ ├── pinctrl-sirf.txt │ │ ├── pinctrl-st.txt │ │ ├── pinctrl-vt8500.txt │ │ ├── pinctrl.yaml │ │ ├── pinctrl_spear.txt │ │ ├── pinmux-node.yaml │ │ ├── qcom,apq8064-pinctrl.txt │ │ ├── qcom,apq8084-pinctrl.txt │ │ ├── qcom,ipq4019-pinctrl.txt │ │ ├── qcom,ipq5018-tlmm.yaml │ │ ├── qcom,ipq5332-tlmm.yaml │ │ ├── qcom,ipq6018-pinctrl.yaml │ │ ├── qcom,ipq8064-pinctrl.txt │ │ ├── qcom,ipq8074-pinctrl.yaml │ │ ├── qcom,ipq9574-tlmm.yaml │ │ ├── qcom,lpass-lpi-common.yaml │ │ ├── qcom,mdm9607-tlmm.yaml │ │ ├── qcom,mdm9615-pinctrl.yaml │ │ ├── qcom,msm8226-pinctrl.yaml │ │ ├── qcom,msm8660-pinctrl.yaml │ │ ├── qcom,msm8909-tlmm.yaml │ │ ├── qcom,msm8916-pinctrl.yaml │ │ ├── qcom,msm8953-pinctrl.yaml │ │ ├── qcom,msm8960-pinctrl.yaml │ │ ├── qcom,msm8974-pinctrl.yaml │ │ ├── qcom,msm8976-pinctrl.yaml │ │ ├── qcom,msm8994-pinctrl.yaml │ │ ├── qcom,msm8996-pinctrl.yaml │ │ ├── qcom,msm8998-pinctrl.yaml │ │ ├── qcom,pmic-gpio.yaml │ │ ├── qcom,pmic-mpp.yaml │ │ ├── qcom,qcm2290-tlmm.yaml │ │ ├── qcom,qcs404-pinctrl.yaml │ │ ├── qcom,qdu1000-tlmm.yaml │ │ ├── qcom,sa8775p-tlmm.yaml │ │ ├── qcom,sc7180-pinctrl.yaml │ │ ├── qcom,sc7280-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sc7280-pinctrl.yaml │ │ ├── qcom,sc8180x-tlmm.yaml │ │ ├── qcom,sc8280xp-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sc8280xp-tlmm.yaml │ │ ├── qcom,sdm630-pinctrl.yaml │ │ ├── qcom,sdm670-tlmm.yaml │ │ ├── qcom,sdm845-pinctrl.yaml │ │ ├── qcom,sdx55-pinctrl.yaml │ │ ├── qcom,sdx65-tlmm.yaml │ │ ├── qcom,sdx75-tlmm.yaml │ │ ├── qcom,sm4450-tlmm.yaml │ │ ├── qcom,sm6115-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sm6115-tlmm.yaml │ │ ├── qcom,sm6125-tlmm.yaml │ │ ├── qcom,sm6350-tlmm.yaml │ │ ├── qcom,sm6375-tlmm.yaml │ │ ├── qcom,sm7150-tlmm.yaml │ │ ├── qcom,sm8150-pinctrl.yaml │ │ ├── qcom,sm8250-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sm8250-pinctrl.yaml │ │ ├── qcom,sm8350-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sm8350-tlmm.yaml │ │ ├── qcom,sm8450-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sm8450-tlmm.yaml │ │ ├── qcom,sm8550-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sm8550-tlmm.yaml │ │ ├── qcom,sm8650-lpass-lpi-pinctrl.yaml │ │ ├── qcom,sm8650-tlmm.yaml │ │ ├── qcom,tlmm-common.yaml │ │ ├── qcom,x1e80100-tlmm.yaml │ │ ├── ralink,rt2880-pinctrl.yaml │ │ ├── ralink,rt305x-pinctrl.yaml │ │ ├── ralink,rt3352-pinctrl.yaml │ │ ├── ralink,rt3883-pinctrl.yaml │ │ ├── ralink,rt5350-pinctrl.yaml │ │ ├── realtek,rtd1315e-pinctrl.yaml │ │ ├── realtek,rtd1319d-pinctrl.yaml │ │ ├── realtek,rtd1619b-pinctrl.yaml │ │ ├── renesas,pfc.yaml │ │ ├── renesas,rza1-ports.yaml │ │ ├── renesas,rza2-pinctrl.yaml │ │ ├── renesas,rzg2l-pinctrl.yaml │ │ ├── renesas,rzg2l-poeg.yaml │ │ ├── renesas,rzn1-pinctrl.yaml │ │ ├── renesas,rzv2m-pinctrl.yaml │ │ ├── rockchip,pinctrl.yaml │ │ ├── samsung,pinctrl-gpio-bank.yaml │ │ ├── samsung,pinctrl-pins-cfg.yaml │ │ ├── samsung,pinctrl-wakeup-interrupt.yaml │ │ ├── samsung,pinctrl.yaml │ │ ├── semtech,sx1501q.yaml │ │ ├── socionext,uniphier-pinctrl.yaml │ │ ├── sprd,pinctrl.txt │ │ ├── sprd,sc9860-pinctrl.txt │ │ ├── st,stm32-pinctrl.yaml │ │ ├── starfive,jh7100-pinctrl.yaml │ │ ├── starfive,jh7110-aon-pinctrl.yaml │ │ ├── starfive,jh7110-sys-pinctrl.yaml │ │ ├── ste,abx500.txt │ │ ├── ste,nomadik.txt │ │ ├── sunplus,sp7021-pinctrl.yaml │ │ ├── ti,da850-pupd.txt │ │ ├── ti,iodelay.txt │ │ ├── toshiba,visconti-pinctrl.yaml │ │ ├── xlnx,pinctrl-zynq.yaml │ │ └── xlnx,zynqmp-pinctrl.yaml │ ├── pmem │ │ └── pmem-region.txt │ ├── power │ │ ├── actions,owl-sps.txt │ │ ├── allwinner,sun20i-d1-ppu.yaml │ │ ├── amlogic,meson-ee-pwrc.yaml │ │ ├── amlogic,meson-gx-pwrc.txt │ │ ├── amlogic,meson-sec-pwrc.yaml │ │ ├── apple,pmgr-pwrstate.yaml │ │ ├── avs │ │ │ └── qcom,cpr.yaml │ │ ├── brcm,bcm-pmb.yaml │ │ ├── brcm,bcm63xx-power.yaml │ │ ├── domain-idle-state.yaml │ │ ├── fsl,imx-gpc.yaml │ │ ├── fsl,imx-gpcv2.yaml │ │ ├── fsl,scu-pd.yaml │ │ ├── mediatek,power-controller.yaml │ │ ├── mti,mips-cpc.yaml │ │ ├── pd-samsung.yaml │ │ ├── power-controller.txt │ │ ├── power-domain.yaml │ │ ├── power_domain.txt │ │ ├── qcom,kpss-acc-v2.yaml │ │ ├── qcom,rpmpd.yaml │ │ ├── renesas,apmu.yaml │ │ ├── renesas,rcar-sysc.yaml │ │ ├── renesas,sysc-rmobile.yaml │ │ ├── reset │ │ │ ├── atmel,at91sam9260-shdwc.yaml │ │ │ ├── atmel,sama5d2-shdwc.yaml │ │ │ ├── axxia-reset.txt │ │ │ ├── brcm,bcm21664-resetmgr.yaml │ │ │ ├── gemini-poweroff.txt │ │ │ ├── gpio-poweroff.yaml │ │ │ ├── gpio-restart.yaml │ │ │ ├── keystone-reset.txt │ │ │ ├── ltc2952-poweroff.txt │ │ │ ├── mt6323-poweroff.txt │ │ │ ├── nvmem-reboot-mode.yaml │ │ │ ├── ocelot-reset.txt │ │ │ ├── qcom,pon.yaml │ │ │ ├── qcom,pshold.yaml │ │ │ ├── qnap-poweroff.txt │ │ │ ├── reboot-mode.yaml │ │ │ ├── regulator-poweroff.yaml │ │ │ ├── restart-handler.yaml │ │ │ ├── restart-poweroff.txt │ │ │ ├── st-reset.txt │ │ │ ├── syscon-poweroff.yaml │ │ │ ├── syscon-reboot-mode.yaml │ │ │ ├── syscon-reboot.yaml │ │ │ └── xlnx,zynqmp-power.yaml │ │ ├── rockchip,power-controller.yaml │ │ ├── rockchip-io-domain.yaml │ │ ├── starfive,jh7110-pmu.yaml │ │ ├── supply │ │ │ ├── active-semi,act8945a-charger.yaml │ │ │ ├── adc-battery.yaml │ │ │ ├── battery.yaml │ │ │ ├── bq2415x.yaml │ │ │ ├── bq24190.yaml │ │ │ ├── bq24257.yaml │ │ │ ├── bq24735.yaml │ │ │ ├── bq2515x.yaml │ │ │ ├── bq256xx.yaml │ │ │ ├── bq25890.yaml │ │ │ ├── bq25980.yaml │ │ │ ├── bq27xxx.yaml │ │ │ ├── charger-manager.yaml │ │ │ ├── cpcap-battery.yaml │ │ │ ├── cpcap-charger.yaml │ │ │ ├── cw2015_battery.yaml │ │ │ ├── dlg,da9150-charger.yaml │ │ │ ├── dlg,da9150-fuel-gauge.yaml │ │ │ ├── gpio-charger.yaml │ │ │ ├── ingenic,battery.yaml │ │ │ ├── isp1704.yaml │ │ │ ├── lego,ev3-battery.yaml │ │ │ ├── lltc,lt3651-charger.yaml │ │ │ ├── lltc,ltc294x.yaml │ │ │ ├── ltc4162-l.yaml │ │ │ ├── max77650-charger.yaml │ │ │ ├── maxim,ds2760.yaml │ │ │ ├── maxim,max14577.yaml │ │ │ ├── maxim,max14656.yaml │ │ │ ├── maxim,max17040.yaml │ │ │ ├── maxim,max17042.yaml │ │ │ ├── maxim,max77693.yaml │ │ │ ├── maxim,max77976.yaml │ │ │ ├── maxim,max8903.yaml │ │ │ ├── mediatek,mt6370-charger.yaml │ │ │ ├── microchip,ucs1002.yaml │ │ │ ├── mitsumi,mm8013.yaml │ │ │ ├── mt6360_charger.yaml │ │ │ ├── nokia,n900-battery.yaml │ │ │ ├── olpc-battery.yaml │ │ │ ├── power-supply.yaml │ │ │ ├── qcom,pm8916-bms-vm.yaml │ │ │ ├── qcom,pm8916-lbc.yaml │ │ │ ├── qcom,pm8941-charger.yaml │ │ │ ├── qcom,pm8941-coincell.yaml │ │ │ ├── qcom,pmi8998-charger.yaml │ │ │ ├── richtek,rt5033-battery.yaml │ │ │ ├── richtek,rt5033-charger.yaml │ │ │ ├── richtek,rt9455.yaml │ │ │ ├── richtek,rt9467.yaml │ │ │ ├── richtek,rt9471.yaml │ │ │ ├── rohm,bd99954.yaml │ │ │ ├── samsung,battery.yaml │ │ │ ├── sbs,sbs-battery.yaml │ │ │ ├── sbs,sbs-charger.yaml │ │ │ ├── sbs,sbs-manager.yaml │ │ │ ├── sc2731-charger.yaml │ │ │ ├── sc27xx-fg.yaml │ │ │ ├── stericsson,ab8500-btemp.yaml │ │ │ ├── stericsson,ab8500-chargalg.yaml │ │ │ ├── stericsson,ab8500-charger.yaml │ │ │ ├── stericsson,ab8500-fg.yaml │ │ │ ├── summit,smb347-charger.yaml │ │ │ ├── ti,lp8727.yaml │ │ │ ├── tps65090-charger.yaml │ │ │ ├── tps65217-charger.yaml │ │ │ ├── twl4030-charger.yaml │ │ │ ├── x-powers,axp20x-ac-power-supply.yaml │ │ │ ├── x-powers,axp20x-battery-power-supply.yaml │ │ │ └── x-powers,axp20x-usb-power-supply.yaml │ │ ├── ti-smartreflex.txt │ │ └── wakeup-source.txt │ ├── powerpc │ │ ├── 4xx │ │ │ ├── akebono.txt │ │ │ ├── cpm.txt │ │ │ ├── hsta.txt │ │ │ ├── ppc440spe-adma.txt │ │ │ └── reboot.txt │ │ ├── fsl │ │ │ ├── ccf.txt │ │ │ ├── cpus.txt │ │ │ ├── dcsr.txt │ │ │ ├── diu.txt │ │ │ ├── dma.txt │ │ │ ├── ecm.txt │ │ │ ├── interlaken-lac.txt │ │ │ ├── lbc.txt │ │ │ ├── mcm.txt │ │ │ ├── mcu-mpc8349emitx.txt │ │ │ ├── mpc5121-psc.txt │ │ │ ├── mpc512x_lpbfifo.txt │ │ │ ├── mpc5200.txt │ │ │ ├── mpic-msgr.txt │ │ │ ├── mpic-timer.txt │ │ │ ├── mpic.txt │ │ │ ├── msi-pic.txt │ │ │ ├── pamu.txt │ │ │ ├── pmc.txt │ │ │ ├── raideng.txt │ │ │ ├── scfg.txt │ │ │ ├── srio-rmu.txt │ │ │ └── srio.txt │ │ ├── ibm,powerpc-cpu-features.txt │ │ ├── ibm,vas.txt │ │ ├── nintendo │ │ │ ├── gamecube.txt │ │ │ └── wii.txt │ │ ├── opal │ │ │ ├── oppanel-opal.txt │ │ │ ├── power-mgt.txt │ │ │ └── sensor-groups.txt │ │ └── sleep.yaml │ ├── pps │ │ └── pps-gpio.yaml │ ├── ptp │ │ ├── brcm,ptp-dte.txt │ │ ├── ptp-idt82p33.yaml │ │ ├── ptp-idtcm.yaml │ │ ├── ptp-ines.txt │ │ ├── ptp-qoriq.txt │ │ └── timestamper.txt │ ├── pwm │ │ ├── allwinner,sun4i-a10-pwm.yaml │ │ ├── apple,s5l-fpwm.yaml │ │ ├── atmel,at91sam-pwm.yaml │ │ ├── atmel,hlcdc-pwm.yaml │ │ ├── brcm,bcm7038-pwm.yaml │ │ ├── brcm,iproc-pwm.yaml │ │ ├── brcm,kona-pwm.yaml │ │ ├── cirrus,clps711x-pwm.txt │ │ ├── clk-pwm.yaml │ │ ├── google,cros-ec-pwm.yaml │ │ ├── img-pwm.txt │ │ ├── imx-pwm.yaml │ │ ├── imx-tpm-pwm.yaml │ │ ├── intel,keembay-pwm.yaml │ │ ├── intel,lgm-pwm.yaml │ │ ├── iqs620a-pwm.yaml │ │ ├── kontron,sl28cpld-pwm.yaml │ │ ├── lpc1850-sct-pwm.txt │ │ ├── lpc32xx-pwm.txt │ │ ├── marvell,pxa-pwm.yaml │ │ ├── mediatek,mt2712-pwm.yaml │ │ ├── mediatek,pwm-disp.yaml │ │ ├── microchip,corepwm.yaml │ │ ├── mxs-pwm.yaml │ │ ├── nvidia,tegra20-pwm.yaml │ │ ├── nxp,pca9685-pwm.txt │ │ ├── opencores,pwm.yaml │ │ ├── pwm-amlogic.yaml │ │ ├── pwm-bcm2835.yaml │ │ ├── pwm-berlin.txt │ │ ├── pwm-fsl-ftm.txt │ │ ├── pwm-hibvt.txt │ │ ├── pwm-lp3943.txt │ │ ├── pwm-rockchip.yaml │ │ ├── pwm-samsung.yaml │ │ ├── pwm-sifive.yaml │ │ ├── pwm-sprd.txt │ │ ├── pwm-st.txt │ │ ├── pwm-tiecap.yaml │ │ ├── pwm-tiehrpwm.yaml │ │ ├── pwm-tipwmss.txt │ │ ├── pwm.txt │ │ ├── pwm.yaml │ │ ├── renesas,pwm-rcar.yaml │ │ ├── renesas,tpu-pwm.yaml │ │ ├── snps,dw-apb-timers-pwm2.yaml │ │ ├── spear-pwm.txt │ │ ├── st,stmpe-pwm.txt │ │ ├── sunplus,sp7021-pwm.yaml │ │ ├── ti,omap-dmtimer-pwm.yaml │ │ ├── ti,twl-pwm.txt │ │ ├── ti,twl-pwmled.txt │ │ ├── toshiba,pwm-visconti.yaml │ │ └── vt8500-pwm.txt │ ├── regmap │ │ └── regmap.txt │ ├── regulator │ │ ├── 88pg86x.txt │ │ ├── 88pm800.txt │ │ ├── 88pm860x.txt │ │ ├── active-semi,act8600.yaml │ │ ├── active-semi,act8846.yaml │ │ ├── active-semi,act8865.yaml │ │ ├── active-semi,act8945a.yaml │ │ ├── adi,max77503-regulator.yaml │ │ ├── adi,max77541-regulator.yaml │ │ ├── adi,max77857.yaml │ │ ├── anatop-regulator.yaml │ │ ├── as3722-regulator.txt │ │ ├── awinic,aw37503.yaml │ │ ├── cpcap-regulator.txt │ │ ├── da9211.txt │ │ ├── dlg,da9121.yaml │ │ ├── dlg,da9210.yaml │ │ ├── dlg,slg51000.yaml │ │ ├── fcs,fan53555.yaml │ │ ├── fixed-regulator.yaml │ │ ├── google,cros-ec-regulator.yaml │ │ ├── gpio-regulator.yaml │ │ ├── hisilicon,hi655x-regulator.txt │ │ ├── infineon,ir38060.yaml │ │ ├── isl9305.txt │ │ ├── lm363x-regulator.txt │ │ ├── lp872x.txt │ │ ├── ltc3589.txt │ │ ├── ltc3676.txt │ │ ├── max1586-regulator.txt │ │ ├── max77650-regulator.yaml │ │ ├── max8660.yaml │ │ ├── max8893.yaml │ │ ├── max8907.txt │ │ ├── max8925-regulator.txt │ │ ├── maxim,max14577.yaml │ │ ├── maxim,max20086.yaml │ │ ├── maxim,max20411.yaml │ │ ├── maxim,max77686.yaml │ │ ├── maxim,max77693.yaml │ │ ├── maxim,max77802.yaml │ │ ├── maxim,max77826.yaml │ │ ├── maxim,max77843.yaml │ │ ├── maxim,max8952.yaml │ │ ├── maxim,max8973.yaml │ │ ├── maxim,max8997.yaml │ │ ├── mediatek,mt6331-regulator.yaml │ │ ├── mediatek,mt6332-regulator.yaml │ │ ├── mediatek,mt6357-regulator.yaml │ │ ├── mediatek,mt6358-regulator.yaml │ │ ├── microchip,mcp16502.yaml │ │ ├── mp8859.txt │ │ ├── mps,mp5416.yaml │ │ ├── mps,mp886x.yaml │ │ ├── mps,mpq2286.yaml │ │ ├── mps,mpq7920.yaml │ │ ├── mps,mpq7932.yaml │ │ ├── mt6311-regulator.txt │ │ ├── mt6315-regulator.yaml │ │ ├── mt6323-regulator.txt │ │ ├── mt6359-regulator.yaml │ │ ├── mt6360-regulator.yaml │ │ ├── mt6380-regulator.txt │ │ ├── mt6397-regulator.txt │ │ ├── nvidia,tegra-regulators-coupling.txt │ │ ├── nxp,pca9450-regulator.yaml │ │ ├── nxp,pf8x00-regulator.yaml │ │ ├── onnn,fan53880.yaml │ │ ├── palmas-pmic.txt │ │ ├── pbias-regulator.txt │ │ ├── pfuze100.yaml │ │ ├── pv88060.txt │ │ ├── pv88080.txt │ │ ├── pv88090.txt │ │ ├── pwm-regulator.yaml │ │ ├── qcom,rpm-regulator.yaml │ │ ├── qcom,rpmh-regulator.yaml │ │ ├── qcom,sdm845-refgen-regulator.yaml │ │ ├── qcom,smd-rpm-regulator.yaml │ │ ├── qcom,spmi-regulator.yaml │ │ ├── qcom,usb-vbus-regulator.yaml │ │ ├── qcom-labibb-regulator.yaml │ │ ├── raspberrypi,7inch-touchscreen-panel-regulator.yaml │ │ ├── regulator-max77620.txt │ │ ├── regulator-output.yaml │ │ ├── regulator.txt │ │ ├── regulator.yaml │ │ ├── renesas,raa215300.yaml │ │ ├── richtek,rt4801-regulator.yaml │ │ ├── richtek,rt4803.yaml │ │ ├── richtek,rt4831-regulator.yaml │ │ ├── richtek,rt5190a-regulator.yaml │ │ ├── richtek,rt5739.yaml │ │ ├── richtek,rt5759-regulator.yaml │ │ ├── richtek,rt6160-regulator.yaml │ │ ├── richtek,rt6190.yaml │ │ ├── richtek,rt6245-regulator.yaml │ │ ├── richtek,rtmv20-regulator.yaml │ │ ├── richtek,rtq2134-regulator.yaml │ │ ├── richtek,rtq2208.yaml │ │ ├── richtek,rtq6752-regulator.yaml │ │ ├── rohm,bd71815-regulator.yaml │ │ ├── rohm,bd71828-regulator.yaml │ │ ├── rohm,bd71837-regulator.yaml │ │ ├── rohm,bd71847-regulator.yaml │ │ ├── rohm,bd9576-regulator.yaml │ │ ├── samsung,s2mpa01.yaml │ │ ├── samsung,s2mps11.yaml │ │ ├── samsung,s2mps13.yaml │ │ ├── samsung,s2mps14.yaml │ │ ├── samsung,s2mps15.yaml │ │ ├── samsung,s2mpu02.yaml │ │ ├── samsung,s5m8767.yaml │ │ ├── silergy,sy8106a.yaml │ │ ├── silergy,sy8824x.yaml │ │ ├── silergy,sy8827n.yaml │ │ ├── siliconmitus,sm5703-regulator.yaml │ │ ├── sky81452-regulator.txt │ │ ├── socionext,uniphier-regulator.yaml │ │ ├── sprd,sc2731-regulator.txt │ │ ├── st,stm32-booster.yaml │ │ ├── st,stm32-vrefbuf.yaml │ │ ├── st,stm32mp1-pwr-reg.yaml │ │ ├── ti,tps62360.yaml │ │ ├── ti,tps62864.yaml │ │ ├── ti,tps62870.yaml │ │ ├── ti,tps65132.yaml │ │ ├── ti,tps65219.yaml │ │ ├── ti-abb-regulator.txt │ │ ├── tps51632-regulator.txt │ │ ├── tps65023.txt │ │ ├── tps65090.txt │ │ ├── tps65217.txt │ │ ├── tps65218.txt │ │ ├── tps6586x.txt │ │ ├── twl-regulator.txt │ │ ├── vctrl.txt │ │ ├── vexpress.txt │ │ ├── vqmmc-ipq4019-regulator.yaml │ │ └── wlf,arizona.yaml │ ├── remoteproc │ │ ├── amlogic,meson-mx-ao-arc.yaml │ │ ├── fsl,imx-rproc.yaml │ │ ├── ingenic,vpu.yaml │ │ ├── mtk,scp.yaml │ │ ├── qcom,adsp.yaml │ │ ├── qcom,glink-edge.yaml │ │ ├── qcom,glink-rpm-edge.yaml │ │ ├── qcom,msm8916-mss-pil.yaml │ │ ├── qcom,msm8996-mss-pil.yaml │ │ ├── qcom,pas-common.yaml │ │ ├── qcom,pil-info.yaml │ │ ├── qcom,q6v5.txt │ │ ├── qcom,qcs404-cdsp-pil.yaml │ │ ├── qcom,qcs404-pas.yaml │ │ ├── qcom,rpm-proc.yaml │ │ ├── qcom,sc7180-mss-pil.yaml │ │ ├── qcom,sc7180-pas.yaml │ │ ├── qcom,sc7280-adsp-pil.yaml │ │ ├── qcom,sc7280-mss-pil.yaml │ │ ├── qcom,sc7280-wpss-pil.yaml │ │ ├── qcom,sc8180x-pas.yaml │ │ ├── qcom,sc8280xp-pas.yaml │ │ ├── qcom,sdm845-adsp-pil.yaml │ │ ├── qcom,sdx55-pas.yaml │ │ ├── qcom,sm6115-pas.yaml │ │ ├── qcom,sm6350-pas.yaml │ │ ├── qcom,sm6375-pas.yaml │ │ ├── qcom,sm8150-pas.yaml │ │ ├── qcom,sm8350-pas.yaml │ │ ├── qcom,sm8550-pas.yaml │ │ ├── qcom,smd-edge.yaml │ │ ├── qcom,wcnss-pil.yaml │ │ ├── renesas,rcar-rproc.yaml │ │ ├── st,stm32-rproc.yaml │ │ ├── st-rproc.txt │ │ ├── ti,davinci-rproc.txt │ │ ├── ti,k3-dsp-rproc.yaml │ │ ├── ti,k3-r5f-rproc.yaml │ │ ├── ti,keystone-rproc.txt │ │ ├── ti,omap-remoteproc.yaml │ │ ├── ti,pru-consumer.yaml │ │ ├── ti,pru-rproc.yaml │ │ ├── wkup_m3_rproc.txt │ │ └── xlnx,zynqmp-r5fss.yaml │ ├── reserved-memory │ │ ├── google,open-dice.yaml │ │ ├── nvidia,tegra210-emc-table.yaml │ │ ├── nvidia,tegra264-bpmp-shmem.yaml │ │ ├── phram.yaml │ │ ├── qcom,cmd-db.yaml │ │ ├── qcom,rmtfs-mem.yaml │ │ ├── ramoops.yaml │ │ ├── reserved-memory.txt │ │ └── xen,shared-memory.txt │ ├── reset │ │ ├── allwinner,sun6i-a31-clock-reset.yaml │ │ ├── altr,rst-mgr.yaml │ │ ├── amlogic,meson-axg-audio-arb.yaml │ │ ├── amlogic,meson-reset.yaml │ │ ├── atmel,at91sam9260-reset.yaml │ │ ├── bitmain,bm1880-reset.yaml │ │ ├── brcm,bcm4908-misc-pcie-reset.yaml │ │ ├── brcm,bcm63138-pmb.txt │ │ ├── brcm,bcm6345-reset.yaml │ │ ├── brcm,bcm7216-pcie-sata-rescal.yaml │ │ ├── brcm,brcmstb-reset.yaml │ │ ├── canaan,k210-rst.yaml │ │ ├── delta,tn48m-reset.yaml │ │ ├── fsl,imx-src.yaml │ │ ├── fsl,imx7-src.yaml │ │ ├── hisilicon,hi3660-reset.yaml │ │ ├── img,pistachio-reset.txt │ │ ├── intel,rcu-gw.yaml │ │ ├── lantiq,reset.yaml │ │ ├── marvell,berlin2-reset.yaml │ │ ├── microchip,rst.yaml │ │ ├── mobileye,eyeq5-reset.yaml │ │ ├── nuvoton,ma35d1-reset.yaml │ │ ├── nuvoton,npcm750-reset.yaml │ │ ├── nxp,lpc1850-rgu.txt │ │ ├── qca,ar7100-reset.yaml │ │ ├── qcom,aoss-reset.yaml │ │ ├── qcom,pdc-global.yaml │ │ ├── renesas,rst.yaml │ │ ├── renesas,rzg2l-usbphy-ctrl.yaml │ │ ├── reset.txt │ │ ├── snps,axs10x-reset.yaml │ │ ├── snps,dw-reset.txt │ │ ├── snps,hsdk-reset.txt │ │ ├── socionext,uniphier-glue-reset.yaml │ │ ├── socionext,uniphier-reset.yaml │ │ ├── sophgo,sg2042-reset.yaml │ │ ├── st,sti-softreset.txt │ │ ├── st,stih407-picophyreset.yaml │ │ ├── st,stih407-powerdown.yaml │ │ ├── st,stm32-rcc.txt │ │ ├── st,stm32mp1-rcc.txt │ │ ├── starfive,jh7100-reset.yaml │ │ ├── sunplus,reset.yaml │ │ ├── ti,sci-reset.yaml │ │ ├── ti,tps380x-reset.yaml │ │ ├── ti-syscon-reset.txt │ │ ├── xlnx,zynqmp-reset.yaml │ │ └── zynq-reset.txt │ ├── resource-names.txt │ ├── riscv │ │ ├── canaan.yaml │ │ ├── cpus.yaml │ │ ├── extensions.yaml │ │ ├── microchip.yaml │ │ ├── sifive.yaml │ │ ├── sophgo.yaml │ │ ├── starfive.yaml │ │ ├── sunxi.yaml │ │ └── thead.yaml │ ├── rng │ │ ├── amlogic,meson-rng.yaml │ │ ├── apm,x-gene-rng.yaml │ │ ├── arm-cctrng.yaml │ │ ├── atmel,at91-trng.yaml │ │ ├── brcm,bcm2835.yaml │ │ ├── brcm,iproc-rng200.yaml │ │ ├── hisi-rng.txt │ │ ├── imx-rng.yaml │ │ ├── ingenic,rng.yaml │ │ ├── ingenic,trng.yaml │ │ ├── intel,ixp46x-rng.yaml │ │ ├── microchip,pic32-rng.txt │ │ ├── mtk-rng.yaml │ │ ├── nuvoton,npcm-rng.yaml │ │ ├── omap_rng.yaml │ │ ├── samsung,exynos4-rng.yaml │ │ ├── samsung,exynos5250-trng.yaml │ │ ├── silex-insight,ba431-rng.yaml │ │ ├── sparc_sun_oracle_rng.txt │ │ ├── st,rng.yaml │ │ ├── st,stm32-rng.yaml │ │ ├── starfive,jh7110-trng.yaml │ │ ├── ti,keystone-rng.yaml │ │ ├── ti,omap-rom-rng.yaml │ │ ├── timeriomem_rng.yaml │ │ └── xiphera,xip8001b-trng.yaml │ ├── rtc │ │ ├── abracon,abx80x.yaml │ │ ├── adi,max31335.yaml │ │ ├── allwinner,sun4i-a10-rtc.yaml │ │ ├── allwinner,sun6i-a31-rtc.yaml │ │ ├── alphascale,asm9260-rtc.txt │ │ ├── amlogic,meson-vrtc.yaml │ │ ├── amlogic,meson6-rtc.yaml │ │ ├── arm,pl031.yaml │ │ ├── armada-380-rtc.txt │ │ ├── atmel,at91rm9200-rtc.yaml │ │ ├── atmel,at91sam9260-rtt.yaml │ │ ├── brcm,brcmstb-waketimer.yaml │ │ ├── cdns,rtc.txt │ │ ├── cirrus,ep9301-rtc.yaml │ │ ├── cpcap-rtc.txt │ │ ├── dallas,ds1390.txt │ │ ├── digicolor-rtc.txt │ │ ├── epson,rtc7301.yaml │ │ ├── epson,rx6110.txt │ │ ├── epson,rx8900.yaml │ │ ├── faraday,ftrtc010.yaml │ │ ├── fsl,scu-rtc.yaml │ │ ├── google,goldfish-rtc.txt │ │ ├── haoyu,hym8563.yaml │ │ ├── imxdi-rtc.yaml │ │ ├── ingenic,rtc.yaml │ │ ├── intersil,isl12022.yaml │ │ ├── isil,isl12026.txt │ │ ├── isil,isl12057.txt │ │ ├── isil,isl1208.yaml │ │ ├── loongson,rtc.yaml │ │ ├── lpc32xx-rtc.txt │ │ ├── maxim,ds1742.txt │ │ ├── maxim-ds1302.txt │ │ ├── mediatek,mt2712-rtc.yaml │ │ ├── mediatek,mt7622-rtc.yaml │ │ ├── microchip,mfps-rtc.yaml │ │ ├── microchip,pic32-rtc.txt │ │ ├── microcrystal,rv3028.yaml │ │ ├── microcrystal,rv3032.yaml │ │ ├── moxa,moxart-rtc.txt │ │ ├── mstar,msc313-rtc.yaml │ │ ├── mstar,ssd202d-rtc.yaml │ │ ├── nuvoton,ma35d1-rtc.yaml │ │ ├── nuvoton,nct3018y.yaml │ │ ├── nvidia,tegra20-rtc.yaml │ │ ├── nxp,lpc1788-rtc.txt │ │ ├── nxp,pcf2123.yaml │ │ ├── nxp,pcf2127.yaml │ │ ├── nxp,pcf85063.yaml │ │ ├── nxp,pcf8523.yaml │ │ ├── nxp,pcf85363.yaml │ │ ├── nxp,pcf8563.yaml │ │ ├── olpc-xo1-rtc.txt │ │ ├── orion-rtc.txt │ │ ├── pxa-rtc.txt │ │ ├── qcom-pm8xxx-rtc.yaml │ │ ├── realtek,rtd119x.txt │ │ ├── renesas,rzn1-rtc.yaml │ │ ├── renesas,sh-rtc.yaml │ │ ├── rtc-aspeed.txt │ │ ├── rtc-cmos.txt │ │ ├── rtc-ds1307.yaml │ │ ├── rtc-fsl-ftm-alarm.txt │ │ ├── rtc-mt6397.txt │ │ ├── rtc-mxc.yaml │ │ ├── rtc-mxc_v2.yaml │ │ ├── rtc-omap.txt │ │ ├── rtc-opal.txt │ │ ├── rtc-palmas.txt │ │ ├── rtc-st-lpc.txt │ │ ├── rtc.yaml │ │ ├── s3c-rtc.yaml │ │ ├── sa1100-rtc.yaml │ │ ├── spear-rtc.txt │ │ ├── sprd,sc27xx-rtc.txt │ │ ├── st,m41t80.yaml │ │ ├── st,m48t86.yaml │ │ ├── st,stm32-rtc.yaml │ │ ├── stmp3xxx-rtc.txt │ │ ├── sunplus,sp7021-rtc.yaml │ │ ├── ti,bq32000.yaml │ │ ├── ti,k3-rtc.yaml │ │ ├── trivial-rtc.yaml │ │ ├── twl-rtc.txt │ │ ├── via,vt8500-rtc.txt │ │ ├── xgene-rtc.txt │ │ └── xlnx,zynqmp-rtc.yaml │ ├── scsi │ │ └── hisilicon-sas.txt │ ├── serial │ │ ├── 8250.yaml │ │ ├── 8250_omap.yaml │ │ ├── actions,owl-uart.txt │ │ ├── altera_jtaguart.txt │ │ ├── altera_uart.txt │ │ ├── amlogic,meson-uart.yaml │ │ ├── arc-uart.txt │ │ ├── arm,dcc.yaml │ │ ├── arm,mps2-uart.txt │ │ ├── arm_sbsa_uart.txt │ │ ├── atmel,at91-usart.yaml │ │ ├── brcm,bcm2835-aux-uart.txt │ │ ├── brcm,bcm6345-uart.yaml │ │ ├── brcm,bcm7271-uart.yaml │ │ ├── cdns,uart.yaml │ │ ├── cirrus,clps711x-uart.txt │ │ ├── digicolor-usart.txt │ │ ├── esp,esp32-acm.yaml │ │ ├── esp,esp32-uart.yaml │ │ ├── fsl,s32-linflexuart.yaml │ │ ├── fsl-imx-uart.yaml │ │ ├── fsl-lpuart.yaml │ │ ├── fsl-mxs-auart.yaml │ │ ├── ingenic,uart.yaml │ │ ├── lantiq_asc.txt │ │ ├── litex,liteuart.yaml │ │ ├── maxim,max310x.yaml │ │ ├── mediatek,uart.yaml │ │ ├── microchip,pic32-uart.txt │ │ ├── milbeaut-uart.txt │ │ ├── mrvl,pxa-ssp.txt │ │ ├── mvebu-uart.txt │ │ ├── nuvoton,ma35d1-serial.yaml │ │ ├── nvidia,tegra194-tcu.yaml │ │ ├── nvidia,tegra20-hsuart.yaml │ │ ├── nxp,sc16is7xx.yaml │ │ ├── nxp-lpc32xx-hsuart.txt │ │ ├── pl011.yaml │ │ ├── qca,ar9330-uart.yaml │ │ ├── qcom,msm-uart.yaml │ │ ├── qcom,msm-uartdm.yaml │ │ ├── qcom,serial-geni-qcom.yaml │ │ ├── rda,8810pl-uart.yaml │ │ ├── renesas,em-uart.yaml │ │ ├── renesas,hscif.yaml │ │ ├── renesas,sci.yaml │ │ ├── renesas,scif.yaml │ │ ├── renesas,scifa.yaml │ │ ├── renesas,scifb.yaml │ │ ├── rs485.txt │ │ ├── rs485.yaml │ │ ├── samsung_uart.yaml │ │ ├── serial.yaml │ │ ├── sifive-serial.yaml │ │ ├── snps-dw-apb-uart.yaml │ │ ├── socionext,uniphier-uart.yaml │ │ ├── sprd-uart.yaml │ │ ├── st,asc.yaml │ │ ├── st,stm32-uart.yaml │ │ ├── sunplus,sp7021-uart.yaml │ │ ├── vt8500-uart.txt │ │ └── xlnx,opb-uartlite.yaml │ ├── serio │ │ ├── allwinner,sun4i-a10-ps2.yaml │ │ ├── altera_ps2.txt │ │ ├── arm,pl050.yaml │ │ ├── olpc,ap-sp.txt │ │ ├── ps2-gpio.yaml │ │ └── snps-arc_ps2.txt │ ├── sifive │ │ └── sifive-blocks-ip-versioning.txt │ ├── siox │ │ └── eckelmann,siox-gpio.txt │ ├── slimbus │ │ ├── qcom,slim-ngd.yaml │ │ ├── qcom,slim.yaml │ │ └── slimbus.yaml │ ├── soc │ │ ├── amlogic │ │ │ ├── amlogic,canvas.yaml │ │ │ ├── amlogic,meson-gx-clk-measure.yaml │ │ │ └── amlogic,meson-gx-hhi-sysctrl.yaml │ │ ├── aspeed │ │ │ └── uart-routing.yaml │ │ ├── bcm │ │ │ ├── brcm,bcm23550-cdc.yaml │ │ │ ├── brcm,bcm2835-pm.yaml │ │ │ ├── brcm,bcm2835-vchiq.yaml │ │ │ └── raspberrypi,bcm2835-power.txt │ │ ├── dove │ │ │ └── pmu.txt │ │ ├── fsl │ │ │ ├── bman-portals.txt │ │ │ ├── bman.txt │ │ │ ├── cpm_qe │ │ │ │ ├── cpm.txt │ │ │ │ ├── cpm │ │ │ │ │ ├── brg.txt │ │ │ │ │ ├── i2c.txt │ │ │ │ │ ├── pic.txt │ │ │ │ │ └── usb.txt │ │ │ │ ├── fsl,cpm1-scc-qmc.yaml │ │ │ │ ├── fsl,cpm1-tsa.yaml │ │ │ │ ├── gpio.txt │ │ │ │ ├── network.txt │ │ │ │ ├── qe.txt │ │ │ │ ├── qe │ │ │ │ │ ├── firmware.txt │ │ │ │ │ ├── par_io.txt │ │ │ │ │ ├── pincfg.txt │ │ │ │ │ ├── ucc.txt │ │ │ │ │ └── usb.txt │ │ │ │ ├── serial.txt │ │ │ │ └── uqe_serial.txt │ │ │ ├── fsl,layerscape-dcfg.yaml │ │ │ ├── fsl,layerscape-scfg.yaml │ │ │ ├── guts.txt │ │ │ ├── qman-portals.txt │ │ │ ├── qman.txt │ │ │ └── rcpm.txt │ │ ├── imx │ │ │ ├── fsl,aips-bus.yaml │ │ │ ├── fsl,imx-anatop.yaml │ │ │ ├── fsl,imx-iomuxc-gpr.yaml │ │ │ ├── fsl,imx8mm-disp-blk-ctrl.yaml │ │ │ ├── fsl,imx8mm-vpu-blk-ctrl.yaml │ │ │ ├── fsl,imx8mn-disp-blk-ctrl.yaml │ │ │ ├── fsl,imx8mp-hdmi-blk-ctrl.yaml │ │ │ ├── fsl,imx8mp-hsio-blk-ctrl.yaml │ │ │ ├── fsl,imx8mp-media-blk-ctrl.yaml │ │ │ ├── fsl,imx8mq-vpu-blk-ctrl.yaml │ │ │ ├── fsl,imx93-media-blk-ctrl.yaml │ │ │ ├── fsl,imx93-src.yaml │ │ │ └── imx8m-soc.yaml │ │ ├── intel │ │ │ └── intel,hps-copy-engine.yaml │ │ ├── litex │ │ │ └── litex,soc-controller.yaml │ │ ├── loongson │ │ │ └── loongson,ls2k-pmc.yaml │ │ ├── mediatek │ │ │ ├── devapc.yaml │ │ │ ├── mediatek,ccorr.yaml │ │ │ ├── mediatek,mt7986-wo-ccif.yaml │ │ │ ├── mediatek,mutex.yaml │ │ │ ├── mediatek,pwrap.yaml │ │ │ ├── mediatek,wdma.yaml │ │ │ ├── mtk-svs.yaml │ │ │ └── scpsys.txt │ │ ├── microchip │ │ │ ├── atmel,at91rm9200-tcb.yaml │ │ │ └── microchip,mpfs-sys-controller.yaml │ │ ├── nuvoton │ │ │ ├── nuvoton,gfxi.yaml │ │ │ └── nuvoton,npcm-gcr.yaml │ │ ├── qcom │ │ │ ├── qcom,aoss-qmp.yaml │ │ │ ├── qcom,apr-services.yaml │ │ │ ├── qcom,apr.yaml │ │ │ ├── qcom,dcc.yaml │ │ │ ├── qcom,eud.yaml │ │ │ ├── qcom,geni-se.yaml │ │ │ ├── qcom,gsbi.yaml │ │ │ ├── qcom,msm8976-ramp-controller.yaml │ │ │ ├── qcom,pbs.yaml │ │ │ ├── qcom,pmic-glink.yaml │ │ │ ├── qcom,rpm-master-stats.yaml │ │ │ ├── qcom,rpm.yaml │ │ │ ├── qcom,rpmh-rsc.yaml │ │ │ ├── qcom,saw2.yaml │ │ │ ├── qcom,smd-rpm.yaml │ │ │ ├── qcom,smd.yaml │ │ │ ├── qcom,smem.yaml │ │ │ ├── qcom,smp2p.yaml │ │ │ ├── qcom,smsm.yaml │ │ │ ├── qcom,wcnss.yaml │ │ │ └── qcom-stats.yaml │ │ ├── renesas │ │ │ ├── renesas,r9a09g011-sys.yaml │ │ │ ├── renesas,rzg2l-sysc.yaml │ │ │ ├── renesas,rzv2m-pwc.yaml │ │ │ ├── renesas-soc.yaml │ │ │ └── renesas.yaml │ │ ├── rockchip │ │ │ └── grf.yaml │ │ ├── samsung │ │ │ ├── exynos-pmu.yaml │ │ │ ├── exynos-usi.yaml │ │ │ └── samsung,exynos-sysreg.yaml │ │ ├── socionext │ │ │ ├── socionext,uniphier-adamv.yaml │ │ │ ├── socionext,uniphier-ahci-glue.yaml │ │ │ ├── socionext,uniphier-dwc3-glue.yaml │ │ │ ├── socionext,uniphier-mioctrl.yaml │ │ │ ├── socionext,uniphier-perictrl.yaml │ │ │ ├── socionext,uniphier-sdctrl.yaml │ │ │ ├── socionext,uniphier-soc-glue-debug.yaml │ │ │ ├── socionext,uniphier-soc-glue.yaml │ │ │ └── socionext,uniphier-sysctrl.yaml │ │ ├── starfive │ │ │ └── starfive,jh7110-syscon.yaml │ │ ├── sti │ │ │ └── st,sti-syscon.yaml │ │ ├── tegra │ │ │ ├── nvidia,nvec.yaml │ │ │ ├── nvidia,tegra20-ahb.yaml │ │ │ ├── nvidia,tegra20-flowctrl.yaml │ │ │ └── nvidia,tegra20-pmc.yaml │ │ ├── ti │ │ │ ├── k3-ringacc.yaml │ │ │ ├── keystone-navigator-dma.txt │ │ │ ├── keystone-navigator-qmss.txt │ │ │ ├── sci-pm-domain.yaml │ │ │ ├── ti,pruss.yaml │ │ │ └── wkup-m3-ipc.yaml │ │ └── xilinx │ │ │ ├── xilinx.yaml │ │ │ ├── xlnx,vcu-settings.yaml │ │ │ └── xlnx,vcu.txt │ ├── sound │ │ ├── ac97-bus.txt │ │ ├── adi,adau1372.yaml │ │ ├── adi,adau1701.txt │ │ ├── adi,adau17x1.yaml │ │ ├── adi,adau1977.yaml │ │ ├── adi,adau7002.yaml │ │ ├── adi,adau7118.yaml │ │ ├── adi,axi-i2s.txt │ │ ├── adi,axi-spdif-tx.txt │ │ ├── adi,max98363.yaml │ │ ├── adi,max98388.yaml │ │ ├── adi,max98396.yaml │ │ ├── adi,ssm2305.txt │ │ ├── adi,ssm2518.yaml │ │ ├── adi,ssm2602.txt │ │ ├── adi,ssm3515.yaml │ │ ├── ak4104.txt │ │ ├── ak4118.txt │ │ ├── ak4375.yaml │ │ ├── ak4554.txt │ │ ├── ak4613.yaml │ │ ├── ak4642.yaml │ │ ├── ak5386.txt │ │ ├── alc5623.txt │ │ ├── allwinner,sun4i-a10-codec.yaml │ │ ├── allwinner,sun4i-a10-i2s.yaml │ │ ├── allwinner,sun4i-a10-spdif.yaml │ │ ├── allwinner,sun50i-a64-codec-analog.yaml │ │ ├── allwinner,sun50i-h6-dmic.yaml │ │ ├── allwinner,sun8i-a23-codec-analog.yaml │ │ ├── allwinner,sun8i-a33-codec.yaml │ │ ├── amlogic,aiu.yaml │ │ ├── amlogic,axg-fifo.yaml │ │ ├── amlogic,axg-pdm.yaml │ │ ├── amlogic,axg-sound-card.yaml │ │ ├── amlogic,axg-spdifin.yaml │ │ ├── amlogic,axg-spdifout.yaml │ │ ├── amlogic,axg-tdm-formatters.yaml │ │ ├── amlogic,axg-tdm-iface.yaml │ │ ├── amlogic,g12a-toacodec.yaml │ │ ├── amlogic,g12a-tohdmitx.txt │ │ ├── amlogic,gx-sound-card.yaml │ │ ├── amlogic,t9015.yaml │ │ ├── apple,mca.yaml │ │ ├── arm,pl041.yaml │ │ ├── armada-370db-audio.txt │ │ ├── asahi-kasei,ak4458.yaml │ │ ├── asahi-kasei,ak5558.yaml │ │ ├── atmel,asoc-wm8904.yaml │ │ ├── atmel,sam9x5-wm8731-audio.yaml │ │ ├── atmel,sama5d2-classd.yaml │ │ ├── atmel,sama5d2-i2s.yaml │ │ ├── atmel,sama5d2-pdmic.yaml │ │ ├── atmel-at91sam9g20ek-wm8731-audio.txt │ │ ├── atmel_ac97c.txt │ │ ├── audio-graph-card.yaml │ │ ├── audio-graph-card2.yaml │ │ ├── audio-graph-port.yaml │ │ ├── audio-graph.yaml │ │ ├── audio-iio-aux.yaml │ │ ├── awinic,aw8738.yaml │ │ ├── awinic,aw87390.yaml │ │ ├── awinic,aw88395.yaml │ │ ├── axentia,tse850-pcm5142.txt │ │ ├── brcm,bcm2835-i2s.txt │ │ ├── brcm,bcm63xx-audio.txt │ │ ├── brcm,cygnus-audio.txt │ │ ├── cdns,xtfpga-i2s.txt │ │ ├── cirrus,cs35l41.yaml │ │ ├── cirrus,cs35l45.yaml │ │ ├── cirrus,cs4234.yaml │ │ ├── cirrus,cs42l42.yaml │ │ ├── cirrus,cs42l43.yaml │ │ ├── cirrus,cs42l51.yaml │ │ ├── cirrus,ep9301-i2s.yaml │ │ ├── cirrus,lochnagar.yaml │ │ ├── cirrus,madera.yaml │ │ ├── component-common.yaml │ │ ├── cs35l32.txt │ │ ├── cs35l33.txt │ │ ├── cs35l34.txt │ │ ├── cs35l35.txt │ │ ├── cs35l36.txt │ │ ├── cs4265.txt │ │ ├── cs4270.txt │ │ ├── cs4271.txt │ │ ├── cs42l52.txt │ │ ├── cs42l56.txt │ │ ├── cs42l73.txt │ │ ├── cs42xx8.txt │ │ ├── cs43130.txt │ │ ├── cs4341.txt │ │ ├── cs4349.txt │ │ ├── cs53l30.txt │ │ ├── da7213.txt │ │ ├── da7218.txt │ │ ├── da9055.txt │ │ ├── dai-common.yaml │ │ ├── dai-params.yaml │ │ ├── davinci-evm-audio.txt │ │ ├── davinci-mcasp-audio.yaml │ │ ├── davinci-mcbsp.txt │ │ ├── dialog,da7219.yaml │ │ ├── dmic-codec.yaml │ │ ├── eukrea-tlv320.txt │ │ ├── everest,es7134.txt │ │ ├── everest,es7241.txt │ │ ├── everest,es8316.yaml │ │ ├── everest,es8326.yaml │ │ ├── everest,es8328.yaml │ │ ├── fsl,aud2htx.yaml │ │ ├── fsl,audmix.txt │ │ ├── fsl,easrc.yaml │ │ ├── fsl,esai.txt │ │ ├── fsl,imx-asrc.yaml │ │ ├── fsl,micfil.yaml │ │ ├── fsl,mqs.yaml │ │ ├── fsl,qmc-audio.yaml │ │ ├── fsl,rpmsg.yaml │ │ ├── fsl,sai.yaml │ │ ├── fsl,spdif.yaml │ │ ├── fsl,ssi.txt │ │ ├── fsl,xcvr.yaml │ │ ├── fsl-asoc-card.txt │ │ ├── google,chv3-codec.yaml │ │ ├── google,chv3-i2s.yaml │ │ ├── google,cros-ec-codec.yaml │ │ ├── google,sc7180-trogdor.yaml │ │ ├── google,sc7280-herobrine.yaml │ │ ├── hisilicon,hi6210-i2s.txt │ │ ├── ics43432.txt │ │ ├── img,i2s-in.txt │ │ ├── img,i2s-out.txt │ │ ├── img,parallel-out.txt │ │ ├── img,pistachio-internal-dac.txt │ │ ├── img,spdif-in.txt │ │ ├── img,spdif-out.txt │ │ ├── imx-audio-card.yaml │ │ ├── imx-audio-es8328.txt │ │ ├── imx-audio-hdmi.yaml │ │ ├── imx-audio-sgtl5000.txt │ │ ├── imx-audio-spdif.txt │ │ ├── imx-audmux.yaml │ │ ├── infineon,peb2466.yaml │ │ ├── ingenic,aic.yaml │ │ ├── ingenic,codec.yaml │ │ ├── inno-rk3036.txt │ │ ├── intel,keembay-i2s.yaml │ │ ├── irondevice,sma1303.yaml │ │ ├── linux,bt-sco.yaml │ │ ├── linux,spdif-dit.yaml │ │ ├── loongson,ls-audio-card.yaml │ │ ├── marvell,mmp-sspa.yaml │ │ ├── marvell,pxa2xx-ac97.txt │ │ ├── max98373.txt │ │ ├── max9860.txt │ │ ├── maxim,max9759.yaml │ │ ├── maxim,max98088.txt │ │ ├── maxim,max98090.yaml │ │ ├── maxim,max98095.yaml │ │ ├── maxim,max98357a.yaml │ │ ├── maxim,max98371.yaml │ │ ├── maxim,max98390.yaml │ │ ├── maxim,max98504.yaml │ │ ├── maxim,max98520.yaml │ │ ├── maxim,max9867.yaml │ │ ├── maxim,max98925.yaml │ │ ├── mediatek,mt2701-audio.yaml │ │ ├── mediatek,mt7986-afe.yaml │ │ ├── mediatek,mt7986-wm8960.yaml │ │ ├── mediatek,mt8188-afe.yaml │ │ ├── mediatek,mt8188-mt6359.yaml │ │ ├── microchip,sama7g5-i2smcc.yaml │ │ ├── microchip,sama7g5-pdmc.yaml │ │ ├── microchip,sama7g5-spdifrx.yaml │ │ ├── microchip,sama7g5-spdiftx.yaml │ │ ├── mikroe,mikroe-proto.txt │ │ ├── mrvl,pxa-ssp.txt │ │ ├── mt2701-cs42448.txt │ │ ├── mt2701-wm8960.txt │ │ ├── mt6351.txt │ │ ├── mt6358.txt │ │ ├── mt6359.yaml │ │ ├── mt6797-afe-pcm.txt │ │ ├── mt6797-mt6351.txt │ │ ├── mt8173-max98090.txt │ │ ├── mt8173-rt5650-rt5514.txt │ │ ├── mt8173-rt5650-rt5676.txt │ │ ├── mt8173-rt5650.txt │ │ ├── mt8183-afe-pcm.txt │ │ ├── mt8183-da7219-max98357.txt │ │ ├── mt8183-mt6358-ts3a227-max98357.txt │ │ ├── mt8186-afe-pcm.yaml │ │ ├── mt8186-mt6366-da7219-max98357.yaml │ │ ├── mt8186-mt6366-rt1019-rt5682s.yaml │ │ ├── mt8192-afe-pcm.yaml │ │ ├── mt8192-mt6359-rt1015-rt5682.yaml │ │ ├── mt8195-afe-pcm.yaml │ │ ├── mt8195-mt6359.yaml │ │ ├── mtk-afe-pcm.txt │ │ ├── mtk-btcvsd-snd.txt │ │ ├── mvebu-audio.txt │ │ ├── mxs-audio-sgtl5000.txt │ │ ├── mxs-saif.txt │ │ ├── nokia,rx51.txt │ │ ├── nuvoton,nau8315.yaml │ │ ├── nuvoton,nau8540.yaml │ │ ├── nuvoton,nau8810.yaml │ │ ├── nuvoton,nau8821.yaml │ │ ├── nuvoton,nau8822.yaml │ │ ├── nuvoton,nau8824.yaml │ │ ├── nuvoton,nau8825.yaml │ │ ├── nvidia,tegra-audio-alc5632.yaml │ │ ├── nvidia,tegra-audio-common.yaml │ │ ├── nvidia,tegra-audio-graph-card.yaml │ │ ├── nvidia,tegra-audio-max9808x.yaml │ │ ├── nvidia,tegra-audio-max98090.yaml │ │ ├── nvidia,tegra-audio-rt5631.yaml │ │ ├── nvidia,tegra-audio-rt5640.yaml │ │ ├── nvidia,tegra-audio-rt5677.yaml │ │ ├── nvidia,tegra-audio-sgtl5000.yaml │ │ ├── nvidia,tegra-audio-trimslice.yaml │ │ ├── nvidia,tegra-audio-wm8753.yaml │ │ ├── nvidia,tegra-audio-wm8903.yaml │ │ ├── nvidia,tegra-audio-wm9712.yaml │ │ ├── nvidia,tegra186-asrc.yaml │ │ ├── nvidia,tegra186-dspk.yaml │ │ ├── nvidia,tegra20-ac97.txt │ │ ├── nvidia,tegra20-das.txt │ │ ├── nvidia,tegra20-i2s.yaml │ │ ├── nvidia,tegra20-spdif.yaml │ │ ├── nvidia,tegra210-admaif.yaml │ │ ├── nvidia,tegra210-adx.yaml │ │ ├── nvidia,tegra210-ahub.yaml │ │ ├── nvidia,tegra210-amx.yaml │ │ ├── nvidia,tegra210-dmic.yaml │ │ ├── nvidia,tegra210-i2s.yaml │ │ ├── nvidia,tegra210-mbdrc.yaml │ │ ├── nvidia,tegra210-mixer.yaml │ │ ├── nvidia,tegra210-mvc.yaml │ │ ├── nvidia,tegra210-ope.yaml │ │ ├── nvidia,tegra210-peq.yaml │ │ ├── nvidia,tegra210-sfc.yaml │ │ ├── nvidia,tegra30-ahub.txt │ │ ├── nvidia,tegra30-hda.yaml │ │ ├── nvidia,tegra30-i2s.txt │ │ ├── nxp,tfa9879.yaml │ │ ├── nxp,tfa989x.yaml │ │ ├── omap-abe-twl6040.txt │ │ ├── omap-dmic.txt │ │ ├── omap-mcbsp.txt │ │ ├── omap-mcpdm.txt │ │ ├── omap-twl4030.txt │ │ ├── option,gtm601.yaml │ │ ├── pcm1789.txt │ │ ├── pcm179x.txt │ │ ├── pcm186x.txt │ │ ├── pcm3060.txt │ │ ├── pcm5102a.txt │ │ ├── pcm512x.txt │ │ ├── qcom,apq8096.txt │ │ ├── qcom,lpass-cpu.yaml │ │ ├── qcom,lpass-rx-macro.yaml │ │ ├── qcom,lpass-tx-macro.yaml │ │ ├── qcom,lpass-va-macro.yaml │ │ ├── qcom,lpass-wsa-macro.yaml │ │ ├── qcom,msm8916-wcd-digital.txt │ │ ├── qcom,pm8916-wcd-analog-codec.yaml │ │ ├── qcom,q6adm-routing.yaml │ │ ├── qcom,q6adm.yaml │ │ ├── qcom,q6afe.yaml │ │ ├── qcom,q6apm-dai.yaml │ │ ├── qcom,q6apm-lpass-dais.yaml │ │ ├── qcom,q6apm.yaml │ │ ├── qcom,q6asm-dais.yaml │ │ ├── qcom,q6asm.yaml │ │ ├── qcom,q6core.yaml │ │ ├── qcom,q6dsp-lpass-clocks.yaml │ │ ├── qcom,q6dsp-lpass-ports.yaml │ │ ├── qcom,q6prm.yaml │ │ ├── qcom,q6usb.yaml │ │ ├── qcom,sm8250.yaml │ │ ├── qcom,wcd9335.yaml │ │ ├── qcom,wcd934x.yaml │ │ ├── qcom,wcd938x-sdw.yaml │ │ ├── qcom,wcd938x.yaml │ │ ├── qcom,wcd939x-sdw.yaml │ │ ├── qcom,wcd939x.yaml │ │ ├── qcom,wcd93xx-common.yaml │ │ ├── qcom,wsa881x.yaml │ │ ├── qcom,wsa883x.yaml │ │ ├── qcom,wsa8840.yaml │ │ ├── realtek,alc5632.yaml │ │ ├── realtek,rt1015.yaml │ │ ├── realtek,rt1015p.yaml │ │ ├── realtek,rt1016.yaml │ │ ├── realtek,rt5616.yaml │ │ ├── realtek,rt5682s.yaml │ │ ├── renesas,fsi.yaml │ │ ├── renesas,idt821034.yaml │ │ ├── renesas,rsnd.txt │ │ ├── renesas,rsnd.yaml │ │ ├── renesas,rz-ssi.yaml │ │ ├── richtek,rt9120.yaml │ │ ├── richtek,rtq9128.yaml │ │ ├── rockchip,i2s-tdm.yaml │ │ ├── rockchip,pdm.yaml │ │ ├── rockchip,rk3288-hdmi-analog.txt │ │ ├── rockchip,rk3328-codec.yaml │ │ ├── rockchip,rk3399-gru-sound.txt │ │ ├── rockchip-i2s.yaml │ │ ├── rockchip-max98090.txt │ │ ├── rockchip-rt5645.txt │ │ ├── rockchip-spdif.yaml │ │ ├── rohm,bd28623.yaml │ │ ├── rt1011.txt │ │ ├── rt1019.yaml │ │ ├── rt1308.txt │ │ ├── rt274.txt │ │ ├── rt5514.txt │ │ ├── rt5631.txt │ │ ├── rt5640.txt │ │ ├── rt5645.txt │ │ ├── rt5651.txt │ │ ├── rt5659.txt │ │ ├── rt5660.txt │ │ ├── rt5663.txt │ │ ├── rt5665.txt │ │ ├── rt5668.txt │ │ ├── rt5677.txt │ │ ├── rt5682.txt │ │ ├── samsung,aries-wm8994.yaml │ │ ├── samsung,arndale.yaml │ │ ├── samsung,midas-audio.yaml │ │ ├── samsung,odroid.yaml │ │ ├── samsung,smdk5250.yaml │ │ ├── samsung,snow.yaml │ │ ├── samsung,tm2.yaml │ │ ├── samsung-i2s.yaml │ │ ├── serial-midi.yaml │ │ ├── sgtl5000.yaml │ │ ├── simple-audio-amplifier.yaml │ │ ├── simple-audio-mux.yaml │ │ ├── simple-card.yaml │ │ ├── sirf-audio-port.txt │ │ ├── sirf-audio.txt │ │ ├── snps,designware-i2s.yaml │ │ ├── soc-ac97link.txt │ │ ├── socionext,uniphier-aio.yaml │ │ ├── socionext,uniphier-evea.yaml │ │ ├── sound-card-common.yaml │ │ ├── sound-dai.yaml │ │ ├── spdif-receiver.txt │ │ ├── sprd-mcdt.txt │ │ ├── sprd-pcm.txt │ │ ├── ssm4567.txt │ │ ├── st,sta32x.txt │ │ ├── st,sta350.txt │ │ ├── st,sti-asoc-card.txt │ │ ├── st,stm32-i2s.yaml │ │ ├── st,stm32-sai.yaml │ │ ├── st,stm32-spdifrx.yaml │ │ ├── starfive,jh7110-pwmdac.yaml │ │ ├── starfive,jh7110-tdm.yaml │ │ ├── storm.txt │ │ ├── tas2552.txt │ │ ├── tas2562.yaml │ │ ├── tas2770.yaml │ │ ├── tas27xx.yaml │ │ ├── tas571x.txt │ │ ├── tas5720.txt │ │ ├── tas5805m.yaml │ │ ├── tda7419.txt │ │ ├── tdm-slot.txt │ │ ├── test-component.yaml │ │ ├── ti,ads117x.txt │ │ ├── ti,j721e-cpb-audio.yaml │ │ ├── ti,j721e-cpb-ivi-audio.yaml │ │ ├── ti,pcm1681.txt │ │ ├── ti,pcm3168a.yaml │ │ ├── ti,src4xxx.yaml │ │ ├── ti,tas2781.yaml │ │ ├── ti,tas5086.txt │ │ ├── ti,tas6424.txt │ │ ├── ti,tlv320adc3xxx.yaml │ │ ├── ti,tlv320aic32x4.yaml │ │ ├── ti,tlv320aic3x.yaml │ │ ├── ti,ts3a227e.yaml │ │ ├── tlv320adcx140.yaml │ │ ├── tlv320aic31xx.txt │ │ ├── tpa6130a2.txt │ │ ├── tscs42xx.txt │ │ ├── tscs454.txt │ │ ├── uda1334.txt │ │ ├── ux500-mop500.txt │ │ ├── ux500-msp.txt │ │ ├── widgets.txt │ │ ├── wlf,arizona.yaml │ │ ├── wlf,wm8510.yaml │ │ ├── wlf,wm8523.yaml │ │ ├── wlf,wm8524.yaml │ │ ├── wlf,wm8580.yaml │ │ ├── wlf,wm8711.yaml │ │ ├── wlf,wm8728.yaml │ │ ├── wlf,wm8731.yaml │ │ ├── wlf,wm8737.yaml │ │ ├── wlf,wm8753.yaml │ │ ├── wlf,wm8903.yaml │ │ ├── wlf,wm8904.yaml │ │ ├── wlf,wm8940.yaml │ │ ├── wlf,wm8960.yaml │ │ ├── wlf,wm8961.yaml │ │ ├── wlf,wm8962.yaml │ │ ├── wlf,wm8974.txt │ │ ├── wlf,wm8978.yaml │ │ ├── wlf,wm8994.yaml │ │ ├── wm8741.txt │ │ ├── wm8750.yaml │ │ ├── wm8770.txt │ │ ├── wm8776.txt │ │ ├── wm8782.txt │ │ ├── wm8804.txt │ │ ├── xlnx,audio-formatter.txt │ │ ├── xlnx,i2s.txt │ │ ├── xlnx,spdif.txt │ │ └── zl38060.yaml │ ├── soundwire │ │ ├── qcom,soundwire.yaml │ │ └── soundwire-controller.yaml │ ├── spi │ │ ├── adi,axi-spi-engine.yaml │ │ ├── allwinner,sun4i-a10-spi.yaml │ │ ├── allwinner,sun6i-a31-spi.yaml │ │ ├── amlogic,a1-spifc.yaml │ │ ├── amlogic,meson-gx-spicc.yaml │ │ ├── amlogic,meson6-spifc.yaml │ │ ├── arm,pl022-peripheral-props.yaml │ │ ├── aspeed,ast2600-fmc.yaml │ │ ├── atmel,at91rm9200-spi.yaml │ │ ├── atmel,quadspi.yaml │ │ ├── brcm,bcm2835-aux-spi.txt │ │ ├── brcm,bcm2835-spi.txt │ │ ├── brcm,bcm63xx-hsspi.yaml │ │ ├── brcm,bcm63xx-spi.yaml │ │ ├── brcm,spi-bcm-qspi.yaml │ │ ├── cdns,qspi-nor-peripheral-props.yaml │ │ ├── cdns,qspi-nor.yaml │ │ ├── cdns,xspi.yaml │ │ ├── fsl,spi-fsl-qspi.yaml │ │ ├── fsl-imx-cspi.yaml │ │ ├── fsl-spi.txt │ │ ├── hpe,gxp-spifi.yaml │ │ ├── icpdas-lp8841-spi-rtc.txt │ │ ├── ingenic,spi.yaml │ │ ├── jcore,spi.txt │ │ ├── loongson,ls2k-spi.yaml │ │ ├── marvell,mmp2-ssp.yaml │ │ ├── mediatek,spi-mt65xx.yaml │ │ ├── mediatek,spi-mtk-nor.yaml │ │ ├── mediatek,spi-mtk-snfi.yaml │ │ ├── mediatek,spi-slave-mt27xx.yaml │ │ ├── microchip,mpfs-spi.yaml │ │ ├── microchip,spi-pic32.txt │ │ ├── mikrotik,rb4xx-spi.yaml │ │ ├── mxicy,mx25f0a-spi.yaml │ │ ├── mxs-spi.yaml │ │ ├── nuvoton,npcm-fiu.txt │ │ ├── nuvoton,npcm-pspi.txt │ │ ├── nuvoton,wpcm450-fiu.yaml │ │ ├── nvidia,tegra114-spi.yaml │ │ ├── nvidia,tegra20-sflash.yaml │ │ ├── nvidia,tegra20-slink.yaml │ │ ├── nvidia,tegra210-quad-peripheral-props.yaml │ │ ├── nvidia,tegra210-quad.yaml │ │ ├── omap-spi.yaml │ │ ├── qca,ar934x-spi.yaml │ │ ├── qcom,spi-geni-qcom.yaml │ │ ├── qcom,spi-qcom-qspi.yaml │ │ ├── qcom,spi-qup.yaml │ │ ├── ralink,mt7621-spi.yaml │ │ ├── realtek,rtl-spi.yaml │ │ ├── renesas,hspi.yaml │ │ ├── renesas,rspi.yaml │ │ ├── renesas,rzv2m-csi.yaml │ │ ├── renesas,sh-msiof.yaml │ │ ├── rockchip-sfc.yaml │ │ ├── samsung,spi-peripheral-props.yaml │ │ ├── samsung,spi.yaml │ │ ├── snps,dw-apb-ssi.yaml │ │ ├── socionext,f-ospi.yaml │ │ ├── socionext,synquacer-spi.yaml │ │ ├── socionext,uniphier-spi.yaml │ │ ├── spi-armada-3700.txt │ │ ├── spi-ath79.txt │ │ ├── spi-bus.txt │ │ ├── spi-cadence.yaml │ │ ├── spi-clps711x.txt │ │ ├── spi-controller.yaml │ │ ├── spi-davinci.txt │ │ ├── spi-fsl-dspi.txt │ │ ├── spi-fsl-lpspi.yaml │ │ ├── spi-gpio.yaml │ │ ├── spi-img-spfi.txt │ │ ├── spi-lantiq-ssc.txt │ │ ├── spi-mux.yaml │ │ ├── spi-nxp-fspi.yaml │ │ ├── spi-octeon.txt │ │ ├── spi-orion.txt │ │ ├── spi-peripheral-props.yaml │ │ ├── spi-pl022.yaml │ │ ├── spi-rockchip.yaml │ │ ├── spi-sc18is602.txt │ │ ├── spi-sifive.yaml │ │ ├── spi-sprd.txt │ │ ├── spi-sunplus-sp7021.yaml │ │ ├── spi-xilinx.yaml │ │ ├── spi-xtensa-xtfpga.txt │ │ ├── spi-zynqmp-qspi.yaml │ │ ├── spi_altera.txt │ │ ├── spi_oc_tiny.txt │ │ ├── sprd,spi-adi.yaml │ │ ├── sqi-pic32.txt │ │ ├── st,ssc-spi.yaml │ │ ├── st,stm32-qspi.yaml │ │ ├── st,stm32-spi.yaml │ │ ├── ti_qspi.txt │ │ └── xlnx,zynq-qspi.yaml │ ├── spmi │ │ ├── hisilicon,hisi-spmi-controller.yaml │ │ ├── mtk,spmi-mtk-pmif.yaml │ │ ├── qcom,spmi-pmic-arb.yaml │ │ └── spmi.yaml │ ├── sram │ │ ├── allwinner,sun4i-a10-system-control.yaml │ │ ├── qcom,imem.yaml │ │ ├── qcom,ocmem.yaml │ │ └── sram.yaml │ ├── staging │ │ └── iio │ │ │ └── adc │ │ │ └── spear-adc.txt │ ├── submitting-patches.rst │ ├── thermal │ │ ├── allwinner,sun8i-a83t-ths.yaml │ │ ├── amazon,al-thermal.txt │ │ ├── amlogic,thermal.yaml │ │ ├── armada-thermal.txt │ │ ├── brcm,avs-ro-thermal.yaml │ │ ├── brcm,avs-tmon.yaml │ │ ├── brcm,bcm2835-thermal.yaml │ │ ├── brcm,ns-thermal.yaml │ │ ├── brcm,sr-thermal.txt │ │ ├── db8500-thermal.txt │ │ ├── dlg,da9062-thermal.yaml │ │ ├── dove-thermal.txt │ │ ├── fsl,scu-thermal.yaml │ │ ├── generic-adc-thermal.yaml │ │ ├── hisilicon-thermal.txt │ │ ├── imx-thermal.yaml │ │ ├── imx8mm-thermal.yaml │ │ ├── kirkwood-thermal.txt │ │ ├── loongson,ls2k-thermal.yaml │ │ ├── max77620_thermal.txt │ │ ├── mediatek,lvts-thermal.yaml │ │ ├── mediatek,thermal.yaml │ │ ├── nvidia,tegra124-soctherm.yaml │ │ ├── nvidia,tegra186-bpmp-thermal.yaml │ │ ├── nvidia,tegra30-tsensor.yaml │ │ ├── qcom,spmi-temp-alarm.yaml │ │ ├── qcom-lmh.yaml │ │ ├── qcom-spmi-adc-tm-hc.yaml │ │ ├── qcom-spmi-adc-tm5.yaml │ │ ├── qcom-tsens.yaml │ │ ├── qoriq-thermal.yaml │ │ ├── rcar-gen3-thermal.yaml │ │ ├── rcar-thermal.yaml │ │ ├── rockchip-thermal.yaml │ │ ├── rzg2l-thermal.yaml │ │ ├── samsung,exynos-thermal.yaml │ │ ├── socionext,uniphier-thermal.yaml │ │ ├── spear-thermal.txt │ │ ├── sprd-thermal.yaml │ │ ├── st,stm32-thermal.yaml │ │ ├── st-thermal.txt │ │ ├── thermal-cooling-devices.yaml │ │ ├── thermal-idle.yaml │ │ ├── thermal-sensor.yaml │ │ ├── thermal-zones.yaml │ │ ├── ti,am654-thermal.yaml │ │ ├── ti,j72xx-thermal.yaml │ │ └── ti_soc_thermal.txt │ ├── timer │ │ ├── actions,owl-timer.txt │ │ ├── allwinner,sun4i-a10-timer.yaml │ │ ├── allwinner,sun5i-a13-hstimer.yaml │ │ ├── altr,timer-1.0.txt │ │ ├── amlogic,meson6-timer.yaml │ │ ├── arm,arch_timer.yaml │ │ ├── arm,arch_timer_mmio.yaml │ │ ├── arm,armv7m-systick.yaml │ │ ├── arm,global_timer.yaml │ │ ├── arm,mps2-timer.txt │ │ ├── arm,sp804.yaml │ │ ├── arm,twd-timer.yaml │ │ ├── brcm,bcm2835-system-timer.txt │ │ ├── brcm,bcmbca-timer.yaml │ │ ├── brcm,kona-timer.yaml │ │ ├── cdns,ttc.yaml │ │ ├── cirrus,clps711x-timer.txt │ │ ├── cirrus,ep9301-timer.yaml │ │ ├── csky,gx6605s-timer.txt │ │ ├── csky,mptimer.txt │ │ ├── digicolor-timer.txt │ │ ├── ezchip,nps400-timer0.txt │ │ ├── ezchip,nps400-timer1.txt │ │ ├── faraday,fttmr010.txt │ │ ├── fsl,ftm-timer.txt │ │ ├── fsl,gtm.txt │ │ ├── fsl,imxgpt.yaml │ │ ├── hpe,gxp-timer.yaml │ │ ├── img,pistachio-gptimer.txt │ │ ├── ingenic,sysost.yaml │ │ ├── ingenic,tcu.yaml │ │ ├── intel,ixp4xx-timer.yaml │ │ ├── jcore,pit.txt │ │ ├── loongson,ls1x-pwmtimer.yaml │ │ ├── lsi,zevio-timer.txt │ │ ├── marvell,armada-370-xp-timer.txt │ │ ├── marvell,orion-timer.txt │ │ ├── mediatek,timer.yaml │ │ ├── mrvl,mmp-timer.yaml │ │ ├── mstar,msc313e-timer.yaml │ │ ├── nuvoton,npcm7xx-timer.yaml │ │ ├── nvidia,tegra-timer.yaml │ │ ├── nvidia,tegra186-timer.yaml │ │ ├── nxp,lpc3220-timer.txt │ │ ├── nxp,sysctr-timer.yaml │ │ ├── nxp,tpm-timer.yaml │ │ ├── ralink,cevt-systick.yaml │ │ ├── ralink,rt2880-timer.yaml │ │ ├── rda,8810pl-timer.yaml │ │ ├── renesas,cmt.yaml │ │ ├── renesas,em-sti.yaml │ │ ├── renesas,mtu2.yaml │ │ ├── renesas,ostm.yaml │ │ ├── renesas,rz-mtu3.yaml │ │ ├── renesas,tmu.yaml │ │ ├── renesas,tpu.yaml │ │ ├── riscv,timer.yaml │ │ ├── rockchip,rk-timer.yaml │ │ ├── samsung,exynos4210-mct.yaml │ │ ├── sifive,clint.yaml │ │ ├── snps,arc-timer.txt │ │ ├── snps,archs-gfrc.txt │ │ ├── snps,archs-rtc.txt │ │ ├── snps,dw-apb-timer.yaml │ │ ├── socionext,milbeaut-timer.txt │ │ ├── spreadtrum,sprd-timer.txt │ │ ├── st,nomadik-mtu.yaml │ │ ├── st,spear-timer.txt │ │ ├── st,stih407-lpc │ │ ├── st,stm32-timer.yaml │ │ ├── thead,c900-aclint-mtimer.yaml │ │ ├── ti,davinci-timer.txt │ │ ├── ti,keystone-timer.txt │ │ ├── ti,timer-dm.yaml │ │ ├── via,vt8500-timer.txt │ │ └── xlnx,xps-timer.yaml │ ├── timestamp │ │ ├── hardware-timestamps-common.yaml │ │ ├── hte-consumer.yaml │ │ └── nvidia,tegra194-hte.yaml │ ├── tpm │ │ ├── google,cr50.yaml │ │ ├── ibm,vtpm.yaml │ │ ├── microsoft,ftpm.yaml │ │ ├── tcg,tpm-tis-i2c.yaml │ │ ├── tcg,tpm-tis-mmio.yaml │ │ ├── tcg,tpm_tis-spi.yaml │ │ └── tpm-common.yaml │ ├── trivial-devices.yaml │ ├── ufs │ │ ├── cdns,ufshc.yaml │ │ ├── hisilicon,ufs.yaml │ │ ├── mediatek,ufs.yaml │ │ ├── qcom,ufs.yaml │ │ ├── renesas,ufs.yaml │ │ ├── samsung,exynos-ufs.yaml │ │ ├── snps,tc-dwc-g210.yaml │ │ ├── sprd,ums9620-ufs.yaml │ │ ├── ti,j721e-ufs.yaml │ │ └── ufs-common.yaml │ ├── unittest.txt │ ├── usb │ │ ├── allwinner,sun4i-a10-musb.yaml │ │ ├── am33xx-usb.txt │ │ ├── amlogic,meson-g12a-usb-ctrl.yaml │ │ ├── analogix,anx7411.yaml │ │ ├── aspeed,ast2600-udc.yaml │ │ ├── aspeed,usb-vhub.yaml │ │ ├── atmel-usb.txt │ │ ├── brcm,bcm7445-ehci.yaml │ │ ├── brcm,bdc.yaml │ │ ├── brcm,usb-pinmap.yaml │ │ ├── cdns,usb3.yaml │ │ ├── ci-hdrc-usb2.yaml │ │ ├── cypress,cypd4226.yaml │ │ ├── cypress,hx3.yaml │ │ ├── da8xx-usb.txt │ │ ├── dwc2.yaml │ │ ├── dwc3-cavium.txt │ │ ├── dwc3-st.txt │ │ ├── dwc3-xilinx.yaml │ │ ├── ehci-st.txt │ │ ├── faraday,fotg210.yaml │ │ ├── fcs,fsa4480.yaml │ │ ├── fcs,fusb302.yaml │ │ ├── fsl,imx8mp-dwc3.yaml │ │ ├── fsl,imx8mq-dwc3.yaml │ │ ├── fsl,imx8qm-cdns3.yaml │ │ ├── fsl,usbmisc.yaml │ │ ├── fsl-usb.txt │ │ ├── generic-ehci.yaml │ │ ├── generic-ohci.yaml │ │ ├── generic-xhci.yaml │ │ ├── genesys,gl850g.yaml │ │ ├── gpio-sbu-mux.yaml │ │ ├── gr-udc.txt │ │ ├── hisilicon,hi3798mv200-dwc3.yaml │ │ ├── hisilicon,histb-xhci.txt │ │ ├── ingenic,musb.yaml │ │ ├── intel,keembay-dwc3.yaml │ │ ├── iproc-udc.txt │ │ ├── isp1301.txt │ │ ├── ite,it5205.yaml │ │ ├── lpc32xx-udc.txt │ │ ├── marvell,pxau2o-ehci.yaml │ │ ├── maxim,max33359.yaml │ │ ├── maxim,max3420-udc.yaml │ │ ├── maxim,max3421.txt │ │ ├── mediatek,mt6360-tcpc.yaml │ │ ├── mediatek,mt6370-tcpc.yaml │ │ ├── mediatek,mtk-xhci.yaml │ │ ├── mediatek,mtu3.yaml │ │ ├── mediatek,musb.yaml │ │ ├── microchip,mpfs-musb.yaml │ │ ├── microchip,usb5744.yaml │ │ ├── msm-hsusb.txt │ │ ├── nvidia,tegra-xudc.yaml │ │ ├── nvidia,tegra124-xusb.yaml │ │ ├── nvidia,tegra186-xusb.yaml │ │ ├── nvidia,tegra194-xusb.yaml │ │ ├── nvidia,tegra20-ehci.txt │ │ ├── nvidia,tegra210-xusb.yaml │ │ ├── nvidia,tegra234-xusb.yaml │ │ ├── nxp,isp1760.yaml │ │ ├── nxp,ptn36502.yaml │ │ ├── nxp,ptn5110.yaml │ │ ├── octeon-usb.txt │ │ ├── ohci-da8xx.txt │ │ ├── ohci-st.txt │ │ ├── omap-usb.txt │ │ ├── onnn,nb7vpq904m.yaml │ │ ├── pxa-usb.txt │ │ ├── qcom,dwc3.yaml │ │ ├── qcom,pmic-typec.yaml │ │ ├── qcom,wcd939x-usbss.yaml │ │ ├── realtek,rtd-dwc3.yaml │ │ ├── realtek,rtd-type-c.yaml │ │ ├── realtek,rts5411.yaml │ │ ├── renesas,rzn1-usbf.yaml │ │ ├── renesas,rzv2m-usb3drd.yaml │ │ ├── renesas,usb-xhci.yaml │ │ ├── renesas,usb3-peri.yaml │ │ ├── renesas,usbhs.yaml │ │ ├── richtek,rt1711h.txt │ │ ├── richtek,rt1711h.yaml │ │ ├── richtek,rt1719.yaml │ │ ├── rockchip,dwc3.yaml │ │ ├── rockchip,rk3399-dwc3.yaml │ │ ├── s3c2410-usb.txt │ │ ├── samsung,exynos-dwc3.yaml │ │ ├── samsung,exynos-usb2.yaml │ │ ├── smsc,usb3503.yaml │ │ ├── snps,dwc3.yaml │ │ ├── st,stusb160x.yaml │ │ ├── st,typec-stm32g0.yaml │ │ ├── starfive,jh7110-usb.yaml │ │ ├── ti,am62-usb.yaml │ │ ├── ti,hd3ss3220.yaml │ │ ├── ti,j721e-usb.yaml │ │ ├── ti,keystone-dwc3.yaml │ │ ├── ti,tps6598x.yaml │ │ ├── ti,usb8020b.yaml │ │ ├── ti,usb8041.yaml │ │ ├── twlxxxx-usb.txt │ │ ├── ulpi.txt │ │ ├── usb-device.yaml │ │ ├── usb-drd.yaml │ │ ├── usb-hcd.yaml │ │ ├── usb-nop-xceiv.yaml │ │ ├── usb-switch.yaml │ │ ├── usb-uhci.txt │ │ ├── usb-xhci.yaml │ │ ├── usb.yaml │ │ ├── usb251xb.yaml │ │ ├── usb4604.txt │ │ ├── ux500-usb.txt │ │ ├── vialab,vl817.yaml │ │ ├── willsemi,wusb3801.yaml │ │ └── xlnx,usb2.yaml │ ├── vendor-prefixes.yaml │ ├── virtio │ │ ├── mmio.yaml │ │ ├── pci-iommu.yaml │ │ └── virtio-device.yaml │ ├── w1 │ │ ├── amd,axi-1wire-host.yaml │ │ ├── fsl-imx-owire.yaml │ │ ├── maxim,ds2482.yaml │ │ ├── omap-hdq.txt │ │ ├── w1-gpio.yaml │ │ ├── w1-uart.yaml │ │ └── w1.txt │ ├── watchdog │ │ ├── allwinner,sun4i-a10-wdt.yaml │ │ ├── alphascale,asm9260-wdt.yaml │ │ ├── amlogic,meson-gxbb-wdt.yaml │ │ ├── amlogic,meson6-wdt.yaml │ │ ├── apple,wdt.yaml │ │ ├── arm,sbsa-gwdt.yaml │ │ ├── arm,sp805.yaml │ │ ├── arm,twd-wdt.yaml │ │ ├── arm-smc-wdt.yaml │ │ ├── armada-37xx-wdt.txt │ │ ├── aspeed-wdt.txt │ │ ├── atmel,at91rm9200-wdt.yaml │ │ ├── atmel,at91sam9-wdt.yaml │ │ ├── atmel,sama5d4-wdt.yaml │ │ ├── brcm,bcm7038-wdt.yaml │ │ ├── brcm,kona-wdt.yaml │ │ ├── cdns,wdt-r1p2.yaml │ │ ├── cnxt,cx92755-wdt.yaml │ │ ├── davinci-wdt.txt │ │ ├── dlg,da9062-watchdog.yaml │ │ ├── faraday,ftwdt010.yaml │ │ ├── fsl,scu-wdt.yaml │ │ ├── fsl-imx-wdt.yaml │ │ ├── fsl-imx7ulp-wdt.yaml │ │ ├── imgpdc-wdt.txt │ │ ├── intel,keembay-wdt.yaml │ │ ├── kontron,sl28cpld-wdt.yaml │ │ ├── lantiq-wdt.txt │ │ ├── linux,wdt-gpio.yaml │ │ ├── loongson,ls1x-wdt.yaml │ │ ├── lpc18xx-wdt.txt │ │ ├── marvel.txt │ │ ├── marvell,cn10624-wdt.yaml │ │ ├── maxim,max63xx.yaml │ │ ├── mediatek,mt7621-wdt.yaml │ │ ├── mediatek,mtk-wdt.yaml │ │ ├── men-a021-wdt.txt │ │ ├── microchip,pic32-dmt.txt │ │ ├── microchip,pic32-wdt.txt │ │ ├── moxa,moxart-watchdog.txt │ │ ├── mpc8xxx-wdt.txt │ │ ├── mstar,msc313e-wdt.yaml │ │ ├── nuvoton,npcm-wdt.txt │ │ ├── nxp,pnx4008-wdt.yaml │ │ ├── omap-wdt.txt │ │ ├── qca,ar7130-wdt.yaml │ │ ├── qcom,pm8916-wdt.yaml │ │ ├── qcom-wdt.yaml │ │ ├── ralink,rt2880-wdt.yaml │ │ ├── realtek,otto-wdt.yaml │ │ ├── realtek,rtd1295-watchdog.yaml │ │ ├── renesas,wdt.yaml │ │ ├── samsung-wdt.yaml │ │ ├── snps,dw-wdt.yaml │ │ ├── socionext,uniphier-wdt.yaml │ │ ├── sprd,sp9860-wdt.yaml │ │ ├── st,stm32-iwdg.yaml │ │ ├── st_lpc_wdt.txt │ │ ├── starfive,jh7100-wdt.yaml │ │ ├── sunplus,sp7021-wdt.yaml │ │ ├── technologic,ts7200-wdt.yaml │ │ ├── ti,rti-wdt.yaml │ │ ├── toshiba,visconti-wdt.yaml │ │ ├── ts4800-wdt.txt │ │ ├── twl4030-wdt.txt │ │ ├── watchdog.yaml │ │ ├── xlnx,versal-wwdt.yaml │ │ ├── xlnx,xps-timebase-wdt.yaml │ │ ├── zii,rave-sp-wdt.txt │ │ └── ziirave-wdt.txt │ ├── writing-bindings.rst │ ├── writing-schema.rst │ ├── x86 │ │ ├── ce4100.txt │ │ └── timer.txt │ ├── xilinx.txt │ └── xillybus │ │ └── xillybus.txt ├── COPYING ├── Makefile ├── README ├── include │ └── dt-bindings │ │ ├── arm │ │ ├── coresight-cti-dt.h │ │ ├── qcom,ids.h │ │ └── ux500_pm_domains.h │ │ ├── ata │ │ └── ahci.h │ │ ├── bus │ │ ├── moxtet.h │ │ └── ti-sysc.h │ │ ├── clock │ │ ├── actions,s500-cmu.h │ │ ├── actions,s700-cmu.h │ │ ├── actions,s900-cmu.h │ │ ├── agilex-clock.h │ │ ├── alphascale,asm9260.h │ │ ├── am3.h │ │ ├── am4.h │ │ ├── amlogic,a1-peripherals-clkc.h │ │ ├── amlogic,a1-pll-clkc.h │ │ ├── amlogic,s4-peripherals-clkc.h │ │ ├── amlogic,s4-pll-clkc.h │ │ ├── aspeed-clock.h │ │ ├── ast2600-clock.h │ │ ├── at91.h │ │ ├── ath79-clk.h │ │ ├── axg-aoclkc.h │ │ ├── axg-audio-clkc.h │ │ ├── axg-clkc.h │ │ ├── axis,artpec6-clkctrl.h │ │ ├── bcm-cygnus.h │ │ ├── bcm-ns2.h │ │ ├── bcm-nsp.h │ │ ├── bcm-sr.h │ │ ├── bcm21664.h │ │ ├── bcm281xx.h │ │ ├── bcm2835-aux.h │ │ ├── bcm2835.h │ │ ├── bcm3368-clock.h │ │ ├── bcm6318-clock.h │ │ ├── bcm63268-clock.h │ │ ├── bcm6328-clock.h │ │ ├── bcm6358-clock.h │ │ ├── bcm6362-clock.h │ │ ├── bcm6368-clock.h │ │ ├── berlin2.h │ │ ├── berlin2q.h │ │ ├── bm1880-clock.h │ │ ├── boston-clock.h │ │ ├── bt1-ccu.h │ │ ├── cirrus,cs2000-cp.h │ │ ├── clps711x-clock.h │ │ ├── cortina,gemini-clock.h │ │ ├── dm814.h │ │ ├── dm816.h │ │ ├── dra7.h │ │ ├── en7523-clk.h │ │ ├── exynos-audss-clk.h │ │ ├── exynos3250.h │ │ ├── exynos4.h │ │ ├── exynos5250.h │ │ ├── exynos5260-clk.h │ │ ├── exynos5410.h │ │ ├── exynos5420.h │ │ ├── exynos5433.h │ │ ├── exynos7-clk.h │ │ ├── exynos7885.h │ │ ├── exynos850.h │ │ ├── fsd-clk.h │ │ ├── fsl,qoriq-clockgen.h │ │ ├── g12a-aoclkc.h │ │ ├── g12a-clkc.h │ │ ├── google,gs101.h │ │ ├── gxbb-aoclkc.h │ │ ├── gxbb-clkc.h │ │ ├── hi3516cv300-clock.h │ │ ├── hi3519-clock.h │ │ ├── hi3559av100-clock.h │ │ ├── hi3620-clock.h │ │ ├── hi3660-clock.h │ │ ├── hi3670-clock.h │ │ ├── hi6220-clock.h │ │ ├── hip04-clock.h │ │ ├── histb-clock.h │ │ ├── hix5hd2-clock.h │ │ ├── imx1-clock.h │ │ ├── imx21-clock.h │ │ ├── imx27-clock.h │ │ ├── imx5-clock.h │ │ ├── imx6qdl-clock.h │ │ ├── imx6sl-clock.h │ │ ├── imx6sll-clock.h │ │ ├── imx6sx-clock.h │ │ ├── imx6ul-clock.h │ │ ├── imx7d-clock.h │ │ ├── imx7ulp-clock.h │ │ ├── imx8-clock.h │ │ ├── imx8-lpcg.h │ │ ├── imx8mm-clock.h │ │ ├── imx8mn-clock.h │ │ ├── imx8mp-clock.h │ │ ├── imx8mq-clock.h │ │ ├── imx8ulp-clock.h │ │ ├── imx93-clock.h │ │ ├── imxrt1050-clock.h │ │ ├── ingenic,jz4725b-cgu.h │ │ ├── ingenic,jz4740-cgu.h │ │ ├── ingenic,jz4755-cgu.h │ │ ├── ingenic,jz4760-cgu.h │ │ ├── ingenic,jz4770-cgu.h │ │ ├── ingenic,jz4780-cgu.h │ │ ├── ingenic,sysost.h │ │ ├── ingenic,tcu.h │ │ ├── ingenic,x1000-cgu.h │ │ ├── ingenic,x1830-cgu.h │ │ ├── intel,agilex5-clkmgr.h │ │ ├── intel,lgm-clk.h │ │ ├── k210-clk.h │ │ ├── lochnagar.h │ │ ├── loongson,ls1x-clk.h │ │ ├── loongson,ls2k-clk.h │ │ ├── lpc18xx-ccu.h │ │ ├── lpc18xx-cgu.h │ │ ├── lpc32xx-clock.h │ │ ├── lsi,axm5516-clks.h │ │ ├── marvell,mmp2-audio.h │ │ ├── marvell,mmp2.h │ │ ├── marvell,pxa168.h │ │ ├── marvell,pxa1928.h │ │ ├── marvell,pxa910.h │ │ ├── maxim,max77620.h │ │ ├── maxim,max77686.h │ │ ├── maxim,max77802.h │ │ ├── maxim,max9485.h │ │ ├── mediatek,mt6795-clk.h │ │ ├── mediatek,mt7981-clk.h │ │ ├── mediatek,mt7988-clk.h │ │ ├── mediatek,mt8188-clk.h │ │ ├── mediatek,mt8365-clk.h │ │ ├── meson8-ddr-clkc.h │ │ ├── meson8b-clkc.h │ │ ├── microchip,lan966x.h │ │ ├── microchip,mpfs-clock.h │ │ ├── microchip,pic32-clock.h │ │ ├── microchip,sparx5.h │ │ ├── mobileye,eyeq5-clk.h │ │ ├── mpc512x-clock.h │ │ ├── mstar-msc313-mpll.h │ │ ├── mt2701-clk.h │ │ ├── mt2712-clk.h │ │ ├── mt6765-clk.h │ │ ├── mt6779-clk.h │ │ ├── mt6797-clk.h │ │ ├── mt7621-clk.h │ │ ├── mt7622-clk.h │ │ ├── mt7629-clk.h │ │ ├── mt7986-clk.h │ │ ├── mt8135-clk.h │ │ ├── mt8167-clk.h │ │ ├── mt8173-clk.h │ │ ├── mt8183-clk.h │ │ ├── mt8186-clk.h │ │ ├── mt8192-clk.h │ │ ├── mt8195-clk.h │ │ ├── mt8516-clk.h │ │ ├── nuvoton,ma35d1-clk.h │ │ ├── nuvoton,npcm7xx-clock.h │ │ ├── nuvoton,npcm845-clk.h │ │ ├── omap4.h │ │ ├── omap5.h │ │ ├── oxsemi,ox810se.h │ │ ├── oxsemi,ox820.h │ │ ├── pistachio-clk.h │ │ ├── px30-cru.h │ │ ├── pxa-clock.h │ │ ├── qcom,apss-ipq.h │ │ ├── qcom,camcc-sc7180.h │ │ ├── qcom,camcc-sc7280.h │ │ ├── qcom,camcc-sdm845.h │ │ ├── qcom,camcc-sm8250.h │ │ ├── qcom,dispcc-qcm2290.h │ │ ├── qcom,dispcc-sc7180.h │ │ ├── qcom,dispcc-sc7280.h │ │ ├── qcom,dispcc-sc8280xp.h │ │ ├── qcom,dispcc-sdm845.h │ │ ├── qcom,dispcc-sm6125.h │ │ ├── qcom,dispcc-sm6350.h │ │ ├── qcom,dispcc-sm8150.h │ │ ├── qcom,dispcc-sm8250.h │ │ ├── qcom,dispcc-sm8350.h │ │ ├── qcom,gcc-apq8084.h │ │ ├── qcom,gcc-ipq4019.h │ │ ├── qcom,gcc-ipq5018.h │ │ ├── qcom,gcc-ipq6018.h │ │ ├── qcom,gcc-ipq806x.h │ │ ├── qcom,gcc-ipq8074.h │ │ ├── qcom,gcc-mdm9607.h │ │ ├── qcom,gcc-mdm9615.h │ │ ├── qcom,gcc-msm8660.h │ │ ├── qcom,gcc-msm8909.h │ │ ├── qcom,gcc-msm8916.h │ │ ├── qcom,gcc-msm8917.h │ │ ├── qcom,gcc-msm8939.h │ │ ├── qcom,gcc-msm8953.h │ │ ├── qcom,gcc-msm8960.h │ │ ├── qcom,gcc-msm8974.h │ │ ├── qcom,gcc-msm8976.h │ │ ├── qcom,gcc-msm8994.h │ │ ├── qcom,gcc-msm8996.h │ │ ├── qcom,gcc-msm8998.h │ │ ├── qcom,gcc-qcm2290.h │ │ ├── qcom,gcc-qcs404.h │ │ ├── qcom,gcc-sc7180.h │ │ ├── qcom,gcc-sc7280.h │ │ ├── qcom,gcc-sc8180x.h │ │ ├── qcom,gcc-sc8280xp.h │ │ ├── qcom,gcc-sdm660.h │ │ ├── qcom,gcc-sdm845.h │ │ ├── qcom,gcc-sdx55.h │ │ ├── qcom,gcc-sdx65.h │ │ ├── qcom,gcc-sm6115.h │ │ ├── qcom,gcc-sm6125.h │ │ ├── qcom,gcc-sm6350.h │ │ ├── qcom,gcc-sm8150.h │ │ ├── qcom,gcc-sm8250.h │ │ ├── qcom,gcc-sm8350.h │ │ ├── qcom,gcc-sm8450.h │ │ ├── qcom,gpucc-msm8998.h │ │ ├── qcom,gpucc-sc7180.h │ │ ├── qcom,gpucc-sc7280.h │ │ ├── qcom,gpucc-sc8280xp.h │ │ ├── qcom,gpucc-sdm660.h │ │ ├── qcom,gpucc-sdm845.h │ │ ├── qcom,gpucc-sm6350.h │ │ ├── qcom,gpucc-sm8150.h │ │ ├── qcom,gpucc-sm8250.h │ │ ├── qcom,gpucc-sm8350.h │ │ ├── qcom,ipq5332-gcc.h │ │ ├── qcom,ipq9574-gcc.h │ │ ├── qcom,lcc-ipq806x.h │ │ ├── qcom,lcc-msm8960.h │ │ ├── qcom,lpass-sc7280.h │ │ ├── qcom,lpass-sdm845.h │ │ ├── qcom,lpassaudiocc-sc7280.h │ │ ├── qcom,lpasscorecc-sc7180.h │ │ ├── qcom,lpasscorecc-sc7280.h │ │ ├── qcom,mmcc-apq8084.h │ │ ├── qcom,mmcc-msm8960.h │ │ ├── qcom,mmcc-msm8974.h │ │ ├── qcom,mmcc-msm8994.h │ │ ├── qcom,mmcc-msm8996.h │ │ ├── qcom,mmcc-msm8998.h │ │ ├── qcom,mmcc-sdm660.h │ │ ├── qcom,mss-sc7180.h │ │ ├── qcom,q6sstopcc-qcs404.h │ │ ├── qcom,qdu1000-ecpricc.h │ │ ├── qcom,qdu1000-gcc.h │ │ ├── qcom,rpmcc.h │ │ ├── qcom,rpmh.h │ │ ├── qcom,sa8775p-gcc.h │ │ ├── qcom,sa8775p-gpucc.h │ │ ├── qcom,sc8280xp-camcc.h │ │ ├── qcom,sc8280xp-lpasscc.h │ │ ├── qcom,sdx75-gcc.h │ │ ├── qcom,sm4450-gcc.h │ │ ├── qcom,sm6115-dispcc.h │ │ ├── qcom,sm6115-gpucc.h │ │ ├── qcom,sm6125-gpucc.h │ │ ├── qcom,sm6350-camcc.h │ │ ├── qcom,sm6375-dispcc.h │ │ ├── qcom,sm6375-gcc.h │ │ ├── qcom,sm6375-gpucc.h │ │ ├── qcom,sm7150-gcc.h │ │ ├── qcom,sm8250-lpass-aoncc.h │ │ ├── qcom,sm8250-lpass-audiocc.h │ │ ├── qcom,sm8350-videocc.h │ │ ├── qcom,sm8450-camcc.h │ │ ├── qcom,sm8450-dispcc.h │ │ ├── qcom,sm8450-gpucc.h │ │ ├── qcom,sm8450-videocc.h │ │ ├── qcom,sm8550-camcc.h │ │ ├── qcom,sm8550-dispcc.h │ │ ├── qcom,sm8550-gcc.h │ │ ├── qcom,sm8550-gpucc.h │ │ ├── qcom,sm8550-tcsr.h │ │ ├── qcom,sm8650-dispcc.h │ │ ├── qcom,sm8650-gcc.h │ │ ├── qcom,sm8650-gpucc.h │ │ ├── qcom,sm8650-tcsr.h │ │ ├── qcom,turingcc-qcs404.h │ │ ├── qcom,videocc-sc7180.h │ │ ├── qcom,videocc-sc7280.h │ │ ├── qcom,videocc-sdm845.h │ │ ├── qcom,videocc-sm8150.h │ │ ├── qcom,videocc-sm8250.h │ │ ├── qcom,x1e80100-camcc.h │ │ ├── qcom,x1e80100-dispcc.h │ │ ├── qcom,x1e80100-gcc.h │ │ ├── qcom,x1e80100-gpucc.h │ │ ├── qcom,x1e80100-tcsr.h │ │ ├── r7s72100-clock.h │ │ ├── r7s9210-cpg-mssr.h │ │ ├── r8a73a4-clock.h │ │ ├── r8a7740-clock.h │ │ ├── r8a7742-cpg-mssr.h │ │ ├── r8a7743-cpg-mssr.h │ │ ├── r8a7744-cpg-mssr.h │ │ ├── r8a7745-cpg-mssr.h │ │ ├── r8a77470-cpg-mssr.h │ │ ├── r8a774a1-cpg-mssr.h │ │ ├── r8a774b1-cpg-mssr.h │ │ ├── r8a774c0-cpg-mssr.h │ │ ├── r8a774e1-cpg-mssr.h │ │ ├── r8a7778-clock.h │ │ ├── r8a7779-clock.h │ │ ├── r8a7790-clock.h │ │ ├── r8a7790-cpg-mssr.h │ │ ├── r8a7791-clock.h │ │ ├── r8a7791-cpg-mssr.h │ │ ├── r8a7792-clock.h │ │ ├── r8a7792-cpg-mssr.h │ │ ├── r8a7793-clock.h │ │ ├── r8a7793-cpg-mssr.h │ │ ├── r8a7794-clock.h │ │ ├── r8a7794-cpg-mssr.h │ │ ├── r8a7795-cpg-mssr.h │ │ ├── r8a7796-cpg-mssr.h │ │ ├── r8a77961-cpg-mssr.h │ │ ├── r8a77965-cpg-mssr.h │ │ ├── r8a77970-cpg-mssr.h │ │ ├── r8a77980-cpg-mssr.h │ │ ├── r8a77990-cpg-mssr.h │ │ ├── r8a77995-cpg-mssr.h │ │ ├── r8a779a0-cpg-mssr.h │ │ ├── r8a779f0-cpg-mssr.h │ │ ├── r8a779g0-cpg-mssr.h │ │ ├── r9a06g032-sysctrl.h │ │ ├── r9a07g043-cpg.h │ │ ├── r9a07g044-cpg.h │ │ ├── r9a07g054-cpg.h │ │ ├── r9a08g045-cpg.h │ │ ├── r9a09g011-cpg.h │ │ ├── renesas,r8a779h0-cpg-mssr.h │ │ ├── renesas-cpg-mssr.h │ │ ├── rk3036-cru.h │ │ ├── rk3066a-cru.h │ │ ├── rk3128-cru.h │ │ ├── rk3188-cru-common.h │ │ ├── rk3188-cru.h │ │ ├── rk3228-cru.h │ │ ├── rk3288-cru.h │ │ ├── rk3308-cru.h │ │ ├── rk3328-cru.h │ │ ├── rk3368-cru.h │ │ ├── rk3399-cru.h │ │ ├── rk3399-ddr.h │ │ ├── rk3568-cru.h │ │ ├── rockchip,rk3588-cru.h │ │ ├── rockchip,rk808.h │ │ ├── rockchip,rv1126-cru.h │ │ ├── rv1108-cru.h │ │ ├── s5pv210-audss.h │ │ ├── s5pv210.h │ │ ├── samsung,exynosautov9.h │ │ ├── samsung,s2mps11.h │ │ ├── samsung,s3c64xx-clock.h │ │ ├── sh73a0-clock.h │ │ ├── sifive-fu540-prci.h │ │ ├── sifive-fu740-prci.h │ │ ├── sophgo,cv1800.h │ │ ├── sprd,sc9860-clk.h │ │ ├── sprd,sc9863a-clk.h │ │ ├── sprd,ums512-clk.h │ │ ├── st,stm32mp25-rcc.h │ │ ├── starfive,jh7110-crg.h │ │ ├── starfive-jh7100-audio.h │ │ ├── starfive-jh7100.h │ │ ├── ste-ab8500.h │ │ ├── ste-db8500-clkout.h │ │ ├── stih407-clks.h │ │ ├── stih410-clks.h │ │ ├── stih418-clks.h │ │ ├── stm32fx-clock.h │ │ ├── stm32h7-clks.h │ │ ├── stm32mp1-clks.h │ │ ├── stm32mp13-clks.h │ │ ├── stratix10-clock.h │ │ ├── sun20i-d1-ccu.h │ │ ├── sun20i-d1-r-ccu.h │ │ ├── sun4i-a10-ccu.h │ │ ├── sun4i-a10-pll2.h │ │ ├── sun50i-a100-ccu.h │ │ ├── sun50i-a100-r-ccu.h │ │ ├── sun50i-a64-ccu.h │ │ ├── sun50i-h6-ccu.h │ │ ├── sun50i-h6-r-ccu.h │ │ ├── sun50i-h616-ccu.h │ │ ├── sun5i-ccu.h │ │ ├── sun6i-a31-ccu.h │ │ ├── sun6i-rtc.h │ │ ├── sun7i-a20-ccu.h │ │ ├── sun8i-a23-a33-ccu.h │ │ ├── sun8i-a83t-ccu.h │ │ ├── sun8i-de2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── sun8i-r-ccu.h │ │ ├── sun8i-r40-ccu.h │ │ ├── sun8i-tcon-top.h │ │ ├── sun8i-v3s-ccu.h │ │ ├── sun9i-a80-ccu.h │ │ ├── sun9i-a80-de.h │ │ ├── sun9i-a80-usb.h │ │ ├── suniv-ccu-f1c100s.h │ │ ├── sunplus,sp7021-clkc.h │ │ ├── tegra114-car.h │ │ ├── tegra124-car-common.h │ │ ├── tegra124-car.h │ │ ├── tegra186-clock.h │ │ ├── tegra194-clock.h │ │ ├── tegra20-car.h │ │ ├── tegra210-car.h │ │ ├── tegra234-clock.h │ │ ├── tegra30-car.h │ │ ├── ti-dra7-atl.h │ │ ├── toshiba,tmpv770x.h │ │ ├── versaclock.h │ │ ├── vf610-clock.h │ │ ├── xlnx-vcu.h │ │ ├── xlnx-versal-clk.h │ │ └── xlnx-zynqmp-clk.h │ │ ├── display │ │ ├── sdtv-standards.h │ │ └── tda998x.h │ │ ├── dma │ │ ├── at91.h │ │ ├── axi-dmac.h │ │ ├── dw-dmac.h │ │ ├── fsl-edma.h │ │ ├── jz4775-dma.h │ │ ├── jz4780-dma.h │ │ ├── nbpfaxi.h │ │ ├── qcom-gpi.h │ │ ├── sun4i-a10.h │ │ ├── x1000-dma.h │ │ ├── x1830-dma.h │ │ ├── x2000-dma.h │ │ └── xlnx-zynqmp-dpdma.h │ │ ├── firmware │ │ ├── imx │ │ │ └── rsrc.h │ │ └── qcom,scm.h │ │ ├── gce │ │ ├── mediatek,mt6795-gce.h │ │ ├── mt6779-gce.h │ │ ├── mt8173-gce.h │ │ ├── mt8183-gce.h │ │ ├── mt8186-gce.h │ │ ├── mt8192-gce.h │ │ └── mt8195-gce.h │ │ ├── gpio │ │ ├── amlogic,t7-periphs-pinctrl.h │ │ ├── amlogic-c3-gpio.h │ │ ├── aspeed-gpio.h │ │ ├── gpio.h │ │ ├── meson-a1-gpio.h │ │ ├── meson-axg-gpio.h │ │ ├── meson-g12a-gpio.h │ │ ├── meson-gxbb-gpio.h │ │ ├── meson-gxl-gpio.h │ │ ├── meson-s4-gpio.h │ │ ├── meson8-gpio.h │ │ ├── meson8b-gpio.h │ │ ├── msc313-gpio.h │ │ ├── tegra-gpio.h │ │ ├── tegra186-gpio.h │ │ ├── tegra194-gpio.h │ │ ├── tegra234-gpio.h │ │ ├── tegra241-gpio.h │ │ └── uniphier-gpio.h │ │ ├── i2c │ │ └── i2c.h │ │ ├── iio │ │ ├── adc │ │ │ ├── at91-sama5d2_adc.h │ │ │ ├── fsl-imx25-gcq.h │ │ │ ├── ingenic,adc.h │ │ │ └── mediatek,mt6370_adc.h │ │ ├── addac │ │ │ └── adi,ad74413r.h │ │ ├── adi,ad5592r.h │ │ ├── qcom,spmi-adc7-pm7325.h │ │ ├── qcom,spmi-adc7-pm8350.h │ │ ├── qcom,spmi-adc7-pm8350b.h │ │ ├── qcom,spmi-adc7-pmk8350.h │ │ ├── qcom,spmi-adc7-pmr735a.h │ │ ├── qcom,spmi-adc7-pmr735b.h │ │ ├── qcom,spmi-adc7-smb139x.h │ │ ├── qcom,spmi-vadc.h │ │ └── temperature │ │ │ └── thermocouple.h │ │ ├── input │ │ ├── atmel-maxtouch.h │ │ ├── cros-ec-keyboard.h │ │ ├── gpio-keys.h │ │ ├── input.h │ │ ├── linux-event-codes.h │ │ └── ti-drv260x.h │ │ ├── interconnect │ │ ├── fsl,imx8mp.h │ │ ├── imx8mm.h │ │ ├── imx8mn.h │ │ ├── imx8mq.h │ │ ├── qcom,icc.h │ │ ├── qcom,msm8909.h │ │ ├── qcom,msm8916.h │ │ ├── qcom,msm8939.h │ │ ├── qcom,msm8974.h │ │ ├── qcom,msm8996-cbf.h │ │ ├── qcom,msm8996.h │ │ ├── qcom,osm-l3.h │ │ ├── qcom,qcm2290.h │ │ ├── qcom,qcs404.h │ │ ├── qcom,qdu1000-rpmh.h │ │ ├── qcom,rpm-icc.h │ │ ├── qcom,sa8775p-rpmh.h │ │ ├── qcom,sc7180.h │ │ ├── qcom,sc7280.h │ │ ├── qcom,sc8180x.h │ │ ├── qcom,sc8280xp.h │ │ ├── qcom,sdm660.h │ │ ├── qcom,sdm670-rpmh.h │ │ ├── qcom,sdm845.h │ │ ├── qcom,sdx55.h │ │ ├── qcom,sdx65.h │ │ ├── qcom,sdx75.h │ │ ├── qcom,sm6115.h │ │ ├── qcom,sm6350.h │ │ ├── qcom,sm7150-rpmh.h │ │ ├── qcom,sm8150.h │ │ ├── qcom,sm8250.h │ │ ├── qcom,sm8350.h │ │ ├── qcom,sm8450.h │ │ ├── qcom,sm8550-rpmh.h │ │ ├── qcom,sm8650-rpmh.h │ │ └── qcom,x1e80100-rpmh.h │ │ ├── interrupt-controller │ │ ├── amlogic,meson-g12a-gpio-intc.h │ │ ├── apple-aic.h │ │ ├── arm-gic.h │ │ ├── aspeed-scu-ic.h │ │ ├── irq-st.h │ │ ├── irq.h │ │ ├── irqc-rzg2l.h │ │ ├── mips-gic.h │ │ └── mvebu-icu.h │ │ ├── leds │ │ ├── common.h │ │ ├── leds-lp55xx.h │ │ ├── leds-netxbig.h │ │ ├── leds-ns2.h │ │ ├── leds-pca9532.h │ │ ├── leds-pca955x.h │ │ └── rt4831-backlight.h │ │ ├── mailbox │ │ ├── mediatek,mt8188-gce.h │ │ ├── qcom-ipcc.h │ │ └── tegra186-hsp.h │ │ ├── media │ │ ├── c8sectpfe.h │ │ ├── omap3-isp.h │ │ ├── tda1997x.h │ │ ├── tvp5150.h │ │ ├── video-interfaces.h │ │ └── xilinx-vip.h │ │ ├── memory │ │ ├── mediatek,mt8188-memory-port.h │ │ ├── mediatek,mt8365-larb-port.h │ │ ├── mt2701-larb-port.h │ │ ├── mt2712-larb-port.h │ │ ├── mt6779-larb-port.h │ │ ├── mt6795-larb-port.h │ │ ├── mt8167-larb-port.h │ │ ├── mt8173-larb-port.h │ │ ├── mt8183-larb-port.h │ │ ├── mt8186-memory-port.h │ │ ├── mt8192-larb-port.h │ │ ├── mt8195-memory-port.h │ │ ├── mtk-memory-port.h │ │ ├── tegra114-mc.h │ │ ├── tegra124-mc.h │ │ ├── tegra186-mc.h │ │ ├── tegra194-mc.h │ │ ├── tegra20-mc.h │ │ ├── tegra210-mc.h │ │ ├── tegra234-mc.h │ │ └── tegra30-mc.h │ │ ├── mfd │ │ ├── arizona.h │ │ ├── as3722.h │ │ ├── at91-usart.h │ │ ├── atmel-flexcom.h │ │ ├── cros_ec.h │ │ ├── dbx500-prcmu.h │ │ ├── max77620.h │ │ ├── palmas.h │ │ ├── qcom-pm8008.h │ │ ├── qcom-rpm.h │ │ ├── st,stpmic1.h │ │ ├── st-lpc.h │ │ ├── stm32f4-rcc.h │ │ ├── stm32f7-rcc.h │ │ └── stm32h7-rcc.h │ │ ├── mips │ │ └── lantiq_rcu_gphy.h │ │ ├── mux │ │ ├── mux.h │ │ └── ti-serdes.h │ │ ├── net │ │ ├── microchip-lan78xx.h │ │ ├── mscc-phy-vsc8531.h │ │ ├── pcs-rzn1-miic.h │ │ ├── qca-ar803x.h │ │ ├── ti-dp83867.h │ │ └── ti-dp83869.h │ │ ├── nvmem │ │ └── microchip,sama7g5-otpc.h │ │ ├── phy │ │ ├── phy-am654-serdes.h │ │ ├── phy-cadence.h │ │ ├── phy-imx8-pcie.h │ │ ├── phy-lan966x-serdes.h │ │ ├── phy-lantiq-vrx200-pcie.h │ │ ├── phy-ocelot-serdes.h │ │ ├── phy-pistachio-usb.h │ │ ├── phy-qcom-qmp.h │ │ ├── phy-qcom-qusb2.h │ │ ├── phy-ti.h │ │ └── phy.h │ │ ├── pinctrl │ │ ├── am33xx.h │ │ ├── am43xx.h │ │ ├── apple.h │ │ ├── at91.h │ │ ├── bcm2835.h │ │ ├── brcm,pinctrl-stingray.h │ │ ├── dm814x.h │ │ ├── dra.h │ │ ├── hisi.h │ │ ├── k210-fpioa.h │ │ ├── keystone.h │ │ ├── lochnagar.h │ │ ├── mediatek,mt8188-pinfunc.h │ │ ├── mt6397-pinfunc.h │ │ ├── mt65xx.h │ │ ├── mt6779-pinfunc.h │ │ ├── mt6795-pinfunc.h │ │ ├── mt6797-pinfunc.h │ │ ├── mt7623-pinfunc.h │ │ ├── mt8135-pinfunc.h │ │ ├── mt8183-pinfunc.h │ │ ├── mt8186-pinfunc.h │ │ ├── mt8192-pinfunc.h │ │ ├── mt8195-pinfunc.h │ │ ├── mt8365-pinfunc.h │ │ ├── nomadik.h │ │ ├── omap.h │ │ ├── pads-imx8dxl.h │ │ ├── pads-imx8qm.h │ │ ├── pads-imx8qxp.h │ │ ├── pinctrl-starfive-jh7100.h │ │ ├── pinctrl-tegra-io-pad.h │ │ ├── pinctrl-tegra-xusb.h │ │ ├── pinctrl-tegra.h │ │ ├── pinctrl-zynq.h │ │ ├── pinctrl-zynqmp.h │ │ ├── qcom,pmic-gpio.h │ │ ├── qcom,pmic-mpp.h │ │ ├── r7s72100-pinctrl.h │ │ ├── r7s9210-pinctrl.h │ │ ├── rockchip.h │ │ ├── rzg2l-pinctrl.h │ │ ├── rzn1-pinctrl.h │ │ ├── rzv2m-pinctrl.h │ │ ├── samsung.h │ │ ├── sppctl-sp7021.h │ │ ├── sppctl.h │ │ ├── starfive,jh7110-pinctrl.h │ │ ├── stm32-pinfunc.h │ │ └── sun4i-a10.h │ │ ├── pmu │ │ └── exynos_ppmu.h │ │ ├── power │ │ ├── allwinner,sun20i-d1-ppu.h │ │ ├── amlogic,c3-pwrc.h │ │ ├── amlogic,t7-pwrc.h │ │ ├── fsl,imx93-power.h │ │ ├── imx7-power.h │ │ ├── imx8mm-power.h │ │ ├── imx8mn-power.h │ │ ├── imx8mp-power.h │ │ ├── imx8mq-power.h │ │ ├── imx8ulp-power.h │ │ ├── marvell,mmp2.h │ │ ├── mediatek,mt8188-power.h │ │ ├── mediatek,mt8365-power.h │ │ ├── meson-a1-power.h │ │ ├── meson-axg-power.h │ │ ├── meson-g12a-power.h │ │ ├── meson-gxbb-power.h │ │ ├── meson-s4-power.h │ │ ├── meson-sm1-power.h │ │ ├── meson8-power.h │ │ ├── mt2701-power.h │ │ ├── mt2712-power.h │ │ ├── mt6765-power.h │ │ ├── mt6795-power.h │ │ ├── mt6797-power.h │ │ ├── mt7622-power.h │ │ ├── mt7623a-power.h │ │ ├── mt8167-power.h │ │ ├── mt8173-power.h │ │ ├── mt8183-power.h │ │ ├── mt8186-power.h │ │ ├── mt8192-power.h │ │ ├── mt8195-power.h │ │ ├── owl-s500-powergate.h │ │ ├── owl-s700-powergate.h │ │ ├── owl-s900-powergate.h │ │ ├── px30-power.h │ │ ├── qcom,rpmhpd.h │ │ ├── qcom-rpmpd.h │ │ ├── r8a7742-sysc.h │ │ ├── r8a7743-sysc.h │ │ ├── r8a7744-sysc.h │ │ ├── r8a7745-sysc.h │ │ ├── r8a77470-sysc.h │ │ ├── r8a774a1-sysc.h │ │ ├── r8a774b1-sysc.h │ │ ├── r8a774c0-sysc.h │ │ ├── r8a774e1-sysc.h │ │ ├── r8a7779-sysc.h │ │ ├── r8a7790-sysc.h │ │ ├── r8a7791-sysc.h │ │ ├── r8a7792-sysc.h │ │ ├── r8a7793-sysc.h │ │ ├── r8a7794-sysc.h │ │ ├── r8a7795-sysc.h │ │ ├── r8a7796-sysc.h │ │ ├── r8a77961-sysc.h │ │ ├── r8a77965-sysc.h │ │ ├── r8a77970-sysc.h │ │ ├── r8a77980-sysc.h │ │ ├── r8a77990-sysc.h │ │ ├── r8a77995-sysc.h │ │ ├── r8a779a0-sysc.h │ │ ├── r8a779f0-sysc.h │ │ ├── r8a779g0-sysc.h │ │ ├── raspberrypi-power.h │ │ ├── renesas,r8a779h0-sysc.h │ │ ├── rk3036-power.h │ │ ├── rk3066-power.h │ │ ├── rk3128-power.h │ │ ├── rk3188-power.h │ │ ├── rk3228-power.h │ │ ├── rk3288-power.h │ │ ├── rk3328-power.h │ │ ├── rk3366-power.h │ │ ├── rk3368-power.h │ │ ├── rk3399-power.h │ │ ├── rk3568-power.h │ │ ├── rk3588-power.h │ │ ├── rockchip,rv1126-power.h │ │ ├── starfive,jh7110-pmu.h │ │ ├── summit,smb347-charger.h │ │ ├── tegra186-powergate.h │ │ ├── tegra194-powergate.h │ │ ├── tegra234-powergate.h │ │ └── xlnx-zynqmp-power.h │ │ ├── pwm │ │ ├── pwm.h │ │ └── raspberrypi,firmware-poe-pwm.h │ │ ├── regulator │ │ ├── active-semi,8865-regulator.h │ │ ├── active-semi,8945a-regulator.h │ │ ├── dlg,da9063-regulator.h │ │ ├── dlg,da9121-regulator.h │ │ ├── dlg,da9211-regulator.h │ │ ├── maxim,max77802.h │ │ ├── mediatek,mt6360-regulator.h │ │ ├── mediatek,mt6397-regulator.h │ │ ├── qcom,rpmh-regulator.h │ │ ├── richtek,rt5190a-regulator.h │ │ ├── st,stm32mp13-regulator.h │ │ └── ti,tps62864.h │ │ ├── reset │ │ ├── actions,s500-reset.h │ │ ├── actions,s700-reset.h │ │ ├── actions,s900-reset.h │ │ ├── altr,rst-mgr-a10.h │ │ ├── altr,rst-mgr-a10sr.h │ │ ├── altr,rst-mgr-s10.h │ │ ├── altr,rst-mgr.h │ │ ├── amlogic,c3-reset.h │ │ ├── amlogic,meson-a1-reset.h │ │ ├── amlogic,meson-axg-audio-arb.h │ │ ├── amlogic,meson-axg-reset.h │ │ ├── amlogic,meson-g12a-audio-reset.h │ │ ├── amlogic,meson-g12a-reset.h │ │ ├── amlogic,meson-gxbb-reset.h │ │ ├── amlogic,meson-s4-reset.h │ │ ├── amlogic,meson8b-clkc-reset.h │ │ ├── amlogic,meson8b-reset.h │ │ ├── axg-aoclkc.h │ │ ├── bcm6318-reset.h │ │ ├── bcm63268-reset.h │ │ ├── bcm6328-reset.h │ │ ├── bcm6358-reset.h │ │ ├── bcm6362-reset.h │ │ ├── bcm6368-reset.h │ │ ├── bitmain,bm1880-reset.h │ │ ├── bt1-ccu.h │ │ ├── cortina,gemini-reset.h │ │ ├── delta,tn48m-reset.h │ │ ├── g12a-aoclkc.h │ │ ├── gxbb-aoclkc.h │ │ ├── hisi,hi6220-resets.h │ │ ├── imx7-reset.h │ │ ├── imx8mp-reset.h │ │ ├── imx8mq-reset.h │ │ ├── imx8ulp-pcc-reset.h │ │ ├── k210-rst.h │ │ ├── mediatek,mt6735-wdt.h │ │ ├── mediatek,mt6795-resets.h │ │ ├── mediatek,mt7988-resets.h │ │ ├── mt2701-resets.h │ │ ├── mt2712-resets.h │ │ ├── mt7621-reset.h │ │ ├── mt7622-reset.h │ │ ├── mt7629-resets.h │ │ ├── mt7986-resets.h │ │ ├── mt8135-resets.h │ │ ├── mt8173-resets.h │ │ ├── mt8183-resets.h │ │ ├── mt8186-resets.h │ │ ├── mt8188-resets.h │ │ ├── mt8192-resets.h │ │ ├── mt8195-resets.h │ │ ├── nuvoton,ma35d1-reset.h │ │ ├── nuvoton,npcm7xx-reset.h │ │ ├── oxsemi,ox810se.h │ │ ├── oxsemi,ox820.h │ │ ├── pistachio-resets.h │ │ ├── qcom,gcc-apq8084.h │ │ ├── qcom,gcc-ipq5018.h │ │ ├── qcom,gcc-ipq6018.h │ │ ├── qcom,gcc-ipq806x.h │ │ ├── qcom,gcc-mdm9615.h │ │ ├── qcom,gcc-msm8660.h │ │ ├── qcom,gcc-msm8916.h │ │ ├── qcom,gcc-msm8939.h │ │ ├── qcom,gcc-msm8960.h │ │ ├── qcom,gcc-msm8974.h │ │ ├── qcom,ipq9574-gcc.h │ │ ├── qcom,mmcc-apq8084.h │ │ ├── qcom,mmcc-msm8960.h │ │ ├── qcom,mmcc-msm8974.h │ │ ├── qcom,sdm845-aoss.h │ │ ├── qcom,sdm845-pdc.h │ │ ├── qcom,sm8350-videocc.h │ │ ├── qcom,sm8450-gpucc.h │ │ ├── qcom,sm8650-gpucc.h │ │ ├── qcom,x1e80100-gpucc.h │ │ ├── raspberrypi,firmware-reset.h │ │ ├── realtek,rtd1195.h │ │ ├── realtek,rtd1295.h │ │ ├── rockchip,rk3588-cru.h │ │ ├── sama7g5-reset.h │ │ ├── snps,hsdk-reset.h │ │ ├── sophgo,sg2042-reset.h │ │ ├── st,stm32mp25-rcc.h │ │ ├── starfive,jh7110-crg.h │ │ ├── starfive-jh7100.h │ │ ├── stericsson,db8500-prcc-reset.h │ │ ├── stih407-resets.h │ │ ├── stm32mp1-resets.h │ │ ├── stm32mp13-resets.h │ │ ├── sun20i-d1-ccu.h │ │ ├── sun20i-d1-r-ccu.h │ │ ├── sun4i-a10-ccu.h │ │ ├── sun50i-a100-ccu.h │ │ ├── sun50i-a100-r-ccu.h │ │ ├── sun50i-a64-ccu.h │ │ ├── sun50i-h6-ccu.h │ │ ├── sun50i-h6-r-ccu.h │ │ ├── sun50i-h616-ccu.h │ │ ├── sun5i-ccu.h │ │ ├── sun6i-a31-ccu.h │ │ ├── sun8i-a23-a33-ccu.h │ │ ├── sun8i-a83t-ccu.h │ │ ├── sun8i-de2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── sun8i-r-ccu.h │ │ ├── sun8i-r40-ccu.h │ │ ├── sun8i-v3s-ccu.h │ │ ├── sun9i-a80-ccu.h │ │ ├── sun9i-a80-de.h │ │ ├── sun9i-a80-usb.h │ │ ├── suniv-ccu-f1c100s.h │ │ ├── sunplus,sp7021-reset.h │ │ ├── tegra124-car.h │ │ ├── tegra186-reset.h │ │ ├── tegra194-reset.h │ │ ├── tegra210-car.h │ │ ├── tegra234-reset.h │ │ ├── ti-syscon.h │ │ ├── toshiba,tmpv770x.h │ │ ├── xlnx-versal-resets.h │ │ └── xlnx-zynqmp-resets.h │ │ ├── soc │ │ ├── bcm-pmb.h │ │ ├── bcm2835-pm.h │ │ ├── bcm6318-pm.h │ │ ├── bcm63268-pm.h │ │ ├── bcm6328-pm.h │ │ ├── bcm6362-pm.h │ │ ├── cpm1-fsl,tsa.h │ │ ├── qcom,apr.h │ │ ├── qcom,gpr.h │ │ ├── qcom,gsbi.h │ │ ├── qcom,rpmh-rsc.h │ │ ├── rockchip,boot-mode.h │ │ ├── rockchip,vop2.h │ │ ├── samsung,boot-mode.h │ │ ├── samsung,exynos-usi.h │ │ ├── tegra-pmc.h │ │ └── ti,sci_pm_domain.h │ │ ├── sound │ │ ├── adi,adau1977.h │ │ ├── apq8016-lpass.h │ │ ├── audio-jack-events.h │ │ ├── cs35l32.h │ │ ├── cs35l45.h │ │ ├── cs42l42.h │ │ ├── fsl-imx-audmux.h │ │ ├── madera.h │ │ ├── meson-aiu.h │ │ ├── meson-g12a-toacodec.h │ │ ├── meson-g12a-tohdmitx.h │ │ ├── microchip,pdmc.h │ │ ├── qcom,lpass.h │ │ ├── qcom,q6afe.h │ │ ├── qcom,q6asm.h │ │ ├── qcom,q6dsp-lpass-ports.h │ │ ├── qcom,wcd9335.h │ │ ├── rt5640.h │ │ ├── rt5651.h │ │ ├── samsung-i2s.h │ │ ├── sc7180-lpass.h │ │ ├── tas2552.h │ │ ├── tlv320adc3xxx.h │ │ └── tlv320aic31xx.h │ │ ├── spmi │ │ └── spmi.h │ │ ├── thermal │ │ ├── lm90.h │ │ ├── mediatek,lvts-thermal.h │ │ ├── tegra124-soctherm.h │ │ ├── tegra186-bpmp-thermal.h │ │ ├── tegra194-bpmp-thermal.h │ │ ├── tegra234-bpmp-thermal.h │ │ ├── thermal.h │ │ └── thermal_exynos.h │ │ ├── usb │ │ └── pd.h │ │ └── watchdog │ │ └── aspeed-wdt.h ├── scripts │ ├── Kbuild.include │ ├── basic │ │ └── fixdep │ ├── cronjob │ ├── filter.sh │ ├── index-filter.sh │ ├── merge-new-release.sh │ └── rewrite-index.pl └── src │ ├── arc │ ├── abilis_tb100.dtsi │ ├── abilis_tb100_dvk.dts │ ├── abilis_tb101.dtsi │ ├── abilis_tb101_dvk.dts │ ├── abilis_tb10x.dtsi │ ├── axc001.dtsi │ ├── axc003.dtsi │ ├── axc003_idu.dtsi │ ├── axs101.dts │ ├── axs103.dts │ ├── axs103_idu.dts │ ├── axs10x_mb.dtsi │ ├── haps_hs.dts │ ├── haps_hs_idu.dts │ ├── hsdk.dts │ ├── nsim_700.dts │ ├── nsimosci.dts │ ├── nsimosci_hs.dts │ ├── nsimosci_hs_idu.dts │ ├── skeleton.dtsi │ ├── skeleton_hs.dtsi │ ├── skeleton_hs_idu.dtsi │ ├── vdk_axc003.dtsi │ ├── vdk_axc003_idu.dtsi │ ├── vdk_axs10x_mb.dtsi │ ├── vdk_hs38.dts │ └── vdk_hs38_smp.dts │ ├── arm │ ├── actions │ │ ├── owl-s500-cubieboard6.dts │ │ ├── owl-s500-guitar-bb-rev-b.dts │ │ ├── owl-s500-guitar.dtsi │ │ ├── owl-s500-labrador-base-m.dts │ │ ├── owl-s500-labrador-v2.dtsi │ │ ├── owl-s500-roseapplepi.dts │ │ ├── owl-s500-sparky.dts │ │ └── owl-s500.dtsi │ ├── airoha │ │ ├── en7523-evb.dts │ │ └── en7523.dtsi │ ├── allwinner │ │ ├── axp152.dtsi │ │ ├── axp209.dtsi │ │ ├── axp223.dtsi │ │ ├── axp22x.dtsi │ │ ├── axp809.dtsi │ │ ├── axp81x.dtsi │ │ ├── sun4i-a10-a1000.dts │ │ ├── sun4i-a10-ba10-tvbox.dts │ │ ├── sun4i-a10-chuwi-v7-cw0825.dts │ │ ├── sun4i-a10-cubieboard.dts │ │ ├── sun4i-a10-dserve-dsrv9703c.dts │ │ ├── sun4i-a10-gemei-g9.dts │ │ ├── sun4i-a10-hackberry.dts │ │ ├── sun4i-a10-hyundai-a7hd.dts │ │ ├── sun4i-a10-inet1.dts │ │ ├── sun4i-a10-inet97fv2.dts │ │ ├── sun4i-a10-inet9f-rev03.dts │ │ ├── sun4i-a10-itead-iteaduino-plus.dts │ │ ├── sun4i-a10-jesurun-q5.dts │ │ ├── sun4i-a10-marsboard.dts │ │ ├── sun4i-a10-mini-xplus.dts │ │ ├── sun4i-a10-mk802.dts │ │ ├── sun4i-a10-mk802ii.dts │ │ ├── sun4i-a10-olinuxino-lime.dts │ │ ├── sun4i-a10-pcduino.dts │ │ ├── sun4i-a10-pcduino2.dts │ │ ├── sun4i-a10-pov-protab2-ips9.dts │ │ ├── sun4i-a10-topwise-a721.dts │ │ ├── sun4i-a10.dtsi │ │ ├── sun5i-a10s-auxtek-t003.dts │ │ ├── sun5i-a10s-auxtek-t004.dts │ │ ├── sun5i-a10s-mk802.dts │ │ ├── sun5i-a10s-olinuxino-micro.dts │ │ ├── sun5i-a10s-r7-tv-dongle.dts │ │ ├── sun5i-a10s-wobo-i5.dts │ │ ├── sun5i-a10s.dtsi │ │ ├── sun5i-a13-difrnce-dit4350.dts │ │ ├── sun5i-a13-empire-electronix-d709.dts │ │ ├── sun5i-a13-empire-electronix-m712.dts │ │ ├── sun5i-a13-hsg-h702.dts │ │ ├── sun5i-a13-inet-98v-rev2.dts │ │ ├── sun5i-a13-licheepi-one.dts │ │ ├── sun5i-a13-olinuxino-micro.dts │ │ ├── sun5i-a13-olinuxino.dts │ │ ├── sun5i-a13-pocketbook-touch-lux-3.dts │ │ ├── sun5i-a13-q8-tablet.dts │ │ ├── sun5i-a13-utoo-p66.dts │ │ ├── sun5i-a13.dtsi │ │ ├── sun5i-gr8-chip-pro.dts │ │ ├── sun5i-gr8-evb.dts │ │ ├── sun5i-gr8.dtsi │ │ ├── sun5i-r8-chip.dts │ │ ├── sun5i-r8.dtsi │ │ ├── sun5i-reference-design-tablet.dtsi │ │ ├── sun5i.dtsi │ │ ├── sun6i-a31-app4-evb1.dts │ │ ├── sun6i-a31-colombus.dts │ │ ├── sun6i-a31-hummingbird.dts │ │ ├── sun6i-a31-i7.dts │ │ ├── sun6i-a31-m9.dts │ │ ├── sun6i-a31-mele-a1000g-quad.dts │ │ ├── sun6i-a31.dtsi │ │ ├── sun6i-a31s-colorfly-e708-q1.dts │ │ ├── sun6i-a31s-cs908.dts │ │ ├── sun6i-a31s-inet-q972.dts │ │ ├── sun6i-a31s-primo81.dts │ │ ├── sun6i-a31s-sina31s-core.dtsi │ │ ├── sun6i-a31s-sina31s.dts │ │ ├── sun6i-a31s-sinovoip-bpi-m2.dts │ │ ├── sun6i-a31s-yones-toptech-bs1078-v2.dts │ │ ├── sun6i-a31s.dtsi │ │ ├── sun6i-reference-design-tablet.dtsi │ │ ├── sun7i-a20-bananapi-m1-plus.dts │ │ ├── sun7i-a20-bananapi.dts │ │ ├── sun7i-a20-bananapro.dts │ │ ├── sun7i-a20-cubieboard2.dts │ │ ├── sun7i-a20-cubietruck.dts │ │ ├── sun7i-a20-haoyu-marsboard.dts │ │ ├── sun7i-a20-hummingbird.dts │ │ ├── sun7i-a20-i12-tvbox.dts │ │ ├── sun7i-a20-icnova-a20-adb4006.dts │ │ ├── sun7i-a20-icnova-a20.dtsi │ │ ├── sun7i-a20-icnova-swac.dts │ │ ├── sun7i-a20-itead-ibox.dts │ │ ├── sun7i-a20-lamobo-r1.dts │ │ ├── sun7i-a20-linutronix-testbox-v2.dts │ │ ├── sun7i-a20-m3.dts │ │ ├── sun7i-a20-mk808c.dts │ │ ├── sun7i-a20-olimex-som-evb-emmc.dts │ │ ├── sun7i-a20-olimex-som-evb.dts │ │ ├── sun7i-a20-olimex-som204-evb-emmc.dts │ │ ├── sun7i-a20-olimex-som204-evb.dts │ │ ├── sun7i-a20-olinuxino-lime-emmc.dts │ │ ├── sun7i-a20-olinuxino-lime.dts │ │ ├── sun7i-a20-olinuxino-lime2-emmc.dts │ │ ├── sun7i-a20-olinuxino-lime2.dts │ │ ├── sun7i-a20-olinuxino-micro-emmc.dts │ │ ├── sun7i-a20-olinuxino-micro.dts │ │ ├── sun7i-a20-orangepi-mini.dts │ │ ├── sun7i-a20-orangepi.dts │ │ ├── sun7i-a20-pcduino3-nano.dts │ │ ├── sun7i-a20-pcduino3.dts │ │ ├── sun7i-a20-wexler-tab7200.dts │ │ ├── sun7i-a20-wits-pro-a20-dkt.dts │ │ ├── sun7i-a20.dtsi │ │ ├── sun8i-a23-a33.dtsi │ │ ├── sun8i-a23-evb.dts │ │ ├── sun8i-a23-gt90h-v4.dts │ │ ├── sun8i-a23-inet86dz.dts │ │ ├── sun8i-a23-ippo-q8h-v1.2.dts │ │ ├── sun8i-a23-ippo-q8h-v5.dts │ │ ├── sun8i-a23-polaroid-mid2407pxe03.dts │ │ ├── sun8i-a23-polaroid-mid2809pxe04.dts │ │ ├── sun8i-a23-q8-tablet.dts │ │ ├── sun8i-a23.dtsi │ │ ├── sun8i-a33-et-q8-v1.6.dts │ │ ├── sun8i-a33-ga10h-v1.1.dts │ │ ├── sun8i-a33-inet-d978-rev2.dts │ │ ├── sun8i-a33-ippo-q8h-v1.2.dts │ │ ├── sun8i-a33-olinuxino.dts │ │ ├── sun8i-a33-q8-tablet.dts │ │ ├── sun8i-a33-sinlinx-sina33.dts │ │ ├── sun8i-a33.dtsi │ │ ├── sun8i-a83t-allwinner-h8homlet-v2.dts │ │ ├── sun8i-a83t-bananapi-m3.dts │ │ ├── sun8i-a83t-cubietruck-plus.dts │ │ ├── sun8i-a83t-tbs-a711.dts │ │ ├── sun8i-a83t.dtsi │ │ ├── sun8i-h2-plus-bananapi-m2-zero.dts │ │ ├── sun8i-h2-plus-libretech-all-h3-cc.dts │ │ ├── sun8i-h2-plus-orangepi-r1.dts │ │ ├── sun8i-h2-plus-orangepi-zero.dts │ │ ├── sun8i-h3-bananapi-m2-plus-v1.2.dts │ │ ├── sun8i-h3-bananapi-m2-plus.dts │ │ ├── sun8i-h3-beelink-x2.dts │ │ ├── sun8i-h3-emlid-neutis-n5h3-devboard.dts │ │ ├── sun8i-h3-emlid-neutis-n5h3.dtsi │ │ ├── sun8i-h3-libretech-all-h3-cc.dts │ │ ├── sun8i-h3-mapleboard-mp130.dts │ │ ├── sun8i-h3-nanopi-duo2.dts │ │ ├── sun8i-h3-nanopi-m1-plus.dts │ │ ├── sun8i-h3-nanopi-m1.dts │ │ ├── sun8i-h3-nanopi-neo-air.dts │ │ ├── sun8i-h3-nanopi-neo.dts │ │ ├── sun8i-h3-nanopi-r1.dts │ │ ├── sun8i-h3-nanopi.dtsi │ │ ├── sun8i-h3-orangepi-2.dts │ │ ├── sun8i-h3-orangepi-lite.dts │ │ ├── sun8i-h3-orangepi-one.dts │ │ ├── sun8i-h3-orangepi-pc-plus.dts │ │ ├── sun8i-h3-orangepi-pc.dts │ │ ├── sun8i-h3-orangepi-plus.dts │ │ ├── sun8i-h3-orangepi-plus2e.dts │ │ ├── sun8i-h3-orangepi-zero-plus2.dts │ │ ├── sun8i-h3-rervision-dvk.dts │ │ ├── sun8i-h3-zeropi.dts │ │ ├── sun8i-h3.dtsi │ │ ├── sun8i-q8-common.dtsi │ │ ├── sun8i-r16-bananapi-m2m.dts │ │ ├── sun8i-r16-nintendo-nes-classic.dts │ │ ├── sun8i-r16-nintendo-super-nes-classic.dts │ │ ├── sun8i-r16-parrot.dts │ │ ├── sun8i-r40-bananapi-m2-ultra.dts │ │ ├── sun8i-r40-cpu-opp.dtsi │ │ ├── sun8i-r40-feta40i.dtsi │ │ ├── sun8i-r40-oka40i-c.dts │ │ ├── sun8i-r40.dtsi │ │ ├── sun8i-reference-design-tablet.dtsi │ │ ├── sun8i-s3-elimo-impetus.dtsi │ │ ├── sun8i-s3-elimo-initium.dts │ │ ├── sun8i-s3-lichee-zero-plus.dts │ │ ├── sun8i-s3-pinecube.dts │ │ ├── sun8i-t113s-mangopi-mq-r-t113.dts │ │ ├── sun8i-t113s.dtsi │ │ ├── sun8i-t3-cqa3t-bv3.dts │ │ ├── sun8i-v3-sl631-imx179.dts │ │ ├── sun8i-v3-sl631.dtsi │ │ ├── sun8i-v3.dtsi │ │ ├── sun8i-v3s-anbernic-rg-nano.dts │ │ ├── sun8i-v3s-licheepi-zero-dock.dts │ │ ├── sun8i-v3s-licheepi-zero.dts │ │ ├── sun8i-v3s.dtsi │ │ ├── sun8i-v40-bananapi-m2-berry.dts │ │ ├── sun9i-a80-cubieboard4.dts │ │ ├── sun9i-a80-optimus.dts │ │ ├── sun9i-a80.dtsi │ │ ├── suniv-f1c100s-licheepi-nano.dts │ │ ├── suniv-f1c100s.dtsi │ │ ├── suniv-f1c200s-lctech-pi.dts │ │ ├── suniv-f1c200s-popstick-v1.1.dts │ │ ├── sunxi-bananapi-m2-plus-v1.2.dtsi │ │ ├── sunxi-bananapi-m2-plus.dtsi │ │ ├── sunxi-common-regulators.dtsi │ │ ├── sunxi-d1s-t113-mangopi-mq-r.dtsi │ │ ├── sunxi-h3-h5-emlid-neutis.dtsi │ │ ├── sunxi-h3-h5.dtsi │ │ ├── sunxi-itead-core-common.dtsi │ │ ├── sunxi-libretech-all-h3-cc.dtsi │ │ ├── sunxi-libretech-all-h3-it.dtsi │ │ └── sunxi-reference-design-tablet.dtsi │ ├── alphascale │ │ ├── alphascale-asm9260-devkit.dts │ │ └── alphascale-asm9260.dtsi │ ├── amazon │ │ ├── alpine-db.dts │ │ └── alpine.dtsi │ ├── amlogic │ │ ├── meson.dtsi │ │ ├── meson6-atv1200.dts │ │ ├── meson6.dtsi │ │ ├── meson8-minix-neo-x8.dts │ │ ├── meson8.dtsi │ │ ├── meson8b-ec100.dts │ │ ├── meson8b-mxq.dts │ │ ├── meson8b-odroidc1.dts │ │ ├── meson8b.dtsi │ │ ├── meson8m2-mxiii-plus.dts │ │ └── meson8m2.dtsi │ ├── arm │ │ ├── arm-realview-eb-11mp-bbrevd-ctrevb.dts │ │ ├── arm-realview-eb-11mp-bbrevd.dts │ │ ├── arm-realview-eb-11mp-ctrevb.dts │ │ ├── arm-realview-eb-11mp.dts │ │ ├── arm-realview-eb-a9mp-bbrevd.dts │ │ ├── arm-realview-eb-a9mp.dts │ │ ├── arm-realview-eb-bbrevd.dts │ │ ├── arm-realview-eb-bbrevd.dtsi │ │ ├── arm-realview-eb-mp.dtsi │ │ ├── arm-realview-eb.dts │ │ ├── arm-realview-eb.dtsi │ │ ├── arm-realview-pb1176.dts │ │ ├── arm-realview-pb11mp.dts │ │ ├── arm-realview-pba8.dts │ │ ├── arm-realview-pbx-a9.dts │ │ ├── arm-realview-pbx.dtsi │ │ ├── integrator.dtsi │ │ ├── integratorap-im-pd1.dts │ │ ├── integratorap.dts │ │ ├── integratorcp.dts │ │ ├── mps2-an385.dts │ │ ├── mps2-an399.dts │ │ ├── mps2.dtsi │ │ ├── versatile-ab-ib2.dts │ │ ├── versatile-ab.dts │ │ ├── versatile-pb.dts │ │ ├── vexpress-v2m-rs1.dtsi │ │ ├── vexpress-v2m.dtsi │ │ ├── vexpress-v2p-ca15-tc1.dts │ │ ├── vexpress-v2p-ca15_a7.dts │ │ ├── vexpress-v2p-ca5s.dts │ │ └── vexpress-v2p-ca9.dts │ ├── armv7-m.dtsi │ ├── aspeed │ │ ├── aspeed-ast2500-evb.dts │ │ ├── aspeed-ast2600-evb-a1.dts │ │ ├── aspeed-ast2600-evb.dts │ │ ├── aspeed-bmc-amd-daytonax.dts │ │ ├── aspeed-bmc-amd-ethanolx.dts │ │ ├── aspeed-bmc-ampere-mtjade.dts │ │ ├── aspeed-bmc-ampere-mtmitchell.dts │ │ ├── aspeed-bmc-arm-stardragon4800-rep2.dts │ │ ├── aspeed-bmc-asrock-e3c246d4i.dts │ │ ├── aspeed-bmc-asrock-romed8hm3.dts │ │ ├── aspeed-bmc-bytedance-g220a.dts │ │ ├── aspeed-bmc-delta-ahe50dc.dts │ │ ├── aspeed-bmc-facebook-bletchley.dts │ │ ├── aspeed-bmc-facebook-cloudripper.dts │ │ ├── aspeed-bmc-facebook-cmm.dts │ │ ├── aspeed-bmc-facebook-elbert.dts │ │ ├── aspeed-bmc-facebook-fuji.dts │ │ ├── aspeed-bmc-facebook-galaxy100.dts │ │ ├── aspeed-bmc-facebook-greatlakes.dts │ │ ├── aspeed-bmc-facebook-minerva-cmc.dts │ │ ├── aspeed-bmc-facebook-minipack.dts │ │ ├── aspeed-bmc-facebook-tiogapass.dts │ │ ├── aspeed-bmc-facebook-wedge100.dts │ │ ├── aspeed-bmc-facebook-wedge40.dts │ │ ├── aspeed-bmc-facebook-wedge400.dts │ │ ├── aspeed-bmc-facebook-yamp.dts │ │ ├── aspeed-bmc-facebook-yosemite4.dts │ │ ├── aspeed-bmc-facebook-yosemitev2.dts │ │ ├── aspeed-bmc-ibm-bonnell.dts │ │ ├── aspeed-bmc-ibm-everest.dts │ │ ├── aspeed-bmc-ibm-rainier-1s4u.dts │ │ ├── aspeed-bmc-ibm-rainier-4u.dts │ │ ├── aspeed-bmc-ibm-rainier.dts │ │ ├── aspeed-bmc-inspur-fp5280g2.dts │ │ ├── aspeed-bmc-inspur-nf5280m6.dts │ │ ├── aspeed-bmc-inspur-on5263m5.dts │ │ ├── aspeed-bmc-intel-s2600wf.dts │ │ ├── aspeed-bmc-inventec-starscream.dts │ │ ├── aspeed-bmc-inventec-transformers.dts │ │ ├── aspeed-bmc-lenovo-hr630.dts │ │ ├── aspeed-bmc-lenovo-hr855xg2.dts │ │ ├── aspeed-bmc-microsoft-olympus.dts │ │ ├── aspeed-bmc-opp-lanyang.dts │ │ ├── aspeed-bmc-opp-mowgli.dts │ │ ├── aspeed-bmc-opp-nicole.dts │ │ ├── aspeed-bmc-opp-palmetto.dts │ │ ├── aspeed-bmc-opp-romulus.dts │ │ ├── aspeed-bmc-opp-swift.dts │ │ ├── aspeed-bmc-opp-tacoma.dts │ │ ├── aspeed-bmc-opp-vesnin.dts │ │ ├── aspeed-bmc-opp-witherspoon.dts │ │ ├── aspeed-bmc-opp-zaius.dts │ │ ├── aspeed-bmc-portwell-neptune.dts │ │ ├── aspeed-bmc-qcom-dc-scm-v1.dts │ │ ├── aspeed-bmc-quanta-q71l.dts │ │ ├── aspeed-bmc-quanta-s6q.dts │ │ ├── aspeed-bmc-supermicro-x11spi.dts │ │ ├── aspeed-bmc-tyan-s7106.dts │ │ ├── aspeed-bmc-tyan-s8036.dts │ │ ├── aspeed-bmc-ufispace-ncplite.dts │ │ ├── aspeed-bmc-vegman-n110.dts │ │ ├── aspeed-bmc-vegman-rx20.dts │ │ ├── aspeed-bmc-vegman-sx20.dts │ │ ├── aspeed-bmc-vegman.dtsi │ │ ├── aspeed-g4.dtsi │ │ ├── aspeed-g5.dtsi │ │ ├── aspeed-g6-pinctrl.dtsi │ │ ├── aspeed-g6.dtsi │ │ ├── ast2400-facebook-netbmc-common.dtsi │ │ ├── ast2500-facebook-netbmc-common.dtsi │ │ ├── ast2600-facebook-netbmc-common.dtsi │ │ ├── facebook-bmc-flash-layout-128.dtsi │ │ ├── facebook-bmc-flash-layout.dtsi │ │ ├── ibm-power10-dual.dtsi │ │ ├── ibm-power10-quad.dtsi │ │ ├── ibm-power9-dual.dtsi │ │ ├── openbmc-flash-layout-128.dtsi │ │ ├── openbmc-flash-layout-64-alt.dtsi │ │ ├── openbmc-flash-layout-64.dtsi │ │ └── openbmc-flash-layout.dtsi │ ├── axis │ │ ├── artpec6-devboard.dts │ │ └── artpec6.dtsi │ ├── broadcom │ │ ├── bcm-cygnus-clock.dtsi │ │ ├── bcm-cygnus.dtsi │ │ ├── bcm-hr2.dtsi │ │ ├── bcm-ns.dtsi │ │ ├── bcm-nsp-ax.dtsi │ │ ├── bcm-nsp.dtsi │ │ ├── bcm11351.dtsi │ │ ├── bcm21664-garnet.dts │ │ ├── bcm21664.dtsi │ │ ├── bcm23550-sparrow.dts │ │ ├── bcm23550.dtsi │ │ ├── bcm2711-rpi-4-b.dts │ │ ├── bcm2711-rpi-400.dts │ │ ├── bcm2711-rpi-cm4-io.dts │ │ ├── bcm2711-rpi-cm4.dtsi │ │ ├── bcm2711-rpi.dtsi │ │ ├── bcm2711.dtsi │ │ ├── bcm28155-ap.dts │ │ ├── bcm2835-common.dtsi │ │ ├── bcm2835-rpi-a-plus.dts │ │ ├── bcm2835-rpi-a.dts │ │ ├── bcm2835-rpi-b-plus.dts │ │ ├── bcm2835-rpi-b-rev2.dts │ │ ├── bcm2835-rpi-b.dts │ │ ├── bcm2835-rpi-cm1-io1.dts │ │ ├── bcm2835-rpi-cm1.dtsi │ │ ├── bcm2835-rpi-common.dtsi │ │ ├── bcm2835-rpi-zero-w.dts │ │ ├── bcm2835-rpi-zero.dts │ │ ├── bcm2835-rpi.dtsi │ │ ├── bcm2835.dtsi │ │ ├── bcm2836-rpi-2-b.dts │ │ ├── bcm2836-rpi.dtsi │ │ ├── bcm2836.dtsi │ │ ├── bcm2837-rpi-3-a-plus.dts │ │ ├── bcm2837-rpi-3-b-plus.dts │ │ ├── bcm2837-rpi-3-b.dts │ │ ├── bcm2837-rpi-cm3-io3.dts │ │ ├── bcm2837-rpi-cm3.dtsi │ │ ├── bcm2837-rpi-zero-2-w.dts │ │ ├── bcm2837.dtsi │ │ ├── bcm283x-rpi-lan7515.dtsi │ │ ├── bcm283x-rpi-led-deprecated.dtsi │ │ ├── bcm283x-rpi-smsc9512.dtsi │ │ ├── bcm283x-rpi-smsc9514.dtsi │ │ ├── bcm283x-rpi-usb-host.dtsi │ │ ├── bcm283x-rpi-usb-otg.dtsi │ │ ├── bcm283x-rpi-usb-peripheral.dtsi │ │ ├── bcm283x-rpi-wifi-bt.dtsi │ │ ├── bcm283x.dtsi │ │ ├── bcm4708-asus-rt-ac56u.dts │ │ ├── bcm4708-asus-rt-ac68u.dts │ │ ├── bcm4708-buffalo-wzr-1166dhp-common.dtsi │ │ ├── bcm4708-buffalo-wzr-1166dhp.dts │ │ ├── bcm4708-buffalo-wzr-1166dhp2.dts │ │ ├── bcm4708-buffalo-wzr-1750dhp.dts │ │ ├── bcm4708-linksys-ea6300-v1.dts │ │ ├── bcm4708-linksys-ea6500-v2.dts │ │ ├── bcm4708-luxul-xap-1510.dts │ │ ├── bcm4708-luxul-xwc-1000.dts │ │ ├── bcm4708-netgear-r6250.dts │ │ ├── bcm4708-netgear-r6300-v2.dts │ │ ├── bcm4708-smartrg-sr400ac.dts │ │ ├── bcm4708.dtsi │ │ ├── bcm47081-asus-rt-n18u.dts │ │ ├── bcm47081-buffalo-wzr-600dhp2.dts │ │ ├── bcm47081-buffalo-wzr-900dhp.dts │ │ ├── bcm47081-luxul-xap-1410.dts │ │ ├── bcm47081-luxul-xwr-1200.dts │ │ ├── bcm47081-tplink-archer-c5-v2.dts │ │ ├── bcm47081.dtsi │ │ ├── bcm4709-asus-rt-ac87u.dts │ │ ├── bcm4709-buffalo-wxr-1900dhp.dts │ │ ├── bcm4709-linksys-ea9200.dts │ │ ├── bcm4709-netgear-r7000.dts │ │ ├── bcm4709-netgear-r8000.dts │ │ ├── bcm4709-tplink-archer-c9-v1.dts │ │ ├── bcm4709.dtsi │ │ ├── bcm47094-asus-rt-ac3100.dts │ │ ├── bcm47094-asus-rt-ac3100.dtsi │ │ ├── bcm47094-asus-rt-ac88u.dts │ │ ├── bcm47094-dlink-dir-885l.dts │ │ ├── bcm47094-dlink-dir-890l.dts │ │ ├── bcm47094-linksys-panamera.dts │ │ ├── bcm47094-luxul-abr-4500.dts │ │ ├── bcm47094-luxul-xap-1610.dts │ │ ├── bcm47094-luxul-xbr-4500.dts │ │ ├── bcm47094-luxul-xwc-2000.dts │ │ ├── bcm47094-luxul-xwr-3100.dts │ │ ├── bcm47094-luxul-xwr-3150-v1.dts │ │ ├── bcm47094-netgear-r8500.dts │ │ ├── bcm47094-phicomm-k3.dts │ │ ├── bcm47094.dtsi │ │ ├── bcm47189-luxul-xap-1440.dts │ │ ├── bcm47189-luxul-xap-810.dts │ │ ├── bcm47189-tenda-ac9.dts │ │ ├── bcm47622.dtsi │ │ ├── bcm53015-meraki-mr26.dts │ │ ├── bcm53016-dlink-dwl-8610ap.dts │ │ ├── bcm53016-meraki-mr32.dts │ │ ├── bcm5301x-nand-cs0-bch1.dtsi │ │ ├── bcm5301x-nand-cs0-bch4.dtsi │ │ ├── bcm5301x-nand-cs0-bch8.dtsi │ │ ├── bcm5301x-nand-cs0.dtsi │ │ ├── bcm5301x.dtsi │ │ ├── bcm53340-ubnt-unifi-switch8.dts │ │ ├── bcm53573.dtsi │ │ ├── bcm59056.dtsi │ │ ├── bcm63138.dtsi │ │ ├── bcm63148.dtsi │ │ ├── bcm63178.dtsi │ │ ├── bcm6756.dtsi │ │ ├── bcm6846.dtsi │ │ ├── bcm6855.dtsi │ │ ├── bcm6878.dtsi │ │ ├── bcm7445-bcm97445svmb.dts │ │ ├── bcm7445.dtsi │ │ ├── bcm911360_entphn.dts │ │ ├── bcm911360k.dts │ │ ├── bcm94708.dts │ │ ├── bcm94709.dts │ │ ├── bcm947189acdbmr.dts │ │ ├── bcm947622.dts │ │ ├── bcm953012er.dts │ │ ├── bcm953012hr.dts │ │ ├── bcm953012k.dts │ │ ├── bcm958300k.dts │ │ ├── bcm958305k.dts │ │ ├── bcm958522er.dts │ │ ├── bcm958525er.dts │ │ ├── bcm958525xmc.dts │ │ ├── bcm958622hr.dts │ │ ├── bcm958623hr.dts │ │ ├── bcm958625-meraki-alamo.dtsi │ │ ├── bcm958625-meraki-kingpin.dtsi │ │ ├── bcm958625-meraki-mx64-a0.dts │ │ ├── bcm958625-meraki-mx64.dts │ │ ├── bcm958625-meraki-mx64w-a0.dts │ │ ├── bcm958625-meraki-mx64w.dts │ │ ├── bcm958625-meraki-mx65.dts │ │ ├── bcm958625-meraki-mx65w.dts │ │ ├── bcm958625-meraki-mx6x-common.dtsi │ │ ├── bcm958625hr.dts │ │ ├── bcm958625k.dts │ │ ├── bcm963138.dts │ │ ├── bcm963138dvt.dts │ │ ├── bcm963148.dts │ │ ├── bcm963178.dts │ │ ├── bcm96756.dts │ │ ├── bcm96846.dts │ │ ├── bcm96855.dts │ │ ├── bcm96878.dts │ │ ├── bcm988312hr.dts │ │ └── bcm9hmidc.dtsi │ ├── calxeda │ │ ├── ecx-2000.dts │ │ ├── ecx-common.dtsi │ │ └── highbank.dts │ ├── cirrus │ │ ├── ep7209.dtsi │ │ ├── ep7211-edb7211.dts │ │ └── ep7211.dtsi │ ├── cnxt │ │ ├── cx92755.dtsi │ │ └── cx92755_equinox.dts │ ├── cros-adc-thermistors.dtsi │ ├── cros-ec-keyboard.dtsi │ ├── cros-ec-sbs.dtsi │ ├── gemini │ │ ├── gemini-dlink-dir-685.dts │ │ ├── gemini-dlink-dns-313.dts │ │ ├── gemini-nas4220b.dts │ │ ├── gemini-ns2502.dts │ │ ├── gemini-rut1xx.dts │ │ ├── gemini-sl93512r.dts │ │ ├── gemini-sq201.dts │ │ ├── gemini-ssi1328.dts │ │ ├── gemini-wbd111.dts │ │ ├── gemini-wbd222.dts │ │ └── gemini.dtsi │ ├── hisilicon │ │ ├── hi3519-demb.dts │ │ ├── hi3519.dtsi │ │ ├── hi3620-hi4511.dts │ │ ├── hi3620.dtsi │ │ ├── hip01-ca9x2.dts │ │ ├── hip01.dtsi │ │ ├── hip04-d01.dts │ │ ├── hip04.dtsi │ │ ├── hisi-x5hd2-dkb.dts │ │ ├── hisi-x5hd2.dtsi │ │ └── sd5203.dts │ ├── hpe │ │ ├── hpe-bmc-dl360gen10.dts │ │ └── hpe-gxp.dtsi │ ├── intel │ │ ├── axm │ │ │ ├── axm5516-amarillo.dts │ │ │ ├── axm5516-cpus.dtsi │ │ │ └── axm55xx.dtsi │ │ ├── ixp │ │ │ ├── intel-ixp42x-adi-coyote.dts │ │ │ ├── intel-ixp42x-arcom-vulcan.dts │ │ │ ├── intel-ixp42x-dlink-dsm-g600.dts │ │ │ ├── intel-ixp42x-freecom-fsg-3.dts │ │ │ ├── intel-ixp42x-gateway-7001.dts │ │ │ ├── intel-ixp42x-gateworks-gw2348.dts │ │ │ ├── intel-ixp42x-goramo-multilink.dts │ │ │ ├── intel-ixp42x-iomega-nas100d.dts │ │ │ ├── intel-ixp42x-ixdp425.dts │ │ │ ├── intel-ixp42x-ixdpg425.dts │ │ │ ├── intel-ixp42x-linksys-nslu2.dts │ │ │ ├── intel-ixp42x-linksys-wrv54g.dts │ │ │ ├── intel-ixp42x-netgear-wg302v1.dts │ │ │ ├── intel-ixp42x-usrobotics-usr8200.dts │ │ │ ├── intel-ixp42x-welltech-epbx100.dts │ │ │ ├── intel-ixp42x.dtsi │ │ │ ├── intel-ixp43x-gateworks-gw2358.dts │ │ │ ├── intel-ixp43x-kixrp435.dts │ │ │ ├── intel-ixp43x.dtsi │ │ │ ├── intel-ixp45x-ixp46x.dtsi │ │ │ ├── intel-ixp46x-ixdp465.dts │ │ │ ├── intel-ixp4xx-reference-design.dtsi │ │ │ └── intel-ixp4xx.dtsi │ │ ├── pxa │ │ │ ├── pxa25x.dtsi │ │ │ ├── pxa27x.dtsi │ │ │ ├── pxa2xx.dtsi │ │ │ ├── pxa300-raumfeld-common.dtsi │ │ │ ├── pxa300-raumfeld-connector.dts │ │ │ ├── pxa300-raumfeld-controller.dts │ │ │ ├── pxa300-raumfeld-speaker-l.dts │ │ │ ├── pxa300-raumfeld-speaker-m.dts │ │ │ ├── pxa300-raumfeld-speaker-one.dts │ │ │ ├── pxa300-raumfeld-speaker-s.dts │ │ │ ├── pxa300-raumfeld-tuneable-clock.dtsi │ │ │ └── pxa3xx.dtsi │ │ └── socfpga │ │ │ ├── socfpga.dtsi │ │ │ ├── socfpga_arria10.dtsi │ │ │ ├── socfpga_arria10_chameleonv3.dts │ │ │ ├── socfpga_arria10_mercury_aa1.dtsi │ │ │ ├── socfpga_arria10_mercury_pe1.dts │ │ │ ├── socfpga_arria10_socdk.dtsi │ │ │ ├── socfpga_arria10_socdk_nand.dts │ │ │ ├── socfpga_arria10_socdk_qspi.dts │ │ │ ├── socfpga_arria10_socdk_sdmmc.dts │ │ │ ├── socfpga_arria5.dtsi │ │ │ ├── socfpga_arria5_socdk.dts │ │ │ ├── socfpga_cyclone5.dtsi │ │ │ ├── socfpga_cyclone5_chameleon96.dts │ │ │ ├── socfpga_cyclone5_de0_nano_soc.dts │ │ │ ├── socfpga_cyclone5_mcv.dtsi │ │ │ ├── socfpga_cyclone5_mcvevk.dts │ │ │ ├── socfpga_cyclone5_socdk.dts │ │ │ ├── socfpga_cyclone5_sockit.dts │ │ │ ├── socfpga_cyclone5_socrates.dts │ │ │ ├── socfpga_cyclone5_sodia.dts │ │ │ ├── socfpga_cyclone5_vining_fpga.dts │ │ │ └── socfpga_vt.dts │ ├── marvell │ │ ├── armada-370-c200-v2.dts │ │ ├── armada-370-db.dts │ │ ├── armada-370-dlink-dns327l.dts │ │ ├── armada-370-mirabox.dts │ │ ├── armada-370-netgear-rn102.dts │ │ ├── armada-370-netgear-rn104.dts │ │ ├── armada-370-rd.dts │ │ ├── armada-370-seagate-nas-2bay.dts │ │ ├── armada-370-seagate-nas-4bay.dts │ │ ├── armada-370-seagate-nas-xbay.dtsi │ │ ├── armada-370-seagate-personal-cloud-2bay.dts │ │ ├── armada-370-seagate-personal-cloud.dts │ │ ├── armada-370-seagate-personal-cloud.dtsi │ │ ├── armada-370-synology-ds213j.dts │ │ ├── armada-370-xp.dtsi │ │ ├── armada-370.dtsi │ │ ├── armada-375-db.dts │ │ ├── armada-375.dtsi │ │ ├── armada-380.dtsi │ │ ├── armada-381-netgear-gs110emx.dts │ │ ├── armada-382-rd-ac3x-48g4x2xl.dts │ │ ├── armada-385-atl-x530.dts │ │ ├── armada-385-clearfog-gtr-l8.dts │ │ ├── armada-385-clearfog-gtr-s4.dts │ │ ├── armada-385-clearfog-gtr.dtsi │ │ ├── armada-385-db-88f6820-amc.dts │ │ ├── armada-385-db-ap.dts │ │ ├── armada-385-linksys-caiman.dts │ │ ├── armada-385-linksys-cobra.dts │ │ ├── armada-385-linksys-rango.dts │ │ ├── armada-385-linksys-shelby.dts │ │ ├── armada-385-linksys.dtsi │ │ ├── armada-385-synology-ds116.dts │ │ ├── armada-385-turris-omnia.dts │ │ ├── armada-385.dtsi │ │ ├── armada-388-clearfog-base.dts │ │ ├── armada-388-clearfog-pro.dts │ │ ├── armada-388-clearfog.dts │ │ ├── armada-388-clearfog.dtsi │ │ ├── armada-388-db.dts │ │ ├── armada-388-gp.dts │ │ ├── armada-388-helios4.dts │ │ ├── armada-388-rd.dts │ │ ├── armada-388.dtsi │ │ ├── armada-38x-solidrun-microsom.dtsi │ │ ├── armada-38x.dtsi │ │ ├── armada-390-db.dts │ │ ├── armada-390.dtsi │ │ ├── armada-395-gp.dts │ │ ├── armada-395.dtsi │ │ ├── armada-398-db.dts │ │ ├── armada-398.dtsi │ │ ├── armada-39x.dtsi │ │ ├── armada-xp-98dx3236.dtsi │ │ ├── armada-xp-98dx3336.dtsi │ │ ├── armada-xp-98dx4251.dtsi │ │ ├── armada-xp-axpwifiap.dts │ │ ├── armada-xp-crs305-1g-4s-bit.dts │ │ ├── armada-xp-crs305-1g-4s.dts │ │ ├── armada-xp-crs305-1g-4s.dtsi │ │ ├── armada-xp-crs326-24g-2s-bit.dts │ │ ├── armada-xp-crs326-24g-2s.dts │ │ ├── armada-xp-crs326-24g-2s.dtsi │ │ ├── armada-xp-crs328-4c-20s-4s-bit.dts │ │ ├── armada-xp-crs328-4c-20s-4s.dts │ │ ├── armada-xp-crs328-4c-20s-4s.dtsi │ │ ├── armada-xp-db-dxbc2.dts │ │ ├── armada-xp-db-xc3-24g4xg.dts │ │ ├── armada-xp-db.dts │ │ ├── armada-xp-gp.dts │ │ ├── armada-xp-lenovo-ix4-300d.dts │ │ ├── armada-xp-linksys-mamba.dts │ │ ├── armada-xp-matrix.dts │ │ ├── armada-xp-mv78230.dtsi │ │ ├── armada-xp-mv78260.dtsi │ │ ├── armada-xp-mv78460.dtsi │ │ ├── armada-xp-netgear-rn2120.dts │ │ ├── armada-xp-openblocks-ax3-4.dts │ │ ├── armada-xp-synology-ds414.dts │ │ ├── armada-xp.dtsi │ │ ├── dove-cm-a510.dtsi │ │ ├── dove-cubox-es.dts │ │ ├── dove-cubox.dts │ │ ├── dove-d2plug.dts │ │ ├── dove-d3plug.dts │ │ ├── dove-dove-db.dts │ │ ├── dove-sbc-a510.dts │ │ ├── dove.dtsi │ │ ├── kirkwood-4i-edge-200.dts │ │ ├── kirkwood-6192.dtsi │ │ ├── kirkwood-6281.dtsi │ │ ├── kirkwood-6282.dtsi │ │ ├── kirkwood-98dx4122.dtsi │ │ ├── kirkwood-b3.dts │ │ ├── kirkwood-blackarmor-nas220.dts │ │ ├── kirkwood-c200-v1.dts │ │ ├── kirkwood-cloudbox.dts │ │ ├── kirkwood-d2net.dts │ │ ├── kirkwood-db-88f6281.dts │ │ ├── kirkwood-db-88f6282.dts │ │ ├── kirkwood-db.dtsi │ │ ├── kirkwood-dir665.dts │ │ ├── kirkwood-dns320.dts │ │ ├── kirkwood-dns325.dts │ │ ├── kirkwood-dnskw.dtsi │ │ ├── kirkwood-dockstar.dts │ │ ├── kirkwood-dreamplug.dts │ │ ├── kirkwood-ds109.dts │ │ ├── kirkwood-ds110jv10.dts │ │ ├── kirkwood-ds111.dts │ │ ├── kirkwood-ds112.dts │ │ ├── kirkwood-ds209.dts │ │ ├── kirkwood-ds210.dts │ │ ├── kirkwood-ds212.dts │ │ ├── kirkwood-ds212j.dts │ │ ├── kirkwood-ds409.dts │ │ ├── kirkwood-ds409slim.dts │ │ ├── kirkwood-ds411.dts │ │ ├── kirkwood-ds411j.dts │ │ ├── kirkwood-ds411slim.dts │ │ ├── kirkwood-goflexnet.dts │ │ ├── kirkwood-guruplug-server-plus.dts │ │ ├── kirkwood-ib62x0.dts │ │ ├── kirkwood-iconnect.dts │ │ ├── kirkwood-iomega_ix2_200.dts │ │ ├── kirkwood-is2.dts │ │ ├── kirkwood-km_common.dtsi │ │ ├── kirkwood-km_fixedeth.dts │ │ ├── kirkwood-km_kirkwood.dts │ │ ├── kirkwood-l-50.dts │ │ ├── kirkwood-laplug.dts │ │ ├── kirkwood-linkstation-6282.dtsi │ │ ├── kirkwood-linkstation-duo-6281.dtsi │ │ ├── kirkwood-linkstation-lsqvl.dts │ │ ├── kirkwood-linkstation-lsvl.dts │ │ ├── kirkwood-linkstation-lswsxl.dts │ │ ├── kirkwood-linkstation-lswvl.dts │ │ ├── kirkwood-linkstation-lswxl.dts │ │ ├── kirkwood-linkstation.dtsi │ │ ├── kirkwood-linksys-viper.dts │ │ ├── kirkwood-lschlv2.dts │ │ ├── kirkwood-lsxhl.dts │ │ ├── kirkwood-lsxl.dtsi │ │ ├── kirkwood-mplcec4.dts │ │ ├── kirkwood-mv88f6281gtw-ge.dts │ │ ├── kirkwood-nas2big.dts │ │ ├── kirkwood-net2big.dts │ │ ├── kirkwood-net5big.dts │ │ ├── kirkwood-netgear_readynas_duo_v2.dts │ │ ├── kirkwood-netgear_readynas_nv+_v2.dts │ │ ├── kirkwood-netxbig.dtsi │ │ ├── kirkwood-ns2-common.dtsi │ │ ├── kirkwood-ns2.dts │ │ ├── kirkwood-ns2lite.dts │ │ ├── kirkwood-ns2max.dts │ │ ├── kirkwood-ns2mini.dts │ │ ├── kirkwood-nsa310.dts │ │ ├── kirkwood-nsa310a.dts │ │ ├── kirkwood-nsa310s.dts │ │ ├── kirkwood-nsa320.dts │ │ ├── kirkwood-nsa325.dts │ │ ├── kirkwood-nsa3x0-common.dtsi │ │ ├── kirkwood-openblocks_a6.dts │ │ ├── kirkwood-openblocks_a7.dts │ │ ├── kirkwood-openrd-base.dts │ │ ├── kirkwood-openrd-client.dts │ │ ├── kirkwood-openrd-ultimate.dts │ │ ├── kirkwood-openrd.dtsi │ │ ├── kirkwood-pogo_e02.dts │ │ ├── kirkwood-pogoplug-series-4.dts │ │ ├── kirkwood-rd88f6192.dts │ │ ├── kirkwood-rd88f6281-a.dts │ │ ├── kirkwood-rd88f6281-z0.dts │ │ ├── kirkwood-rd88f6281.dtsi │ │ ├── kirkwood-rs212.dts │ │ ├── kirkwood-rs409.dts │ │ ├── kirkwood-rs411.dts │ │ ├── kirkwood-sheevaplug-common.dtsi │ │ ├── kirkwood-sheevaplug-esata.dts │ │ ├── kirkwood-sheevaplug.dts │ │ ├── kirkwood-synology.dtsi │ │ ├── kirkwood-t5325.dts │ │ ├── kirkwood-topkick.dts │ │ ├── kirkwood-ts219-6281.dts │ │ ├── kirkwood-ts219-6282.dts │ │ ├── kirkwood-ts219.dtsi │ │ ├── kirkwood-ts419-6281.dts │ │ ├── kirkwood-ts419-6282.dts │ │ ├── kirkwood-ts419.dtsi │ │ ├── kirkwood.dtsi │ │ ├── mmp2-brownstone.dts │ │ ├── mmp2-olpc-xo-1-75.dts │ │ ├── mmp2.dtsi │ │ ├── mmp3-dell-ariel.dts │ │ ├── mmp3.dtsi │ │ ├── mvebu-linkstation-fan.dtsi │ │ ├── mvebu-linkstation-gpio-simple.dtsi │ │ ├── orion5x-kuroboxpro.dts │ │ ├── orion5x-lacie-d2-network.dts │ │ ├── orion5x-lacie-ethernet-disk-mini-v2.dts │ │ ├── orion5x-linkstation-lschl.dts │ │ ├── orion5x-linkstation-lsgl.dts │ │ ├── orion5x-linkstation-lswtgl.dts │ │ ├── orion5x-linkstation.dtsi │ │ ├── orion5x-lswsgl.dts │ │ ├── orion5x-maxtor-shared-storage-2.dts │ │ ├── orion5x-mv88f5181.dtsi │ │ ├── orion5x-mv88f5182.dtsi │ │ ├── orion5x-netgear-wnr854t.dts │ │ ├── orion5x-rd88f5182-nas.dts │ │ ├── orion5x.dtsi │ │ ├── pxa168-aspenite.dts │ │ ├── pxa168.dtsi │ │ ├── pxa910-dkb.dts │ │ └── pxa910.dtsi │ ├── mediatek │ │ ├── mt2701-evb.dts │ │ ├── mt2701-pinfunc.h │ │ ├── mt2701.dtsi │ │ ├── mt6323.dtsi │ │ ├── mt6580-evbp1.dts │ │ ├── mt6580.dtsi │ │ ├── mt6582-prestigio-pmt5008-3g.dts │ │ ├── mt6582.dtsi │ │ ├── mt6589-aquaris5.dts │ │ ├── mt6589-fairphone-fp1.dts │ │ ├── mt6589.dtsi │ │ ├── mt6592-evb.dts │ │ ├── mt6592.dtsi │ │ ├── mt7623.dtsi │ │ ├── mt7623a-rfb-emmc.dts │ │ ├── mt7623a-rfb-nand.dts │ │ ├── mt7623a.dtsi │ │ ├── mt7623n-bananapi-bpi-r2.dts │ │ ├── mt7623n-rfb-emmc.dts │ │ ├── mt7623n.dtsi │ │ ├── mt7629-rfb.dts │ │ ├── mt7629.dtsi │ │ ├── mt8127-moose.dts │ │ ├── mt8127.dtsi │ │ ├── mt8135-evbp1.dts │ │ └── mt8135.dtsi │ ├── microchip │ │ ├── aks-cdu.dts │ │ ├── animeo_ip.dts │ │ ├── at91-ariag25.dts │ │ ├── at91-ariettag25.dts │ │ ├── at91-cosino.dtsi │ │ ├── at91-cosino_mega2560.dts │ │ ├── at91-dvk_som60.dts │ │ ├── at91-dvk_su60_somc.dtsi │ │ ├── at91-dvk_su60_somc_lcm.dtsi │ │ ├── at91-foxg20.dts │ │ ├── at91-gatwick.dts │ │ ├── at91-kizbox.dts │ │ ├── at91-kizbox2-2.dts │ │ ├── at91-kizbox2-common.dtsi │ │ ├── at91-kizbox3-hs.dts │ │ ├── at91-kizbox3_common.dtsi │ │ ├── at91-kizboxmini-base.dts │ │ ├── at91-kizboxmini-common.dtsi │ │ ├── at91-kizboxmini-mb.dts │ │ ├── at91-kizboxmini-rd.dts │ │ ├── at91-linea.dtsi │ │ ├── at91-lmu5000.dts │ │ ├── at91-natte.dtsi │ │ ├── at91-nattis-2-natte-2.dts │ │ ├── at91-q5xr5.dts │ │ ├── at91-qil_a9260.dts │ │ ├── at91-sam9_l9260.dts │ │ ├── at91-sam9x60_curiosity.dts │ │ ├── at91-sam9x60ek.dts │ │ ├── at91-sama5d27_som1.dtsi │ │ ├── at91-sama5d27_som1_ek.dts │ │ ├── at91-sama5d27_wlsom1.dtsi │ │ ├── at91-sama5d27_wlsom1_ek.dts │ │ ├── at91-sama5d29_curiosity.dts │ │ ├── at91-sama5d2_icp.dts │ │ ├── at91-sama5d2_ptc_ek.dts │ │ ├── at91-sama5d2_xplained.dts │ │ ├── at91-sama5d3_eds.dts │ │ ├── at91-sama5d3_ksz9477_evb.dts │ │ ├── at91-sama5d3_xplained.dts │ │ ├── at91-sama5d4_ma5d4.dtsi │ │ ├── at91-sama5d4_ma5d4evk.dts │ │ ├── at91-sama5d4_xplained.dts │ │ ├── at91-sama5d4ek.dts │ │ ├── at91-sama7g54_curiosity.dts │ │ ├── at91-sama7g5ek.dts │ │ ├── at91-smartkiz.dts │ │ ├── at91-som60.dtsi │ │ ├── at91-tse850-3.dts │ │ ├── at91-vinco.dts │ │ ├── at91-wb45n.dts │ │ ├── at91-wb45n.dtsi │ │ ├── at91-wb50n.dts │ │ ├── at91-wb50n.dtsi │ │ ├── at91rm9200.dtsi │ │ ├── at91rm9200_pqfp.dtsi │ │ ├── at91rm9200ek.dts │ │ ├── at91sam9260.dtsi │ │ ├── at91sam9260ek.dts │ │ ├── at91sam9261.dtsi │ │ ├── at91sam9261ek.dts │ │ ├── at91sam9263.dtsi │ │ ├── at91sam9263ek.dts │ │ ├── at91sam9g15.dtsi │ │ ├── at91sam9g15ek.dts │ │ ├── at91sam9g20.dtsi │ │ ├── at91sam9g20ek.dts │ │ ├── at91sam9g20ek_2mmc.dts │ │ ├── at91sam9g20ek_common.dtsi │ │ ├── at91sam9g25-gardena-smart-gateway.dts │ │ ├── at91sam9g25.dtsi │ │ ├── at91sam9g25ek.dts │ │ ├── at91sam9g35.dtsi │ │ ├── at91sam9g35ek.dts │ │ ├── at91sam9g45.dtsi │ │ ├── at91sam9m10g45ek.dts │ │ ├── at91sam9n12.dtsi │ │ ├── at91sam9n12ek.dts │ │ ├── at91sam9rl.dtsi │ │ ├── at91sam9rlek.dts │ │ ├── at91sam9x25.dtsi │ │ ├── at91sam9x25ek.dts │ │ ├── at91sam9x35.dtsi │ │ ├── at91sam9x35ek.dts │ │ ├── at91sam9x5.dtsi │ │ ├── at91sam9x5_can.dtsi │ │ ├── at91sam9x5_isi.dtsi │ │ ├── at91sam9x5_lcd.dtsi │ │ ├── at91sam9x5_macb0.dtsi │ │ ├── at91sam9x5_macb1.dtsi │ │ ├── at91sam9x5_usart3.dtsi │ │ ├── at91sam9x5cm.dtsi │ │ ├── at91sam9x5dm.dtsi │ │ ├── at91sam9x5ek.dtsi │ │ ├── at91sam9xe.dtsi │ │ ├── ethernut5.dts │ │ ├── evk-pro3.dts │ │ ├── ge863-pro3.dtsi │ │ ├── lan966x-kontron-kswitch-d10-mmt-6g-2gs.dts │ │ ├── lan966x-kontron-kswitch-d10-mmt-8g.dts │ │ ├── lan966x-kontron-kswitch-d10-mmt.dtsi │ │ ├── lan966x-pcb8290.dts │ │ ├── lan966x-pcb8291.dts │ │ ├── lan966x-pcb8309.dts │ │ ├── lan966x.dtsi │ │ ├── mpa1600.dts │ │ ├── pm9g45.dts │ │ ├── sam9x60.dtsi │ │ ├── sama5d2-pinfunc.h │ │ ├── sama5d2.dtsi │ │ ├── sama5d29.dtsi │ │ ├── sama5d3.dtsi │ │ ├── sama5d31.dtsi │ │ ├── sama5d31ek.dts │ │ ├── sama5d33.dtsi │ │ ├── sama5d33ek.dts │ │ ├── sama5d34.dtsi │ │ ├── sama5d34ek.dts │ │ ├── sama5d35.dtsi │ │ ├── sama5d35ek.dts │ │ ├── sama5d36.dtsi │ │ ├── sama5d36ek.dts │ │ ├── sama5d36ek_cmp.dts │ │ ├── sama5d3_can.dtsi │ │ ├── sama5d3_emac.dtsi │ │ ├── sama5d3_gmac.dtsi │ │ ├── sama5d3_lcd.dtsi │ │ ├── sama5d3_mci2.dtsi │ │ ├── sama5d3_tcb1.dtsi │ │ ├── sama5d3_uart.dtsi │ │ ├── sama5d3xcm.dtsi │ │ ├── sama5d3xcm_cmp.dtsi │ │ ├── sama5d3xdm.dtsi │ │ ├── sama5d3xmb.dtsi │ │ ├── sama5d3xmb_cmp.dtsi │ │ ├── sama5d3xmb_emac.dtsi │ │ ├── sama5d3xmb_gmac.dtsi │ │ ├── sama5d4.dtsi │ │ ├── sama7g5-pinfunc.h │ │ ├── sama7g5.dtsi │ │ ├── tny_a9260.dts │ │ ├── tny_a9260_common.dtsi │ │ ├── tny_a9263.dts │ │ ├── tny_a9g20.dts │ │ ├── usb_a9260.dts │ │ ├── usb_a9260_common.dtsi │ │ ├── usb_a9263.dts │ │ ├── usb_a9g20-dab-mmx.dtsi │ │ ├── usb_a9g20.dts │ │ ├── usb_a9g20_common.dtsi │ │ └── usb_a9g20_lpw.dts │ ├── moxa │ │ ├── moxart-uc7112lx.dts │ │ └── moxart.dtsi │ ├── nspire │ │ ├── nspire-classic.dtsi │ │ ├── nspire-clp.dts │ │ ├── nspire-cx.dts │ │ ├── nspire-tp.dts │ │ └── nspire.dtsi │ ├── nuvoton │ │ ├── nuvoton-common-npcm7xx.dtsi │ │ ├── nuvoton-npcm730-gbs.dts │ │ ├── nuvoton-npcm730-gsj-gpio.dtsi │ │ ├── nuvoton-npcm730-gsj.dts │ │ ├── nuvoton-npcm730-kudo.dts │ │ ├── nuvoton-npcm730.dtsi │ │ ├── nuvoton-npcm750-evb.dts │ │ ├── nuvoton-npcm750-pincfg-evb.dtsi │ │ ├── nuvoton-npcm750-runbmc-olympus-pincfg.dtsi │ │ ├── nuvoton-npcm750-runbmc-olympus.dts │ │ ├── nuvoton-npcm750.dtsi │ │ ├── nuvoton-wpcm450-supermicro-x9sci-ln4f.dts │ │ └── nuvoton-wpcm450.dtsi │ ├── nvidia │ │ ├── tegra114-asus-tf701t.dts │ │ ├── tegra114-dalmore.dts │ │ ├── tegra114-roth.dts │ │ ├── tegra114-tn7.dts │ │ ├── tegra114.dtsi │ │ ├── tegra124-apalis-emc.dtsi │ │ ├── tegra124-apalis-eval.dts │ │ ├── tegra124-apalis-v1.2-eval.dts │ │ ├── tegra124-apalis-v1.2.dtsi │ │ ├── tegra124-apalis.dtsi │ │ ├── tegra124-jetson-tk1-emc.dtsi │ │ ├── tegra124-jetson-tk1.dts │ │ ├── tegra124-nyan-big-emc.dtsi │ │ ├── tegra124-nyan-big-fhd.dts │ │ ├── tegra124-nyan-big.dts │ │ ├── tegra124-nyan-blaze-emc.dtsi │ │ ├── tegra124-nyan-blaze.dts │ │ ├── tegra124-nyan.dtsi │ │ ├── tegra124-peripherals-opp.dtsi │ │ ├── tegra124-venice2.dts │ │ ├── tegra124.dtsi │ │ ├── tegra20-acer-a500-picasso.dts │ │ ├── tegra20-asus-tf101.dts │ │ ├── tegra20-colibri-eval-v3.dts │ │ ├── tegra20-colibri-iris.dts │ │ ├── tegra20-colibri.dtsi │ │ ├── tegra20-cpu-opp-microvolt.dtsi │ │ ├── tegra20-cpu-opp.dtsi │ │ ├── tegra20-harmony.dts │ │ ├── tegra20-medcom-wide.dts │ │ ├── tegra20-paz00.dts │ │ ├── tegra20-peripherals-opp.dtsi │ │ ├── tegra20-plutux.dts │ │ ├── tegra20-seaboard.dts │ │ ├── tegra20-tamonten.dtsi │ │ ├── tegra20-tec.dts │ │ ├── tegra20-trimslice.dts │ │ ├── tegra20-ventana.dts │ │ ├── tegra20.dtsi │ │ ├── tegra30-apalis-eval.dts │ │ ├── tegra30-apalis-v1.1-eval.dts │ │ ├── tegra30-apalis-v1.1.dtsi │ │ ├── tegra30-apalis.dtsi │ │ ├── tegra30-asus-lvds-display.dtsi │ │ ├── tegra30-asus-nexus7-grouper-E1565.dts │ │ ├── tegra30-asus-nexus7-grouper-PM269.dts │ │ ├── tegra30-asus-nexus7-grouper-common.dtsi │ │ ├── tegra30-asus-nexus7-grouper-maxim-pmic.dtsi │ │ ├── tegra30-asus-nexus7-grouper-memory-timings.dtsi │ │ ├── tegra30-asus-nexus7-grouper-ti-pmic.dtsi │ │ ├── tegra30-asus-nexus7-grouper.dtsi │ │ ├── tegra30-asus-nexus7-tilapia-E1565.dts │ │ ├── tegra30-asus-nexus7-tilapia-memory-timings.dtsi │ │ ├── tegra30-asus-nexus7-tilapia.dtsi │ │ ├── tegra30-asus-tf201.dts │ │ ├── tegra30-asus-tf300t.dts │ │ ├── tegra30-asus-tf300tg.dts │ │ ├── tegra30-asus-tf700t.dts │ │ ├── tegra30-asus-transformer-common.dtsi │ │ ├── tegra30-beaver.dts │ │ ├── tegra30-cardhu-a02.dts │ │ ├── tegra30-cardhu-a04.dts │ │ ├── tegra30-cardhu.dtsi │ │ ├── tegra30-colibri-eval-v3.dts │ │ ├── tegra30-colibri.dtsi │ │ ├── tegra30-cpu-opp-microvolt.dtsi │ │ ├── tegra30-cpu-opp.dtsi │ │ ├── tegra30-lg-p880.dts │ │ ├── tegra30-lg-p895.dts │ │ ├── tegra30-lg-x3.dtsi │ │ ├── tegra30-ouya.dts │ │ ├── tegra30-pegatron-chagall.dts │ │ ├── tegra30-peripherals-opp.dtsi │ │ └── tegra30.dtsi │ ├── nxp │ │ ├── imx │ │ │ ├── e60k02.dtsi │ │ │ ├── e70k02.dtsi │ │ │ ├── imx1-ads.dts │ │ │ ├── imx1-apf9328.dts │ │ │ ├── imx1-pinfunc.h │ │ │ ├── imx1.dtsi │ │ │ ├── imx25-eukrea-cpuimx25.dtsi │ │ │ ├── imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts │ │ │ ├── imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts │ │ │ ├── imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts │ │ │ ├── imx25-eukrea-mbimxsd25-baseboard.dts │ │ │ ├── imx25-karo-tx25.dts │ │ │ ├── imx25-pdk.dts │ │ │ ├── imx25-pinfunc.h │ │ │ ├── imx25.dtsi │ │ │ ├── imx27-apf27.dts │ │ │ ├── imx27-apf27dev.dts │ │ │ ├── imx27-eukrea-cpuimx27.dtsi │ │ │ ├── imx27-eukrea-mbimxsd27-baseboard.dts │ │ │ ├── imx27-pdk.dts │ │ │ ├── imx27-phytec-phycard-s-rdk.dts │ │ │ ├── imx27-phytec-phycard-s-som.dtsi │ │ │ ├── imx27-phytec-phycore-rdk.dts │ │ │ ├── imx27-phytec-phycore-som.dtsi │ │ │ ├── imx27-pinfunc.h │ │ │ ├── imx27.dtsi │ │ │ ├── imx31-bug.dts │ │ │ ├── imx31-lite.dts │ │ │ ├── imx31.dtsi │ │ │ ├── imx35-eukrea-cpuimx35.dtsi │ │ │ ├── imx35-eukrea-mbimxsd35-baseboard.dts │ │ │ ├── imx35-pdk.dts │ │ │ ├── imx35-pinfunc.h │ │ │ ├── imx35.dtsi │ │ │ ├── imx50-evk.dts │ │ │ ├── imx50-kobo-aura.dts │ │ │ ├── imx50-pinfunc.h │ │ │ ├── imx50.dtsi │ │ │ ├── imx51-apf51.dts │ │ │ ├── imx51-apf51dev.dts │ │ │ ├── imx51-babbage.dts │ │ │ ├── imx51-digi-connectcore-jsk.dts │ │ │ ├── imx51-digi-connectcore-som.dtsi │ │ │ ├── imx51-eukrea-cpuimx51.dtsi │ │ │ ├── imx51-eukrea-mbimxsd51-baseboard.dts │ │ │ ├── imx51-pinfunc.h │ │ │ ├── imx51-ts4800.dts │ │ │ ├── imx51-zii-rdu1.dts │ │ │ ├── imx51-zii-scu2-mezz.dts │ │ │ ├── imx51-zii-scu3-esb.dts │ │ │ ├── imx51.dtsi │ │ │ ├── imx53-ard.dts │ │ │ ├── imx53-cx9020.dts │ │ │ ├── imx53-kp-ddc.dts │ │ │ ├── imx53-kp-hsc.dts │ │ │ ├── imx53-kp.dtsi │ │ │ ├── imx53-m53.dtsi │ │ │ ├── imx53-m53evk.dts │ │ │ ├── imx53-m53menlo.dts │ │ │ ├── imx53-mba53.dts │ │ │ ├── imx53-pinfunc.h │ │ │ ├── imx53-ppd.dts │ │ │ ├── imx53-qsb-common.dtsi │ │ │ ├── imx53-qsb-hdmi.dtso │ │ │ ├── imx53-qsb.dts │ │ │ ├── imx53-qsrb.dts │ │ │ ├── imx53-sk-imx53-atm0700d4-lvds.dts │ │ │ ├── imx53-sk-imx53-atm0700d4-rgb.dts │ │ │ ├── imx53-sk-imx53-atm0700d4.dtsi │ │ │ ├── imx53-sk-imx53.dts │ │ │ ├── imx53-smd.dts │ │ │ ├── imx53-tqma53.dtsi │ │ │ ├── imx53-tx53-x03x.dts │ │ │ ├── imx53-tx53-x13x.dts │ │ │ ├── imx53-tx53.dtsi │ │ │ ├── imx53-usbarmory.dts │ │ │ ├── imx53-voipac-bsb.dts │ │ │ ├── imx53-voipac-dmm-668.dtsi │ │ │ ├── imx53.dtsi │ │ │ ├── imx6-logicpd-baseboard.dtsi │ │ │ ├── imx6-logicpd-som.dtsi │ │ │ ├── imx6dl-alti6p.dts │ │ │ ├── imx6dl-apf6dev.dts │ │ │ ├── imx6dl-aristainetos2_4.dts │ │ │ ├── imx6dl-aristainetos2_7.dts │ │ │ ├── imx6dl-aristainetos_4.dts │ │ │ ├── imx6dl-aristainetos_7.dts │ │ │ ├── imx6dl-b105pv2.dts │ │ │ ├── imx6dl-b105v2.dts │ │ │ ├── imx6dl-b125pv2.dts │ │ │ ├── imx6dl-b125v2.dts │ │ │ ├── imx6dl-b155v2.dts │ │ │ ├── imx6dl-b1x5pv2.dtsi │ │ │ ├── imx6dl-b1x5v2.dtsi │ │ │ ├── imx6dl-colibri-aster.dts │ │ │ ├── imx6dl-colibri-eval-v3.dts │ │ │ ├── imx6dl-colibri-iris-v2.dts │ │ │ ├── imx6dl-colibri-iris.dts │ │ │ ├── imx6dl-cubox-i-emmc-som-v15.dts │ │ │ ├── imx6dl-cubox-i-som-v15.dts │ │ │ ├── imx6dl-cubox-i.dts │ │ │ ├── imx6dl-dfi-fs700-m60.dts │ │ │ ├── imx6dl-dhcom-picoitx.dts │ │ │ ├── imx6dl-eckelmann-ci4x10.dts │ │ │ ├── imx6dl-emcon-avari.dts │ │ │ ├── imx6dl-gw51xx.dts │ │ │ ├── imx6dl-gw52xx.dts │ │ │ ├── imx6dl-gw53xx.dts │ │ │ ├── imx6dl-gw54xx.dts │ │ │ ├── imx6dl-gw551x.dts │ │ │ ├── imx6dl-gw552x.dts │ │ │ ├── imx6dl-gw553x.dts │ │ │ ├── imx6dl-gw560x.dts │ │ │ ├── imx6dl-gw5903.dts │ │ │ ├── imx6dl-gw5904.dts │ │ │ ├── imx6dl-gw5907.dts │ │ │ ├── imx6dl-gw5910.dts │ │ │ ├── imx6dl-gw5912.dts │ │ │ ├── imx6dl-gw5913.dts │ │ │ ├── imx6dl-hummingboard-emmc-som-v15.dts │ │ │ ├── imx6dl-hummingboard-som-v15.dts │ │ │ ├── imx6dl-hummingboard.dts │ │ │ ├── imx6dl-hummingboard2-emmc-som-v15.dts │ │ │ ├── imx6dl-hummingboard2-som-v15.dts │ │ │ ├── imx6dl-hummingboard2.dts │ │ │ ├── imx6dl-icore-mipi.dts │ │ │ ├── imx6dl-icore-rqs.dts │ │ │ ├── imx6dl-icore.dts │ │ │ ├── imx6dl-kontron-samx6i.dtsi │ │ │ ├── imx6dl-lanmcu.dts │ │ │ ├── imx6dl-mamoj.dts │ │ │ ├── imx6dl-mba6.dtsi │ │ │ ├── imx6dl-mba6a.dts │ │ │ ├── imx6dl-mba6b.dts │ │ │ ├── imx6dl-nit6xlite.dts │ │ │ ├── imx6dl-nitrogen6x.dts │ │ │ ├── imx6dl-phytec-mira-rdk-nand.dts │ │ │ ├── imx6dl-phytec-pbab01.dts │ │ │ ├── imx6dl-phytec-pfla02.dtsi │ │ │ ├── imx6dl-pico-dwarf.dts │ │ │ ├── imx6dl-pico-hobbit.dts │ │ │ ├── imx6dl-pico-nymph.dts │ │ │ ├── imx6dl-pico-pi.dts │ │ │ ├── imx6dl-pinfunc.h │ │ │ ├── imx6dl-plybas.dts │ │ │ ├── imx6dl-plym2m.dts │ │ │ ├── imx6dl-prtmvt.dts │ │ │ ├── imx6dl-prtrvt.dts │ │ │ ├── imx6dl-prtvt7.dts │ │ │ ├── imx6dl-qmx6.dtsi │ │ │ ├── imx6dl-rex-basic.dts │ │ │ ├── imx6dl-riotboard.dts │ │ │ ├── imx6dl-sabreauto.dts │ │ │ ├── imx6dl-sabrelite.dts │ │ │ ├── imx6dl-sabresd.dts │ │ │ ├── imx6dl-savageboard.dts │ │ │ ├── imx6dl-sielaff.dts │ │ │ ├── imx6dl-skov-revc-lt2.dts │ │ │ ├── imx6dl-skov-revc-lt6.dts │ │ │ ├── imx6dl-solidsense.dts │ │ │ ├── imx6dl-tqma6a.dtsi │ │ │ ├── imx6dl-tqma6b.dtsi │ │ │ ├── imx6dl-ts4900.dts │ │ │ ├── imx6dl-ts7970.dts │ │ │ ├── imx6dl-tx6dl-comtft.dts │ │ │ ├── imx6dl-tx6s-8034-mb7.dts │ │ │ ├── imx6dl-tx6s-8034.dts │ │ │ ├── imx6dl-tx6s-8035-mb7.dts │ │ │ ├── imx6dl-tx6s-8035.dts │ │ │ ├── imx6dl-tx6u-801x.dts │ │ │ ├── imx6dl-tx6u-8033-mb7.dts │ │ │ ├── imx6dl-tx6u-8033.dts │ │ │ ├── imx6dl-tx6u-80xx-mb7.dts │ │ │ ├── imx6dl-tx6u-811x.dts │ │ │ ├── imx6dl-tx6u-81xx-mb7.dts │ │ │ ├── imx6dl-udoo.dts │ │ │ ├── imx6dl-victgo.dts │ │ │ ├── imx6dl-vicut1.dts │ │ │ ├── imx6dl-wandboard-revb1.dts │ │ │ ├── imx6dl-wandboard-revd1.dts │ │ │ ├── imx6dl-wandboard.dts │ │ │ ├── imx6dl-yapp4-common.dtsi │ │ │ ├── imx6dl-yapp4-draco.dts │ │ │ ├── imx6dl-yapp4-hydra.dts │ │ │ ├── imx6dl-yapp4-lynx.dts │ │ │ ├── imx6dl-yapp4-orion.dts │ │ │ ├── imx6dl-yapp4-phoenix.dts │ │ │ ├── imx6dl-yapp4-ursa.dts │ │ │ ├── imx6dl-yapp43-common.dtsi │ │ │ ├── imx6dl.dtsi │ │ │ ├── imx6q-apalis-eval-v1.2.dts │ │ │ ├── imx6q-apalis-eval.dts │ │ │ ├── imx6q-apalis-eval.dtsi │ │ │ ├── imx6q-apalis-ixora-v1.1.dts │ │ │ ├── imx6q-apalis-ixora-v1.2.dts │ │ │ ├── imx6q-apalis-ixora.dts │ │ │ ├── imx6q-apf6dev.dts │ │ │ ├── imx6q-arm2.dts │ │ │ ├── imx6q-b450v3.dts │ │ │ ├── imx6q-b650v3.dts │ │ │ ├── imx6q-b850v3.dts │ │ │ ├── imx6q-ba16.dtsi │ │ │ ├── imx6q-bosch-acc.dts │ │ │ ├── imx6q-bx50v3.dtsi │ │ │ ├── imx6q-cm-fx6.dts │ │ │ ├── imx6q-cubox-i-emmc-som-v15.dts │ │ │ ├── imx6q-cubox-i-som-v15.dts │ │ │ ├── imx6q-cubox-i.dts │ │ │ ├── imx6q-dfi-fs700-m60.dts │ │ │ ├── imx6q-dhcom-pdk2.dts │ │ │ ├── imx6q-display5-tianma-tm070-1280x768.dts │ │ │ ├── imx6q-display5.dtsi │ │ │ ├── imx6q-dmo-edmqmx6.dts │ │ │ ├── imx6q-dms-ba16.dts │ │ │ ├── imx6q-ds.dts │ │ │ ├── imx6q-emcon-avari.dts │ │ │ ├── imx6q-evi.dts │ │ │ ├── imx6q-gk802.dts │ │ │ ├── imx6q-gw51xx.dts │ │ │ ├── imx6q-gw52xx.dts │ │ │ ├── imx6q-gw53xx.dts │ │ │ ├── imx6q-gw5400-a.dts │ │ │ ├── imx6q-gw54xx.dts │ │ │ ├── imx6q-gw551x.dts │ │ │ ├── imx6q-gw552x.dts │ │ │ ├── imx6q-gw553x.dts │ │ │ ├── imx6q-gw560x.dts │ │ │ ├── imx6q-gw5903.dts │ │ │ ├── imx6q-gw5904.dts │ │ │ ├── imx6q-gw5907.dts │ │ │ ├── imx6q-gw5910.dts │ │ │ ├── imx6q-gw5912.dts │ │ │ ├── imx6q-gw5913.dts │ │ │ ├── imx6q-h100.dts │ │ │ ├── imx6q-hummingboard-emmc-som-v15.dts │ │ │ ├── imx6q-hummingboard-som-v15.dts │ │ │ ├── imx6q-hummingboard.dts │ │ │ ├── imx6q-hummingboard2-emmc-som-v15.dts │ │ │ ├── imx6q-hummingboard2-som-v15.dts │ │ │ ├── imx6q-hummingboard2.dts │ │ │ ├── imx6q-icore-mipi.dts │ │ │ ├── imx6q-icore-ofcap10.dts │ │ │ ├── imx6q-icore-ofcap12.dts │ │ │ ├── imx6q-icore-rqs.dts │ │ │ ├── imx6q-icore.dts │ │ │ ├── imx6q-kontron-samx6i.dtsi │ │ │ ├── imx6q-kp-tpc.dts │ │ │ ├── imx6q-kp.dtsi │ │ │ ├── imx6q-logicpd.dts │ │ │ ├── imx6q-marsboard.dts │ │ │ ├── imx6q-mba6.dtsi │ │ │ ├── imx6q-mba6a.dts │ │ │ ├── imx6q-mba6b.dts │ │ │ ├── imx6q-mccmon6.dts │ │ │ ├── imx6q-nitrogen6_max.dts │ │ │ ├── imx6q-nitrogen6_som2.dts │ │ │ ├── imx6q-nitrogen6x.dts │ │ │ ├── imx6q-novena.dts │ │ │ ├── imx6q-phytec-mira-rdk-emmc.dts │ │ │ ├── imx6q-phytec-mira-rdk-nand.dts │ │ │ ├── imx6q-phytec-pbab01.dts │ │ │ ├── imx6q-phytec-pfla02.dtsi │ │ │ ├── imx6q-pico-dwarf.dts │ │ │ ├── imx6q-pico-hobbit.dts │ │ │ ├── imx6q-pico-nymph.dts │ │ │ ├── imx6q-pico-pi.dts │ │ │ ├── imx6q-pinfunc.h │ │ │ ├── imx6q-pistachio.dts │ │ │ ├── imx6q-prti6q.dts │ │ │ ├── imx6q-prtwd2.dts │ │ │ ├── imx6q-rex-pro.dts │ │ │ ├── imx6q-sabreauto.dts │ │ │ ├── imx6q-sabrelite.dts │ │ │ ├── imx6q-sabresd.dts │ │ │ ├── imx6q-savageboard.dts │ │ │ ├── imx6q-sbc6x.dts │ │ │ ├── imx6q-skov-revc-lt2.dts │ │ │ ├── imx6q-skov-revc-lt6.dts │ │ │ ├── imx6q-skov-reve-mi1010ait-1cp1.dts │ │ │ ├── imx6q-solidsense.dts │ │ │ ├── imx6q-tbs2910.dts │ │ │ ├── imx6q-tqma6a.dtsi │ │ │ ├── imx6q-tqma6b.dtsi │ │ │ ├── imx6q-ts4900.dts │ │ │ ├── imx6q-ts7970.dts │ │ │ ├── imx6q-tx6q-1010-comtft.dts │ │ │ ├── imx6q-tx6q-1010.dts │ │ │ ├── imx6q-tx6q-1020-comtft.dts │ │ │ ├── imx6q-tx6q-1020.dts │ │ │ ├── imx6q-tx6q-1036-mb7.dts │ │ │ ├── imx6q-tx6q-1036.dts │ │ │ ├── imx6q-tx6q-10x0-mb7.dts │ │ │ ├── imx6q-tx6q-1110.dts │ │ │ ├── imx6q-tx6q-11x0-mb7.dts │ │ │ ├── imx6q-udoo.dts │ │ │ ├── imx6q-utilite-pro.dts │ │ │ ├── imx6q-var-dt6customboard.dts │ │ │ ├── imx6q-var-mx6customboard.dts │ │ │ ├── imx6q-vicut1.dts │ │ │ ├── imx6q-wandboard-revb1.dts │ │ │ ├── imx6q-wandboard-revd1.dts │ │ │ ├── imx6q-wandboard.dts │ │ │ ├── imx6q-yapp4-crux.dts │ │ │ ├── imx6q-yapp4-pegasus.dts │ │ │ ├── imx6q-zii-rdu2.dts │ │ │ ├── imx6q.dtsi │ │ │ ├── imx6qdl-apalis.dtsi │ │ │ ├── imx6qdl-apf6.dtsi │ │ │ ├── imx6qdl-apf6dev.dtsi │ │ │ ├── imx6qdl-aristainetos.dtsi │ │ │ ├── imx6qdl-aristainetos2.dtsi │ │ │ ├── imx6qdl-colibri.dtsi │ │ │ ├── imx6qdl-cubox-i.dtsi │ │ │ ├── imx6qdl-dfi-fs700-m60.dtsi │ │ │ ├── imx6qdl-dhcom-drc02.dtsi │ │ │ ├── imx6qdl-dhcom-pdk2.dtsi │ │ │ ├── imx6qdl-dhcom-picoitx.dtsi │ │ │ ├── imx6qdl-dhcom-som.dtsi │ │ │ ├── imx6qdl-ds.dtsi │ │ │ ├── imx6qdl-emcon-avari.dtsi │ │ │ ├── imx6qdl-emcon.dtsi │ │ │ ├── imx6qdl-gw51xx.dtsi │ │ │ ├── imx6qdl-gw52xx.dtsi │ │ │ ├── imx6qdl-gw53xx.dtsi │ │ │ ├── imx6qdl-gw54xx.dtsi │ │ │ ├── imx6qdl-gw551x.dtsi │ │ │ ├── imx6qdl-gw552x.dtsi │ │ │ ├── imx6qdl-gw553x.dtsi │ │ │ ├── imx6qdl-gw560x.dtsi │ │ │ ├── imx6qdl-gw5903.dtsi │ │ │ ├── imx6qdl-gw5904.dtsi │ │ │ ├── imx6qdl-gw5907.dtsi │ │ │ ├── imx6qdl-gw5910.dtsi │ │ │ ├── imx6qdl-gw5912.dtsi │ │ │ ├── imx6qdl-gw5913.dtsi │ │ │ ├── imx6qdl-hummingboard.dtsi │ │ │ ├── imx6qdl-hummingboard2-emmc.dtsi │ │ │ ├── imx6qdl-hummingboard2.dtsi │ │ │ ├── imx6qdl-icore-1.5.dtsi │ │ │ ├── imx6qdl-icore-rqs.dtsi │ │ │ ├── imx6qdl-icore.dtsi │ │ │ ├── imx6qdl-kontron-samx6i.dtsi │ │ │ ├── imx6qdl-mba6.dtsi │ │ │ ├── imx6qdl-mba6a.dtsi │ │ │ ├── imx6qdl-mba6b.dtsi │ │ │ ├── imx6qdl-nit6xlite.dtsi │ │ │ ├── imx6qdl-nitrogen6_max.dtsi │ │ │ ├── imx6qdl-nitrogen6_som2.dtsi │ │ │ ├── imx6qdl-nitrogen6x.dtsi │ │ │ ├── imx6qdl-phytec-mira-peb-av-02.dtsi │ │ │ ├── imx6qdl-phytec-mira-peb-eval-01.dtsi │ │ │ ├── imx6qdl-phytec-mira-peb-wlbt-05.dtsi │ │ │ ├── imx6qdl-phytec-mira.dtsi │ │ │ ├── imx6qdl-phytec-pbab01.dtsi │ │ │ ├── imx6qdl-phytec-pfla02.dtsi │ │ │ ├── imx6qdl-phytec-phycore-som.dtsi │ │ │ ├── imx6qdl-pico-dwarf.dtsi │ │ │ ├── imx6qdl-pico-hobbit.dtsi │ │ │ ├── imx6qdl-pico-nymph.dtsi │ │ │ ├── imx6qdl-pico-pi.dtsi │ │ │ ├── imx6qdl-pico.dtsi │ │ │ ├── imx6qdl-prti6q.dtsi │ │ │ ├── imx6qdl-rex.dtsi │ │ │ ├── imx6qdl-sabreauto.dtsi │ │ │ ├── imx6qdl-sabrelite.dtsi │ │ │ ├── imx6qdl-sabresd.dtsi │ │ │ ├── imx6qdl-savageboard.dtsi │ │ │ ├── imx6qdl-skov-cpu-revc.dtsi │ │ │ ├── imx6qdl-skov-cpu.dtsi │ │ │ ├── imx6qdl-skov-revc-lt2.dtsi │ │ │ ├── imx6qdl-solidsense.dtsi │ │ │ ├── imx6qdl-sr-som-brcm.dtsi │ │ │ ├── imx6qdl-sr-som-emmc.dtsi │ │ │ ├── imx6qdl-sr-som-ti.dtsi │ │ │ ├── imx6qdl-sr-som.dtsi │ │ │ ├── imx6qdl-tqma6.dtsi │ │ │ ├── imx6qdl-tqma6a.dtsi │ │ │ ├── imx6qdl-tqma6b.dtsi │ │ │ ├── imx6qdl-ts4900.dtsi │ │ │ ├── imx6qdl-ts7970.dtsi │ │ │ ├── imx6qdl-tx6-lcd.dtsi │ │ │ ├── imx6qdl-tx6-lvds.dtsi │ │ │ ├── imx6qdl-tx6-mb7.dtsi │ │ │ ├── imx6qdl-tx6.dtsi │ │ │ ├── imx6qdl-udoo.dtsi │ │ │ ├── imx6qdl-var-dart.dtsi │ │ │ ├── imx6qdl-var-som.dtsi │ │ │ ├── imx6qdl-vicut1-12inch.dtsi │ │ │ ├── imx6qdl-vicut1.dtsi │ │ │ ├── imx6qdl-wandboard-revb1.dtsi │ │ │ ├── imx6qdl-wandboard-revc1.dtsi │ │ │ ├── imx6qdl-wandboard-revd1.dtsi │ │ │ ├── imx6qdl-wandboard.dtsi │ │ │ ├── imx6qdl-zii-rdu2.dtsi │ │ │ ├── imx6qdl.dtsi │ │ │ ├── imx6qp-mba6b.dts │ │ │ ├── imx6qp-nitrogen6_max.dts │ │ │ ├── imx6qp-nitrogen6_som2.dts │ │ │ ├── imx6qp-phytec-mira-rdk-nand.dts │ │ │ ├── imx6qp-prtwd3.dts │ │ │ ├── imx6qp-sabreauto.dts │ │ │ ├── imx6qp-sabresd.dts │ │ │ ├── imx6qp-tqma6b.dtsi │ │ │ ├── imx6qp-tx6qp-8037-mb7.dts │ │ │ ├── imx6qp-tx6qp-8037.dts │ │ │ ├── imx6qp-tx6qp-8137-mb7.dts │ │ │ ├── imx6qp-tx6qp-8137.dts │ │ │ ├── imx6qp-vicutp.dts │ │ │ ├── imx6qp-wandboard-revd1.dts │ │ │ ├── imx6qp-yapp4-crux-plus.dts │ │ │ ├── imx6qp-yapp4-pegasus-plus.dts │ │ │ ├── imx6qp-zii-rdu2.dts │ │ │ ├── imx6qp.dtsi │ │ │ ├── imx6s-dhcom-drc02.dts │ │ │ ├── imx6sl-evk.dts │ │ │ ├── imx6sl-kobo-aura2.dts │ │ │ ├── imx6sl-pinfunc.h │ │ │ ├── imx6sl-tolino-shine2hd.dts │ │ │ ├── imx6sl-tolino-shine3.dts │ │ │ ├── imx6sl-tolino-vision.dts │ │ │ ├── imx6sl-tolino-vision5.dts │ │ │ ├── imx6sl-warp.dts │ │ │ ├── imx6sl.dtsi │ │ │ ├── imx6sll-evk.dts │ │ │ ├── imx6sll-kobo-clarahd.dts │ │ │ ├── imx6sll-kobo-librah2o.dts │ │ │ ├── imx6sll-pinfunc.h │ │ │ ├── imx6sll.dtsi │ │ │ ├── imx6sx-nitrogen6sx.dts │ │ │ ├── imx6sx-pinfunc.h │ │ │ ├── imx6sx-sabreauto.dts │ │ │ ├── imx6sx-sdb-mqs.dts │ │ │ ├── imx6sx-sdb-reva.dts │ │ │ ├── imx6sx-sdb-sai.dts │ │ │ ├── imx6sx-sdb.dts │ │ │ ├── imx6sx-sdb.dtsi │ │ │ ├── imx6sx-softing-vining-2000.dts │ │ │ ├── imx6sx-udoo-neo-basic.dts │ │ │ ├── imx6sx-udoo-neo-extended.dts │ │ │ ├── imx6sx-udoo-neo-full.dts │ │ │ ├── imx6sx-udoo-neo.dtsi │ │ │ ├── imx6sx.dtsi │ │ │ ├── imx6ul-14x14-evk.dts │ │ │ ├── imx6ul-14x14-evk.dtsi │ │ │ ├── imx6ul-ccimx6ulsbcexpress.dts │ │ │ ├── imx6ul-ccimx6ulsbcpro.dts │ │ │ ├── imx6ul-ccimx6ulsom.dtsi │ │ │ ├── imx6ul-geam.dts │ │ │ ├── imx6ul-imx6ull-opos6ul.dtsi │ │ │ ├── imx6ul-imx6ull-opos6uldev.dtsi │ │ │ ├── imx6ul-isiot-emmc.dts │ │ │ ├── imx6ul-isiot-nand.dts │ │ │ ├── imx6ul-isiot.dtsi │ │ │ ├── imx6ul-kontron-bl-43.dts │ │ │ ├── imx6ul-kontron-bl-common.dtsi │ │ │ ├── imx6ul-kontron-bl.dts │ │ │ ├── imx6ul-kontron-sl-common.dtsi │ │ │ ├── imx6ul-kontron-sl.dtsi │ │ │ ├── imx6ul-liteboard.dts │ │ │ ├── imx6ul-litesom.dtsi │ │ │ ├── imx6ul-opos6ul.dtsi │ │ │ ├── imx6ul-opos6uldev.dts │ │ │ ├── imx6ul-phytec-phycore-som.dtsi │ │ │ ├── imx6ul-phytec-segin-ff-rdk-emmc.dts │ │ │ ├── imx6ul-phytec-segin-ff-rdk-nand.dts │ │ │ ├── imx6ul-phytec-segin-peb-av-02.dtsi │ │ │ ├── imx6ul-phytec-segin-peb-eval-01.dtsi │ │ │ ├── imx6ul-phytec-segin-peb-wlbt-05.dtsi │ │ │ ├── imx6ul-phytec-segin.dtsi │ │ │ ├── imx6ul-pico-dwarf.dts │ │ │ ├── imx6ul-pico-hobbit.dts │ │ │ ├── imx6ul-pico-pi.dts │ │ │ ├── imx6ul-pico.dtsi │ │ │ ├── imx6ul-pinfunc.h │ │ │ ├── imx6ul-prti6g.dts │ │ │ ├── imx6ul-tqma6ul-common.dtsi │ │ │ ├── imx6ul-tqma6ul1-mba6ulx.dts │ │ │ ├── imx6ul-tqma6ul1.dtsi │ │ │ ├── imx6ul-tqma6ul2-mba6ulx.dts │ │ │ ├── imx6ul-tqma6ul2.dtsi │ │ │ ├── imx6ul-tqma6ul2l-mba6ulx.dts │ │ │ ├── imx6ul-tqma6ul2l.dtsi │ │ │ ├── imx6ul-tqma6ulx-common.dtsi │ │ │ ├── imx6ul-tqma6ulxl-common.dtsi │ │ │ ├── imx6ul-tx6ul-0010.dts │ │ │ ├── imx6ul-tx6ul-0011.dts │ │ │ ├── imx6ul-tx6ul-mainboard.dts │ │ │ ├── imx6ul-tx6ul.dtsi │ │ │ ├── imx6ul.dtsi │ │ │ ├── imx6ull-14x14-evk.dts │ │ │ ├── imx6ull-colibri-aster.dts │ │ │ ├── imx6ull-colibri-aster.dtsi │ │ │ ├── imx6ull-colibri-emmc-aster.dts │ │ │ ├── imx6ull-colibri-emmc-eval-v3.dts │ │ │ ├── imx6ull-colibri-emmc-iris-v2.dts │ │ │ ├── imx6ull-colibri-emmc-iris.dts │ │ │ ├── imx6ull-colibri-emmc-nonwifi.dtsi │ │ │ ├── imx6ull-colibri-eval-v3.dts │ │ │ ├── imx6ull-colibri-eval-v3.dtsi │ │ │ ├── imx6ull-colibri-iris-v2.dts │ │ │ ├── imx6ull-colibri-iris-v2.dtsi │ │ │ ├── imx6ull-colibri-iris.dts │ │ │ ├── imx6ull-colibri-iris.dtsi │ │ │ ├── imx6ull-colibri-nonwifi.dtsi │ │ │ ├── imx6ull-colibri-wifi-aster.dts │ │ │ ├── imx6ull-colibri-wifi-eval-v3.dts │ │ │ ├── imx6ull-colibri-wifi-iris-v2.dts │ │ │ ├── imx6ull-colibri-wifi-iris.dts │ │ │ ├── imx6ull-colibri-wifi.dtsi │ │ │ ├── imx6ull-colibri.dtsi │ │ │ ├── imx6ull-dhcom-drc02.dts │ │ │ ├── imx6ull-dhcom-pdk2.dts │ │ │ ├── imx6ull-dhcom-picoitx.dts │ │ │ ├── imx6ull-dhcom-som-cfg-sdcard.dtsi │ │ │ ├── imx6ull-dhcom-som.dtsi │ │ │ ├── imx6ull-dhcor-maveo-box.dts │ │ │ ├── imx6ull-dhcor-som.dtsi │ │ │ ├── imx6ull-jozacp.dts │ │ │ ├── imx6ull-kontron-bl.dts │ │ │ ├── imx6ull-kontron-sl.dtsi │ │ │ ├── imx6ull-myir-mys-6ulx-eval.dts │ │ │ ├── imx6ull-myir-mys-6ulx.dtsi │ │ │ ├── imx6ull-opos6ul.dtsi │ │ │ ├── imx6ull-opos6uldev.dts │ │ │ ├── imx6ull-phytec-phycore-som.dtsi │ │ │ ├── imx6ull-phytec-segin-ff-rdk-emmc.dts │ │ │ ├── imx6ull-phytec-segin-ff-rdk-nand.dts │ │ │ ├── imx6ull-phytec-segin-lc-rdk-nand.dts │ │ │ ├── imx6ull-phytec-segin-peb-av-02.dtsi │ │ │ ├── imx6ull-phytec-segin-peb-eval-01.dtsi │ │ │ ├── imx6ull-phytec-segin-peb-wlbt-05.dtsi │ │ │ ├── imx6ull-phytec-segin.dtsi │ │ │ ├── imx6ull-phytec-tauri-emmc.dts │ │ │ ├── imx6ull-phytec-tauri-nand.dts │ │ │ ├── imx6ull-phytec-tauri.dtsi │ │ │ ├── imx6ull-pinfunc-snvs.h │ │ │ ├── imx6ull-pinfunc.h │ │ │ ├── imx6ull-tarragon-common.dtsi │ │ │ ├── imx6ull-tarragon-master.dts │ │ │ ├── imx6ull-tarragon-micro.dts │ │ │ ├── imx6ull-tarragon-slave.dts │ │ │ ├── imx6ull-tarragon-slavext.dts │ │ │ ├── imx6ull-tqma6ull2-mba6ulx.dts │ │ │ ├── imx6ull-tqma6ull2.dtsi │ │ │ ├── imx6ull-tqma6ull2l-mba6ulx.dts │ │ │ ├── imx6ull-tqma6ull2l.dtsi │ │ │ ├── imx6ull.dtsi │ │ │ ├── imx6ulz-14x14-evk.dts │ │ │ ├── imx6ulz-bsh-smm-m2.dts │ │ │ ├── imx6ulz.dtsi │ │ │ ├── imx7-colibri-aster.dtsi │ │ │ ├── imx7-colibri-eval-v3.dtsi │ │ │ ├── imx7-colibri-iris-v2.dtsi │ │ │ ├── imx7-colibri-iris.dtsi │ │ │ ├── imx7-colibri.dtsi │ │ │ ├── imx7-mba7.dtsi │ │ │ ├── imx7-tqma7.dtsi │ │ │ ├── imx7d-cl-som-imx7.dts │ │ │ ├── imx7d-colibri-aster.dts │ │ │ ├── imx7d-colibri-emmc-aster.dts │ │ │ ├── imx7d-colibri-emmc-eval-v3.dts │ │ │ ├── imx7d-colibri-emmc-iris-v2.dts │ │ │ ├── imx7d-colibri-emmc-iris.dts │ │ │ ├── imx7d-colibri-emmc.dtsi │ │ │ ├── imx7d-colibri-eval-v3.dts │ │ │ ├── imx7d-colibri-iris-v2.dts │ │ │ ├── imx7d-colibri-iris.dts │ │ │ ├── imx7d-colibri.dtsi │ │ │ ├── imx7d-flex-concentrator-mfg.dts │ │ │ ├── imx7d-flex-concentrator.dts │ │ │ ├── imx7d-mba7.dts │ │ │ ├── imx7d-meerkat96.dts │ │ │ ├── imx7d-nitrogen7.dts │ │ │ ├── imx7d-pico-dwarf.dts │ │ │ ├── imx7d-pico-hobbit.dts │ │ │ ├── imx7d-pico-nymph.dts │ │ │ ├── imx7d-pico-pi.dts │ │ │ ├── imx7d-pico.dtsi │ │ │ ├── imx7d-pinfunc.h │ │ │ ├── imx7d-remarkable2.dts │ │ │ ├── imx7d-sbc-imx7.dts │ │ │ ├── imx7d-sdb-reva.dts │ │ │ ├── imx7d-sdb-sht11.dts │ │ │ ├── imx7d-sdb.dts │ │ │ ├── imx7d-smegw01.dts │ │ │ ├── imx7d-tqma7.dtsi │ │ │ ├── imx7d-zii-rmu2.dts │ │ │ ├── imx7d-zii-rpu2.dts │ │ │ ├── imx7d.dtsi │ │ │ ├── imx7s-colibri-aster.dts │ │ │ ├── imx7s-colibri-eval-v3.dts │ │ │ ├── imx7s-colibri-iris-v2.dts │ │ │ ├── imx7s-colibri-iris.dts │ │ │ ├── imx7s-colibri.dtsi │ │ │ ├── imx7s-mba7.dts │ │ │ ├── imx7s-tqma7.dtsi │ │ │ ├── imx7s-warp.dts │ │ │ ├── imx7s.dtsi │ │ │ ├── imx7ulp-com.dts │ │ │ ├── imx7ulp-evk.dts │ │ │ ├── imx7ulp-pinfunc.h │ │ │ ├── imx7ulp.dtsi │ │ │ ├── imxrt1050-evk.dts │ │ │ ├── imxrt1050-pinfunc.h │ │ │ ├── imxrt1050.dtsi │ │ │ ├── imxrt1170-pinfunc.h │ │ │ └── mba6ulx.dtsi │ │ ├── lpc │ │ │ ├── lpc18xx.dtsi │ │ │ ├── lpc3250-ea3250.dts │ │ │ ├── lpc3250-phy3250.dts │ │ │ ├── lpc32xx.dtsi │ │ │ ├── lpc4337-ciaa.dts │ │ │ ├── lpc4350-hitex-eval.dts │ │ │ ├── lpc4350.dtsi │ │ │ ├── lpc4357-ea4357-devkit.dts │ │ │ ├── lpc4357-myd-lpc4357.dts │ │ │ └── lpc4357.dtsi │ │ ├── ls │ │ │ ├── ls1021a-iot.dts │ │ │ ├── ls1021a-moxa-uc-8410a.dts │ │ │ ├── ls1021a-qds.dts │ │ │ ├── ls1021a-tqmls1021a-mbls1021a.dts │ │ │ ├── ls1021a-tqmls1021a.dtsi │ │ │ ├── ls1021a-tsn.dts │ │ │ ├── ls1021a-twr.dts │ │ │ └── ls1021a.dtsi │ │ ├── mxs │ │ │ ├── imx23-evk.dts │ │ │ ├── imx23-olinuxino.dts │ │ │ ├── imx23-pinfunc.h │ │ │ ├── imx23-sansa.dts │ │ │ ├── imx23-stmp378x_devb.dts │ │ │ ├── imx23-xfi3.dts │ │ │ ├── imx23.dtsi │ │ │ ├── imx28-apf28.dts │ │ │ ├── imx28-apf28dev.dts │ │ │ ├── imx28-apx4devkit.dts │ │ │ ├── imx28-cfa10036.dts │ │ │ ├── imx28-cfa10037.dts │ │ │ ├── imx28-cfa10049.dts │ │ │ ├── imx28-cfa10055.dts │ │ │ ├── imx28-cfa10056.dts │ │ │ ├── imx28-cfa10057.dts │ │ │ ├── imx28-cfa10058.dts │ │ │ ├── imx28-duckbill-2-485.dts │ │ │ ├── imx28-duckbill-2-enocean.dts │ │ │ ├── imx28-duckbill-2-spi.dts │ │ │ ├── imx28-duckbill-2.dts │ │ │ ├── imx28-duckbill.dts │ │ │ ├── imx28-eukrea-mbmx283lc.dts │ │ │ ├── imx28-eukrea-mbmx287lc.dts │ │ │ ├── imx28-eukrea-mbmx28lc.dtsi │ │ │ ├── imx28-evk.dts │ │ │ ├── imx28-lwe.dtsi │ │ │ ├── imx28-m28.dtsi │ │ │ ├── imx28-m28cu3.dts │ │ │ ├── imx28-m28evk.dts │ │ │ ├── imx28-pinfunc.h │ │ │ ├── imx28-sps1.dts │ │ │ ├── imx28-ts4600.dts │ │ │ ├── imx28-tx28.dts │ │ │ ├── imx28-xea.dts │ │ │ ├── imx28.dtsi │ │ │ └── mxs-pinfunc.h │ │ └── vf │ │ │ ├── vf-colibri-eval-v3.dtsi │ │ │ ├── vf-colibri.dtsi │ │ │ ├── vf500-colibri-eval-v3.dts │ │ │ ├── vf500-colibri.dtsi │ │ │ ├── vf500.dtsi │ │ │ ├── vf610-bk4.dts │ │ │ ├── vf610-colibri-eval-v3.dts │ │ │ ├── vf610-colibri.dtsi │ │ │ ├── vf610-cosmic.dts │ │ │ ├── vf610-pinfunc.h │ │ │ ├── vf610-twr.dts │ │ │ ├── vf610-zii-cfu1.dts │ │ │ ├── vf610-zii-dev-rev-b.dts │ │ │ ├── vf610-zii-dev-rev-c.dts │ │ │ ├── vf610-zii-dev.dtsi │ │ │ ├── vf610-zii-scu4-aib.dts │ │ │ ├── vf610-zii-spb4.dts │ │ │ ├── vf610-zii-ssmb-dtu.dts │ │ │ ├── vf610-zii-ssmb-spu3.dts │ │ │ ├── vf610.dtsi │ │ │ ├── vf610m4-colibri.dts │ │ │ ├── vf610m4-cosmic.dts │ │ │ ├── vf610m4.dtsi │ │ │ └── vfxxx.dtsi │ ├── qcom │ │ ├── pm8018.dtsi │ │ ├── pm8058.dtsi │ │ ├── pm8226.dtsi │ │ ├── pm8821.dtsi │ │ ├── pm8841.dtsi │ │ ├── pm8921.dtsi │ │ ├── pm8941.dtsi │ │ ├── pma8084.dtsi │ │ ├── pmx55.dtsi │ │ ├── pmx65.dtsi │ │ ├── qcom-apq8016-sbc.dts │ │ ├── qcom-apq8026-asus-sparrow.dts │ │ ├── qcom-apq8026-huawei-sturgeon.dts │ │ ├── qcom-apq8026-lg-lenok.dts │ │ ├── qcom-apq8026-samsung-matisse-wifi.dts │ │ ├── qcom-apq8060-dragonboard.dts │ │ ├── qcom-apq8064-asus-nexus7-flo.dts │ │ ├── qcom-apq8064-cm-qs600.dts │ │ ├── qcom-apq8064-ifc6410.dts │ │ ├── qcom-apq8064-pins.dtsi │ │ ├── qcom-apq8064-sony-xperia-lagan-yuga.dts │ │ ├── qcom-apq8064-v2.0.dtsi │ │ ├── qcom-apq8064.dtsi │ │ ├── qcom-apq8074-dragonboard.dts │ │ ├── qcom-apq8084-ifc6540.dts │ │ ├── qcom-apq8084-mtp.dts │ │ ├── qcom-apq8084.dtsi │ │ ├── qcom-ipq4018-ap120c-ac-bit.dts │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ ├── qcom-ipq4018-ap120c-ac.dtsi │ │ ├── qcom-ipq4018-jalapeno.dts │ │ ├── qcom-ipq4019-ap.dk01.1-c1.dts │ │ ├── qcom-ipq4019-ap.dk01.1.dtsi │ │ ├── qcom-ipq4019-ap.dk04.1-c1.dts │ │ ├── qcom-ipq4019-ap.dk04.1-c3.dts │ │ ├── qcom-ipq4019-ap.dk04.1.dtsi │ │ ├── qcom-ipq4019-ap.dk07.1-c1.dts │ │ ├── qcom-ipq4019-ap.dk07.1-c2.dts │ │ ├── qcom-ipq4019-ap.dk07.1.dtsi │ │ ├── qcom-ipq4019.dtsi │ │ ├── qcom-ipq8062-smb208.dtsi │ │ ├── qcom-ipq8062.dtsi │ │ ├── qcom-ipq8064-ap148.dts │ │ ├── qcom-ipq8064-rb3011.dts │ │ ├── qcom-ipq8064-smb208.dtsi │ │ ├── qcom-ipq8064-v1.0.dtsi │ │ ├── qcom-ipq8064-v2.0-smb208.dtsi │ │ ├── qcom-ipq8064-v2.0.dtsi │ │ ├── qcom-ipq8064.dtsi │ │ ├── qcom-ipq8065-smb208.dtsi │ │ ├── qcom-ipq8065.dtsi │ │ ├── qcom-mdm9615-wp8548-mangoh-green.dts │ │ ├── qcom-mdm9615-wp8548.dtsi │ │ ├── qcom-mdm9615.dtsi │ │ ├── qcom-msm8226-microsoft-common.dtsi │ │ ├── qcom-msm8226-microsoft-dempsey.dts │ │ ├── qcom-msm8226-microsoft-makepeace.dts │ │ ├── qcom-msm8226-microsoft-moneypenny.dts │ │ ├── qcom-msm8226-samsung-matisse-common.dtsi │ │ ├── qcom-msm8226-samsung-s3ve3g.dts │ │ ├── qcom-msm8226.dtsi │ │ ├── qcom-msm8660-surf.dts │ │ ├── qcom-msm8660.dtsi │ │ ├── qcom-msm8916-samsung-e5.dts │ │ ├── qcom-msm8916-samsung-e7.dts │ │ ├── qcom-msm8916-samsung-grandmax.dts │ │ ├── qcom-msm8916-samsung-serranove.dts │ │ ├── qcom-msm8916-smp.dtsi │ │ ├── qcom-msm8926-htc-memul.dts │ │ ├── qcom-msm8926-microsoft-superman-lte.dts │ │ ├── qcom-msm8926-microsoft-tesla.dts │ │ ├── qcom-msm8926-motorola-peregrine.dts │ │ ├── qcom-msm8926-samsung-matisselte.dts │ │ ├── qcom-msm8960-cdp.dts │ │ ├── qcom-msm8960-pins.dtsi │ │ ├── qcom-msm8960-samsung-expressatt.dts │ │ ├── qcom-msm8960.dtsi │ │ ├── qcom-msm8974-lge-nexus5-hammerhead.dts │ │ ├── qcom-msm8974-sony-xperia-rhine-amami.dts │ │ ├── qcom-msm8974-sony-xperia-rhine-honami.dts │ │ ├── qcom-msm8974-sony-xperia-rhine.dtsi │ │ ├── qcom-msm8974.dtsi │ │ ├── qcom-msm8974pro-fairphone-fp2.dts │ │ ├── qcom-msm8974pro-oneplus-bacon.dts │ │ ├── qcom-msm8974pro-samsung-klte.dts │ │ ├── qcom-msm8974pro-sony-xperia-shinano-castor.dts │ │ ├── qcom-msm8974pro.dtsi │ │ ├── qcom-sdx55-mtp.dts │ │ ├── qcom-sdx55-t55.dts │ │ ├── qcom-sdx55-telit-fn980-tlb.dts │ │ ├── qcom-sdx55.dtsi │ │ ├── qcom-sdx65-mtp.dts │ │ └── qcom-sdx65.dtsi │ ├── realtek │ │ ├── rtd1195-horseradish.dts │ │ ├── rtd1195-mele-x1000.dts │ │ └── rtd1195.dtsi │ ├── renesas │ │ ├── emev2-kzm9d.dts │ │ ├── emev2.dtsi │ │ ├── gr-peach-audiocamerashield.dtsi │ │ ├── iwg20d-q7-common.dtsi │ │ ├── iwg20d-q7-dbcm-ca.dtsi │ │ ├── r7s72100-genmai.dts │ │ ├── r7s72100-gr-peach.dts │ │ ├── r7s72100-rskrza1.dts │ │ ├── r7s72100.dtsi │ │ ├── r7s9210-rza2mevb.dts │ │ ├── r7s9210.dtsi │ │ ├── r8a73a4-ape6evm.dts │ │ ├── r8a73a4.dtsi │ │ ├── r8a7740-armadillo800eva.dts │ │ ├── r8a7740.dtsi │ │ ├── r8a7742-iwg21d-q7-dbcm-ca.dts │ │ ├── r8a7742-iwg21d-q7-dbcm-ov5640-single.dtsi │ │ ├── r8a7742-iwg21d-q7-dbcm-ov7725-single.dtsi │ │ ├── r8a7742-iwg21d-q7.dts │ │ ├── r8a7742-iwg21m.dtsi │ │ ├── r8a7742.dtsi │ │ ├── r8a7743-iwg20d-q7-dbcm-ca.dts │ │ ├── r8a7743-iwg20d-q7.dts │ │ ├── r8a7743-iwg20m.dtsi │ │ ├── r8a7743-sk-rzg1m.dts │ │ ├── r8a7743.dtsi │ │ ├── r8a7744-iwg20d-q7-dbcm-ca.dts │ │ ├── r8a7744-iwg20d-q7.dts │ │ ├── r8a7744-iwg20m.dtsi │ │ ├── r8a7744.dtsi │ │ ├── r8a7745-iwg22d-sodimm-dbhd-ca.dts │ │ ├── r8a7745-iwg22d-sodimm.dts │ │ ├── r8a7745-iwg22m.dtsi │ │ ├── r8a7745-sk-rzg1e.dts │ │ ├── r8a7745.dtsi │ │ ├── r8a77470-iwg23s-sbc.dts │ │ ├── r8a77470.dtsi │ │ ├── r8a7778-bockw.dts │ │ ├── r8a7778.dtsi │ │ ├── r8a7779-marzen.dts │ │ ├── r8a7779.dtsi │ │ ├── r8a7790-lager.dts │ │ ├── r8a7790-stout.dts │ │ ├── r8a7790.dtsi │ │ ├── r8a7791-koelsch.dts │ │ ├── r8a7791-porter.dts │ │ ├── r8a7791.dtsi │ │ ├── r8a7792-blanche.dts │ │ ├── r8a7792-wheat.dts │ │ ├── r8a7792.dtsi │ │ ├── r8a7793-gose.dts │ │ ├── r8a7793.dtsi │ │ ├── r8a7794-alt.dts │ │ ├── r8a7794-silk.dts │ │ ├── r8a7794.dtsi │ │ ├── r8a77xx-aa121td01-panel.dtsi │ │ ├── r9a06g032-rzn1d400-db.dts │ │ ├── r9a06g032.dtsi │ │ ├── sh73a0-kzm9g.dts │ │ └── sh73a0.dtsi │ ├── rockchip │ │ ├── rk3036-evb.dts │ │ ├── rk3036-kylin.dts │ │ ├── rk3036.dtsi │ │ ├── rk3066a-bqcurie2.dts │ │ ├── rk3066a-marsboard.dts │ │ ├── rk3066a-mk808.dts │ │ ├── rk3066a-rayeager.dts │ │ ├── rk3066a.dtsi │ │ ├── rk3128-evb.dts │ │ ├── rk3128-xpi-3128.dts │ │ ├── rk3128.dtsi │ │ ├── rk3188-bqedison2qc.dts │ │ ├── rk3188-px3-evb.dts │ │ ├── rk3188-radxarock.dts │ │ ├── rk3188.dtsi │ │ ├── rk3228-evb.dts │ │ ├── rk3229-evb.dts │ │ ├── rk3229-xms6.dts │ │ ├── rk3229.dtsi │ │ ├── rk322x.dtsi │ │ ├── rk3288-evb-act8846.dts │ │ ├── rk3288-evb-rk808.dts │ │ ├── rk3288-evb.dtsi │ │ ├── rk3288-firefly-beta.dts │ │ ├── rk3288-firefly-reload-core.dtsi │ │ ├── rk3288-firefly-reload.dts │ │ ├── rk3288-firefly.dts │ │ ├── rk3288-firefly.dtsi │ │ ├── rk3288-miqi.dts │ │ ├── rk3288-phycore-rdk.dts │ │ ├── rk3288-phycore-som.dtsi │ │ ├── rk3288-popmetal.dts │ │ ├── rk3288-r89.dts │ │ ├── rk3288-rock-pi-n8.dts │ │ ├── rk3288-rock2-som.dtsi │ │ ├── rk3288-rock2-square.dts │ │ ├── rk3288-tinker-s.dts │ │ ├── rk3288-tinker.dts │ │ ├── rk3288-tinker.dtsi │ │ ├── rk3288-veyron-analog-audio.dtsi │ │ ├── rk3288-veyron-brain.dts │ │ ├── rk3288-veyron-broadcom-bluetooth.dtsi │ │ ├── rk3288-veyron-chromebook.dtsi │ │ ├── rk3288-veyron-edp.dtsi │ │ ├── rk3288-veyron-fievel.dts │ │ ├── rk3288-veyron-jaq.dts │ │ ├── rk3288-veyron-jerry.dts │ │ ├── rk3288-veyron-mickey.dts │ │ ├── rk3288-veyron-mighty.dts │ │ ├── rk3288-veyron-minnie.dts │ │ ├── rk3288-veyron-pinky.dts │ │ ├── rk3288-veyron-sdmmc.dtsi │ │ ├── rk3288-veyron-speedy.dts │ │ ├── rk3288-veyron-tiger.dts │ │ ├── rk3288-veyron.dtsi │ │ ├── rk3288-vmarc-som.dtsi │ │ ├── rk3288-vyasa.dts │ │ ├── rk3288.dtsi │ │ ├── rk3xxx.dtsi │ │ ├── rockchip-radxa-dalang-carrier.dtsi │ │ ├── rv1108-elgin-r1.dts │ │ ├── rv1108-evb.dts │ │ ├── rv1108.dtsi │ │ ├── rv1109-sonoff-ihost.dts │ │ ├── rv1109.dtsi │ │ ├── rv1126-edgeble-neu2-io.dts │ │ ├── rv1126-edgeble-neu2.dtsi │ │ ├── rv1126-pinctrl.dtsi │ │ ├── rv1126-sonoff-ihost.dts │ │ ├── rv1126-sonoff-ihost.dtsi │ │ └── rv1126.dtsi │ ├── samsung │ │ ├── exynos-mfc-reserved-memory.dtsi │ │ ├── exynos-pinctrl.h │ │ ├── exynos-syscon-restart.dtsi │ │ ├── exynos3250-artik5-eval.dts │ │ ├── exynos3250-artik5.dtsi │ │ ├── exynos3250-monk.dts │ │ ├── exynos3250-pinctrl.dtsi │ │ ├── exynos3250-rinato.dts │ │ ├── exynos3250.dtsi │ │ ├── exynos4-cpu-thermal.dtsi │ │ ├── exynos4.dtsi │ │ ├── exynos4210-i9100.dts │ │ ├── exynos4210-origen.dts │ │ ├── exynos4210-pinctrl.dtsi │ │ ├── exynos4210-smdkv310.dts │ │ ├── exynos4210-trats.dts │ │ ├── exynos4210-universal_c210.dts │ │ ├── exynos4210.dtsi │ │ ├── exynos4212-tab3-3g8.dts │ │ ├── exynos4212-tab3-lte8.dts │ │ ├── exynos4212-tab3-wifi8.dts │ │ ├── exynos4212-tab3.dtsi │ │ ├── exynos4212.dtsi │ │ ├── exynos4412-galaxy-s3.dtsi │ │ ├── exynos4412-i9300.dts │ │ ├── exynos4412-i9305.dts │ │ ├── exynos4412-itop-elite.dts │ │ ├── exynos4412-itop-scp-core.dtsi │ │ ├── exynos4412-midas.dtsi │ │ ├── exynos4412-n710x.dts │ │ ├── exynos4412-odroid-common.dtsi │ │ ├── exynos4412-odroidu3.dts │ │ ├── exynos4412-odroidx.dts │ │ ├── exynos4412-odroidx2.dts │ │ ├── exynos4412-origen.dts │ │ ├── exynos4412-p4note-n8010.dts │ │ ├── exynos4412-p4note.dtsi │ │ ├── exynos4412-ppmu-common.dtsi │ │ ├── exynos4412-prime.dtsi │ │ ├── exynos4412-smdk4412.dts │ │ ├── exynos4412-tiny4412.dts │ │ ├── exynos4412-trats2.dts │ │ ├── exynos4412.dtsi │ │ ├── exynos4x12-pinctrl.dtsi │ │ ├── exynos4x12.dtsi │ │ ├── exynos5.dtsi │ │ ├── exynos5250-arndale.dts │ │ ├── exynos5250-pinctrl.dtsi │ │ ├── exynos5250-smdk5250.dts │ │ ├── exynos5250-snow-common.dtsi │ │ ├── exynos5250-snow-rev5.dts │ │ ├── exynos5250-snow.dts │ │ ├── exynos5250-spring.dts │ │ ├── exynos5250.dtsi │ │ ├── exynos5260-pinctrl.dtsi │ │ ├── exynos5260-xyref5260.dts │ │ ├── exynos5260.dtsi │ │ ├── exynos5410-odroidxu.dts │ │ ├── exynos5410-pinctrl.dtsi │ │ ├── exynos5410-smdk5410.dts │ │ ├── exynos5410.dtsi │ │ ├── exynos5420-arndale-octa.dts │ │ ├── exynos5420-chagall-wifi.dts │ │ ├── exynos5420-cpus.dtsi │ │ ├── exynos5420-galaxy-tab-common.dtsi │ │ ├── exynos5420-klimt-wifi.dts │ │ ├── exynos5420-peach-pit.dts │ │ ├── exynos5420-pinctrl.dtsi │ │ ├── exynos5420-smdk5420.dts │ │ ├── exynos5420-trip-points.dtsi │ │ ├── exynos5420.dtsi │ │ ├── exynos5422-cpus.dtsi │ │ ├── exynos5422-odroid-core.dtsi │ │ ├── exynos5422-odroidhc1.dts │ │ ├── exynos5422-odroidxu3-audio.dtsi │ │ ├── exynos5422-odroidxu3-common.dtsi │ │ ├── exynos5422-odroidxu3-lite.dts │ │ ├── exynos5422-odroidxu3.dts │ │ ├── exynos5422-odroidxu4.dts │ │ ├── exynos5422-samsung-k3g.dts │ │ ├── exynos54xx-odroidxu-leds.dtsi │ │ ├── exynos54xx.dtsi │ │ ├── exynos5800-peach-pi.dts │ │ ├── exynos5800.dtsi │ │ ├── s3c6400.dtsi │ │ ├── s3c6410-mini6410.dts │ │ ├── s3c6410-smdk6410.dts │ │ ├── s3c6410.dtsi │ │ ├── s3c64xx-pinctrl.dtsi │ │ ├── s3c64xx-pinctrl.h │ │ ├── s3c64xx.dtsi │ │ ├── s5pv210-aquila.dts │ │ ├── s5pv210-aries.dtsi │ │ ├── s5pv210-fascinate4g.dts │ │ ├── s5pv210-galaxys.dts │ │ ├── s5pv210-goni.dts │ │ ├── s5pv210-pinctrl.dtsi │ │ ├── s5pv210-pinctrl.h │ │ ├── s5pv210-smdkc110.dts │ │ ├── s5pv210-smdkv210.dts │ │ ├── s5pv210-torbreck.dts │ │ └── s5pv210.dtsi │ ├── sigmastar │ │ ├── mstar-infinity-breadbee-common.dtsi │ │ ├── mstar-infinity-msc313-breadbee_crust.dts │ │ ├── mstar-infinity-msc313.dtsi │ │ ├── mstar-infinity.dtsi │ │ ├── mstar-infinity2m-ssd201-som2d01.dtsi │ │ ├── mstar-infinity2m-ssd202d-100ask-dongshanpione.dts │ │ ├── mstar-infinity2m-ssd202d-miyoo-mini.dts │ │ ├── mstar-infinity2m-ssd202d-ssd201htv2.dts │ │ ├── mstar-infinity2m-ssd202d-unitv2.dts │ │ ├── mstar-infinity2m-ssd202d-wirelesstag-ido-sbc2d06-v1b-22w.dts │ │ ├── mstar-infinity2m-ssd202d-wirelesstag-ido-som2d01.dtsi │ │ ├── mstar-infinity2m-ssd202d.dtsi │ │ ├── mstar-infinity2m-ssd20xd.dtsi │ │ ├── mstar-infinity2m.dtsi │ │ ├── mstar-infinity3-msc313e-breadbee.dts │ │ ├── mstar-infinity3-msc313e.dtsi │ │ ├── mstar-infinity3.dtsi │ │ ├── mstar-mercury5-ssc8336n-midrived08.dts │ │ ├── mstar-mercury5-ssc8336n.dtsi │ │ ├── mstar-mercury5.dtsi │ │ └── mstar-v7.dtsi │ ├── socionext │ │ ├── milbeaut-m10v-evb.dts │ │ ├── milbeaut-m10v.dtsi │ │ ├── uniphier-ld4-ref.dts │ │ ├── uniphier-ld4.dtsi │ │ ├── uniphier-ld6b-ref.dts │ │ ├── uniphier-ld6b.dtsi │ │ ├── uniphier-pinctrl.dtsi │ │ ├── uniphier-pro4-ace.dts │ │ ├── uniphier-pro4-ref.dts │ │ ├── uniphier-pro4-sanji.dts │ │ ├── uniphier-pro4.dtsi │ │ ├── uniphier-pro5-epcore.dts │ │ ├── uniphier-pro5-proex.dts │ │ ├── uniphier-pro5.dtsi │ │ ├── uniphier-pxs2-gentil.dts │ │ ├── uniphier-pxs2-vodka.dts │ │ ├── uniphier-pxs2.dtsi │ │ ├── uniphier-ref-daughter.dtsi │ │ ├── uniphier-sld8-ref.dts │ │ ├── uniphier-sld8.dtsi │ │ └── uniphier-support-card.dtsi │ ├── st │ │ ├── spear1310-evb.dts │ │ ├── spear1310.dtsi │ │ ├── spear1340-evb.dts │ │ ├── spear1340.dtsi │ │ ├── spear13xx.dtsi │ │ ├── spear300-evb.dts │ │ ├── spear300.dtsi │ │ ├── spear310-evb.dts │ │ ├── spear310.dtsi │ │ ├── spear320-evb.dts │ │ ├── spear320-hmi.dts │ │ ├── spear320.dtsi │ │ ├── spear320s.dtsi │ │ ├── spear3xx.dtsi │ │ ├── spear600-evb.dts │ │ ├── spear600.dtsi │ │ ├── st-pincfg.h │ │ ├── ste-ab8500.dtsi │ │ ├── ste-ab8505.dtsi │ │ ├── ste-db8500.dtsi │ │ ├── ste-db8520.dtsi │ │ ├── ste-db9500.dtsi │ │ ├── ste-dbx5x0-pinctrl.dtsi │ │ ├── ste-dbx5x0.dtsi │ │ ├── ste-href-ab8500.dtsi │ │ ├── ste-href-ab8505.dtsi │ │ ├── ste-href-family-pinctrl.dtsi │ │ ├── ste-href-stuib.dtsi │ │ ├── ste-href-tvk1281618-r2.dtsi │ │ ├── ste-href-tvk1281618-r3.dtsi │ │ ├── ste-href.dtsi │ │ ├── ste-href520-tvk.dts │ │ ├── ste-hrefprev60-stuib.dts │ │ ├── ste-hrefprev60-tvk.dts │ │ ├── ste-hrefprev60.dtsi │ │ ├── ste-hrefv60plus-stuib.dts │ │ ├── ste-hrefv60plus-tvk.dts │ │ ├── ste-hrefv60plus.dtsi │ │ ├── ste-nomadik-nhk15.dts │ │ ├── ste-nomadik-pinctrl.dtsi │ │ ├── ste-nomadik-s8815.dts │ │ ├── ste-nomadik-stn8815.dtsi │ │ ├── ste-snowball.dts │ │ ├── ste-ux500-samsung-codina-tmo.dts │ │ ├── ste-ux500-samsung-codina.dts │ │ ├── ste-ux500-samsung-gavini.dts │ │ ├── ste-ux500-samsung-golden.dts │ │ ├── ste-ux500-samsung-janice.dts │ │ ├── ste-ux500-samsung-kyle.dts │ │ ├── ste-ux500-samsung-skomer.dts │ │ ├── stih407-b2120.dts │ │ ├── stih407-clock.dtsi │ │ ├── stih407-family.dtsi │ │ ├── stih407-pinctrl.dtsi │ │ ├── stih407.dtsi │ │ ├── stih410-b2120.dts │ │ ├── stih410-b2260.dts │ │ ├── stih410-clock.dtsi │ │ ├── stih410-pinctrl.dtsi │ │ ├── stih410.dtsi │ │ ├── stih418-b2199.dts │ │ ├── stih418-b2264.dts │ │ ├── stih418-clock.dtsi │ │ ├── stih418.dtsi │ │ ├── stihxxx-b2120.dtsi │ │ ├── stm32429i-eval.dts │ │ ├── stm32746g-eval.dts │ │ ├── stm32f4-pinctrl.dtsi │ │ ├── stm32f429-disco.dts │ │ ├── stm32f429-pinctrl.dtsi │ │ ├── stm32f429.dtsi │ │ ├── stm32f469-disco.dts │ │ ├── stm32f469-pinctrl.dtsi │ │ ├── stm32f469.dtsi │ │ ├── stm32f7-pinctrl.dtsi │ │ ├── stm32f746-disco.dts │ │ ├── stm32f746-pinctrl.dtsi │ │ ├── stm32f746.dtsi │ │ ├── stm32f769-disco-mb1166-reva09.dts │ │ ├── stm32f769-disco.dts │ │ ├── stm32f769-pinctrl.dtsi │ │ ├── stm32f769.dtsi │ │ ├── stm32h7-pinctrl.dtsi │ │ ├── stm32h743.dtsi │ │ ├── stm32h743i-disco.dts │ │ ├── stm32h743i-eval.dts │ │ ├── stm32h750.dtsi │ │ ├── stm32h750i-art-pi.dts │ │ ├── stm32mp13-pinctrl.dtsi │ │ ├── stm32mp131.dtsi │ │ ├── stm32mp133.dtsi │ │ ├── stm32mp135.dtsi │ │ ├── stm32mp135f-dk.dts │ │ ├── stm32mp13xc.dtsi │ │ ├── stm32mp13xf.dtsi │ │ ├── stm32mp15-pinctrl.dtsi │ │ ├── stm32mp15-scmi.dtsi │ │ ├── stm32mp151.dtsi │ │ ├── stm32mp151a-dhcor-testbench.dts │ │ ├── stm32mp151a-prtt1a.dts │ │ ├── stm32mp151a-prtt1c.dts │ │ ├── stm32mp151a-prtt1l.dtsi │ │ ├── stm32mp151a-prtt1s.dts │ │ ├── stm32mp153.dtsi │ │ ├── stm32mp153c-dhcom-drc02.dts │ │ ├── stm32mp153c-dhcor-drc-compact.dts │ │ ├── stm32mp157.dtsi │ │ ├── stm32mp157a-avenger96.dts │ │ ├── stm32mp157a-dhcor-avenger96.dts │ │ ├── stm32mp157a-dk1-scmi.dts │ │ ├── stm32mp157a-dk1.dts │ │ ├── stm32mp157a-icore-stm32mp1-ctouch2-of10.dts │ │ ├── stm32mp157a-icore-stm32mp1-ctouch2.dts │ │ ├── stm32mp157a-icore-stm32mp1-edimm2.2.dts │ │ ├── stm32mp157a-icore-stm32mp1.dtsi │ │ ├── stm32mp157a-iot-box.dts │ │ ├── stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dts │ │ ├── stm32mp157a-microgea-stm32mp1-microdev2.0.dts │ │ ├── stm32mp157a-microgea-stm32mp1.dtsi │ │ ├── stm32mp157a-stinger96.dts │ │ ├── stm32mp157a-stinger96.dtsi │ │ ├── stm32mp157c-dhcom-pdk2.dts │ │ ├── stm32mp157c-dhcom-picoitx.dts │ │ ├── stm32mp157c-dk2-scmi.dts │ │ ├── stm32mp157c-dk2.dts │ │ ├── stm32mp157c-ed1-scmi.dts │ │ ├── stm32mp157c-ed1.dts │ │ ├── stm32mp157c-emsbc-argon.dts │ │ ├── stm32mp157c-emstamp-argon.dtsi │ │ ├── stm32mp157c-ev1-scmi.dts │ │ ├── stm32mp157c-ev1.dts │ │ ├── stm32mp157c-lxa-mc1.dts │ │ ├── stm32mp157c-lxa-tac-gen1.dts │ │ ├── stm32mp157c-lxa-tac-gen2.dts │ │ ├── stm32mp157c-odyssey-som.dtsi │ │ ├── stm32mp157c-odyssey.dts │ │ ├── stm32mp157c-osd32mp1-red.dts │ │ ├── stm32mp157c-phycore-stm32mp1-3.dts │ │ ├── stm32mp157c-phycore-stm32mp15-som.dtsi │ │ ├── stm32mp15xc-lxa-tac.dtsi │ │ ├── stm32mp15xc.dtsi │ │ ├── stm32mp15xx-dhcom-drc02.dtsi │ │ ├── stm32mp15xx-dhcom-pdk2.dtsi │ │ ├── stm32mp15xx-dhcom-picoitx.dtsi │ │ ├── stm32mp15xx-dhcom-som.dtsi │ │ ├── stm32mp15xx-dhcor-avenger96.dtsi │ │ ├── stm32mp15xx-dhcor-drc-compact.dtsi │ │ ├── stm32mp15xx-dhcor-io1v8.dtsi │ │ ├── stm32mp15xx-dhcor-som.dtsi │ │ ├── stm32mp15xx-dhcor-testbench.dtsi │ │ ├── stm32mp15xx-dkx.dtsi │ │ ├── stm32mp15xx-osd32.dtsi │ │ ├── stm32mp15xxaa-pinctrl.dtsi │ │ ├── stm32mp15xxab-pinctrl.dtsi │ │ ├── stm32mp15xxac-pinctrl.dtsi │ │ └── stm32mp15xxad-pinctrl.dtsi │ ├── sunplus │ │ ├── sunplus-sp7021-achip.dtsi │ │ ├── sunplus-sp7021-demo-v3.dts │ │ └── sunplus-sp7021.dtsi │ ├── synaptics │ │ ├── berlin2-sony-nsz-gs7.dts │ │ ├── berlin2.dtsi │ │ ├── berlin2cd-google-chromecast.dts │ │ ├── berlin2cd-valve-steamlink.dts │ │ ├── berlin2cd.dtsi │ │ ├── berlin2q-marvell-dmp.dts │ │ └── berlin2q.dtsi │ ├── ti │ │ ├── davinci │ │ │ ├── da850-enbw-cmc.dts │ │ │ ├── da850-evm.dts │ │ │ ├── da850-lcdk.dts │ │ │ ├── da850-lego-ev3.dts │ │ │ └── da850.dtsi │ │ ├── keystone │ │ │ ├── keystone-clocks.dtsi │ │ │ ├── keystone-k2e-clocks.dtsi │ │ │ ├── keystone-k2e-evm.dts │ │ │ ├── keystone-k2e-netcp.dtsi │ │ │ ├── keystone-k2e.dtsi │ │ │ ├── keystone-k2g-evm.dts │ │ │ ├── keystone-k2g-ice.dts │ │ │ ├── keystone-k2g-netcp.dtsi │ │ │ ├── keystone-k2g.dtsi │ │ │ ├── keystone-k2hk-clocks.dtsi │ │ │ ├── keystone-k2hk-evm.dts │ │ │ ├── keystone-k2hk-netcp.dtsi │ │ │ ├── keystone-k2hk.dtsi │ │ │ ├── keystone-k2l-clocks.dtsi │ │ │ ├── keystone-k2l-evm.dts │ │ │ ├── keystone-k2l-netcp.dtsi │ │ │ ├── keystone-k2l.dtsi │ │ │ └── keystone.dtsi │ │ └── omap │ │ │ ├── am335x-baltos-ir2110.dts │ │ │ ├── am335x-baltos-ir3220.dts │ │ │ ├── am335x-baltos-ir5221.dts │ │ │ ├── am335x-baltos-leds.dtsi │ │ │ ├── am335x-baltos.dtsi │ │ │ ├── am335x-base0033.dts │ │ │ ├── am335x-bone-common.dtsi │ │ │ ├── am335x-bone.dts │ │ │ ├── am335x-boneblack-common.dtsi │ │ │ ├── am335x-boneblack-hdmi.dtsi │ │ │ ├── am335x-boneblack-wireless.dts │ │ │ ├── am335x-boneblack.dts │ │ │ ├── am335x-boneblue.dts │ │ │ ├── am335x-bonegreen-common.dtsi │ │ │ ├── am335x-bonegreen-wireless.dts │ │ │ ├── am335x-bonegreen.dts │ │ │ ├── am335x-chiliboard.dts │ │ │ ├── am335x-chilisom.dtsi │ │ │ ├── am335x-cm-t335.dts │ │ │ ├── am335x-evm.dts │ │ │ ├── am335x-evmsk.dts │ │ │ ├── am335x-guardian.dts │ │ │ ├── am335x-icev2.dts │ │ │ ├── am335x-igep0033.dtsi │ │ │ ├── am335x-lxm.dts │ │ │ ├── am335x-moxa-uc-2100-common.dtsi │ │ │ ├── am335x-moxa-uc-2101.dts │ │ │ ├── am335x-moxa-uc-8100-common.dtsi │ │ │ ├── am335x-moxa-uc-8100-me-t.dts │ │ │ ├── am335x-myirtech-myc.dtsi │ │ │ ├── am335x-myirtech-myd.dts │ │ │ ├── am335x-nano.dts │ │ │ ├── am335x-netcan-plus-1xx.dts │ │ │ ├── am335x-netcom-plus-2xx.dts │ │ │ ├── am335x-netcom-plus-8xx.dts │ │ │ ├── am335x-osd3358-sm-red.dts │ │ │ ├── am335x-osd335x-common.dtsi │ │ │ ├── am335x-pcm-953.dtsi │ │ │ ├── am335x-pdu001.dts │ │ │ ├── am335x-pepper.dts │ │ │ ├── am335x-phycore-rdk.dts │ │ │ ├── am335x-phycore-som.dtsi │ │ │ ├── am335x-pocketbeagle.dts │ │ │ ├── am335x-regor-rdk.dts │ │ │ ├── am335x-regor.dtsi │ │ │ ├── am335x-sancloud-bbe-common.dtsi │ │ │ ├── am335x-sancloud-bbe-extended-wifi.dts │ │ │ ├── am335x-sancloud-bbe-lite.dts │ │ │ ├── am335x-sancloud-bbe.dts │ │ │ ├── am335x-sbc-t335.dts │ │ │ ├── am335x-shc.dts │ │ │ ├── am335x-sl50.dts │ │ │ ├── am335x-wega-rdk.dts │ │ │ ├── am335x-wega.dtsi │ │ │ ├── am33xx-clocks.dtsi │ │ │ ├── am33xx-l4.dtsi │ │ │ ├── am33xx.dtsi │ │ │ ├── am3517-craneboard.dts │ │ │ ├── am3517-evm-ui.dtsi │ │ │ ├── am3517-evm.dts │ │ │ ├── am3517-som.dtsi │ │ │ ├── am3517.dtsi │ │ │ ├── am3517_mt_ventoux.dts │ │ │ ├── am35xx-clocks.dtsi │ │ │ ├── am3703.dtsi │ │ │ ├── am3715.dtsi │ │ │ ├── am3874-iceboard.dts │ │ │ ├── am4372.dtsi │ │ │ ├── am437x-cm-t43.dts │ │ │ ├── am437x-gp-evm.dts │ │ │ ├── am437x-idk-evm.dts │ │ │ ├── am437x-l4.dtsi │ │ │ ├── am437x-sbc-t43.dts │ │ │ ├── am437x-sk-evm.dts │ │ │ ├── am43x-epos-evm.dts │ │ │ ├── am43xx-clocks.dtsi │ │ │ ├── am57-pruss.dtsi │ │ │ ├── am5718.dtsi │ │ │ ├── am571x-idk-touchscreen.dtso │ │ │ ├── am571x-idk.dts │ │ │ ├── am5728.dtsi │ │ │ ├── am5729-beagleboneai.dts │ │ │ ├── am572x-idk-common.dtsi │ │ │ ├── am572x-idk-touchscreen.dtso │ │ │ ├── am572x-idk.dts │ │ │ ├── am5748.dtsi │ │ │ ├── am574x-idk.dts │ │ │ ├── am57xx-beagle-x15-common.dtsi │ │ │ ├── am57xx-beagle-x15-revb1.dts │ │ │ ├── am57xx-beagle-x15-revc.dts │ │ │ ├── am57xx-beagle-x15.dts │ │ │ ├── am57xx-cl-som-am57x.dts │ │ │ ├── am57xx-commercial-grade.dtsi │ │ │ ├── am57xx-evm.dtso │ │ │ ├── am57xx-idk-common.dtsi │ │ │ ├── am57xx-idk-lcd-osd101t2045.dtso │ │ │ ├── am57xx-idk-lcd-osd101t2587.dtso │ │ │ ├── am57xx-industrial-grade.dtsi │ │ │ ├── am57xx-sbc-am57x.dts │ │ │ ├── compulab-sb-som.dtsi │ │ │ ├── dm3725.dtsi │ │ │ ├── dm8148-evm.dts │ │ │ ├── dm8148-t410.dts │ │ │ ├── dm814x-clocks.dtsi │ │ │ ├── dm814x.dtsi │ │ │ ├── dm8168-evm.dts │ │ │ ├── dm816x-clocks.dtsi │ │ │ ├── dm816x.dtsi │ │ │ ├── dra62x-clocks.dtsi │ │ │ ├── dra62x-j5eco-evm.dts │ │ │ ├── dra62x.dtsi │ │ │ ├── dra7-dspeve-thermal.dtsi │ │ │ ├── dra7-evm-common.dtsi │ │ │ ├── dra7-evm.dts │ │ │ ├── dra7-ipu-dsp-common.dtsi │ │ │ ├── dra7-iva-thermal.dtsi │ │ │ ├── dra7-l4.dtsi │ │ │ ├── dra7-mmc-iodelay.dtsi │ │ │ ├── dra7.dtsi │ │ │ ├── dra71-evm.dts │ │ │ ├── dra71x.dtsi │ │ │ ├── dra72-evm-common.dtsi │ │ │ ├── dra72-evm-revc.dts │ │ │ ├── dra72-evm-tps65917.dtsi │ │ │ ├── dra72-evm.dts │ │ │ ├── dra72x-mmc-iodelay.dtsi │ │ │ ├── dra72x.dtsi │ │ │ ├── dra74-ipu-dsp-common.dtsi │ │ │ ├── dra74x-mmc-iodelay.dtsi │ │ │ ├── dra74x-p.dtsi │ │ │ ├── dra74x.dtsi │ │ │ ├── dra76-evm.dts │ │ │ ├── dra76x-mmc-iodelay.dtsi │ │ │ ├── dra76x.dtsi │ │ │ ├── dra7xx-clocks.dtsi │ │ │ ├── elpida_ecb240abacn.dtsi │ │ │ ├── logicpd-som-lv-35xx-devkit.dts │ │ │ ├── logicpd-som-lv-37xx-devkit.dts │ │ │ ├── logicpd-som-lv-baseboard.dtsi │ │ │ ├── logicpd-som-lv.dtsi │ │ │ ├── logicpd-torpedo-35xx-devkit.dts │ │ │ ├── logicpd-torpedo-37xx-devkit-28.dts │ │ │ ├── logicpd-torpedo-37xx-devkit.dts │ │ │ ├── logicpd-torpedo-baseboard.dtsi │ │ │ ├── logicpd-torpedo-som.dtsi │ │ │ ├── motorola-cpcap-mapphone.dtsi │ │ │ ├── motorola-mapphone-common.dtsi │ │ │ ├── motorola-mapphone-handset.dtsi │ │ │ ├── motorola-mapphone-mz607-mz617.dtsi │ │ │ ├── motorola-mapphone-xt8xx.dtsi │ │ │ ├── omap-gpmc-smsc911x.dtsi │ │ │ ├── omap-gpmc-smsc9221.dtsi │ │ │ ├── omap-zoom-common.dtsi │ │ │ ├── omap2.dtsi │ │ │ ├── omap2420-clocks.dtsi │ │ │ ├── omap2420-h4.dts │ │ │ ├── omap2420-n800.dts │ │ │ ├── omap2420-n810-wimax.dts │ │ │ ├── omap2420-n810.dts │ │ │ ├── omap2420-n8x0-common.dtsi │ │ │ ├── omap2420.dtsi │ │ │ ├── omap2430-clocks.dtsi │ │ │ ├── omap2430-sdp.dts │ │ │ ├── omap2430.dtsi │ │ │ ├── omap24xx-clocks.dtsi │ │ │ ├── omap3-beagle-ab4.dts │ │ │ ├── omap3-beagle-xm-ab.dts │ │ │ ├── omap3-beagle-xm.dts │ │ │ ├── omap3-beagle.dts │ │ │ ├── omap3-cm-t3517.dts │ │ │ ├── omap3-cm-t3530.dts │ │ │ ├── omap3-cm-t3730.dts │ │ │ ├── omap3-cm-t3x.dtsi │ │ │ ├── omap3-cm-t3x30.dtsi │ │ │ ├── omap3-cpu-thermal.dtsi │ │ │ ├── omap3-devkit8000-common.dtsi │ │ │ ├── omap3-devkit8000-lcd-common.dtsi │ │ │ ├── omap3-devkit8000-lcd43.dts │ │ │ ├── omap3-devkit8000-lcd70.dts │ │ │ ├── omap3-devkit8000.dts │ │ │ ├── omap3-echo.dts │ │ │ ├── omap3-evm-37xx.dts │ │ │ ├── omap3-evm-common.dtsi │ │ │ ├── omap3-evm-processor-common.dtsi │ │ │ ├── omap3-evm.dts │ │ │ ├── omap3-gta04.dtsi │ │ │ ├── omap3-gta04a3.dts │ │ │ ├── omap3-gta04a4.dts │ │ │ ├── omap3-gta04a5.dts │ │ │ ├── omap3-gta04a5one.dts │ │ │ ├── omap3-ha-common.dtsi │ │ │ ├── omap3-ha-lcd.dts │ │ │ ├── omap3-ha.dts │ │ │ ├── omap3-igep.dtsi │ │ │ ├── omap3-igep0020-common.dtsi │ │ │ ├── omap3-igep0020-rev-f.dts │ │ │ ├── omap3-igep0020.dts │ │ │ ├── omap3-igep0030-common.dtsi │ │ │ ├── omap3-igep0030-rev-g.dts │ │ │ ├── omap3-igep0030.dts │ │ │ ├── omap3-ldp.dts │ │ │ ├── omap3-lilly-a83x.dtsi │ │ │ ├── omap3-lilly-dbb056.dts │ │ │ ├── omap3-n9.dts │ │ │ ├── omap3-n900.dts │ │ │ ├── omap3-n950-n9.dtsi │ │ │ ├── omap3-n950.dts │ │ │ ├── omap3-overo-alto35-common.dtsi │ │ │ ├── omap3-overo-alto35.dts │ │ │ ├── omap3-overo-base.dtsi │ │ │ ├── omap3-overo-chestnut43-common.dtsi │ │ │ ├── omap3-overo-chestnut43.dts │ │ │ ├── omap3-overo-common-dvi.dtsi │ │ │ ├── omap3-overo-common-lcd35.dtsi │ │ │ ├── omap3-overo-common-lcd43.dtsi │ │ │ ├── omap3-overo-common-peripherals.dtsi │ │ │ ├── omap3-overo-gallop43-common.dtsi │ │ │ ├── omap3-overo-gallop43.dts │ │ │ ├── omap3-overo-palo35-common.dtsi │ │ │ ├── omap3-overo-palo35.dts │ │ │ ├── omap3-overo-palo43-common.dtsi │ │ │ ├── omap3-overo-palo43.dts │ │ │ ├── omap3-overo-storm-alto35.dts │ │ │ ├── omap3-overo-storm-chestnut43.dts │ │ │ ├── omap3-overo-storm-gallop43.dts │ │ │ ├── omap3-overo-storm-palo35.dts │ │ │ ├── omap3-overo-storm-palo43.dts │ │ │ ├── omap3-overo-storm-summit.dts │ │ │ ├── omap3-overo-storm-tobi.dts │ │ │ ├── omap3-overo-storm-tobiduo.dts │ │ │ ├── omap3-overo-storm.dtsi │ │ │ ├── omap3-overo-summit-common.dtsi │ │ │ ├── omap3-overo-summit.dts │ │ │ ├── omap3-overo-tobi-common.dtsi │ │ │ ├── omap3-overo-tobi.dts │ │ │ ├── omap3-overo-tobiduo-common.dtsi │ │ │ ├── omap3-overo-tobiduo.dts │ │ │ ├── omap3-overo.dtsi │ │ │ ├── omap3-pandora-1ghz.dts │ │ │ ├── omap3-pandora-600mhz.dts │ │ │ ├── omap3-pandora-common.dtsi │ │ │ ├── omap3-panel-sharp-ls037v7dw01.dtsi │ │ │ ├── omap3-sb-t35.dtsi │ │ │ ├── omap3-sbc-t3517.dts │ │ │ ├── omap3-sbc-t3530.dts │ │ │ ├── omap3-sbc-t3730.dts │ │ │ ├── omap3-sniper.dts │ │ │ ├── omap3-tao3530.dtsi │ │ │ ├── omap3-thunder.dts │ │ │ ├── omap3-zoom3.dts │ │ │ ├── omap3.dtsi │ │ │ ├── omap3430-sdp.dts │ │ │ ├── omap3430es1-clocks.dtsi │ │ │ ├── omap34xx-omap36xx-clocks.dtsi │ │ │ ├── omap34xx.dtsi │ │ │ ├── omap36xx-am35xx-omap3430es2plus-clocks.dtsi │ │ │ ├── omap36xx-clocks.dtsi │ │ │ ├── omap36xx-omap3430es2plus-clocks.dtsi │ │ │ ├── omap36xx.dtsi │ │ │ ├── omap3xxx-clocks.dtsi │ │ │ ├── omap4-cpu-thermal.dtsi │ │ │ ├── omap4-droid-bionic-xt875.dts │ │ │ ├── omap4-droid4-xt894.dts │ │ │ ├── omap4-duovero-parlor.dts │ │ │ ├── omap4-duovero.dtsi │ │ │ ├── omap4-epson-embt2ws.dts │ │ │ ├── omap4-kc1.dts │ │ │ ├── omap4-l4-abe.dtsi │ │ │ ├── omap4-l4.dtsi │ │ │ ├── omap4-mcpdm.dtsi │ │ │ ├── omap4-panda-a4.dts │ │ │ ├── omap4-panda-common.dtsi │ │ │ ├── omap4-panda-es.dts │ │ │ ├── omap4-panda.dts │ │ │ ├── omap4-sdp-es23plus.dts │ │ │ ├── omap4-sdp.dts │ │ │ ├── omap4-var-dvk-om44.dts │ │ │ ├── omap4-var-om44customboard.dtsi │ │ │ ├── omap4-var-som-om44-wlan.dtsi │ │ │ ├── omap4-var-som-om44.dtsi │ │ │ ├── omap4-var-stk-om44.dts │ │ │ ├── omap4-xyboard-mz609.dts │ │ │ ├── omap4-xyboard-mz617.dts │ │ │ ├── omap4.dtsi │ │ │ ├── omap443x-clocks.dtsi │ │ │ ├── omap443x.dtsi │ │ │ ├── omap4460.dtsi │ │ │ ├── omap446x-clocks.dtsi │ │ │ ├── omap44xx-clocks.dtsi │ │ │ ├── omap5-board-common.dtsi │ │ │ ├── omap5-cm-t54.dts │ │ │ ├── omap5-core-thermal.dtsi │ │ │ ├── omap5-gpu-thermal.dtsi │ │ │ ├── omap5-igep0050.dts │ │ │ ├── omap5-l4-abe.dtsi │ │ │ ├── omap5-l4.dtsi │ │ │ ├── omap5-sbc-t54.dts │ │ │ ├── omap5-uevm.dts │ │ │ ├── omap5.dtsi │ │ │ ├── omap54xx-clocks.dtsi │ │ │ ├── twl4030.dtsi │ │ │ ├── twl4030_omap3.dtsi │ │ │ ├── twl6030.dtsi │ │ │ └── twl6030_omap4.dtsi │ ├── tps6507x.dtsi │ ├── tps65217.dtsi │ ├── tps65910.dtsi │ ├── unisoc │ │ ├── rda8810pl-orangepi-2g-iot.dts │ │ ├── rda8810pl-orangepi-i96.dts │ │ └── rda8810pl.dtsi │ ├── vt8500 │ │ ├── vt8500-bv07.dts │ │ ├── vt8500.dtsi │ │ ├── wm8505-ref.dts │ │ ├── wm8505.dtsi │ │ ├── wm8650-mid.dts │ │ ├── wm8650.dtsi │ │ ├── wm8750-apc8750.dts │ │ ├── wm8750.dtsi │ │ ├── wm8850-w70v2.dts │ │ └── wm8850.dtsi │ ├── xen │ │ └── xenvm-4.2.dts │ └── xilinx │ │ ├── zynq-7000.dtsi │ │ ├── zynq-cc108.dts │ │ ├── zynq-ebaz4205.dts │ │ ├── zynq-microzed.dts │ │ ├── zynq-parallella.dts │ │ ├── zynq-zc702.dts │ │ ├── zynq-zc706.dts │ │ ├── zynq-zc770-xm010.dts │ │ ├── zynq-zc770-xm011.dts │ │ ├── zynq-zc770-xm012.dts │ │ ├── zynq-zc770-xm013.dts │ │ ├── zynq-zed.dts │ │ ├── zynq-zturn-common.dtsi │ │ ├── zynq-zturn-v5.dts │ │ ├── zynq-zturn.dts │ │ ├── zynq-zybo-z7.dts │ │ └── zynq-zybo.dts │ ├── arm64 │ ├── actions │ │ ├── s700-cubieboard7.dts │ │ ├── s700.dtsi │ │ ├── s900-bubblegum-96.dts │ │ └── s900.dtsi │ ├── allwinner │ │ ├── axp803.dtsi │ │ ├── sun50i-a100-allwinner-perf1.dts │ │ ├── sun50i-a100.dtsi │ │ ├── sun50i-a64-amarula-relic.dts │ │ ├── sun50i-a64-bananapi-m64.dts │ │ ├── sun50i-a64-cpu-opp.dtsi │ │ ├── sun50i-a64-nanopi-a64.dts │ │ ├── sun50i-a64-oceanic-5205-5inmfd.dts │ │ ├── sun50i-a64-olinuxino-emmc.dts │ │ ├── sun50i-a64-olinuxino.dts │ │ ├── sun50i-a64-orangepi-win.dts │ │ ├── sun50i-a64-pine64-lts.dts │ │ ├── sun50i-a64-pine64-plus.dts │ │ ├── sun50i-a64-pine64.dts │ │ ├── sun50i-a64-pinebook.dts │ │ ├── sun50i-a64-pinephone-1.0.dts │ │ ├── sun50i-a64-pinephone-1.1.dts │ │ ├── sun50i-a64-pinephone-1.2.dts │ │ ├── sun50i-a64-pinephone.dtsi │ │ ├── sun50i-a64-pinetab-early-adopter.dts │ │ ├── sun50i-a64-pinetab.dts │ │ ├── sun50i-a64-sopine-baseboard.dts │ │ ├── sun50i-a64-sopine.dtsi │ │ ├── sun50i-a64-teres-i.dts │ │ ├── sun50i-a64.dtsi │ │ ├── sun50i-h5-bananapi-m2-plus-v1.2.dts │ │ ├── sun50i-h5-bananapi-m2-plus.dts │ │ ├── sun50i-h5-cpu-opp.dtsi │ │ ├── sun50i-h5-emlid-neutis-n5-devboard.dts │ │ ├── sun50i-h5-emlid-neutis-n5.dtsi │ │ ├── sun50i-h5-libretech-all-h3-cc.dts │ │ ├── sun50i-h5-libretech-all-h3-it.dts │ │ ├── sun50i-h5-libretech-all-h5-cc.dts │ │ ├── sun50i-h5-nanopi-neo-plus2.dts │ │ ├── sun50i-h5-nanopi-neo2.dts │ │ ├── sun50i-h5-nanopi-r1s-h5.dts │ │ ├── sun50i-h5-orangepi-pc2.dts │ │ ├── sun50i-h5-orangepi-prime.dts │ │ ├── sun50i-h5-orangepi-zero-plus.dts │ │ ├── sun50i-h5-orangepi-zero-plus2.dts │ │ ├── sun50i-h5.dtsi │ │ ├── sun50i-h6-beelink-gs1.dts │ │ ├── sun50i-h6-cpu-opp.dtsi │ │ ├── sun50i-h6-gpu-opp.dtsi │ │ ├── sun50i-h6-orangepi-3.dts │ │ ├── sun50i-h6-orangepi-lite2.dts │ │ ├── sun50i-h6-orangepi-one-plus.dts │ │ ├── sun50i-h6-orangepi.dtsi │ │ ├── sun50i-h6-pine-h64-model-b.dts │ │ ├── sun50i-h6-pine-h64.dts │ │ ├── sun50i-h6-tanix-tx6-mini.dts │ │ ├── sun50i-h6-tanix-tx6.dts │ │ ├── sun50i-h6-tanix.dtsi │ │ ├── sun50i-h6.dtsi │ │ ├── sun50i-h616-bigtreetech-cb1-manta.dts │ │ ├── sun50i-h616-bigtreetech-cb1.dtsi │ │ ├── sun50i-h616-bigtreetech-pi.dts │ │ ├── sun50i-h616-orangepi-zero.dtsi │ │ ├── sun50i-h616-orangepi-zero2.dts │ │ ├── sun50i-h616-x96-mate.dts │ │ ├── sun50i-h616.dtsi │ │ ├── sun50i-h618-longan-module-3h.dtsi │ │ ├── sun50i-h618-longanpi-3h.dts │ │ ├── sun50i-h618-orangepi-zero2w.dts │ │ ├── sun50i-h618-orangepi-zero3.dts │ │ ├── sun50i-h618-transpeed-8k618-t.dts │ │ └── sun50i-h64-remix-mini-pc.dts │ ├── altera │ │ ├── socfpga_stratix10.dtsi │ │ ├── socfpga_stratix10_socdk.dts │ │ ├── socfpga_stratix10_socdk_nand.dts │ │ └── socfpga_stratix10_swvp.dts │ ├── amazon │ │ ├── alpine-v2-evp.dts │ │ ├── alpine-v2.dtsi │ │ ├── alpine-v3-evp.dts │ │ └── alpine-v3.dtsi │ ├── amd │ │ ├── amd-overdrive-rev-b0.dts │ │ ├── amd-overdrive-rev-b1.dts │ │ ├── amd-seattle-clks.dtsi │ │ ├── amd-seattle-cpus.dtsi │ │ ├── amd-seattle-soc.dtsi │ │ ├── amd-seattle-xgbe-b.dtsi │ │ ├── elba-16core.dtsi │ │ ├── elba-asic-common.dtsi │ │ ├── elba-asic.dts │ │ ├── elba-flash-parts.dtsi │ │ └── elba.dtsi │ ├── amlogic │ │ ├── amlogic-c3-c302x-aw409.dts │ │ ├── amlogic-c3.dtsi │ │ ├── amlogic-t7-a311d2-an400.dts │ │ ├── amlogic-t7-a311d2-khadas-vim4.dts │ │ ├── amlogic-t7.dtsi │ │ ├── meson-a1-ad401.dts │ │ ├── meson-a1-ad402.dts │ │ ├── meson-a1.dtsi │ │ ├── meson-axg-jethome-jethub-j100.dts │ │ ├── meson-axg-jethome-jethub-j110-rev-2.dts │ │ ├── meson-axg-jethome-jethub-j110-rev-3.dts │ │ ├── meson-axg-jethome-jethub-j1xx.dtsi │ │ ├── meson-axg-s400.dts │ │ ├── meson-axg.dtsi │ │ ├── meson-g12-common.dtsi │ │ ├── meson-g12.dtsi │ │ ├── meson-g12a-fbx8am-brcm.dtso │ │ ├── meson-g12a-fbx8am-realtek.dtso │ │ ├── meson-g12a-fbx8am.dts │ │ ├── meson-g12a-radxa-zero.dts │ │ ├── meson-g12a-sei510.dts │ │ ├── meson-g12a-u200.dts │ │ ├── meson-g12a-x96-max.dts │ │ ├── meson-g12a.dtsi │ │ ├── meson-g12b-a311d-bananapi-m2s.dts │ │ ├── meson-g12b-a311d-khadas-vim3.dts │ │ ├── meson-g12b-a311d-libretech-cc.dts │ │ ├── meson-g12b-a311d.dtsi │ │ ├── meson-g12b-bananapi-cm4-cm4io.dts │ │ ├── meson-g12b-bananapi-cm4.dtsi │ │ ├── meson-g12b-bananapi.dtsi │ │ ├── meson-g12b-gsking-x.dts │ │ ├── meson-g12b-gtking-pro.dts │ │ ├── meson-g12b-gtking.dts │ │ ├── meson-g12b-khadas-vim3.dtsi │ │ ├── meson-g12b-odroid-go-ultra.dts │ │ ├── meson-g12b-odroid-n2-plus.dts │ │ ├── meson-g12b-odroid-n2.dts │ │ ├── meson-g12b-odroid-n2.dtsi │ │ ├── meson-g12b-odroid-n2l.dts │ │ ├── meson-g12b-odroid.dtsi │ │ ├── meson-g12b-radxa-zero2.dts │ │ ├── meson-g12b-s922x-bananapi-m2s.dts │ │ ├── meson-g12b-s922x-khadas-vim3.dts │ │ ├── meson-g12b-s922x.dtsi │ │ ├── meson-g12b-ugoos-am6.dts │ │ ├── meson-g12b-w400.dtsi │ │ ├── meson-g12b.dtsi │ │ ├── meson-gx-libretech-pc.dtsi │ │ ├── meson-gx-mali450.dtsi │ │ ├── meson-gx-p23x-q20x.dtsi │ │ ├── meson-gx.dtsi │ │ ├── meson-gxbb-kii-pro.dts │ │ ├── meson-gxbb-nanopi-k2.dts │ │ ├── meson-gxbb-nexbox-a95x.dts │ │ ├── meson-gxbb-odroidc2.dts │ │ ├── meson-gxbb-p200.dts │ │ ├── meson-gxbb-p201.dts │ │ ├── meson-gxbb-p20x.dtsi │ │ ├── meson-gxbb-vega-s95-meta.dts │ │ ├── meson-gxbb-vega-s95-pro.dts │ │ ├── meson-gxbb-vega-s95-telos.dts │ │ ├── meson-gxbb-vega-s95.dtsi │ │ ├── meson-gxbb-wetek-hub.dts │ │ ├── meson-gxbb-wetek-play2.dts │ │ ├── meson-gxbb-wetek.dtsi │ │ ├── meson-gxbb.dtsi │ │ ├── meson-gxl-mali.dtsi │ │ ├── meson-gxl-s805x-libretech-ac.dts │ │ ├── meson-gxl-s805x-p241.dts │ │ ├── meson-gxl-s805x.dtsi │ │ ├── meson-gxl-s905d-libretech-pc.dts │ │ ├── meson-gxl-s905d-mecool-kii-pro.dts │ │ ├── meson-gxl-s905d-p230.dts │ │ ├── meson-gxl-s905d-p231.dts │ │ ├── meson-gxl-s905d-phicomm-n1.dts │ │ ├── meson-gxl-s905d-sml5442tw.dts │ │ ├── meson-gxl-s905d-vero4k-plus.dts │ │ ├── meson-gxl-s905d.dtsi │ │ ├── meson-gxl-s905w-jethome-jethub-j80.dts │ │ ├── meson-gxl-s905w-p281.dts │ │ ├── meson-gxl-s905w-tx3-mini.dts │ │ ├── meson-gxl-s905x-hwacom-amazetv.dts │ │ ├── meson-gxl-s905x-khadas-vim.dts │ │ ├── meson-gxl-s905x-libretech-cc-v2.dts │ │ ├── meson-gxl-s905x-libretech-cc.dts │ │ ├── meson-gxl-s905x-nexbox-a95x.dts │ │ ├── meson-gxl-s905x-p212.dts │ │ ├── meson-gxl-s905x-p212.dtsi │ │ ├── meson-gxl-s905x.dtsi │ │ ├── meson-gxl.dtsi │ │ ├── meson-gxm-gt1-ultimate.dts │ │ ├── meson-gxm-khadas-vim2.dts │ │ ├── meson-gxm-mecool-kiii-pro.dts │ │ ├── meson-gxm-minix-neo-u9h.dts │ │ ├── meson-gxm-nexbox-a1.dts │ │ ├── meson-gxm-q200.dts │ │ ├── meson-gxm-q201.dts │ │ ├── meson-gxm-rbox-pro.dts │ │ ├── meson-gxm-s912-libretech-pc.dts │ │ ├── meson-gxm-vega-s96.dts │ │ ├── meson-gxm-wetek-core2.dts │ │ ├── meson-gxm.dtsi │ │ ├── meson-khadas-vim3.dtsi │ │ ├── meson-libretech-cottonwood.dtsi │ │ ├── meson-s4-s805x2-aq222.dts │ │ ├── meson-s4.dtsi │ │ ├── meson-sm1-a95xf3-air-gbit.dts │ │ ├── meson-sm1-a95xf3-air.dts │ │ ├── meson-sm1-ac2xx.dtsi │ │ ├── meson-sm1-bananapi-m2-pro.dts │ │ ├── meson-sm1-bananapi-m5.dts │ │ ├── meson-sm1-bananapi.dtsi │ │ ├── meson-sm1-h96-max.dts │ │ ├── meson-sm1-khadas-vim3l.dts │ │ ├── meson-sm1-odroid-c4.dts │ │ ├── meson-sm1-odroid-hc4.dts │ │ ├── meson-sm1-odroid.dtsi │ │ ├── meson-sm1-s905d3-libretech-cc.dts │ │ ├── meson-sm1-sei610.dts │ │ ├── meson-sm1-x96-air-gbit.dts │ │ ├── meson-sm1-x96-air.dts │ │ └── meson-sm1.dtsi │ ├── apm │ │ ├── apm-merlin.dts │ │ ├── apm-mustang.dts │ │ ├── apm-shadowcat.dtsi │ │ └── apm-storm.dtsi │ ├── apple │ │ ├── multi-die-cpp.h │ │ ├── t6000-j314s.dts │ │ ├── t6000-j316s.dts │ │ ├── t6000.dtsi │ │ ├── t6001-j314c.dts │ │ ├── t6001-j316c.dts │ │ ├── t6001-j375c.dts │ │ ├── t6001.dtsi │ │ ├── t6002-j375d.dts │ │ ├── t6002.dtsi │ │ ├── t600x-common.dtsi │ │ ├── t600x-die0.dtsi │ │ ├── t600x-dieX.dtsi │ │ ├── t600x-gpio-pins.dtsi │ │ ├── t600x-j314-j316.dtsi │ │ ├── t600x-j375.dtsi │ │ ├── t600x-nvme.dtsi │ │ ├── t600x-pmgr.dtsi │ │ ├── t8103-j274.dts │ │ ├── t8103-j293.dts │ │ ├── t8103-j313.dts │ │ ├── t8103-j456.dts │ │ ├── t8103-j457.dts │ │ ├── t8103-jxxx.dtsi │ │ ├── t8103-pmgr.dtsi │ │ ├── t8103.dtsi │ │ ├── t8112-j413.dts │ │ ├── t8112-j473.dts │ │ ├── t8112-j493.dts │ │ ├── t8112-jxxx.dtsi │ │ ├── t8112-pmgr.dtsi │ │ └── t8112.dtsi │ ├── arm │ │ ├── corstone1000-fvp.dts │ │ ├── corstone1000-mps3.dts │ │ ├── corstone1000.dtsi │ │ ├── foundation-v8-gicv2.dtsi │ │ ├── foundation-v8-gicv3-psci.dts │ │ ├── foundation-v8-gicv3.dts │ │ ├── foundation-v8-gicv3.dtsi │ │ ├── foundation-v8-psci.dts │ │ ├── foundation-v8-psci.dtsi │ │ ├── foundation-v8-spin-table.dtsi │ │ ├── foundation-v8.dts │ │ ├── foundation-v8.dtsi │ │ ├── fvp-base-revc.dts │ │ ├── juno-base.dtsi │ │ ├── juno-clocks.dtsi │ │ ├── juno-cs-r1r2.dtsi │ │ ├── juno-motherboard.dtsi │ │ ├── juno-r1-scmi.dts │ │ ├── juno-r1.dts │ │ ├── juno-r2-scmi.dts │ │ ├── juno-r2.dts │ │ ├── juno-scmi.dts │ │ ├── juno-scmi.dtsi │ │ ├── juno.dts │ │ ├── rtsm_ve-aemv8a.dts │ │ ├── rtsm_ve-motherboard-rs2.dtsi │ │ ├── rtsm_ve-motherboard.dtsi │ │ └── vexpress-v2f-1xv7-ca53x2.dts │ ├── bitmain │ │ ├── bm1880-sophon-edge.dts │ │ └── bm1880.dtsi │ ├── broadcom │ │ ├── bcm2711-rpi-4-b.dts │ │ ├── bcm2711-rpi-400.dts │ │ ├── bcm2711-rpi-cm4-io.dts │ │ ├── bcm2837-rpi-3-a-plus.dts │ │ ├── bcm2837-rpi-3-b-plus.dts │ │ ├── bcm2837-rpi-3-b.dts │ │ ├── bcm2837-rpi-cm3-io3.dts │ │ ├── bcm2837-rpi-zero-2-w.dts │ │ ├── bcmbca │ │ │ ├── bcm4906-netgear-r8000p.dts │ │ │ ├── bcm4906-tplink-archer-c2300-v1.dts │ │ │ ├── bcm4906.dtsi │ │ │ ├── bcm4908-asus-gt-ac5300.dts │ │ │ ├── bcm4908-netgear-raxe500.dts │ │ │ ├── bcm4908.dtsi │ │ │ ├── bcm4912-asus-gt-ax6000.dts │ │ │ ├── bcm4912.dtsi │ │ │ ├── bcm63146.dtsi │ │ │ ├── bcm63158.dtsi │ │ │ ├── bcm6813.dtsi │ │ │ ├── bcm6856.dtsi │ │ │ ├── bcm6858.dtsi │ │ │ ├── bcm94908.dts │ │ │ ├── bcm94912.dts │ │ │ ├── bcm963146.dts │ │ │ ├── bcm963158.dts │ │ │ ├── bcm96813.dts │ │ │ ├── bcm96856.dts │ │ │ └── bcm96858.dts │ │ ├── northstar2 │ │ │ ├── ns2-clock.dtsi │ │ │ ├── ns2-svk.dts │ │ │ ├── ns2-xmc.dts │ │ │ └── ns2.dtsi │ │ └── stingray │ │ │ ├── bcm958742-base.dtsi │ │ │ ├── bcm958742k.dts │ │ │ ├── bcm958742t.dts │ │ │ ├── bcm958802a802x.dts │ │ │ ├── stingray-board-base.dtsi │ │ │ ├── stingray-clock.dtsi │ │ │ ├── stingray-fs4.dtsi │ │ │ ├── stingray-pcie.dtsi │ │ │ ├── stingray-pinctrl.dtsi │ │ │ ├── stingray-usb.dtsi │ │ │ └── stingray.dtsi │ ├── cavium │ │ ├── thunder-88xx.dts │ │ ├── thunder-88xx.dtsi │ │ ├── thunder2-99xx.dts │ │ └── thunder2-99xx.dtsi │ ├── exynos │ │ ├── exynos-pinctrl.h │ │ ├── exynos5433-bus.dtsi │ │ ├── exynos5433-pinctrl.dtsi │ │ ├── exynos5433-tm2-common.dtsi │ │ ├── exynos5433-tm2.dts │ │ ├── exynos5433-tm2e.dts │ │ ├── exynos5433-tmu.dtsi │ │ ├── exynos5433.dtsi │ │ ├── exynos7-espresso.dts │ │ ├── exynos7-pinctrl.dtsi │ │ ├── exynos7-trip-points.dtsi │ │ ├── exynos7.dtsi │ │ ├── exynos7885-jackpotlte.dts │ │ ├── exynos7885-pinctrl.dtsi │ │ ├── exynos7885.dtsi │ │ ├── exynos850-e850-96.dts │ │ ├── exynos850-pinctrl.dtsi │ │ ├── exynos850.dtsi │ │ ├── exynosautov9-pinctrl.dtsi │ │ ├── exynosautov9-sadk.dts │ │ ├── exynosautov9.dtsi │ │ ├── exynosautov920-pinctrl.dtsi │ │ ├── exynosautov920-sadk.dts │ │ ├── exynosautov920.dtsi │ │ └── google │ │ │ ├── gs101-oriole.dts │ │ │ ├── gs101-pinctrl.dtsi │ │ │ ├── gs101-pinctrl.h │ │ │ └── gs101.dtsi │ ├── freescale │ │ ├── fsl-ls1012a-frdm.dts │ │ ├── fsl-ls1012a-frwy.dts │ │ ├── fsl-ls1012a-oxalis.dts │ │ ├── fsl-ls1012a-qds.dts │ │ ├── fsl-ls1012a-rdb.dts │ │ ├── fsl-ls1012a.dtsi │ │ ├── fsl-ls1028a-kontron-kbox-a-230-ls.dts │ │ ├── fsl-ls1028a-kontron-sl28-var1.dts │ │ ├── fsl-ls1028a-kontron-sl28-var2.dts │ │ ├── fsl-ls1028a-kontron-sl28-var3-ads2.dts │ │ ├── fsl-ls1028a-kontron-sl28-var4.dts │ │ ├── fsl-ls1028a-kontron-sl28.dts │ │ ├── fsl-ls1028a-qds-13bb.dtso │ │ ├── fsl-ls1028a-qds-65bb.dtso │ │ ├── fsl-ls1028a-qds-7777.dtso │ │ ├── fsl-ls1028a-qds-85bb.dtso │ │ ├── fsl-ls1028a-qds-899b.dtso │ │ ├── fsl-ls1028a-qds-9999.dtso │ │ ├── fsl-ls1028a-qds.dts │ │ ├── fsl-ls1028a-rdb.dts │ │ ├── fsl-ls1028a.dtsi │ │ ├── fsl-ls1043-post.dtsi │ │ ├── fsl-ls1043a-qds.dts │ │ ├── fsl-ls1043a-rdb.dts │ │ ├── fsl-ls1043a-tqmls1043a-mbls10xxa.dts │ │ ├── fsl-ls1043a-tqmls1043a.dtsi │ │ ├── fsl-ls1043a.dtsi │ │ ├── fsl-ls1046-post.dtsi │ │ ├── fsl-ls1046a-frwy.dts │ │ ├── fsl-ls1046a-qds.dts │ │ ├── fsl-ls1046a-rdb.dts │ │ ├── fsl-ls1046a-tqmls1046a-mbls10xxa.dts │ │ ├── fsl-ls1046a-tqmls1046a.dtsi │ │ ├── fsl-ls1046a.dtsi │ │ ├── fsl-ls1088a-qds.dts │ │ ├── fsl-ls1088a-rdb.dts │ │ ├── fsl-ls1088a-ten64.dts │ │ ├── fsl-ls1088a-tqmls1088a-mbls10xxa.dts │ │ ├── fsl-ls1088a-tqmls1088a.dtsi │ │ ├── fsl-ls1088a.dtsi │ │ ├── fsl-ls2080a-qds.dts │ │ ├── fsl-ls2080a-rdb.dts │ │ ├── fsl-ls2080a-simu.dts │ │ ├── fsl-ls2080a.dtsi │ │ ├── fsl-ls2081a-rdb.dts │ │ ├── fsl-ls2088a-qds.dts │ │ ├── fsl-ls2088a-rdb.dts │ │ ├── fsl-ls2088a.dtsi │ │ ├── fsl-ls208xa-qds.dtsi │ │ ├── fsl-ls208xa-rdb.dtsi │ │ ├── fsl-ls208xa.dtsi │ │ ├── fsl-lx2160a-bluebox3-rev-a.dts │ │ ├── fsl-lx2160a-bluebox3.dts │ │ ├── fsl-lx2160a-cex7.dtsi │ │ ├── fsl-lx2160a-clearfog-cx.dts │ │ ├── fsl-lx2160a-clearfog-itx.dtsi │ │ ├── fsl-lx2160a-honeycomb.dts │ │ ├── fsl-lx2160a-qds.dts │ │ ├── fsl-lx2160a-rdb.dts │ │ ├── fsl-lx2160a-tqmlx2160a-mblx2160a.dts │ │ ├── fsl-lx2160a-tqmlx2160a-mblx2160a_12_x_x.dtso │ │ ├── fsl-lx2160a-tqmlx2160a-mblx2160a_14_x_x.dtso │ │ ├── fsl-lx2160a-tqmlx2160a-mblx2160a_x_11_x.dtso │ │ ├── fsl-lx2160a-tqmlx2160a-mblx2160a_x_7_x.dtso │ │ ├── fsl-lx2160a-tqmlx2160a-mblx2160a_x_8_x.dtso │ │ ├── fsl-lx2160a-tqmlx2160a.dtsi │ │ ├── fsl-lx2160a.dtsi │ │ ├── fsl-lx2162a-clearfog.dts │ │ ├── fsl-lx2162a-qds.dts │ │ ├── fsl-lx2162a-sr-som.dtsi │ │ ├── imx8-apalis-eval-v1.1.dtsi │ │ ├── imx8-apalis-eval-v1.2.dtsi │ │ ├── imx8-apalis-eval.dtsi │ │ ├── imx8-apalis-ixora-v1.1.dtsi │ │ ├── imx8-apalis-ixora-v1.2.dtsi │ │ ├── imx8-apalis-v1.1.dtsi │ │ ├── imx8-ss-adma.dtsi │ │ ├── imx8-ss-audio.dtsi │ │ ├── imx8-ss-conn.dtsi │ │ ├── imx8-ss-ddr.dtsi │ │ ├── imx8-ss-dma.dtsi │ │ ├── imx8-ss-gpu0.dtsi │ │ ├── imx8-ss-img.dtsi │ │ ├── imx8-ss-lsio.dtsi │ │ ├── imx8-ss-vpu.dtsi │ │ ├── imx8dxl-evk.dts │ │ ├── imx8dxl-ss-adma.dtsi │ │ ├── imx8dxl-ss-conn.dtsi │ │ ├── imx8dxl-ss-ddr.dtsi │ │ ├── imx8dxl-ss-lsio.dtsi │ │ ├── imx8dxl.dtsi │ │ ├── imx8dxp-tqma8xdp-mba8xx.dts │ │ ├── imx8dxp-tqma8xdp.dtsi │ │ ├── imx8dxp.dtsi │ │ ├── imx8mm-beacon-baseboard.dtsi │ │ ├── imx8mm-beacon-kit.dts │ │ ├── imx8mm-beacon-som.dtsi │ │ ├── imx8mm-data-modul-edm-sbc.dts │ │ ├── imx8mm-ddr4-evk.dts │ │ ├── imx8mm-emcon-avari.dts │ │ ├── imx8mm-emcon-avari.dtsi │ │ ├── imx8mm-emcon.dtsi │ │ ├── imx8mm-emtop-baseboard.dts │ │ ├── imx8mm-emtop-som.dtsi │ │ ├── imx8mm-evk.dts │ │ ├── imx8mm-evk.dtsi │ │ ├── imx8mm-evkb.dts │ │ ├── imx8mm-icore-mx8mm-ctouch2.dts │ │ ├── imx8mm-icore-mx8mm-edimm2.2.dts │ │ ├── imx8mm-icore-mx8mm.dtsi │ │ ├── imx8mm-innocomm-wb15-evk.dts │ │ ├── imx8mm-innocomm-wb15.dtsi │ │ ├── imx8mm-kontron-bl-osm-s.dts │ │ ├── imx8mm-kontron-bl.dts │ │ ├── imx8mm-kontron-osm-s.dtsi │ │ ├── imx8mm-kontron-sl.dtsi │ │ ├── imx8mm-mx8menlo.dts │ │ ├── imx8mm-nitrogen-r2.dts │ │ ├── imx8mm-overdrive.dtsi │ │ ├── imx8mm-phg.dts │ │ ├── imx8mm-phyboard-polis-rdk.dts │ │ ├── imx8mm-phycore-som.dtsi │ │ ├── imx8mm-phygate-tauri-l.dts │ │ ├── imx8mm-pinfunc.h │ │ ├── imx8mm-prt8mm.dts │ │ ├── imx8mm-tqma8mqml-mba8mx-lvds-tm070jvhg33.dtso │ │ ├── imx8mm-tqma8mqml-mba8mx.dts │ │ ├── imx8mm-tqma8mqml.dtsi │ │ ├── imx8mm-var-som-symphony.dts │ │ ├── imx8mm-var-som.dtsi │ │ ├── imx8mm-venice-gw700x.dtsi │ │ ├── imx8mm-venice-gw71xx-0x.dts │ │ ├── imx8mm-venice-gw71xx.dtsi │ │ ├── imx8mm-venice-gw72xx-0x-imx219.dtso │ │ ├── imx8mm-venice-gw72xx-0x-rpidsi.dtso │ │ ├── imx8mm-venice-gw72xx-0x-rs232-rts.dtso │ │ ├── imx8mm-venice-gw72xx-0x-rs422.dtso │ │ ├── imx8mm-venice-gw72xx-0x-rs485.dtso │ │ ├── imx8mm-venice-gw72xx-0x.dts │ │ ├── imx8mm-venice-gw72xx.dtsi │ │ ├── imx8mm-venice-gw73xx-0x-imx219.dtso │ │ ├── imx8mm-venice-gw73xx-0x-rpidsi.dtso │ │ ├── imx8mm-venice-gw73xx-0x-rs232-rts.dtso │ │ ├── imx8mm-venice-gw73xx-0x-rs422.dtso │ │ ├── imx8mm-venice-gw73xx-0x-rs485.dtso │ │ ├── imx8mm-venice-gw73xx-0x.dts │ │ ├── imx8mm-venice-gw73xx.dtsi │ │ ├── imx8mm-venice-gw7901.dts │ │ ├── imx8mm-venice-gw7902.dts │ │ ├── imx8mm-venice-gw7903.dts │ │ ├── imx8mm-venice-gw7904.dts │ │ ├── imx8mm-venice-gw7905-0x.dts │ │ ├── imx8mm-venice-gw7905.dtsi │ │ ├── imx8mm-verdin-dahlia.dtsi │ │ ├── imx8mm-verdin-dev.dtsi │ │ ├── imx8mm-verdin-mallow.dtsi │ │ ├── imx8mm-verdin-nonwifi-dahlia.dts │ │ ├── imx8mm-verdin-nonwifi-dev.dts │ │ ├── imx8mm-verdin-nonwifi-mallow.dts │ │ ├── imx8mm-verdin-nonwifi-yavia.dts │ │ ├── imx8mm-verdin-nonwifi.dtsi │ │ ├── imx8mm-verdin-wifi-dahlia.dts │ │ ├── imx8mm-verdin-wifi-dev.dts │ │ ├── imx8mm-verdin-wifi-mallow.dts │ │ ├── imx8mm-verdin-wifi-yavia.dts │ │ ├── imx8mm-verdin-wifi.dtsi │ │ ├── imx8mm-verdin-yavia.dtsi │ │ ├── imx8mm-verdin.dtsi │ │ ├── imx8mm.dtsi │ │ ├── imx8mn-beacon-baseboard.dtsi │ │ ├── imx8mn-beacon-kit.dts │ │ ├── imx8mn-beacon-som.dtsi │ │ ├── imx8mn-bsh-smm-s2-common.dtsi │ │ ├── imx8mn-bsh-smm-s2-display.dtsi │ │ ├── imx8mn-bsh-smm-s2.dts │ │ ├── imx8mn-bsh-smm-s2pro.dts │ │ ├── imx8mn-ddr3l-evk.dts │ │ ├── imx8mn-ddr4-evk.dts │ │ ├── imx8mn-dimonoff-gateway-evk.dts │ │ ├── imx8mn-evk.dts │ │ ├── imx8mn-evk.dtsi │ │ ├── imx8mn-overdrive.dtsi │ │ ├── imx8mn-pinfunc.h │ │ ├── imx8mn-rve-gateway.dts │ │ ├── imx8mn-tqma8mqnl-mba8mx-lvds-tm070jvhg33.dtso │ │ ├── imx8mn-tqma8mqnl-mba8mx-usbotg.dtso │ │ ├── imx8mn-tqma8mqnl-mba8mx.dts │ │ ├── imx8mn-tqma8mqnl.dtsi │ │ ├── imx8mn-var-som-symphony.dts │ │ ├── imx8mn-var-som.dtsi │ │ ├── imx8mn-venice-gw7902.dts │ │ ├── imx8mn.dtsi │ │ ├── imx8mp-beacon-kit.dts │ │ ├── imx8mp-beacon-som.dtsi │ │ ├── imx8mp-data-modul-edm-sbc.dts │ │ ├── imx8mp-debix-model-a.dts │ │ ├── imx8mp-debix-som-a-bmb-08.dts │ │ ├── imx8mp-debix-som-a.dtsi │ │ ├── imx8mp-dhcom-pdk2.dts │ │ ├── imx8mp-dhcom-pdk3.dts │ │ ├── imx8mp-dhcom-som.dtsi │ │ ├── imx8mp-evk.dts │ │ ├── imx8mp-icore-mx8mp-edimm2.2.dts │ │ ├── imx8mp-icore-mx8mp.dtsi │ │ ├── imx8mp-msc-sm2s-14N0600E.dtsi │ │ ├── imx8mp-msc-sm2s-ep1.dts │ │ ├── imx8mp-msc-sm2s.dtsi │ │ ├── imx8mp-phyboard-pollux-rdk.dts │ │ ├── imx8mp-phycore-som.dtsi │ │ ├── imx8mp-pinfunc.h │ │ ├── imx8mp-skov-reva.dtsi │ │ ├── imx8mp-skov-revb-hdmi.dts │ │ ├── imx8mp-skov-revb-lt6.dts │ │ ├── imx8mp-skov-revb-mi1010ait-1cp1.dts │ │ ├── imx8mp-tqma8mpql-mba8mpxl-lvds-g133han01.dtso │ │ ├── imx8mp-tqma8mpql-mba8mpxl-lvds.dtso │ │ ├── imx8mp-tqma8mpql-mba8mpxl.dts │ │ ├── imx8mp-tqma8mpql.dtsi │ │ ├── imx8mp-venice-gw702x.dtsi │ │ ├── imx8mp-venice-gw71xx-2x.dts │ │ ├── imx8mp-venice-gw71xx.dtsi │ │ ├── imx8mp-venice-gw72xx-2x.dts │ │ ├── imx8mp-venice-gw72xx.dtsi │ │ ├── imx8mp-venice-gw73xx-2x.dts │ │ ├── imx8mp-venice-gw73xx.dtsi │ │ ├── imx8mp-venice-gw74xx-imx219.dtso │ │ ├── imx8mp-venice-gw74xx-rpidsi.dtso │ │ ├── imx8mp-venice-gw74xx.dts │ │ ├── imx8mp-venice-gw7905-2x.dts │ │ ├── imx8mp-venice-gw7905.dtsi │ │ ├── imx8mp-verdin-dahlia.dtsi │ │ ├── imx8mp-verdin-dev.dtsi │ │ ├── imx8mp-verdin-mallow.dtsi │ │ ├── imx8mp-verdin-nonwifi-dahlia.dts │ │ ├── imx8mp-verdin-nonwifi-dev.dts │ │ ├── imx8mp-verdin-nonwifi-mallow.dts │ │ ├── imx8mp-verdin-nonwifi-yavia.dts │ │ ├── imx8mp-verdin-nonwifi.dtsi │ │ ├── imx8mp-verdin-wifi-dahlia.dts │ │ ├── imx8mp-verdin-wifi-dev.dts │ │ ├── imx8mp-verdin-wifi-mallow.dts │ │ ├── imx8mp-verdin-wifi-yavia.dts │ │ ├── imx8mp-verdin-wifi.dtsi │ │ ├── imx8mp-verdin-yavia.dtsi │ │ ├── imx8mp-verdin.dtsi │ │ ├── imx8mp.dtsi │ │ ├── imx8mq-evk.dts │ │ ├── imx8mq-hummingboard-pulse.dts │ │ ├── imx8mq-kontron-pitx-imx8m.dts │ │ ├── imx8mq-librem5-devkit.dts │ │ ├── imx8mq-librem5-r2.dts │ │ ├── imx8mq-librem5-r3.dts │ │ ├── imx8mq-librem5-r3.dtsi │ │ ├── imx8mq-librem5-r4.dts │ │ ├── imx8mq-librem5.dtsi │ │ ├── imx8mq-mnt-reform2.dts │ │ ├── imx8mq-nitrogen-som.dtsi │ │ ├── imx8mq-nitrogen.dts │ │ ├── imx8mq-phanbell.dts │ │ ├── imx8mq-pico-pi.dts │ │ ├── imx8mq-pinfunc.h │ │ ├── imx8mq-sr-som.dtsi │ │ ├── imx8mq-thor96.dts │ │ ├── imx8mq-tqma8mq-mba8mx-lvds-tm070jvhg33.dtso │ │ ├── imx8mq-tqma8mq-mba8mx.dts │ │ ├── imx8mq-tqma8mq.dtsi │ │ ├── imx8mq-zii-ultra-rmb3.dts │ │ ├── imx8mq-zii-ultra-zest.dts │ │ ├── imx8mq-zii-ultra.dtsi │ │ ├── imx8mq.dtsi │ │ ├── imx8qm-apalis-eval-v1.2.dts │ │ ├── imx8qm-apalis-eval.dts │ │ ├── imx8qm-apalis-ixora-v1.1.dts │ │ ├── imx8qm-apalis-v1.1-eval-v1.2.dts │ │ ├── imx8qm-apalis-v1.1-eval.dts │ │ ├── imx8qm-apalis-v1.1-ixora-v1.1.dts │ │ ├── imx8qm-apalis-v1.1-ixora-v1.2.dts │ │ ├── imx8qm-apalis-v1.1.dtsi │ │ ├── imx8qm-apalis.dtsi │ │ ├── imx8qm-mek.dts │ │ ├── imx8qm-ss-conn.dtsi │ │ ├── imx8qm-ss-dma.dtsi │ │ ├── imx8qm-ss-img.dtsi │ │ ├── imx8qm-ss-lsio.dtsi │ │ ├── imx8qm.dtsi │ │ ├── imx8qxp-ai_ml.dts │ │ ├── imx8qxp-colibri-aster.dts │ │ ├── imx8qxp-colibri-eval-v3.dts │ │ ├── imx8qxp-colibri-iris-v2.dts │ │ ├── imx8qxp-colibri-iris.dts │ │ ├── imx8qxp-colibri.dtsi │ │ ├── imx8qxp-mek.dts │ │ ├── imx8qxp-ss-adma.dtsi │ │ ├── imx8qxp-ss-conn.dtsi │ │ ├── imx8qxp-ss-img.dtsi │ │ ├── imx8qxp-ss-lsio.dtsi │ │ ├── imx8qxp-ss-vpu.dtsi │ │ ├── imx8qxp-tqma8xqp-mba8xx.dts │ │ ├── imx8qxp-tqma8xqp.dtsi │ │ ├── imx8qxp.dtsi │ │ ├── imx8ulp-evk.dts │ │ ├── imx8ulp-pinfunc.h │ │ ├── imx8ulp.dtsi │ │ ├── imx8x-colibri-aster.dtsi │ │ ├── imx8x-colibri-eval-v3.dtsi │ │ ├── imx8x-colibri-iris-v2.dtsi │ │ ├── imx8x-colibri-iris.dtsi │ │ ├── imx8x-colibri.dtsi │ │ ├── imx93-11x11-evk.dts │ │ ├── imx93-phyboard-segin.dts │ │ ├── imx93-phycore-som.dtsi │ │ ├── imx93-pinfunc.h │ │ ├── imx93-tqma9352-mba93xxca.dts │ │ ├── imx93-tqma9352-mba93xxla.dts │ │ ├── imx93-tqma9352.dtsi │ │ ├── imx93-var-som-symphony.dts │ │ ├── imx93-var-som.dtsi │ │ ├── imx93.dtsi │ │ ├── mba8mx.dtsi │ │ ├── mba8xx.dtsi │ │ ├── qoriq-bman-portals.dtsi │ │ ├── qoriq-fman3-0-10g-0.dtsi │ │ ├── qoriq-fman3-0-10g-1.dtsi │ │ ├── qoriq-fman3-0-1g-0.dtsi │ │ ├── qoriq-fman3-0-1g-1.dtsi │ │ ├── qoriq-fman3-0-1g-2.dtsi │ │ ├── qoriq-fman3-0-1g-3.dtsi │ │ ├── qoriq-fman3-0-1g-4.dtsi │ │ ├── qoriq-fman3-0-1g-5.dtsi │ │ ├── qoriq-fman3-0.dtsi │ │ ├── qoriq-qman-portals.dtsi │ │ ├── s32g2.dtsi │ │ ├── s32g274a-evb.dts │ │ ├── s32g274a-rdb2.dts │ │ ├── s32v234-evb.dts │ │ ├── s32v234.dtsi │ │ ├── tqma8xx.dtsi │ │ ├── tqmls104xa-mbls10xxa-fman.dtsi │ │ ├── tqmls1088a-mbls10xxa-mc.dtsi │ │ ├── tqmls10xxa-mbls10xxa.dtsi │ │ └── tqmls10xxa.dtsi │ ├── hisilicon │ │ ├── hi3660-coresight.dtsi │ │ ├── hi3660-hikey960.dts │ │ ├── hi3660.dtsi │ │ ├── hi3670-hikey970.dts │ │ ├── hi3670.dtsi │ │ ├── hi3798cv200-poplar.dts │ │ ├── hi3798cv200.dtsi │ │ ├── hi6220-coresight.dtsi │ │ ├── hi6220-hikey.dts │ │ ├── hi6220.dtsi │ │ ├── hikey-pinctrl.dtsi │ │ ├── hikey960-pinctrl.dtsi │ │ ├── hikey970-pinctrl.dtsi │ │ ├── hikey970-pmic.dtsi │ │ ├── hip05-d02.dts │ │ ├── hip05.dtsi │ │ ├── hip06-d03.dts │ │ ├── hip06.dtsi │ │ ├── hip07-d05.dts │ │ ├── hip07.dtsi │ │ └── poplar-pinctrl.dtsi │ ├── intel │ │ ├── keembay-evm.dts │ │ ├── keembay-soc.dtsi │ │ ├── socfpga_agilex.dtsi │ │ ├── socfpga_agilex5.dtsi │ │ ├── socfpga_agilex5_socdk.dts │ │ ├── socfpga_agilex_n6000.dts │ │ ├── socfpga_agilex_socdk.dts │ │ ├── socfpga_agilex_socdk_nand.dts │ │ └── socfpga_n5x_socdk.dts │ ├── lg │ │ ├── lg1312-ref.dts │ │ ├── lg1312.dtsi │ │ ├── lg1313-ref.dts │ │ └── lg1313.dtsi │ ├── marvell │ │ ├── ac5-98dx25xx.dtsi │ │ ├── ac5-98dx35xx-rd.dts │ │ ├── ac5-98dx35xx.dtsi │ │ ├── ac5x-rd-carrier-cn9131.dts │ │ ├── ac5x-rd-carrier.dtsi │ │ ├── armada-371x.dtsi │ │ ├── armada-3720-db.dts │ │ ├── armada-3720-eDPU.dts │ │ ├── armada-3720-espressobin-emmc.dts │ │ ├── armada-3720-espressobin-ultra.dts │ │ ├── armada-3720-espressobin-v7-emmc.dts │ │ ├── armada-3720-espressobin-v7.dts │ │ ├── armada-3720-espressobin.dts │ │ ├── armada-3720-espressobin.dtsi │ │ ├── armada-3720-gl-mv1000.dts │ │ ├── armada-3720-turris-mox.dts │ │ ├── armada-3720-uDPU.dts │ │ ├── armada-3720-uDPU.dtsi │ │ ├── armada-372x.dtsi │ │ ├── armada-37xx.dtsi │ │ ├── armada-7020.dtsi │ │ ├── armada-7040-db.dts │ │ ├── armada-7040-mochabin.dts │ │ ├── armada-7040.dtsi │ │ ├── armada-70x0.dtsi │ │ ├── armada-8020.dtsi │ │ ├── armada-8040-clearfog-gt-8k.dts │ │ ├── armada-8040-db.dts │ │ ├── armada-8040-mcbin-singleshot.dts │ │ ├── armada-8040-mcbin.dts │ │ ├── armada-8040-mcbin.dtsi │ │ ├── armada-8040-puzzle-m801.dts │ │ ├── armada-8040.dtsi │ │ ├── armada-8080-db.dts │ │ ├── armada-8080.dtsi │ │ ├── armada-80x0.dtsi │ │ ├── armada-ap806-dual.dtsi │ │ ├── armada-ap806-quad.dtsi │ │ ├── armada-ap806.dtsi │ │ ├── armada-ap807-quad.dtsi │ │ ├── armada-ap807.dtsi │ │ ├── armada-ap80x.dtsi │ │ ├── armada-ap810-ap0-octa-core.dtsi │ │ ├── armada-ap810-ap0.dtsi │ │ ├── armada-common.dtsi │ │ ├── armada-cp110.dtsi │ │ ├── armada-cp115.dtsi │ │ ├── armada-cp11x.dtsi │ │ ├── cn9130-crb-A.dts │ │ ├── cn9130-crb-B.dts │ │ ├── cn9130-crb.dtsi │ │ ├── cn9130-db-B.dts │ │ ├── cn9130-db-comexpress.dtsi │ │ ├── cn9130-db.dts │ │ ├── cn9130-db.dtsi │ │ ├── cn9130.dtsi │ │ ├── cn9131-db-B.dts │ │ ├── cn9131-db-comexpress.dtsi │ │ ├── cn9131-db.dts │ │ ├── cn9131-db.dtsi │ │ ├── cn9132-db-B.dts │ │ ├── cn9132-db.dts │ │ └── cn9132-db.dtsi │ ├── mediatek │ │ ├── mt2712-evb.dts │ │ ├── mt2712-pinfunc.h │ │ ├── mt2712e.dtsi │ │ ├── mt6331.dtsi │ │ ├── mt6357.dtsi │ │ ├── mt6358.dtsi │ │ ├── mt6359.dtsi │ │ ├── mt6380.dtsi │ │ ├── mt6755-evb.dts │ │ ├── mt6755.dtsi │ │ ├── mt6779-evb.dts │ │ ├── mt6779.dtsi │ │ ├── mt6795-evb.dts │ │ ├── mt6795-sony-xperia-m5.dts │ │ ├── mt6795.dtsi │ │ ├── mt6797-evb.dts │ │ ├── mt6797-x20-dev.dts │ │ ├── mt6797.dtsi │ │ ├── mt7622-bananapi-bpi-r64.dts │ │ ├── mt7622-rfb1.dts │ │ ├── mt7622.dtsi │ │ ├── mt7981b-xiaomi-ax3000t.dts │ │ ├── mt7981b.dtsi │ │ ├── mt7986a-acelink-ew-7886cax.dts │ │ ├── mt7986a-bananapi-bpi-r3-emmc.dtso │ │ ├── mt7986a-bananapi-bpi-r3-nand.dtso │ │ ├── mt7986a-bananapi-bpi-r3-nor.dtso │ │ ├── mt7986a-bananapi-bpi-r3-sd.dtso │ │ ├── mt7986a-bananapi-bpi-r3.dts │ │ ├── mt7986a-rfb.dts │ │ ├── mt7986a.dtsi │ │ ├── mt7986b-rfb.dts │ │ ├── mt7986b.dtsi │ │ ├── mt7988a-bananapi-bpi-r4.dts │ │ ├── mt7988a.dtsi │ │ ├── mt8167-pinfunc.h │ │ ├── mt8167-pumpkin.dts │ │ ├── mt8167.dtsi │ │ ├── mt8173-elm-hana-rev7.dts │ │ ├── mt8173-elm-hana.dts │ │ ├── mt8173-elm-hana.dtsi │ │ ├── mt8173-elm.dts │ │ ├── mt8173-elm.dtsi │ │ ├── mt8173-evb.dts │ │ ├── mt8173-pinfunc.h │ │ ├── mt8173.dtsi │ │ ├── mt8183-evb.dts │ │ ├── mt8183-kukui-audio-da7219-max98357a.dtsi │ │ ├── mt8183-kukui-audio-da7219-rt1015p.dtsi │ │ ├── mt8183-kukui-audio-da7219.dtsi │ │ ├── mt8183-kukui-audio-max98357a.dtsi │ │ ├── mt8183-kukui-audio-rt1015p.dtsi │ │ ├── mt8183-kukui-audio-ts3a227e-max98357a.dtsi │ │ ├── mt8183-kukui-audio-ts3a227e-rt1015p.dtsi │ │ ├── mt8183-kukui-audio-ts3a227e.dtsi │ │ ├── mt8183-kukui-jacuzzi-burnet.dts │ │ ├── mt8183-kukui-jacuzzi-cozmo.dts │ │ ├── mt8183-kukui-jacuzzi-damu.dts │ │ ├── mt8183-kukui-jacuzzi-fennel-sku1.dts │ │ ├── mt8183-kukui-jacuzzi-fennel-sku6.dts │ │ ├── mt8183-kukui-jacuzzi-fennel-sku7.dts │ │ ├── mt8183-kukui-jacuzzi-fennel.dtsi │ │ ├── mt8183-kukui-jacuzzi-fennel14-sku2.dts │ │ ├── mt8183-kukui-jacuzzi-fennel14.dts │ │ ├── mt8183-kukui-jacuzzi-juniper-sku16.dts │ │ ├── mt8183-kukui-jacuzzi-juniper.dtsi │ │ ├── mt8183-kukui-jacuzzi-kappa.dts │ │ ├── mt8183-kukui-jacuzzi-kenzo.dts │ │ ├── mt8183-kukui-jacuzzi-makomo-sku0.dts │ │ ├── mt8183-kukui-jacuzzi-makomo-sku1.dts │ │ ├── mt8183-kukui-jacuzzi-pico.dts │ │ ├── mt8183-kukui-jacuzzi-pico6.dts │ │ ├── mt8183-kukui-jacuzzi-willow-sku0.dts │ │ ├── mt8183-kukui-jacuzzi-willow-sku1.dts │ │ ├── mt8183-kukui-jacuzzi-willow.dtsi │ │ ├── mt8183-kukui-jacuzzi.dtsi │ │ ├── mt8183-kukui-kakadu-sku22.dts │ │ ├── mt8183-kukui-kakadu.dts │ │ ├── mt8183-kukui-kakadu.dtsi │ │ ├── mt8183-kukui-katsu-sku32.dts │ │ ├── mt8183-kukui-katsu-sku38.dts │ │ ├── mt8183-kukui-kodama-sku16.dts │ │ ├── mt8183-kukui-kodama-sku272.dts │ │ ├── mt8183-kukui-kodama-sku288.dts │ │ ├── mt8183-kukui-kodama-sku32.dts │ │ ├── mt8183-kukui-kodama.dtsi │ │ ├── mt8183-kukui-krane-sku0.dts │ │ ├── mt8183-kukui-krane-sku176.dts │ │ ├── mt8183-kukui-krane.dtsi │ │ ├── mt8183-kukui.dtsi │ │ ├── mt8183-pumpkin.dts │ │ ├── mt8183.dtsi │ │ ├── mt8186-corsola-krabby.dtsi │ │ ├── mt8186-corsola-magneton-sku393216.dts │ │ ├── mt8186-corsola-magneton-sku393217.dts │ │ ├── mt8186-corsola-magneton-sku393218.dts │ │ ├── mt8186-corsola-rusty-sku196608.dts │ │ ├── mt8186-corsola-steelix-sku131072.dts │ │ ├── mt8186-corsola-steelix-sku131073.dts │ │ ├── mt8186-corsola-steelix.dtsi │ │ ├── mt8186-corsola-tentacool-sku327681.dts │ │ ├── mt8186-corsola-tentacool-sku327683.dts │ │ ├── mt8186-corsola-tentacruel-sku262144.dts │ │ ├── mt8186-corsola-tentacruel-sku262148.dts │ │ ├── mt8186-corsola.dtsi │ │ ├── mt8186-evb.dts │ │ ├── mt8186.dtsi │ │ ├── mt8188-evb.dts │ │ ├── mt8188.dtsi │ │ ├── mt8192-asurada-hayato-r1.dts │ │ ├── mt8192-asurada-hayato-r5-sku2.dts │ │ ├── mt8192-asurada-spherion-r0.dts │ │ ├── mt8192-asurada-spherion-r4.dts │ │ ├── mt8192-asurada.dtsi │ │ ├── mt8192-evb.dts │ │ ├── mt8192.dtsi │ │ ├── mt8195-cherry-tomato-r1.dts │ │ ├── mt8195-cherry-tomato-r2.dts │ │ ├── mt8195-cherry-tomato-r3.dts │ │ ├── mt8195-cherry.dtsi │ │ ├── mt8195-demo.dts │ │ ├── mt8195-evb.dts │ │ ├── mt8195.dtsi │ │ ├── mt8365-evk.dts │ │ ├── mt8365.dtsi │ │ ├── mt8395-genio-1200-evk.dts │ │ ├── mt8395-radxa-nio-12l.dts │ │ ├── mt8516-pinfunc.h │ │ ├── mt8516-pumpkin.dts │ │ ├── mt8516.dtsi │ │ └── pumpkin-common.dtsi │ ├── microchip │ │ ├── sparx5.dtsi │ │ ├── sparx5_nand.dtsi │ │ ├── sparx5_pcb125.dts │ │ ├── sparx5_pcb134.dts │ │ ├── sparx5_pcb134_board.dtsi │ │ ├── sparx5_pcb134_emmc.dts │ │ ├── sparx5_pcb135.dts │ │ ├── sparx5_pcb135_board.dtsi │ │ ├── sparx5_pcb135_emmc.dts │ │ └── sparx5_pcb_common.dtsi │ ├── nuvoton │ │ ├── ma35d1-iot-512m.dts │ │ ├── ma35d1-som-256m.dts │ │ ├── ma35d1.dtsi │ │ ├── nuvoton-common-npcm8xx.dtsi │ │ ├── nuvoton-npcm845-evb.dts │ │ └── nuvoton-npcm845.dtsi │ ├── nvidia │ │ ├── tegra132-norrin.dts │ │ ├── tegra132-peripherals-opp.dtsi │ │ ├── tegra132.dtsi │ │ ├── tegra186-p2771-0000.dts │ │ ├── tegra186-p3310.dtsi │ │ ├── tegra186-p3509-0000+p3636-0001.dts │ │ ├── tegra186.dtsi │ │ ├── tegra194-p2888.dtsi │ │ ├── tegra194-p2972-0000.dts │ │ ├── tegra194-p3509-0000+p3668-0000.dts │ │ ├── tegra194-p3509-0000+p3668-0001.dts │ │ ├── tegra194-p3509-0000.dtsi │ │ ├── tegra194-p3668-0000.dtsi │ │ ├── tegra194-p3668-0001.dtsi │ │ ├── tegra194-p3668.dtsi │ │ ├── tegra194.dtsi │ │ ├── tegra210-p2180.dtsi │ │ ├── tegra210-p2371-0000.dts │ │ ├── tegra210-p2371-2180.dts │ │ ├── tegra210-p2530.dtsi │ │ ├── tegra210-p2571.dts │ │ ├── tegra210-p2595.dtsi │ │ ├── tegra210-p2597.dtsi │ │ ├── tegra210-p2894-0050-a08.dts │ │ ├── tegra210-p2894.dtsi │ │ ├── tegra210-p3450-0000.dts │ │ ├── tegra210-smaug.dts │ │ ├── tegra210.dtsi │ │ ├── tegra234-p3701-0000.dtsi │ │ ├── tegra234-p3701-0008.dtsi │ │ ├── tegra234-p3701.dtsi │ │ ├── tegra234-p3737-0000+p3701-0000.dts │ │ ├── tegra234-p3737-0000.dtsi │ │ ├── tegra234-p3740-0002+p3701-0008.dts │ │ ├── tegra234-p3740-0002.dtsi │ │ ├── tegra234-p3767.dtsi │ │ ├── tegra234-p3768-0000+p3767-0000.dts │ │ ├── tegra234-p3768-0000+p3767-0005.dts │ │ ├── tegra234-p3768-0000.dtsi │ │ ├── tegra234-sim-vdk.dts │ │ └── tegra234.dtsi │ ├── qcom │ │ ├── apq8016-sbc-d3-camera-mezzanine.dts │ │ ├── apq8016-sbc-usb-host.dtso │ │ ├── apq8016-sbc.dts │ │ ├── apq8039-t2.dts │ │ ├── apq8094-sony-xperia-kitakami-karin_windy.dts │ │ ├── apq8096-db820c.dts │ │ ├── apq8096-ifc6640.dts │ │ ├── ipq5018-rdp432-c2.dts │ │ ├── ipq5018.dtsi │ │ ├── ipq5332-rdp-common.dtsi │ │ ├── ipq5332-rdp441.dts │ │ ├── ipq5332-rdp442.dts │ │ ├── ipq5332-rdp468.dts │ │ ├── ipq5332-rdp474.dts │ │ ├── ipq5332.dtsi │ │ ├── ipq6018-cp01-c1.dts │ │ ├── ipq6018.dtsi │ │ ├── ipq8074-hk01.dts │ │ ├── ipq8074-hk10-c1.dts │ │ ├── ipq8074-hk10-c2.dts │ │ ├── ipq8074-hk10.dtsi │ │ ├── ipq8074.dtsi │ │ ├── ipq9574-rdp-common.dtsi │ │ ├── ipq9574-rdp418.dts │ │ ├── ipq9574-rdp433.dts │ │ ├── ipq9574-rdp449.dts │ │ ├── ipq9574-rdp453.dts │ │ ├── ipq9574-rdp454.dts │ │ ├── ipq9574.dtsi │ │ ├── msm8216-samsung-fortuna3g.dts │ │ ├── msm8916-acer-a1-724.dts │ │ ├── msm8916-alcatel-idol347.dts │ │ ├── msm8916-asus-z00l.dts │ │ ├── msm8916-gplus-fl8005a.dts │ │ ├── msm8916-huawei-g7.dts │ │ ├── msm8916-longcheer-l8150.dts │ │ ├── msm8916-longcheer-l8910.dts │ │ ├── msm8916-modem-qdsp6.dtsi │ │ ├── msm8916-mtp.dts │ │ ├── msm8916-pm8916.dtsi │ │ ├── msm8916-samsung-a2015-common.dtsi │ │ ├── msm8916-samsung-a3u-eur.dts │ │ ├── msm8916-samsung-a5u-eur.dts │ │ ├── msm8916-samsung-e2015-common.dtsi │ │ ├── msm8916-samsung-e5.dts │ │ ├── msm8916-samsung-e7.dts │ │ ├── msm8916-samsung-fortuna-common.dtsi │ │ ├── msm8916-samsung-gprimeltecan.dts │ │ ├── msm8916-samsung-grandmax.dts │ │ ├── msm8916-samsung-grandprimelte.dts │ │ ├── msm8916-samsung-gt5-common.dtsi │ │ ├── msm8916-samsung-gt510.dts │ │ ├── msm8916-samsung-gt58.dts │ │ ├── msm8916-samsung-j5-common.dtsi │ │ ├── msm8916-samsung-j5.dts │ │ ├── msm8916-samsung-j5x.dts │ │ ├── msm8916-samsung-rossa-common.dtsi │ │ ├── msm8916-samsung-rossa.dts │ │ ├── msm8916-samsung-serranove.dts │ │ ├── msm8916-thwc-uf896.dts │ │ ├── msm8916-thwc-ufi001c.dts │ │ ├── msm8916-ufi.dtsi │ │ ├── msm8916-wingtech-wt88047.dts │ │ ├── msm8916-yiming-uz801v3.dts │ │ ├── msm8916.dtsi │ │ ├── msm8939-huawei-kiwi.dts │ │ ├── msm8939-longcheer-l9100.dts │ │ ├── msm8939-pm8916.dtsi │ │ ├── msm8939-samsung-a7.dts │ │ ├── msm8939-sony-xperia-kanuti-tulip.dts │ │ ├── msm8939.dtsi │ │ ├── msm8953-motorola-potter.dts │ │ ├── msm8953-xiaomi-daisy.dts │ │ ├── msm8953-xiaomi-mido.dts │ │ ├── msm8953-xiaomi-tissot.dts │ │ ├── msm8953-xiaomi-vince.dts │ │ ├── msm8953.dtsi │ │ ├── msm8956-sony-xperia-loire-kugo.dts │ │ ├── msm8956-sony-xperia-loire-suzu.dts │ │ ├── msm8956-sony-xperia-loire.dtsi │ │ ├── msm8956.dtsi │ │ ├── msm8976.dtsi │ │ ├── msm8992-lg-bullhead-rev-10.dts │ │ ├── msm8992-lg-bullhead-rev-101.dts │ │ ├── msm8992-lg-bullhead.dtsi │ │ ├── msm8992-msft-lumia-octagon-talkman.dts │ │ ├── msm8992-xiaomi-libra.dts │ │ ├── msm8992.dtsi │ │ ├── msm8994-huawei-angler-rev-101.dts │ │ ├── msm8994-msft-lumia-octagon-cityman.dts │ │ ├── msm8994-msft-lumia-octagon.dtsi │ │ ├── msm8994-sony-xperia-kitakami-ivy.dts │ │ ├── msm8994-sony-xperia-kitakami-karin.dts │ │ ├── msm8994-sony-xperia-kitakami-satsuki.dts │ │ ├── msm8994-sony-xperia-kitakami-sumire.dts │ │ ├── msm8994-sony-xperia-kitakami-suzuran.dts │ │ ├── msm8994-sony-xperia-kitakami.dtsi │ │ ├── msm8994.dtsi │ │ ├── msm8996-mtp.dts │ │ ├── msm8996-oneplus-common.dtsi │ │ ├── msm8996-oneplus3.dts │ │ ├── msm8996-oneplus3t.dts │ │ ├── msm8996-sony-xperia-tone-dora.dts │ │ ├── msm8996-sony-xperia-tone-kagura.dts │ │ ├── msm8996-sony-xperia-tone-keyaki.dts │ │ ├── msm8996-sony-xperia-tone.dtsi │ │ ├── msm8996-v3.0.dtsi │ │ ├── msm8996-xiaomi-common.dtsi │ │ ├── msm8996-xiaomi-gemini.dts │ │ ├── msm8996.dtsi │ │ ├── msm8996pro-xiaomi-natrium.dts │ │ ├── msm8996pro-xiaomi-scorpio.dts │ │ ├── msm8996pro.dtsi │ │ ├── msm8998-asus-novago-tp370ql.dts │ │ ├── msm8998-clamshell.dtsi │ │ ├── msm8998-fxtec-pro1.dts │ │ ├── msm8998-hp-envy-x2.dts │ │ ├── msm8998-lenovo-miix-630.dts │ │ ├── msm8998-mtp.dts │ │ ├── msm8998-oneplus-cheeseburger.dts │ │ ├── msm8998-oneplus-common.dtsi │ │ ├── msm8998-oneplus-dumpling.dts │ │ ├── msm8998-sony-xperia-yoshino-lilac.dts │ │ ├── msm8998-sony-xperia-yoshino-maple.dts │ │ ├── msm8998-sony-xperia-yoshino-poplar.dts │ │ ├── msm8998-sony-xperia-yoshino.dtsi │ │ ├── msm8998-xiaomi-sagit.dts │ │ ├── msm8998.dtsi │ │ ├── pm4125.dtsi │ │ ├── pm6125.dtsi │ │ ├── pm6150.dtsi │ │ ├── pm6150l.dtsi │ │ ├── pm6350.dtsi │ │ ├── pm660.dtsi │ │ ├── pm660l.dtsi │ │ ├── pm7250b.dtsi │ │ ├── pm7325.dtsi │ │ ├── pm7550ba.dtsi │ │ ├── pm8004.dtsi │ │ ├── pm8005.dtsi │ │ ├── pm8009.dtsi │ │ ├── pm8010.dtsi │ │ ├── pm8150.dtsi │ │ ├── pm8150b.dtsi │ │ ├── pm8150l.dtsi │ │ ├── pm8350.dtsi │ │ ├── pm8350b.dtsi │ │ ├── pm8350c.dtsi │ │ ├── pm8450.dtsi │ │ ├── pm8550.dtsi │ │ ├── pm8550b.dtsi │ │ ├── pm8550ve.dtsi │ │ ├── pm8550vs.dtsi │ │ ├── pm8916.dtsi │ │ ├── pm8950.dtsi │ │ ├── pm8953.dtsi │ │ ├── pm8994.dtsi │ │ ├── pm8998.dtsi │ │ ├── pmi632.dtsi │ │ ├── pmi8950.dtsi │ │ ├── pmi8994.dtsi │ │ ├── pmi8996.dtsi │ │ ├── pmi8998.dtsi │ │ ├── pmk8350.dtsi │ │ ├── pmk8550.dtsi │ │ ├── pmm8155au_1.dtsi │ │ ├── pmm8155au_2.dtsi │ │ ├── pmp8074.dtsi │ │ ├── pmr735a.dtsi │ │ ├── pmr735b.dtsi │ │ ├── pmr735d_a.dtsi │ │ ├── pmr735d_b.dtsi │ │ ├── pms405.dtsi │ │ ├── pmx75.dtsi │ │ ├── qcm2290.dtsi │ │ ├── qcm6490-fairphone-fp5.dts │ │ ├── qcm6490-idp.dts │ │ ├── qcs404-evb-1000.dts │ │ ├── qcs404-evb-4000.dts │ │ ├── qcs404-evb.dtsi │ │ ├── qcs404.dtsi │ │ ├── qcs6490-rb3gen2.dts │ │ ├── qdu1000-idp.dts │ │ ├── qdu1000.dtsi │ │ ├── qrb2210-rb1.dts │ │ ├── qrb4210-rb2.dts │ │ ├── qrb5165-rb5-vision-mezzanine.dts │ │ ├── qrb5165-rb5.dts │ │ ├── qru1000-idp.dts │ │ ├── qru1000.dtsi │ │ ├── sa8155p-adp.dts │ │ ├── sa8155p.dtsi │ │ ├── sa8295p-adp.dts │ │ ├── sa8540p-pmics.dtsi │ │ ├── sa8540p-ride.dts │ │ ├── sa8540p.dtsi │ │ ├── sa8775p-pmics.dtsi │ │ ├── sa8775p-ride.dts │ │ ├── sa8775p.dtsi │ │ ├── sc7180-acer-aspire1.dts │ │ ├── sc7180-firmware-tfa.dtsi │ │ ├── sc7180-idp.dts │ │ ├── sc7180-lite.dtsi │ │ ├── sc7180-trogdor-coachz-r1-lte.dts │ │ ├── sc7180-trogdor-coachz-r1.dts │ │ ├── sc7180-trogdor-coachz-r3-lte.dts │ │ ├── sc7180-trogdor-coachz-r3.dts │ │ ├── sc7180-trogdor-coachz.dtsi │ │ ├── sc7180-trogdor-homestar-r2.dts │ │ ├── sc7180-trogdor-homestar-r3.dts │ │ ├── sc7180-trogdor-homestar-r4.dts │ │ ├── sc7180-trogdor-homestar.dtsi │ │ ├── sc7180-trogdor-kingoftown.dts │ │ ├── sc7180-trogdor-lazor-limozeen-nots-r10.dts │ │ ├── sc7180-trogdor-lazor-limozeen-nots-r4.dts │ │ ├── sc7180-trogdor-lazor-limozeen-nots-r5.dts │ │ ├── sc7180-trogdor-lazor-limozeen-nots-r9.dts │ │ ├── sc7180-trogdor-lazor-limozeen-r10.dts │ │ ├── sc7180-trogdor-lazor-limozeen-r4.dts │ │ ├── sc7180-trogdor-lazor-limozeen-r9.dts │ │ ├── sc7180-trogdor-lazor-r1-kb.dts │ │ ├── sc7180-trogdor-lazor-r1-lte.dts │ │ ├── sc7180-trogdor-lazor-r1.dts │ │ ├── sc7180-trogdor-lazor-r10-kb.dts │ │ ├── sc7180-trogdor-lazor-r10-lte.dts │ │ ├── sc7180-trogdor-lazor-r10.dts │ │ ├── sc7180-trogdor-lazor-r3-kb.dts │ │ ├── sc7180-trogdor-lazor-r3-lte.dts │ │ ├── sc7180-trogdor-lazor-r3.dts │ │ ├── sc7180-trogdor-lazor-r9-kb.dts │ │ ├── sc7180-trogdor-lazor-r9-lte.dts │ │ ├── sc7180-trogdor-lazor-r9.dts │ │ ├── sc7180-trogdor-lazor.dtsi │ │ ├── sc7180-trogdor-lte-sku.dtsi │ │ ├── sc7180-trogdor-parade-ps8640.dtsi │ │ ├── sc7180-trogdor-pazquel-lte-parade.dts │ │ ├── sc7180-trogdor-pazquel-lte-ti.dts │ │ ├── sc7180-trogdor-pazquel-parade.dts │ │ ├── sc7180-trogdor-pazquel-ti.dts │ │ ├── sc7180-trogdor-pazquel.dtsi │ │ ├── sc7180-trogdor-pazquel360-lte.dts │ │ ├── sc7180-trogdor-pazquel360-wifi.dts │ │ ├── sc7180-trogdor-pazquel360.dtsi │ │ ├── sc7180-trogdor-pompom-r1-lte.dts │ │ ├── sc7180-trogdor-pompom-r1.dts │ │ ├── sc7180-trogdor-pompom-r2-lte.dts │ │ ├── sc7180-trogdor-pompom-r2.dts │ │ ├── sc7180-trogdor-pompom-r3-lte.dts │ │ ├── sc7180-trogdor-pompom-r3.dts │ │ ├── sc7180-trogdor-pompom.dtsi │ │ ├── sc7180-trogdor-quackingstick-r0-lte.dts │ │ ├── sc7180-trogdor-quackingstick-r0.dts │ │ ├── sc7180-trogdor-quackingstick.dtsi │ │ ├── sc7180-trogdor-r1-lte.dts │ │ ├── sc7180-trogdor-r1.dts │ │ ├── sc7180-trogdor-rt5682i-sku.dtsi │ │ ├── sc7180-trogdor-rt5682s-sku.dtsi │ │ ├── sc7180-trogdor-ti-sn65dsi86.dtsi │ │ ├── sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dts │ │ ├── sc7180-trogdor-wormdingler-rev1-boe.dts │ │ ├── sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dts │ │ ├── sc7180-trogdor-wormdingler-rev1-inx.dts │ │ ├── sc7180-trogdor-wormdingler.dtsi │ │ ├── sc7180-trogdor.dtsi │ │ ├── sc7180.dtsi │ │ ├── sc7280-chrome-common.dtsi │ │ ├── sc7280-crd-r3.dts │ │ ├── sc7280-herobrine-audio-rt5682-3mic.dtsi │ │ ├── sc7280-herobrine-audio-rt5682.dtsi │ │ ├── sc7280-herobrine-audio-wcd9385.dtsi │ │ ├── sc7280-herobrine-crd-pro.dts │ │ ├── sc7280-herobrine-crd.dts │ │ ├── sc7280-herobrine-evoker-lte.dts │ │ ├── sc7280-herobrine-evoker.dts │ │ ├── sc7280-herobrine-evoker.dtsi │ │ ├── sc7280-herobrine-herobrine-r1.dts │ │ ├── sc7280-herobrine-lte-sku.dtsi │ │ ├── sc7280-herobrine-nvme-sku.dtsi │ │ ├── sc7280-herobrine-pro-sku.dtsi │ │ ├── sc7280-herobrine-villager-r0.dts │ │ ├── sc7280-herobrine-villager-r1-lte.dts │ │ ├── sc7280-herobrine-villager-r1.dts │ │ ├── sc7280-herobrine-villager-r1.dtsi │ │ ├── sc7280-herobrine-villager.dtsi │ │ ├── sc7280-herobrine-wifi-sku.dtsi │ │ ├── sc7280-herobrine-zombie-lte.dts │ │ ├── sc7280-herobrine-zombie-nvme-lte.dts │ │ ├── sc7280-herobrine-zombie-nvme.dts │ │ ├── sc7280-herobrine-zombie.dts │ │ ├── sc7280-herobrine-zombie.dtsi │ │ ├── sc7280-herobrine.dtsi │ │ ├── sc7280-idp-ec-h1.dtsi │ │ ├── sc7280-idp.dts │ │ ├── sc7280-idp.dtsi │ │ ├── sc7280-idp2.dts │ │ ├── sc7280-qcard.dtsi │ │ ├── sc7280.dtsi │ │ ├── sc8180x-lenovo-flex-5g.dts │ │ ├── sc8180x-pmics.dtsi │ │ ├── sc8180x-primus.dts │ │ ├── sc8180x.dtsi │ │ ├── sc8280xp-crd.dts │ │ ├── sc8280xp-lenovo-thinkpad-x13s.dts │ │ ├── sc8280xp-pmics.dtsi │ │ ├── sc8280xp.dtsi │ │ ├── sda660-inforce-ifc6560.dts │ │ ├── sdm450-motorola-ali.dts │ │ ├── sdm450.dtsi │ │ ├── sdm630-sony-xperia-ganges-kirin.dts │ │ ├── sdm630-sony-xperia-nile-discovery.dts │ │ ├── sdm630-sony-xperia-nile-pioneer.dts │ │ ├── sdm630-sony-xperia-nile-voyager.dts │ │ ├── sdm630-sony-xperia-nile.dtsi │ │ ├── sdm630.dtsi │ │ ├── sdm632-fairphone-fp3.dts │ │ ├── sdm632-motorola-ocean.dts │ │ ├── sdm632.dtsi │ │ ├── sdm636-sony-xperia-ganges-mermaid.dts │ │ ├── sdm636.dtsi │ │ ├── sdm660-xiaomi-lavender.dts │ │ ├── sdm660.dtsi │ │ ├── sdm670-google-sargo.dts │ │ ├── sdm670.dtsi │ │ ├── sdm845-cheza-r1.dts │ │ ├── sdm845-cheza-r2.dts │ │ ├── sdm845-cheza-r3.dts │ │ ├── sdm845-cheza.dtsi │ │ ├── sdm845-db845c-navigation-mezzanine.dts │ │ ├── sdm845-db845c.dts │ │ ├── sdm845-lg-common.dtsi │ │ ├── sdm845-lg-judyln.dts │ │ ├── sdm845-lg-judyp.dts │ │ ├── sdm845-mtp.dts │ │ ├── sdm845-oneplus-common.dtsi │ │ ├── sdm845-oneplus-enchilada.dts │ │ ├── sdm845-oneplus-fajita.dts │ │ ├── sdm845-samsung-starqltechn.dts │ │ ├── sdm845-shift-axolotl.dts │ │ ├── sdm845-sony-xperia-tama-akari.dts │ │ ├── sdm845-sony-xperia-tama-akatsuki.dts │ │ ├── sdm845-sony-xperia-tama-apollo.dts │ │ ├── sdm845-sony-xperia-tama.dtsi │ │ ├── sdm845-wcd9340.dtsi │ │ ├── sdm845-xiaomi-beryllium-common.dtsi │ │ ├── sdm845-xiaomi-beryllium-ebbg.dts │ │ ├── sdm845-xiaomi-beryllium-tianma.dts │ │ ├── sdm845-xiaomi-polaris.dts │ │ ├── sdm845.dtsi │ │ ├── sdm850-lenovo-yoga-c630.dts │ │ ├── sdm850-samsung-w737.dts │ │ ├── sdm850.dtsi │ │ ├── sdx75-idp.dts │ │ ├── sdx75.dtsi │ │ ├── sm4250-oneplus-billie2.dts │ │ ├── sm4250.dtsi │ │ ├── sm4450-qrd.dts │ │ ├── sm4450.dtsi │ │ ├── sm6115-fxtec-pro1x.dts │ │ ├── sm6115.dtsi │ │ ├── sm6115p-lenovo-j606f.dts │ │ ├── sm6125-sony-xperia-seine-pdx201.dts │ │ ├── sm6125-xiaomi-laurel-sprout.dts │ │ ├── sm6125.dtsi │ │ ├── sm6350-sony-xperia-lena-pdx213.dts │ │ ├── sm6350.dtsi │ │ ├── sm6375-sony-xperia-murray-pdx225.dts │ │ ├── sm6375.dtsi │ │ ├── sm7125-xiaomi-common.dtsi │ │ ├── sm7125-xiaomi-curtana.dts │ │ ├── sm7125-xiaomi-joyeuse.dts │ │ ├── sm7125.dtsi │ │ ├── sm7225-fairphone-fp4.dts │ │ ├── sm7225.dtsi │ │ ├── sm8150-hdk.dts │ │ ├── sm8150-microsoft-surface-duo.dts │ │ ├── sm8150-mtp.dts │ │ ├── sm8150-sony-xperia-kumano-bahamut.dts │ │ ├── sm8150-sony-xperia-kumano-griffin.dts │ │ ├── sm8150-sony-xperia-kumano.dtsi │ │ ├── sm8150.dtsi │ │ ├── sm8250-hdk.dts │ │ ├── sm8250-mtp.dts │ │ ├── sm8250-sony-xperia-edo-pdx203.dts │ │ ├── sm8250-sony-xperia-edo-pdx206.dts │ │ ├── sm8250-sony-xperia-edo.dtsi │ │ ├── sm8250-xiaomi-elish-boe.dts │ │ ├── sm8250-xiaomi-elish-common.dtsi │ │ ├── sm8250-xiaomi-elish-csot.dts │ │ ├── sm8250-xiaomi-pipa.dts │ │ ├── sm8250.dtsi │ │ ├── sm8350-hdk.dts │ │ ├── sm8350-microsoft-surface-duo2.dts │ │ ├── sm8350-mtp.dts │ │ ├── sm8350-sony-xperia-sagami-pdx214.dts │ │ ├── sm8350-sony-xperia-sagami-pdx215.dts │ │ ├── sm8350-sony-xperia-sagami.dtsi │ │ ├── sm8350.dtsi │ │ ├── sm8450-hdk.dts │ │ ├── sm8450-qrd.dts │ │ ├── sm8450-sony-xperia-nagara-pdx223.dts │ │ ├── sm8450-sony-xperia-nagara-pdx224.dts │ │ ├── sm8450-sony-xperia-nagara.dtsi │ │ ├── sm8450.dtsi │ │ ├── sm8550-hdk.dts │ │ ├── sm8550-mtp.dts │ │ ├── sm8550-qrd.dts │ │ ├── sm8550.dtsi │ │ ├── sm8650-mtp.dts │ │ ├── sm8650-qrd.dts │ │ ├── sm8650.dtsi │ │ ├── x1e80100-crd.dts │ │ ├── x1e80100-qcp.dts │ │ └── x1e80100.dtsi │ ├── realtek │ │ ├── rtd1293-ds418j.dts │ │ ├── rtd1293.dtsi │ │ ├── rtd1295-mele-v9.dts │ │ ├── rtd1295-probox2-ava.dts │ │ ├── rtd1295-xnano-x5.dts │ │ ├── rtd1295-zidoo-x9s.dts │ │ ├── rtd1295.dtsi │ │ ├── rtd1296-ds418.dts │ │ ├── rtd1296.dtsi │ │ ├── rtd129x.dtsi │ │ ├── rtd1395-bpi-m4.dts │ │ ├── rtd1395-lionskin.dts │ │ ├── rtd1395.dtsi │ │ ├── rtd139x.dtsi │ │ ├── rtd1619-mjolnir.dts │ │ ├── rtd1619.dtsi │ │ └── rtd16xx.dtsi │ ├── renesas │ │ ├── aistarvision-mipi-adapter-2.1.dtsi │ │ ├── beacon-renesom-baseboard.dtsi │ │ ├── beacon-renesom-som.dtsi │ │ ├── cat875.dtsi │ │ ├── condor-common.dtsi │ │ ├── draak-ebisu-panel-aa104xd12.dtso │ │ ├── draak.dtsi │ │ ├── ebisu.dtsi │ │ ├── gmsl-cameras.dtsi │ │ ├── hihope-common.dtsi │ │ ├── hihope-rev2.dtsi │ │ ├── hihope-rev4.dtsi │ │ ├── hihope-rzg2-ex-aistarvision-mipi-adapter-2.1.dtsi │ │ ├── hihope-rzg2-ex-lvds.dtsi │ │ ├── hihope-rzg2-ex.dtsi │ │ ├── panel-aa104xd12.dtsi │ │ ├── r8a774a1-beacon-rzg2m-kit.dts │ │ ├── r8a774a1-hihope-rzg2m-ex-idk-1110wr.dts │ │ ├── r8a774a1-hihope-rzg2m-ex-mipi-2.1.dts │ │ ├── r8a774a1-hihope-rzg2m-ex.dts │ │ ├── r8a774a1-hihope-rzg2m-rev2-ex-idk-1110wr.dts │ │ ├── r8a774a1-hihope-rzg2m-rev2-ex.dts │ │ ├── r8a774a1-hihope-rzg2m-rev2.dts │ │ ├── r8a774a1-hihope-rzg2m.dts │ │ ├── r8a774a1.dtsi │ │ ├── r8a774b1-beacon-rzg2n-kit.dts │ │ ├── r8a774b1-hihope-rzg2n-ex-idk-1110wr.dts │ │ ├── r8a774b1-hihope-rzg2n-ex-mipi-2.1.dts │ │ ├── r8a774b1-hihope-rzg2n-ex.dts │ │ ├── r8a774b1-hihope-rzg2n-rev2-ex-idk-1110wr.dts │ │ ├── r8a774b1-hihope-rzg2n-rev2-ex.dts │ │ ├── r8a774b1-hihope-rzg2n-rev2.dts │ │ ├── r8a774b1-hihope-rzg2n.dts │ │ ├── r8a774b1.dtsi │ │ ├── r8a774c0-cat874.dts │ │ ├── r8a774c0-ek874-idk-2121wr.dts │ │ ├── r8a774c0-ek874-mipi-2.1.dts │ │ ├── r8a774c0-ek874.dts │ │ ├── r8a774c0.dtsi │ │ ├── r8a774e1-beacon-rzg2h-kit.dts │ │ ├── r8a774e1-hihope-rzg2h-ex-idk-1110wr.dts │ │ ├── r8a774e1-hihope-rzg2h-ex-mipi-2.1.dts │ │ ├── r8a774e1-hihope-rzg2h-ex.dts │ │ ├── r8a774e1-hihope-rzg2h.dts │ │ ├── r8a774e1.dtsi │ │ ├── r8a77951-salvator-x.dts │ │ ├── r8a77951-salvator-xs.dts │ │ ├── r8a77951-ulcb-kf.dts │ │ ├── r8a77951-ulcb.dts │ │ ├── r8a77951.dtsi │ │ ├── r8a77960-salvator-x.dts │ │ ├── r8a77960-salvator-xs.dts │ │ ├── r8a77960-ulcb-kf.dts │ │ ├── r8a77960-ulcb.dts │ │ ├── r8a77960.dtsi │ │ ├── r8a77961-salvator-xs.dts │ │ ├── r8a77961-ulcb-kf.dts │ │ ├── r8a77961-ulcb.dts │ │ ├── r8a77961.dtsi │ │ ├── r8a77965-salvator-x.dts │ │ ├── r8a77965-salvator-xs.dts │ │ ├── r8a77965-ulcb-kf.dts │ │ ├── r8a77965-ulcb.dts │ │ ├── r8a77965.dtsi │ │ ├── r8a77970-eagle.dts │ │ ├── r8a77970-v3msk.dts │ │ ├── r8a77970.dtsi │ │ ├── r8a77980-condor.dts │ │ ├── r8a77980-v3hsk.dts │ │ ├── r8a77980.dtsi │ │ ├── r8a77980a-condor-i.dts │ │ ├── r8a77980a.dtsi │ │ ├── r8a77990-ebisu.dts │ │ ├── r8a77990.dtsi │ │ ├── r8a77995-draak.dts │ │ ├── r8a77995.dtsi │ │ ├── r8a779a0-falcon-cpu.dtsi │ │ ├── r8a779a0-falcon-csi-dsi.dtsi │ │ ├── r8a779a0-falcon-ethernet.dtsi │ │ ├── r8a779a0-falcon.dts │ │ ├── r8a779a0.dtsi │ │ ├── r8a779f0-spider-cpu.dtsi │ │ ├── r8a779f0-spider-ethernet.dtsi │ │ ├── r8a779f0-spider.dts │ │ ├── r8a779f0.dtsi │ │ ├── r8a779f4-s4sk.dts │ │ ├── r8a779f4.dtsi │ │ ├── r8a779g0-white-hawk-ard-audio-da7212.dtso │ │ ├── r8a779g0-white-hawk-cpu.dts │ │ ├── r8a779g0-white-hawk-cpu.dtsi │ │ ├── r8a779g0-white-hawk.dts │ │ ├── r8a779g0.dtsi │ │ ├── r8a779g2-white-hawk-single.dts │ │ ├── r8a779g2.dtsi │ │ ├── r8a779h0-gray-hawk-single.dts │ │ ├── r8a779h0.dtsi │ │ ├── r8a779m0.dtsi │ │ ├── r8a779m1-salvator-xs.dts │ │ ├── r8a779m1-ulcb-kf.dts │ │ ├── r8a779m1-ulcb.dts │ │ ├── r8a779m1.dtsi │ │ ├── r8a779m2.dtsi │ │ ├── r8a779m3-salvator-xs.dts │ │ ├── r8a779m3-ulcb-kf.dts │ │ ├── r8a779m3-ulcb.dts │ │ ├── r8a779m3.dtsi │ │ ├── r8a779m4.dtsi │ │ ├── r8a779m5-salvator-xs.dts │ │ ├── r8a779m5.dtsi │ │ ├── r8a779m6.dtsi │ │ ├── r8a779m7.dtsi │ │ ├── r8a779m8.dtsi │ │ ├── r8a779mb.dtsi │ │ ├── r9a07g043-smarc-pmod.dtso │ │ ├── r9a07g043.dtsi │ │ ├── r9a07g043u.dtsi │ │ ├── r9a07g043u11-smarc-cru-csi-ov5645.dtso │ │ ├── r9a07g043u11-smarc.dts │ │ ├── r9a07g044.dtsi │ │ ├── r9a07g044c1.dtsi │ │ ├── r9a07g044c2-smarc-cru-csi-ov5645.dtso │ │ ├── r9a07g044c2-smarc.dts │ │ ├── r9a07g044c2.dtsi │ │ ├── r9a07g044l1.dtsi │ │ ├── r9a07g044l2-smarc-cru-csi-ov5645.dtso │ │ ├── r9a07g044l2-smarc.dts │ │ ├── r9a07g044l2.dtsi │ │ ├── r9a07g054.dtsi │ │ ├── r9a07g054l1.dtsi │ │ ├── r9a07g054l2-smarc-cru-csi-ov5645.dtso │ │ ├── r9a07g054l2-smarc.dts │ │ ├── r9a07g054l2.dtsi │ │ ├── r9a08g045.dtsi │ │ ├── r9a08g045s33-smarc.dts │ │ ├── r9a08g045s33.dtsi │ │ ├── r9a09g011-v2mevk2.dts │ │ ├── r9a09g011.dtsi │ │ ├── rz-smarc-common.dtsi │ │ ├── rz-smarc-cru-csi-ov5645.dtsi │ │ ├── rzg2-advantech-idk-1110wr-panel.dtsi │ │ ├── rzg2l-smarc-pinfunction.dtsi │ │ ├── rzg2l-smarc-som.dtsi │ │ ├── rzg2l-smarc.dtsi │ │ ├── rzg2lc-smarc-pinfunction.dtsi │ │ ├── rzg2lc-smarc-som.dtsi │ │ ├── rzg2lc-smarc.dtsi │ │ ├── rzg2ul-smarc-pinfunction.dtsi │ │ ├── rzg2ul-smarc-som.dtsi │ │ ├── rzg2ul-smarc.dtsi │ │ ├── rzg3s-smarc-som.dtsi │ │ ├── rzg3s-smarc.dtsi │ │ ├── salvator-common.dtsi │ │ ├── salvator-panel-aa104xd12.dtso │ │ ├── salvator-x.dtsi │ │ ├── salvator-xs.dtsi │ │ ├── ulcb-audio-graph-card-mix+split.dtsi │ │ ├── ulcb-audio-graph-card.dtsi │ │ ├── ulcb-audio-graph-card2-mix+split.dtsi │ │ ├── ulcb-audio-graph-card2.dtsi │ │ ├── ulcb-kf-audio-graph-card-mix+split.dtsi │ │ ├── ulcb-kf-audio-graph-card.dtsi │ │ ├── ulcb-kf-audio-graph-card2-mix+split.dtsi │ │ ├── ulcb-kf-audio-graph-card2.dtsi │ │ ├── ulcb-kf-simple-audio-card-mix+split.dtsi │ │ ├── ulcb-kf-simple-audio-card.dtsi │ │ ├── ulcb-kf.dtsi │ │ ├── ulcb-simple-audio-card-mix+split.dtsi │ │ ├── ulcb-simple-audio-card.dtsi │ │ ├── ulcb.dtsi │ │ ├── white-hawk-common.dtsi │ │ ├── white-hawk-cpu-common.dtsi │ │ ├── white-hawk-csi-dsi.dtsi │ │ └── white-hawk-ethernet.dtsi │ ├── rockchip │ │ ├── px30-engicam-common.dtsi │ │ ├── px30-engicam-ctouch2.dtsi │ │ ├── px30-engicam-edimm2.2.dtsi │ │ ├── px30-engicam-px30-core-ctouch2-of10.dts │ │ ├── px30-engicam-px30-core-ctouch2.dts │ │ ├── px30-engicam-px30-core-edimm2.2.dts │ │ ├── px30-engicam-px30-core.dtsi │ │ ├── px30-evb.dts │ │ ├── px30-ringneck-haikou.dts │ │ ├── px30-ringneck.dtsi │ │ ├── px30.dtsi │ │ ├── rk3308-evb.dts │ │ ├── rk3308-roc-cc.dts │ │ ├── rk3308-rock-pi-s.dts │ │ ├── rk3308.dtsi │ │ ├── rk3318-a95x-z2.dts │ │ ├── rk3326-anbernic-rg351m.dts │ │ ├── rk3326-anbernic-rg351m.dtsi │ │ ├── rk3326-anbernic-rg351v.dts │ │ ├── rk3326-odroid-go.dtsi │ │ ├── rk3326-odroid-go2-v11.dts │ │ ├── rk3326-odroid-go2.dts │ │ ├── rk3326-odroid-go3.dts │ │ ├── rk3326.dtsi │ │ ├── rk3328-a1.dts │ │ ├── rk3328-evb.dts │ │ ├── rk3328-nanopi-r2c-plus.dts │ │ ├── rk3328-nanopi-r2c.dts │ │ ├── rk3328-nanopi-r2s.dts │ │ ├── rk3328-orangepi-r1-plus-lts.dts │ │ ├── rk3328-orangepi-r1-plus.dts │ │ ├── rk3328-roc-cc.dts │ │ ├── rk3328-roc-pc.dts │ │ ├── rk3328-rock-pi-e.dts │ │ ├── rk3328-rock64.dts │ │ ├── rk3328.dtsi │ │ ├── rk3368-evb-act8846.dts │ │ ├── rk3368-evb.dtsi │ │ ├── rk3368-geekbox.dts │ │ ├── rk3368-lion-haikou.dts │ │ ├── rk3368-lion.dtsi │ │ ├── rk3368-orion-r68-meta.dts │ │ ├── rk3368-px5-evb.dts │ │ ├── rk3368-r88.dts │ │ ├── rk3368.dtsi │ │ ├── rk3399-eaidk-610.dts │ │ ├── rk3399-evb.dts │ │ ├── rk3399-ficus.dts │ │ ├── rk3399-firefly.dts │ │ ├── rk3399-gru-bob.dts │ │ ├── rk3399-gru-chromebook.dtsi │ │ ├── rk3399-gru-kevin.dts │ │ ├── rk3399-gru-scarlet-dumo.dts │ │ ├── rk3399-gru-scarlet-inx.dts │ │ ├── rk3399-gru-scarlet-kd.dts │ │ ├── rk3399-gru-scarlet.dtsi │ │ ├── rk3399-gru.dtsi │ │ ├── rk3399-hugsun-x99.dts │ │ ├── rk3399-khadas-edge-captain.dts │ │ ├── rk3399-khadas-edge-v.dts │ │ ├── rk3399-khadas-edge.dts │ │ ├── rk3399-khadas-edge.dtsi │ │ ├── rk3399-kobol-helios64.dts │ │ ├── rk3399-leez-p710.dts │ │ ├── rk3399-nanopc-t4.dts │ │ ├── rk3399-nanopi-m4.dts │ │ ├── rk3399-nanopi-m4b.dts │ │ ├── rk3399-nanopi-neo4.dts │ │ ├── rk3399-nanopi-r4s-enterprise.dts │ │ ├── rk3399-nanopi-r4s.dts │ │ ├── rk3399-nanopi4.dtsi │ │ ├── rk3399-op1-opp.dtsi │ │ ├── rk3399-opp.dtsi │ │ ├── rk3399-orangepi.dts │ │ ├── rk3399-pinebook-pro.dts │ │ ├── rk3399-pinephone-pro.dts │ │ ├── rk3399-puma-haikou.dts │ │ ├── rk3399-puma.dtsi │ │ ├── rk3399-roc-pc-mezzanine.dts │ │ ├── rk3399-roc-pc-plus.dts │ │ ├── rk3399-roc-pc.dts │ │ ├── rk3399-roc-pc.dtsi │ │ ├── rk3399-rock-4c-plus.dts │ │ ├── rk3399-rock-4se.dts │ │ ├── rk3399-rock-pi-4.dtsi │ │ ├── rk3399-rock-pi-4a-plus.dts │ │ ├── rk3399-rock-pi-4a.dts │ │ ├── rk3399-rock-pi-4b-plus.dts │ │ ├── rk3399-rock-pi-4b.dts │ │ ├── rk3399-rock-pi-4c.dts │ │ ├── rk3399-rock960.dts │ │ ├── rk3399-rock960.dtsi │ │ ├── rk3399-rockpro64-v2.dts │ │ ├── rk3399-rockpro64.dts │ │ ├── rk3399-rockpro64.dtsi │ │ ├── rk3399-sapphire-excavator.dts │ │ ├── rk3399-sapphire.dts │ │ ├── rk3399-sapphire.dtsi │ │ ├── rk3399-t-opp.dtsi │ │ ├── rk3399.dtsi │ │ ├── rk3399pro-rock-pi-n10.dts │ │ ├── rk3399pro-vmarc-som.dtsi │ │ ├── rk3399pro.dtsi │ │ ├── rk3566-anbernic-rg-arc-d.dts │ │ ├── rk3566-anbernic-rg-arc-s.dts │ │ ├── rk3566-anbernic-rg-arc.dtsi │ │ ├── rk3566-anbernic-rg353p.dts │ │ ├── rk3566-anbernic-rg353ps.dts │ │ ├── rk3566-anbernic-rg353v.dts │ │ ├── rk3566-anbernic-rg353vs.dts │ │ ├── rk3566-anbernic-rg353x.dtsi │ │ ├── rk3566-anbernic-rg503.dts │ │ ├── rk3566-anbernic-rgxx3.dtsi │ │ ├── rk3566-box-demo.dts │ │ ├── rk3566-lubancat-1.dts │ │ ├── rk3566-pinenote-v1.1.dts │ │ ├── rk3566-pinenote-v1.2.dts │ │ ├── rk3566-pinenote.dtsi │ │ ├── rk3566-pinetab2-v0.1.dts │ │ ├── rk3566-pinetab2-v2.0.dts │ │ ├── rk3566-pinetab2.dtsi │ │ ├── rk3566-powkiddy-rgb10max3.dts │ │ ├── rk3566-powkiddy-rgb30.dts │ │ ├── rk3566-powkiddy-rk2023.dts │ │ ├── rk3566-powkiddy-rk2023.dtsi │ │ ├── rk3566-powkiddy-x55.dts │ │ ├── rk3566-quartz64-a.dts │ │ ├── rk3566-quartz64-b.dts │ │ ├── rk3566-radxa-cm3-io.dts │ │ ├── rk3566-radxa-cm3.dtsi │ │ ├── rk3566-roc-pc.dts │ │ ├── rk3566-soquartz-blade.dts │ │ ├── rk3566-soquartz-cm4.dts │ │ ├── rk3566-soquartz-model-a.dts │ │ ├── rk3566-soquartz.dtsi │ │ ├── rk3566.dtsi │ │ ├── rk3568-bpi-r2-pro.dts │ │ ├── rk3568-evb1-v10.dts │ │ ├── rk3568-fastrhino-r66s.dts │ │ ├── rk3568-fastrhino-r66s.dtsi │ │ ├── rk3568-fastrhino-r68s.dts │ │ ├── rk3568-lubancat-2.dts │ │ ├── rk3568-nanopi-r5c.dts │ │ ├── rk3568-nanopi-r5s.dts │ │ ├── rk3568-nanopi-r5s.dtsi │ │ ├── rk3568-odroid-m1.dts │ │ ├── rk3568-pinctrl.dtsi │ │ ├── rk3568-qnap-ts433.dts │ │ ├── rk3568-radxa-cm3i.dtsi │ │ ├── rk3568-radxa-e25.dts │ │ ├── rk3568-roc-pc.dts │ │ ├── rk3568-rock-3a.dts │ │ ├── rk3568.dtsi │ │ ├── rk356x.dtsi │ │ ├── rk3588-coolpi-cm5-evb.dts │ │ ├── rk3588-coolpi-cm5.dtsi │ │ ├── rk3588-edgeble-neu6a-common.dtsi │ │ ├── rk3588-edgeble-neu6a-io.dts │ │ ├── rk3588-edgeble-neu6a-io.dtsi │ │ ├── rk3588-edgeble-neu6a-wifi.dtso │ │ ├── rk3588-edgeble-neu6a.dtsi │ │ ├── rk3588-edgeble-neu6b-io.dts │ │ ├── rk3588-edgeble-neu6b.dtsi │ │ ├── rk3588-evb1-v10.dts │ │ ├── rk3588-jaguar.dts │ │ ├── rk3588-nanopc-t6.dts │ │ ├── rk3588-orangepi-5-plus.dts │ │ ├── rk3588-pinctrl.dtsi │ │ ├── rk3588-quartzpro64.dts │ │ ├── rk3588-rock-5b.dts │ │ ├── rk3588-tiger-haikou.dts │ │ ├── rk3588-tiger.dtsi │ │ ├── rk3588-toybrick-x0.dts │ │ ├── rk3588-turing-rk1.dts │ │ ├── rk3588-turing-rk1.dtsi │ │ ├── rk3588.dtsi │ │ ├── rk3588j.dtsi │ │ ├── rk3588s-coolpi-4b.dts │ │ ├── rk3588s-indiedroid-nova.dts │ │ ├── rk3588s-khadas-edge2.dts │ │ ├── rk3588s-nanopi-r6c.dts │ │ ├── rk3588s-nanopi-r6s.dts │ │ ├── rk3588s-orangepi-5.dts │ │ ├── rk3588s-pinctrl.dtsi │ │ ├── rk3588s-rock-5a.dts │ │ ├── rk3588s.dtsi │ │ └── rockchip-pinconf.dtsi │ ├── socionext │ │ ├── uniphier-ld11-global.dts │ │ ├── uniphier-ld11-ref.dts │ │ ├── uniphier-ld11.dtsi │ │ ├── uniphier-ld20-akebi96.dts │ │ ├── uniphier-ld20-global.dts │ │ ├── uniphier-ld20-ref.dts │ │ ├── uniphier-ld20.dtsi │ │ ├── uniphier-pinctrl.dtsi │ │ ├── uniphier-pxs3-ref-gadget0.dts │ │ ├── uniphier-pxs3-ref-gadget1.dts │ │ ├── uniphier-pxs3-ref.dts │ │ ├── uniphier-pxs3.dtsi │ │ ├── uniphier-ref-daughter.dtsi │ │ └── uniphier-support-card.dtsi │ ├── sprd │ │ ├── sc2731.dtsi │ │ ├── sc9836-openphone.dts │ │ ├── sc9836.dtsi │ │ ├── sc9860.dtsi │ │ ├── sc9863a.dtsi │ │ ├── sharkl3.dtsi │ │ ├── sharkl64.dtsi │ │ ├── sp9860g-1h10.dts │ │ ├── sp9863a-1h10.dts │ │ ├── ums512-1h10.dts │ │ ├── ums512.dtsi │ │ ├── ums9620-2h10.dts │ │ ├── ums9620.dtsi │ │ └── whale2.dtsi │ ├── st │ │ ├── stm32mp25-pinctrl.dtsi │ │ ├── stm32mp251.dtsi │ │ ├── stm32mp253.dtsi │ │ ├── stm32mp255.dtsi │ │ ├── stm32mp257.dtsi │ │ ├── stm32mp257f-ev1.dts │ │ ├── stm32mp25xc.dtsi │ │ ├── stm32mp25xf.dtsi │ │ ├── stm32mp25xxai-pinctrl.dtsi │ │ ├── stm32mp25xxak-pinctrl.dtsi │ │ └── stm32mp25xxal-pinctrl.dtsi │ ├── synaptics │ │ ├── berlin4ct-dmp.dts │ │ ├── berlin4ct-stb.dts │ │ └── berlin4ct.dtsi │ ├── tesla │ │ ├── fsd-evb.dts │ │ ├── fsd-pinctrl.dtsi │ │ ├── fsd-pinctrl.h │ │ └── fsd.dtsi │ ├── ti │ │ ├── k3-am62-lp-sk.dts │ │ ├── k3-am62-main.dtsi │ │ ├── k3-am62-mcu.dtsi │ │ ├── k3-am62-phycore-som.dtsi │ │ ├── k3-am62-thermal.dtsi │ │ ├── k3-am62-verdin-dahlia.dtsi │ │ ├── k3-am62-verdin-dev.dtsi │ │ ├── k3-am62-verdin-mallow.dtsi │ │ ├── k3-am62-verdin-nonwifi.dtsi │ │ ├── k3-am62-verdin-wifi.dtsi │ │ ├── k3-am62-verdin-yavia.dtsi │ │ ├── k3-am62-verdin.dtsi │ │ ├── k3-am62-wakeup.dtsi │ │ ├── k3-am62.dtsi │ │ ├── k3-am625-beagleplay-csi2-ov5640.dtso │ │ ├── k3-am625-beagleplay-csi2-tevi-ov5640.dtso │ │ ├── k3-am625-beagleplay.dts │ │ ├── k3-am625-phyboard-lyra-rdk.dts │ │ ├── k3-am625-sk.dts │ │ ├── k3-am625-verdin-nonwifi-dahlia.dts │ │ ├── k3-am625-verdin-nonwifi-dev.dts │ │ ├── k3-am625-verdin-nonwifi-mallow.dts │ │ ├── k3-am625-verdin-nonwifi-yavia.dts │ │ ├── k3-am625-verdin-wifi-dahlia.dts │ │ ├── k3-am625-verdin-wifi-dev.dts │ │ ├── k3-am625-verdin-wifi-mallow.dts │ │ ├── k3-am625-verdin-wifi-yavia.dts │ │ ├── k3-am625.dtsi │ │ ├── k3-am62a-main.dtsi │ │ ├── k3-am62a-mcu.dtsi │ │ ├── k3-am62a-thermal.dtsi │ │ ├── k3-am62a-wakeup.dtsi │ │ ├── k3-am62a.dtsi │ │ ├── k3-am62a7-sk.dts │ │ ├── k3-am62a7.dtsi │ │ ├── k3-am62p-main.dtsi │ │ ├── k3-am62p-mcu.dtsi │ │ ├── k3-am62p-thermal.dtsi │ │ ├── k3-am62p-wakeup.dtsi │ │ ├── k3-am62p.dtsi │ │ ├── k3-am62p5-sk.dts │ │ ├── k3-am62p5.dtsi │ │ ├── k3-am62x-phyboard-lyra-gpio-fan.dtso │ │ ├── k3-am62x-sk-common.dtsi │ │ ├── k3-am62x-sk-csi2-imx219.dtso │ │ ├── k3-am62x-sk-csi2-ov5640.dtso │ │ ├── k3-am62x-sk-csi2-tevi-ov5640.dtso │ │ ├── k3-am62x-sk-hdmi-audio.dtso │ │ ├── k3-am64-main.dtsi │ │ ├── k3-am64-mcu.dtsi │ │ ├── k3-am64-phycore-som.dtsi │ │ ├── k3-am64-thermal.dtsi │ │ ├── k3-am64-tqma64xxl-mbax4xxl-sdcard.dtso │ │ ├── k3-am64-tqma64xxl-mbax4xxl-wlan.dtso │ │ ├── k3-am64.dtsi │ │ ├── k3-am642-evm-icssg1-dualemac.dtso │ │ ├── k3-am642-evm.dts │ │ ├── k3-am642-hummingboard-t-pcie.dtso │ │ ├── k3-am642-hummingboard-t-usb3.dtso │ │ ├── k3-am642-hummingboard-t.dts │ │ ├── k3-am642-phyboard-electra-rdk.dts │ │ ├── k3-am642-sk.dts │ │ ├── k3-am642-sr-som.dtsi │ │ ├── k3-am642-tqma64xxl-mbax4xxl.dts │ │ ├── k3-am642-tqma64xxl.dtsi │ │ ├── k3-am642.dtsi │ │ ├── k3-am65-iot2050-arduino-connector.dtsi │ │ ├── k3-am65-iot2050-common-pg1.dtsi │ │ ├── k3-am65-iot2050-common-pg2.dtsi │ │ ├── k3-am65-iot2050-common.dtsi │ │ ├── k3-am65-iot2050-dp.dtsi │ │ ├── k3-am65-iot2050-usb3.dtsi │ │ ├── k3-am65-main.dtsi │ │ ├── k3-am65-mcu.dtsi │ │ ├── k3-am65-wakeup.dtsi │ │ ├── k3-am65.dtsi │ │ ├── k3-am652.dtsi │ │ ├── k3-am6528-iot2050-basic-common.dtsi │ │ ├── k3-am6528-iot2050-basic-pg2.dts │ │ ├── k3-am6528-iot2050-basic.dts │ │ ├── k3-am654-base-board-rocktech-rk101-panel.dtso │ │ ├── k3-am654-base-board.dts │ │ ├── k3-am654-icssg2.dtso │ │ ├── k3-am654-idk.dtso │ │ ├── k3-am654-industrial-thermal.dtsi │ │ ├── k3-am654-pcie-usb2.dtso │ │ ├── k3-am654-pcie-usb3.dtso │ │ ├── k3-am654.dtsi │ │ ├── k3-am6548-iot2050-advanced-common.dtsi │ │ ├── k3-am6548-iot2050-advanced-m2.dts │ │ ├── k3-am6548-iot2050-advanced-pg2.dts │ │ ├── k3-am6548-iot2050-advanced-sm.dts │ │ ├── k3-am6548-iot2050-advanced.dts │ │ ├── k3-am68-sk-base-board.dts │ │ ├── k3-am68-sk-som.dtsi │ │ ├── k3-am69-sk.dts │ │ ├── k3-j7200-common-proc-board.dts │ │ ├── k3-j7200-evm-quad-port-eth-exp.dtso │ │ ├── k3-j7200-main.dtsi │ │ ├── k3-j7200-mcu-wakeup.dtsi │ │ ├── k3-j7200-som-p0.dtsi │ │ ├── k3-j7200-thermal.dtsi │ │ ├── k3-j7200.dtsi │ │ ├── k3-j721e-beagleboneai64.dts │ │ ├── k3-j721e-common-proc-board.dts │ │ ├── k3-j721e-evm-gesi-exp-board.dtso │ │ ├── k3-j721e-evm-pcie0-ep.dtso │ │ ├── k3-j721e-evm-quad-port-eth-exp.dtso │ │ ├── k3-j721e-main.dtsi │ │ ├── k3-j721e-mcu-wakeup.dtsi │ │ ├── k3-j721e-sk-csi2-dual-imx219.dtso │ │ ├── k3-j721e-sk.dts │ │ ├── k3-j721e-som-p0.dtsi │ │ ├── k3-j721e-thermal.dtsi │ │ ├── k3-j721e.dtsi │ │ ├── k3-j721s2-common-proc-board.dts │ │ ├── k3-j721s2-evm-gesi-exp-board.dtso │ │ ├── k3-j721s2-evm-pcie1-ep.dtso │ │ ├── k3-j721s2-main.dtsi │ │ ├── k3-j721s2-mcu-wakeup.dtsi │ │ ├── k3-j721s2-som-p0.dtsi │ │ ├── k3-j721s2-thermal.dtsi │ │ ├── k3-j721s2.dtsi │ │ ├── k3-j722s-evm.dts │ │ ├── k3-j722s.dtsi │ │ ├── k3-j784s4-evm.dts │ │ ├── k3-j784s4-main.dtsi │ │ ├── k3-j784s4-mcu-wakeup.dtsi │ │ ├── k3-j784s4-thermal.dtsi │ │ ├── k3-j784s4.dtsi │ │ ├── k3-pinctrl.h │ │ └── k3-serdes.h │ ├── toshiba │ │ ├── tmpv7708-rm-mbrc.dts │ │ ├── tmpv7708-visrobo-vrb.dts │ │ ├── tmpv7708-visrobo-vrc.dtsi │ │ ├── tmpv7708.dtsi │ │ └── tmpv7708_pins.dtsi │ └── xilinx │ │ ├── avnet-ultra96-rev1.dts │ │ ├── zynqmp-clk-ccf.dtsi │ │ ├── zynqmp-sck-kv-g-revA.dtso │ │ ├── zynqmp-sck-kv-g-revB.dtso │ │ ├── zynqmp-sm-k26-revA.dts │ │ ├── zynqmp-smk-k26-revA.dts │ │ ├── zynqmp-zc1232-revA.dts │ │ ├── zynqmp-zc1254-revA.dts │ │ ├── zynqmp-zc1751-xm015-dc1.dts │ │ ├── zynqmp-zc1751-xm016-dc2.dts │ │ ├── zynqmp-zc1751-xm017-dc3.dts │ │ ├── zynqmp-zc1751-xm018-dc4.dts │ │ ├── zynqmp-zc1751-xm019-dc5.dts │ │ ├── zynqmp-zcu100-revC.dts │ │ ├── zynqmp-zcu102-rev1.0.dts │ │ ├── zynqmp-zcu102-rev1.1.dts │ │ ├── zynqmp-zcu102-revA.dts │ │ ├── zynqmp-zcu102-revB.dts │ │ ├── zynqmp-zcu104-revA.dts │ │ ├── zynqmp-zcu104-revC.dts │ │ ├── zynqmp-zcu106-revA.dts │ │ ├── zynqmp-zcu111-revA.dts │ │ ├── zynqmp-zcu1275-revA.dts │ │ └── zynqmp.dtsi │ ├── loongarch │ ├── loongson-2k0500-ref.dts │ ├── loongson-2k0500.dtsi │ ├── loongson-2k1000-ref.dts │ ├── loongson-2k1000.dtsi │ ├── loongson-2k2000-ref.dts │ └── loongson-2k2000.dtsi │ ├── mips │ ├── brcm │ │ ├── bcm3368-netgear-cvg834g.dts │ │ ├── bcm3368.dtsi │ │ ├── bcm3384_viper.dtsi │ │ ├── bcm3384_zephyr.dtsi │ │ ├── bcm63268-comtrend-vr-3032u.dts │ │ ├── bcm63268.dtsi │ │ ├── bcm6328.dtsi │ │ ├── bcm6358-neufbox4-sercomm.dts │ │ ├── bcm6358.dtsi │ │ ├── bcm6362-neufbox6-sercomm.dts │ │ ├── bcm6362.dtsi │ │ ├── bcm6368.dtsi │ │ ├── bcm7125.dtsi │ │ ├── bcm7346.dtsi │ │ ├── bcm7358.dtsi │ │ ├── bcm7360.dtsi │ │ ├── bcm7362.dtsi │ │ ├── bcm7420.dtsi │ │ ├── bcm7425.dtsi │ │ ├── bcm7435.dtsi │ │ ├── bcm93384wvg.dts │ │ ├── bcm93384wvg_viper.dts │ │ ├── bcm96368mvwg.dts │ │ ├── bcm97125cbmb.dts │ │ ├── bcm97346dbsmb.dts │ │ ├── bcm97358svmb.dts │ │ ├── bcm97360svmb.dts │ │ ├── bcm97362svmb.dts │ │ ├── bcm97420c.dts │ │ ├── bcm97425svmb.dts │ │ ├── bcm97435svmb.dts │ │ ├── bcm97xxx-nand-cs1-bch24.dtsi │ │ ├── bcm97xxx-nand-cs1-bch4.dtsi │ │ └── bcm9ejtagprb.dts │ ├── cavium-octeon │ │ ├── dlink_dsr-1000n.dts │ │ ├── dlink_dsr-500n-1000n.dtsi │ │ ├── dlink_dsr-500n.dts │ │ ├── octeon_3xxx.dts │ │ ├── octeon_3xxx.dtsi │ │ ├── octeon_68xx.dts │ │ └── ubnt_e100.dts │ ├── img │ │ ├── boston.dts │ │ ├── pistachio.dtsi │ │ └── pistachio_marduk.dts │ ├── ingenic │ │ ├── ci20.dts │ │ ├── cu1000-neo.dts │ │ ├── cu1830-neo.dts │ │ ├── gcw0.dts │ │ ├── gcw0_proto.dts │ │ ├── jz4725b.dtsi │ │ ├── jz4740.dtsi │ │ ├── jz4770.dtsi │ │ ├── jz4780.dtsi │ │ ├── qi_lb60.dts │ │ ├── rs90.dts │ │ ├── x1000.dtsi │ │ └── x1830.dtsi │ ├── lantiq │ │ ├── danube.dtsi │ │ └── danube_easy50712.dts │ ├── loongson │ │ ├── loongson64-2k1000.dtsi │ │ ├── loongson64_2core_2k1000.dts │ │ ├── loongson64c-package.dtsi │ │ ├── loongson64c_4core_ls7a.dts │ │ ├── loongson64c_4core_rs780e.dts │ │ ├── loongson64c_8core_rs780e.dts │ │ ├── loongson64g-package.dtsi │ │ ├── loongson64g_4core_ls7a.dts │ │ ├── loongson64v_4core_virtio.dts │ │ ├── ls7a-pch.dtsi │ │ └── rs780e-pch.dtsi │ ├── mobileye │ │ ├── eyeq5-epm5.dts │ │ ├── eyeq5-fixed-clocks.dtsi │ │ └── eyeq5.dtsi │ ├── mscc │ │ ├── jaguar2.dtsi │ │ ├── jaguar2_common.dtsi │ │ ├── jaguar2_pcb110.dts │ │ ├── jaguar2_pcb111.dts │ │ ├── jaguar2_pcb118.dts │ │ ├── luton.dtsi │ │ ├── luton_pcb091.dts │ │ ├── ocelot.dtsi │ │ ├── ocelot_pcb120.dts │ │ ├── ocelot_pcb123.dts │ │ ├── serval.dtsi │ │ ├── serval_common.dtsi │ │ ├── serval_pcb105.dts │ │ └── serval_pcb106.dts │ ├── mti │ │ ├── malta.dts │ │ └── sead3.dts │ ├── ni │ │ └── 169445.dts │ ├── pic32 │ │ ├── pic32mzda.dtsi │ │ └── pic32mzda_sk.dts │ ├── qca │ │ ├── ar9132.dtsi │ │ ├── ar9132_tl_wr1043nd_v1.dts │ │ ├── ar9331.dtsi │ │ ├── ar9331_dpt_module.dts │ │ ├── ar9331_dragino_ms14.dts │ │ ├── ar9331_omega.dts │ │ ├── ar9331_openembed_som9331_board.dts │ │ └── ar9331_tl_mr3020.dts │ ├── ralink │ │ ├── gardena_smart_gateway_mt7688.dts │ │ ├── mt7620a.dtsi │ │ ├── mt7620a_eval.dts │ │ ├── mt7621-gnubee-gb-pc1.dts │ │ ├── mt7621-gnubee-gb-pc2.dts │ │ ├── mt7621-tplink-hc220-g5-v1.dts │ │ ├── mt7621.dtsi │ │ ├── mt7628a.dtsi │ │ ├── omega2p.dts │ │ ├── rt2880.dtsi │ │ ├── rt2880_eval.dts │ │ ├── rt3050.dtsi │ │ ├── rt3052_eval.dts │ │ ├── rt3883.dtsi │ │ ├── rt3883_eval.dts │ │ └── vocore2.dts │ ├── realtek │ │ ├── cisco_sg220-26.dts │ │ ├── rtl838x.dtsi │ │ └── rtl83xx.dtsi │ └── xilfpga │ │ ├── microAptiv.dtsi │ │ └── nexys4ddr.dts │ ├── nios2 │ ├── 10m50_devboard.dts │ └── 3c120_devboard.dts │ ├── openrisc │ ├── or1klitex.dts │ ├── or1ksim.dts │ └── simple_smp.dts │ ├── powerpc │ ├── a3m071.dts │ ├── a4m072.dts │ ├── ac14xx.dts │ ├── acadia.dts │ ├── adder875-redboot.dts │ ├── adder875-uboot.dts │ ├── akebono.dts │ ├── amigaone.dts │ ├── arches.dts │ ├── asp834x-redboot.dts │ ├── bamboo.dts │ ├── bluestone.dts │ ├── canyonlands.dts │ ├── charon.dts │ ├── cm5200.dts │ ├── currituck.dts │ ├── digsy_mtc.dts │ ├── ebony.dts │ ├── eiger.dts │ ├── ep8248e.dts │ ├── ep88xc.dts │ ├── fsl │ │ ├── b4420qds.dts │ │ ├── b4420si-post.dtsi │ │ ├── b4420si-pre.dtsi │ │ ├── b4860qds.dts │ │ ├── b4860si-post.dtsi │ │ ├── b4860si-pre.dtsi │ │ ├── b4qds.dtsi │ │ ├── b4si-post.dtsi │ │ ├── bsc9131rdb.dts │ │ ├── bsc9131rdb.dtsi │ │ ├── bsc9131si-post.dtsi │ │ ├── bsc9131si-pre.dtsi │ │ ├── bsc9132qds.dts │ │ ├── bsc9132qds.dtsi │ │ ├── bsc9132si-post.dtsi │ │ ├── bsc9132si-pre.dtsi │ │ ├── c293pcie.dts │ │ ├── c293si-post.dtsi │ │ ├── c293si-pre.dtsi │ │ ├── cyrus_p5020.dts │ │ ├── e500mc_power_isa.dtsi │ │ ├── e500v1_power_isa.dtsi │ │ ├── e500v2_power_isa.dtsi │ │ ├── e5500_power_isa.dtsi │ │ ├── e6500_power_isa.dtsi │ │ ├── elo3-dma-0.dtsi │ │ ├── elo3-dma-1.dtsi │ │ ├── elo3-dma-2.dtsi │ │ ├── ge_imp3a.dts │ │ ├── gef_ppc9a.dts │ │ ├── gef_sbc310.dts │ │ ├── gef_sbc610.dts │ │ ├── interlaken-lac-portals.dtsi │ │ ├── interlaken-lac.dtsi │ │ ├── kmcent2.dts │ │ ├── kmcoge4.dts │ │ ├── mpc8536ds.dts │ │ ├── mpc8536ds.dtsi │ │ ├── mpc8536ds_36b.dts │ │ ├── mpc8536si-post.dtsi │ │ ├── mpc8536si-pre.dtsi │ │ ├── mpc8544ds.dts │ │ ├── mpc8544ds.dtsi │ │ ├── mpc8544si-post.dtsi │ │ ├── mpc8544si-pre.dtsi │ │ ├── mpc8548si-post.dtsi │ │ ├── mpc8548si-pre.dtsi │ │ ├── mpc8568mds.dts │ │ ├── mpc8568si-post.dtsi │ │ ├── mpc8568si-pre.dtsi │ │ ├── mpc8569mds.dts │ │ ├── mpc8569si-post.dtsi │ │ ├── mpc8569si-pre.dtsi │ │ ├── mpc8572ds.dts │ │ ├── mpc8572ds.dtsi │ │ ├── mpc8572ds_36b.dts │ │ ├── mpc8572ds_camp_core0.dts │ │ ├── mpc8572ds_camp_core1.dts │ │ ├── mpc8572si-post.dtsi │ │ ├── mpc8572si-pre.dtsi │ │ ├── mpc8641si-post.dtsi │ │ ├── mpc8641si-pre.dtsi │ │ ├── mvme2500.dts │ │ ├── mvme7100.dts │ │ ├── oca4080.dts │ │ ├── p1010rdb-pa.dts │ │ ├── p1010rdb-pa.dtsi │ │ ├── p1010rdb-pa_36b.dts │ │ ├── p1010rdb-pb.dts │ │ ├── p1010rdb-pb_36b.dts │ │ ├── p1010rdb.dtsi │ │ ├── p1010rdb_32b.dtsi │ │ ├── p1010rdb_36b.dtsi │ │ ├── p1010si-post.dtsi │ │ ├── p1010si-pre.dtsi │ │ ├── p1020mbg-pc.dtsi │ │ ├── p1020mbg-pc_32b.dts │ │ ├── p1020mbg-pc_36b.dts │ │ ├── p1020rdb-pc.dtsi │ │ ├── p1020rdb-pc_32b.dts │ │ ├── p1020rdb-pc_36b.dts │ │ ├── p1020rdb-pc_camp_core0.dts │ │ ├── p1020rdb-pc_camp_core1.dts │ │ ├── p1020rdb-pd.dts │ │ ├── p1020rdb.dts │ │ ├── p1020rdb.dtsi │ │ ├── p1020rdb_36b.dts │ │ ├── p1020si-post.dtsi │ │ ├── p1020si-pre.dtsi │ │ ├── p1020utm-pc.dtsi │ │ ├── p1020utm-pc_32b.dts │ │ ├── p1020utm-pc_36b.dts │ │ ├── p1021mds.dts │ │ ├── p1021rdb-pc.dtsi │ │ ├── p1021rdb-pc_32b.dts │ │ ├── p1021rdb-pc_36b.dts │ │ ├── p1021si-post.dtsi │ │ ├── p1021si-pre.dtsi │ │ ├── p1022ds.dtsi │ │ ├── p1022ds_32b.dts │ │ ├── p1022ds_36b.dts │ │ ├── p1022rdk.dts │ │ ├── p1022si-post.dtsi │ │ ├── p1022si-pre.dtsi │ │ ├── p1023rdb.dts │ │ ├── p1023si-post.dtsi │ │ ├── p1023si-pre.dtsi │ │ ├── p1024rdb.dtsi │ │ ├── p1024rdb_32b.dts │ │ ├── p1024rdb_36b.dts │ │ ├── p1025rdb.dtsi │ │ ├── p1025rdb_32b.dts │ │ ├── p1025rdb_36b.dts │ │ ├── p1025twr.dts │ │ ├── p1025twr.dtsi │ │ ├── p2020ds.dts │ │ ├── p2020ds.dtsi │ │ ├── p2020rdb-pc.dtsi │ │ ├── p2020rdb-pc_32b.dts │ │ ├── p2020rdb-pc_36b.dts │ │ ├── p2020rdb.dts │ │ ├── p2020si-post.dtsi │ │ ├── p2020si-pre.dtsi │ │ ├── p2041rdb.dts │ │ ├── p2041si-post.dtsi │ │ ├── p2041si-pre.dtsi │ │ ├── p3041ds.dts │ │ ├── p3041si-post.dtsi │ │ ├── p3041si-pre.dtsi │ │ ├── p4080ds.dts │ │ ├── p4080si-post.dtsi │ │ ├── p4080si-pre.dtsi │ │ ├── p5020ds.dts │ │ ├── p5020si-post.dtsi │ │ ├── p5020si-pre.dtsi │ │ ├── p5040ds.dts │ │ ├── p5040si-post.dtsi │ │ ├── p5040si-pre.dtsi │ │ ├── ppa8548.dts │ │ ├── pq3-dma-0.dtsi │ │ ├── pq3-dma-1.dtsi │ │ ├── pq3-duart-0.dtsi │ │ ├── pq3-esdhc-0.dtsi │ │ ├── pq3-espi-0.dtsi │ │ ├── pq3-etsec1-0.dtsi │ │ ├── pq3-etsec1-1.dtsi │ │ ├── pq3-etsec1-2.dtsi │ │ ├── pq3-etsec1-3.dtsi │ │ ├── pq3-etsec1-timer-0.dtsi │ │ ├── pq3-etsec2-0.dtsi │ │ ├── pq3-etsec2-1.dtsi │ │ ├── pq3-etsec2-2.dtsi │ │ ├── pq3-etsec2-grp2-0.dtsi │ │ ├── pq3-etsec2-grp2-1.dtsi │ │ ├── pq3-etsec2-grp2-2.dtsi │ │ ├── pq3-gpio-0.dtsi │ │ ├── pq3-i2c-0.dtsi │ │ ├── pq3-i2c-1.dtsi │ │ ├── pq3-mpic-message-B.dtsi │ │ ├── pq3-mpic-timer-B.dtsi │ │ ├── pq3-mpic.dtsi │ │ ├── pq3-rmu-0.dtsi │ │ ├── pq3-sata2-0.dtsi │ │ ├── pq3-sata2-1.dtsi │ │ ├── pq3-sec2.1-0.dtsi │ │ ├── pq3-sec3.0-0.dtsi │ │ ├── pq3-sec3.1-0.dtsi │ │ ├── pq3-sec3.3-0.dtsi │ │ ├── pq3-sec4.4-0.dtsi │ │ ├── pq3-usb2-dr-0.dtsi │ │ ├── pq3-usb2-dr-1.dtsi │ │ ├── qonverge-usb2-dr-0.dtsi │ │ ├── qoriq-bman1-portals.dtsi │ │ ├── qoriq-bman1.dtsi │ │ ├── qoriq-clockgen1.dtsi │ │ ├── qoriq-clockgen2.dtsi │ │ ├── qoriq-dma-0.dtsi │ │ ├── qoriq-dma-1.dtsi │ │ ├── qoriq-duart-0.dtsi │ │ ├── qoriq-duart-1.dtsi │ │ ├── qoriq-esdhc-0.dtsi │ │ ├── qoriq-espi-0.dtsi │ │ ├── qoriq-fman-0-10g-0.dtsi │ │ ├── qoriq-fman-0-1g-0.dtsi │ │ ├── qoriq-fman-0-1g-1.dtsi │ │ ├── qoriq-fman-0-1g-2.dtsi │ │ ├── qoriq-fman-0-1g-3.dtsi │ │ ├── qoriq-fman-0-1g-4.dtsi │ │ ├── qoriq-fman-0.dtsi │ │ ├── qoriq-fman-1-10g-0.dtsi │ │ ├── qoriq-fman-1-1g-0.dtsi │ │ ├── qoriq-fman-1-1g-1.dtsi │ │ ├── qoriq-fman-1-1g-2.dtsi │ │ ├── qoriq-fman-1-1g-3.dtsi │ │ ├── qoriq-fman-1-1g-4.dtsi │ │ ├── qoriq-fman-1.dtsi │ │ ├── qoriq-fman3-0-10g-0-best-effort.dtsi │ │ ├── qoriq-fman3-0-10g-0.dtsi │ │ ├── qoriq-fman3-0-10g-1-best-effort.dtsi │ │ ├── qoriq-fman3-0-10g-1.dtsi │ │ ├── qoriq-fman3-0-10g-2.dtsi │ │ ├── qoriq-fman3-0-10g-3.dtsi │ │ ├── qoriq-fman3-0-1g-0.dtsi │ │ ├── qoriq-fman3-0-1g-1.dtsi │ │ ├── qoriq-fman3-0-1g-2.dtsi │ │ ├── qoriq-fman3-0-1g-3.dtsi │ │ ├── qoriq-fman3-0-1g-4.dtsi │ │ ├── qoriq-fman3-0-1g-5.dtsi │ │ ├── qoriq-fman3-0.dtsi │ │ ├── qoriq-fman3-1-10g-0.dtsi │ │ ├── qoriq-fman3-1-10g-1.dtsi │ │ ├── qoriq-fman3-1-1g-0.dtsi │ │ ├── qoriq-fman3-1-1g-1.dtsi │ │ ├── qoriq-fman3-1-1g-2.dtsi │ │ ├── qoriq-fman3-1-1g-3.dtsi │ │ ├── qoriq-fman3-1-1g-4.dtsi │ │ ├── qoriq-fman3-1-1g-5.dtsi │ │ ├── qoriq-fman3-1.dtsi │ │ ├── qoriq-fman3l-0.dtsi │ │ ├── qoriq-gpio-0.dtsi │ │ ├── qoriq-gpio-1.dtsi │ │ ├── qoriq-gpio-2.dtsi │ │ ├── qoriq-gpio-3.dtsi │ │ ├── qoriq-i2c-0.dtsi │ │ ├── qoriq-i2c-1.dtsi │ │ ├── qoriq-mpic.dtsi │ │ ├── qoriq-mpic4.3.dtsi │ │ ├── qoriq-qman1-portals.dtsi │ │ ├── qoriq-qman1.dtsi │ │ ├── qoriq-qman3.dtsi │ │ ├── qoriq-raid1.0-0.dtsi │ │ ├── qoriq-rmu-0.dtsi │ │ ├── qoriq-sata2-0.dtsi │ │ ├── qoriq-sata2-1.dtsi │ │ ├── qoriq-sec4.0-0.dtsi │ │ ├── qoriq-sec4.2-0.dtsi │ │ ├── qoriq-sec5.0-0.dtsi │ │ ├── qoriq-sec5.2-0.dtsi │ │ ├── qoriq-sec5.3-0.dtsi │ │ ├── qoriq-sec6.0-0.dtsi │ │ ├── qoriq-usb2-dr-0.dtsi │ │ ├── qoriq-usb2-mph-0.dtsi │ │ ├── t1023rdb.dts │ │ ├── t1023si-post.dtsi │ │ ├── t1024qds.dts │ │ ├── t1024rdb.dts │ │ ├── t1024si-post.dtsi │ │ ├── t102xsi-pre.dtsi │ │ ├── t1040d4rdb.dts │ │ ├── t1040qds.dts │ │ ├── t1040rdb-rev-a.dts │ │ ├── t1040rdb.dts │ │ ├── t1040si-post.dtsi │ │ ├── t1042d4rdb.dts │ │ ├── t1042qds.dts │ │ ├── t1042rdb.dts │ │ ├── t1042rdb_pi.dts │ │ ├── t1042si-post.dtsi │ │ ├── t104xd4rdb.dtsi │ │ ├── t104xqds.dtsi │ │ ├── t104xrdb.dtsi │ │ ├── t104xsi-pre.dtsi │ │ ├── t2080qds.dts │ │ ├── t2080rdb.dts │ │ ├── t2080si-post.dtsi │ │ ├── t2081qds.dts │ │ ├── t2081si-post.dtsi │ │ ├── t208xqds.dtsi │ │ ├── t208xrdb.dtsi │ │ ├── t208xsi-pre.dtsi │ │ ├── t4240qds.dts │ │ ├── t4240rdb.dts │ │ ├── t4240si-post.dtsi │ │ └── t4240si-pre.dtsi │ ├── fsp2.dts │ ├── gamecube.dts │ ├── glacier.dts │ ├── haleakala.dts │ ├── holly.dts │ ├── hotfoot.dts │ ├── icon.dts │ ├── iss4xx-mpic.dts │ ├── iss4xx.dts │ ├── katmai.dts │ ├── kilauea.dts │ ├── klondike.dts │ ├── kmeter1.dts │ ├── ksi8560.dts │ ├── kuroboxHD.dts │ ├── kuroboxHG.dts │ ├── lite5200.dts │ ├── lite5200b.dts │ ├── makalu.dts │ ├── media5200.dts │ ├── mgcoge.dts │ ├── microwatt.dts │ ├── motionpro.dts │ ├── mpc5121.dtsi │ ├── mpc5121ads.dts │ ├── mpc5125twr.dts │ ├── mpc5200b.dtsi │ ├── mpc8308_p1m.dts │ ├── mpc8308rdb.dts │ ├── mpc8313erdb.dts │ ├── mpc8315erdb.dts │ ├── mpc832x_rdb.dts │ ├── mpc8349emitx.dts │ ├── mpc8349emitxgp.dts │ ├── mpc836x_rdk.dts │ ├── mpc8377_rdb.dts │ ├── mpc8377_wlan.dts │ ├── mpc8378_rdb.dts │ ├── mpc8379_rdb.dts │ ├── mpc866ads.dts │ ├── mpc885ads.dts │ ├── mucmc52.dts │ ├── mvme5100.dts │ ├── o2d.dts │ ├── o2d.dtsi │ ├── o2d300.dts │ ├── o2dnt2.dts │ ├── o2i.dts │ ├── o2mnt.dts │ ├── o3dnt.dts │ ├── obs600.dts │ ├── pcm030.dts │ ├── pcm032.dts │ ├── pdm360ng.dts │ ├── ps3.dts │ ├── rainier.dts │ ├── redwood.dts │ ├── sam440ep.dts │ ├── sequoia.dts │ ├── socrates.dts │ ├── storcenter.dts │ ├── stx_gp3_8560.dts │ ├── stxssa8555.dts │ ├── taishan.dts │ ├── tqm5200.dts │ ├── tqm8540.dts │ ├── tqm8541.dts │ ├── tqm8548-bigflash.dts │ ├── tqm8548.dts │ ├── tqm8555.dts │ ├── tqm8560.dts │ ├── tqm8xx.dts │ ├── turris1x.dts │ ├── uc101.dts │ ├── warp.dts │ ├── wii.dts │ ├── xcalibur1501.dts │ ├── xpedite5200.dts │ ├── xpedite5200_xmon.dts │ ├── xpedite5301.dts │ ├── xpedite5330.dts │ ├── xpedite5370.dts │ └── yosemite.dts │ ├── riscv │ ├── allwinner │ │ ├── sun20i-common-regulators.dtsi │ │ ├── sun20i-d1-dongshan-nezha-stu.dts │ │ ├── sun20i-d1-lichee-rv-86-panel-480p.dts │ │ ├── sun20i-d1-lichee-rv-86-panel-720p.dts │ │ ├── sun20i-d1-lichee-rv-86-panel.dtsi │ │ ├── sun20i-d1-lichee-rv-dock.dts │ │ ├── sun20i-d1-lichee-rv.dts │ │ ├── sun20i-d1-mangopi-mq-pro.dts │ │ ├── sun20i-d1-nezha.dts │ │ ├── sun20i-d1.dtsi │ │ ├── sun20i-d1s-mangopi-mq.dts │ │ ├── sun20i-d1s.dtsi │ │ ├── sunxi-d1-t113.dtsi │ │ └── sunxi-d1s-t113.dtsi │ ├── canaan │ │ ├── canaan_kd233.dts │ │ ├── k210.dtsi │ │ ├── k210_generic.dts │ │ ├── sipeed_maix_bit.dts │ │ ├── sipeed_maix_dock.dts │ │ ├── sipeed_maix_go.dts │ │ └── sipeed_maixduino.dts │ ├── microchip │ │ ├── mpfs-icicle-kit-fabric.dtsi │ │ ├── mpfs-icicle-kit.dts │ │ ├── mpfs-m100pfs-fabric.dtsi │ │ ├── mpfs-m100pfsevp.dts │ │ ├── mpfs-polarberry-fabric.dtsi │ │ ├── mpfs-polarberry.dts │ │ ├── mpfs-sev-kit-fabric.dtsi │ │ ├── mpfs-sev-kit.dts │ │ ├── mpfs-tysom-m-fabric.dtsi │ │ ├── mpfs-tysom-m.dts │ │ └── mpfs.dtsi │ ├── renesas │ │ ├── r9a07g043f.dtsi │ │ ├── r9a07g043f01-smarc.dts │ │ ├── rzfive-smarc-som.dtsi │ │ └── rzfive-smarc.dtsi │ ├── sifive │ │ ├── fu540-c000.dtsi │ │ ├── fu740-c000.dtsi │ │ ├── hifive-unleashed-a00.dts │ │ └── hifive-unmatched-a00.dts │ ├── sophgo │ │ ├── cv1800b-milkv-duo.dts │ │ ├── cv1800b.dtsi │ │ ├── cv1812h-huashan-pi.dts │ │ ├── cv1812h.dtsi │ │ ├── cv18xx.dtsi │ │ ├── sg2042-cpus.dtsi │ │ ├── sg2042-milkv-pioneer.dts │ │ └── sg2042.dtsi │ ├── starfive │ │ ├── jh7100-beaglev-starlight.dts │ │ ├── jh7100-common.dtsi │ │ ├── jh7100-starfive-visionfive-v1.dts │ │ ├── jh7100.dtsi │ │ ├── jh7110-pinfunc.h │ │ ├── jh7110-starfive-visionfive-2-v1.2a.dts │ │ ├── jh7110-starfive-visionfive-2-v1.3b.dts │ │ ├── jh7110-starfive-visionfive-2.dtsi │ │ └── jh7110.dtsi │ └── thead │ │ ├── th1520-beaglev-ahead.dts │ │ ├── th1520-lichee-module-4a.dtsi │ │ ├── th1520-lichee-pi-4a.dts │ │ └── th1520.dtsi │ ├── sh │ └── j2_mimas_v2.dts │ ├── x86 │ └── falconfalls.dts │ └── xtensa │ ├── csp.dts │ ├── kc705.dts │ ├── kc705_nommu.dts │ ├── lx200mx.dts │ ├── lx60.dts │ ├── ml605.dts │ ├── virt.dts │ ├── xtfpga-flash-128m.dtsi │ ├── xtfpga-flash-16m.dtsi │ ├── xtfpga-flash-4m.dtsi │ └── xtfpga.dtsi ├── efi ├── Kconfig ├── Makefile ├── devicepath.c ├── efivar-filename.c ├── errno.c ├── guid.c └── payload │ ├── Makefile │ ├── boarddata.c │ ├── early-mem.c │ ├── entry-multi.c │ ├── entry-single.c │ ├── env-efi │ └── network │ │ └── eth0-discover │ ├── fdt.c │ ├── image.c │ ├── init.c │ └── iomem.c ├── firmware ├── .gitignore ├── Kconfig ├── Makefile └── README ├── fs ├── Kconfig ├── Makefile ├── bpkfs.c ├── cramfs │ ├── Makefile │ ├── cramfs.c │ └── uncompress.c ├── devfs-core.c ├── devfs.c ├── efi.c ├── efivarfs.c ├── ext4 │ ├── Kconfig │ ├── Makefile │ ├── ext4_common.c │ ├── ext4_common.h │ ├── ext4fs.c │ ├── ext4fs.h │ ├── ext_barebox.c │ └── ext_common.h ├── fat │ ├── Kconfig │ ├── Makefile │ ├── diskio.h │ ├── fat-diskio.c │ ├── fat-pbl.c │ ├── fat.c │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ └── integer.h ├── fs.c ├── jffs2 │ ├── Kconfig │ ├── Makefile │ ├── acl.h │ ├── build.c │ ├── compr.c │ ├── compr.h │ ├── compr_lzo.c │ ├── compr_rtime.c │ ├── compr_rubin.c │ ├── compr_zlib.c │ ├── debug.c │ ├── debug.h │ ├── dir.c │ ├── fs.c │ ├── jffs2_fs_i.h │ ├── jffs2_fs_sb.h │ ├── malloc.c │ ├── nodelist.c │ ├── nodelist.h │ ├── os-linux.h │ ├── read.c │ ├── readinode.c │ ├── scan.c │ ├── summary.h │ ├── super.c │ └── xattr.h ├── legacy.c ├── libfs.c ├── nfs.c ├── omap4_usbbootfs.c ├── pstore │ ├── Kconfig │ ├── Makefile │ ├── fs.c │ ├── internal.h │ ├── platform.c │ ├── ram.c │ └── ram_core.c ├── ramfs.c ├── ratpfs.c ├── smhfs.c ├── squashfs │ ├── Kconfig │ ├── Makefile │ ├── block.c │ ├── cache.c │ ├── decompressor.c │ ├── decompressor.h │ ├── decompressor_single.c │ ├── dir.c │ ├── file.c │ ├── file_cache.c │ ├── fragment.c │ ├── id.c │ ├── inode.c │ ├── lz4_wrapper.c │ ├── lzo_wrapper.c │ ├── namei.c │ ├── page_actor.c │ ├── page_actor.h │ ├── squashfs.c │ ├── squashfs.h │ ├── squashfs_fs.h │ ├── squashfs_fs_i.h │ ├── squashfs_fs_sb.h │ ├── super.c │ ├── symlink.c │ ├── xz_wrapper.c │ ├── zlib_wrapper.c │ └── zstd_wrapper.c ├── tftp-selftest.h ├── tftp.c ├── ubifs │ ├── Kconfig │ ├── Makefile │ ├── debug.c │ ├── debug.h │ ├── dir.c │ ├── io.c │ ├── key.h │ ├── log.c │ ├── lpt_commit.c │ ├── master.c │ ├── misc.c │ ├── misc.h │ ├── recovery.c │ ├── replay.c │ ├── sb.c │ ├── scan.c │ ├── super.c │ ├── tnc.c │ ├── tnc_misc.c │ ├── ubifs-media.h │ ├── ubifs.c │ └── ubifs.h ├── ubootvarfs.c └── uimagefs.c ├── images ├── .gitignore ├── Makefile ├── Makefile.am33xx ├── Makefile.am35xx ├── Makefile.ar231x ├── Makefile.at91 ├── Makefile.ath79 ├── Makefile.bcm283x ├── Makefile.bcm47xx ├── Makefile.clps711x ├── Makefile.imx ├── Makefile.k3 ├── Makefile.layerscape ├── Makefile.loongson ├── Makefile.malta ├── Makefile.mvebu ├── Makefile.mxs ├── Makefile.omap3 ├── Makefile.riscv ├── Makefile.rockchip ├── Makefile.socfpga ├── Makefile.stm32mp ├── Makefile.tegra ├── Makefile.versatile ├── Makefile.vexpress ├── Makefile.xburst ├── Makefile.zynq ├── Makefile.zynqmp ├── k3-am625-beagleplay.its ├── piggy.S └── sha_sum.S ├── include ├── .gitignore ├── abort.h ├── acpi.h ├── aimage.h ├── aiodev.h ├── asm-generic │ ├── atomic-long.h │ ├── atomic.h │ ├── barebox.lds.h │ ├── bitio.h │ ├── bitops │ │ ├── __ffs.h │ │ ├── __fls.h │ │ ├── ffs.h │ │ ├── ffz.h │ │ ├── find.h │ │ ├── fls.h │ │ ├── fls64.h │ │ ├── hweight.h │ │ └── ops.h │ ├── bitsperlong.h │ ├── bug.h │ ├── cache.h │ ├── cmpxchg-local.h │ ├── cmpxchg.h │ ├── div64.h │ ├── errno.h │ ├── int-ll64.h │ ├── io-typeconfused.h │ ├── io.h │ ├── ioctl.h │ ├── memory_layout.h │ ├── module.h │ ├── pointer.h │ ├── posix_types.h │ ├── reloc.h │ ├── sections.h │ ├── swab.h │ ├── uaccess.h │ └── word-at-a-time.h ├── ata_drive.h ├── base64.h ├── bbu.h ├── binfmt.h ├── blobgen.h ├── block.h ├── blspec.h ├── boards │ ├── phytec │ │ ├── phytec-som-detection.h │ │ └── phytec-som-imx8m-detection.h │ ├── tq │ │ └── tq_eeprom.h │ └── wolfvision │ │ └── common.h ├── boot.h ├── bootchooser.h ├── bootm.h ├── bootsource.h ├── bootstrap.h ├── bpkfs.h ├── bselftest.h ├── bthread.h ├── bunzip2.h ├── byteorder.h ├── cache.h ├── clock.h ├── cmdlinepart.h ├── command.h ├── common.h ├── complete.h ├── compressed-dtb.h ├── console.h ├── console_countdown.h ├── cramfs │ └── cramfs_fs.h ├── crc.h ├── crc7.h ├── crypto.h ├── crypto │ ├── crc.h │ ├── des.h │ ├── internal.h │ ├── jwt.h │ ├── keystore.h │ ├── pbkdf2.h │ ├── pbl-sha.h │ ├── sha.h │ ├── sha1_base.h │ └── sha256_base.h ├── ddr_dimms.h ├── ddr_spd.h ├── debug_ll.h ├── debug_ll │ ├── ns16550.h │ └── pl011.h ├── deep-probe.h ├── device.h ├── dhcp.h ├── digest.h ├── dirent.h ├── disks.h ├── dma-dir.h ├── dma.h ├── dma │ └── apbh-dma.h ├── driver.h ├── dsa.h ├── dt-bindings │ ├── clock │ │ ├── ls1b-clk.h │ │ └── starfive-jh7100.h │ ├── features │ │ └── imx8m.h │ └── reset-controller │ │ └── starfive-jh7100.h ├── efi.h ├── efi │ ├── debug_ll.h │ ├── device-path.h │ ├── efi-device.h │ ├── efi-init.h │ ├── efi-mode.h │ ├── efi-payload.h │ ├── efi-stdio.h │ ├── efi-util.h │ ├── partition.h │ └── types.h ├── elf.h ├── envfs.h ├── environment.h ├── errno.h ├── fastboot.h ├── fastboot_net.h ├── fb.h ├── fcntl.h ├── fdt.h ├── featctrl.h ├── file-list.h ├── filetype.h ├── firmware.h ├── fnmatch.h ├── fpga-bridge.h ├── fpga-mgr.h ├── fs.h ├── getopt.h ├── glob.h ├── globalvar.h ├── gpio.h ├── gpio_keys.h ├── gpiod.h ├── gui │ ├── 2d-primitives.h │ ├── graphic_utils.h │ ├── gui.h │ ├── image.h │ └── image_renderer.h ├── gunzip.h ├── hab.h ├── hwspinlock.h ├── i2c │ ├── at24.h │ ├── i2c-algo-bit.h │ ├── i2c-gpio.h │ ├── i2c-mux.h │ └── i2c.h ├── image-fit.h ├── image-metadata.h ├── image-sparse.h ├── image.h ├── init.h ├── input │ ├── input.h │ ├── keyboard.h │ ├── matrix_keypad.h │ └── qt1070.h ├── int_sqrt.h ├── io-64-nonatomic-hi-lo.h ├── io-64-nonatomic-lo-hi.h ├── io.h ├── ioctl.h ├── jsmn.h ├── jtag.h ├── kallsyms.h ├── kfifo.h ├── kgdb.h ├── led.h ├── lib │ └── libgcc.h ├── libbb.h ├── libfile.h ├── libgen.h ├── linux │ ├── align.h │ ├── amba │ │ ├── bus.h │ │ ├── mmci.h │ │ ├── pl061.h │ │ ├── serial.h │ │ ├── sp804.h │ │ └── sp805.h │ ├── arm-smccc.h │ ├── atomic.h │ ├── barebox-wrapper.h │ ├── basic_mmio_gpio.h │ ├── bcd.h │ ├── bch.h │ ├── bitfield.h │ ├── bitmap.h │ ├── bitops.h │ ├── bitrev.h │ ├── bits.h │ ├── bsearch.h │ ├── bug.h │ ├── build_bug.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ └── little_endian.h │ ├── circ_buf.h │ ├── clk-provider.h │ ├── clk.h │ ├── clk │ │ ├── analogbits-wrpll-cln28hpc.h │ │ ├── at91_pmc.h │ │ └── clk-conf.h │ ├── clkdev.h │ ├── compiler-clang.h │ ├── compiler-gcc.h │ ├── compiler-intel.h │ ├── compiler.h │ ├── compiler_types.h │ ├── completion.h │ ├── const.h │ ├── container_of.h │ ├── crc-ccitt.h │ ├── crc8.h │ ├── ctype.h │ ├── dcache.h │ ├── decompress │ │ ├── mm.h │ │ ├── unlz4.h │ │ └── unzstd.h │ ├── device.h │ ├── err.h │ ├── errno.h │ ├── ethtool.h │ ├── export.h │ ├── fixp-arith.h │ ├── font.h │ ├── fs.h │ ├── fscrypt.h │ ├── fscrypt_notsupp.h │ ├── fsl_ifc.h │ ├── gcd.h │ ├── genalloc.h │ ├── gpio │ │ └── consumer.h │ ├── hash.h │ ├── hidden.h │ ├── hw_random.h │ ├── idr.h │ ├── if_bridge.h │ ├── if_vlan.h │ ├── instruction_pointer.h │ ├── io.h │ ├── iopoll.h │ ├── ioport.h │ ├── is_defined.h │ ├── jffs2.h │ ├── kasan.h │ ├── kbuild.h │ ├── kconfig.h │ ├── kernel.h │ ├── kref.h │ ├── ktime.h │ ├── libfdt.h │ ├── libfdt_env.h │ ├── limits.h │ ├── linkage.h │ ├── list.h │ ├── list_sort.h │ ├── log2.h │ ├── lz4.h │ ├── magic.h │ ├── marvell_phy.h │ ├── math64.h │ ├── mbus.h │ ├── mdio-bitbang.h │ ├── mdio-mux.h │ ├── mdio.h │ ├── mfd │ │ ├── axp20x.h │ │ ├── core.h │ │ ├── rave-sp.h │ │ ├── rk808.h │ │ ├── stm32-timers.h │ │ ├── stpmic1.h │ │ └── syscon │ │ │ ├── atmel-matrix.h │ │ │ └── atmel-smc.h │ ├── micrel_phy.h │ ├── mii.h │ ├── minmax.h │ ├── mod_devicetable.h │ ├── mount.h │ ├── mtd │ │ ├── bbm.h │ │ ├── cfi.h │ │ ├── concat.h │ │ ├── flashchip.h │ │ ├── jedec.h │ │ ├── mtd-abi.h │ │ ├── mtd.h │ │ ├── nand-ecc-sw-bch.h │ │ ├── nand-ecc-sw-hamming.h │ │ ├── nand.h │ │ ├── nand_bch.h │ │ ├── nand_ecc.h │ │ ├── nand_mxs.h │ │ ├── ndfc.h │ │ ├── nftl.h │ │ ├── onfi.h │ │ ├── partitions.h │ │ ├── rawnand.h │ │ ├── spi-nor.h │ │ └── ubi.h │ ├── mutex.h │ ├── namei.h │ ├── nls.h │ ├── notifier.h │ ├── nvme.h │ ├── nvmem-consumer.h │ ├── nvmem-provider.h │ ├── overflow.h │ ├── pagemap.h │ ├── path.h │ ├── pci.h │ ├── pci_ids.h │ ├── pci_regs.h │ ├── pe.h │ ├── phy.h │ ├── phy │ │ └── phy.h │ ├── pinctrl │ │ └── consumer.h │ ├── platform_data │ │ └── simplefb.h │ ├── poison.h │ ├── posix_types.h │ ├── printk.h │ ├── processor.h │ ├── pstore.h │ ├── pstore_ram.h │ ├── rational.h │ ├── rbtree.h │ ├── rbtree_augmented.h │ ├── reboot-mode.h │ ├── refcount.h │ ├── regmap.h │ ├── regulator │ │ └── of_regulator.h │ ├── remoteproc.h │ ├── reset-controller.h │ ├── reset.h │ ├── reset │ │ └── reset-simple.h │ ├── resource_ext.h │ ├── rslib.h │ ├── rtc.h │ ├── rwsem.h │ ├── sched.h │ ├── scmi_protocol.h │ ├── sizes.h │ ├── slab.h │ ├── smscphy.h │ ├── spi │ │ └── spi-mem.h │ ├── spinlock.h │ ├── stat.h │ ├── stddef.h │ ├── string.h │ ├── string_helpers.h │ ├── stringify.h │ ├── swab.h │ ├── sys_soc.h │ ├── tee_drv.h │ ├── time.h │ ├── typecheck.h │ ├── types.h │ ├── uaccess.h │ ├── unaligned │ │ ├── access_ok.h │ │ ├── be_byteshift.h │ │ ├── be_memmove.h │ │ ├── be_struct.h │ │ ├── generic.h │ │ ├── le_byteshift.h │ │ ├── le_memmove.h │ │ ├── le_struct.h │ │ ├── memmove.h │ │ └── packed_struct.h │ ├── units.h │ ├── usb │ │ ├── cdc.h │ │ ├── ch9.h │ │ ├── chipidea-imx.h │ │ ├── composite.h │ │ ├── dfu.h │ │ ├── ehci.h │ │ ├── fastboot.h │ │ ├── fsl_usb2.h │ │ ├── gadget-multi.h │ │ ├── gadget.h │ │ ├── mass_storage.h │ │ ├── musb.h │ │ ├── phy.h │ │ ├── role.h │ │ ├── storage.h │ │ ├── twl4030.h │ │ ├── typec.h │ │ ├── typec_altmode.h │ │ ├── ulpi.h │ │ ├── usb.h │ │ ├── usb_defs.h │ │ ├── usbnet.h │ │ ├── usbroothubdes.h │ │ ├── usbserial.h │ │ ├── webusb.h │ │ └── xhci.h │ ├── uuid.h │ ├── virtio.h │ ├── virtio_byteorder.h │ ├── virtio_config.h │ ├── virtio_ring.h │ ├── w1-gpio.h │ ├── wait.h │ ├── xxhash.h │ ├── xz.h │ ├── zconf.h │ ├── zlib.h │ ├── zstd.h │ └── zutil.h ├── local_mac_address.h ├── lzo.h ├── mach │ ├── at91 │ │ ├── aic.h │ │ ├── at91_dbgu.h │ │ ├── at91_ddrsdrc.h │ │ ├── at91_pio.h │ │ ├── at91_pit.h │ │ ├── at91_pmc.h │ │ ├── at91_pmc_ll.h │ │ ├── at91_rstc.h │ │ ├── at91_rtt.h │ │ ├── at91_wdt.h │ │ ├── at91rm9200.h │ │ ├── at91rm9200_emac.h │ │ ├── at91rm9200_mc.h │ │ ├── at91rm9200_st.h │ │ ├── at91sam9260.h │ │ ├── at91sam9260_matrix.h │ │ ├── at91sam9261.h │ │ ├── at91sam9261_matrix.h │ │ ├── at91sam9263.h │ │ ├── at91sam9263_matrix.h │ │ ├── at91sam926x.h │ │ ├── at91sam926x_board_init.h │ │ ├── at91sam9_sdramc.h │ │ ├── at91sam9_smc.h │ │ ├── at91sam9g45.h │ │ ├── at91sam9g45_matrix.h │ │ ├── at91sam9n12.h │ │ ├── at91sam9n12_matrix.h │ │ ├── at91sam9x5.h │ │ ├── at91sam9x5_matrix.h │ │ ├── atmel_hlcdc.h │ │ ├── barebox-arm.h │ │ ├── board.h │ │ ├── bootstrap.h │ │ ├── cpu.h │ │ ├── ddramc.h │ │ ├── debug_ll.h │ │ ├── early_udelay.h │ │ ├── gpio.h │ │ ├── hardware.h │ │ ├── iomux.h │ │ ├── matrix.h │ │ ├── sam92_ll.h │ │ ├── sama5_bootsource.h │ │ ├── sama5d2-sip-ddramc.h │ │ ├── sama5d2.h │ │ ├── sama5d2_ll.h │ │ ├── sama5d3-xplained-ddramc.h │ │ ├── sama5d3.h │ │ ├── sama5d3_ll.h │ │ ├── sama5d4.h │ │ ├── tz_matrix.h │ │ └── xload.h │ ├── bcm283x │ │ ├── core.h │ │ ├── debug_ll.h │ │ ├── mbox.h │ │ └── platform.h │ ├── clps711x │ │ ├── clps711x.h │ │ └── debug_ll.h │ ├── imx │ │ ├── atf.h │ │ ├── bbu.h │ │ ├── ccm.h │ │ ├── clock-imx51_53.h │ │ ├── clock-imx6.h │ │ ├── clock-vf610.h │ │ ├── debug_ll.h │ │ ├── ele.h │ │ ├── esdctl-v4.h │ │ ├── esdctl.h │ │ ├── flash-header │ │ │ ├── imx7d-ddr-sabresd.imxcfg │ │ │ ├── vf610-ddr-cr-default.imxcfg │ │ │ ├── vf610-ddr-phy-default.imxcfg │ │ │ ├── vf610-ddr-pll2-400mhz.imxcfg │ │ │ └── vf610-iomux-ddr-default.imxcfg │ │ ├── flexspi-imx8mm-cfg.h │ │ ├── flexspi-imx8mp-cfg.h │ │ ├── generic.h │ │ ├── habv3-imx25-gencsf.h │ │ ├── habv4-imx6-gencsf-template.h │ │ ├── habv4-imx6-gencsf.h │ │ ├── habv4-imx6ull-gencsf.h │ │ ├── habv4-imx8-gencsf.h │ │ ├── iim.h │ │ ├── imx-gpio.h │ │ ├── imx-header.h │ │ ├── imx-ipu-fb.h │ │ ├── imx-nand.h │ │ ├── imx-pll.h │ │ ├── imx1-regs.h │ │ ├── imx21-regs.h │ │ ├── imx25-fusemap.h │ │ ├── imx25-regs.h │ │ ├── imx27-regs.h │ │ ├── imx31-regs.h │ │ ├── imx35-regs.h │ │ ├── imx5.h │ │ ├── imx50-regs.h │ │ ├── imx51-regs.h │ │ ├── imx53-regs.h │ │ ├── imx6-anadig.h │ │ ├── imx6-ddr-regs.h │ │ ├── imx6-fusemap.h │ │ ├── imx6-mmdc.h │ │ ├── imx6-regs.h │ │ ├── imx6.h │ │ ├── imx6dl-ddr-regs.h │ │ ├── imx6q-ddr-regs.h │ │ ├── imx7-ccm-regs.h │ │ ├── imx7-ddr-regs.h │ │ ├── imx7-regs.h │ │ ├── imx7.h │ │ ├── imx8m-ccm-regs.h │ │ ├── imx8m-regs.h │ │ ├── imx8mm-regs.h │ │ ├── imx8mn-regs.h │ │ ├── imx8mp-regs.h │ │ ├── imx8mq-regs.h │ │ ├── imx8mq.h │ │ ├── imx9-regs.h │ │ ├── imx_cpu_types.h │ │ ├── iomux-mx1.h │ │ ├── iomux-mx21.h │ │ ├── iomux-mx25.h │ │ ├── iomux-mx27.h │ │ ├── iomux-mx2x.h │ │ ├── iomux-mx31.h │ │ ├── iomux-mx35.h │ │ ├── iomux-mx50.h │ │ ├── iomux-mx51.h │ │ ├── iomux-mx53.h │ │ ├── iomux-mx6.h │ │ ├── iomux-mx6ul.h │ │ ├── iomux-mx7.h │ │ ├── iomux-mx8m.h │ │ ├── iomux-mx8mm.h │ │ ├── iomux-mx8mn.h │ │ ├── iomux-mx8mp.h │ │ ├── iomux-mx8mq.h │ │ ├── iomux-v1.h │ │ ├── iomux-v3.h │ │ ├── iomux-vf610.h │ │ ├── ocotp-fusemap.h │ │ ├── ocotp.h │ │ ├── reset-reason.h │ │ ├── revision.h │ │ ├── romapi.h │ │ ├── scratch.h │ │ ├── spi.h │ │ ├── trdc.h │ │ ├── tzasc.h │ │ ├── usb.h │ │ ├── vf610-ddrmc-regs.h │ │ ├── vf610-ddrmc.h │ │ ├── vf610-fusemap.h │ │ ├── vf610-iomux-regs.h │ │ ├── vf610-regs.h │ │ ├── vf610.h │ │ ├── weim.h │ │ └── xload.h │ ├── k3 │ │ └── debug_ll.h │ ├── layerscape │ │ ├── bbu.h │ │ ├── debug_ll.h │ │ ├── errata.h │ │ ├── fsl_epu.h │ │ ├── layerscape.h │ │ ├── lowlevel.h │ │ └── xload.h │ ├── mvebu │ │ ├── armada-370-xp-regs.h │ │ ├── barebox-arm-head.h │ │ ├── bbu.h │ │ ├── common.h │ │ ├── debug_ll.h │ │ ├── dove-regs.h │ │ ├── kirkwood-regs.h │ │ ├── lowlevel.h │ │ └── socid.h │ ├── mxs │ │ ├── debug_ll.h │ │ ├── devices.h │ │ ├── fb.h │ │ ├── generic.h │ │ ├── imx-regs.h │ │ ├── imx23-regs.h │ │ ├── imx23.h │ │ ├── imx28-regs.h │ │ ├── imx28.h │ │ ├── init.h │ │ ├── iomux-imx23.h │ │ ├── iomux-imx28.h │ │ ├── iomux.h │ │ ├── mci.h │ │ ├── ocotp.h │ │ ├── power.h │ │ ├── regs-clkctrl-mx23.h │ │ ├── regs-clkctrl-mx28.h │ │ ├── regs-common.h │ │ ├── regs-lradc.h │ │ ├── regs-power-mx28.h │ │ ├── regs-rtc.h │ │ ├── revision.h │ │ ├── ssp.h │ │ └── usb.h │ ├── omap │ │ ├── am33xx-clock.h │ │ ├── am33xx-generic.h │ │ ├── am33xx-mux.h │ │ ├── am33xx-silicon.h │ │ ├── am3xxx-silicon.h │ │ ├── bbu.h │ │ ├── clocks.h │ │ ├── cm-regbits-34xx.h │ │ ├── control.h │ │ ├── cpsw.h │ │ ├── debug_ll.h │ │ ├── devices.h │ │ ├── ehci.h │ │ ├── emac_defs.h │ │ ├── emif4.h │ │ ├── generic.h │ │ ├── gpmc.h │ │ ├── gpmc_nand.h │ │ ├── intc.h │ │ ├── mcspi.h │ │ ├── omap3-clock.h │ │ ├── omap3-devices.h │ │ ├── omap3-generic.h │ │ ├── omap3-mux.h │ │ ├── omap3-silicon.h │ │ ├── omap3-smx.h │ │ ├── omap4-clock.h │ │ ├── omap4-devices.h │ │ ├── omap4-generic.h │ │ ├── omap4-mux.h │ │ ├── omap4-silicon.h │ │ ├── omap4_rom_usb.h │ │ ├── omap4_twl6030_mmc.h │ │ ├── omap_hsmmc.h │ │ ├── sdrc.h │ │ ├── sys_info.h │ │ ├── syslib.h │ │ └── timers.h │ ├── pxa │ │ ├── clock.h │ │ ├── devices.h │ │ ├── gpio.h │ │ ├── hardware.h │ │ ├── mci_pxa2xx.h │ │ ├── mfp-pxa27x.h │ │ ├── mfp-pxa2xx.h │ │ ├── mfp-pxa3xx.h │ │ ├── mfp.h │ │ ├── pxa-regs.h │ │ ├── pxa25x-regs.h │ │ ├── pxa27x-regs.h │ │ ├── pxa2xx-regs.h │ │ ├── pxa3xx-regs.h │ │ ├── pxafb.h │ │ ├── regs-intc.h │ │ ├── regs-lcd.h │ │ ├── regs-ost.h │ │ ├── regs-pwm.h │ │ └── udc_pxa2xx.h │ ├── rockchip │ │ ├── atf.h │ │ ├── bbu.h │ │ ├── bootrom.h │ │ ├── cru_rk3288.h │ │ ├── debug_ll.h │ │ ├── dmc.h │ │ ├── grf_rk3288.h │ │ ├── hardware.h │ │ ├── rk3188-regs.h │ │ ├── rk3288-regs.h │ │ ├── rk3399-regs.h │ │ ├── rk3568-regs.h │ │ ├── rk3588-regs.h │ │ └── rockchip.h │ ├── socfpga │ │ ├── arria10-clock-manager.h │ │ ├── arria10-fpga.h │ │ ├── arria10-pinmux.h │ │ ├── arria10-regs.h │ │ ├── arria10-reset-manager.h │ │ ├── arria10-sdram.h │ │ ├── arria10-system-manager.h │ │ ├── arria10-xload.h │ │ ├── barebox-arm-head.h │ │ ├── cyclone5-clock-manager.h │ │ ├── cyclone5-freeze-controller.h │ │ ├── cyclone5-regs.h │ │ ├── cyclone5-reset-manager.h │ │ ├── cyclone5-scan-manager.h │ │ ├── cyclone5-sdram-config.h │ │ ├── cyclone5-sdram.h │ │ ├── cyclone5-sequencer.c │ │ ├── cyclone5-sequencer.h │ │ ├── cyclone5-system-manager.h │ │ ├── debug_ll.h │ │ ├── generic.h │ │ ├── init.h │ │ ├── lowlevel.h │ │ ├── nic301.h │ │ ├── pll_config.h │ │ ├── sdram_io.h │ │ ├── system.h │ │ └── tclrpt.h │ ├── stm32mp │ │ ├── bbu.h │ │ ├── bootsource.h │ │ ├── bsec.h │ │ ├── ddr_regs.h │ │ ├── debug_ll.h │ │ ├── entry.h │ │ ├── revision.h │ │ ├── smc.h │ │ └── stm32.h │ ├── tegra │ │ ├── debug_ll.h │ │ ├── iomap.h │ │ ├── lowlevel-dvc.h │ │ ├── lowlevel.h │ │ ├── tegra-bbu.h │ │ ├── tegra-powergate.h │ │ ├── tegra114-sysctr.h │ │ ├── tegra124-car.h │ │ ├── tegra20-car.h │ │ ├── tegra20-pmc.h │ │ ├── tegra30-car.h │ │ └── tegra30-flow.h │ ├── versatile │ │ ├── debug_ll.h │ │ └── platform.h │ ├── vexpress │ │ ├── debug_ll.h │ │ ├── devices.h │ │ └── vexpress.h │ ├── zynq │ │ ├── debug_ll.h │ │ ├── init.h │ │ ├── zynq-flash-header.h │ │ ├── zynq7000-header-regs.h │ │ └── zynq7000-regs.h │ └── zynqmp │ │ ├── debug_ll.h │ │ ├── firmware-zynqmp.h │ │ └── zynqmp-bbu.h ├── machine_id.h ├── magicvar.h ├── mailbox.h ├── malloc.h ├── math.h ├── mci.h ├── memory.h ├── memtest.h ├── menu.h ├── mfd │ ├── act8846.h │ ├── bd71837.h │ ├── imx6q-iomuxc-gpr.h │ ├── imx7-iomuxc-gpr.h │ ├── lp3972.h │ ├── mc13892.h │ ├── mc13xxx.h │ ├── mc34704.h │ ├── mc9sdz60.h │ ├── pca9450.h │ ├── pfuze.h │ ├── rn5t568.h │ ├── stmpe-i2c.h │ ├── syscon.h │ ├── twl-core.h │ ├── twl4030.h │ └── twl6030.h ├── mmu.h ├── module.h ├── mtd │ ├── libscan.h │ ├── libubigen.h │ ├── mtd-peb.h │ ├── ubi-media.h │ ├── ubi-user.h │ └── utils.h ├── nand.h ├── net.h ├── notifier.h ├── of.h ├── of_address.h ├── of_device.h ├── of_gpio.h ├── of_graph.h ├── of_mtd.h ├── of_net.h ├── of_pci.h ├── param.h ├── parseopt.h ├── partitions.h ├── password.h ├── pbl.h ├── pbl │ ├── bio.h │ ├── eeprom.h │ ├── handoff-data.h │ ├── i2c.h │ └── pmic.h ├── pe.h ├── phy-id-list.h ├── pinctrl.h ├── platform_data │ ├── atmel-mci.h │ ├── cadence_qspi.h │ ├── dw_mmc.h │ ├── elm.h │ ├── eth-designware.h │ ├── eth-dm9000.h │ ├── eth-ep93xx.h │ ├── eth-fec.h │ ├── eth-smc91111.h │ ├── eth-smc911x.h │ ├── gpio-intel.h │ ├── ide.h │ ├── imxfb.h │ ├── ksz9477_reg.h │ ├── macb.h │ ├── mtd-nand-mrvl.h │ ├── pca953x.h │ └── serial-ns16550.h ├── pm_domain.h ├── poller.h ├── poweroff.h ├── printk.h ├── progress.h ├── pwm.h ├── qsort.h ├── ratp.h ├── ratp_bb.h ├── readkey.h ├── regmap.h ├── regulator.h ├── reset_source.h ├── restart.h ├── rsa.h ├── rtc.h ├── s_record.h ├── sched.h ├── scsi.h ├── serdev.h ├── serial │ ├── cadence.h │ ├── imx-uart.h │ ├── lpuart.h │ └── lpuart32.h ├── shell.h ├── slice.h ├── sntp.h ├── soc │ ├── at91 │ │ └── atmel-sfr.h │ ├── bcm283x │ │ └── wdt.h │ ├── fsl │ │ ├── caam.h │ │ ├── fsl_ddr_sdram.h │ │ ├── fsl_fman.h │ │ ├── fsl_immap.h │ │ ├── fsl_memac.h │ │ ├── fsl_qbman.h │ │ ├── fsl_udc.h │ │ ├── immap_lsch2.h │ │ ├── immap_lsch3.h │ │ ├── qe.h │ │ └── scfg.h │ ├── imx │ │ ├── clk-fracn-gppll.h │ │ ├── ddr.h │ │ ├── gpmi-nand.h │ │ └── imx-nand-bcb.h │ ├── imx8m │ │ ├── clk-early.h │ │ ├── ddr.h │ │ ├── featctrl.h │ │ └── lpddr4_define.h │ ├── imx9 │ │ ├── ddr.h │ │ └── flash_header.h │ ├── sifive │ │ └── l2_cache.h │ ├── starfive │ │ ├── rstgen.h │ │ └── sysmain.h │ ├── stm32 │ │ ├── gpio.h │ │ └── reboot.h │ └── ti │ │ ├── k3-sec-proxy.h │ │ └── ti_sci_protocol.h ├── sound.h ├── spi │ ├── eeprom.h │ ├── imx-spi.h │ ├── spi.h │ └── spi_gpio.h ├── state.h ├── stdio.h ├── stdlib.h ├── stmp-device.h ├── string.h ├── stringlist.h ├── superio.h ├── sys │ ├── ioctl.h │ ├── mount.h │ └── stat.h ├── system-partitions.h ├── tee │ └── optee.h ├── tlsf.h ├── twl6030_pwrbtn.h ├── types.h ├── uapi │ ├── linux │ │ ├── qemu_fw_cfg.h │ │ ├── tee.h │ │ ├── usb │ │ │ ├── ch11.h │ │ │ └── ch9.h │ │ ├── uuid.h │ │ ├── virtio_blk.h │ │ ├── virtio_config.h │ │ ├── virtio_console.h │ │ ├── virtio_ids.h │ │ ├── virtio_input.h │ │ ├── virtio_mmio.h │ │ ├── virtio_net.h │ │ ├── virtio_pci.h │ │ ├── virtio_ring.h │ │ ├── virtio_rng.h │ │ └── virtio_types.h │ └── spec │ │ └── dps.h ├── ubiformat.h ├── uimagefs.h ├── uncompress.h ├── unistd.h ├── video │ ├── atmel_lcdc.h │ ├── backlight.h │ ├── fourcc.h │ ├── media-bus-format.h │ ├── mipi_dbi.h │ ├── mipi_display.h │ ├── omap-fb.h │ └── vpl.h ├── w1_mac_address.h ├── watchdog.h ├── wchar.h ├── work.h ├── xfuncs.h ├── xymodem.h └── zero_page.h ├── lib ├── Kconfig ├── Kconfig.hardening ├── Kconfig.ubsan ├── Makefile ├── ashldi3.c ├── ashrdi3.c ├── base64.c ├── bcd.c ├── bch.c ├── bitmap.c ├── bitrev.c ├── blobgen.c ├── bootstrap │ ├── Kconfig │ ├── Makefile │ ├── common.c │ ├── devfs.c │ └── disk.c ├── bsearch.c ├── clz_ctz.c ├── cmdlinepart.c ├── crc-ccitt.c ├── crc8.c ├── ctype.c ├── decompress_bunzip2.c ├── decompress_inflate.c ├── decompress_unlz4.c ├── decompress_unlzo.c ├── decompress_unxz.c ├── decompress_unzstd.c ├── display_options.c ├── fdt.c ├── fdt_empty_tree.c ├── fdt_ro.c ├── fdt_rw.c ├── fdt_strerror.c ├── fdt_sw.c ├── fdt_wip.c ├── find_next_bit.c ├── fnmatch.c ├── fonts │ ├── Kconfig │ ├── Makefile │ ├── font_6x8.c │ ├── font_7x14.c │ ├── font_8x16.c │ ├── font_8x8.c │ ├── font_custom_16x.c │ ├── font_mini_4x6.c │ └── fonts.c ├── fsl-qe-firmware.c ├── gcd.c ├── genalloc.c ├── getopt.c ├── glob.c ├── gui │ ├── 2d-primitives.c │ ├── Kconfig │ ├── Makefile │ ├── bmp.c │ ├── bmp_layout.h │ ├── graphic_utils.c │ ├── image_renderer.c │ ├── lodepng.c │ ├── lodepng.h │ ├── picopng.c │ ├── picopng.h │ ├── png.c │ ├── png.h │ ├── png_lode.c │ ├── png_pico.c │ ├── qoi.c │ └── qoi.h ├── hexdump.c ├── idr.c ├── image-sparse.c ├── int_sqrt.c ├── jsmn.c ├── kasan │ ├── Kconfig │ ├── Makefile │ ├── common.c │ ├── generic.c │ ├── generic_report.c │ ├── kasan.h │ ├── report.c │ └── test_kasan.c ├── kfifo.c ├── kstrtox.c ├── kstrtox.h ├── libbb.c ├── libfile.c ├── libgen.c ├── libscan.c ├── libubigen.c ├── list_debug.c ├── list_sort.c ├── logo │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ └── logo.c ├── lshrdi3.c ├── lz4 │ ├── Makefile │ ├── lz4_decompress.c │ └── lz4defs.h ├── lzo │ ├── Kconfig │ ├── Makefile │ ├── lzo1x_decompress_safe.c │ └── lzodefs.h ├── make_directory.c ├── math.c ├── math │ ├── Makefile │ ├── div64.c │ └── rational.c ├── misc.c ├── muldi3.c ├── nls_base.c ├── notifier.c ├── parameter.c ├── parseopt.c ├── process_escape_sequence.c ├── qsort.c ├── random.c ├── ratp.c ├── rbtree.c ├── readkey.c ├── readline.c ├── readline_simple.c ├── recursive_action.c ├── reed_solomon │ ├── Makefile │ ├── decode_rs.c │ ├── encode_rs.c │ └── reed_solomon.c ├── refcount.c ├── show_progress.c ├── stackprot.c ├── stmp-device.c ├── string.c ├── stringlist.c ├── strtox.c ├── strverscmp.c ├── ubsan.c ├── ubsan.h ├── uncompress.c ├── unlink-recursive.c ├── uuid.c ├── vsprintf.c ├── wchar.c ├── xfuncs.c ├── xxhash.c ├── xymodem.c ├── xz │ ├── Makefile │ ├── xz_crc32.c │ ├── xz_dec_bcj.c │ ├── xz_dec_lzma2.c │ ├── xz_dec_stream.c │ ├── xz_lzma2.h │ ├── xz_private.h │ └── xz_stream.h ├── zlib_inflate │ ├── Makefile │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ └── infutil.h └── zstd │ ├── Makefile │ ├── bitstream.h │ ├── decompress.c │ ├── entropy_common.c │ ├── error_private.h │ ├── fse.h │ ├── fse_decompress.c │ ├── huf.h │ ├── huf_decompress.c │ ├── mem.h │ ├── zstd_common.c │ └── zstd_internal.h ├── net ├── Kconfig ├── Makefile ├── dhcp.c ├── dns.c ├── eth.c ├── fastboot.c ├── ifup.c ├── lib.c ├── net.c ├── netconsole.c ├── nfs.c ├── ping.c └── sntp.c ├── pbl ├── Kconfig ├── Makefile ├── console.c ├── decomp.c ├── fdt.c ├── handoff-data.c ├── misc.c └── string.c ├── pytest.ini ├── scripts ├── .gitignore ├── Kbuild.include ├── Kconfig ├── Kconfig.include ├── Makefile ├── Makefile.build ├── Makefile.clean ├── Makefile.defconf ├── Makefile.host ├── Makefile.kasan ├── Makefile.lib ├── Makefile.modpost ├── Makefile.pic ├── Makefile.ubsan ├── Makefile.userprogs ├── bareboxcrc32-target.c ├── bareboxcrc32.c ├── bareboxenv-target.c ├── bareboxenv.c ├── bareboximd-target.c ├── bareboximd.c ├── basic │ ├── .gitignore │ ├── Makefile │ └── fixdep.c ├── bbremote ├── bin2c.c ├── check_size ├── checkpatch.pl ├── clang-tools │ └── gen_compile_commands.py ├── cleanfile ├── cleanpatch ├── coccinelle │ └── misc │ │ └── altera_sequencer.cocci ├── common.c ├── common.h ├── compiler.h ├── config ├── const_structs.checkpatch ├── container.sh ├── dfuboot.sh ├── dtc │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dtc │ ├── checks.c │ ├── data.c │ ├── dtc-lexer.l │ ├── dtc-parser.y │ ├── dtc.c │ ├── dtc.h │ ├── fdtget.c │ ├── flattree.c │ ├── fstree.c │ ├── libfdt │ │ ├── Makefile.libfdt │ │ ├── fdt.c │ │ ├── fdt.h │ │ ├── fdt_addresses.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_overlay.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt.h │ │ ├── libfdt_env.h │ │ └── libfdt_internal.h │ ├── livetree.c │ ├── srcpos.c │ ├── srcpos.h │ ├── treesource.c │ ├── update-dtc-source.sh │ ├── util.c │ ├── util.h │ ├── version_gen.h │ └── yamltree.c ├── erizo-nmon-image ├── extract_symbol_offset ├── file-size.sh ├── fiptool_fwconfig ├── fix_size.c ├── gcc-64bitptr.sh ├── gcc-version.sh ├── gdb │ └── helper.py ├── gen-dtb-s ├── gen-dtbo-s ├── genenv ├── get_maintainer.pl ├── imx │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ ├── Makefile.mingw64 │ ├── README │ ├── imx-image.c │ ├── imx-target.c │ ├── imx-usb-loader-target.c │ ├── imx-usb-loader.c │ ├── imx.c │ └── imx.h ├── imx9image.c ├── include │ ├── asm-generic │ │ ├── atomic-gcc.h │ │ ├── barrier.h │ │ ├── bitops.h │ │ ├── bitops │ │ │ ├── __ffs.h │ │ │ ├── __fls.h │ │ │ ├── atomic.h │ │ │ ├── find.h │ │ │ ├── fls.h │ │ │ ├── fls64.h │ │ │ └── hweight.h │ │ └── bitsperlong.h │ ├── asm │ │ ├── atomic.h │ │ ├── barrier.h │ │ └── bug.h │ ├── linux │ │ ├── atomic.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── compiler.h │ │ ├── err.h │ │ ├── export.h │ │ ├── kernel.h │ │ ├── list.h │ │ ├── list_sort.h │ │ ├── log2.h │ │ ├── string.h │ │ └── types.h │ └── tools │ │ ├── be_byteshift.h │ │ ├── endian.h │ │ └── le_byteshift.h ├── kallsyms.c ├── kconfig-lint.py ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf-cfg.sh │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── images.h │ ├── internal.h │ ├── lexer.l │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf-cfg.sh │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf-cfg.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── parser.y │ ├── preprocess.c │ ├── qconf-cfg.sh │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── tests │ │ ├── auto_submenu │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ └── expected_stdout │ │ ├── choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── alldef_expected_config │ │ │ ├── allmod_expected_config │ │ │ ├── allno_expected_config │ │ │ ├── allyes_expected_config │ │ │ ├── oldask0_expected_stdout │ │ │ ├── oldask1_config │ │ │ └── oldask1_expected_stdout │ │ ├── choice_value_with_m_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── expected_config │ │ │ └── expected_stdout │ │ ├── conftest.py │ │ ├── err_recursive_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ └── expected_stderr │ │ ├── err_recursive_inc │ │ │ ├── Kconfig │ │ │ ├── Kconfig.inc1 │ │ │ ├── Kconfig.inc2 │ │ │ ├── Kconfig.inc3 │ │ │ ├── __init__.py │ │ │ └── expected_stderr │ │ ├── inter_choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── defconfig │ │ │ └── expected_config │ │ ├── new_choice_with_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── expected_stdout │ │ ├── no_write_if_dep_unmet │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── expected_config │ │ ├── preprocess │ │ │ ├── builtin_func │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ ├── expected_stderr │ │ │ │ └── expected_stdout │ │ │ ├── circular_expansion │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ │ ├── escape │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ │ └── variable │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ └── pytest.ini │ └── util.c ├── kernel-install-target.c ├── kernel-install.c ├── kwbimage.c ├── kwboot-target.c ├── kwboot.c ├── list-defconfigs.sh ├── mailmapper ├── mips-relocs.c ├── mk-omap-image.c ├── mkcompile_h ├── mkmakefile ├── mksysmap ├── mod │ ├── .gitignore │ ├── Makefile │ ├── empty.c │ ├── file2alias.c │ ├── mk_elfconfig.c │ ├── modpost.c │ ├── modpost.h │ └── sumversion.c ├── mvebuimg.c ├── mxsboot.c ├── mxsimage.c ├── netconsole ├── omap3-usb-loader-target.c ├── omap3-usb-loader.c ├── omap4_usbboot-target.c ├── omap4_usbboot.c ├── omap_signGP.c ├── pblimage.c ├── prelink-riscv.c ├── prelink-riscv.inc ├── qoiconv.c ├── regsubst.pl ├── remote │ ├── __init__.py │ ├── controller.py │ ├── main.py │ ├── messages.py │ ├── missing.py │ ├── ratp.py │ ├── ratpfs.py │ └── threadstdio.py ├── rk-usb-loader-target.c ├── rk-usb-loader.c ├── rkimage.c ├── rockchip.h ├── rsatoc.c ├── s5p_cksum.c ├── setlocalversion ├── socfpga_get_sequencer ├── socfpga_import_preloader ├── socfpga_mkimage.c ├── socfpga_sequencer_defines_defaults ├── socfpga_xml_to_config.sh ├── spdxcheck.py ├── spelling.txt ├── stb_image.h ├── stm32image.c ├── tags.sh ├── tegra │ ├── .gitignore │ ├── Makefile │ ├── aes_ref.c │ ├── bct_dump.c │ ├── cbootimage.c │ ├── cbootimage.h │ ├── context.c │ ├── context.h │ ├── crypto.c │ ├── crypto.h │ ├── data_layout.c │ ├── data_layout.h │ ├── nvaes_ref.h │ ├── parse.c │ ├── parse.h │ ├── set.c │ ├── set.h │ ├── t114 │ │ ├── nvbctlib_t114.c │ │ ├── nvboot_bct_t114.h │ │ ├── nvboot_sdram_param_t114.h │ │ └── parse_t114.c │ ├── t124 │ │ ├── nvbctlib_t124.c │ │ ├── nvboot_bct_t124.h │ │ ├── nvboot_sdram_param_t124.h │ │ └── parse_t124.c │ ├── t20 │ │ ├── nvbctlib_t20.c │ │ ├── nvboot_bct_t20.h │ │ ├── nvboot_sdram_param_t20.h │ │ └── parse_t20.c │ └── t30 │ │ ├── nvbctlib_t30.c │ │ ├── nvboot_bct_t30.h │ │ ├── nvboot_sdram_param_t30.h │ │ └── parse_t30.c ├── xz_wrap.sh └── zynq_mkimage.c └── test ├── .gitignore ├── Containerfile ├── Kconfig ├── Makefile ├── __init__.py ├── arm ├── a15@multi_v7_defconfig.yaml ├── a9@multi_v7_defconfig.yaml ├── multi_v7_defconfig.yaml ├── multi_v8_defconfig.yaml ├── qemu-raspi0@multi_v7_defconfig.yaml ├── qemu-raspi1ap@multi_v7_defconfig.yaml ├── qemu-raspi2b@multi_v7_defconfig.yaml ├── qemu-sabrelite@multi_v7_defconfig.yaml ├── virt@multi_v7_defconfig.yaml └── virt@multi_v8_defconfig.yaml ├── conftest.py ├── emulate.pl ├── generate-dummy-fw.sh ├── mips ├── be@qemu-malta_defconfig.yaml ├── le@qemu-malta_defconfig.yaml ├── qemu-malta64el_defconfig.yaml └── qemu-malta_defconfig.yaml ├── openrisc └── generic_defconfig.yaml ├── py ├── __init__.py ├── helper.py ├── test_bselftests.py ├── test_bthread.py └── test_shell.py ├── riscv ├── qemu-virt64@rv64i_defconfig.yaml ├── qemu@virt32_defconfig.yaml ├── rv64i_defconfig.yaml ├── sifive@rv64i_defconfig.yaml ├── tinyemu@rv64i_defconfig.yaml ├── tinyemu@virt32_defconfig.yaml └── virt32_defconfig.yaml ├── sandbox └── sandbox_defconfig.yaml ├── self ├── Kconfig ├── Makefile ├── core.c ├── digest.c ├── dirfd.c ├── envvar.c ├── idr.c ├── json.c ├── jwt.c ├── jwt_test.pem ├── jwt_test.pem.c_shipped ├── malloc.c ├── mmu.c ├── of_manipulation.c ├── of_manipulation.dts ├── printf.c ├── progress-notifier.c ├── ramfs.c ├── regulator.c ├── setjmp.c ├── string.c ├── test_command.c └── test_regulator.dtso ├── strategy.py └── x86 ├── efi_defconfig.yaml ├── pc@efi_defconfig.yaml ├── q35@efi_defconfig.yaml └── virtio@efi_defconfig.yaml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/.clang-format -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- 1 | CompileFlags: 2 | Remove: -mabi=lp64 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/.mailmap -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/COPYING -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/Kconfig -------------------------------------------------------------------------------- /MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/MAKEALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/README -------------------------------------------------------------------------------- /arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/Kconfig -------------------------------------------------------------------------------- /arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/Kconfig -------------------------------------------------------------------------------- /arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/Makefile -------------------------------------------------------------------------------- /arch/arm/boards/at91sam9m10ihd/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | android 2 | -------------------------------------------------------------------------------- /arch/arm/boards/at91sam9m10ihd/env/nv/hostname: -------------------------------------------------------------------------------- 1 | at91sam9m10ihd 2 | -------------------------------------------------------------------------------- /arch/arm/boards/at91sam9m10ihd/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/avnet-zedboard/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyPS1,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/beagleplay/Makefile: -------------------------------------------------------------------------------- 1 | pbl-y += lowlevel.o entry.o 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ccxmx51/defaultenv-ccxmx51/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand 2 | -------------------------------------------------------------------------------- /arch/arm/boards/clep7212/defaultenv-clep7212/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /arch/arm/boards/clep7212/defaultenv-clep7212/nv/boot.default: -------------------------------------------------------------------------------- 1 | nor 2 | -------------------------------------------------------------------------------- /arch/arm/boards/clep7212/defaultenv-clep7212/nv/linux.bootargs.debug: -------------------------------------------------------------------------------- 1 | earlyprintk 2 | -------------------------------------------------------------------------------- /arch/arm/boards/crystalfontz-cfa10036/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc-ext3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=tty1 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/linux.bootargs.lpj: -------------------------------------------------------------------------------- 1 | lpj=3997696 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/linux.bootargs.quiet: -------------------------------------------------------------------------------- 1 | quiet 2 | -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-e9/defaultenv-e9/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc1 mmc3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-e9/defaultenv-e9/nv/hostname: -------------------------------------------------------------------------------- 1 | e9 2 | -------------------------------------------------------------------------------- /arch/arm/boards/imx233-olinuxino/defaultenv-imx233-olinuxino/nv/boot.default: -------------------------------------------------------------------------------- 1 | sd 2 | -------------------------------------------------------------------------------- /arch/arm/boards/imx233-olinuxino/defaultenv-imx233-olinuxino/nv/hostname: -------------------------------------------------------------------------------- 1 | olinuxino 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle-mx50/defaultenv-kindle-mx50/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle-mx50/defaultenv-kindle-mx50/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc_kernel 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ls1046ardb/defaultenv-ls1046ardb/nv/dev.eth4.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ls1046ardb/defaultenv-ls1046ardb/nv/dev.eth5.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ls1046ardb/defaultenv-ls1046ardb/nv/dev.eth6.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ls1046ardb/defaultenv-ls1046ardb/nv/dev.eth7.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/myirtech-x335x/defaultenv-myirtech-x335x/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/nv/allow_color: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/nv/boot.watchdog_timeout: -------------------------------------------------------------------------------- 1 | 60 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-som-rk3288/defaultenv-physom-rk3288/nv/boot.default: -------------------------------------------------------------------------------- 1 | emmc mmc 2 | -------------------------------------------------------------------------------- /arch/arm/boards/pine64-quartz64/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/protonic-imx8m/defaultenv-prt8m/nv/boot.default: -------------------------------------------------------------------------------- 1 | prt8mm-default 2 | -------------------------------------------------------------------------------- /arch/arm/boards/radxa-cm3/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/radxa-rock/defaultenv-radxa-rock/nv/hostname: -------------------------------------------------------------------------------- 1 | radxa-rock 2 | -------------------------------------------------------------------------------- /arch/arm/boards/radxa-rock3/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/radxa-rock5/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/rockchip-rk3568-bpi-r2pro/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/rockchip-rk3568-evb/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d27-giantboard/defaultenv-giantboard/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc1 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d27-som1/defaultenv-sama5d27-som1/nv/dev.wdog0.autoping: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4_xplained/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4_xplained/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/telit-evk-pro3/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand-ubi 2 | -------------------------------------------------------------------------------- /arch/arm/boards/telit-evk-pro3/env/nv/hostname: -------------------------------------------------------------------------------- 1 | evk-pro3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/telit-evk-pro3/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/tqmls1046a/defaultenv-tqmls1046a/nv/dev.eth0.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/tqmls1046a/defaultenv-tqmls1046a/nv/dev.eth1.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/tqmls1046a/defaultenv-tqmls1046a/nv/dev.eth4.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/tqmls1046a/defaultenv-tqmls1046a/nv/dev.eth5.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/tqmls1046a/defaultenv-tqmls1046a/nv/dev.eth6.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/tqmls1046a/defaultenv-tqmls1046a/nv/dev.eth7.mode: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /arch/arm/boards/versatile/env/boot.d/001-nor: -------------------------------------------------------------------------------- 1 | ../boot/nor -------------------------------------------------------------------------------- /arch/arm/boards/versatile/env/boot.d/101-nor-update: -------------------------------------------------------------------------------- 1 | ../boot/nor-update -------------------------------------------------------------------------------- /arch/arm/boards/versatile/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | /env/boot.d 2 | -------------------------------------------------------------------------------- /arch/arm/boards/wolfvision-pf5/.gitignore: -------------------------------------------------------------------------------- 1 | sdram-init.bin 2 | -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx51-rdu1/defaultenv-rdu1/nv/autoboot_abort_key: -------------------------------------------------------------------------------- 1 | ctrl-c -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx51-rdu1/defaultenv-rdu1/nv/boot.default: -------------------------------------------------------------------------------- 1 | rdu-default -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx6q-rdu2/defaultenv-rdu2/nv/autoboot_abort_key: -------------------------------------------------------------------------------- 1 | ctrl-c -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx6q-rdu2/defaultenv-rdu2/nv/boot.default: -------------------------------------------------------------------------------- 1 | rdu-default -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx6q-rdu2/defaultenv-rdu2/nv/dev.eth1.mode: -------------------------------------------------------------------------------- 1 | disabled -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx8mq-dev/defaultenv-imx8mq-zii-dev/nv/autoboot_abort_key: -------------------------------------------------------------------------------- 1 | ctrl-c -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx8mq-dev/defaultenv-imx8mq-zii-dev/nv/boot.default: -------------------------------------------------------------------------------- 1 | rdu-default -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx8mq-dev/defaultenv-imx8mq-zii-dev/nv/dev.eth1.mode: -------------------------------------------------------------------------------- 1 | disabled -------------------------------------------------------------------------------- /arch/arm/boards/zii-vf610-dev/defaultenv-zii-vf610-dev/nv/autoboot_abort_key: -------------------------------------------------------------------------------- 1 | ctrl-c -------------------------------------------------------------------------------- /arch/arm/boards/zii-vf610-dev/defaultenv-zii-vf610-dev/nv/dev.eth1.mode: -------------------------------------------------------------------------------- 1 | disabled -------------------------------------------------------------------------------- /arch/arm/cpu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/Kconfig -------------------------------------------------------------------------------- /arch/arm/cpu/atf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/atf.c -------------------------------------------------------------------------------- /arch/arm/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/cpu.c -------------------------------------------------------------------------------- /arch/arm/cpu/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/dtb.c -------------------------------------------------------------------------------- /arch/arm/cpu/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/entry.c -------------------------------------------------------------------------------- /arch/arm/cpu/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/entry.h -------------------------------------------------------------------------------- /arch/arm/cpu/hyp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/hyp.S -------------------------------------------------------------------------------- /arch/arm/cpu/psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/psci.c -------------------------------------------------------------------------------- /arch/arm/cpu/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/sm.c -------------------------------------------------------------------------------- /arch/arm/cpu/sm_as.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/sm_as.S -------------------------------------------------------------------------------- /arch/arm/cpu/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/cpu/start.c -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/lib32/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | barebox.lds 4 | -------------------------------------------------------------------------------- /arch/arm/lib32/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/lib32/io.c -------------------------------------------------------------------------------- /arch/arm/lib64/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | barebox.lds 4 | -------------------------------------------------------------------------------- /arch/arm/lib64/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/lib64/io.c -------------------------------------------------------------------------------- /arch/arm/lib64/pbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/arm/lib64/pbl.c -------------------------------------------------------------------------------- /arch/arm/mach-k3/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += common.o 2 | -------------------------------------------------------------------------------- /arch/kvx/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/Kconfig -------------------------------------------------------------------------------- /arch/kvx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/Makefile -------------------------------------------------------------------------------- /arch/kvx/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/cpu/cpu.c -------------------------------------------------------------------------------- /arch/kvx/cpu/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/cpu/reset.c -------------------------------------------------------------------------------- /arch/kvx/cpu/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/cpu/start.S -------------------------------------------------------------------------------- /arch/kvx/lib/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/lib/board.c -------------------------------------------------------------------------------- /arch/kvx/lib/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/lib/bootm.c -------------------------------------------------------------------------------- /arch/kvx/lib/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/lib/cache.c -------------------------------------------------------------------------------- /arch/kvx/lib/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/kvx/lib/dtb.c -------------------------------------------------------------------------------- /arch/mips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/mips/Kconfig -------------------------------------------------------------------------------- /arch/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/mips/Makefile -------------------------------------------------------------------------------- /arch/mips/boot/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/mips/boot/dtb.c -------------------------------------------------------------------------------- /arch/mips/configs/le.config: -------------------------------------------------------------------------------- 1 | CONFIG_CPU_LITTLE_ENDIAN=y 2 | -------------------------------------------------------------------------------- /arch/mips/lib/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | barebox.lds 4 | -------------------------------------------------------------------------------- /arch/mips/lib/end.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/mips/lib/end.S -------------------------------------------------------------------------------- /arch/openrisc/cpu/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | barebox.lds 4 | -------------------------------------------------------------------------------- /arch/openrisc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/powerpc/Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/powerpc/Kbuild -------------------------------------------------------------------------------- /arch/powerpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/powerpc/Kconfig -------------------------------------------------------------------------------- /arch/powerpc/boards/pcm030/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyPSC0,115200 2 | -------------------------------------------------------------------------------- /arch/riscv/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/riscv/Kconfig -------------------------------------------------------------------------------- /arch/riscv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/riscv/Makefile -------------------------------------------------------------------------------- /arch/riscv/boards/beaglev/defaultenv-beaglev/nv/boot.default: -------------------------------------------------------------------------------- 1 | buildroot net 2 | -------------------------------------------------------------------------------- /arch/riscv/cpu/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/riscv/cpu/dma.c -------------------------------------------------------------------------------- /arch/riscv/lib/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | barebox.lds 4 | -------------------------------------------------------------------------------- /arch/riscv/lib/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/riscv/lib/dtb.c -------------------------------------------------------------------------------- /arch/riscv/lib/sbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/riscv/lib/sbi.c -------------------------------------------------------------------------------- /arch/sandbox/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/sandbox/Kconfig -------------------------------------------------------------------------------- /arch/sandbox/board/env/nv/autoboot: -------------------------------------------------------------------------------- 1 | abort 2 | -------------------------------------------------------------------------------- /arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/x86/Kconfig -------------------------------------------------------------------------------- /arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/arch/x86/Makefile -------------------------------------------------------------------------------- /commands/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/2048.c -------------------------------------------------------------------------------- /commands/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/Kconfig -------------------------------------------------------------------------------- /commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/Makefile -------------------------------------------------------------------------------- /commands/automount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/automount.c -------------------------------------------------------------------------------- /commands/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/basename.c -------------------------------------------------------------------------------- /commands/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/beep.c -------------------------------------------------------------------------------- /commands/blobgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/blobgen.c -------------------------------------------------------------------------------- /commands/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/boot.c -------------------------------------------------------------------------------- /commands/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/bootm.c -------------------------------------------------------------------------------- /commands/bthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/bthread.c -------------------------------------------------------------------------------- /commands/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/cat.c -------------------------------------------------------------------------------- /commands/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/cd.c -------------------------------------------------------------------------------- /commands/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/clear.c -------------------------------------------------------------------------------- /commands/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/clk.c -------------------------------------------------------------------------------- /commands/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/cmp.c -------------------------------------------------------------------------------- /commands/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/cp.c -------------------------------------------------------------------------------- /commands/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/crc.c -------------------------------------------------------------------------------- /commands/detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/detect.c -------------------------------------------------------------------------------- /commands/devinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/devinfo.c -------------------------------------------------------------------------------- /commands/devlookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/devlookup.c -------------------------------------------------------------------------------- /commands/devunbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/devunbind.c -------------------------------------------------------------------------------- /commands/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/dfu.c -------------------------------------------------------------------------------- /commands/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/dhcp.c -------------------------------------------------------------------------------- /commands/dhrystone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/dhrystone.c -------------------------------------------------------------------------------- /commands/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/digest.c -------------------------------------------------------------------------------- /commands/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/dirname.c -------------------------------------------------------------------------------- /commands/dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/dmesg.c -------------------------------------------------------------------------------- /commands/drvinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/drvinfo.c -------------------------------------------------------------------------------- /commands/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/echo.c -------------------------------------------------------------------------------- /commands/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/edit.c -------------------------------------------------------------------------------- /commands/ethlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/ethlog.c -------------------------------------------------------------------------------- /commands/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/exec.c -------------------------------------------------------------------------------- /commands/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/export.c -------------------------------------------------------------------------------- /commands/false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/false.c -------------------------------------------------------------------------------- /commands/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/fbtest.c -------------------------------------------------------------------------------- /commands/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/filetype.c -------------------------------------------------------------------------------- /commands/findmnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/findmnt.c -------------------------------------------------------------------------------- /commands/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/flash.c -------------------------------------------------------------------------------- /commands/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/global.c -------------------------------------------------------------------------------- /commands/go.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/go.c -------------------------------------------------------------------------------- /commands/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/gpio.c -------------------------------------------------------------------------------- /commands/hab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/hab.c -------------------------------------------------------------------------------- /commands/hashsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/hashsum.c -------------------------------------------------------------------------------- /commands/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/help.c -------------------------------------------------------------------------------- /commands/hwclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/hwclock.c -------------------------------------------------------------------------------- /commands/hwmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/hwmon.c -------------------------------------------------------------------------------- /commands/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/i2c.c -------------------------------------------------------------------------------- /commands/imd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/imd.c -------------------------------------------------------------------------------- /commands/insmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/insmod.c -------------------------------------------------------------------------------- /commands/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/internal.h -------------------------------------------------------------------------------- /commands/iomemport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/iomemport.c -------------------------------------------------------------------------------- /commands/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/kallsyms.c -------------------------------------------------------------------------------- /commands/keystore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/keystore.c -------------------------------------------------------------------------------- /commands/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/led.c -------------------------------------------------------------------------------- /commands/let.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/let.c -------------------------------------------------------------------------------- /commands/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/ln.c -------------------------------------------------------------------------------- /commands/loadb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/loadb.c -------------------------------------------------------------------------------- /commands/loadenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/loadenv.c -------------------------------------------------------------------------------- /commands/loads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/loads.c -------------------------------------------------------------------------------- /commands/loadxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/loadxy.c -------------------------------------------------------------------------------- /commands/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/login.c -------------------------------------------------------------------------------- /commands/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/ls.c -------------------------------------------------------------------------------- /commands/lsmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/lsmod.c -------------------------------------------------------------------------------- /commands/lspci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/lspci.c -------------------------------------------------------------------------------- /commands/magicvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/magicvar.c -------------------------------------------------------------------------------- /commands/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/md.c -------------------------------------------------------------------------------- /commands/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/memcmp.c -------------------------------------------------------------------------------- /commands/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/memcpy.c -------------------------------------------------------------------------------- /commands/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/meminfo.c -------------------------------------------------------------------------------- /commands/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/memset.c -------------------------------------------------------------------------------- /commands/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/memtest.c -------------------------------------------------------------------------------- /commands/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/menu.c -------------------------------------------------------------------------------- /commands/menutree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/menutree.c -------------------------------------------------------------------------------- /commands/miitool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/miitool.c -------------------------------------------------------------------------------- /commands/mipi_dbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/mipi_dbi.c -------------------------------------------------------------------------------- /commands/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/mkdir.c -------------------------------------------------------------------------------- /commands/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/mm.c -------------------------------------------------------------------------------- /commands/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/mmc.c -------------------------------------------------------------------------------- /commands/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/mount.c -------------------------------------------------------------------------------- /commands/msleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/msleep.c -------------------------------------------------------------------------------- /commands/mw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/mw.c -------------------------------------------------------------------------------- /commands/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/nand.c -------------------------------------------------------------------------------- /commands/nandtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/nandtest.c -------------------------------------------------------------------------------- /commands/nv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/nv.c -------------------------------------------------------------------------------- /commands/nvmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/nvmem.c -------------------------------------------------------------------------------- /commands/of_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/of_diff.c -------------------------------------------------------------------------------- /commands/of_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/of_dump.c -------------------------------------------------------------------------------- /commands/of_fixup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/of_fixup.c -------------------------------------------------------------------------------- /commands/of_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/of_node.c -------------------------------------------------------------------------------- /commands/oftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/oftree.c -------------------------------------------------------------------------------- /commands/parted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/parted.c -------------------------------------------------------------------------------- /commands/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/partition.c -------------------------------------------------------------------------------- /commands/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/passwd.c -------------------------------------------------------------------------------- /commands/pm_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/pm_domain.c -------------------------------------------------------------------------------- /commands/poweroff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/poweroff.c -------------------------------------------------------------------------------- /commands/printenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/printenv.c -------------------------------------------------------------------------------- /commands/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/pwd.c -------------------------------------------------------------------------------- /commands/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/pwm.c -------------------------------------------------------------------------------- /commands/readf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/readf.c -------------------------------------------------------------------------------- /commands/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/readline.c -------------------------------------------------------------------------------- /commands/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/readlink.c -------------------------------------------------------------------------------- /commands/reginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/reginfo.c -------------------------------------------------------------------------------- /commands/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/regulator.c -------------------------------------------------------------------------------- /commands/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/reset.c -------------------------------------------------------------------------------- /commands/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/rm.c -------------------------------------------------------------------------------- /commands/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/rmdir.c -------------------------------------------------------------------------------- /commands/saveenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/saveenv.c -------------------------------------------------------------------------------- /commands/seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/seed.c -------------------------------------------------------------------------------- /commands/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/selftest.c -------------------------------------------------------------------------------- /commands/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/setenv.c -------------------------------------------------------------------------------- /commands/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/sleep.c -------------------------------------------------------------------------------- /commands/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/smc.c -------------------------------------------------------------------------------- /commands/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/spi.c -------------------------------------------------------------------------------- /commands/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/splash.c -------------------------------------------------------------------------------- /commands/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/stat.c -------------------------------------------------------------------------------- /commands/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/state.c -------------------------------------------------------------------------------- /commands/stddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/stddev.c -------------------------------------------------------------------------------- /commands/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/test.c -------------------------------------------------------------------------------- /commands/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/tftp.c -------------------------------------------------------------------------------- /commands/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/time.c -------------------------------------------------------------------------------- /commands/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/timeout.c -------------------------------------------------------------------------------- /commands/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/trigger.c -------------------------------------------------------------------------------- /commands/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/true.c -------------------------------------------------------------------------------- /commands/tutorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/tutorial.c -------------------------------------------------------------------------------- /commands/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/ubi.c -------------------------------------------------------------------------------- /commands/ubiformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/ubiformat.c -------------------------------------------------------------------------------- /commands/ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/ubsan.c -------------------------------------------------------------------------------- /commands/uimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/uimage.c -------------------------------------------------------------------------------- /commands/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/umount.c -------------------------------------------------------------------------------- /commands/uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/uptime.c -------------------------------------------------------------------------------- /commands/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/usb.c -------------------------------------------------------------------------------- /commands/usbgadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/usbgadget.c -------------------------------------------------------------------------------- /commands/usbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/usbserial.c -------------------------------------------------------------------------------- /commands/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/version.c -------------------------------------------------------------------------------- /commands/wd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/commands/wd.c -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Kconfig.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/Kconfig.debug -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/bbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/bbu.c -------------------------------------------------------------------------------- /common/binfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/binfmt.c -------------------------------------------------------------------------------- /common/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/block.c -------------------------------------------------------------------------------- /common/blspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/blspec.c -------------------------------------------------------------------------------- /common/boards/configs/enable_werror.config: -------------------------------------------------------------------------------- 1 | CONFIG_WERROR=y 2 | -------------------------------------------------------------------------------- /common/boards/tq/Makefile: -------------------------------------------------------------------------------- 1 | obj-pbl-y += tq_eeprom.o 2 | -------------------------------------------------------------------------------- /common/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/boot.c -------------------------------------------------------------------------------- /common/bootargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/bootargs.c -------------------------------------------------------------------------------- /common/bootchooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/bootchooser.c -------------------------------------------------------------------------------- /common/booti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/booti.c -------------------------------------------------------------------------------- /common/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/bootm.c -------------------------------------------------------------------------------- /common/bootsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/bootsource.c -------------------------------------------------------------------------------- /common/bthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/bthread.c -------------------------------------------------------------------------------- /common/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/calloc.c -------------------------------------------------------------------------------- /common/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/clock.c -------------------------------------------------------------------------------- /common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/command.c -------------------------------------------------------------------------------- /common/complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/complete.c -------------------------------------------------------------------------------- /common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/console.c -------------------------------------------------------------------------------- /common/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/date.c -------------------------------------------------------------------------------- /common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ddr_spd.c -------------------------------------------------------------------------------- /common/deep-probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/deep-probe.c -------------------------------------------------------------------------------- /common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/dlmalloc.c -------------------------------------------------------------------------------- /common/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/elf.c -------------------------------------------------------------------------------- /common/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/env.c -------------------------------------------------------------------------------- /common/envfs-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/envfs-core.c -------------------------------------------------------------------------------- /common/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/environment.c -------------------------------------------------------------------------------- /common/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/fastboot.c -------------------------------------------------------------------------------- /common/file-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/file-list.c -------------------------------------------------------------------------------- /common/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/filetype.c -------------------------------------------------------------------------------- /common/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/firmware.c -------------------------------------------------------------------------------- /common/globalvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/globalvar.c -------------------------------------------------------------------------------- /common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/hush.c -------------------------------------------------------------------------------- /common/image-fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/image-fit.c -------------------------------------------------------------------------------- /common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/image.c -------------------------------------------------------------------------------- /common/imd-barebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/imd-barebox.c -------------------------------------------------------------------------------- /common/imd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/imd.c -------------------------------------------------------------------------------- /common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/kallsyms.c -------------------------------------------------------------------------------- /common/machine_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/machine_id.c -------------------------------------------------------------------------------- /common/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/meminfo.c -------------------------------------------------------------------------------- /common/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/memory.c -------------------------------------------------------------------------------- /common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/memsize.c -------------------------------------------------------------------------------- /common/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/memtest.c -------------------------------------------------------------------------------- /common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/menu.c -------------------------------------------------------------------------------- /common/menutree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/menutree.c -------------------------------------------------------------------------------- /common/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/misc.c -------------------------------------------------------------------------------- /common/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/module.c -------------------------------------------------------------------------------- /common/module.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/module.lds.S -------------------------------------------------------------------------------- /common/oftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/oftree.c -------------------------------------------------------------------------------- /common/optee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/optee.c -------------------------------------------------------------------------------- /common/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/parser.c -------------------------------------------------------------------------------- /common/partitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/partitions.c -------------------------------------------------------------------------------- /common/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/password.c -------------------------------------------------------------------------------- /common/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/pe.c -------------------------------------------------------------------------------- /common/poller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/poller.c -------------------------------------------------------------------------------- /common/poweroff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/poweroff.c -------------------------------------------------------------------------------- /common/ratp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/Kconfig -------------------------------------------------------------------------------- /common/ratp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/Makefile -------------------------------------------------------------------------------- /common/ratp/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/getenv.c -------------------------------------------------------------------------------- /common/ratp/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/gpio.c -------------------------------------------------------------------------------- /common/ratp/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/i2c.c -------------------------------------------------------------------------------- /common/ratp/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/md.c -------------------------------------------------------------------------------- /common/ratp/mw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/mw.c -------------------------------------------------------------------------------- /common/ratp/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/ping.c -------------------------------------------------------------------------------- /common/ratp/ratp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/ratp.c -------------------------------------------------------------------------------- /common/ratp/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ratp/reset.c -------------------------------------------------------------------------------- /common/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/resource.c -------------------------------------------------------------------------------- /common/restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/restart.c -------------------------------------------------------------------------------- /common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/s_record.c -------------------------------------------------------------------------------- /common/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/sched.c -------------------------------------------------------------------------------- /common/serdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/serdev.c -------------------------------------------------------------------------------- /common/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/slice.c -------------------------------------------------------------------------------- /common/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/startup.c -------------------------------------------------------------------------------- /common/state/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/state/state.c -------------------------------------------------------------------------------- /common/state/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/state/state.h -------------------------------------------------------------------------------- /common/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/tlsf.c -------------------------------------------------------------------------------- /common/tlsf_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/tlsf_malloc.c -------------------------------------------------------------------------------- /common/tlsfbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/tlsfbits.h -------------------------------------------------------------------------------- /common/ubiformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/ubiformat.c -------------------------------------------------------------------------------- /common/uimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/uimage.c -------------------------------------------------------------------------------- /common/usbgadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/usbgadget.c -------------------------------------------------------------------------------- /common/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/version.c -------------------------------------------------------------------------------- /common/workqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/common/workqueue.c -------------------------------------------------------------------------------- /crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/.gitignore -------------------------------------------------------------------------------- /crypto/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/Kconfig -------------------------------------------------------------------------------- /crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/Makefile -------------------------------------------------------------------------------- /crypto/crc-itu-t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/crc-itu-t.c -------------------------------------------------------------------------------- /crypto/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/crc32.c -------------------------------------------------------------------------------- /crypto/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/crc7.c -------------------------------------------------------------------------------- /crypto/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/digest.c -------------------------------------------------------------------------------- /crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/hmac.c -------------------------------------------------------------------------------- /crypto/jwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/jwt.c -------------------------------------------------------------------------------- /crypto/keystore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/keystore.c -------------------------------------------------------------------------------- /crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/md5.c -------------------------------------------------------------------------------- /crypto/memneq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/memneq.c -------------------------------------------------------------------------------- /crypto/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/pbkdf2.c -------------------------------------------------------------------------------- /crypto/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/rsa.c -------------------------------------------------------------------------------- /crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/sha1.c -------------------------------------------------------------------------------- /crypto/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/sha2.c -------------------------------------------------------------------------------- /crypto/sha4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/crypto/sha4.c -------------------------------------------------------------------------------- /defaultenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/defaultenv/Makefile -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-base/nv/allow_color: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-base/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-base/nv/user: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/00-boot-default/title: -------------------------------------------------------------------------------- 1 | Boot default 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/10-boot-all/action: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | boot -m 4 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/10-boot-all/net/title: -------------------------------------------------------------------------------- 1 | Boot from network 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/10-boot-all/title: -------------------------------------------------------------------------------- 1 | Detect bootsources 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/20-settings/config/title: -------------------------------------------------------------------------------- 1 | Config settings 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/20-settings/network/title: -------------------------------------------------------------------------------- 1 | Network settings 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/20-settings/title: -------------------------------------------------------------------------------- 1 | Settings 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/30-saveenv/title: -------------------------------------------------------------------------------- 1 | Save environment 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/40-shell/title: -------------------------------------------------------------------------------- 1 | Shell 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/50-reset/action: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | reset 4 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/50-reset/title: -------------------------------------------------------------------------------- 1 | Reset 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/title: -------------------------------------------------------------------------------- 1 | ${RED}Main menu${NC} 2 | -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/amba/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | obj-y += bus.o 4 | -------------------------------------------------------------------------------- /drivers/amba/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/amba/bus.c -------------------------------------------------------------------------------- /drivers/ata/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/ata/Kconfig -------------------------------------------------------------------------------- /drivers/ata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/ata/Makefile -------------------------------------------------------------------------------- /drivers/ata/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/ata/ahci.c -------------------------------------------------------------------------------- /drivers/ata/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/ata/ahci.h -------------------------------------------------------------------------------- /drivers/base/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/base/Kconfig -------------------------------------------------------------------------------- /drivers/base/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/base/bus.c -------------------------------------------------------------------------------- /drivers/base/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/base/power.c -------------------------------------------------------------------------------- /drivers/base/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/base/soc.c -------------------------------------------------------------------------------- /drivers/bus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/bus/Kconfig -------------------------------------------------------------------------------- /drivers/bus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/bus/Makefile -------------------------------------------------------------------------------- /drivers/bus/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/bus/acpi.c -------------------------------------------------------------------------------- /drivers/clk/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/clk/Kconfig -------------------------------------------------------------------------------- /drivers/clk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/clk/Makefile -------------------------------------------------------------------------------- /drivers/clk/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/clk/clk.c -------------------------------------------------------------------------------- /drivers/clk/clkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/clk/clkdev.c -------------------------------------------------------------------------------- /drivers/clk/zynq/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | obj-y += clkc.o 3 | -------------------------------------------------------------------------------- /drivers/ddr/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/ddr/Kconfig -------------------------------------------------------------------------------- /drivers/ddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/ddr/Makefile -------------------------------------------------------------------------------- /drivers/dma/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/dma/Kconfig -------------------------------------------------------------------------------- /drivers/dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/dma/Makefile -------------------------------------------------------------------------------- /drivers/dma/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/dma/debug.c -------------------------------------------------------------------------------- /drivers/dma/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/dma/debug.h -------------------------------------------------------------------------------- /drivers/dma/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/dma/map.c -------------------------------------------------------------------------------- /drivers/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/efi/Makefile -------------------------------------------------------------------------------- /drivers/fpga/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/fpga/Kconfig -------------------------------------------------------------------------------- /drivers/gpio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/gpio/Kconfig -------------------------------------------------------------------------------- /drivers/hab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/hab/Makefile -------------------------------------------------------------------------------- /drivers/hab/hab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/hab/hab.c -------------------------------------------------------------------------------- /drivers/hab/hab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/hab/hab.h -------------------------------------------------------------------------------- /drivers/hab/habv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/hab/habv3.c -------------------------------------------------------------------------------- /drivers/hab/habv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/hab/habv4.c -------------------------------------------------------------------------------- /drivers/i2c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/i2c/Kconfig -------------------------------------------------------------------------------- /drivers/i2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/i2c/Makefile -------------------------------------------------------------------------------- /drivers/i2c/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/i2c/i2c.c -------------------------------------------------------------------------------- /drivers/led/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/led/Kconfig -------------------------------------------------------------------------------- /drivers/led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/led/Makefile -------------------------------------------------------------------------------- /drivers/led/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/led/core.c -------------------------------------------------------------------------------- /drivers/mci/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/Kconfig -------------------------------------------------------------------------------- /drivers/mci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/Makefile -------------------------------------------------------------------------------- /drivers/mci/dw_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/dw_mmc.c -------------------------------------------------------------------------------- /drivers/mci/dw_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/dw_mmc.h -------------------------------------------------------------------------------- /drivers/mci/imx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/imx.c -------------------------------------------------------------------------------- /drivers/mci/mmci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/mmci.c -------------------------------------------------------------------------------- /drivers/mci/mmci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/mmci.h -------------------------------------------------------------------------------- /drivers/mci/mxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/mxs.c -------------------------------------------------------------------------------- /drivers/mci/pxamci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/pxamci.c -------------------------------------------------------------------------------- /drivers/mci/pxamci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/pxamci.h -------------------------------------------------------------------------------- /drivers/mci/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/sdhci.c -------------------------------------------------------------------------------- /drivers/mci/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mci/sdhci.h -------------------------------------------------------------------------------- /drivers/mfd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/Kconfig -------------------------------------------------------------------------------- /drivers/mfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/Makefile -------------------------------------------------------------------------------- /drivers/mfd/axp20x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/axp20x.c -------------------------------------------------------------------------------- /drivers/mfd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/core.c -------------------------------------------------------------------------------- /drivers/mfd/da9053.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/da9053.c -------------------------------------------------------------------------------- /drivers/mfd/da9063.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/da9063.c -------------------------------------------------------------------------------- /drivers/mfd/lp3972.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/lp3972.c -------------------------------------------------------------------------------- /drivers/mfd/rk808.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/rk808.c -------------------------------------------------------------------------------- /drivers/mfd/syscon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mfd/syscon.c -------------------------------------------------------------------------------- /drivers/misc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/misc/Kconfig -------------------------------------------------------------------------------- /drivers/misc/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/misc/jtag.c -------------------------------------------------------------------------------- /drivers/misc/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/misc/mem.c -------------------------------------------------------------------------------- /drivers/misc/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/misc/sram.c -------------------------------------------------------------------------------- /drivers/misc/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/misc/state.c -------------------------------------------------------------------------------- /drivers/mtd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/Kconfig -------------------------------------------------------------------------------- /drivers/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/Makefile -------------------------------------------------------------------------------- /drivers/mtd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/core.c -------------------------------------------------------------------------------- /drivers/mtd/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/mtd.h -------------------------------------------------------------------------------- /drivers/mtd/mtdoob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/mtdoob.c -------------------------------------------------------------------------------- /drivers/mtd/mtdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/mtdraw.c -------------------------------------------------------------------------------- /drivers/mtd/peb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/peb.c -------------------------------------------------------------------------------- /drivers/mtd/ubi/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/ubi/io.c -------------------------------------------------------------------------------- /drivers/mtd/ubi/wl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/ubi/wl.c -------------------------------------------------------------------------------- /drivers/mtd/ubi/wl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/mtd/ubi/wl.h -------------------------------------------------------------------------------- /drivers/net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/Kconfig -------------------------------------------------------------------------------- /drivers/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/Makefile -------------------------------------------------------------------------------- /drivers/net/ag71xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/ag71xx.c -------------------------------------------------------------------------------- /drivers/net/ar231x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/ar231x.c -------------------------------------------------------------------------------- /drivers/net/ar231x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/ar231x.h -------------------------------------------------------------------------------- /drivers/net/cpsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/cpsw.c -------------------------------------------------------------------------------- /drivers/net/cs8900.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/cs8900.c -------------------------------------------------------------------------------- /drivers/net/dm9k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/dm9k.c -------------------------------------------------------------------------------- /drivers/net/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/dsa.c -------------------------------------------------------------------------------- /drivers/net/ep93xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/ep93xx.c -------------------------------------------------------------------------------- /drivers/net/ep93xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/ep93xx.h -------------------------------------------------------------------------------- /drivers/net/ethoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/ethoc.c -------------------------------------------------------------------------------- /drivers/net/macb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/macb.c -------------------------------------------------------------------------------- /drivers/net/macb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/macb.h -------------------------------------------------------------------------------- /drivers/net/mvneta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/mvneta.c -------------------------------------------------------------------------------- /drivers/net/r8169.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/r8169.h -------------------------------------------------------------------------------- /drivers/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/tap.c -------------------------------------------------------------------------------- /drivers/net/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/net/virtio.c -------------------------------------------------------------------------------- /drivers/nvme/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/nvme/Kconfig -------------------------------------------------------------------------------- /drivers/nvme/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | obj-y += host/ 3 | -------------------------------------------------------------------------------- /drivers/nvmem/bsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/nvmem/bsec.c -------------------------------------------------------------------------------- /drivers/nvmem/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/nvmem/core.c -------------------------------------------------------------------------------- /drivers/nvmem/rmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/nvmem/rmem.c -------------------------------------------------------------------------------- /drivers/of/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/Kconfig -------------------------------------------------------------------------------- /drivers/of/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/Makefile -------------------------------------------------------------------------------- /drivers/of/address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/address.c -------------------------------------------------------------------------------- /drivers/of/barebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/barebox.c -------------------------------------------------------------------------------- /drivers/of/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/base.c -------------------------------------------------------------------------------- /drivers/of/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/device.c -------------------------------------------------------------------------------- /drivers/of/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/fdt.c -------------------------------------------------------------------------------- /drivers/of/of_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/of_gpio.c -------------------------------------------------------------------------------- /drivers/of/of_mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/of_mtd.c -------------------------------------------------------------------------------- /drivers/of/of_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/of_net.c -------------------------------------------------------------------------------- /drivers/of/of_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/of_path.c -------------------------------------------------------------------------------- /drivers/of/of_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/of_pci.c -------------------------------------------------------------------------------- /drivers/of/overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/of/overlay.c -------------------------------------------------------------------------------- /drivers/pci/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/pci/bus.c -------------------------------------------------------------------------------- /drivers/pci/of.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/pci/of.c -------------------------------------------------------------------------------- /drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/pci/pci.c -------------------------------------------------------------------------------- /drivers/power/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | obj-y += reset/ 3 | -------------------------------------------------------------------------------- /drivers/pwm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/pwm/core.c -------------------------------------------------------------------------------- /drivers/soc/kvx/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_KVX_SOCINFO) += kvx_socinfo.o 2 | -------------------------------------------------------------------------------- /drivers/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/spi/spi.c -------------------------------------------------------------------------------- /drivers/video/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/video/fb.c -------------------------------------------------------------------------------- /drivers/w1/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/w1/Kconfig -------------------------------------------------------------------------------- /drivers/w1/w1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/w1/w1.c -------------------------------------------------------------------------------- /drivers/w1/w1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/drivers/w1/w1.h -------------------------------------------------------------------------------- /dts/Bindings/dma/dma.txt: -------------------------------------------------------------------------------- 1 | This file has been moved to dma-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/graph.txt: -------------------------------------------------------------------------------- 1 | This file has moved to graph.yaml in dt-schema repo 2 | -------------------------------------------------------------------------------- /dts/Bindings/hwmon/pwm-fan.txt: -------------------------------------------------------------------------------- 1 | This file has moved to pwm-fan.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/input/matrix-keymap.txt: -------------------------------------------------------------------------------- 1 | This file has been moved to matrix-keymap.yaml 2 | -------------------------------------------------------------------------------- /dts/Bindings/input/touchscreen/touchscreen.txt: -------------------------------------------------------------------------------- 1 | See touchscreen.yaml 2 | -------------------------------------------------------------------------------- /dts/Bindings/leds/common.txt: -------------------------------------------------------------------------------- 1 | This file has moved to ./common.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/media/rc.txt: -------------------------------------------------------------------------------- 1 | This file has been moved to rc.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/media/s5p-mfc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dts/Bindings/mmc/mmc.txt: -------------------------------------------------------------------------------- 1 | This file has moved to mmc-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/net/ethernet.txt: -------------------------------------------------------------------------------- 1 | This file has moved to ethernet-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/net/fixed-link.txt: -------------------------------------------------------------------------------- 1 | This file has moved to ethernet-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/net/mdio.txt: -------------------------------------------------------------------------------- 1 | This file has moved to mdio.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/net/phy.txt: -------------------------------------------------------------------------------- 1 | This file has moved to ethernet-phy.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/net/stmmac.txt: -------------------------------------------------------------------------------- 1 | This file has moved to snps,dwmac.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/regulator/regulator.txt: -------------------------------------------------------------------------------- 1 | This file has moved to regulator.yaml. 2 | -------------------------------------------------------------------------------- /dts/Bindings/serial/rs485.txt: -------------------------------------------------------------------------------- 1 | See rs485.yaml 2 | -------------------------------------------------------------------------------- /dts/Bindings/spi/spi-bus.txt: -------------------------------------------------------------------------------- 1 | This file has moved to spi-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/dts/COPYING -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/dts/Makefile -------------------------------------------------------------------------------- /dts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/dts/README -------------------------------------------------------------------------------- /dts/src/arm/broadcom/bcm283x-rpi-usb-host.dtsi: -------------------------------------------------------------------------------- 1 | &usb { 2 | dr_mode = "host"; 3 | }; 4 | -------------------------------------------------------------------------------- /efi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/Kconfig -------------------------------------------------------------------------------- /efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/Makefile -------------------------------------------------------------------------------- /efi/devicepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/devicepath.c -------------------------------------------------------------------------------- /efi/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/errno.c -------------------------------------------------------------------------------- /efi/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/guid.c -------------------------------------------------------------------------------- /efi/payload/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/payload/fdt.c -------------------------------------------------------------------------------- /efi/payload/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/efi/payload/init.c -------------------------------------------------------------------------------- /firmware/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/firmware/Kconfig -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/firmware/README -------------------------------------------------------------------------------- /fs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/Kconfig -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/Makefile -------------------------------------------------------------------------------- /fs/bpkfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/bpkfs.c -------------------------------------------------------------------------------- /fs/cramfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/cramfs/Makefile -------------------------------------------------------------------------------- /fs/cramfs/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/cramfs/cramfs.c -------------------------------------------------------------------------------- /fs/devfs-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/devfs-core.c -------------------------------------------------------------------------------- /fs/devfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/devfs.c -------------------------------------------------------------------------------- /fs/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/efi.c -------------------------------------------------------------------------------- /fs/efivarfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/efivarfs.c -------------------------------------------------------------------------------- /fs/ext4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ext4/Makefile -------------------------------------------------------------------------------- /fs/ext4/ext4fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ext4/ext4fs.c -------------------------------------------------------------------------------- /fs/ext4/ext4fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ext4/ext4fs.h -------------------------------------------------------------------------------- /fs/fat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/Kconfig -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/Makefile -------------------------------------------------------------------------------- /fs/fat/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/diskio.h -------------------------------------------------------------------------------- /fs/fat/fat-pbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/fat-pbl.c -------------------------------------------------------------------------------- /fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/fat.c -------------------------------------------------------------------------------- /fs/fat/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/ff.c -------------------------------------------------------------------------------- /fs/fat/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/ff.h -------------------------------------------------------------------------------- /fs/fat/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/ffconf.h -------------------------------------------------------------------------------- /fs/fat/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fat/integer.h -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/fs.c -------------------------------------------------------------------------------- /fs/jffs2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/Kconfig -------------------------------------------------------------------------------- /fs/jffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/Makefile -------------------------------------------------------------------------------- /fs/jffs2/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/acl.h -------------------------------------------------------------------------------- /fs/jffs2/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/build.c -------------------------------------------------------------------------------- /fs/jffs2/compr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/compr.c -------------------------------------------------------------------------------- /fs/jffs2/compr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/compr.h -------------------------------------------------------------------------------- /fs/jffs2/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/debug.c -------------------------------------------------------------------------------- /fs/jffs2/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/debug.h -------------------------------------------------------------------------------- /fs/jffs2/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/dir.c -------------------------------------------------------------------------------- /fs/jffs2/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/fs.c -------------------------------------------------------------------------------- /fs/jffs2/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/malloc.c -------------------------------------------------------------------------------- /fs/jffs2/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/read.c -------------------------------------------------------------------------------- /fs/jffs2/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/scan.c -------------------------------------------------------------------------------- /fs/jffs2/summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/summary.h -------------------------------------------------------------------------------- /fs/jffs2/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/super.c -------------------------------------------------------------------------------- /fs/jffs2/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/jffs2/xattr.h -------------------------------------------------------------------------------- /fs/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/legacy.c -------------------------------------------------------------------------------- /fs/libfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/libfs.c -------------------------------------------------------------------------------- /fs/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/nfs.c -------------------------------------------------------------------------------- /fs/pstore/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/pstore/Kconfig -------------------------------------------------------------------------------- /fs/pstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/pstore/Makefile -------------------------------------------------------------------------------- /fs/pstore/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/pstore/fs.c -------------------------------------------------------------------------------- /fs/pstore/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/pstore/ram.c -------------------------------------------------------------------------------- /fs/ramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ramfs.c -------------------------------------------------------------------------------- /fs/ratpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ratpfs.c -------------------------------------------------------------------------------- /fs/smhfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/smhfs.c -------------------------------------------------------------------------------- /fs/squashfs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/squashfs/dir.c -------------------------------------------------------------------------------- /fs/squashfs/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/squashfs/file.c -------------------------------------------------------------------------------- /fs/squashfs/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/squashfs/id.c -------------------------------------------------------------------------------- /fs/tftp-selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/tftp-selftest.h -------------------------------------------------------------------------------- /fs/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/tftp.c -------------------------------------------------------------------------------- /fs/ubifs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/Kconfig -------------------------------------------------------------------------------- /fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/Makefile -------------------------------------------------------------------------------- /fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/debug.c -------------------------------------------------------------------------------- /fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/debug.h -------------------------------------------------------------------------------- /fs/ubifs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/dir.c -------------------------------------------------------------------------------- /fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/io.c -------------------------------------------------------------------------------- /fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/key.h -------------------------------------------------------------------------------- /fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/log.c -------------------------------------------------------------------------------- /fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/master.c -------------------------------------------------------------------------------- /fs/ubifs/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/misc.c -------------------------------------------------------------------------------- /fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/misc.h -------------------------------------------------------------------------------- /fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/replay.c -------------------------------------------------------------------------------- /fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/sb.c -------------------------------------------------------------------------------- /fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/scan.c -------------------------------------------------------------------------------- /fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/super.c -------------------------------------------------------------------------------- /fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /fs/ubootvarfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/ubootvarfs.c -------------------------------------------------------------------------------- /fs/uimagefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/fs/uimagefs.c -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/images/.gitignore -------------------------------------------------------------------------------- /images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/images/Makefile -------------------------------------------------------------------------------- /images/Makefile.k3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/images/Makefile.k3 -------------------------------------------------------------------------------- /images/piggy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/images/piggy.S -------------------------------------------------------------------------------- /images/sha_sum.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/images/sha_sum.S -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | /config.h 4 | -------------------------------------------------------------------------------- /include/abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/abort.h -------------------------------------------------------------------------------- /include/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/acpi.h -------------------------------------------------------------------------------- /include/aimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/aimage.h -------------------------------------------------------------------------------- /include/aiodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/aiodev.h -------------------------------------------------------------------------------- /include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/base64.h -------------------------------------------------------------------------------- /include/bbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/bbu.h -------------------------------------------------------------------------------- /include/binfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/binfmt.h -------------------------------------------------------------------------------- /include/blobgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/blobgen.h -------------------------------------------------------------------------------- /include/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/block.h -------------------------------------------------------------------------------- /include/blspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/blspec.h -------------------------------------------------------------------------------- /include/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/boot.h -------------------------------------------------------------------------------- /include/bootm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/bootm.h -------------------------------------------------------------------------------- /include/bpkfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/bpkfs.h -------------------------------------------------------------------------------- /include/bthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/bthread.h -------------------------------------------------------------------------------- /include/bunzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/bunzip2.h -------------------------------------------------------------------------------- /include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/cache.h -------------------------------------------------------------------------------- /include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/clock.h -------------------------------------------------------------------------------- /include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/command.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/common.h -------------------------------------------------------------------------------- /include/complete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/complete.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/console.h -------------------------------------------------------------------------------- /include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/crc.h -------------------------------------------------------------------------------- /include/crc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/crc7.h -------------------------------------------------------------------------------- /include/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/crypto.h -------------------------------------------------------------------------------- /include/ddr_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/ddr_spd.h -------------------------------------------------------------------------------- /include/debug_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/debug_ll.h -------------------------------------------------------------------------------- /include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/device.h -------------------------------------------------------------------------------- /include/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/dhcp.h -------------------------------------------------------------------------------- /include/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/digest.h -------------------------------------------------------------------------------- /include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/dirent.h -------------------------------------------------------------------------------- /include/disks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/disks.h -------------------------------------------------------------------------------- /include/dma-dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/dma-dir.h -------------------------------------------------------------------------------- /include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/dma.h -------------------------------------------------------------------------------- /include/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/driver.h -------------------------------------------------------------------------------- /include/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/dsa.h -------------------------------------------------------------------------------- /include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/efi.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/envfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/envfs.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/fastboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fastboot.h -------------------------------------------------------------------------------- /include/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fb.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fcntl.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/featctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/featctrl.h -------------------------------------------------------------------------------- /include/filetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/filetype.h -------------------------------------------------------------------------------- /include/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/firmware.h -------------------------------------------------------------------------------- /include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fnmatch.h -------------------------------------------------------------------------------- /include/fpga-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fpga-mgr.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/glob.h -------------------------------------------------------------------------------- /include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/gpio.h -------------------------------------------------------------------------------- /include/gpiod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/gpiod.h -------------------------------------------------------------------------------- /include/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/gui/gui.h -------------------------------------------------------------------------------- /include/gunzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/gunzip.h -------------------------------------------------------------------------------- /include/hab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/hab.h -------------------------------------------------------------------------------- /include/i2c/at24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/i2c/at24.h -------------------------------------------------------------------------------- /include/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/i2c/i2c.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/image.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/init.h -------------------------------------------------------------------------------- /include/int_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/int_sqrt.h -------------------------------------------------------------------------------- /include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/io.h -------------------------------------------------------------------------------- /include/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/ioctl.h -------------------------------------------------------------------------------- /include/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/jsmn.h -------------------------------------------------------------------------------- /include/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/jtag.h -------------------------------------------------------------------------------- /include/kallsyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/kallsyms.h -------------------------------------------------------------------------------- /include/kfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/kfifo.h -------------------------------------------------------------------------------- /include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/kgdb.h -------------------------------------------------------------------------------- /include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/led.h -------------------------------------------------------------------------------- /include/libbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/libbb.h -------------------------------------------------------------------------------- /include/libfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/libfile.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/libgen.h -------------------------------------------------------------------------------- /include/linux/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/linux/fs.h -------------------------------------------------------------------------------- /include/linux/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/linux/io.h -------------------------------------------------------------------------------- /include/linux/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/linux/pe.h -------------------------------------------------------------------------------- /include/linux/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/linux/xz.h -------------------------------------------------------------------------------- /include/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/lzo.h -------------------------------------------------------------------------------- /include/magicvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/magicvar.h -------------------------------------------------------------------------------- /include/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/mailbox.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/math.h -------------------------------------------------------------------------------- /include/mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/mci.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/memtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/memtest.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/mmu.h -------------------------------------------------------------------------------- /include/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/module.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/net.h -------------------------------------------------------------------------------- /include/notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/notifier.h -------------------------------------------------------------------------------- /include/of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/of.h -------------------------------------------------------------------------------- /include/of_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/of_gpio.h -------------------------------------------------------------------------------- /include/of_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/of_graph.h -------------------------------------------------------------------------------- /include/of_mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/of_mtd.h -------------------------------------------------------------------------------- /include/of_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/of_net.h -------------------------------------------------------------------------------- /include/of_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/of_pci.h -------------------------------------------------------------------------------- /include/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/param.h -------------------------------------------------------------------------------- /include/parseopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/parseopt.h -------------------------------------------------------------------------------- /include/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/password.h -------------------------------------------------------------------------------- /include/pbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pbl.h -------------------------------------------------------------------------------- /include/pbl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pbl/bio.h -------------------------------------------------------------------------------- /include/pbl/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pbl/i2c.h -------------------------------------------------------------------------------- /include/pbl/pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pbl/pmic.h -------------------------------------------------------------------------------- /include/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pe.h -------------------------------------------------------------------------------- /include/pinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pinctrl.h -------------------------------------------------------------------------------- /include/poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/poller.h -------------------------------------------------------------------------------- /include/poweroff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/poweroff.h -------------------------------------------------------------------------------- /include/printk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/printk.h -------------------------------------------------------------------------------- /include/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/progress.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/qsort.h -------------------------------------------------------------------------------- /include/ratp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/ratp.h -------------------------------------------------------------------------------- /include/ratp_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/ratp_bb.h -------------------------------------------------------------------------------- /include/readkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/readkey.h -------------------------------------------------------------------------------- /include/regmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/regmap.h -------------------------------------------------------------------------------- /include/restart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/restart.h -------------------------------------------------------------------------------- /include/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/rsa.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/s_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/s_record.h -------------------------------------------------------------------------------- /include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/sched.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/serdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/serdev.h -------------------------------------------------------------------------------- /include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/shell.h -------------------------------------------------------------------------------- /include/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/slice.h -------------------------------------------------------------------------------- /include/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/sntp.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/spi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/spi/spi.h -------------------------------------------------------------------------------- /include/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/state.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/string.h -------------------------------------------------------------------------------- /include/superio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/superio.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/tlsf.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/types.h -------------------------------------------------------------------------------- /include/uimagefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/uimagefs.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/wchar.h -------------------------------------------------------------------------------- /include/work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/work.h -------------------------------------------------------------------------------- /include/xfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/xfuncs.h -------------------------------------------------------------------------------- /include/xymodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/include/xymodem.h -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Kconfig.ubsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/Kconfig.ubsan -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/ashldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/ashldi3.c -------------------------------------------------------------------------------- /lib/ashrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/ashrdi3.c -------------------------------------------------------------------------------- /lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/base64.c -------------------------------------------------------------------------------- /lib/bcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/bcd.c -------------------------------------------------------------------------------- /lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/bch.c -------------------------------------------------------------------------------- /lib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/bitmap.c -------------------------------------------------------------------------------- /lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/bitrev.c -------------------------------------------------------------------------------- /lib/blobgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/blobgen.c -------------------------------------------------------------------------------- /lib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/bsearch.c -------------------------------------------------------------------------------- /lib/clz_ctz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/clz_ctz.c -------------------------------------------------------------------------------- /lib/cmdlinepart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/cmdlinepart.c -------------------------------------------------------------------------------- /lib/crc-ccitt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/crc-ccitt.c -------------------------------------------------------------------------------- /lib/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/crc8.c -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fdt.c -------------------------------------------------------------------------------- /lib/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fdt_ro.c -------------------------------------------------------------------------------- /lib/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fdt_rw.c -------------------------------------------------------------------------------- /lib/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fdt_strerror.c -------------------------------------------------------------------------------- /lib/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fdt_sw.c -------------------------------------------------------------------------------- /lib/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fdt_wip.c -------------------------------------------------------------------------------- /lib/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fnmatch.c -------------------------------------------------------------------------------- /lib/fonts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fonts/Kconfig -------------------------------------------------------------------------------- /lib/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fonts/Makefile -------------------------------------------------------------------------------- /lib/fonts/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/fonts/fonts.c -------------------------------------------------------------------------------- /lib/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gcd.c -------------------------------------------------------------------------------- /lib/genalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/genalloc.c -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/glob.c -------------------------------------------------------------------------------- /lib/gui/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/Kconfig -------------------------------------------------------------------------------- /lib/gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/Makefile -------------------------------------------------------------------------------- /lib/gui/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/bmp.c -------------------------------------------------------------------------------- /lib/gui/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/lodepng.c -------------------------------------------------------------------------------- /lib/gui/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/lodepng.h -------------------------------------------------------------------------------- /lib/gui/picopng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/picopng.c -------------------------------------------------------------------------------- /lib/gui/picopng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/picopng.h -------------------------------------------------------------------------------- /lib/gui/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/png.c -------------------------------------------------------------------------------- /lib/gui/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/png.h -------------------------------------------------------------------------------- /lib/gui/png_lode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/png_lode.c -------------------------------------------------------------------------------- /lib/gui/png_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/png_pico.c -------------------------------------------------------------------------------- /lib/gui/qoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/qoi.c -------------------------------------------------------------------------------- /lib/gui/qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/gui/qoi.h -------------------------------------------------------------------------------- /lib/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/hexdump.c -------------------------------------------------------------------------------- /lib/idr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/idr.c -------------------------------------------------------------------------------- /lib/image-sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/image-sparse.c -------------------------------------------------------------------------------- /lib/int_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/int_sqrt.c -------------------------------------------------------------------------------- /lib/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/jsmn.c -------------------------------------------------------------------------------- /lib/kasan/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kasan/Kconfig -------------------------------------------------------------------------------- /lib/kasan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kasan/Makefile -------------------------------------------------------------------------------- /lib/kasan/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kasan/common.c -------------------------------------------------------------------------------- /lib/kasan/kasan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kasan/kasan.h -------------------------------------------------------------------------------- /lib/kasan/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kasan/report.c -------------------------------------------------------------------------------- /lib/kfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kfifo.c -------------------------------------------------------------------------------- /lib/kstrtox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kstrtox.c -------------------------------------------------------------------------------- /lib/kstrtox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/kstrtox.h -------------------------------------------------------------------------------- /lib/libbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/libbb.c -------------------------------------------------------------------------------- /lib/libfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/libfile.c -------------------------------------------------------------------------------- /lib/libgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/libgen.c -------------------------------------------------------------------------------- /lib/libscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/libscan.c -------------------------------------------------------------------------------- /lib/libubigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/libubigen.c -------------------------------------------------------------------------------- /lib/list_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/list_debug.c -------------------------------------------------------------------------------- /lib/list_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/list_sort.c -------------------------------------------------------------------------------- /lib/logo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/logo/Kconfig -------------------------------------------------------------------------------- /lib/logo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/logo/Makefile -------------------------------------------------------------------------------- /lib/logo/logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/logo/logo.c -------------------------------------------------------------------------------- /lib/lshrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/lshrdi3.c -------------------------------------------------------------------------------- /lib/lz4/lz4defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/lz4/lz4defs.h -------------------------------------------------------------------------------- /lib/lzo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/lzo/Kconfig -------------------------------------------------------------------------------- /lib/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/lzo/lzodefs.h -------------------------------------------------------------------------------- /lib/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/math.c -------------------------------------------------------------------------------- /lib/math/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/math/Makefile -------------------------------------------------------------------------------- /lib/math/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/math/div64.c -------------------------------------------------------------------------------- /lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/misc.c -------------------------------------------------------------------------------- /lib/muldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/muldi3.c -------------------------------------------------------------------------------- /lib/nls_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/nls_base.c -------------------------------------------------------------------------------- /lib/notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/notifier.c -------------------------------------------------------------------------------- /lib/parameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/parameter.c -------------------------------------------------------------------------------- /lib/parseopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/parseopt.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/random.c -------------------------------------------------------------------------------- /lib/ratp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/ratp.c -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/readkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/readkey.c -------------------------------------------------------------------------------- /lib/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/readline.c -------------------------------------------------------------------------------- /lib/refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/refcount.c -------------------------------------------------------------------------------- /lib/stackprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/stackprot.c -------------------------------------------------------------------------------- /lib/stmp-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/stmp-device.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/stringlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/stringlist.c -------------------------------------------------------------------------------- /lib/strtox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/strtox.c -------------------------------------------------------------------------------- /lib/strverscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/strverscmp.c -------------------------------------------------------------------------------- /lib/ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/ubsan.c -------------------------------------------------------------------------------- /lib/ubsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/ubsan.h -------------------------------------------------------------------------------- /lib/uncompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/uncompress.c -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/wchar.c -------------------------------------------------------------------------------- /lib/xfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xfuncs.c -------------------------------------------------------------------------------- /lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xxhash.c -------------------------------------------------------------------------------- /lib/xymodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xymodem.c -------------------------------------------------------------------------------- /lib/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xz/Makefile -------------------------------------------------------------------------------- /lib/xz/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xz/xz_crc32.c -------------------------------------------------------------------------------- /lib/xz/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xz/xz_lzma2.h -------------------------------------------------------------------------------- /lib/xz/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/xz/xz_stream.h -------------------------------------------------------------------------------- /lib/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/zstd/Makefile -------------------------------------------------------------------------------- /lib/zstd/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/zstd/fse.h -------------------------------------------------------------------------------- /lib/zstd/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/zstd/huf.h -------------------------------------------------------------------------------- /lib/zstd/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/lib/zstd/mem.h -------------------------------------------------------------------------------- /net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/Kconfig -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/Makefile -------------------------------------------------------------------------------- /net/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/dhcp.c -------------------------------------------------------------------------------- /net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/dns.c -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/fastboot.c -------------------------------------------------------------------------------- /net/ifup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/ifup.c -------------------------------------------------------------------------------- /net/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/lib.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/net.c -------------------------------------------------------------------------------- /net/netconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/netconsole.c -------------------------------------------------------------------------------- /net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/nfs.c -------------------------------------------------------------------------------- /net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/ping.c -------------------------------------------------------------------------------- /net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/net/sntp.c -------------------------------------------------------------------------------- /pbl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/Kconfig -------------------------------------------------------------------------------- /pbl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/Makefile -------------------------------------------------------------------------------- /pbl/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/console.c -------------------------------------------------------------------------------- /pbl/decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/decomp.c -------------------------------------------------------------------------------- /pbl/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/fdt.c -------------------------------------------------------------------------------- /pbl/handoff-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/handoff-data.c -------------------------------------------------------------------------------- /pbl/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/misc.c -------------------------------------------------------------------------------- /pbl/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pbl/string.c -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/Kconfig -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/bareboxcrc32-target.c: -------------------------------------------------------------------------------- 1 | #include "bareboxcrc32.c" 2 | -------------------------------------------------------------------------------- /scripts/bareboxenv-target.c: -------------------------------------------------------------------------------- 1 | #include "bareboxenv.c" 2 | -------------------------------------------------------------------------------- /scripts/bareboximd-target.c: -------------------------------------------------------------------------------- 1 | #include "bareboximd.c" 2 | -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | /fixdep 3 | -------------------------------------------------------------------------------- /scripts/bbremote: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import remote.main 4 | -------------------------------------------------------------------------------- /scripts/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/bin2c.c -------------------------------------------------------------------------------- /scripts/check_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/check_size -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/common.c -------------------------------------------------------------------------------- /scripts/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/common.h -------------------------------------------------------------------------------- /scripts/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/compiler.h -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/config -------------------------------------------------------------------------------- /scripts/dfuboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/dfuboot.sh -------------------------------------------------------------------------------- /scripts/dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/dtc/data.c -------------------------------------------------------------------------------- /scripts/dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/dtc/dtc.c -------------------------------------------------------------------------------- /scripts/dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/dtc/dtc.h -------------------------------------------------------------------------------- /scripts/dtc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/dtc/util.c -------------------------------------------------------------------------------- /scripts/dtc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/dtc/util.h -------------------------------------------------------------------------------- /scripts/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.7.0" 2 | -------------------------------------------------------------------------------- /scripts/fix_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/fix_size.c -------------------------------------------------------------------------------- /scripts/gen-dtb-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/gen-dtb-s -------------------------------------------------------------------------------- /scripts/gen-dtbo-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/gen-dtbo-s -------------------------------------------------------------------------------- /scripts/genenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/genenv -------------------------------------------------------------------------------- /scripts/imx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/imx/README -------------------------------------------------------------------------------- /scripts/imx/imx-target.c: -------------------------------------------------------------------------------- 1 | #include "imx.c" 2 | -------------------------------------------------------------------------------- /scripts/imx/imx-usb-loader-target.c: -------------------------------------------------------------------------------- 1 | #include "imx-usb-loader.c" 2 | -------------------------------------------------------------------------------- /scripts/imx/imx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/imx/imx.c -------------------------------------------------------------------------------- /scripts/imx/imx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/imx/imx.h -------------------------------------------------------------------------------- /scripts/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/kallsyms.c -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_VAL0=y 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/config: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/builtin_func/expected_stdout: -------------------------------------------------------------------------------- 1 | hello world 0 2 | -------------------------------------------------------------------------------- /scripts/kernel-install-target.c: -------------------------------------------------------------------------------- 1 | #include "kernel-install.c" 2 | -------------------------------------------------------------------------------- /scripts/kwbimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/kwbimage.c -------------------------------------------------------------------------------- /scripts/kwboot-target.c: -------------------------------------------------------------------------------- 1 | #include "kwboot.c" 2 | -------------------------------------------------------------------------------- /scripts/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/kwboot.c -------------------------------------------------------------------------------- /scripts/mailmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/mailmapper -------------------------------------------------------------------------------- /scripts/mkmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/mkmakefile -------------------------------------------------------------------------------- /scripts/mksysmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/mksysmap -------------------------------------------------------------------------------- /scripts/mod/empty.c: -------------------------------------------------------------------------------- 1 | /* empty file to figure out endianness / word size */ 2 | -------------------------------------------------------------------------------- /scripts/mvebuimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/mvebuimg.c -------------------------------------------------------------------------------- /scripts/mxsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/mxsboot.c -------------------------------------------------------------------------------- /scripts/mxsimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/mxsimage.c -------------------------------------------------------------------------------- /scripts/netconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/netconsole -------------------------------------------------------------------------------- /scripts/omap3-usb-loader-target.c: -------------------------------------------------------------------------------- 1 | #include "omap3-usb-loader.c" 2 | -------------------------------------------------------------------------------- /scripts/omap4_usbboot-target.c: -------------------------------------------------------------------------------- 1 | #include "omap4_usbboot.c" 2 | -------------------------------------------------------------------------------- /scripts/pblimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/pblimage.c -------------------------------------------------------------------------------- /scripts/qoiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/qoiconv.c -------------------------------------------------------------------------------- /scripts/remote/__init__.py: -------------------------------------------------------------------------------- 1 | # empty # -------------------------------------------------------------------------------- /scripts/rk-usb-loader-target.c: -------------------------------------------------------------------------------- 1 | #include "rk-usb-loader.c" 2 | -------------------------------------------------------------------------------- /scripts/rkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/rkimage.c -------------------------------------------------------------------------------- /scripts/rockchip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/rockchip.h -------------------------------------------------------------------------------- /scripts/rsatoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/rsatoc.c -------------------------------------------------------------------------------- /scripts/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/tags.sh -------------------------------------------------------------------------------- /scripts/tegra/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | cbootimage 4 | -------------------------------------------------------------------------------- /scripts/xz_wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/scripts/xz_wrap.sh -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /test/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/Containerfile -------------------------------------------------------------------------------- /test/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/Kconfig -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | obj-y += self/ 4 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/arm/multi_v7_defconfig.yaml: -------------------------------------------------------------------------------- 1 | a9@multi_v7_defconfig.yaml -------------------------------------------------------------------------------- /test/arm/multi_v8_defconfig.yaml: -------------------------------------------------------------------------------- 1 | virt@multi_v8_defconfig.yaml -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/emulate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/emulate.pl -------------------------------------------------------------------------------- /test/mips/qemu-malta_defconfig.yaml: -------------------------------------------------------------------------------- 1 | be@qemu-malta_defconfig.yaml -------------------------------------------------------------------------------- /test/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/py/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/py/helper.py -------------------------------------------------------------------------------- /test/riscv/rv64i_defconfig.yaml: -------------------------------------------------------------------------------- 1 | qemu-virt64@rv64i_defconfig.yaml -------------------------------------------------------------------------------- /test/riscv/virt32_defconfig.yaml: -------------------------------------------------------------------------------- 1 | qemu@virt32_defconfig.yaml -------------------------------------------------------------------------------- /test/self/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/Kconfig -------------------------------------------------------------------------------- /test/self/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/Makefile -------------------------------------------------------------------------------- /test/self/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/core.c -------------------------------------------------------------------------------- /test/self/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/digest.c -------------------------------------------------------------------------------- /test/self/dirfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/dirfd.c -------------------------------------------------------------------------------- /test/self/envvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/envvar.c -------------------------------------------------------------------------------- /test/self/idr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/idr.c -------------------------------------------------------------------------------- /test/self/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/json.c -------------------------------------------------------------------------------- /test/self/jwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/jwt.c -------------------------------------------------------------------------------- /test/self/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/malloc.c -------------------------------------------------------------------------------- /test/self/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/mmu.c -------------------------------------------------------------------------------- /test/self/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/printf.c -------------------------------------------------------------------------------- /test/self/ramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/ramfs.c -------------------------------------------------------------------------------- /test/self/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/setjmp.c -------------------------------------------------------------------------------- /test/self/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/self/string.c -------------------------------------------------------------------------------- /test/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frantony/barebox/HEAD/test/strategy.py -------------------------------------------------------------------------------- /test/x86/efi_defconfig.yaml: -------------------------------------------------------------------------------- 1 | pc@efi_defconfig.yaml --------------------------------------------------------------------------------