├── .azure-pipelines.yml ├── .checkpatch.conf ├── .get_maintainer.conf ├── .get_maintainer.ignore ├── .gitattributes ├── .github └── pull_request_template.md ├── .gitignore ├── .gitlab-ci.yml ├── .mailmap ├── .readthedocs.yml ├── Kbuild ├── Kconfig ├── Licenses ├── Exceptions ├── OFL.txt ├── README ├── bsd-2-clause.txt ├── bsd-3-clause.txt ├── bzip2-1.0.6.txt ├── eCos-2.0.txt ├── gpl-2.0.txt ├── ibm-pibs.txt ├── isc.txt ├── lgpl-2.0.txt ├── lgpl-2.1.txt ├── mit.txt ├── r8a779x_usb3.txt └── x11.txt ├── MAINTAINERS ├── Makefile ├── README ├── api ├── Kconfig ├── Makefile ├── README ├── api.c ├── api_display.c ├── api_net.c ├── api_platform-powerpc.c ├── api_platform.c ├── api_private.h └── api_storage.c ├── arch ├── .gitignore ├── Kconfig ├── Kconfig.nxp ├── arc │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── arcv1 │ │ │ ├── Makefile │ │ │ └── ivt.S │ │ ├── arcv2 │ │ │ ├── Makefile │ │ │ └── ivt.S │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── abilis_tb100.dts │ │ ├── axc001.dtsi │ │ ├── axc003.dtsi │ │ ├── axs101.dts │ │ ├── axs103.dts │ │ ├── axs10x_mb.dtsi │ │ ├── emsdp.dts │ │ ├── hsdk-4xd.dts │ │ ├── hsdk-common.dtsi │ │ ├── hsdk.dts │ │ ├── iot_devkit.dts │ │ ├── nsim.dts │ │ └── skeleton.dtsi │ ├── include │ │ └── asm │ │ │ ├── arc-bcr.h │ │ │ ├── arcregs.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── types.h │ │ │ ├── u-boot-arc.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── _millicodethunk.S │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── init_helpers.c │ │ ├── interrupts.c │ │ ├── ints_low.S │ │ ├── libgcc2.c │ │ ├── libgcc2.h │ │ ├── relocate.c │ │ ├── reset.c │ │ └── start.S ├── arm │ ├── Kconfig │ ├── Kconfig.debug │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── arm11 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── sctlr.S │ │ ├── arm1136 │ │ │ ├── Makefile │ │ │ ├── mx31 │ │ │ │ ├── Makefile │ │ │ │ ├── devices.c │ │ │ │ ├── generic.c │ │ │ │ ├── relocate.S │ │ │ │ └── timer.c │ │ │ ├── start.S │ │ │ └── u-boot-spl.lds │ │ ├── arm1176 │ │ │ ├── Makefile │ │ │ └── start.S │ │ ├── arm720t │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ └── start.S │ │ ├── arm920t │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── start.S │ │ ├── arm926ejs │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ ├── mxs │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── iomux.c │ │ │ │ ├── mxs.c │ │ │ │ ├── mxs_init.h │ │ │ │ ├── mxsimage-signed.cfg │ │ │ │ ├── mxsimage-spl.mx23.cfg │ │ │ │ ├── mxsimage-spl.mx28.cfg │ │ │ │ ├── mxsimage.mx23.cfg │ │ │ │ ├── mxsimage.mx28.cfg │ │ │ │ ├── spl_boot.c │ │ │ │ ├── spl_lradc_init.c │ │ │ │ ├── spl_mem_init.c │ │ │ │ ├── spl_power_init.c │ │ │ │ ├── start.S │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-imx23.bd │ │ │ │ ├── u-boot-imx28.bd │ │ │ │ └── u-boot-spl.lds │ │ │ ├── start.S │ │ │ └── sunxi │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── fel_utils.S │ │ │ │ └── u-boot-spl.lds │ │ ├── arm946es │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── start.S │ │ ├── armv7 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── arch_timer.c │ │ │ ├── bcm235xx │ │ │ │ ├── Makefile │ │ │ │ ├── clk-bcm235xx.c │ │ │ │ ├── clk-bsc.c │ │ │ │ ├── clk-core.c │ │ │ │ ├── clk-core.h │ │ │ │ ├── clk-eth.c │ │ │ │ ├── clk-sdio.c │ │ │ │ └── clk-usb-otg.c │ │ │ ├── bcm281xx │ │ │ │ ├── Makefile │ │ │ │ ├── clk-bcm281xx.c │ │ │ │ ├── clk-bsc.c │ │ │ │ ├── clk-core.c │ │ │ │ ├── clk-core.h │ │ │ │ ├── clk-eth.c │ │ │ │ ├── clk-sdio.c │ │ │ │ ├── clk-usb-otg.c │ │ │ │ └── reset.c │ │ │ ├── bcmcygnus │ │ │ │ ├── Makefile │ │ │ │ └── reset.c │ │ │ ├── bcmnsp │ │ │ │ ├── Makefile │ │ │ │ └── reset.c │ │ │ ├── cache_v7.c │ │ │ ├── cache_v7_asm.S │ │ │ ├── config.mk │ │ │ ├── cp15.c │ │ │ ├── cpu.c │ │ │ ├── exception_level.c │ │ │ ├── iproc-common │ │ │ │ ├── Makefile │ │ │ │ ├── armpll.c │ │ │ │ ├── hwinit-common.c │ │ │ │ └── timer.c │ │ │ ├── lowlevel_init.S │ │ │ ├── ls102xa │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── cpu.c │ │ │ │ ├── fdt.c │ │ │ │ ├── fsl_epu.c │ │ │ │ ├── fsl_epu.h │ │ │ │ ├── fsl_ls1_serdes.c │ │ │ │ ├── fsl_ls1_serdes.h │ │ │ │ ├── ls102xa_psci.c │ │ │ │ ├── ls102xa_serdes.c │ │ │ │ ├── psci.S │ │ │ │ ├── soc.c │ │ │ │ ├── spl.c │ │ │ │ └── timer.c │ │ │ ├── mpu_v7r.c │ │ │ ├── nonsec_virt.S │ │ │ ├── psci-common.c │ │ │ ├── psci.S │ │ │ ├── s5p-common │ │ │ │ ├── Makefile │ │ │ │ ├── cpu_info.c │ │ │ │ ├── pwm.c │ │ │ │ ├── sromc.c │ │ │ │ └── timer.c │ │ │ ├── s5p4418 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ └── relocate.S │ │ │ ├── sctlr.S │ │ │ ├── smccc-call.S │ │ │ ├── start.S │ │ │ ├── sunxi │ │ │ │ ├── Makefile │ │ │ │ ├── fel_utils.S │ │ │ │ ├── psci.c │ │ │ │ ├── sram.c │ │ │ │ ├── start.c │ │ │ │ ├── tzpc.c │ │ │ │ └── u-boot-spl.lds │ │ │ ├── syslib.c │ │ │ ├── vf610 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ └── timer.c │ │ │ ├── virt-dt.c │ │ │ └── virt-v7.c │ │ ├── armv7m │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── mpu.c │ │ │ ├── start.S │ │ │ └── systick-timer.c │ │ ├── armv8 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi_park_v8.S │ │ │ ├── bcmns3 │ │ │ │ ├── Makefile │ │ │ │ └── lowlevel.S │ │ │ ├── cache.S │ │ │ ├── cache_v8.c │ │ │ ├── config.mk │ │ │ ├── cpu-dt.c │ │ │ ├── cpu.c │ │ │ ├── exception_level.c │ │ │ ├── exceptions.S │ │ │ ├── fel_utils.S │ │ │ ├── fsl-layerscape │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ ├── doc │ │ │ │ │ ├── README.core_prefetch │ │ │ │ │ ├── README.falcon │ │ │ │ │ ├── README.lsch2 │ │ │ │ │ ├── README.lsch3 │ │ │ │ │ ├── README.lsch3_2 │ │ │ │ │ ├── README.pci_iommu_extra │ │ │ │ │ ├── README.qspi │ │ │ │ │ └── README.soc │ │ │ │ ├── fdt.c │ │ │ │ ├── fsl_lsch2_serdes.c │ │ │ │ ├── fsl_lsch2_speed.c │ │ │ │ ├── fsl_lsch3_serdes.c │ │ │ │ ├── fsl_lsch3_speed.c │ │ │ │ ├── icid.c │ │ │ │ ├── lowlevel.S │ │ │ │ ├── ls1012a_serdes.c │ │ │ │ ├── ls1028_ids.c │ │ │ │ ├── ls1028a_serdes.c │ │ │ │ ├── ls1043_ids.c │ │ │ │ ├── ls1043a_psci.S │ │ │ │ ├── ls1043a_serdes.c │ │ │ │ ├── ls1046_ids.c │ │ │ │ ├── ls1046a_serdes.c │ │ │ │ ├── ls1088_ids.c │ │ │ │ ├── ls1088a_serdes.c │ │ │ │ ├── ls2080a_serdes.c │ │ │ │ ├── ls2088_ids.c │ │ │ │ ├── lx2160_ids.c │ │ │ │ ├── lx2160a_serdes.c │ │ │ │ ├── mp.c │ │ │ │ ├── soc.c │ │ │ │ ├── spintable.S │ │ │ │ └── spl.c │ │ │ ├── fwcall.c │ │ │ ├── generic_timer.c │ │ │ ├── hisilicon │ │ │ │ ├── Makefile │ │ │ │ └── pinmux.c │ │ │ ├── linux-kernel-image-header-vars.h │ │ │ ├── psci.S │ │ │ ├── sec_firmware.c │ │ │ ├── sec_firmware_asm.S │ │ │ ├── sha1_ce_core.S │ │ │ ├── sha1_ce_glue.c │ │ │ ├── sha256_ce_core.S │ │ │ ├── sha256_ce_glue.c │ │ │ ├── smccc-call.S │ │ │ ├── spin_table.c │ │ │ ├── spin_table_v8.S │ │ │ ├── spl_data.c │ │ │ ├── start.S │ │ │ ├── sysinfo.c │ │ │ ├── tlb.S │ │ │ ├── transition.S │ │ │ ├── u-boot-spl.lds │ │ │ ├── u-boot.lds │ │ │ └── xen │ │ │ │ ├── Makefile │ │ │ │ ├── hypercall.S │ │ │ │ └── lowlevel_init.S │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── ac5-98dx25xx.dtsi │ │ ├── ac5-98dx35xx-atl-x240.dts │ │ ├── ac5-98dx35xx-rd.dts │ │ ├── ac5-98dx35xx.dtsi │ │ ├── am335x-baltos.dts │ │ ├── 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-eco.dts │ │ ├── am335x-bonegreen-wireless.dts │ │ ├── am335x-bonegreen.dts │ │ ├── am335x-brppt1-mmc-u-boot.dtsi │ │ ├── am335x-brppt1-mmc.dts │ │ ├── am335x-brsmarc1.dts │ │ ├── am335x-brxre1.dts │ │ ├── am335x-chiliboard-u-boot.dtsi │ │ ├── am335x-chiliboard.dts │ │ ├── am335x-chilisom.dtsi │ │ ├── am335x-draco.dts │ │ ├── am335x-draco.dtsi │ │ ├── am335x-evm-u-boot.dtsi │ │ ├── am335x-evm.dts │ │ ├── am335x-evmsk-u-boot.dtsi │ │ ├── am335x-evmsk.dts │ │ ├── am335x-guardian-u-boot.dtsi │ │ ├── am335x-guardian.dts │ │ ├── am335x-icev2-u-boot.dtsi │ │ ├── am335x-icev2.dts │ │ ├── am335x-igep0033.dtsi │ │ ├── am335x-osd335x-common.dtsi │ │ ├── am335x-pdu001-u-boot.dtsi │ │ ├── am335x-pdu001.dts │ │ ├── am335x-phycore-som.dtsi │ │ ├── am335x-pocketbeagle.dts │ │ ├── am335x-pxm2.dtsi │ │ ├── am335x-pxm50-u-boot.dtsi │ │ ├── am335x-pxm50.dts │ │ ├── am335x-regor-rdk-u-boot.dtsi │ │ ├── am335x-regor-rdk.dts │ │ ├── am335x-regor.dtsi │ │ ├── am335x-rut-u-boot.dtsi │ │ ├── am335x-rut.dts │ │ ├── am335x-sancloud-bbe-common.dtsi │ │ ├── am335x-sancloud-bbe-extended-wifi.dts │ │ ├── am335x-sancloud-bbe-lite-u-boot.dtsi │ │ ├── am335x-sancloud-bbe-lite.dts │ │ ├── am335x-sancloud-bbe-u-boot.dtsi │ │ ├── am335x-sancloud-bbe.dts │ │ ├── am335x-shc-u-boot.dtsi │ │ ├── am335x-shc.dts │ │ ├── am335x-sl50.dts │ │ ├── am335x-wega-rdk-u-boot.dtsi │ │ ├── am335x-wega-rdk.dts │ │ ├── am335x-wega.dtsi │ │ ├── am33xx-clocks.dtsi │ │ ├── am33xx-l4.dtsi │ │ ├── am33xx-u-boot.dtsi │ │ ├── am33xx.dtsi │ │ ├── am3517-evm-u-boot.dtsi │ │ ├── am3517-evm-ui.dtsi │ │ ├── am3517-u-boot.dtsi │ │ ├── am4372-generic-u-boot.dtsi │ │ ├── am4372-generic.dts │ │ ├── am4372-u-boot.dtsi │ │ ├── am4372.dtsi │ │ ├── am437x-cm-t43.dts │ │ ├── am437x-gp-evm-u-boot.dtsi │ │ ├── am437x-gp-evm.dts │ │ ├── am437x-idk-evm-u-boot.dtsi │ │ ├── am437x-idk-evm.dts │ │ ├── am437x-sk-evm-u-boot.dtsi │ │ ├── am437x-sk-evm.dts │ │ ├── am43x-epos-evm.dts │ │ ├── am43xx-clocks.dtsi │ │ ├── am571x-idk-u-boot.dtsi │ │ ├── am571x-idk.dts │ │ ├── am5729-beagleboneai.dts │ │ ├── am572x-idk-common.dtsi │ │ ├── am572x-idk-u-boot.dtsi │ │ ├── am572x-idk.dts │ │ ├── am574x-idk-u-boot.dtsi │ │ ├── am574x-idk.dts │ │ ├── am57xx-beagle-x15-common.dtsi │ │ ├── am57xx-beagle-x15-revb1-u-boot.dtsi │ │ ├── am57xx-beagle-x15-revb1.dts │ │ ├── am57xx-beagle-x15-revc-u-boot.dtsi │ │ ├── am57xx-beagle-x15-revc.dts │ │ ├── am57xx-beagle-x15-u-boot.dtsi │ │ ├── am57xx-beagle-x15.dts │ │ ├── am57xx-cl-som-am57x-u-boot.dtsi │ │ ├── am57xx-commercial-grade.dtsi │ │ ├── am57xx-idk-common-u-boot.dtsi │ │ ├── am57xx-idk-common.dtsi │ │ ├── am57xx-industrial-grade.dtsi │ │ ├── am57xx-sbc-am57x-u-boot.dtsi │ │ ├── amd-versal2-mini.dts │ │ ├── amd-versal2-virt.dts │ │ ├── an7581-u-boot.dtsi │ │ ├── apq8016-sbc-u-boot.dtsi │ │ ├── apq8016-schneider-hmibsc.dts │ │ ├── apq8096-db820c-u-boot.dtsi │ │ ├── arm_fvp.dts │ │ ├── armada-370-xp.dtsi │ │ ├── armada-371x.dtsi │ │ ├── armada-3720-db.dts │ │ ├── armada-3720-eDPU-u-boot.dtsi │ │ ├── armada-3720-eDPU.dts │ │ ├── armada-3720-espressobin-u-boot.dtsi │ │ ├── armada-3720-espressobin.dts │ │ ├── armada-3720-espressobin.dtsi │ │ ├── armada-3720-ripe-atlas.dts │ │ ├── armada-3720-turris-mox-u-boot.dtsi │ │ ├── armada-3720-turris-mox.dts │ │ ├── armada-3720-uDPU-u-boot.dtsi │ │ ├── armada-3720-uDPU.dts │ │ ├── armada-3720-uDPU.dtsi │ │ ├── armada-372x.dtsi │ │ ├── armada-375-db.dts │ │ ├── armada-375.dtsi │ │ ├── armada-37xx.dtsi │ │ ├── armada-380.dtsi │ │ ├── armada-385-atl-x530-u-boot.dtsi │ │ ├── armada-385-atl-x530.dts │ │ ├── armada-385-atl-x530.dtsi │ │ ├── armada-385-atl-x530DP.dts │ │ ├── armada-385-atl-x530DP.dtsi │ │ ├── armada-385-db-88f6820-amc.dts │ │ ├── armada-385-thecus-n2350.dts │ │ ├── armada-385-turris-omnia-u-boot.dtsi │ │ ├── armada-385-turris-omnia.dts │ │ ├── armada-385.dtsi │ │ ├── armada-388-clearfog-u-boot.dtsi │ │ ├── armada-388-clearfog.dts │ │ ├── armada-388-gp.dts │ │ ├── armada-388-helios4-u-boot.dtsi │ │ ├── armada-388-helios4.dts │ │ ├── armada-388.dtsi │ │ ├── armada-38x-controlcenterdc-u-boot.dtsi │ │ ├── armada-38x-controlcenterdc.dts │ │ ├── armada-38x-solidrun-microsom.dtsi │ │ ├── armada-38x.dtsi │ │ ├── armada-7040-db-nand.dts │ │ ├── armada-7040-db.dts │ │ ├── armada-7040.dtsi │ │ ├── armada-8040-clearfog-gt-8k.dts │ │ ├── armada-8040-db.dts │ │ ├── armada-8040-mcbin.dts │ │ ├── armada-8040-puzzle-m801.dts │ │ ├── armada-8040.dtsi │ │ ├── armada-8k.dtsi │ │ ├── armada-ap806.dtsi │ │ ├── armada-ap807.dtsi │ │ ├── armada-ap80x-quad.dtsi │ │ ├── armada-ap80x.dtsi │ │ ├── armada-common.dtsi │ │ ├── armada-cp110.dtsi │ │ ├── armada-xp-98dx3236.dtsi │ │ ├── armada-xp-98dx3336.dtsi │ │ ├── armada-xp-98dx4251.dtsi │ │ ├── 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-xc3-24g4xg-u-boot.dtsi │ │ ├── armada-xp-db-xc3-24g4xg.dts │ │ ├── armada-xp-gp.dts │ │ ├── armada-xp-maxbcm.dts │ │ ├── armada-xp-mv78230.dtsi │ │ ├── armada-xp-mv78260.dtsi │ │ ├── armada-xp-mv78460.dtsi │ │ ├── armada-xp-synology-ds414.dts │ │ ├── armada-xp-theadorable-u-boot.dtsi │ │ ├── armada-xp-theadorable.dts │ │ ├── armada-xp.dtsi │ │ ├── armv7-m.dtsi │ │ ├── ast2500-evb.dts │ │ ├── ast2500-u-boot.dtsi │ │ ├── ast2500.dtsi │ │ ├── ast2600-evb.dts │ │ ├── ast2600-sbp1.dts │ │ ├── ast2600-u-boot.dtsi │ │ ├── ast2600-x4tf.dts │ │ ├── ast2600.dtsi │ │ ├── at91-kstr-sama5d27-u-boot.dtsi │ │ ├── at91-kstr-sama5d27.dts │ │ ├── at91-sam9x60_curiosity-u-boot.dtsi │ │ ├── at91-sam9x60_curiosity.dts │ │ ├── at91-sam9x75_curiosity-u-boot.dtsi │ │ ├── at91-sama5d27_giantboard.dts │ │ ├── at91-sama5d27_som1_ek.dts │ │ ├── at91-sama5d27_wlsom1_ek-u-boot.dtsi │ │ ├── at91-sama5d27_wlsom1_ek.dts │ │ ├── at91-sama5d29_curiosity-u-boot.dtsi │ │ ├── at91-sama5d29_curiosity.dts │ │ ├── at91-sama5d2_icp-u-boot.dtsi │ │ ├── at91-sama5d2_icp.dts │ │ ├── at91-sama5d2_ptc_ek.dts │ │ ├── at91-sama5d2_xplained.dts │ │ ├── at91-sama5d3_xplained.dts │ │ ├── at91-sama5d4_xplained.dts │ │ ├── at91-sama5d4ek.dts │ │ ├── at91-sama7g54_curiosity-u-boot.dtsi │ │ ├── at91-sama7g54_curiosity.dts │ │ ├── at91-sama7g5ek-u-boot.dtsi │ │ ├── at91-sama7g5ek.dts │ │ ├── at91-vinco.dts │ │ ├── at91sam9260-smartweb.dts │ │ ├── at91sam9260.dtsi │ │ ├── at91sam9260ek.dts │ │ ├── at91sam9261.dtsi │ │ ├── at91sam9261ek.dts │ │ ├── at91sam9263.dtsi │ │ ├── at91sam9263ek.dts │ │ ├── at91sam9g15.dtsi │ │ ├── at91sam9g15ek.dts │ │ ├── at91sam9g20-taurus.dts │ │ ├── at91sam9g20.dtsi │ │ ├── at91sam9g20ek.dts │ │ ├── at91sam9g20ek_2mmc.dts │ │ ├── at91sam9g20ek_common.dtsi │ │ ├── at91sam9g25-gardena-smart-gateway-u-boot.dtsi │ │ ├── at91sam9g25-gardena-smart-gateway.dts │ │ ├── at91sam9g25.dtsi │ │ ├── at91sam9g25ek.dts │ │ ├── at91sam9g35.dtsi │ │ ├── at91sam9g35ek.dts │ │ ├── at91sam9g45-corvus.dts │ │ ├── at91sam9g45-gurnard.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 │ │ ├── avnet-ultra96-rev1.dts │ │ ├── axp152.dtsi │ │ ├── axp209.dtsi │ │ ├── axp223.dtsi │ │ ├── axp22x.dtsi │ │ ├── axp803.dtsi │ │ ├── axp809.dtsi │ │ ├── axp81x.dtsi │ │ ├── bcm2711-rpi-4-b.dts │ │ ├── bcm2711-rpi.dtsi │ │ ├── bcm2711.dtsi │ │ ├── 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.dtsi │ │ ├── bcm283x-rpi-lan7515.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-u-boot.dtsi │ │ ├── bcm283x.dtsi │ │ ├── bcm5301x.dtsi │ │ ├── bcm7xxx.dts │ │ ├── bcm96753ref.dts │ │ ├── bcm968360bg.dts │ │ ├── bcm968580xref.dts │ │ ├── beacon-renesom-baseboard.dtsi │ │ ├── beacon-renesom-som.dtsi │ │ ├── bitmain-antminer-s9.dts │ │ ├── bubblegum_96.dts │ │ ├── ca-presidio-engboard.dts │ │ ├── cat875.dtsi │ │ ├── cn9130-atl-x250.dts │ │ ├── cn9130-crb-A.dts │ │ ├── cn9130-crb-B.dts │ │ ├── cn9130-crb.dtsi │ │ ├── cn9130-db-A.dts │ │ ├── cn9130-db-B.dts │ │ ├── cn9130-db-dev-info.dtsi │ │ ├── cn9130-db.dtsi │ │ ├── cn9130.dtsi │ │ ├── cn9131-db-A.dts │ │ ├── cn9131-db-B.dts │ │ ├── cn9131-db.dtsi │ │ ├── cn9132-db-A.dts │ │ ├── cn9132-db-B.dts │ │ ├── cn9132-db.dtsi │ │ ├── condor-common.dtsi │ │ ├── corstone1000-fvp.dts │ │ ├── corstone1000-mps3.dts │ │ ├── corstone1000.dtsi │ │ ├── cros-ec-keyboard.dtsi │ │ ├── cros-ec-sbs.dtsi │ │ ├── da850-evm-u-boot.dtsi │ │ ├── da850-lcdk-u-boot.dtsi │ │ ├── da850-lcdk.dts │ │ ├── da850-lego-ev3.dts │ │ ├── da850.dtsi │ │ ├── dra7-dspeve-thermal.dtsi │ │ ├── dra7-evm-common.dtsi │ │ ├── dra7-evm-u-boot.dtsi │ │ ├── dra7-evm.dts │ │ ├── dra7-ipu-common-early-boot.dtsi │ │ ├── dra7-iva-thermal.dtsi │ │ ├── dra7-mmc-iodelay.dtsi │ │ ├── dra7.dtsi │ │ ├── dra71-evm-u-boot.dtsi │ │ ├── dra71-evm.dts │ │ ├── dra72-evm-common.dtsi │ │ ├── dra72-evm-revc-u-boot.dtsi │ │ ├── dra72-evm-revc.dts │ │ ├── dra72-evm-tps65917.dtsi │ │ ├── dra72-evm-u-boot.dtsi │ │ ├── dra72-evm.dts │ │ ├── dra72x-mmc-iodelay.dtsi │ │ ├── dra72x.dtsi │ │ ├── dra74x-mmc-iodelay.dtsi │ │ ├── dra74x.dtsi │ │ ├── dra76-evm-u-boot.dtsi │ │ ├── dra76-evm.dts │ │ ├── dra76x-mmc-iodelay.dtsi │ │ ├── dra76x.dtsi │ │ ├── dra7xx-clocks.dtsi │ │ ├── draak.dtsi │ │ ├── ebisu.dtsi │ │ ├── en7581-evb-u-boot.dtsi │ │ ├── ev-imx280-nano-x-mb.dts │ │ ├── exynos4.dtsi │ │ ├── exynos4210-origen.dts │ │ ├── exynos4210-pinctrl-uboot.dtsi │ │ ├── exynos4210-pinctrl.dtsi │ │ ├── exynos4210-smdkv310.dts │ │ ├── exynos4210-trats.dts │ │ ├── exynos4210-universal_c210.dts │ │ ├── exynos4210.dtsi │ │ ├── exynos4412-odroid.dts │ │ ├── exynos4412-trats2.dts │ │ ├── exynos4412.dtsi │ │ ├── exynos4x12-pinctrl-uboot.dtsi │ │ ├── exynos4x12-pinctrl.dtsi │ │ ├── exynos4x12.dtsi │ │ ├── exynos5.dtsi │ │ ├── exynos5250-arndale.dts │ │ ├── exynos5250-pinctrl-uboot.dtsi │ │ ├── exynos5250-pinctrl.dtsi │ │ ├── exynos5250-smdk5250.dts │ │ ├── exynos5250-snow.dts │ │ ├── exynos5250-spring.dts │ │ ├── exynos5250.dtsi │ │ ├── exynos5420-peach-pit.dts │ │ ├── exynos5420-smdk5420.dts │ │ ├── exynos5422-odroidxu3.dts │ │ ├── exynos54xx-pinctrl-uboot.dtsi │ │ ├── exynos54xx-pinctrl.dtsi │ │ ├── exynos54xx.dtsi │ │ ├── exynos5800-peach-pi.dts │ │ ├── exynos7420-espresso7420.dts │ │ ├── exynos7420.dtsi │ │ ├── exynos78x0-axy17lte.dts │ │ ├── exynos78x0-gpio.dtsi │ │ ├── exynos78x0-pinctrl.dtsi │ │ ├── exynos78x0.dtsi │ │ ├── exynos850-e850-96-u-boot.dtsi │ │ ├── fsl-imx8-ca35.dtsi │ │ ├── fsl-imx8-ca53.dtsi │ │ ├── fsl-imx8dx.dtsi │ │ ├── fsl-imx8dxp.dtsi │ │ ├── fsl-imx8qm-apalis-u-boot.dtsi │ │ ├── fsl-imx8qm-apalis.dts │ │ ├── fsl-imx8qm-mek-u-boot.dtsi │ │ ├── fsl-imx8qm-mek.dts │ │ ├── fsl-imx8qm.dtsi │ │ ├── fsl-imx8qxp-ai_ml-u-boot.dtsi │ │ ├── fsl-imx8qxp-ai_ml.dts │ │ ├── fsl-imx8qxp-colibri-u-boot.dtsi │ │ ├── fsl-imx8qxp-colibri.dts │ │ ├── fsl-imx8qxp-mek-u-boot.dtsi │ │ ├── fsl-imx8qxp-mek.dts │ │ ├── fsl-imx8qxp.dtsi │ │ ├── fsl-ls1012a-2g5rdb.dts │ │ ├── fsl-ls1012a-frdm.dts │ │ ├── fsl-ls1012a-frdm.dtsi │ │ ├── fsl-ls1012a-frwy.dts │ │ ├── fsl-ls1012a-qds.dts │ │ ├── fsl-ls1012a-qds.dtsi │ │ ├── fsl-ls1012a-rdb.dts │ │ ├── fsl-ls1012a-rdb.dtsi │ │ ├── fsl-ls1012a.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var1-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var2-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var3-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var4-u-boot.dtsi │ │ ├── fsl-ls1028a-qds-1xxx-sch-30842.dtsi │ │ ├── fsl-ls1028a-qds-6xxx-sch-30842.dtsi │ │ ├── fsl-ls1028a-qds-7777-sch-30841.dtsi │ │ ├── fsl-ls1028a-qds-7xx7-sch-30841R.dtsi │ │ ├── fsl-ls1028a-qds-8xxx-sch-24801.dtsi │ │ ├── fsl-ls1028a-qds-9999-sch-24801-LBRW.dtsi │ │ ├── fsl-ls1028a-qds-9999-sch-24801.dtsi │ │ ├── fsl-ls1028a-qds-duart.dts │ │ ├── fsl-ls1028a-qds-lpuart.dts │ │ ├── fsl-ls1028a-qds-x3xx-sch-30841-LBRW.dtsi │ │ ├── fsl-ls1028a-qds-x5xx-sch-28021-LBRW.dtsi │ │ ├── fsl-ls1028a-qds-x7xx-sch-30842.dtsi │ │ ├── fsl-ls1028a-qds-xx7x-sch-30842.dtsi │ │ ├── fsl-ls1028a-qds.dtsi │ │ ├── fsl-ls1028a-rdb-u-boot.dtsi │ │ ├── fsl-ls1028a-rdb.dts │ │ ├── fsl-ls1028a.dtsi │ │ ├── fsl-ls1043-post.dtsi │ │ ├── fsl-ls1043a-qds-duart.dts │ │ ├── fsl-ls1043a-qds-lpuart.dts │ │ ├── fsl-ls1043a-qds.dtsi │ │ ├── fsl-ls1043a-rdb-u-boot.dtsi │ │ ├── fsl-ls1043a-rdb.dts │ │ ├── fsl-ls1043a-u-boot.dtsi │ │ ├── fsl-ls1043a.dtsi │ │ ├── fsl-ls1046-post.dtsi │ │ ├── fsl-ls1046a-frwy-u-boot.dtsi │ │ ├── fsl-ls1046a-frwy.dts │ │ ├── fsl-ls1046a-qds-duart.dts │ │ ├── fsl-ls1046a-qds-lpuart.dts │ │ ├── fsl-ls1046a-qds.dtsi │ │ ├── fsl-ls1046a-rdb-u-boot.dtsi │ │ ├── fsl-ls1046a-rdb.dts │ │ ├── fsl-ls1046a-u-boot.dtsi │ │ ├── fsl-ls1046a.dtsi │ │ ├── fsl-ls1088a-qds-21-x.dts │ │ ├── fsl-ls1088a-qds-29-x.dts │ │ ├── fsl-ls1088a-qds-sd1-21.dtsi │ │ ├── fsl-ls1088a-qds-sd1-29.dtsi │ │ ├── fsl-ls1088a-qds-u-boot.dtsi │ │ ├── fsl-ls1088a-qds.dts │ │ ├── fsl-ls1088a-qds.dtsi │ │ ├── fsl-ls1088a-rdb-u-boot.dtsi │ │ ├── fsl-ls1088a-rdb.dts │ │ ├── fsl-ls1088a-ten64-u-boot.dtsi │ │ ├── fsl-ls1088a-ten64.dts │ │ ├── fsl-ls1088a-u-boot.dtsi │ │ ├── fsl-ls1088a.dtsi │ │ ├── fsl-ls2080a-qds-42-x.dts │ │ ├── fsl-ls2080a-qds-sd1-42.dtsi │ │ ├── fsl-ls2080a-qds.dts │ │ ├── fsl-ls2080a-qds.dtsi │ │ ├── fsl-ls2080a-rdb.dts │ │ ├── fsl-ls2080a.dtsi │ │ ├── fsl-ls2081a-rdb.dts │ │ ├── fsl-ls2088a-rdb-qspi.dts │ │ ├── fsl-lx2160a-qds-19-11-x.dts │ │ ├── fsl-lx2160a-qds-19-x-x.dts │ │ ├── fsl-lx2160a-qds-20-11-x.dts │ │ ├── fsl-lx2160a-qds-20-x-x.dts │ │ ├── fsl-lx2160a-qds-3-11-x.dts │ │ ├── fsl-lx2160a-qds-3-x-x.dts │ │ ├── fsl-lx2160a-qds-7-11-x.dts │ │ ├── fsl-lx2160a-qds-7-x-x.dts │ │ ├── fsl-lx2160a-qds-sd1-19.dtsi │ │ ├── fsl-lx2160a-qds-sd1-20.dtsi │ │ ├── fsl-lx2160a-qds-sd1-3.dtsi │ │ ├── fsl-lx2160a-qds-sd1-7.dtsi │ │ ├── fsl-lx2160a-qds-sd2-11.dtsi │ │ ├── fsl-lx2160a-qds.dts │ │ ├── fsl-lx2160a-qds.dtsi │ │ ├── fsl-lx2160a-rdb.dts │ │ ├── fsl-lx2160a.dtsi │ │ ├── fsl-lx2162a-qds-17-x.dts │ │ ├── fsl-lx2162a-qds-18-x.dts │ │ ├── fsl-lx2162a-qds-20-x.dts │ │ ├── fsl-lx2162a-qds-sd1-17.dtsi │ │ ├── fsl-lx2162a-qds-sd1-18.dtsi │ │ ├── fsl-lx2162a-qds-sd1-20.dtsi │ │ ├── fsl-lx2162a-qds.dts │ │ ├── fsl-sch-24801.dtsi │ │ ├── fsl-sch-28021.dtsi │ │ ├── fsl-sch-30841.dtsi │ │ ├── fsl-sch-30842.dtsi │ │ ├── fvp-base-revc.dts │ │ ├── hi3660-hikey960-u-boot.dtsi │ │ ├── hi3660-hikey960.dts │ │ ├── hi3660.dtsi │ │ ├── hi3798cv200-poplar.dts │ │ ├── hi3798cv200-u-boot.dtsi │ │ ├── hi3798cv200.dtsi │ │ ├── hi3798mv200-hc2910-2aghd05-u-boot.dtsi │ │ ├── hi3798mv200-hc2910-2aghd05.dts │ │ ├── hi3798mv200-u-boot.dtsi │ │ ├── hi3798mv200.dtsi │ │ ├── hi6220-hikey-u-boot.dtsi │ │ ├── hi6220-hikey.dts │ │ ├── hi6220.dtsi │ │ ├── highbank.dts │ │ ├── hihope-common.dtsi │ │ ├── hihope-rev4.dtsi │ │ ├── hihope-rzg2-ex.dtsi │ │ ├── hikey960-pinctrl.dtsi │ │ ├── hpe-bmc-dl360gen10.dts │ │ ├── hpe-gxp-u-boot.dtsi │ │ ├── hpe-gxp.dtsi │ │ ├── imx23-evk-u-boot.dtsi │ │ ├── imx23-evk.dts │ │ ├── imx23-olinuxino-u-boot.dtsi │ │ ├── imx23-olinuxino.dts │ │ ├── imx23-u-boot.dtsi │ │ ├── imx23.dtsi │ │ ├── imx28-btt3-0-u-boot.dtsi │ │ ├── imx28-btt3-1-u-boot.dtsi │ │ ├── imx28-btt3-2-u-boot.dtsi │ │ ├── imx28-btt3-u-boot.dtsi │ │ ├── imx28-evk-u-boot.dtsi │ │ ├── imx28-evk.dts │ │ ├── imx28-lwe.dtsi │ │ ├── imx28-u-boot.dtsi │ │ ├── imx28-xea-u-boot.dtsi │ │ ├── imx28-xea.dts │ │ ├── imx28.dtsi │ │ ├── imx51-babbage.dts │ │ ├── imx51.dtsi │ │ ├── imx53-cx9020.dts │ │ ├── imx53-kp-u-boot.dtsi │ │ ├── imx53-kp.dts │ │ ├── imx53-m53.dtsi │ │ ├── imx53-m53menlo-u-boot.dtsi │ │ ├── imx53-m53menlo.dts │ │ ├── imx53-ppd-uboot.dtsi │ │ ├── imx53-ppd.dts │ │ ├── imx53-qsb-common.dtsi │ │ ├── imx53-qsb-u-boot.dtsi │ │ ├── imx53-qsb.dts │ │ ├── imx53-usbarmory.dts │ │ ├── imx53.dtsi │ │ ├── imx6-logicpd-baseboard.dtsi │ │ ├── imx6-logicpd-som.dtsi │ │ ├── imx6dl-aristainetos2_7.dtsi │ │ ├── imx6dl-aristainetos2c_7-u-boot.dtsi │ │ ├── imx6dl-aristainetos2c_7.dts │ │ ├── imx6dl-aristainetos2c_cslb_7-u-boot.dtsi │ │ ├── imx6dl-aristainetos2c_cslb_7.dts │ │ ├── imx6dl-b1x5v2.dts │ │ ├── imx6dl-brppt2.dts │ │ ├── imx6dl-colibri-eval-v3-u-boot.dtsi │ │ ├── imx6dl-colibri-eval-v3.dts │ │ ├── imx6dl-cubox-i-emmc-som-v15.dts │ │ ├── imx6dl-cubox-i-som-v15.dts │ │ ├── imx6dl-cubox-i.dts │ │ ├── imx6dl-dhcom-pdk2-u-boot.dtsi │ │ ├── imx6dl-dhcom-picoitx-u-boot.dtsi │ │ ├── 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-u-boot.dtsi │ │ ├── imx6dl-hummingboard2-emmc-som-v15.dts │ │ ├── imx6dl-hummingboard2-som-v15.dts │ │ ├── imx6dl-hummingboard2.dts │ │ ├── imx6dl-icore-mipi-u-boot.dtsi │ │ ├── imx6dl-icore-mipi.dts │ │ ├── imx6dl-icore-rqs-u-boot.dtsi │ │ ├── imx6dl-icore-rqs.dts │ │ ├── imx6dl-icore-u-boot.dtsi │ │ ├── imx6dl-icore.dts │ │ ├── imx6dl-mamoj-u-boot.dtsi │ │ ├── imx6dl-mamoj.dts │ │ ├── imx6dl-mba6.dtsi │ │ ├── imx6dl-mba6a.dts │ │ ├── imx6dl-mba6b-u-boot.dtsi │ │ ├── imx6dl-nitrogen6x.dts │ │ ├── imx6dl-pico-u-boot.dtsi │ │ ├── imx6dl-pico.dts │ │ ├── imx6dl-riotboard-u-boot.dtsi │ │ ├── imx6dl-riotboard.dts │ │ ├── imx6dl-sabreauto-u-boot.dtsi │ │ ├── imx6dl-sabreauto.dts │ │ ├── imx6dl-sabresd-u-boot.dtsi │ │ ├── imx6dl-sabresd.dts │ │ ├── imx6dl-sielaff-u-boot.dtsi │ │ ├── imx6dl-sielaff.dts │ │ ├── imx6dl-udoo.dts │ │ ├── imx6dl-wandboard-revd1-u-boot.dtsi │ │ ├── imx6dl-wandboard-revd1.dts │ │ ├── imx6dl.dtsi │ │ ├── imx6q-apalis-eval-u-boot.dtsi │ │ ├── imx6q-apalis-eval.dts │ │ ├── imx6q-b450v3.dts │ │ ├── imx6q-b650v3.dts │ │ ├── imx6q-b850v3.dts │ │ ├── imx6q-ba16.dtsi │ │ ├── imx6q-bosch-acc-u-boot.dtsi │ │ ├── imx6q-bosch-acc.dts │ │ ├── imx6q-bx50v3-uboot.dtsi │ │ ├── imx6q-bx50v3.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-dhcom-pdk2-u-boot.dtsi │ │ ├── imx6q-display5-u-boot.dtsi │ │ ├── imx6q-display5.dts │ │ ├── imx6q-gw51xx.dts │ │ ├── imx6q-gw52xx.dts │ │ ├── imx6q-gw53xx.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-hummingboard-emmc-som-v15.dts │ │ ├── imx6q-hummingboard-som-v15.dts │ │ ├── imx6q-hummingboard.dts │ │ ├── imx6q-hummingboard2-emmc-som-v15-u-boot.dtsi │ │ ├── imx6q-hummingboard2-emmc-som-v15.dts │ │ ├── imx6q-hummingboard2-som-v15.dts │ │ ├── imx6q-hummingboard2.dts │ │ ├── imx6q-icore-mipi-u-boot.dtsi │ │ ├── imx6q-icore-mipi.dts │ │ ├── imx6q-icore-ofcap10.dts │ │ ├── imx6q-icore-ofcap12.dts │ │ ├── imx6q-icore-rqs-u-boot.dtsi │ │ ├── imx6q-icore-rqs.dts │ │ ├── imx6q-icore-u-boot.dtsi │ │ ├── imx6q-icore.dts │ │ ├── imx6q-kp-u-boot.dtsi │ │ ├── imx6q-kp.dts │ │ ├── imx6q-logicpd-u-boot.dtsi │ │ ├── imx6q-logicpd.dts │ │ ├── imx6q-marsboard-u-boot.dtsi │ │ ├── imx6q-marsboard.dts │ │ ├── imx6q-mba6.dtsi │ │ ├── imx6q-mba6a.dts │ │ ├── imx6q-mba6b-u-boot.dtsi │ │ ├── imx6q-mccmon6.dts │ │ ├── imx6q-nitrogen6x.dts │ │ ├── imx6q-novena.dts │ │ ├── imx6q-phytec-mira-rdk-nand-u-boot.dtsi │ │ ├── imx6q-phytec-mira-rdk-nand.dts │ │ ├── imx6q-pico.dts │ │ ├── imx6q-sabreauto-u-boot.dtsi │ │ ├── imx6q-sabreauto.dts │ │ ├── imx6q-sabrelite-u-boot.dtsi │ │ ├── imx6q-sabrelite.dts │ │ ├── imx6q-sabresd-u-boot.dtsi │ │ ├── imx6q-sabresd.dts │ │ ├── imx6q-tbs2910-u-boot.dtsi │ │ ├── imx6q-tbs2910.dts │ │ ├── imx6q-udoo.dts │ │ ├── imx6q-wandboard-revd1-u-boot.dtsi │ │ ├── imx6q-wandboard-revd1.dts │ │ ├── imx6q.dtsi │ │ ├── imx6qdl-apalis.dtsi │ │ ├── imx6qdl-aristainetos2-common.dtsi │ │ ├── imx6qdl-aristainetos2-u-boot.dtsi │ │ ├── imx6qdl-aristainetos2c-u-boot.dtsi │ │ ├── imx6qdl-aristainetos2c.dtsi │ │ ├── imx6qdl-aristainetos2c_cslb-u-boot.dtsi │ │ ├── imx6qdl-aristainetos2c_cslb.dtsi │ │ ├── imx6qdl-colibri.dtsi │ │ ├── imx6qdl-cubox-i.dtsi │ │ ├── imx6qdl-dhcom-drc02.dtsi │ │ ├── imx6qdl-dhcom-pdk2-u-boot.dtsi │ │ ├── imx6qdl-dhcom-pdk2.dtsi │ │ ├── imx6qdl-dhcom-picoitx.dtsi │ │ ├── imx6qdl-dhcom-som.dtsi │ │ ├── imx6qdl-dhcom-u-boot.dtsi │ │ ├── imx6qdl-dhcom.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-som-v15-u-boot.dtsi │ │ ├── imx6qdl-hummingboard2-emmc.dtsi │ │ ├── imx6qdl-hummingboard2.dtsi │ │ ├── imx6qdl-icore-1.5.dtsi │ │ ├── imx6qdl-icore-rqs-u-boot.dtsi │ │ ├── imx6qdl-icore-rqs.dtsi │ │ ├── imx6qdl-icore-u-boot.dtsi │ │ ├── imx6qdl-icore.dtsi │ │ ├── imx6qdl-mba6-u-boot.dtsi │ │ ├── imx6qdl-mba6.dtsi │ │ ├── imx6qdl-mba6a.dtsi │ │ ├── imx6qdl-mba6b.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-phycore-som.dtsi │ │ ├── imx6qdl-pico.dtsi │ │ ├── imx6qdl-sabreauto-u-boot.dtsi │ │ ├── imx6qdl-sabreauto.dtsi │ │ ├── imx6qdl-sabrelite.dtsi │ │ ├── imx6qdl-sabresd-u-boot.dtsi │ │ ├── imx6qdl-sabresd.dtsi │ │ ├── imx6qdl-sr-som-brcm.dtsi │ │ ├── imx6qdl-sr-som-emmc.dtsi │ │ ├── imx6qdl-sr-som-ti.dtsi │ │ ├── imx6qdl-sr-som-u-boot.dtsi │ │ ├── imx6qdl-sr-som.dtsi │ │ ├── imx6qdl-u-boot.dtsi │ │ ├── imx6qdl-udoo-u-boot.dtsi │ │ ├── imx6qdl-udoo.dtsi │ │ ├── imx6qdl-wandboard-revb1.dtsi │ │ ├── imx6qdl-wandboard-revd1.dtsi │ │ ├── imx6qdl-wandboard-u-boot.dtsi │ │ ├── imx6qdl-wandboard.dtsi │ │ ├── imx6qdl.dtsi │ │ ├── imx6qp-sabreauto-u-boot.dtsi │ │ ├── imx6qp-sabreauto.dts │ │ ├── imx6qp-sabresd-u-boot.dtsi │ │ ├── imx6qp-sabresd.dts │ │ ├── imx6qp-wandboard-revd1-u-boot.dtsi │ │ ├── imx6qp-wandboard-revd1.dts │ │ ├── imx6qp.dtsi │ │ ├── imx6s-dhcom-drc02-u-boot.dtsi │ │ ├── imx6sll-evk-u-boot.dtsi │ │ ├── imx6sll-evk.dts │ │ ├── imx6sll.dtsi │ │ ├── imx6sx-sabreauto-u-boot.dtsi │ │ ├── imx6sx-sabreauto.dts │ │ ├── imx6sx-sdb.dts │ │ ├── imx6sx-sdb.dtsi │ │ ├── imx6sx-softing-vining-2000.dts │ │ ├── imx6sx-udoo-neo-basic-u-boot.dtsi │ │ ├── imx6sx.dtsi │ │ ├── imx6ul-14x14-evk-u-boot.dtsi │ │ ├── imx6ul-14x14-evk.dts │ │ ├── imx6ul-14x14-evk.dtsi │ │ ├── imx6ul-9x9-evk-u-boot.dtsi │ │ ├── imx6ul-9x9-evk.dts │ │ ├── imx6ul-geam-u-boot.dtsi │ │ ├── imx6ul-geam.dts │ │ ├── imx6ul-imx6ull-opos6ul.dtsi │ │ ├── imx6ul-imx6ull-opos6uldev.dtsi │ │ ├── imx6ul-isiot-emmc-u-boot.dtsi │ │ ├── imx6ul-isiot-emmc.dts │ │ ├── imx6ul-isiot-nand.dts │ │ ├── imx6ul-isiot-u-boot.dtsi │ │ ├── imx6ul-isiot.dtsi │ │ ├── imx6ul-kontron-bl-43.dts │ │ ├── imx6ul-kontron-bl-common-u-boot.dtsi │ │ ├── imx6ul-kontron-bl-common.dtsi │ │ ├── imx6ul-kontron-bl-u-boot.dtsi │ │ ├── imx6ul-kontron-bl.dts │ │ ├── imx6ul-kontron-sl-common.dtsi │ │ ├── imx6ul-kontron-sl.dtsi │ │ ├── imx6ul-liteboard.dts │ │ ├── imx6ul-litesom.dtsi │ │ ├── imx6ul-opos6ul-u-boot.dtsi │ │ ├── imx6ul-opos6ul.dtsi │ │ ├── imx6ul-opos6uldev-u-boot.dtsi │ │ ├── imx6ul-opos6uldev.dts │ │ ├── imx6ul-phytec-phycore-som.dtsi │ │ ├── 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-hobbit.dts │ │ ├── imx6ul-pico-pi.dts │ │ ├── imx6ul-pico.dtsi │ │ ├── imx6ul-u-boot.dtsi │ │ ├── imx6ul.dtsi │ │ ├── imx6ull-14x14-evk-u-boot.dtsi │ │ ├── imx6ull-14x14-evk.dts │ │ ├── imx6ull-colibri-emmc-eval-v3-u-boot.dtsi │ │ ├── imx6ull-colibri-emmc-eval-v3.dts │ │ ├── imx6ull-colibri-emmc-nonwifi.dtsi │ │ ├── imx6ull-colibri-eval-v3-u-boot.dtsi │ │ ├── imx6ull-colibri-eval-v3.dts │ │ ├── imx6ull-colibri-eval-v3.dtsi │ │ ├── imx6ull-colibri-nonwifi.dtsi │ │ ├── imx6ull-colibri.dtsi │ │ ├── imx6ull-dart-6ul.dts │ │ ├── imx6ull-dart-6ul.dtsi │ │ ├── imx6ull-kontron-bl-u-boot.dtsi │ │ ├── imx6ull-kontron-bl.dts │ │ ├── imx6ull-kontron-sl.dtsi │ │ ├── imx6ull-myir-mys-6ulx-eval-u-boot.dts │ │ ├── imx6ull-myir-mys-6ulx-eval.dts │ │ ├── imx6ull-myir-mys-6ulx.dtsi │ │ ├── imx6ull-mys-6ulx-u-boot.dtsi │ │ ├── imx6ull-phytec-phycore-som.dtsi │ │ ├── imx6ull-phytec-segin-ff-rdk-emmc.dts │ │ ├── imx6ull-phytec-segin-peb-av-02.dtsi │ │ ├── imx6ull-phytec-segin-peb-eval-01.dtsi │ │ ├── imx6ull-phytec-segin.dtsi │ │ ├── imx6ull-seeed-npi-imx6ull-dev-board.dts │ │ ├── imx6ull-seeed-npi-imx6ull-u-boot.dtsi │ │ ├── imx6ull-seeed-npi-imx6ull.dtsi │ │ ├── imx6ull-somlabs-visionsom.dts │ │ ├── imx6ull-u-boot.dtsi │ │ ├── imx6ull.dtsi │ │ ├── imx6ulz-14x14-evk-u-boot.dtsi │ │ ├── imx6ulz-14x14-evk.dts │ │ ├── imx6ulz-bsh-smm-m2-u-boot.dtsi │ │ ├── imx6ulz.dtsi │ │ ├── imx7-cm-u-boot.dtsi │ │ ├── imx7-cm.dts │ │ ├── imx7-colibri-eval-v3.dtsi │ │ ├── imx7-colibri.dtsi │ │ ├── imx7d-colibri-emmc-eval-v3-u-boot.dtsi │ │ ├── imx7d-colibri-emmc-eval-v3.dts │ │ ├── imx7d-colibri-emmc.dtsi │ │ ├── imx7d-colibri-eval-v3-u-boot.dtsi │ │ ├── imx7d-colibri-eval-v3.dts │ │ ├── imx7d-colibri.dtsi │ │ ├── imx7d-meerkat96.dts │ │ ├── imx7d-pico-hobbit.dts │ │ ├── imx7d-pico-pi-u-boot.dtsi │ │ ├── imx7d-pico-pi.dts │ │ ├── imx7d-pico.dtsi │ │ ├── imx7d-sdb-qspi-u-boot.dtsi │ │ ├── imx7d-sdb-qspi.dts │ │ ├── imx7d-sdb-u-boot.dtsi │ │ ├── imx7d-sdb.dts │ │ ├── imx7d-smegw01-u-boot.dtsi │ │ ├── imx7d-smegw01.dts │ │ ├── imx7d.dtsi │ │ ├── imx7s-u-boot.dtsi │ │ ├── imx7s-warp-u-boot.dtsi │ │ ├── imx7s.dtsi │ │ ├── imx7ulp-com-u-boot.dtsi │ │ ├── imx7ulp-com.dts │ │ ├── imx7ulp-evk.dts │ │ ├── imx7ulp-uboot.dtsi │ │ ├── imx7ulp.dtsi │ │ ├── imx8-capricorn-cxg3.dts │ │ ├── imx8-capricorn-u-boot.dtsi │ │ ├── imx8-capricorn.dtsi │ │ ├── imx8mm-beacon-baseboard.dtsi │ │ ├── imx8mm-beacon-kit-u-boot.dtsi │ │ ├── imx8mm-cl-iot-gate-ied-adc0.dtso │ │ ├── imx8mm-cl-iot-gate-ied-adc1.dtso │ │ ├── imx8mm-cl-iot-gate-ied-can0.dtso │ │ ├── imx8mm-cl-iot-gate-ied-can1.dtso │ │ ├── imx8mm-cl-iot-gate-ied-tpm0.dtso │ │ ├── imx8mm-cl-iot-gate-ied-tpm1.dtso │ │ ├── imx8mm-cl-iot-gate-ied.dtso │ │ ├── imx8mm-cl-iot-gate-optee-u-boot.dtsi │ │ ├── imx8mm-cl-iot-gate-optee.dts │ │ ├── imx8mm-cl-iot-gate-u-boot.dtsi │ │ ├── imx8mm-cl-iot-gate.dts │ │ ├── imx8mm-data-modul-edm-sbc-u-boot.dtsi │ │ ├── imx8mm-data-modul-edm-sbc.dts │ │ ├── imx8mm-evk-u-boot.dtsi │ │ ├── imx8mm-icore-mx8mm-ctouch2-u-boot.dtsi │ │ ├── imx8mm-icore-mx8mm-ctouch2.dts │ │ ├── imx8mm-icore-mx8mm-edimm2.2-u-boot.dtsi │ │ ├── imx8mm-icore-mx8mm-edimm2.2.dts │ │ ├── imx8mm-icore-mx8mm-u-boot.dtsi │ │ ├── imx8mm-icore-mx8mm.dtsi │ │ ├── imx8mm-kontron-bl-common-u-boot.dtsi │ │ ├── imx8mm-kontron-bl-osm-s-u-boot.dtsi │ │ ├── imx8mm-kontron-bl-osm-s.dts │ │ ├── imx8mm-kontron-bl-u-boot.dtsi │ │ ├── imx8mm-kontron-bl.dts │ │ ├── imx8mm-kontron-osm-s.dtsi │ │ ├── imx8mm-kontron-sl.dtsi │ │ ├── imx8mm-mx8menlo-u-boot.dtsi │ │ ├── imx8mm-mx8menlo.dts │ │ ├── imx8mm-phg-u-boot.dtsi │ │ ├── imx8mm-phg.dts │ │ ├── imx8mm-phyboard-polis-rdk-u-boot.dtsi │ │ ├── imx8mm-phygate-tauri-l-u-boot.dtsi │ │ ├── imx8mm-tqma8mqml.dtsi │ │ ├── imx8mm-u-boot.dtsi │ │ ├── imx8mm-venice-gw700x-u-boot.dtsi │ │ ├── imx8mm-venice-gw71xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw72xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw73xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw75xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw7901-u-boot.dtsi │ │ ├── imx8mm-venice-gw7902-u-boot.dtsi │ │ ├── imx8mm-venice-gw7903-u-boot.dtsi │ │ ├── imx8mm-venice-gw7904-u-boot.dtsi │ │ ├── imx8mm-venice-u-boot.dtsi │ │ ├── imx8mm-verdin-wifi-dev-u-boot.dtsi │ │ ├── imx8mm.dtsi │ │ ├── imx8mn-beacon-baseboard.dtsi │ │ ├── imx8mn-beacon-kit-u-boot.dtsi │ │ ├── imx8mn-bsh-smm-s2-u-boot-common.dtsi │ │ ├── imx8mn-bsh-smm-s2-u-boot.dtsi │ │ ├── imx8mn-bsh-smm-s2pro-u-boot.dtsi │ │ ├── imx8mn-ddr4-evk-u-boot.dtsi │ │ ├── imx8mn-evk-u-boot.dtsi │ │ ├── imx8mn-evk.dtsi │ │ ├── imx8mn-u-boot.dtsi │ │ ├── imx8mn-var-som-symphony-u-boot.dtsi │ │ ├── imx8mn-var-som-symphony.dts │ │ ├── imx8mn-var-som.dtsi │ │ ├── imx8mn-venice-gw7902-u-boot.dtsi │ │ ├── imx8mn-venice-u-boot.dtsi │ │ ├── imx8mn.dtsi │ │ ├── imx8mp-beacon-kit-u-boot.dtsi │ │ ├── imx8mp-data-modul-edm-sbc-u-boot.dtsi │ │ ├── imx8mp-data-modul-edm-sbc.dts │ │ ├── imx8mp-debix-model-a-u-boot.dtsi │ │ ├── imx8mp-dhcom-drc02-u-boot.dtsi │ │ ├── imx8mp-dhcom-drc02.dts │ │ ├── imx8mp-dhcom-pdk-overlay-eth2xfast.dtso │ │ ├── imx8mp-dhcom-pdk2-u-boot.dtsi │ │ ├── imx8mp-dhcom-pdk3-overlay-rev100.dtso │ │ ├── imx8mp-dhcom-pdk3-u-boot.dtsi │ │ ├── imx8mp-dhcom-picoitx-u-boot.dtsi │ │ ├── imx8mp-dhcom-picoitx.dts │ │ ├── imx8mp-dhcom-som-overlay-eth1xfast.dtso │ │ ├── imx8mp-dhcom-som-overlay-eth2xfast.dtso │ │ ├── imx8mp-dhcom-som-overlay-rev100.dtso │ │ ├── imx8mp-dhcom-som.dtsi │ │ ├── imx8mp-dhcom-u-boot.dtsi │ │ ├── imx8mp-evk-u-boot.dtsi │ │ ├── imx8mp-icore-mx8mp-edimm2.2-u-boot.dtsi │ │ ├── imx8mp-icore-mx8mp-edimm2.2.dts │ │ ├── imx8mp-icore-mx8mp.dtsi │ │ ├── imx8mp-msc-sm2s-u-boot.dtsi │ │ ├── imx8mp-msc-sm2s.dts │ │ ├── imx8mp-navqp-u-boot.dtsi │ │ ├── imx8mp-phyboard-pollux-rdk-u-boot.dtsi │ │ ├── imx8mp-rsb3720-a1-u-boot.dtsi │ │ ├── imx8mp-rsb3720-a1.dts │ │ ├── imx8mp-toradex-smarc-dev-u-boot.dtsi │ │ ├── imx8mp-toradex-smarc-dev.dts │ │ ├── imx8mp-toradex-smarc.dtsi │ │ ├── imx8mp-u-boot.dtsi │ │ ├── imx8mp-venice-gw702x-u-boot.dtsi │ │ ├── imx8mp-venice-gw71xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw72xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw73xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw74xx-u-boot.dtsi │ │ ├── imx8mp-venice-gw75xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw82xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-u-boot.dtsi │ │ ├── imx8mp-verdin-wifi-dev-u-boot.dtsi │ │ ├── imx8mp.dtsi │ │ ├── imx8mq-cm-u-boot.dtsi │ │ ├── imx8mq-cm.dts │ │ ├── imx8mq-evk-u-boot.dtsi │ │ ├── imx8mq-kontron-pitx-imx8m-u-boot.dtsi │ │ ├── imx8mq-kontron-pitx-imx8m.dts │ │ ├── imx8mq-librem5-r3.dtsi │ │ ├── imx8mq-librem5-r4-u-boot.dtsi │ │ ├── imx8mq-librem5-r4.dts │ │ ├── imx8mq-librem5.dtsi │ │ ├── imx8mq-mnt-reform2-u-boot.dtsi │ │ ├── imx8mq-mnt-reform2.dts │ │ ├── imx8mq-nitrogen-som.dtsi │ │ ├── imx8mq-phanbell-u-boot.dtsi │ │ ├── imx8mq-phanbell.dts │ │ ├── imx8mq-pico-pi-u-boot.dtsi │ │ ├── imx8mq-pico-pi.dts │ │ ├── imx8mq-u-boot.dtsi │ │ ├── imx8mq.dtsi │ │ ├── imx8qm-cgtqmx8.dts │ │ ├── imx8qm-dmsse20-a1.dts │ │ ├── imx8qm-rom7720-a1.dts │ │ ├── imx8qm-u-boot.dtsi │ │ ├── imx8qxp-u-boot.dtsi │ │ ├── imx8ulp-evk-u-boot.dtsi │ │ ├── imx8ulp-evk.dts │ │ ├── imx8ulp-u-boot.dtsi │ │ ├── imx8ulp.dtsi │ │ ├── imx91-11x11-evk-u-boot.dtsi │ │ ├── imx91-11x11-evk.dts │ │ ├── imx91-pinfunc.h │ │ ├── imx91-u-boot.dtsi │ │ ├── imx91.dtsi │ │ ├── imx93-11x11-evk-u-boot.dtsi │ │ ├── imx93-9x9-qsb-u-boot.dtsi │ │ ├── imx93-phyboard-segin-u-boot.dtsi │ │ ├── imx93-u-boot.dtsi │ │ ├── imx93-var-som-symphony-u-boot.dtsi │ │ ├── imx93-var-som-symphony.dts │ │ ├── imx93-var-som.dtsi │ │ ├── imx93.dtsi │ │ ├── imx95-19x19-evk-u-boot.dtsi │ │ ├── imx95-u-boot.dtsi │ │ ├── imxrt1020-evk-u-boot.dtsi │ │ ├── imxrt1020-evk.dts │ │ ├── imxrt1020-pinfunc.h │ │ ├── imxrt1020.dtsi │ │ ├── imxrt1050-evk-u-boot.dtsi │ │ ├── imxrt1170-evk-u-boot.dtsi │ │ ├── imxrt1170-evk.dts │ │ ├── imxrt1170.dtsi │ │ ├── include │ │ │ └── dt-bindings │ │ ├── ipq5424-rdp466-u-boot.dtsi │ │ ├── ipq9574-rdp433-u-boot.dtsi │ │ ├── juno-base.dtsi │ │ ├── juno-clocks.dtsi │ │ ├── juno-cs-r1r2.dtsi │ │ ├── juno-motherboard.dtsi │ │ ├── juno-r2-u-boot.dtsi │ │ ├── juno-r2.dts │ │ ├── k3-am62-ddr.dtsi │ │ ├── k3-am62-lp-sk-binman.dtsi │ │ ├── k3-am62-lp-sk-u-boot.dtsi │ │ ├── k3-am62-lp4-50-800-800.dtsi │ │ ├── k3-am62-phycore-som-ddr4-2gb.dtsi │ │ ├── k3-am62-r5-lp-sk.dts │ │ ├── k3-am625-beagleplay-ddr4-1600MTs.dtsi │ │ ├── k3-am625-beagleplay-u-boot.dtsi │ │ ├── k3-am625-phyboard-lyra-rdk-u-boot.dtsi │ │ ├── k3-am625-phycore-som-binman.dtsi │ │ ├── k3-am625-r5-beagleplay.dts │ │ ├── k3-am625-r5-phycore-som-2gb.dts │ │ ├── k3-am625-r5-sk.dts │ │ ├── k3-am625-sk-binman.dtsi │ │ ├── k3-am625-sk-u-boot.dtsi │ │ ├── k3-am625-verdin-lpddr4-1600MTs.dtsi │ │ ├── k3-am625-verdin-r5.dts │ │ ├── k3-am625-verdin-wifi-dev-binman.dtsi │ │ ├── k3-am625-verdin-wifi-dev-u-boot.dtsi │ │ ├── k3-am62a-ddr-1866mhz-32bit.dtsi │ │ ├── k3-am62a-ddr.dtsi │ │ ├── k3-am62a-phycore-som-binman.dtsi │ │ ├── k3-am62a-phycore-som-ddr4-2gb.dtsi │ │ ├── k3-am62a-sk-binman.dtsi │ │ ├── k3-am62a7-phyboard-lyra-rdk-u-boot.dtsi │ │ ├── k3-am62a7-r5-phycore-som-2gb.dts │ │ ├── k3-am62a7-r5-sk.dts │ │ ├── k3-am62a7-sk-u-boot.dtsi │ │ ├── k3-am62p-ddr-lp4-50-1600.dtsi │ │ ├── k3-am62p-sk-binman.dtsi │ │ ├── k3-am62p-verdin-dev.dtsi │ │ ├── k3-am62p-verdin-wifi.dtsi │ │ ├── k3-am62p-verdin.dtsi │ │ ├── k3-am62p5-r5-sk.dts │ │ ├── k3-am62p5-sk-u-boot.dtsi │ │ ├── k3-am62p5-verdin-lpddr4-1600.dtsi │ │ ├── k3-am62p5-verdin-r5.dts │ │ ├── k3-am62p5-verdin-wifi-dev-binman.dtsi │ │ ├── k3-am62p5-verdin-wifi-dev-u-boot.dtsi │ │ ├── k3-am62p5-verdin-wifi-dev.dts │ │ ├── k3-am62x-sk-ddr4-1600MTs.dtsi │ │ ├── k3-am64-ddr.dtsi │ │ ├── k3-am64-evm-ddr4-1600MTs.dtsi │ │ ├── k3-am64-phycore-som-ddr4-2gb.dtsi │ │ ├── k3-am64-sk-lp4-1600MTs.dtsi │ │ ├── k3-am642-evm-u-boot.dtsi │ │ ├── k3-am642-phyboard-electra-rdk-u-boot.dtsi │ │ ├── k3-am642-phycore-som-binman.dtsi │ │ ├── k3-am642-r5-evm.dts │ │ ├── k3-am642-r5-phycore-som-2gb.dts │ │ ├── k3-am642-r5-sk.dts │ │ ├── k3-am642-sk-u-boot.dtsi │ │ ├── k3-am64x-binman.dtsi │ │ ├── k3-am65-iot2050-boot-image.dtsi │ │ ├── k3-am65-iot2050-common-pg2-u-boot.dtsi │ │ ├── k3-am65-iot2050-common-u-boot.dtsi │ │ ├── k3-am6528-iot2050-basic-pg2-u-boot.dtsi │ │ ├── k3-am6528-iot2050-basic-u-boot.dtsi │ │ ├── k3-am654-base-board-ddr4-1600MTs.dtsi │ │ ├── k3-am654-base-board-u-boot.dtsi │ │ ├── k3-am654-ddr.dtsi │ │ ├── k3-am654-r5-base-board.dts │ │ ├── k3-am6548-iot2050-advanced-m2-u-boot.dtsi │ │ ├── k3-am6548-iot2050-advanced-pg2-u-boot.dtsi │ │ ├── k3-am6548-iot2050-advanced-sm-u-boot.dtsi │ │ ├── k3-am6548-iot2050-advanced-u-boot.dtsi │ │ ├── k3-am65x-binman.dtsi │ │ ├── k3-am67a-beagley-ai-u-boot.dtsi │ │ ├── k3-am67a-beagley-ddr-lp4.dtsi │ │ ├── k3-am67a-r5-beagley-ai.dts │ │ ├── k3-am68-sk-base-board-u-boot.dtsi │ │ ├── k3-am68-sk-r5-base-board.dts │ │ ├── k3-am69-r5-sk.dts │ │ ├── k3-am69-sk-u-boot.dtsi │ │ ├── k3-binman-capsule-r5.dtsi │ │ ├── k3-binman-capsule.dtsi │ │ ├── k3-binman.dtsi │ │ ├── k3-j7200-binman.dtsi │ │ ├── k3-j7200-common-proc-board-u-boot.dtsi │ │ ├── k3-j7200-ddr-evm-lp4-2666.dtsi │ │ ├── k3-j7200-r5-common-proc-board.dts │ │ ├── k3-j721e-beagleboneai64-u-boot.dtsi │ │ ├── k3-j721e-binman.dtsi │ │ ├── k3-j721e-common-proc-board-u-boot.dtsi │ │ ├── k3-j721e-ddr-beagleboneai64-lp4-3200.dtsi │ │ ├── k3-j721e-ddr-evm-lp4-4266.dtsi │ │ ├── k3-j721e-ddr-sk-lp4-4266.dtsi │ │ ├── k3-j721e-ddr.dtsi │ │ ├── k3-j721e-r5-beagleboneai64.dts │ │ ├── k3-j721e-r5-common-proc-board.dts │ │ ├── k3-j721e-r5-sk.dts │ │ ├── k3-j721e-r5.dtsi │ │ ├── k3-j721e-sk-u-boot.dtsi │ │ ├── k3-j721s2-binman.dtsi │ │ ├── k3-j721s2-common-proc-board-u-boot.dtsi │ │ ├── k3-j721s2-ddr-evm-lp4-4266.dtsi │ │ ├── k3-j721s2-ddr.dtsi │ │ ├── k3-j721s2-r5-common-proc-board.dts │ │ ├── k3-j721s2-r5.dtsi │ │ ├── k3-j722s-binman.dtsi │ │ ├── k3-j722s-ddr-lp4-50-3733.dtsi │ │ ├── k3-j722s-ddr-lp4-50-4000.dtsi │ │ ├── k3-j722s-evm-u-boot.dtsi │ │ ├── k3-j722s-r5-evm.dts │ │ ├── k3-j742s2-ddr-evm-lp4-4266.dtsi │ │ ├── k3-j742s2-evm-u-boot.dtsi │ │ ├── k3-j742s2-r5-evm.dts │ │ ├── k3-j784s4-binman.dtsi │ │ ├── k3-j784s4-ddr-evm-lp4-4266.dtsi │ │ ├── k3-j784s4-ddr.dtsi │ │ ├── k3-j784s4-evm-u-boot.dtsi │ │ ├── k3-j784s4-j742s2-ddr.dtsi │ │ ├── k3-j784s4-r5-evm.dts │ │ ├── k3-j784s4-r5.dtsi │ │ ├── k3-security.h │ │ ├── keystone-k2e-evm-u-boot.dtsi │ │ ├── keystone-k2g-evm-u-boot.dtsi │ │ ├── keystone-k2g-ice-u-boot.dtsi │ │ ├── keystone-k2hk-evm-u-boot.dtsi │ │ ├── keystone-k2l-evm-u-boot.dtsi │ │ ├── kirkwood-atl-sbx81lifkw.dts │ │ ├── kirkwood-atl-sbx81lifxcat.dts │ │ ├── kirkwood-d2net-u-boot.dtsi │ │ ├── kirkwood-dreamplug-u-boot.dtsi │ │ ├── kirkwood-is2-u-boot.dtsi │ │ ├── kirkwood-lschlv2-u-boot.dtsi │ │ ├── kirkwood-lsxhl-u-boot.dtsi │ │ ├── kirkwood-net2big-u-boot.dtsi │ │ ├── kirkwood-ns2-u-boot.dtsi │ │ ├── kirkwood-ns2lite-u-boot.dtsi │ │ ├── kirkwood-ns2max-u-boot.dtsi │ │ ├── kirkwood-ns2mini-u-boot.dtsi │ │ ├── kirkwood-nsa325-u-boot.dtsi │ │ ├── kirkwood-pogoplug-series-4-u-boot.dtsi │ │ ├── logicpd-som-lv-35xx-devkit-u-boot.dtsi │ │ ├── logicpd-som-lv-37xx-devkit-u-boot.dtsi │ │ ├── logicpd-torpedo-35xx-devkit-u-boot.dtsi │ │ ├── logicpd-torpedo-37xx-devkit-u-boot.dtsi │ │ ├── lpc3250-ea3250-u-boot.dtsi │ │ ├── lpc3250-ea3250.dts │ │ ├── lpc32xx.dtsi │ │ ├── ls1021a-iot-duart.dts │ │ ├── ls1021a-iot.dtsi │ │ ├── ls1021a-pg-wcom-expu1.dts │ │ ├── ls1021a-pg-wcom-seli8.dts │ │ ├── ls1021a-qds-duart.dts │ │ ├── ls1021a-qds-lpuart.dts │ │ ├── ls1021a-qds.dtsi │ │ ├── ls1021a-tsn.dts │ │ ├── ls1021a-twr-duart.dts │ │ ├── ls1021a-twr-lpuart.dts │ │ ├── ls1021a-twr-u-boot.dtsi │ │ ├── ls1021a-twr.dtsi │ │ ├── ls1021a.dtsi │ │ ├── meson-a1-ad401.dts │ │ ├── meson-axg-jethome-jethub-j100-u-boot.dtsi │ │ ├── meson-axg-s400-u-boot.dtsi │ │ ├── meson-g12-common-u-boot.dtsi │ │ ├── meson-g12a-radxa-zero-u-boot.dtsi │ │ ├── meson-g12a-sei510-u-boot.dtsi │ │ ├── meson-g12a-u200-u-boot.dtsi │ │ ├── meson-g12b-a311d-khadas-vim3-u-boot.dtsi │ │ ├── meson-g12b-a311d-libretech-cc-u-boot.dtsi │ │ ├── meson-g12b-bananapi-cm4-cm4io-u-boot.dtsi │ │ ├── meson-g12b-bananapi-u-boot.dtsi │ │ ├── meson-g12b-gsking-x-u-boot.dtsi │ │ ├── meson-g12b-gtking-pro-u-boot.dtsi │ │ ├── meson-g12b-gtking-u-boot.dtsi │ │ ├── meson-g12b-odroid-go-ultra-u-boot.dtsi │ │ ├── meson-g12b-odroid-n2-u-boot.dtsi │ │ ├── meson-g12b-odroid-n2l-u-boot.dtsi │ │ ├── meson-g12b-radxa-zero2-u-boot.dtsi │ │ ├── meson-gx-u-boot.dtsi │ │ ├── meson-gxbb-kii-pro-u-boot.dtsi │ │ ├── meson-gxbb-nanopi-k2-u-boot.dtsi │ │ ├── meson-gxbb-odroidc2-u-boot.dtsi │ │ ├── meson-gxbb-p200-u-boot.dtsi │ │ ├── meson-gxbb-p201-u-boot.dtsi │ │ ├── meson-gxbb-wetek-hub-u-boot.dtsi │ │ ├── meson-gxbb-wetek-play2-u-boot.dtsi │ │ ├── meson-gxl-s805x-libretech-ac-u-boot.dtsi │ │ ├── meson-gxl-s905d-libretech-pc-u-boot.dtsi │ │ ├── meson-gxl-s905x-khadas-vim-u-boot.dtsi │ │ ├── meson-gxl-s905x-libretech-cc-u-boot.dtsi │ │ ├── meson-gxl-s905x-libretech-cc-v2-u-boot.dtsi │ │ ├── meson-gxl-s905x-p212-u-boot.dtsi │ │ ├── meson-gxl-u-boot.dtsi │ │ ├── meson-gxm-gt1-ultimate-u-boot.dtsi │ │ ├── meson-gxm-khadas-vim2-u-boot.dtsi │ │ ├── meson-gxm-s912-libretech-pc-u-boot.dtsi │ │ ├── meson-gxm-wetek-core2-u-boot.dtsi │ │ ├── meson-khadas-vim3-u-boot.dtsi │ │ ├── meson-sm1-bananapi-m2-pro-u-boot.dtsi │ │ ├── meson-sm1-bananapi-m5-u-boot.dtsi │ │ ├── meson-sm1-khadas-vim3l-u-boot.dtsi │ │ ├── meson-sm1-odroid-c4-u-boot.dtsi │ │ ├── meson-sm1-odroid-hc4-u-boot.dtsi │ │ ├── meson-sm1-s905d3-libretech-cc-u-boot.dtsi │ │ ├── meson-sm1-sei610-u-boot.dtsi │ │ ├── meson-sm1-u-boot.dtsi │ │ ├── mt6357.dtsi │ │ ├── mt7622-bananapi-bpi-r64.dts │ │ ├── mt7622-rfb.dts │ │ ├── mt7622-u-boot.dtsi │ │ ├── mt7622.dtsi │ │ ├── mt7623-u-boot.dtsi │ │ ├── mt7623.dtsi │ │ ├── mt7623a-unielec-u7623-02-emmc.dts │ │ ├── mt7623n-bananapi-bpi-r2.dts │ │ ├── mt7629-rfb-u-boot.dtsi │ │ ├── mt7981-emmc-rfb.dts │ │ ├── mt7981-gmac2-spim-nand-rfb.dts │ │ ├── mt7981-nor-emmc-rfb.dts │ │ ├── mt7981-rfb.dts │ │ ├── mt7981-sd-rfb.dts │ │ ├── mt7981-snfi-nand-rfb.dts │ │ ├── mt7981-spim-nand-rfb.dts │ │ ├── mt7981-spim-nor-rfb.dts │ │ ├── mt7981.dtsi │ │ ├── mt7981b-openwrt-one-u-boot.dtsi │ │ ├── mt7986-u-boot.dtsi │ │ ├── mt7986.dtsi │ │ ├── mt7986a-bpi-r3-emmc.dts │ │ ├── mt7986a-bpi-r3-sd.dts │ │ ├── mt7986a-emmc-rfb.dts │ │ ├── mt7986a-gmac2-spim-nand-rfb.dts │ │ ├── mt7986a-rfb.dts │ │ ├── mt7986a-sd-rfb.dts │ │ ├── mt7986a-snfi-nand-rfb.dts │ │ ├── mt7986a-spim-nand-rfb.dts │ │ ├── mt7986a-spim-nor-rfb.dts │ │ ├── mt7986b-emmc-rfb.dts │ │ ├── mt7986b-gmac2-spim-nand-rfb.dts │ │ ├── mt7986b-rfb.dts │ │ ├── mt7986b-sd-rfb.dts │ │ ├── mt7986b-snfi-nand-rfb.dts │ │ ├── mt7986b-spim-nand-rfb.dts │ │ ├── mt7986b-spim-nor-rfb.dts │ │ ├── mt7987-emmc.dtsi │ │ ├── mt7987-netsys-u-boot.dtsi │ │ ├── mt7987-pinctrl-u-boot.dtsi │ │ ├── mt7987-pinctrl.dtsi │ │ ├── mt7987-sd.dtsi │ │ ├── mt7987-spim-nand.dtsi │ │ ├── mt7987-spim-nor.dtsi │ │ ├── mt7987.dtsi │ │ ├── mt7987a-emmc-rfb-u-boot.dtsi │ │ ├── mt7987a-emmc-rfb.dts │ │ ├── mt7987a-nor-emmc-rfb.dts │ │ ├── mt7987a-rfb-u-boot.dtsi │ │ ├── mt7987a-rfb.dts │ │ ├── mt7987a-sd-rfb-u-boot.dtsi │ │ ├── mt7987a-sd-rfb.dts │ │ ├── mt7987a-spim-nand-rfb-u-boot.dtsi │ │ ├── mt7987a-spim-nand-rfb.dts │ │ ├── mt7987a-spim-nor-rfb-u-boot.dtsi │ │ ├── mt7987a-spim-nor-rfb.dts │ │ ├── mt7987a-u-boot.dtsi │ │ ├── mt7987a.dtsi │ │ ├── mt7988-10g-p0-rfb.dts │ │ ├── mt7988-10g-p0-spim-nand-rfb.dts │ │ ├── mt7988-10g-p1-rfb.dts │ │ ├── mt7988-10g-p1-spim-nand-rfb.dts │ │ ├── mt7988-emmc-rfb.dts │ │ ├── mt7988-i2p5g-p1-emmc-rfb.dts │ │ ├── mt7988-i2p5g-p1-rfb.dts │ │ ├── mt7988-i2p5g-p1-spim-nand-rfb.dts │ │ ├── mt7988-rfb.dts │ │ ├── mt7988-sd-rfb.dts │ │ ├── mt7988-snfi-nand-rfb.dts │ │ ├── mt7988-spim-nand-rfb.dts │ │ ├── mt7988-spim-nor-rfb.dts │ │ ├── mt7988-u-boot.dtsi │ │ ├── mt7988.dtsi │ │ ├── mt7988a-bananapi-bpi-r4-u-boot.dtsi │ │ ├── mt8183-pumpkin.dts │ │ ├── mt8183.dtsi │ │ ├── mt8365-evk.dts │ │ ├── mt8365.dtsi │ │ ├── mt8512-bm1-emmc.dts │ │ ├── mt8512.dtsi │ │ ├── mt8516-pumpkin.dts │ │ ├── mt8516-u-boot.dtsi │ │ ├── mt8516.dtsi │ │ ├── mt8518-ap1-emmc.dts │ │ ├── mt8518.dtsi │ │ ├── mvebu-u-boot.dtsi │ │ ├── ns-board.dts │ │ ├── ns3-board.dts │ │ ├── ns3.dtsi │ │ ├── nuvoton-common-npcm7xx.dtsi │ │ ├── nuvoton-common-npcm8xx.dtsi │ │ ├── nuvoton-npcm750-evb.dts │ │ ├── nuvoton-npcm750-pincfg-evb.dtsi │ │ ├── nuvoton-npcm750.dtsi │ │ ├── nuvoton-npcm7xx-u-boot.dtsi │ │ ├── nuvoton-npcm845-evb.dts │ │ ├── nuvoton-npcm845-pincfg.dtsi │ │ ├── nuvoton-npcm845-yosemite4-pincfg.dtsi │ │ ├── nuvoton-npcm845-yosemite4.dts │ │ ├── nuvoton-npcm845.dtsi │ │ ├── nuvoton-npcm8xx-u-boot.dtsi │ │ ├── o4-imx-nano.dts │ │ ├── o4-imx6ull-nano.dtsi │ │ ├── octeontx.dts │ │ ├── omap-gpmc-smsc911x.dtsi │ │ ├── omap-gpmc-smsc9221.dtsi │ │ ├── omap3-cpu-thermal.dtsi │ │ ├── omap3-devkit8000-u-boot.dtsi │ │ ├── omap3-devkit8000.dts │ │ ├── omap3-evm-37xx-u-boot.dtsi │ │ ├── omap3-evm-u-boot.dtsi │ │ ├── omap3-igep0020-u-boot.dtsi │ │ ├── omap3-sniper-u-boot.dtsi │ │ ├── omap3-u-boot.dtsi │ │ ├── omap3.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 │ │ ├── omap5-core-thermal.dtsi │ │ ├── omap5-gpu-thermal.dtsi │ │ ├── omap5-u-boot.dtsi │ │ ├── phytium-durian.dts │ │ ├── phytium-pe2201.dts │ │ ├── phytium-pomelo.dts │ │ ├── poplar-pinctrl.dtsi │ │ ├── px30-firefly-u-boot.dtsi │ │ ├── px30-firefly.dts │ │ ├── px30-ringneck-haikou-u-boot.dtsi │ │ ├── px30-u-boot.dtsi │ │ ├── pxa1908-samsung-coreprimevelte.dts │ │ ├── pxa1908.dtsi │ │ ├── qcom-ipq4019-u-boot.dtsi │ │ ├── qcs404-evb-4000-u-boot.dtsi │ │ ├── qcs615-ride-u-boot.dtsi │ │ ├── qcs6490-rb3gen2-u-boot.dtsi │ │ ├── qcs8300-ride-u-boot.dtsi │ │ ├── qcs9100-ride-r3-u-boot.dtsi │ │ ├── qemu-arm.dts │ │ ├── qemu-arm64.dts │ │ ├── qemu-sbsa.dts │ │ ├── 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 │ │ ├── r7s72100-genmai-u-boot.dtsi │ │ ├── r7s72100-gr-peach-u-boot.dtsi │ │ ├── r7s72100-gr-peach.dts │ │ ├── r7s72100.dtsi │ │ ├── r8a774a1-beacon-rzg2m-kit-u-boot.dtsi │ │ ├── r8a774b1-beacon-rzg2n-kit-u-boot.dtsi │ │ ├── r8a774c0-ek874-u-boot.dtsi │ │ ├── r8a774c0-u-boot.dtsi │ │ ├── r8a774e1-beacon-rzg2h-kit-u-boot.dtsi │ │ ├── r8a7790-lager-u-boot.dtsi │ │ ├── r8a7790-stout-u-boot.dtsi │ │ ├── r8a7791-koelsch-u-boot.dtsi │ │ ├── r8a7791-porter-u-boot.dtsi │ │ ├── r8a7793-gose-u-boot.dtsi │ │ ├── r8a7794-alt-u-boot.dtsi │ │ ├── r8a7794-silk-u-boot.dtsi │ │ ├── r8a77951-salvator-x-u-boot.dtsi │ │ ├── r8a77951-u-boot.dtsi │ │ ├── r8a77951-ulcb-u-boot.dtsi │ │ ├── r8a77960-salvator-x-u-boot.dtsi │ │ ├── r8a77960-u-boot.dtsi │ │ ├── r8a77960-ulcb-u-boot.dtsi │ │ ├── r8a77965-salvator-x-u-boot.dtsi │ │ ├── r8a77965-u-boot.dtsi │ │ ├── r8a77965-ulcb-u-boot.dtsi │ │ ├── r8a77970-eagle-u-boot.dtsi │ │ ├── r8a77970-u-boot.dtsi │ │ ├── r8a77970-v3msk-u-boot.dtsi │ │ ├── r8a77980-condor-u-boot.dtsi │ │ ├── r8a77980-u-boot.dtsi │ │ ├── r8a77980-v3hsk-u-boot.dtsi │ │ ├── r8a77990-ebisu-u-boot.dtsi │ │ ├── r8a77990-u-boot.dtsi │ │ ├── r8a77995-draak-u-boot.dtsi │ │ ├── r8a77995-u-boot.dtsi │ │ ├── r8a779a0-falcon-u-boot.dtsi │ │ ├── r8a779a0-u-boot.dtsi │ │ ├── r8a779f0-spider-u-boot.dtsi │ │ ├── r8a779f0-u-boot.dtsi │ │ ├── r8a779f4-s4sk-u-boot.dtsi │ │ ├── r8a779g0-u-boot.dtsi │ │ ├── r8a779g0-white-hawk-u-boot.dtsi │ │ ├── r8a779g3-sparrow-hawk-u-boot.dtsi │ │ ├── r9a06g032-ddr.dtsi │ │ ├── r9a06g032-rzn1-snarc-u-boot.dtsi │ │ ├── r9a06g032-rzn1-snarc.dts │ │ ├── r9a06g032.dtsi │ │ ├── rk3036-evb-u-boot.dtsi │ │ ├── rk3036-kylin-u-boot.dtsi │ │ ├── rk3036-u-boot.dtsi │ │ ├── rk3066a-mk808-u-boot.dtsi │ │ ├── rk3066a-u-boot.dtsi │ │ ├── rk3128-evb-u-boot.dtsi │ │ ├── rk3128-evb.dts │ │ ├── rk3128-u-boot.dtsi │ │ ├── rk3128.dtsi │ │ ├── rk3188-radxarock-u-boot.dtsi │ │ ├── rk3188-u-boot.dtsi │ │ ├── rk3229-evb-u-boot.dtsi │ │ ├── rk3229-evb.dts │ │ ├── rk3229.dtsi │ │ ├── rk322x-u-boot.dtsi │ │ ├── rk322x.dtsi │ │ ├── rk3288-evb-u-boot.dtsi │ │ ├── rk3288-evb.dts │ │ ├── rk3288-evb.dtsi │ │ ├── rk3288-firefly-u-boot.dtsi │ │ ├── rk3288-miqi-u-boot.dtsi │ │ ├── rk3288-phycore-rdk-u-boot.dtsi │ │ ├── rk3288-popmetal-u-boot.dtsi │ │ ├── rk3288-popmetal.dts │ │ ├── rk3288-popmetal.dtsi │ │ ├── rk3288-rock-pi-n8-u-boot.dtsi │ │ ├── rk3288-rock-pi-n8.dts │ │ ├── rk3288-rock2-som.dtsi │ │ ├── rk3288-rock2-square-u-boot.dtsi │ │ ├── rk3288-rock2-square.dts │ │ ├── rk3288-tinker-s-u-boot.dtsi │ │ ├── rk3288-tinker-u-boot.dtsi │ │ ├── rk3288-u-boot.dtsi │ │ ├── rk3288-veyron-chromebook.dtsi │ │ ├── rk3288-veyron-jerry-u-boot.dtsi │ │ ├── rk3288-veyron-jerry.dts │ │ ├── rk3288-veyron-mickey-u-boot.dtsi │ │ ├── rk3288-veyron-mickey.dts │ │ ├── rk3288-veyron-minnie-u-boot.dtsi │ │ ├── rk3288-veyron-minnie.dts │ │ ├── rk3288-veyron-speedy-u-boot.dtsi │ │ ├── rk3288-veyron-speedy.dts │ │ ├── rk3288-veyron-u-boot.dtsi │ │ ├── rk3288-veyron.dtsi │ │ ├── rk3288-vmarc-som.dtsi │ │ ├── rk3288-vyasa-u-boot.dtsi │ │ ├── rk3288-vyasa.dts │ │ ├── rk3308-evb-u-boot.dtsi │ │ ├── rk3308-roc-cc-u-boot.dtsi │ │ ├── rk3308-rock-pi-s-u-boot.dtsi │ │ ├── rk3308-rock-s0-u-boot.dtsi │ │ ├── rk3308-u-boot.dtsi │ │ ├── rk3326-odroid-go2-u-boot.dtsi │ │ ├── rk3328-evb-u-boot.dtsi │ │ ├── rk3328-generic-u-boot.dtsi │ │ ├── rk3328-generic.dts │ │ ├── rk3328-nanopi-r2c-plus-u-boot.dtsi │ │ ├── rk3328-nanopi-r2c-u-boot.dtsi │ │ ├── rk3328-nanopi-r2s-plus-u-boot.dtsi │ │ ├── rk3328-nanopi-r2s-u-boot.dtsi │ │ ├── rk3328-orangepi-r1-plus-lts-u-boot.dtsi │ │ ├── rk3328-orangepi-r1-plus-u-boot.dtsi │ │ ├── rk3328-roc-cc-u-boot.dtsi │ │ ├── rk3328-rock-pi-e-base-u-boot.dtsi │ │ ├── rk3328-rock-pi-e-u-boot.dtsi │ │ ├── rk3328-rock-pi-e-v3-u-boot.dtsi │ │ ├── rk3328-rock-pi-e-v3.dts │ │ ├── rk3328-rock64-u-boot.dtsi │ │ ├── rk3328-sdram-ddr3-666.dtsi │ │ ├── rk3328-sdram-ddr4-666.dtsi │ │ ├── rk3328-sdram-lpddr3-1600.dtsi │ │ ├── rk3328-sdram-lpddr3-666.dtsi │ │ ├── rk3328-u-boot.dtsi │ │ ├── rk3368-geekbox-u-boot.dtsi │ │ ├── rk3368-geekbox.dts │ │ ├── rk3368-px5-evb-u-boot.dtsi │ │ ├── rk3368-px5-evb.dts │ │ ├── rk3368-sheep-u-boot.dtsi │ │ ├── rk3368-sheep.dts │ │ ├── rk3368-u-boot.dtsi │ │ ├── rk3368.dtsi │ │ ├── rk3399-eaidk-610-u-boot.dtsi │ │ ├── rk3399-evb-u-boot.dtsi │ │ ├── rk3399-ficus-u-boot.dtsi │ │ ├── rk3399-firefly-u-boot.dtsi │ │ ├── rk3399-generic-u-boot.dtsi │ │ ├── rk3399-generic.dts │ │ ├── rk3399-gru-bob-u-boot.dtsi │ │ ├── rk3399-gru-kevin-u-boot.dtsi │ │ ├── rk3399-gru-u-boot.dtsi │ │ ├── rk3399-khadas-edge-captain-u-boot.dtsi │ │ ├── rk3399-khadas-edge-u-boot.dtsi │ │ ├── rk3399-khadas-edge-v-u-boot.dtsi │ │ ├── rk3399-leez-p710-u-boot.dtsi │ │ ├── rk3399-nanopc-t4-u-boot.dtsi │ │ ├── rk3399-nanopi-m4-2gb-u-boot.dtsi │ │ ├── rk3399-nanopi-m4-2gb.dts │ │ ├── rk3399-nanopi-m4-u-boot.dtsi │ │ ├── rk3399-nanopi-m4b-u-boot.dtsi │ │ ├── rk3399-nanopi-neo4-u-boot.dtsi │ │ ├── rk3399-nanopi-r4s-u-boot.dtsi │ │ ├── rk3399-nanopi4-u-boot.dtsi │ │ ├── rk3399-orangepi-u-boot.dtsi │ │ ├── rk3399-pinebook-pro-u-boot.dtsi │ │ ├── rk3399-pinephone-pro-u-boot.dtsi │ │ ├── rk3399-puma-haikou-u-boot.dtsi │ │ ├── rk3399-roc-pc-mezzanine-u-boot.dtsi │ │ ├── rk3399-roc-pc-u-boot.dtsi │ │ ├── rk3399-rock-4c-plus-u-boot.dtsi │ │ ├── rk3399-rock-4se-u-boot.dtsi │ │ ├── rk3399-rock-pi-4-u-boot.dtsi │ │ ├── rk3399-rock-pi-4a-u-boot.dtsi │ │ ├── rk3399-rock-pi-4c-u-boot.dtsi │ │ ├── rk3399-rock960-u-boot.dtsi │ │ ├── rk3399-rockpro64-u-boot.dtsi │ │ ├── rk3399-sdram-ddr3-1333.dtsi │ │ ├── rk3399-sdram-ddr3-1600.dtsi │ │ ├── rk3399-sdram-ddr3-1866.dtsi │ │ ├── rk3399-sdram-lpddr3-2GB-1600.dtsi │ │ ├── rk3399-sdram-lpddr3-4GB-1600.dtsi │ │ ├── rk3399-sdram-lpddr3-samsung-4GB-1866.dtsi │ │ ├── rk3399-sdram-lpddr4-100.dtsi │ │ ├── rk3399-u-boot.dtsi │ │ ├── rk3399pro-rock-pi-n10-u-boot.dtsi │ │ ├── rk3399pro-u-boot.dtsi │ │ ├── rk3528-generic-u-boot.dtsi │ │ ├── rk3528-generic.dts │ │ ├── rk3528-radxa-e20c-u-boot.dtsi │ │ ├── rk3528-u-boot.dtsi │ │ ├── rk3566-anbernic-rg353p-u-boot.dtsi │ │ ├── rk3566-lckfb-tspi-u-boot.dtsi │ │ ├── rk3566-nanopi-r3s-u-boot.dtsi │ │ ├── rk3566-odroid-m1s-u-boot.dtsi │ │ ├── rk3566-orangepi-3b-u-boot.dtsi │ │ ├── rk3566-orangepi-3b-v1.1-u-boot.dtsi │ │ ├── rk3566-orangepi-3b-v1.1.dts │ │ ├── rk3566-orangepi-3b-v2.1-u-boot.dtsi │ │ ├── rk3566-orangepi-3b-v2.1.dts │ │ ├── rk3566-orangepi-3b.dts │ │ ├── rk3566-pinetab2-u-boot.dtsi │ │ ├── rk3566-pinetab2-v0.1-u-boot.dtsi │ │ ├── rk3566-pinetab2-v2.0-u-boot.dtsi │ │ ├── rk3566-powkiddy-x55-u-boot.dtsi │ │ ├── rk3566-quartz64-a-u-boot.dtsi │ │ ├── rk3566-quartz64-b-u-boot.dtsi │ │ ├── rk3566-radxa-cm3-io-u-boot.dtsi │ │ ├── rk3566-radxa-zero-3e-u-boot.dtsi │ │ ├── rk3566-radxa-zero-3w-u-boot.dtsi │ │ ├── rk3566-rock-3c-u-boot.dtsi │ │ ├── rk3566-soquartz-blade-u-boot.dtsi │ │ ├── rk3566-soquartz-cm4-u-boot.dtsi │ │ ├── rk3566-soquartz-model-a-u-boot.dtsi │ │ ├── rk3566-soquartz-u-boot.dtsi │ │ ├── rk3568-bpi-r2-pro-u-boot.dtsi │ │ ├── rk3568-evb1-v10-u-boot.dtsi │ │ ├── rk3568-generic-u-boot.dtsi │ │ ├── rk3568-generic.dts │ │ ├── rk3568-lubancat-2-u-boot.dtsi │ │ ├── rk3568-nanopi-r5c-u-boot.dtsi │ │ ├── rk3568-nanopi-r5s-u-boot.dtsi │ │ ├── rk3568-odroid-m1-u-boot.dtsi │ │ ├── rk3568-qnap-ts433-u-boot.dtsi │ │ ├── rk3568-radxa-e25-u-boot.dtsi │ │ ├── rk3568-rock-3a-u-boot.dtsi │ │ ├── rk3568-rock-3b-u-boot.dtsi │ │ ├── rk3568-u-boot.dtsi │ │ ├── rk356x-u-boot.dtsi │ │ ├── rk3576-roc-pc-u-boot.dtsi │ │ ├── rk3576-u-boot.dtsi │ │ ├── rk3588-armsom-sige7-u-boot.dtsi │ │ ├── rk3588-coolpi-cm5-evb-u-boot.dtsi │ │ ├── rk3588-coolpi-cm5-genbook-u-boot.dtsi │ │ ├── rk3588-edgeble-neu6a-io-u-boot.dtsi │ │ ├── rk3588-edgeble-neu6b-io-u-boot.dtsi │ │ ├── rk3588-evb1-v10-u-boot.dtsi │ │ ├── rk3588-friendlyelec-cm3588-nas-u-boot.dtsi │ │ ├── rk3588-generic-u-boot.dtsi │ │ ├── rk3588-generic.dts │ │ ├── rk3588-jaguar-u-boot.dtsi │ │ ├── rk3588-nanopc-t6-lts-u-boot.dtsi │ │ ├── rk3588-nanopc-t6-u-boot.dtsi │ │ ├── rk3588-orangepi-5-max-u-boot.dtsi │ │ ├── rk3588-orangepi-5-plus-u-boot.dtsi │ │ ├── rk3588-quartzpro64-u-boot.dtsi │ │ ├── rk3588-rock-5-itx-u-boot.dtsi │ │ ├── rk3588-rock-5b-u-boot.dtsi │ │ ├── rk3588-tiger-haikou-u-boot.dtsi │ │ ├── rk3588-toybrick-x0-u-boot.dtsi │ │ ├── rk3588-turing-rk1-u-boot.dtsi │ │ ├── rk3588-u-boot.dtsi │ │ ├── rk3588j-u-boot.dtsi │ │ ├── rk3588s-coolpi-4b-u-boot.dtsi │ │ ├── rk3588s-nanopi-r6c-u-boot.dtsi │ │ ├── rk3588s-nanopi-r6s-u-boot.dtsi │ │ ├── rk3588s-odroid-m2-u-boot.dtsi │ │ ├── rk3588s-orangepi-5-u-boot.dtsi │ │ ├── rk3588s-rock-5a-u-boot.dtsi │ │ ├── rk3588s-rock-5c-u-boot.dtsi │ │ ├── rk3588s-u-boot.dtsi │ │ ├── rk3xxx-u-boot.dtsi │ │ ├── rockchip-radxa-dalang-carrier.dtsi │ │ ├── rockchip-u-boot.dtsi │ │ ├── rtsm_ve-motherboard-rs2.dtsi │ │ ├── rtsm_ve-motherboard.dtsi │ │ ├── rv1108-u-boot.dtsi │ │ ├── rv1126-edgeble-neu2-io-u-boot.dtsi │ │ ├── rv1126-sonoff-ihost-u-boot.dtsi │ │ ├── rv1126-u-boot.dtsi │ │ ├── rz-g2-beacon-u-boot.dtsi │ │ ├── s5p4418-nanopi2.dts │ │ ├── s5p4418-pinctrl.dtsi │ │ ├── s5p4418.dtsi │ │ ├── s5pc100-pinctrl.dtsi │ │ ├── s5pc110-pinctrl.dtsi │ │ ├── s5pc1xx-goni.dts │ │ ├── s5pc1xx-smdkc100.dts │ │ ├── s700-cubieboard7.dts │ │ ├── s700-u-boot.dtsi │ │ ├── s700.dtsi │ │ ├── s900-u-boot.dtsi │ │ ├── s900.dtsi │ │ ├── sam9x60.dtsi │ │ ├── sam9x60ek-u-boot.dtsi │ │ ├── sam9x60ek.dts │ │ ├── sama5d2.dtsi │ │ ├── sama5d27_som1.dtsi │ │ ├── sama5d27_wlsom1.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 │ │ ├── sama5d4.dtsi │ │ ├── sama7g5.dtsi │ │ ├── sc573-ezkit.dts │ │ ├── sc57x.dtsi │ │ ├── sc584-ezkit.dts │ │ ├── sc589-ezkit.dts │ │ ├── sc589-mini.dts │ │ ├── sc58x.dtsi │ │ ├── sc594-som-ezkit.dts │ │ ├── sc594-som-ezlite.dts │ │ ├── sc594-som.dtsi │ │ ├── sc598-som-ezkit.dts │ │ ├── sc598-som-ezlite.dts │ │ ├── sc598-som.dtsi │ │ ├── sc5xx.dtsi │ │ ├── sdm845-db845c-u-boot.dtsi │ │ ├── sdm845-samsung-starqltechn-u-boot.dtsi │ │ ├── skeleton.dtsi │ │ ├── skeleton64.dtsi │ │ ├── smbios_generic.dtsi │ │ ├── socfpga-common-u-boot.dtsi │ │ ├── socfpga.dtsi │ │ ├── socfpga_agilex-u-boot.dtsi │ │ ├── socfpga_agilex.dtsi │ │ ├── socfpga_agilex5-u-boot.dtsi │ │ ├── socfpga_agilex5.dtsi │ │ ├── socfpga_agilex5_socdk-u-boot.dtsi │ │ ├── socfpga_agilex5_socdk.dts │ │ ├── socfpga_agilex_socdk-u-boot.dtsi │ │ ├── socfpga_agilex_socdk.dts │ │ ├── socfpga_arria10-handoff.dtsi │ │ ├── socfpga_arria10-u-boot.dtsi │ │ ├── socfpga_arria10.dtsi │ │ ├── socfpga_arria10_chameleonv3.dtsi │ │ ├── socfpga_arria10_chameleonv3_270_2-u-boot.dtsi │ │ ├── socfpga_arria10_chameleonv3_270_2.dts │ │ ├── socfpga_arria10_chameleonv3_270_3-u-boot.dtsi │ │ ├── socfpga_arria10_chameleonv3_270_3.dts │ │ ├── socfpga_arria10_chameleonv3_270_3_handoff.h │ │ ├── socfpga_arria10_chameleonv3_480_2-u-boot.dtsi │ │ ├── socfpga_arria10_chameleonv3_480_2.dts │ │ ├── socfpga_arria10_chameleonv3_480_2_handoff.h │ │ ├── socfpga_arria10_handoff_u-boot.dtsi │ │ ├── socfpga_arria10_mercury_aa1-u-boot.dtsi │ │ ├── socfpga_arria10_mercury_aa1.dtsi │ │ ├── socfpga_arria10_socdk-u-boot.dtsi │ │ ├── socfpga_arria10_socdk.dtsi │ │ ├── socfpga_arria10_socdk_sdmmc-u-boot.dtsi │ │ ├── socfpga_arria10_socdk_sdmmc.dts │ │ ├── socfpga_arria10_socdk_sdmmc_handoff.h │ │ ├── socfpga_arria5.dtsi │ │ ├── socfpga_arria5_secu1.dts │ │ ├── socfpga_arria5_socdk-u-boot.dtsi │ │ ├── socfpga_arria5_socdk.dts │ │ ├── socfpga_cyclone5.dtsi │ │ ├── socfpga_cyclone5_dbm_soc1.dts │ │ ├── socfpga_cyclone5_de0_nano_soc-u-boot.dtsi │ │ ├── socfpga_cyclone5_de0_nano_soc.dts │ │ ├── socfpga_cyclone5_de10_nano.dts │ │ ├── socfpga_cyclone5_de10_standard.dts │ │ ├── socfpga_cyclone5_de1_soc.dts │ │ ├── socfpga_cyclone5_is1.dts │ │ ├── socfpga_cyclone5_mcv.dtsi │ │ ├── socfpga_cyclone5_mcvevk-u-boot.dtsi │ │ ├── socfpga_cyclone5_mcvevk.dts │ │ ├── socfpga_cyclone5_socdk-u-boot.dtsi │ │ ├── socfpga_cyclone5_socdk.dts │ │ ├── socfpga_cyclone5_sockit-u-boot.dtsi │ │ ├── socfpga_cyclone5_sockit.dts │ │ ├── socfpga_cyclone5_socrates-u-boot.dtsi │ │ ├── socfpga_cyclone5_socrates.dts │ │ ├── socfpga_cyclone5_sr1500.dts │ │ ├── socfpga_cyclone5_vining_fpga-u-boot.dtsi │ │ ├── socfpga_cyclone5_vining_fpga.dts │ │ ├── socfpga_n5x-u-boot.dtsi │ │ ├── socfpga_n5x_socdk-u-boot.dtsi │ │ ├── socfpga_n5x_socdk.dts │ │ ├── socfpga_soc64_fit-u-boot.dtsi │ │ ├── socfpga_stratix10-u-boot.dtsi │ │ ├── socfpga_stratix10.dtsi │ │ ├── socfpga_stratix10_socdk-u-boot.dtsi │ │ ├── socfpga_stratix10_socdk.dts │ │ ├── ste-ab8500.dtsi │ │ ├── ste-ab8505.dtsi │ │ ├── ste-dbx5x0-u-boot.dtsi │ │ ├── ste-dbx5x0.dtsi │ │ ├── ste-ux500-samsung-stemmy.dts │ │ ├── stih410-b2260-u-boot.dtsi │ │ ├── stm32429i-eval-u-boot.dtsi │ │ ├── stm32746g-eval-u-boot.dtsi │ │ ├── stm32f429-disco-u-boot.dtsi │ │ ├── stm32f469-disco-u-boot.dtsi │ │ ├── stm32f7-u-boot.dtsi │ │ ├── stm32f746-disco-u-boot.dtsi │ │ ├── stm32f769-disco-mb1166-reva09-u-boot.dtsi │ │ ├── stm32f769-disco-u-boot.dtsi │ │ ├── stm32h7-u-boot.dtsi │ │ ├── stm32h743i-disco-u-boot.dtsi │ │ ├── stm32h743i-eval-u-boot.dtsi │ │ ├── stm32h747i-disco-u-boot.dtsi │ │ ├── stm32h750i-art-pi-u-boot.dtsi │ │ ├── stm32mp13-u-boot.dtsi │ │ ├── stm32mp135f-dhcor-dhsbc-u-boot.dtsi │ │ ├── stm32mp135f-dk-u-boot.dtsi │ │ ├── stm32mp13xx-dhcor-u-boot.dtsi │ │ ├── stm32mp15-ddr.dtsi │ │ ├── stm32mp15-ddr3-1x4Gb-1066-binG.dtsi │ │ ├── stm32mp15-ddr3-2x4Gb-1066-binG.dtsi │ │ ├── stm32mp15-ddr3-dhsom-2x1Gb-1066-binG.dtsi │ │ ├── stm32mp15-ddr3-dhsom-2x2Gb-1066-binG.dtsi │ │ ├── stm32mp15-ddr3-dhsom-2x4Gb-1066-binG.dtsi │ │ ├── stm32mp15-ddr3-icore-1x4Gb-1066-binG.dtsi │ │ ├── stm32mp15-scmi-u-boot.dtsi │ │ ├── stm32mp15-u-boot.dtsi │ │ ├── stm32mp151a-dhcor-testbench-u-boot.dtsi │ │ ├── stm32mp153c-dhcom-drc02-u-boot.dtsi │ │ ├── stm32mp153c-dhcor-drc-compact-u-boot.dtsi │ │ ├── stm32mp157a-dhcor-avenger96-u-boot.dtsi │ │ ├── stm32mp157a-dk1-scmi-u-boot.dtsi │ │ ├── stm32mp157a-dk1-u-boot.dtsi │ │ ├── stm32mp157a-icore-stm32mp1-ctouch2-u-boot.dtsi │ │ ├── stm32mp157a-icore-stm32mp1-edimm2.2-u-boot.dtsi │ │ ├── stm32mp157a-icore-stm32mp1-edimm2.2.dts │ │ ├── stm32mp157a-icore-stm32mp1-u-boot.dtsi │ │ ├── stm32mp157a-icore-stm32mp1.dtsi │ │ ├── stm32mp157a-microgea-stm32mp1-microdev2.0-of7-u-boot.dtsi │ │ ├── stm32mp157a-microgea-stm32mp1-microdev2.0-u-boot.dtsi │ │ ├── stm32mp157a-microgea-stm32mp1-u-boot.dtsi │ │ ├── stm32mp157c-dhcom-pdk2-u-boot.dtsi │ │ ├── stm32mp157c-dhcom-picoitx-u-boot.dtsi │ │ ├── stm32mp157c-dk2-scmi-u-boot.dtsi │ │ ├── stm32mp157c-dk2-u-boot.dtsi │ │ ├── stm32mp157c-ed1-scmi-u-boot.dtsi │ │ ├── stm32mp157c-ed1-u-boot.dtsi │ │ ├── stm32mp157c-ev1-scmi-u-boot.dtsi │ │ ├── stm32mp157c-ev1-u-boot.dtsi │ │ ├── stm32mp157c-odyssey-som-u-boot.dtsi │ │ ├── stm32mp157c-odyssey-som.dtsi │ │ ├── stm32mp157c-odyssey-u-boot.dtsi │ │ ├── stm32mp157c-odyssey.dts │ │ ├── stm32mp15xx-dhcom-u-boot.dtsi │ │ ├── stm32mp15xx-dhcor-u-boot.dtsi │ │ ├── stm32mp15xx-dhsom-u-boot.dtsi │ │ ├── stm32mp25-u-boot.dtsi │ │ ├── stm32mp257f-ev1-u-boot.dtsi │ │ ├── sun4i-a10-inet-3f.dts │ │ ├── sun4i-a10-inet-3w.dts │ │ ├── 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-u-boot.dtsi │ │ ├── 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-h64-remix-mini-pc.dts │ │ ├── sun5i-a13-ampe-a76.dts │ │ ├── sun5i-a13-inet-86vs.dts │ │ ├── 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-mixtile-loftq.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-ainol-aw1.dts │ │ ├── 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-m5.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-primo73.dts │ │ ├── sun7i-a20-wexler-tab7200.dts │ │ ├── sun7i-a20-wits-pro-a20-dkt-u-boot.dtsi │ │ ├── sun7i-a20-wits-pro-a20-dkt.dts │ │ ├── sun7i-a20-yones-toptech-bd1078.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-cx-a99.dts │ │ ├── sun9i-a80-optimus.dts │ │ ├── sun9i-a80.dtsi │ │ ├── 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 │ │ ├── sunxi-u-boot.dtsi │ │ ├── synquacer-sc2a11-caches.dtsi │ │ ├── synquacer-sc2a11-developerbox-u-boot.dtsi │ │ ├── synquacer-sc2a11-developerbox.dts │ │ ├── synquacer-sc2a11.dtsi │ │ ├── t8103-j274-u-boot.dtsi │ │ ├── t8103-j274.dts │ │ ├── t8103-j293-u-boot.dtsi │ │ ├── t8103-j293.dts │ │ ├── t8103-j313-u-boot.dtsi │ │ ├── t8103-j313.dts │ │ ├── t8103-j456-u-boot.dtsi │ │ ├── t8103-j456.dts │ │ ├── t8103-j457-u-boot.dtsi │ │ ├── t8103-j457.dts │ │ ├── t8103-jxxx.dtsi │ │ ├── t8103-pmgr.dtsi │ │ ├── t8103-u-boot.dtsi │ │ ├── t8103.dtsi │ │ ├── tegra-u-boot.dtsi │ │ ├── tegra114-asus-tf701t.dts │ │ ├── tegra114-dalmore.dts │ │ ├── tegra114-nvidia-tegratab.dts │ │ ├── tegra114-u-boot.dtsi │ │ ├── tegra114.dtsi │ │ ├── tegra124-apalis-u-boot.dtsi │ │ ├── tegra124-apalis.dts │ │ ├── tegra124-cei-tk1-som.dts │ │ ├── tegra124-jetson-tk1.dts │ │ ├── tegra124-nyan-big-u-boot.dtsi │ │ ├── tegra124-nyan-big.dts │ │ ├── tegra124-nyan.dtsi │ │ ├── tegra124-u-boot.dtsi │ │ ├── tegra124-venice2.dts │ │ ├── tegra124-xiaomi-mocha.dts │ │ ├── tegra124.dtsi │ │ ├── tegra186-p2771-0000-000.dts │ │ ├── tegra186-p2771-0000-500.dts │ │ ├── tegra186-p2771-0000.dtsi │ │ ├── tegra186-u-boot.dtsi │ │ ├── tegra186.dtsi │ │ ├── tegra20-acer-a500-picasso.dts │ │ ├── tegra20-asus-sl101.dts │ │ ├── tegra20-asus-tf101.dts │ │ ├── tegra20-asus-tf101g.dts │ │ ├── tegra20-asus-transformer.dtsi │ │ ├── tegra20-colibri-u-boot.dtsi │ │ ├── tegra20-colibri.dts │ │ ├── tegra20-harmony.dts │ │ ├── tegra20-lg-star.dts │ │ ├── tegra20-medcom-wide.dts │ │ ├── tegra20-motorola-daytona.dts │ │ ├── tegra20-motorola-mot.dtsi │ │ ├── tegra20-motorola-olympus.dts │ │ ├── tegra20-paz00.dts │ │ ├── tegra20-plutux.dts │ │ ├── tegra20-seaboard.dts │ │ ├── tegra20-tamonten.dtsi │ │ ├── tegra20-tec.dts │ │ ├── tegra20-trimslice.dts │ │ ├── tegra20-u-boot.dtsi │ │ ├── tegra20-ventana.dts │ │ ├── tegra20.dtsi │ │ ├── tegra210-p2371-0000.dts │ │ ├── tegra210-p2371-2180.dts │ │ ├── tegra210-p2571.dts │ │ ├── tegra210-p3450-0000.dts │ │ ├── tegra210-u-boot.dtsi │ │ ├── tegra210.dtsi │ │ ├── tegra30-apalis-u-boot.dtsi │ │ ├── tegra30-apalis.dts │ │ ├── tegra30-asus-grouper-common.dtsi │ │ ├── tegra30-asus-nexus7-grouper-E1565.dts │ │ ├── tegra30-asus-nexus7-grouper-PM269.dts │ │ ├── tegra30-asus-nexus7-tilapia-E1565.dts │ │ ├── tegra30-asus-p1801-t.dts │ │ ├── tegra30-asus-tf201.dts │ │ ├── tegra30-asus-tf300t.dts │ │ ├── tegra30-asus-tf300tg.dts │ │ ├── tegra30-asus-tf300tl.dts │ │ ├── tegra30-asus-tf600t.dts │ │ ├── tegra30-asus-tf700t.dts │ │ ├── tegra30-asus-transformer.dtsi │ │ ├── tegra30-beaver.dts │ │ ├── tegra30-cardhu.dts │ │ ├── tegra30-colibri-u-boot.dtsi │ │ ├── tegra30-colibri.dts │ │ ├── tegra30-htc-endeavoru.dts │ │ ├── tegra30-lenovo-ideapad-yoga-11.dts │ │ ├── tegra30-lg-p880.dts │ │ ├── tegra30-lg-p895.dts │ │ ├── tegra30-lg-x3.dtsi │ │ ├── tegra30-microsoft-surface-rt.dts │ │ ├── tegra30-ouya.dts │ │ ├── tegra30-tamonten.dtsi │ │ ├── tegra30-tec-ng.dts │ │ ├── tegra30-u-boot.dtsi │ │ ├── tegra30-wexler-qc750.dts │ │ ├── tegra30.dtsi │ │ ├── thunderx-88xx.dts │ │ ├── thunderx-88xx.dtsi │ │ ├── total_compute.dts │ │ ├── tps6507x.dtsi │ │ ├── tps65217.dtsi │ │ ├── tps65910.dtsi │ │ ├── twl4030.dtsi │ │ ├── twl4030_omap3.dtsi │ │ ├── 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-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-4kbox.dts │ │ ├── uniphier-pro5.dtsi │ │ ├── uniphier-pxs2-gentil.dts │ │ ├── uniphier-pxs2-vodka.dts │ │ ├── uniphier-pxs2.dtsi │ │ ├── uniphier-pxs3-ref.dts │ │ ├── uniphier-pxs3.dtsi │ │ ├── uniphier-ref-daughter.dtsi │ │ ├── uniphier-sld8-ref.dts │ │ ├── uniphier-sld8.dtsi │ │ ├── uniphier-support-card.dtsi │ │ ├── uniphier-v7-u-boot.dtsi │ │ ├── usb_a9263.dts │ │ ├── versal-mini-emmc0.dts │ │ ├── versal-mini-emmc1.dts │ │ ├── versal-mini-ospi-single.dts │ │ ├── versal-mini-ospi-stacked.dts │ │ ├── versal-mini-ospi.dtsi │ │ ├── versal-mini-qspi-parallel.dts │ │ ├── versal-mini-qspi-single.dts │ │ ├── versal-mini-qspi-stacked.dts │ │ ├── versal-mini-qspi-x1-single.dts │ │ ├── versal-mini-qspi-x1-stacked.dts │ │ ├── versal-mini-qspi-x2-single.dts │ │ ├── versal-mini-qspi-x2-stacked.dts │ │ ├── versal-mini-qspi.dtsi │ │ ├── versal-mini.dts │ │ ├── versal-net-mini-emmc.dts │ │ ├── versal-net-mini-ospi-single.dts │ │ ├── versal-net-mini-ospi-stacked.dts │ │ ├── versal-net-mini-ospi.dtsi │ │ ├── versal-net-mini-qspi-parallel.dts │ │ ├── versal-net-mini-qspi-single.dts │ │ ├── versal-net-mini-qspi-stacked.dts │ │ ├── versal-net-mini-qspi-x1-single.dts │ │ ├── versal-net-mini-qspi-x1-stacked.dts │ │ ├── versal-net-mini-qspi-x2-single.dts │ │ ├── versal-net-mini-qspi-x2-stacked.dts │ │ ├── versal-net-mini-qspi.dtsi │ │ ├── versal-net-mini.dts │ │ ├── vexpress-v2m.dtsi │ │ ├── vexpress-v2p-ca9.dts │ │ ├── vf-colibri-eval-v3.dtsi │ │ ├── vf-colibri.dtsi │ │ ├── vf500.dtsi │ │ ├── vf610-bk4r1-u-boot.dtsi │ │ ├── vf610-bk4r1.dts │ │ ├── vf610-colibri-eval-v3-u-boot.dtsi │ │ ├── vf610-colibri-eval-v3.dts │ │ ├── vf610-colibri.dtsi │ │ ├── vf610-pcm052.dts │ │ ├── vf610-pcm052.dtsi │ │ ├── vf610-twr.dts │ │ ├── vf610.dtsi │ │ ├── vfxxx.dtsi │ │ ├── xenguest-arm64.dts │ │ ├── xilinx-versal-net-virt.dts │ │ ├── xilinx-versal-virt.dts │ │ ├── zynq-7000.dtsi │ │ ├── zynq-binman-brcp1.dtsi │ │ ├── zynq-brcp1.dtsi │ │ ├── zynq-brcp150-u-boot.dtsi │ │ ├── zynq-brcp150.dts │ │ ├── zynq-brcp170-u-boot.dtsi │ │ ├── zynq-brcp170.dts │ │ ├── zynq-brcp1_1r-u-boot.dtsi │ │ ├── zynq-brcp1_1r.dts │ │ ├── zynq-brcp1_1r_switch-u-boot.dtsi │ │ ├── zynq-brcp1_1r_switch.dts │ │ ├── zynq-brcp1_2r-u-boot.dtsi │ │ ├── zynq-brcp1_2r.dts │ │ ├── zynq-brsmarc2-u-boot.dtsi │ │ ├── zynq-brsmarc2.dts │ │ ├── zynq-cc108.dts │ │ ├── zynq-cse-nand.dts │ │ ├── zynq-cse-nor.dts │ │ ├── zynq-cse-qspi-parallel.dts │ │ ├── zynq-cse-qspi-single.dts │ │ ├── zynq-cse-qspi-stacked.dts │ │ ├── zynq-cse-qspi-x1-single.dts │ │ ├── zynq-cse-qspi-x1-stacked.dts │ │ ├── zynq-cse-qspi-x2-single.dts │ │ ├── zynq-cse-qspi-x2-stacked.dts │ │ ├── zynq-cse-qspi.dtsi │ │ ├── zynq-dlc20-rev1.0.dts │ │ ├── zynq-microzed.dts │ │ ├── zynq-minized.dts │ │ ├── zynq-picozed.dts │ │ ├── zynq-syzygy-hub.dts │ │ ├── zynq-topic-miami.dts │ │ ├── zynq-topic-miamilite.dts │ │ ├── zynq-topic-miamiplus.dts │ │ ├── zynq-zc702.dts │ │ ├── zynq-zc706.dts │ │ ├── zynq-zc770-xm010.dts │ │ ├── zynq-zc770-xm011-x16.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 │ │ ├── zynqmp-a2197-revA.dts │ │ ├── zynqmp-binman-mini.dts │ │ ├── zynqmp-binman-som.dts │ │ ├── zynqmp-binman.dts │ │ ├── zynqmp-clk-ccf.dtsi │ │ ├── zynqmp-dlc21-revA.dts │ │ ├── zynqmp-e-a2197-00-revA.dts │ │ ├── zynqmp-e-a2197-00-revB.dts │ │ ├── zynqmp-g-a2197-00-revA.dts │ │ ├── zynqmp-m-a2197-01-revA.dts │ │ ├── zynqmp-m-a2197-02-revA.dts │ │ ├── zynqmp-m-a2197-03-revA.dts │ │ ├── zynqmp-mini-emmc0.dts │ │ ├── zynqmp-mini-emmc1.dts │ │ ├── zynqmp-mini-nand.dts │ │ ├── zynqmp-mini-qspi-parallel.dts │ │ ├── zynqmp-mini-qspi-single.dts │ │ ├── zynqmp-mini-qspi-stacked.dts │ │ ├── zynqmp-mini-qspi-x1-single.dts │ │ ├── zynqmp-mini-qspi-x1-stacked.dts │ │ ├── zynqmp-mini-qspi-x2-single.dts │ │ ├── zynqmp-mini-qspi-x2-stacked.dts │ │ ├── zynqmp-mini-qspi.dts │ │ ├── zynqmp-mini.dts │ │ ├── zynqmp-p-a2197-00-revA-x-prc-01-revA.dtso │ │ ├── zynqmp-p-a2197-00-revA-x-prc-02-revA.dtso │ │ ├── zynqmp-p-a2197-00-revA-x-prc-03-revA.dtso │ │ ├── zynqmp-p-a2197-00-revA-x-prc-04-revA.dtso │ │ ├── zynqmp-p-a2197-00-revA-x-prc-05-revA.dtso │ │ ├── zynqmp-p-a2197-00-revA.dts │ │ ├── zynqmp-r5.dts │ │ ├── zynqmp-sc-revB.dts │ │ ├── zynqmp-sc-revC.dts │ │ ├── zynqmp-sc-vek280-revA.dtso │ │ ├── zynqmp-sc-vek280-revB.dtso │ │ ├── zynqmp-sc-vhk158-revA.dtso │ │ ├── zynqmp-sc-vm-p-m1369-00-revA.dtso │ │ ├── zynqmp-sc-vn-p-b2197-00-revA.dtso │ │ ├── zynqmp-sc-vpk120-revB.dtso │ │ ├── zynqmp-sc-vpk180-revA.dtso │ │ ├── zynqmp-sc-vpk180-revB.dtso │ │ ├── zynqmp-sck-kd-g-revA.dtso │ │ ├── zynqmp-sck-kr-g-revA.dtso │ │ ├── zynqmp-sck-kr-g-revB.dtso │ │ ├── zynqmp-sck-kv-g-revA.dtso │ │ ├── zynqmp-sck-kv-g-revB.dtso │ │ ├── zynqmp-sm-k24-revA.dts │ │ ├── zynqmp-sm-k26-revA.dts │ │ ├── zynqmp-smk-k24-revA.dts │ │ ├── zynqmp-smk-k26-revA.dts │ │ ├── zynqmp-topic-miamimp-xilinx-xdp-v1r1.dts │ │ ├── zynqmp-u-boot.dtsi │ │ ├── zynqmp-vp-x-a2785-00-revA.dts │ │ ├── zynqmp-vpk120-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-rev1.0.dts │ │ ├── zynqmp-zcu106-revA.dts │ │ ├── zynqmp-zcu111-revA.dts │ │ ├── zynqmp-zcu1275-revA.dts │ │ ├── zynqmp-zcu1275-revB.dts │ │ ├── zynqmp-zcu1285-revA.dts │ │ ├── zynqmp-zcu208-revA.dts │ │ ├── zynqmp-zcu216-revA.dts │ │ ├── zynqmp-zcu670-revA.dts │ │ ├── zynqmp-zcu670-revB.dts │ │ └── zynqmp.dtsi │ ├── include │ │ ├── asm │ │ │ ├── acpi_table.h │ │ │ ├── arch-adi │ │ │ │ └── sc5xx │ │ │ │ │ ├── sc5xx.h │ │ │ │ │ ├── soc.h │ │ │ │ │ └── spl.h │ │ │ ├── arch-am33xx │ │ │ │ ├── chilisom.h │ │ │ │ ├── clk_synthesizer.h │ │ │ │ ├── clock.h │ │ │ │ ├── clocks_am33xx.h │ │ │ │ ├── cpu.h │ │ │ │ ├── ddr_defs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hardware_am33xx.h │ │ │ │ ├── hardware_am43xx.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem-guardian.h │ │ │ │ ├── mem.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mux.h │ │ │ │ ├── mux_am33xx.h │ │ │ │ ├── mux_am43xx.h │ │ │ │ ├── omap.h │ │ │ │ ├── spl.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-apple │ │ │ │ ├── rtkit.h │ │ │ │ ├── sart.h │ │ │ │ └── uart.h │ │ │ ├── arch-armada8k │ │ │ │ ├── cache_llc.h │ │ │ │ └── soc-info.h │ │ │ ├── arch-armv7 │ │ │ │ ├── generictimer.h │ │ │ │ ├── globaltimer.h │ │ │ │ ├── sysctrl.h │ │ │ │ ├── systimer.h │ │ │ │ └── wdt.h │ │ │ ├── arch-aspeed │ │ │ │ ├── boot0.h │ │ │ │ ├── pinctrl.h │ │ │ │ ├── platform.h │ │ │ │ ├── scu_ast2500.h │ │ │ │ ├── scu_ast2600.h │ │ │ │ ├── sdram_ast2500.h │ │ │ │ ├── sdram_ast2600.h │ │ │ │ ├── timer.h │ │ │ │ ├── wdt.h │ │ │ │ └── wdt_ast2600.h │ │ │ ├── arch-bcm235xx │ │ │ │ ├── boot0.h │ │ │ │ ├── gpio.h │ │ │ │ └── sysmap.h │ │ │ ├── arch-bcm281xx │ │ │ │ ├── boot0.h │ │ │ │ ├── gpio.h │ │ │ │ └── sysmap.h │ │ │ ├── arch-bcmns3 │ │ │ │ └── bl33_info.h │ │ │ ├── arch-fsl-layerscape │ │ │ │ ├── clock.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── fdt.h │ │ │ │ ├── fsl_icid.h │ │ │ │ ├── fsl_portals.h │ │ │ │ ├── fsl_serdes.h │ │ │ │ ├── gpio.h │ │ │ │ ├── immap_lsch2.h │ │ │ │ ├── immap_lsch3.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── mmu.h │ │ │ │ ├── mp.h │ │ │ │ ├── ns_access.h │ │ │ │ ├── soc.h │ │ │ │ ├── speed.h │ │ │ │ ├── stream_id_lsch2.h │ │ │ │ ├── stream_id_lsch3.h │ │ │ │ └── svr.h │ │ │ ├── arch-hi3660 │ │ │ │ └── hi3660.h │ │ │ ├── arch-hi3798cv200 │ │ │ │ └── hi3798cv200.h │ │ │ ├── arch-hi6220 │ │ │ │ ├── dwmmc.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hi6220.h │ │ │ │ ├── hi6220_regs_alwayson.h │ │ │ │ ├── periph.h │ │ │ │ └── pinmux.h │ │ │ ├── arch-imx │ │ │ │ └── cpu.h │ │ │ ├── arch-imx8 │ │ │ │ ├── boot0.h │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── imx8-pins.h │ │ │ │ ├── iomux.h │ │ │ │ ├── power-domain.h │ │ │ │ ├── snvs_security_sc.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-imx8m │ │ │ │ ├── clock.h │ │ │ │ ├── clock_imx8mm.h │ │ │ │ ├── clock_imx8mq.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── ddr.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── imx8mm_pins.h │ │ │ │ ├── imx8mn_pins.h │ │ │ │ ├── imx8mp_pins.h │ │ │ │ ├── imx8mq_pins.h │ │ │ │ ├── lpddr4_define.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-imx8ulp │ │ │ │ ├── cgc.h │ │ │ │ ├── clock.h │ │ │ │ ├── ddr.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── imx8ulp-pins.h │ │ │ │ ├── iomux.h │ │ │ │ ├── pcc.h │ │ │ │ ├── rdc.h │ │ │ │ ├── sys_proto.h │ │ │ │ └── upower.h │ │ │ ├── arch-imx9 │ │ │ │ ├── ccm_regs.h │ │ │ │ ├── clock.h │ │ │ │ ├── ddr.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── imx91_pins.h │ │ │ │ ├── imx93_pins.h │ │ │ │ ├── mu.h │ │ │ │ ├── sys_proto.h │ │ │ │ └── trdc.h │ │ │ ├── arch-imxrt │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-lpc32xx │ │ │ │ ├── clk.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dma.h │ │ │ │ ├── emc.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mux.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart.h │ │ │ │ └── wdt.h │ │ │ ├── arch-ls102xa │ │ │ │ ├── clock.h │ │ │ │ ├── config.h │ │ │ │ ├── fsl_serdes.h │ │ │ │ ├── gpio.h │ │ │ │ ├── immap_ls102xa.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── ls102xa_devdis.h │ │ │ │ ├── ls102xa_soc.h │ │ │ │ ├── ls102xa_stream_id.h │ │ │ │ ├── ns_access.h │ │ │ │ ├── soc.h │ │ │ │ ├── spl.h │ │ │ │ └── svr.h │ │ │ ├── arch-mediatek │ │ │ │ ├── gpio.h │ │ │ │ ├── misc.h │ │ │ │ └── reset.h │ │ │ ├── arch-meson │ │ │ │ ├── a1.h │ │ │ │ ├── axg.h │ │ │ │ ├── boot.h │ │ │ │ ├── clock-a1.h │ │ │ │ ├── clock-axg.h │ │ │ │ ├── clock-g12a.h │ │ │ │ ├── clock-gx.h │ │ │ │ ├── eth.h │ │ │ │ ├── g12a.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gx.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem.h │ │ │ │ ├── meson-vpu.h │ │ │ │ └── sm.h │ │ │ ├── arch-mvebu │ │ │ │ └── spi.h │ │ │ ├── arch-mx27 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── regs-rtc.h │ │ │ ├── arch-mx31 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-mx5 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-mx51.h │ │ │ │ ├── iomux-mx53.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-mx6 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-rdc.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux.h │ │ │ │ ├── litesom.h │ │ │ │ ├── mx6-ddr.h │ │ │ │ ├── mx6-pins.h │ │ │ │ ├── mx6_plugin.S │ │ │ │ ├── mx6dl-ddr.h │ │ │ │ ├── mx6dl_pins.h │ │ │ │ ├── mx6q-ddr.h │ │ │ │ ├── mx6q_pins.h │ │ │ │ ├── mx6sl-ddr.h │ │ │ │ ├── mx6sl_pins.h │ │ │ │ ├── mx6sll_pins.h │ │ │ │ ├── mx6sx-ddr.h │ │ │ │ ├── mx6sx_pins.h │ │ │ │ ├── mx6sx_rdc.h │ │ │ │ ├── mx6ul-ddr.h │ │ │ │ ├── mx6ul_pins.h │ │ │ │ ├── mx6ull_pins.h │ │ │ │ ├── mxc_hdmi.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-mx7 │ │ │ │ ├── clock.h │ │ │ │ ├── clock_slice.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-rdc.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── mx7-ddr.h │ │ │ │ ├── mx7-pins.h │ │ │ │ ├── mx7_plugin.S │ │ │ │ ├── mx7d_pins.h │ │ │ │ ├── mx7d_rdc.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-mx7ulp │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux.h │ │ │ │ ├── mx7ulp-pins.h │ │ │ │ ├── mx7ulp_plugin.S │ │ │ │ ├── pcc.h │ │ │ │ ├── scg.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-mxs │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-mx23.h │ │ │ │ ├── iomux-mx28.h │ │ │ │ ├── iomux.h │ │ │ │ ├── regs-base.h │ │ │ │ ├── regs-clkctrl-mx23.h │ │ │ │ ├── regs-clkctrl-mx28.h │ │ │ │ ├── regs-digctl.h │ │ │ │ ├── regs-i2c.h │ │ │ │ ├── regs-lradc.h │ │ │ │ ├── regs-ocotp.h │ │ │ │ ├── regs-pinctrl.h │ │ │ │ ├── regs-power-mx23.h │ │ │ │ ├── regs-power-mx28.h │ │ │ │ ├── regs-rtc.h │ │ │ │ ├── regs-ssp.h │ │ │ │ ├── regs-timrot.h │ │ │ │ ├── regs-usb.h │ │ │ │ ├── regs-usbphy.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-npcm7xx │ │ │ │ ├── aes.h │ │ │ │ ├── gcr.h │ │ │ │ └── otp.h │ │ │ ├── arch-npcm8xx │ │ │ │ ├── aes.h │ │ │ │ ├── gcr.h │ │ │ │ ├── gmac.h │ │ │ │ ├── otp.h │ │ │ │ ├── rng.h │ │ │ │ ├── rst.h │ │ │ │ └── sha.h │ │ │ ├── arch-octeontx │ │ │ │ ├── board.h │ │ │ │ ├── clock.h │ │ │ │ ├── csrs │ │ │ │ │ ├── csrs-mio_emm.h │ │ │ │ │ └── csrs-xcv.h │ │ │ │ ├── gpio.h │ │ │ │ ├── smc.h │ │ │ │ └── soc.h │ │ │ ├── arch-octeontx2 │ │ │ │ ├── board.h │ │ │ │ ├── clock.h │ │ │ │ ├── csrs │ │ │ │ │ ├── csrs-cgx.h │ │ │ │ │ ├── csrs-lmt.h │ │ │ │ │ ├── csrs-mio_emm.h │ │ │ │ │ ├── csrs-nix.h │ │ │ │ │ ├── csrs-npa.h │ │ │ │ │ ├── csrs-npc.h │ │ │ │ │ └── csrs-rvu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── smc-id.h │ │ │ │ ├── smc.h │ │ │ │ └── soc.h │ │ │ ├── arch-omap3 │ │ │ │ ├── am35x_def.h │ │ │ │ ├── clock.h │ │ │ │ ├── clocks_omap3.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dma.h │ │ │ │ ├── dss.h │ │ │ │ ├── ehci.h │ │ │ │ ├── emac_defs.h │ │ │ │ ├── emif4.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── musb.h │ │ │ │ ├── mux.h │ │ │ │ ├── omap.h │ │ │ │ ├── spl.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-omap5 │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dra7xx_iodelay.h │ │ │ │ ├── ehci.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mux_dra7xx.h │ │ │ │ ├── omap.h │ │ │ │ ├── sata.h │ │ │ │ ├── spl.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-orion5x │ │ │ │ └── spl.h │ │ │ ├── arch-owl │ │ │ │ ├── regs_s700.h │ │ │ │ └── regs_s900.h │ │ │ ├── arch-px30 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-qemu-sbsa │ │ │ │ └── boot0.h │ │ │ ├── arch-rk3036 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3066 │ │ │ │ ├── boot0.h │ │ │ │ ├── gpio.h │ │ │ │ └── timer.h │ │ │ ├── arch-rk3128 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3188 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk322x │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3288 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3308 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3328 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3368 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3399 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3528 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3568 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3576 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3588 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rockchip │ │ │ │ ├── boot0.h │ │ │ │ ├── boot_mode.h │ │ │ │ ├── bootrom.h │ │ │ │ ├── clock.h │ │ │ │ ├── cpu_rk3288.h │ │ │ │ ├── cru.h │ │ │ │ ├── cru_px30.h │ │ │ │ ├── cru_rk3036.h │ │ │ │ ├── cru_rk3066.h │ │ │ │ ├── cru_rk3128.h │ │ │ │ ├── cru_rk3188.h │ │ │ │ ├── cru_rk322x.h │ │ │ │ ├── cru_rk3288.h │ │ │ │ ├── cru_rk3308.h │ │ │ │ ├── cru_rk3328.h │ │ │ │ ├── cru_rk3368.h │ │ │ │ ├── cru_rk3399.h │ │ │ │ ├── cru_rk3528.h │ │ │ │ ├── cru_rk3568.h │ │ │ │ ├── cru_rk3576.h │ │ │ │ ├── cru_rk3588.h │ │ │ │ ├── cru_rv1108.h │ │ │ │ ├── cru_rv1126.h │ │ │ │ ├── ddr_rk3188.h │ │ │ │ ├── ddr_rk3288.h │ │ │ │ ├── ddr_rk3368.h │ │ │ │ ├── dram_spec_timing.h │ │ │ │ ├── edp_rk3288.h │ │ │ │ ├── f_rockusb.h │ │ │ │ ├── gpio.h │ │ │ │ ├── grf_px30.h │ │ │ │ ├── grf_rk3036.h │ │ │ │ ├── grf_rk3066.h │ │ │ │ ├── grf_rk3128.h │ │ │ │ ├── grf_rk3188.h │ │ │ │ ├── grf_rk322x.h │ │ │ │ ├── grf_rk3288.h │ │ │ │ ├── grf_rk3308.h │ │ │ │ ├── grf_rk3328.h │ │ │ │ ├── grf_rk3368.h │ │ │ │ ├── grf_rk3399.h │ │ │ │ ├── grf_rk3568.h │ │ │ │ ├── grf_rk3588.h │ │ │ │ ├── grf_rv1108.h │ │ │ │ ├── grf_rv1126.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c.h │ │ │ │ ├── ioc_rk3588.h │ │ │ │ ├── lvds_rk3288.h │ │ │ │ ├── periph.h │ │ │ │ ├── pmu_rk3188.h │ │ │ │ ├── pmu_rk3288.h │ │ │ │ ├── pmu_rk3399.h │ │ │ │ ├── pwm.h │ │ │ │ ├── qos_rk3288.h │ │ │ │ ├── rockchip_mipi_dsi.h │ │ │ │ ├── sdram.h │ │ │ │ ├── sdram_common.h │ │ │ │ ├── sdram_msch.h │ │ │ │ ├── sdram_pctl_px30.h │ │ │ │ ├── sdram_phy_px30.h │ │ │ │ ├── sdram_phy_ron_rtt_px30.h │ │ │ │ ├── sdram_phy_rv1126.h │ │ │ │ ├── sdram_px30.h │ │ │ │ ├── sdram_rk3036.h │ │ │ │ ├── sdram_rk322x.h │ │ │ │ ├── sdram_rk3288.h │ │ │ │ ├── sdram_rk3328.h │ │ │ │ ├── sdram_rk3399.h │ │ │ │ ├── sdram_rv1126.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart.h │ │ │ │ └── vop_rk3288.h │ │ │ ├── arch-rv1108 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rv1126 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-stih410 │ │ │ │ ├── sdhci.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-stm32 │ │ │ │ └── stm32f.h │ │ │ ├── arch-stm32f4 │ │ │ │ ├── stm32.h │ │ │ │ └── stm32_pwr.h │ │ │ ├── arch-stm32f7 │ │ │ │ ├── stm32.h │ │ │ │ ├── stm32_pwr.h │ │ │ │ └── syscfg.h │ │ │ ├── arch-stm32h7 │ │ │ │ └── stm32.h │ │ │ ├── arch-sunxi │ │ │ │ ├── boot0.h │ │ │ │ ├── clock.h │ │ │ │ ├── clock_sun4i.h │ │ │ │ ├── clock_sun50i_h6.h │ │ │ │ ├── clock_sun6i.h │ │ │ │ ├── clock_sun8i_a83t.h │ │ │ │ ├── clock_sun9i.h │ │ │ │ ├── cpu.h │ │ │ │ ├── cpu_sun4i.h │ │ │ │ ├── cpu_sun50i_h6.h │ │ │ │ ├── cpu_sun9i.h │ │ │ │ ├── cpu_sunxi_ncat2.h │ │ │ │ ├── display.h │ │ │ │ ├── display2.h │ │ │ │ ├── dma.h │ │ │ │ ├── dma_sun4i.h │ │ │ │ ├── dram.h │ │ │ │ ├── dram_dw_helpers.h │ │ │ │ ├── dram_sun4i.h │ │ │ │ ├── dram_sun50i_a133.h │ │ │ │ ├── dram_sun50i_h6.h │ │ │ │ ├── dram_sun50i_h616.h │ │ │ │ ├── dram_sun6i.h │ │ │ │ ├── dram_sun8i_a23.h │ │ │ │ ├── dram_sun8i_a33.h │ │ │ │ ├── dram_sun8i_a83t.h │ │ │ │ ├── dram_sun9i.h │ │ │ │ ├── dram_suniv.h │ │ │ │ ├── dram_sunxi_dw.h │ │ │ │ ├── gtbus.h │ │ │ │ ├── gtbus_sun9i.h │ │ │ │ ├── i2c.h │ │ │ │ ├── lcdc.h │ │ │ │ ├── mmc.h │ │ │ │ ├── p2wi.h │ │ │ │ ├── pmic_bus.h │ │ │ │ ├── prcm.h │ │ │ │ ├── prcm_sun50i.h │ │ │ │ ├── prcm_sun6i.h │ │ │ │ ├── pwm.h │ │ │ │ ├── rsb.h │ │ │ │ ├── serial.h │ │ │ │ ├── spl.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timer.h │ │ │ │ ├── tve.h │ │ │ │ ├── tzpc.h │ │ │ │ └── watchdog.h │ │ │ ├── arch-tegra │ │ │ │ ├── ap.h │ │ │ │ ├── apb_misc.h │ │ │ │ ├── board.h │ │ │ │ ├── bpmp_abi.h │ │ │ │ ├── cboot.h │ │ │ │ ├── clk_rst.h │ │ │ │ ├── clock.h │ │ │ │ ├── crypto.h │ │ │ │ ├── dc.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── fuse.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gpu.h │ │ │ │ ├── ivc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmc.h │ │ │ │ ├── pmu.h │ │ │ │ ├── powergate.h │ │ │ │ ├── pwm.h │ │ │ │ ├── scu.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── tegra.h │ │ │ │ ├── tegra_ahub.h │ │ │ │ ├── tegra_i2c.h │ │ │ │ ├── tegra_i2s.h │ │ │ │ ├── tegra_mmc.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart.h │ │ │ │ ├── usb.h │ │ │ │ ├── warmboot.h │ │ │ │ └── xusb-padctl.h │ │ │ ├── arch-tegra114 │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── powergate.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sysctr.h │ │ │ │ └── tegra.h │ │ │ ├── arch-tegra124 │ │ │ │ ├── ahb.h │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── display.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── powergate.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sysctr.h │ │ │ │ └── tegra.h │ │ │ ├── arch-tegra186 │ │ │ │ ├── gpio.h │ │ │ │ └── tegra.h │ │ │ ├── arch-tegra20 │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── emc.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── powergate.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sdram_param.h │ │ │ │ └── tegra.h │ │ │ ├── arch-tegra210 │ │ │ │ ├── ahb.h │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── powergate.h │ │ │ │ ├── sysctr.h │ │ │ │ └── tegra.h │ │ │ ├── arch-tegra30 │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── powergate.h │ │ │ │ ├── pwm.h │ │ │ │ └── tegra.h │ │ │ ├── arch-vf610 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── ddrmc-vf610.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── iomux-vf610.h │ │ │ ├── arm11.h │ │ │ ├── armv7.h │ │ │ ├── armv7_mpu.h │ │ │ ├── armv7m.h │ │ │ ├── armv8 │ │ │ │ ├── cpu.h │ │ │ │ ├── mmu.h │ │ │ │ └── sec_firmware.h │ │ │ ├── assembler.h │ │ │ ├── atomic.h │ │ │ ├── barriers.h │ │ │ ├── bitops.h │ │ │ ├── boot0-linux-kernel-header.h │ │ │ ├── bootm.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── davinci_rtc.h │ │ │ ├── dma-mapping.h │ │ │ ├── ehci-omap.h │ │ │ ├── emif.h │ │ │ ├── esr.h │ │ │ ├── fsl_secure_boot.h │ │ │ ├── gic-v3.h │ │ │ ├── gic.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── handoff.h │ │ │ ├── hardware.h │ │ │ ├── io.h │ │ │ ├── iproc-common │ │ │ │ ├── armpll.h │ │ │ │ ├── sysmap.h │ │ │ │ └── timer.h │ │ │ ├── kona-common │ │ │ │ └── clk.h │ │ │ ├── linkage.h │ │ │ ├── mach-imx │ │ │ │ ├── ahab.h │ │ │ │ ├── boot_mode.h │ │ │ │ ├── dma.h │ │ │ │ ├── ele_api.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hab.h │ │ │ │ ├── imx-nandbcb.h │ │ │ │ ├── imximage.cfg │ │ │ │ ├── iomux-v3.h │ │ │ │ ├── module_fuse.h │ │ │ │ ├── mu_hal.h │ │ │ │ ├── mx5_video.h │ │ │ │ ├── mxc_i2c.h │ │ │ │ ├── rdc-sema.h │ │ │ │ ├── regs-apbh.h │ │ │ │ ├── regs-bch.h │ │ │ │ ├── regs-common.h │ │ │ │ ├── regs-gpmi.h │ │ │ │ ├── regs-lcdif.h │ │ │ │ ├── regs-usbphy.h │ │ │ │ ├── sata.h │ │ │ │ ├── spi.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── syscounter.h │ │ │ │ └── video.h │ │ │ ├── mach-types.h │ │ │ ├── macro.h │ │ │ ├── memory.h │ │ │ ├── omap_common.h │ │ │ ├── omap_gpio.h │ │ │ ├── omap_i2c.h │ │ │ ├── omap_mmc.h │ │ │ ├── omap_musb.h │ │ │ ├── omap_sec_common.h │ │ │ ├── opcodes-sec.h │ │ │ ├── opcodes-virt.h │ │ │ ├── opcodes.h │ │ │ ├── pl310.h │ │ │ ├── posix_types.h │ │ │ ├── proc-armv │ │ │ │ ├── domain.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ └── system.h │ │ │ ├── processor.h │ │ │ ├── psci.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── secure.h │ │ │ ├── setjmp.h │ │ │ ├── setup.h │ │ │ ├── spin_table.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── ti-common │ │ │ │ ├── davinci_nand.h │ │ │ │ ├── keystone_nav.h │ │ │ │ ├── keystone_net.h │ │ │ │ ├── keystone_serdes.h │ │ │ │ ├── omap_wdt.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── ti-aemif.h │ │ │ │ └── ti-edma3.h │ │ │ ├── types.h │ │ │ ├── u-boot-arm.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ ├── unified.h │ │ │ ├── utils.h │ │ │ ├── xen.h │ │ │ └── xen │ │ │ │ ├── hypercall.h │ │ │ │ └── system.h │ │ └── debug │ │ │ └── 8250.S │ ├── lib │ │ ├── Makefile │ │ ├── acpi_table.c │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── asm-offsets.c │ │ ├── asmdefs.h │ │ ├── bdinfo.c │ │ ├── bitops.S │ │ ├── bootm-fdt.c │ │ ├── bootm.c │ │ ├── cache-cp15.c │ │ ├── cache-pl310.c │ │ ├── cache.c │ │ ├── ccn504.S │ │ ├── cmd_boot.c │ │ ├── crt0.S │ │ ├── crt0_64.S │ │ ├── crt0_aarch64_efi.S │ │ ├── crt0_arm_efi.S │ │ ├── debug.S │ │ ├── div0.c │ │ ├── div64.S │ │ ├── eabi_compat.c │ │ ├── elf_aarch64_efi.lds │ │ ├── elf_arm_efi.lds │ │ ├── gic-v2.c │ │ ├── gic-v3-its.c │ │ ├── gic_64.S │ │ ├── image.c │ │ ├── interrupts.c │ │ ├── interrupts_64.c │ │ ├── interrupts_m.c │ │ ├── lib1funcs.S │ │ ├── lshrdi3.S │ │ ├── memcpy-arm64.S │ │ ├── memcpy.S │ │ ├── memset-arm64.S │ │ ├── memset.S │ │ ├── muldi3.S │ │ ├── psci-dt.c │ │ ├── reloc_aarch64_efi.c │ │ ├── reloc_arm_efi.c │ │ ├── relocate.S │ │ ├── relocate_64.S │ │ ├── reset.c │ │ ├── save_prev_bl_data.c │ │ ├── sections.c │ │ ├── semihosting.S │ │ ├── setjmp.S │ │ ├── setjmp_aarch64.S │ │ ├── spl.c │ │ ├── stack.c │ │ ├── uldivmod.S │ │ ├── vectors.S │ │ ├── vectors_m.S │ │ ├── xferlist.c │ │ ├── xferlist.h │ │ └── zimage.c │ ├── mach-airoha │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── an7581 │ │ │ ├── Makefile │ │ │ └── init.c │ │ └── cpu.c │ ├── mach-apple │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── lowlevel_init.S │ │ ├── rtkit.c │ │ ├── rtkit_helper.c │ │ └── sart.c │ ├── mach-aspeed │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ast2500 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── board_common.c │ │ │ ├── clk_ast2500.c │ │ │ └── lowlevel_init.S │ │ ├── ast2600 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── board_common.c │ │ │ ├── lowlevel_init.S │ │ │ ├── spl.c │ │ │ └── u-boot-spl.lds │ │ └── ast_wdt.c │ ├── mach-at91 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arm920t │ │ │ ├── Makefile │ │ │ ├── at91rm9200_devices.c │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── lowlevel_init.S │ │ │ ├── reset.c │ │ │ └── timer.c │ │ ├── arm926ejs │ │ │ ├── Makefile │ │ │ ├── at91sam9260_devices.c │ │ │ ├── at91sam9261_devices.c │ │ │ ├── at91sam9263_devices.c │ │ │ ├── at91sam9m10g45_devices.c │ │ │ ├── at91sam9n12_devices.c │ │ │ ├── at91sam9rl_devices.c │ │ │ ├── at91sam9x5_devices.c │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── lowlevel_init.S │ │ │ ├── reset.c │ │ │ ├── sam9x60_devices.c │ │ │ ├── sam9x7_devices.c │ │ │ ├── timer.c │ │ │ └── u-boot-spl.lds │ │ ├── armv7 │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── sama5d2_devices.c │ │ │ ├── sama5d3_devices.c │ │ │ ├── sama5d4_devices.c │ │ │ ├── sama7g5_devices.c │ │ │ ├── timer.c │ │ │ └── u-boot-spl.lds │ │ ├── atmel_sfr.c │ │ ├── bootparams_atmel.S │ │ ├── clock.c │ │ ├── config.mk │ │ ├── include │ │ │ └── mach │ │ │ │ ├── at91_common.h │ │ │ │ ├── at91_emac.h │ │ │ │ ├── at91_gpbr.h │ │ │ │ ├── at91_matrix.h │ │ │ │ ├── at91_mc.h │ │ │ │ ├── at91_pdc.h │ │ │ │ ├── at91_pio.h │ │ │ │ ├── at91_pit.h │ │ │ │ ├── at91_pmc.h │ │ │ │ ├── at91_rstc.h │ │ │ │ ├── at91_rtc.h │ │ │ │ ├── at91_sck.h │ │ │ │ ├── at91_sfr.h │ │ │ │ ├── at91_spi.h │ │ │ │ ├── at91_st.h │ │ │ │ ├── at91_tc.h │ │ │ │ ├── at91_wdt.h │ │ │ │ ├── at91rm9200.h │ │ │ │ ├── at91sam9260.h │ │ │ │ ├── at91sam9260_matrix.h │ │ │ │ ├── at91sam9261.h │ │ │ │ ├── at91sam9261_matrix.h │ │ │ │ ├── at91sam9263.h │ │ │ │ ├── at91sam9263_matrix.h │ │ │ │ ├── at91sam9_matrix.h │ │ │ │ ├── at91sam9_sdramc.h │ │ │ │ ├── at91sam9_smc.h │ │ │ │ ├── at91sam9g45.h │ │ │ │ ├── at91sam9g45_matrix.h │ │ │ │ ├── at91sam9rl.h │ │ │ │ ├── at91sam9rl_matrix.h │ │ │ │ ├── at91sam9x5.h │ │ │ │ ├── at91sam9x5_matrix.h │ │ │ │ ├── atmel_mpddrc.h │ │ │ │ ├── atmel_pio4.h │ │ │ │ ├── atmel_sdhci.h │ │ │ │ ├── atmel_serial.h │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── sam9x60.h │ │ │ │ ├── sam9x7.h │ │ │ │ ├── sama5_boot.h │ │ │ │ ├── sama5_matrix.h │ │ │ │ ├── sama5d2.h │ │ │ │ ├── sama5d2_smc.h │ │ │ │ ├── sama5d3.h │ │ │ │ ├── sama5d3_smc.h │ │ │ │ ├── sama5d4.h │ │ │ │ ├── sama7-sfr.h │ │ │ │ └── sama7g5.h │ │ ├── matrix.c │ │ ├── mpddrc.c │ │ ├── phy.c │ │ ├── sdram.c │ │ ├── spl.c │ │ ├── spl_at91.c │ │ └── spl_atmel.c │ ├── mach-bcm283x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bcm2711_acpi.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── acpi │ │ │ │ ├── bcm2711.h │ │ │ │ ├── bcm2836.h │ │ │ │ ├── bcm2836_gpio.h │ │ │ │ ├── bcm2836_gpu.h │ │ │ │ ├── bcm2836_pwm.h │ │ │ │ ├── bcm2836_sdhost.h │ │ │ │ └── bcm2836_sdio.h │ │ │ │ ├── base.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mbox.h │ │ │ │ ├── msg.h │ │ │ │ ├── sdhci.h │ │ │ │ ├── timer.h │ │ │ │ └── wdog.h │ │ ├── init.c │ │ ├── lowlevel_init.S │ │ ├── mbox.c │ │ ├── msg.c │ │ ├── phys2bus.c │ │ └── reset.c │ ├── mach-bcmbca │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bcm47622 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm4908 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ ├── bcm4912 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ ├── bcm63138 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm63146 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ ├── bcm63148 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm63158 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ ├── bcm63178 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm6756 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm6813 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ ├── bcm6846 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm6855 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── bcm6856 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ ├── bcm6858 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── mmu_table.c │ │ └── bcm6878 │ │ │ ├── Kconfig │ │ │ └── Makefile │ ├── mach-bcmstb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── sdhci.h │ │ │ │ └── timer.h │ │ └── lowlevel_init.S │ ├── mach-cortina │ │ └── Makefile │ ├── mach-davinci │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── config.mk │ │ ├── cpu.c │ │ ├── da850_lowlevel.c │ │ ├── da850_pinmux.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── da850_lowlevel.h │ │ │ │ ├── da8xx-usb.h │ │ │ │ ├── davinci_misc.h │ │ │ │ ├── ddr2_defs.h │ │ │ │ ├── dm365_lowlevel.h │ │ │ │ ├── emac_defs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c_defs.h │ │ │ │ ├── pinmux_defs.h │ │ │ │ ├── pll_defs.h │ │ │ │ ├── psc_defs.h │ │ │ │ ├── sdmmc_defs.h │ │ │ │ └── timer_defs.h │ │ ├── misc.c │ │ ├── pinmux.c │ │ ├── psc.c │ │ ├── reset.c │ │ ├── spl.c │ │ └── timer.c │ ├── mach-exynos │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── clock_init.h │ │ ├── clock_init_exynos4.c │ │ ├── clock_init_exynos5.c │ │ ├── common_setup.h │ │ ├── config.mk │ │ ├── dmc_common.c │ │ ├── dmc_init_ddr3.c │ │ ├── dmc_init_exynos4.c │ │ ├── exynos4_setup.h │ │ ├── exynos5_setup.h │ │ ├── include │ │ │ └── mach │ │ │ │ ├── adc.h │ │ │ │ ├── board.h │ │ │ │ ├── clk.h │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dmc.h │ │ │ │ ├── dp.h │ │ │ │ ├── dp_info.h │ │ │ │ ├── dsim.h │ │ │ │ ├── dwmmc.h │ │ │ │ ├── ehci.h │ │ │ │ ├── fb.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2s-regs.h │ │ │ │ ├── mipi_dsim.h │ │ │ │ ├── mmc.h │ │ │ │ ├── periph.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── power.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sound.h │ │ │ │ ├── spi.h │ │ │ │ ├── spl.h │ │ │ │ ├── sromc.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── system.h │ │ │ │ ├── tmu.h │ │ │ │ ├── tzpc.h │ │ │ │ ├── uart.h │ │ │ │ ├── watchdog.h │ │ │ │ └── xhci-exynos.h │ │ ├── lowlevel_init.c │ │ ├── mmu-arm64.c │ │ ├── pinmux.c │ │ ├── power.c │ │ ├── sec_boot.S │ │ ├── soc.c │ │ ├── spl_boot.c │ │ ├── system.c │ │ └── tzpc.c │ ├── mach-highbank │ │ ├── Kconfig │ │ ├── Makefile │ │ └── timer.c │ ├── mach-histb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board_common.c │ │ └── sysmap-histb.c │ ├── mach-hpe │ │ ├── Makefile │ │ └── gxp │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── reset.c │ ├── mach-imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cmd_bmode.c │ │ ├── cmd_dek.c │ │ ├── cmd_hdmidet.c │ │ ├── cmd_mfgprot.c │ │ ├── cmd_nandbcb.c │ │ ├── cpu.c │ │ ├── ddrmc-vf610-calibration.c │ │ ├── ddrmc-vf610-calibration.h │ │ ├── ddrmc-vf610.c │ │ ├── ele_ahab.c │ │ ├── fdt.c │ │ ├── hab.c │ │ ├── i2c-mxv7.c │ │ ├── image-container.c │ │ ├── imx8 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ahab.c │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── fdt.c │ │ │ ├── iomux.c │ │ │ ├── lowlevel_init.S │ │ │ ├── misc.c │ │ │ └── snvs_security_sc.c │ │ ├── imx8m │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock_imx8mm.c │ │ │ ├── clock_imx8mq.c │ │ │ ├── clock_slice.c │ │ │ ├── imximage-8mm-lpddr4.cfg │ │ │ ├── imximage-8mn-ddr4.cfg │ │ │ ├── imximage-8mn-lpddr4.cfg │ │ │ ├── imximage-8mp-lpddr4.cfg │ │ │ ├── imximage.cfg │ │ │ ├── lowlevel_init.S │ │ │ ├── psci.c │ │ │ └── soc.c │ │ ├── imx8ulp │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cgc.c │ │ │ ├── clock.c │ │ │ ├── container.cfg │ │ │ ├── imximage.cfg │ │ │ ├── iomux.c │ │ │ ├── lowlevel_init.S │ │ │ ├── pcc.c │ │ │ ├── rdc.c │ │ │ ├── soc.c │ │ │ └── upower │ │ │ │ ├── Makefile │ │ │ │ ├── upower_api.c │ │ │ │ ├── upower_api.h │ │ │ │ └── upower_hal.c │ │ ├── imx9 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── clock_root.c │ │ │ ├── container.cfg │ │ │ ├── imx_bootaux.c │ │ │ ├── imximage.cfg │ │ │ ├── lowlevel_init.S │ │ │ ├── scmi │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── clock_scmi.c │ │ │ │ ├── container.cfg │ │ │ │ ├── imximage.cfg │ │ │ │ └── soc.c │ │ │ ├── soc.c │ │ │ └── trdc.c │ │ ├── imx_bootaux.c │ │ ├── imxrt │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── soc.c │ │ ├── init.c │ │ ├── iomux-v3.c │ │ ├── mac.c │ │ ├── misc.c │ │ ├── mmc_env.c │ │ ├── mmdc_size.c │ │ ├── mx3 │ │ │ └── Kconfig │ │ ├── mx5 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── lowlevel_init.S │ │ │ ├── mx53_dram.c │ │ │ └── soc.c │ │ ├── mx6 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── ddr.c │ │ │ ├── litesom.c │ │ │ ├── module_fuse.c │ │ │ ├── mp.c │ │ │ ├── opos6ul.c │ │ │ └── soc.c │ │ ├── mx7 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── clock_slice.c │ │ │ ├── ddr.c │ │ │ ├── psci-mx7.c │ │ │ ├── psci-suspend.S │ │ │ └── soc.c │ │ ├── mx7ulp │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── iomux.c │ │ │ ├── pcc.c │ │ │ ├── scg.c │ │ │ └── soc.c │ │ ├── mxs │ │ │ └── Kconfig │ │ ├── priblob.c │ │ ├── rdc-sema.c │ │ ├── romapi.c │ │ ├── sata.c │ │ ├── snvs.c │ │ ├── snvs.h │ │ ├── speed.c │ │ ├── spl.c │ │ ├── spl_imx_romapi.c │ │ ├── spl_qspi.cfg │ │ ├── spl_sd.cfg │ │ ├── syscounter.c │ │ ├── timer.c │ │ └── video.c │ ├── mach-integrator │ │ └── Kconfig │ ├── mach-ipq40xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ └── include │ │ │ └── mach │ │ │ └── gpio.h │ ├── mach-k3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am62ax │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am62a7_fdt.c │ │ │ ├── am62a7_init.c │ │ │ └── boot.c │ │ ├── am62px │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am62p5_fdt.c │ │ │ └── am62p5_init.c │ │ ├── am62x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am625_fdt.c │ │ │ ├── am625_init.c │ │ │ └── boot.c │ │ ├── am64x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am642_init.c │ │ │ └── boot.c │ │ ├── am65x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am654_fdt.c │ │ │ └── am654_init.c │ │ ├── arm64 │ │ │ ├── Makefile │ │ │ ├── arm64-mmu.c │ │ │ └── cache.S │ │ ├── common.c │ │ ├── common.h │ │ ├── common_fdt.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── am62_hardware.h │ │ │ │ ├── am62_spl.h │ │ │ │ ├── am62a_hardware.h │ │ │ │ ├── am62a_spl.h │ │ │ │ ├── am62p_hardware.h │ │ │ │ ├── am62p_spl.h │ │ │ │ ├── am64_hardware.h │ │ │ │ ├── am64_spl.h │ │ │ │ ├── am6_hardware.h │ │ │ │ ├── am6_spl.h │ │ │ │ ├── clock.h │ │ │ │ ├── hardware.h │ │ │ │ ├── j721e_hardware.h │ │ │ │ ├── j721e_spl.h │ │ │ │ ├── j721s2_hardware.h │ │ │ │ ├── j721s2_spl.h │ │ │ │ ├── j722s_hardware.h │ │ │ │ ├── j722s_spl.h │ │ │ │ ├── j784s4_hardware.h │ │ │ │ ├── j784s4_spl.h │ │ │ │ ├── k3-common-fdt.h │ │ │ │ ├── k3-ddr.h │ │ │ │ ├── k3-qos.h │ │ │ │ ├── security.h │ │ │ │ └── spl.h │ │ ├── j7200 │ │ │ ├── Kconfig │ │ │ └── Makefile │ │ ├── j721e │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── j721e_fdt.c │ │ │ └── j721e_init.c │ │ ├── j721s2 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── j721s2_fdt.c │ │ │ └── j721s2_init.c │ │ ├── j722s │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── j722s_fdt.c │ │ │ └── j722s_init.c │ │ ├── j784s4 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── j784s4_fdt.c │ │ │ └── j784s4_init.c │ │ ├── k3-ddr.c │ │ ├── keys │ │ │ ├── custMpk.crt │ │ │ ├── custMpk.key │ │ │ ├── custMpk.pem │ │ │ └── ti-degenerate-key.pem │ │ ├── r5 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am62ax │ │ │ │ ├── Makefile │ │ │ │ ├── am62a_qos.h │ │ │ │ ├── am62a_qos_uboot.c │ │ │ │ ├── clk-data.c │ │ │ │ └── dev-data.c │ │ │ ├── am62px │ │ │ │ ├── Makefile │ │ │ │ ├── am62p_qos.h │ │ │ │ ├── am62p_qos_uboot.c │ │ │ │ ├── clk-data.c │ │ │ │ └── dev-data.c │ │ │ ├── am62x │ │ │ │ ├── Makefile │ │ │ │ ├── clk-data.c │ │ │ │ └── dev-data.c │ │ │ ├── common.c │ │ │ ├── j7200 │ │ │ │ ├── Makefile │ │ │ │ ├── clk-data.c │ │ │ │ └── dev-data.c │ │ │ ├── j721e │ │ │ │ ├── Makefile │ │ │ │ ├── clk-data.c │ │ │ │ ├── dev-data.c │ │ │ │ ├── j721e_qos.h │ │ │ │ └── j721e_qos_uboot.c │ │ │ ├── j721s2 │ │ │ │ ├── Makefile │ │ │ │ ├── clk-data.c │ │ │ │ ├── dev-data.c │ │ │ │ ├── j721s2_qos.h │ │ │ │ └── j721s2_qos_uboot.c │ │ │ ├── j722s │ │ │ │ ├── Makefile │ │ │ │ ├── clk-data.c │ │ │ │ ├── dev-data.c │ │ │ │ ├── j722s_qos.h │ │ │ │ └── j722s_qos_uboot.c │ │ │ ├── j784s4 │ │ │ │ ├── Makefile │ │ │ │ ├── clk-data.c │ │ │ │ ├── dev-data.c │ │ │ │ ├── j784s4_qos.h │ │ │ │ └── j784s4_qos_uboot.c │ │ │ ├── lowlevel_init.S │ │ │ ├── r5_mpu.c │ │ │ └── sysfw-loader.c │ │ ├── schema.yaml │ │ ├── security.c │ │ └── sysfw-loader.h │ ├── mach-keystone │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── cmd_clock.c │ │ ├── cmd_mon.c │ │ ├── cmd_poweroff.c │ │ ├── config.mk │ │ ├── ddr3.c │ │ ├── ddr3_spd.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clock-k2e.h │ │ │ │ ├── clock-k2g.h │ │ │ │ ├── clock-k2hk.h │ │ │ │ ├── clock-k2l.h │ │ │ │ ├── clock.h │ │ │ │ ├── clock_defs.h │ │ │ │ ├── ddr3.h │ │ │ │ ├── hardware-k2e.h │ │ │ │ ├── hardware-k2g.h │ │ │ │ ├── hardware-k2hk.h │ │ │ │ ├── hardware-k2l.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c_defs.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mon.h │ │ │ │ ├── msmc.h │ │ │ │ ├── mux-k2g.h │ │ │ │ └── psc_defs.h │ │ ├── init.c │ │ ├── keystone.c │ │ ├── mon.c │ │ ├── msmc.c │ │ └── psc.c │ ├── mach-kirkwood │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── kw88f6192.h │ │ │ │ ├── kw88f6281.h │ │ │ │ ├── mpp.h │ │ │ │ └── soc.h │ │ ├── lowlevel.S │ │ └── mpp.c │ ├── mach-lpc32xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk.c │ │ ├── cpu.c │ │ ├── devices.c │ │ ├── dram.c │ │ ├── lowlevel_init.S │ │ └── timer.c │ ├── mach-mediatek │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── init.h │ │ ├── mt7622 │ │ │ ├── Makefile │ │ │ └── init.c │ │ ├── mt7623 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ ├── lowlevel_init.S │ │ │ └── preloader.h │ │ ├── mt7629 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt7981 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt7986 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt7987 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt7988 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt8183 │ │ │ ├── Makefile │ │ │ └── init.c │ │ ├── mt8365 │ │ │ ├── Makefile │ │ │ └── init.c │ │ ├── mt8512 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt8516 │ │ │ ├── Makefile │ │ │ └── init.c │ │ ├── mt8518 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── spl.c │ │ └── tzcfg.c │ ├── mach-meson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board-a1.c │ │ ├── board-axg.c │ │ ├── board-common.c │ │ ├── board-g12a.c │ │ ├── board-gx.c │ │ ├── board-info.c │ │ └── sm.c │ ├── mach-mmp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ └── mmu.c │ ├── mach-mvebu │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── alleycat5 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── soc.c │ │ │ └── soc.h │ │ ├── arm64-common.c │ │ ├── armada3700 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── efuse.c │ │ │ └── mbox.c │ │ ├── armada8k │ │ │ ├── Makefile │ │ │ ├── cache_llc.S │ │ │ ├── cpu.c │ │ │ └── dram.c │ │ ├── cpu.c │ │ ├── dram.c │ │ ├── efuse.c │ │ ├── gpio.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── efuse.h │ │ │ │ ├── fw_info.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mbox.h │ │ │ │ └── soc.h │ │ ├── kwbimage.cfg.in │ │ ├── lowlevel.S │ │ ├── lowlevel_spl.S │ │ ├── mbus.c │ │ ├── serdes │ │ │ ├── a38x │ │ │ │ ├── Makefile │ │ │ │ ├── high_speed_env_spec-38x.c │ │ │ │ ├── high_speed_env_spec.c │ │ │ │ ├── high_speed_env_spec.h │ │ │ │ ├── seq_exec.c │ │ │ │ ├── seq_exec.h │ │ │ │ ├── sys_env_lib.c │ │ │ │ └── sys_env_lib.h │ │ │ └── axp │ │ │ │ ├── Makefile │ │ │ │ ├── board_env_spec.h │ │ │ │ ├── high_speed_env_lib.c │ │ │ │ ├── high_speed_env_spec.c │ │ │ │ └── high_speed_env_spec.h │ │ ├── spl.c │ │ └── system-controller.c │ ├── mach-nexell │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── config.mk │ │ ├── include │ │ │ └── mach │ │ │ │ ├── boot0.h │ │ │ │ ├── clk.h │ │ │ │ ├── display.h │ │ │ │ ├── display_dev.h │ │ │ │ ├── ehci.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mipi_display.h │ │ │ │ ├── nexell.h │ │ │ │ ├── nx_gpio.h │ │ │ │ ├── pwm.h │ │ │ │ ├── reset.h │ │ │ │ ├── sec_reg.h │ │ │ │ └── tieoff.h │ │ ├── nx_gpio.c │ │ ├── nx_sec_reg.c │ │ ├── reg-call.S │ │ ├── reset.c │ │ ├── tieoff.c │ │ └── timer.c │ ├── mach-npcm │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── npcm7xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── l2_cache_pl310.c │ │ │ └── l2_cache_pl310_init.S │ │ └── npcm8xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── reset.c │ ├── mach-octeontx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── cpu.c │ │ └── lowlevel_init.S │ ├── mach-octeontx2 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── config.mk │ │ ├── cpu.c │ │ └── lowlevel_init.S │ ├── mach-omap2 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── abb.c │ │ ├── am33xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── chilisom.c │ │ │ ├── clk_synthesizer.c │ │ │ ├── clock.c │ │ │ ├── clock_am33xx.c │ │ │ ├── clock_am43xx.c │ │ │ ├── ddr.c │ │ │ ├── emif4.c │ │ │ ├── fdt.c │ │ │ ├── hw_data.c │ │ │ ├── mux.c │ │ │ ├── prcm-regs.c │ │ │ └── sys_info.c │ │ ├── boot-common.c │ │ ├── clocks-common.c │ │ ├── config.mk │ │ ├── config_secure.mk │ │ ├── emif-common.c │ │ ├── fdt-common.c │ │ ├── hwinit-common.c │ │ ├── lowlevel_init.S │ │ ├── mem-common.c │ │ ├── omap-cache.c │ │ ├── omap3 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am35x_musb.c │ │ │ ├── board.c │ │ │ ├── boot.c │ │ │ ├── clock.c │ │ │ ├── emac.c │ │ │ ├── emif4.c │ │ │ ├── hw_data.c │ │ │ ├── lowlevel_init.S │ │ │ ├── prcm-regs.c │ │ │ ├── sdrc.c │ │ │ ├── spl_id_nand.c │ │ │ └── sys_info.c │ │ ├── omap5 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── abb.c │ │ │ ├── boot.c │ │ │ ├── dra7xx_iodelay.c │ │ │ ├── emif.c │ │ │ ├── fdt.c │ │ │ ├── hw_data.c │ │ │ ├── hwinit.c │ │ │ ├── prcm-regs.c │ │ │ ├── sdram.c │ │ │ └── sec_entry_cpu1.S │ │ ├── reset.c │ │ ├── sec-common.c │ │ ├── sysinfo-common.c │ │ ├── timer.c │ │ ├── u-boot-spl.lds │ │ ├── utils.c │ │ └── vc.c │ ├── mach-orion5x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── dram.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── cpu.h │ │ │ │ ├── mv88f5182.h │ │ │ │ └── orion5x.h │ │ ├── lowlevel_init.S │ │ ├── timer.c │ │ └── u-boot-spl.lds │ ├── mach-owl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── soc.c │ │ └── sysmap-owl.c │ ├── mach-qemu │ │ └── Kconfig │ ├── mach-renesas │ │ ├── Kconfig │ │ ├── Kconfig.32 │ │ ├── Kconfig.64 │ │ ├── Kconfig.rcar3 │ │ ├── Kconfig.rcar4 │ │ ├── Kconfig.rza1 │ │ ├── Kconfig.rzg2l │ │ ├── Kconfig.rzn1 │ │ ├── Makefile │ │ ├── board.c │ │ ├── cpu_info-rcar.c │ │ ├── cpu_info-rzg.c │ │ ├── cpu_info-rzg2l.c │ │ ├── cpu_info.c │ │ ├── emac.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── boot0.h │ │ │ │ ├── gpio.h │ │ │ │ ├── irqs.h │ │ │ │ ├── r8a7790.h │ │ │ │ ├── r8a7791.h │ │ │ │ ├── r8a7792.h │ │ │ │ ├── r8a7793.h │ │ │ │ ├── r8a7794.h │ │ │ │ ├── rcar-base.h │ │ │ │ ├── rcar-gen3-base.h │ │ │ │ ├── rcar-gen4-base.h │ │ │ │ ├── rcar-mstp.h │ │ │ │ ├── renesas.h │ │ │ │ ├── rzg2l.h │ │ │ │ └── sys_proto.h │ │ ├── lowlevel_init_ca15.S │ │ ├── lowlevel_init_gen3.S │ │ ├── memmap-gen3.c │ │ ├── memmap-rzg2l.c │ │ └── psci-rcar64.c │ ├── mach-rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── boot_mode.c │ │ ├── bootrom.c │ │ ├── cpu-info.c │ │ ├── px30-board-tpl.c │ │ ├── px30 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_px30.c │ │ │ ├── px30.c │ │ │ └── syscon_px30.c │ │ ├── rk3036-board-spl.c │ │ ├── rk3036 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3036.c │ │ │ ├── rk3036.c │ │ │ ├── sdram_rk3036.c │ │ │ └── syscon_rk3036.c │ │ ├── rk3066 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3066.c │ │ │ ├── rk3066.c │ │ │ └── syscon_rk3066.c │ │ ├── rk3128 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3128.c │ │ │ └── syscon_rk3128.c │ │ ├── rk3188 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3188.c │ │ │ ├── rk3188.c │ │ │ └── syscon_rk3188.c │ │ ├── rk322x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk322x.c │ │ │ ├── rk322x.c │ │ │ └── syscon_rk322x.c │ │ ├── rk3288 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3288.c │ │ │ ├── rk3288.c │ │ │ └── syscon_rk3288.c │ │ ├── rk3308 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3308.c │ │ │ ├── rk3308.c │ │ │ └── syscon_rk3308.c │ │ ├── rk3328 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3328.c │ │ │ ├── rk3328.c │ │ │ └── syscon_rk3328.c │ │ ├── rk3368 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3368.c │ │ │ ├── rk3368.c │ │ │ └── syscon_rk3368.c │ │ ├── rk3399 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3399.c │ │ │ ├── rk3399.c │ │ │ └── syscon_rk3399.c │ │ ├── rk3528 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── clk_rk3528.c │ │ │ ├── rk3528.c │ │ │ └── syscon_rk3528.c │ │ ├── rk3568 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3568.c │ │ │ ├── rk3568.c │ │ │ └── syscon_rk3568.c │ │ ├── rk3576 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3576.c │ │ │ ├── rk3576.c │ │ │ └── syscon_rk3576.c │ │ ├── rk3588 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3588.c │ │ │ ├── rk3588.c │ │ │ └── syscon_rk3588.c │ │ ├── rv1108 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rv1108.c │ │ │ ├── rv1108.c │ │ │ └── syscon_rv1108.c │ │ ├── rv1126 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rv1126.c │ │ │ ├── rv1126.c │ │ │ └── syscon_rv1126.c │ │ ├── sdram.c │ │ ├── spl-boot-order.c │ │ ├── spl.c │ │ ├── spl_common.c │ │ ├── tpl.c │ │ └── u-boot-tpl-v8.lds │ ├── mach-s5pc1xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache.c │ │ ├── clock.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clk.h │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mmc.h │ │ │ │ ├── periph.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── power.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sromc.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── uart.h │ │ │ │ └── watchdog.h │ │ ├── pinmux.c │ │ └── reset.S │ ├── mach-sc5xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init │ │ │ ├── Makefile │ │ │ ├── clkinit.c │ │ │ ├── clkinit.h │ │ │ ├── dmcinit.c │ │ │ ├── dmcinit.h │ │ │ └── mem │ │ │ │ ├── is43tr16512bl.h │ │ │ │ ├── mt41k128m16jt.h │ │ │ │ ├── mt41k512m16ha.h │ │ │ │ └── mt47h128m16rt.h │ │ ├── rcu.c │ │ ├── sc57x-spl.c │ │ ├── sc57x.c │ │ ├── sc58x-spl.c │ │ ├── sc58x.c │ │ ├── sc59x-spl.c │ │ ├── sc59x.c │ │ ├── sc59x_64-spl.c │ │ ├── sc59x_64.c │ │ ├── soc.c │ │ └── spl.c │ ├── mach-snapdragon │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── capsule_update.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ ├── of_fixup.c │ │ └── qcom-priv.h │ ├── mach-socfpga │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── altera-sysmgr.c │ │ ├── board.c │ │ ├── ccu_ncore3.c │ │ ├── clock_manager.c │ │ ├── clock_manager_agilex.c │ │ ├── clock_manager_agilex5.c │ │ ├── clock_manager_arria10.c │ │ ├── clock_manager_gen5.c │ │ ├── clock_manager_n5x.c │ │ ├── clock_manager_s10.c │ │ ├── firewall.c │ │ ├── fpga_manager.c │ │ ├── freeze_controller.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── altera-sysmgr.h │ │ │ │ ├── base_addr_a10.h │ │ │ │ ├── base_addr_ac5.h │ │ │ │ ├── base_addr_soc64.h │ │ │ │ ├── board.h │ │ │ │ ├── boot0.h │ │ │ │ ├── clock_manager.h │ │ │ │ ├── clock_manager_agilex.h │ │ │ │ ├── clock_manager_agilex5.h │ │ │ │ ├── clock_manager_arria10.h │ │ │ │ ├── clock_manager_gen5.h │ │ │ │ ├── clock_manager_n5x.h │ │ │ │ ├── clock_manager_s10.h │ │ │ │ ├── clock_manager_soc64.h │ │ │ │ ├── firewall.h │ │ │ │ ├── fpga_manager.h │ │ │ │ ├── fpga_manager_arria10.h │ │ │ │ ├── fpga_manager_gen5.h │ │ │ │ ├── freeze_controller.h │ │ │ │ ├── gpio.h │ │ │ │ ├── handoff_soc64.h │ │ │ │ ├── mailbox_s10.h │ │ │ │ ├── misc.h │ │ │ │ ├── nic301.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── reset_manager.h │ │ │ │ ├── reset_manager_arria10.h │ │ │ │ ├── reset_manager_gen5.h │ │ │ │ ├── reset_manager_soc64.h │ │ │ │ ├── scan_manager.h │ │ │ │ ├── scu.h │ │ │ │ ├── sdram.h │ │ │ │ ├── sdram_arria10.h │ │ │ │ ├── sdram_gen5.h │ │ │ │ ├── secure_reg_helper.h │ │ │ │ ├── secure_vab.h │ │ │ │ ├── smc_api.h │ │ │ │ ├── system_manager.h │ │ │ │ ├── system_manager_arria10.h │ │ │ │ ├── system_manager_gen5.h │ │ │ │ ├── system_manager_soc64.h │ │ │ │ └── timer.h │ │ ├── lowlevel_init_soc64.S │ │ ├── mailbox_s10.c │ │ ├── misc.c │ │ ├── misc_arria10.c │ │ ├── misc_gen5.c │ │ ├── misc_soc64.c │ │ ├── mmu-arm64_s10.c │ │ ├── pinmux_arria10.c │ │ ├── qts-filter-a10.sh │ │ ├── qts-filter.sh │ │ ├── reset_manager_arria10.c │ │ ├── reset_manager_gen5.c │ │ ├── reset_manager_s10.c │ │ ├── scan_manager.c │ │ ├── secure_reg_helper.c │ │ ├── secure_vab.c │ │ ├── smc_api.c │ │ ├── spl_a10.c │ │ ├── spl_agilex.c │ │ ├── spl_agilex5.c │ │ ├── spl_gen5.c │ │ ├── spl_n5x.c │ │ ├── spl_s10.c │ │ ├── spl_soc64.c │ │ ├── system_manager_gen5.c │ │ ├── system_manager_soc64.c │ │ ├── timer.c │ │ ├── timer_s10.c │ │ ├── vab.c │ │ ├── wrap_handoff_soc64.c │ │ ├── wrap_iocsr_config.c │ │ ├── wrap_pinmux_config.c │ │ ├── wrap_pll_config.c │ │ ├── wrap_pll_config_soc64.c │ │ └── wrap_sdram_config.c │ ├── mach-sti │ │ └── Kconfig │ ├── mach-stm32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── soc.c │ │ ├── stm32f4 │ │ │ └── Kconfig │ │ ├── stm32f7 │ │ │ └── Kconfig │ │ └── stm32h7 │ │ │ └── Kconfig │ ├── mach-stm32mp │ │ ├── Kconfig │ │ ├── Kconfig.13x │ │ ├── Kconfig.15x │ │ ├── Kconfig.25x │ │ ├── Makefile │ │ ├── boot_params.c │ │ ├── bsec.c │ │ ├── cmd_stm32key.c │ │ ├── cmd_stm32prog │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cmd_stm32prog.c │ │ │ ├── stm32prog.c │ │ │ ├── stm32prog.h │ │ │ ├── stm32prog_serial.c │ │ │ └── stm32prog_usb.c │ │ ├── dram_init.c │ │ ├── ecdsa_romapi.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── bsec.h │ │ │ │ ├── ddr.h │ │ │ │ ├── etzpc.h │ │ │ │ ├── rif.h │ │ │ │ ├── stm32.h │ │ │ │ ├── stm32mp.h │ │ │ │ ├── stm32mp1_smc.h │ │ │ │ ├── stm32prog.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timers.h │ │ │ │ └── tzc.h │ │ ├── soc.c │ │ ├── stm32mp1 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── etzpc.c │ │ │ ├── fdt.c │ │ │ ├── psci.c │ │ │ ├── pwr_regulator.c │ │ │ ├── spl.c │ │ │ ├── stm32mp13x.c │ │ │ ├── stm32mp15x.c │ │ │ └── tzc400.c │ │ ├── stm32mp2 │ │ │ ├── Makefile │ │ │ ├── arm64-mmu.c │ │ │ ├── cpu.c │ │ │ ├── fdt.c │ │ │ ├── rifsc.c │ │ │ └── stm32mp25x.c │ │ ├── syscon.c │ │ ├── tamp_nvram.c │ │ └── timers.c │ ├── mach-sunxi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── clock.c │ │ ├── clock_sun4i.c │ │ ├── clock_sun50i_h6.c │ │ ├── clock_sun6i.c │ │ ├── clock_sun8i_a83t.c │ │ ├── clock_sun9i.c │ │ ├── cpu_info.c │ │ ├── dram_dw_helpers.c │ │ ├── dram_helpers.c │ │ ├── dram_sun4i.c │ │ ├── dram_sun50i_a133.c │ │ ├── dram_sun50i_h6.c │ │ ├── dram_sun50i_h616.c │ │ ├── dram_sun6i.c │ │ ├── dram_sun8i_a23.c │ │ ├── dram_sun8i_a33.c │ │ ├── dram_sun8i_a83t.c │ │ ├── dram_sun9i.c │ │ ├── dram_suniv.c │ │ ├── dram_sunxi_dw.c │ │ ├── dram_timings │ │ │ ├── Makefile │ │ │ ├── a133_ddr4.c │ │ │ ├── a133_lpddr4.c │ │ │ ├── ddr2_v3s.c │ │ │ ├── ddr3_1333.c │ │ │ ├── h616_ddr3_1333.c │ │ │ ├── h616_lpddr3.c │ │ │ ├── h616_lpddr4_2133.c │ │ │ ├── h6_ddr3_1333.c │ │ │ ├── h6_lpddr3.c │ │ │ └── lpddr3_stock.c │ │ ├── gtbus_sun9i.c │ │ ├── pmic_bus.c │ │ ├── prcm.c │ │ ├── rmr_switch.S │ │ ├── spl_spi_sunxi.c │ │ └── timer.c │ ├── mach-tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ap.c │ │ ├── arm64-mmu.c │ │ ├── board.c │ │ ├── board2.c │ │ ├── cache.c │ │ ├── cboot.c │ │ ├── clock.c │ │ ├── cmd_enterrcm.c │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── crypto.c │ │ ├── dt-setup.c │ │ ├── emc.c │ │ ├── emc.h │ │ ├── fuse.c │ │ ├── gpu.c │ │ ├── ivc.c │ │ ├── pmc.c │ │ ├── powergate.c │ │ ├── psci.S │ │ ├── spl.c │ │ ├── sys_info.c │ │ ├── tegra114 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ └── cpu.c │ │ ├── tegra124 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bct.c │ │ │ ├── bct.h │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── pmc.c │ │ │ ├── psci.c │ │ │ └── xusb-padctl.c │ │ ├── tegra186 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── cache.S │ │ ├── tegra20 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bct.c │ │ │ ├── bct.h │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── display.c │ │ │ ├── emc.c │ │ │ ├── pmu.c │ │ │ ├── warmboot.c │ │ │ ├── warmboot_avp.c │ │ │ └── warmboot_avp.h │ │ ├── tegra210 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ └── xusb-padctl.c │ │ ├── tegra30 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bct.c │ │ │ ├── bct.h │ │ │ ├── clock.c │ │ │ └── cpu.c │ │ ├── xusb-padctl-common.c │ │ ├── xusb-padctl-common.h │ │ └── xusb-padctl-dummy.c │ ├── mach-u8500 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache.c │ │ └── cpuinfo.c │ ├── mach-uniphier │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arm32 │ │ │ ├── Makefile │ │ │ ├── arm-mpcore.h │ │ │ ├── cache-uniphier.c │ │ │ ├── cache-uniphier.h │ │ │ ├── debug_ll.S │ │ │ ├── late_lowlevel_init.S │ │ │ ├── lowlevel_init.S │ │ │ ├── psci.c │ │ │ └── psci_smp.S │ │ ├── arm64 │ │ │ ├── Makefile │ │ │ └── mem_map.c │ │ ├── base-address.c │ │ ├── base-address.h │ │ ├── bcu │ │ │ ├── Makefile │ │ │ ├── bcu-ld4.c │ │ │ └── bcu-regs.h │ │ ├── board_init.c │ │ ├── board_late_init.c │ │ ├── boards.c │ │ ├── boot-device │ │ │ ├── Makefile │ │ │ ├── boot-device-ld11.c │ │ │ ├── boot-device-ld4.c │ │ │ ├── boot-device-pro5.c │ │ │ ├── boot-device-pxs2.c │ │ │ ├── boot-device-pxs3.c │ │ │ ├── boot-device.c │ │ │ └── boot-device.h │ │ ├── clk │ │ │ ├── Makefile │ │ │ ├── clk-dram-ld4.c │ │ │ ├── clk-dram-pro5.c │ │ │ ├── clk-dram-pxs2.c │ │ │ ├── clk-early-ld4.c │ │ │ ├── clk-ld11.c │ │ │ ├── clk-ld20.c │ │ │ ├── clk-pro4.c │ │ │ ├── clk-pro5.c │ │ │ ├── clk-pxs2.c │ │ │ ├── clk-pxs3.c │ │ │ ├── dpll-ld4.c │ │ │ ├── dpll-pro4.c │ │ │ ├── dpll-pro5.c │ │ │ ├── dpll-pxs2.c │ │ │ ├── dpll-sld8.c │ │ │ ├── dpll-tail.c │ │ │ ├── pll-base-ld20.c │ │ │ ├── pll-ld11.c │ │ │ ├── pll-ld20.c │ │ │ ├── pll-ld4.c │ │ │ ├── pll-pro4.c │ │ │ ├── pll-pxs3.c │ │ │ └── pll.h │ │ ├── cpu-info.c │ │ ├── debug-uart │ │ │ ├── Makefile │ │ │ ├── debug-uart-ld4.c │ │ │ ├── debug-uart-ld6b.c │ │ │ ├── debug-uart-pro4.c │ │ │ ├── debug-uart-pro5.c │ │ │ ├── debug-uart-pxs2.c │ │ │ ├── debug-uart-sld8.c │ │ │ ├── debug-uart.c │ │ │ └── debug-uart.h │ │ ├── debug.h │ │ ├── dram │ │ │ ├── Makefile │ │ │ ├── cmd_ddrmphy.c │ │ │ ├── cmd_ddrphy.c │ │ │ ├── ddrmphy-regs.h │ │ │ ├── ddrphy-init.h │ │ │ ├── ddrphy-ld4.c │ │ │ ├── ddrphy-regs.h │ │ │ ├── ddrphy-training.c │ │ │ ├── umc-ld4.c │ │ │ ├── umc-pro4.c │ │ │ ├── umc-pro5.c │ │ │ ├── umc-pxs2.c │ │ │ ├── umc-regs.h │ │ │ └── umc-sld8.c │ │ ├── dram_init.c │ │ ├── fdt-fixup.c │ │ ├── init.h │ │ ├── memconf.c │ │ ├── micro-support-card.c │ │ ├── micro-support-card.h │ │ ├── mmc-boot-mode.c │ │ ├── mmc-first-dev.c │ │ ├── reset.c │ │ ├── sc-regs.h │ │ ├── sc64-regs.h │ │ ├── sg-regs.h │ │ ├── soc-info.c │ │ ├── soc-info.h │ │ └── spl_board_init.c │ ├── mach-versal-net │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk.c │ │ ├── cpu.c │ │ └── include │ │ │ └── mach │ │ │ ├── hardware.h │ │ │ └── sys_proto.h │ ├── mach-versal │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk.c │ │ ├── cpu.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── hardware.h │ │ │ │ └── sys_proto.h │ │ └── mp.c │ ├── mach-versal2 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk.c │ │ ├── cpu.c │ │ └── include │ │ │ └── mach │ │ │ ├── hardware.h │ │ │ └── sys_proto.h │ ├── mach-zynq │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk.c │ │ ├── cpu.c │ │ ├── ddrc.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clk.h │ │ │ │ ├── hardware.h │ │ │ │ ├── ps7_init_gpl.h │ │ │ │ └── sys_proto.h │ │ ├── lowlevel_init.S │ │ ├── ps7_spl_init.c │ │ ├── slcr.c │ │ ├── spl.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── mach-zynqmp-r5 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ └── include │ │ │ └── mach │ │ │ └── sys_r5_proto.h │ ├── mach-zynqmp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── aes.c │ │ ├── clk.c │ │ ├── cpu.c │ │ ├── ecc_spl_init.c │ │ ├── handoff.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clk.h │ │ │ │ ├── ecc_spl_init.h │ │ │ │ ├── hardware.h │ │ │ │ ├── psu_init_gpl.h │ │ │ │ ├── sys_proto.h │ │ │ │ └── zynqmp_aes.h │ │ ├── mp.c │ │ ├── psu_spl_init.c │ │ ├── spl.c │ │ └── zynqmp.c │ └── thumb1 │ │ └── include │ │ └── asm │ │ └── proc-armv │ │ └── system.h ├── m68k │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── mcf523x │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf52x2 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf530x │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf532x │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf5445x │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── dspi.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ └── u-boot.lds │ ├── dts │ │ ├── M5208EVBE.dts │ │ ├── M5235EVB.dts │ │ ├── M5235EVB_Flash32.dts │ │ ├── M5249EVB.dts │ │ ├── M5253DEMO.dts │ │ ├── M5272C3.dts │ │ ├── M5275EVB.dts │ │ ├── M5282EVB.dts │ │ ├── M53017EVB.dts │ │ ├── M5329AFEE.dts │ │ ├── M5329BFEE.dts │ │ ├── M5373EVB.dts │ │ ├── Makefile │ │ ├── amcore.dts │ │ ├── cobra5272.dts │ │ ├── eb_cpu5282.dts │ │ ├── eb_cpu5282_internal.dts │ │ ├── mcf5208.dtsi │ │ ├── mcf523x.dtsi │ │ ├── mcf5249.dtsi │ │ ├── mcf5253.dtsi │ │ ├── mcf5271.dtsi │ │ ├── mcf5272.dtsi │ │ ├── mcf5275.dtsi │ │ ├── mcf5282.dtsi │ │ ├── mcf5301x.dtsi │ │ ├── mcf5307.dtsi │ │ ├── mcf5329.dtsi │ │ ├── mcf537x.dtsi │ │ ├── mcf5441x.dtsi │ │ ├── mcf54xx.dtsi │ │ └── stmark2.dts │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── coldfire │ │ │ ├── ata.h │ │ │ ├── crossbar.h │ │ │ ├── dspi.h │ │ │ ├── edma.h │ │ │ ├── eport.h │ │ │ ├── flexbus.h │ │ │ ├── flexcan.h │ │ │ ├── intctrl.h │ │ │ ├── lcd.h │ │ │ ├── mdha.h │ │ │ ├── pwm.h │ │ │ ├── qspi.h │ │ │ ├── rng.h │ │ │ ├── skha.h │ │ │ └── ssi.h │ │ │ ├── config.h │ │ │ ├── dma-mapping.h │ │ │ ├── fec.h │ │ │ ├── fsl_i2c.h │ │ │ ├── global_data.h │ │ │ ├── immap.h │ │ │ ├── immap_520x.h │ │ │ ├── immap_5235.h │ │ │ ├── immap_5249.h │ │ │ ├── immap_5253.h │ │ │ ├── immap_5271.h │ │ │ ├── immap_5272.h │ │ │ ├── immap_5275.h │ │ │ ├── immap_5282.h │ │ │ ├── immap_5301x.h │ │ │ ├── immap_5307.h │ │ │ ├── immap_5329.h │ │ │ ├── immap_5441x.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── m520x.h │ │ │ ├── m5235.h │ │ │ ├── m5249.h │ │ │ ├── m5253.h │ │ │ ├── m5271.h │ │ │ ├── m5272.h │ │ │ ├── m5275.h │ │ │ ├── m5282.h │ │ │ ├── m5301x.h │ │ │ ├── m5307.h │ │ │ ├── m5329.h │ │ │ ├── m5441x.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── rtc.h │ │ │ ├── sections.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── timer.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ ├── uart.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── ashldi3.c │ │ ├── ashrdi3.c │ │ ├── bdinfo.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── fec.c │ │ ├── interrupts.c │ │ ├── lshrdi3.c │ │ ├── muldi3.c │ │ ├── time.c │ │ └── traps.c ├── microblaze │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cpuinfo.c │ │ ├── exception.c │ │ ├── interrupts.c │ │ ├── irq.S │ │ ├── pvr.c │ │ ├── relocate.c │ │ ├── spl.c │ │ ├── start.S │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── include │ │ │ └── dt-bindings │ │ └── microblaze-generic.dts │ ├── include │ │ └── asm │ │ │ ├── asm.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── cpuinfo.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── pvr.h │ │ │ ├── sections.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bdinfo.c │ │ ├── bootm.c │ │ └── muldi3.c ├── mips │ ├── Kconfig │ ├── Makefile │ ├── Makefile.postlink │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cm_init.S │ │ ├── cpu.c │ │ ├── interrupts.c │ │ ├── start.S │ │ ├── time.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── ap121.dts │ │ ├── ap143.dts │ │ ├── ap152.dts │ │ ├── ar933x.dtsi │ │ ├── ar934x.dtsi │ │ ├── boston-u-boot.dtsi │ │ ├── brcm,bcm3380.dtsi │ │ ├── brcm,bcm6318.dtsi │ │ ├── brcm,bcm63268.dtsi │ │ ├── brcm,bcm6328.dtsi │ │ ├── brcm,bcm6338.dtsi │ │ ├── brcm,bcm6348.dtsi │ │ ├── brcm,bcm6358.dtsi │ │ ├── brcm,bcm6362.dtsi │ │ ├── brcm,bcm6368.dtsi │ │ ├── brcm,bcm6838.dtsi │ │ ├── brcm,bcm968380gerg.dts │ │ ├── ci20.dts │ │ ├── comtrend,ar-5315u.dts │ │ ├── comtrend,ar-5387un.dts │ │ ├── comtrend,ct-5361.dts │ │ ├── comtrend,vr-3032u.dts │ │ ├── comtrend,wap-5813n.dts │ │ ├── gardena-smart-gateway-mt7688.dts │ │ ├── huawei,hg556a.dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── inteno,xg6846.dts │ │ ├── jr2_pcb110.dts │ │ ├── jr2_pcb111.dts │ │ ├── jz4780.dtsi │ │ ├── linkit-smart-7688.dts │ │ ├── luton_pcb090.dts │ │ ├── luton_pcb091.dts │ │ ├── mediatek,mt7620-mt7530-rfb.dts │ │ ├── mediatek,mt7620-rfb.dts │ │ ├── mediatek,mt7621-nand-rfb.dts │ │ ├── mediatek,mt7621-rfb.dts │ │ ├── mediatek,mt7628-rfb.dts │ │ ├── microAptiv.dtsi │ │ ├── mrvl,cn73xx.dtsi │ │ ├── mrvl,octeon-ebb7304.dts │ │ ├── mrvl,octeon-nic23.dts │ │ ├── mscc,jr2.dtsi │ │ ├── mscc,luton.dtsi │ │ ├── mscc,ocelot.dtsi │ │ ├── mscc,ocelot_pcb.dtsi │ │ ├── mscc,serval.dtsi │ │ ├── mscc,servalt.dtsi │ │ ├── mt7620-u-boot.dtsi │ │ ├── mt7620.dtsi │ │ ├── mt7621-u-boot.dtsi │ │ ├── mt7621.dtsi │ │ ├── mt7628-u-boot.dtsi │ │ ├── mt7628a.dtsi │ │ ├── mti,malta.dts │ │ ├── netgear,cg3100d.dts │ │ ├── netgear,dgnd3700v2.dts │ │ ├── nexys4ddr.dts │ │ ├── ocelot_pcb120.dts │ │ ├── ocelot_pcb123.dts │ │ ├── pic32mzda.dtsi │ │ ├── pic32mzda_sk.dts │ │ ├── qca953x.dtsi │ │ ├── qca956x.dtsi │ │ ├── sagem,f@st1704.dts │ │ ├── serval2_pcb112.dts │ │ ├── serval_pcb105.dts │ │ ├── serval_pcb106.dts │ │ ├── servalt_pcb116.dts │ │ ├── sfr,nb4-ser.dts │ │ ├── skeleton.dtsi │ │ ├── tplink_wdr4300.dts │ │ └── vocore_vocore2.dts │ ├── include │ │ └── asm │ │ │ ├── acpi_table.h │ │ │ ├── addrspace.h │ │ │ ├── asm-offsets.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cachectl.h │ │ │ ├── cacheops.h │ │ │ ├── cm.h │ │ │ ├── compiler.h │ │ │ ├── config.h │ │ │ ├── cpu-features.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── isa-rev.h │ │ │ ├── isadep.h │ │ │ ├── linkage.h │ │ │ ├── mach-generic │ │ │ ├── cpu-feature-overrides.h │ │ │ ├── ioremap.h │ │ │ ├── mangle-port.h │ │ │ └── spaces.h │ │ │ ├── malta.h │ │ │ ├── mipsmtregs.h │ │ │ ├── mipsregs.h │ │ │ ├── pgtable-bits.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── regdef.h │ │ │ ├── relocs.h │ │ │ ├── sections.h │ │ │ ├── sgidefs.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot-mips.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ ├── lib │ │ ├── Makefile │ │ ├── ashldi3.c │ │ ├── ashrdi3.c │ │ ├── asm-offsets.c │ │ ├── boot.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── cache_init.S │ │ ├── genex.S │ │ ├── libgcc.h │ │ ├── lshrdi3.c │ │ ├── reloc.c │ │ ├── spl.c │ │ ├── stack.c │ │ ├── traps.c │ │ └── udivdi3.c │ ├── mach-ath79 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ar933x │ │ │ ├── Makefile │ │ │ ├── clk.c │ │ │ ├── ddr.c │ │ │ └── lowlevel_init.S │ │ ├── ar934x │ │ │ ├── Makefile │ │ │ ├── clk.c │ │ │ ├── cpu.c │ │ │ └── ddr.c │ │ ├── cpu.c │ │ ├── dram.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── ar71xx_regs.h │ │ │ │ ├── ath79.h │ │ │ │ └── ddr.h │ │ ├── qca953x │ │ │ ├── Makefile │ │ │ ├── clk.c │ │ │ ├── ddr.c │ │ │ └── lowlevel_init.S │ │ ├── qca956x │ │ │ ├── Makefile │ │ │ ├── clk.c │ │ │ ├── cpu.c │ │ │ ├── ddr.c │ │ │ └── qca956x-ddr-tap.S │ │ └── reset.c │ ├── mach-bmips │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dram.c │ │ └── include │ │ │ └── ioremap.h │ ├── mach-jz47xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── jz4780.h │ │ │ │ ├── jz4780_dram.h │ │ │ │ └── jz4780_gpio.h │ │ ├── jz4780 │ │ │ ├── Makefile │ │ │ ├── TODO │ │ │ ├── gpio.c │ │ │ ├── jz4780.c │ │ │ ├── pll.c │ │ │ ├── reset.c │ │ │ ├── sdram.c │ │ │ └── timer.c │ │ └── start.S │ ├── mach-mscc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── dram.c │ │ ├── gpio.c │ │ ├── include │ │ │ ├── ioremap.h │ │ │ └── mach │ │ │ │ ├── common.h │ │ │ │ ├── ddr.h │ │ │ │ ├── jr2 │ │ │ │ ├── jr2.h │ │ │ │ ├── jr2_devcpu_gcb.h │ │ │ │ ├── jr2_devcpu_gcb_miim_regs.h │ │ │ │ └── jr2_icpu_cfg.h │ │ │ │ ├── luton │ │ │ │ ├── luton.h │ │ │ │ ├── luton_devcpu_gcb.h │ │ │ │ ├── luton_devcpu_gcb_miim_regs.h │ │ │ │ └── luton_icpu_cfg.h │ │ │ │ ├── ocelot │ │ │ │ ├── ocelot.h │ │ │ │ ├── ocelot_devcpu_gcb.h │ │ │ │ ├── ocelot_devcpu_gcb_miim_regs.h │ │ │ │ └── ocelot_icpu_cfg.h │ │ │ │ ├── serval │ │ │ │ ├── serval.h │ │ │ │ ├── serval_devcpu_gcb.h │ │ │ │ ├── serval_devcpu_gcb_miim_regs.h │ │ │ │ └── serval_icpu_cfg.h │ │ │ │ ├── servalt │ │ │ │ ├── servalt.h │ │ │ │ ├── servalt_devcpu_gcb.h │ │ │ │ ├── servalt_devcpu_gcb_miim_regs.h │ │ │ │ └── servalt_icpu_cfg.h │ │ │ │ └── tlb.h │ │ ├── lowlevel_init.S │ │ ├── lowlevel_init_luton.S │ │ ├── phy.c │ │ └── reset.c │ ├── mach-mtmips │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── ddr_cal.c │ │ ├── ddr_init.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── ddr.h │ │ │ │ ├── mc.h │ │ │ │ ├── mt7620-sysc.h │ │ │ │ └── serial.h │ │ ├── mt7620 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── dram.c │ │ │ ├── init.c │ │ │ ├── lowlevel_init.S │ │ │ ├── mt7620.h │ │ │ ├── serial.c │ │ │ └── sysc.c │ │ ├── mt7621 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ ├── mt7621.h │ │ │ ├── serial.c │ │ │ ├── spl │ │ │ │ ├── Makefile │ │ │ │ ├── cps.c │ │ │ │ ├── dram.c │ │ │ │ ├── dram.h │ │ │ │ ├── launch.c │ │ │ │ ├── launch.h │ │ │ │ ├── launch_ll.S │ │ │ │ ├── serial.c │ │ │ │ ├── spl.c │ │ │ │ └── start.S │ │ │ ├── sram_init.S │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ ├── start.S │ │ │ │ └── tpl.c │ │ ├── mt7628 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── init.c │ │ │ ├── lowlevel_init.S │ │ │ ├── mt7628.h │ │ │ └── serial.c │ │ └── spl.c │ ├── mach-octeon │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bootoctlinux.c │ │ ├── cache.c │ │ ├── clock.c │ │ ├── cpu.c │ │ ├── cvmx-agl.c │ │ ├── cvmx-bootmem.c │ │ ├── cvmx-cmd-queue.c │ │ ├── cvmx-coremask.c │ │ ├── cvmx-fau-compat.c │ │ ├── cvmx-fpa-resource.c │ │ ├── cvmx-fpa.c │ │ ├── cvmx-global-resources.c │ │ ├── cvmx-helper-agl.c │ │ ├── cvmx-helper-bgx.c │ │ ├── cvmx-helper-board.c │ │ ├── cvmx-helper-cfg.c │ │ ├── cvmx-helper-fdt.c │ │ ├── cvmx-helper-fpa.c │ │ ├── cvmx-helper-ilk.c │ │ ├── cvmx-helper-ipd.c │ │ ├── cvmx-helper-jtag.c │ │ ├── cvmx-helper-loop.c │ │ ├── cvmx-helper-npi.c │ │ ├── cvmx-helper-pki.c │ │ ├── cvmx-helper-pko.c │ │ ├── cvmx-helper-pko3.c │ │ ├── cvmx-helper-rgmii.c │ │ ├── cvmx-helper-sfp.c │ │ ├── cvmx-helper-sgmii.c │ │ ├── cvmx-helper-util.c │ │ ├── cvmx-helper-xaui.c │ │ ├── cvmx-helper.c │ │ ├── cvmx-ilk.c │ │ ├── cvmx-ipd.c │ │ ├── cvmx-pcie.c │ │ ├── cvmx-pki-resources.c │ │ ├── cvmx-pki.c │ │ ├── cvmx-pko-internal-ports-range.c │ │ ├── cvmx-pko.c │ │ ├── cvmx-pko3-compat.c │ │ ├── cvmx-pko3-queue.c │ │ ├── cvmx-pko3-resources.c │ │ ├── cvmx-pko3.c │ │ ├── cvmx-qlm-tables.c │ │ ├── cvmx-qlm.c │ │ ├── cvmx-range.c │ │ ├── dram.c │ │ ├── include │ │ │ ├── ioremap.h │ │ │ ├── mach │ │ │ │ ├── bootoct_cmd.h │ │ │ │ ├── cavm-reg.h │ │ │ │ ├── clock.h │ │ │ │ ├── cvmx-address.h │ │ │ │ ├── cvmx-agl-defs.h │ │ │ │ ├── cvmx-agl.h │ │ │ │ ├── cvmx-asxx-defs.h │ │ │ │ ├── cvmx-bgxx-defs.h │ │ │ │ ├── cvmx-bootinfo.h │ │ │ │ ├── cvmx-bootloader.h │ │ │ │ ├── cvmx-bootmem.h │ │ │ │ ├── cvmx-ciu-defs.h │ │ │ │ ├── cvmx-cmd-queue.h │ │ │ │ ├── cvmx-config.h │ │ │ │ ├── cvmx-coremask.h │ │ │ │ ├── cvmx-csr-enums.h │ │ │ │ ├── cvmx-csr.h │ │ │ │ ├── cvmx-dbg-defs.h │ │ │ │ ├── cvmx-dpi-defs.h │ │ │ │ ├── cvmx-dtx-defs.h │ │ │ │ ├── cvmx-error.h │ │ │ │ ├── cvmx-fau.h │ │ │ │ ├── cvmx-fpa-defs.h │ │ │ │ ├── cvmx-fpa.h │ │ │ │ ├── cvmx-fpa1.h │ │ │ │ ├── cvmx-fpa3.h │ │ │ │ ├── cvmx-fuse.h │ │ │ │ ├── cvmx-global-resources.h │ │ │ │ ├── cvmx-gmx.h │ │ │ │ ├── cvmx-gmxx-defs.h │ │ │ │ ├── cvmx-gserx-defs.h │ │ │ │ ├── cvmx-helper-agl.h │ │ │ │ ├── cvmx-helper-bgx.h │ │ │ │ ├── cvmx-helper-board.h │ │ │ │ ├── cvmx-helper-cfg.h │ │ │ │ ├── cvmx-helper-errata.h │ │ │ │ ├── cvmx-helper-fdt.h │ │ │ │ ├── cvmx-helper-fpa.h │ │ │ │ ├── cvmx-helper-gpio.h │ │ │ │ ├── cvmx-helper-ilk.h │ │ │ │ ├── cvmx-helper-ipd.h │ │ │ │ ├── cvmx-helper-jtag.h │ │ │ │ ├── cvmx-helper-loop.h │ │ │ │ ├── cvmx-helper-npi.h │ │ │ │ ├── cvmx-helper-pki.h │ │ │ │ ├── cvmx-helper-pko.h │ │ │ │ ├── cvmx-helper-pko3.h │ │ │ │ ├── cvmx-helper-rgmii.h │ │ │ │ ├── cvmx-helper-sfp.h │ │ │ │ ├── cvmx-helper-sgmii.h │ │ │ │ ├── cvmx-helper-spi.h │ │ │ │ ├── cvmx-helper-srio.h │ │ │ │ ├── cvmx-helper-util.h │ │ │ │ ├── cvmx-helper-xaui.h │ │ │ │ ├── cvmx-helper.h │ │ │ │ ├── cvmx-hwfau.h │ │ │ │ ├── cvmx-hwpko.h │ │ │ │ ├── cvmx-ilk-defs.h │ │ │ │ ├── cvmx-ilk.h │ │ │ │ ├── cvmx-iob-defs.h │ │ │ │ ├── cvmx-ipd-defs.h │ │ │ │ ├── cvmx-ipd.h │ │ │ │ ├── cvmx-l2c-defs.h │ │ │ │ ├── cvmx-lbk-defs.h │ │ │ │ ├── cvmx-lmcx-defs.h │ │ │ │ ├── cvmx-mdio.h │ │ │ │ ├── cvmx-mio-defs.h │ │ │ │ ├── cvmx-mio-emm-defs.h │ │ │ │ ├── cvmx-npei-defs.h │ │ │ │ ├── cvmx-npi-defs.h │ │ │ │ ├── cvmx-packet.h │ │ │ │ ├── cvmx-pcie.h │ │ │ │ ├── cvmx-pcieepx-defs.h │ │ │ │ ├── cvmx-pciercx-defs.h │ │ │ │ ├── cvmx-pcsx-defs.h │ │ │ │ ├── cvmx-pcsxx-defs.h │ │ │ │ ├── cvmx-pemx-defs.h │ │ │ │ ├── cvmx-pexp-defs.h │ │ │ │ ├── cvmx-pip-defs.h │ │ │ │ ├── cvmx-pip.h │ │ │ │ ├── cvmx-pki-cluster.h │ │ │ │ ├── cvmx-pki-defs.h │ │ │ │ ├── cvmx-pki-resources.h │ │ │ │ ├── cvmx-pki.h │ │ │ │ ├── cvmx-pko-defs.h │ │ │ │ ├── cvmx-pko-internal-ports-range.h │ │ │ │ ├── cvmx-pko.h │ │ │ │ ├── cvmx-pko3-queue.h │ │ │ │ ├── cvmx-pko3-resources.h │ │ │ │ ├── cvmx-pko3.h │ │ │ │ ├── cvmx-pow-defs.h │ │ │ │ ├── cvmx-pow.h │ │ │ │ ├── cvmx-qlm.h │ │ │ │ ├── cvmx-range.h │ │ │ │ ├── cvmx-regs.h │ │ │ │ ├── cvmx-rst-defs.h │ │ │ │ ├── cvmx-sata-defs.h │ │ │ │ ├── cvmx-scratch.h │ │ │ │ ├── cvmx-sli-defs.h │ │ │ │ ├── cvmx-smix-defs.h │ │ │ │ ├── cvmx-sriomaintx-defs.h │ │ │ │ ├── cvmx-sriox-defs.h │ │ │ │ ├── cvmx-sso-defs.h │ │ │ │ ├── cvmx-wqe.h │ │ │ │ ├── cvmx-xcv-defs.h │ │ │ │ ├── octeon-feature.h │ │ │ │ ├── octeon-model.h │ │ │ │ ├── octeon_ddr.h │ │ │ │ ├── octeon_eth.h │ │ │ │ ├── octeon_fdt.h │ │ │ │ ├── octeon_pci.h │ │ │ │ └── octeon_qlm.h │ │ │ └── mangle-port.h │ │ ├── lowlevel_init.S │ │ ├── octeon_fdt.c │ │ └── octeon_qlm.c │ └── mach-pic32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── include │ │ └── mach │ │ │ ├── ddr.h │ │ │ └── pic32.h │ │ ├── lowlevel_init.S │ │ └── reset.c ├── nios2 │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── exceptions.S │ │ ├── interrupts.c │ │ ├── start.S │ │ ├── traps.c │ │ └── u-boot.lds │ ├── dts │ │ ├── 10m50_devboard.dts │ │ ├── 3c120_devboard.dts │ │ ├── Makefile │ │ └── include │ │ │ └── dt-bindings │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── bitops │ │ │ ├── atomic.h │ │ │ ├── ffs.h │ │ │ └── non-atomic.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── nios2.h │ │ │ ├── opcodes.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── libgcc.c │ │ └── longlong.h ├── powerpc │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── mpc83xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── arbiter │ │ │ │ ├── Kconfig │ │ │ │ └── arbiter.h │ │ │ ├── bats │ │ │ │ ├── Kconfig │ │ │ │ └── bats.h │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── ecc.c │ │ │ ├── elbc │ │ │ │ ├── Kconfig │ │ │ │ └── elbc.h │ │ │ ├── fdt.c │ │ │ ├── hid │ │ │ │ ├── Kconfig │ │ │ │ └── hid.h │ │ │ ├── hrcw │ │ │ │ ├── Kconfig │ │ │ │ └── hrcw.h │ │ │ ├── initreg │ │ │ │ ├── Kconfig │ │ │ │ ├── Kconfig.lcrr │ │ │ │ ├── Kconfig.spcr │ │ │ │ └── initreg.h │ │ │ ├── interrupts.c │ │ │ ├── law.c │ │ │ ├── lblaw │ │ │ │ ├── Kconfig │ │ │ │ └── lblaw.h │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── qe_io.c │ │ │ ├── serdes.c │ │ │ ├── spd_sdram.c │ │ │ ├── speed.c │ │ │ ├── spl_minimal.c │ │ │ ├── start.S │ │ │ ├── sysio │ │ │ │ ├── Kconfig │ │ │ │ ├── Kconfig.mpc8308 │ │ │ │ └── sysio.h │ │ │ ├── traps.c │ │ │ ├── u-boot-spl.lds │ │ │ └── u-boot.lds │ │ ├── mpc85xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── b4860_ids.c │ │ │ ├── b4860_serdes.c │ │ │ ├── bsc9132_serdes.c │ │ │ ├── c29x_serdes.c │ │ │ ├── cmd_errata.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── cpu_init_early.c │ │ │ ├── fdt.c │ │ │ ├── fsl_corenet2_serdes.c │ │ │ ├── fsl_corenet2_serdes.h │ │ │ ├── fsl_corenet_serdes.c │ │ │ ├── fsl_corenet_serdes.h │ │ │ ├── interrupts.c │ │ │ ├── liodn.c │ │ │ ├── mp.c │ │ │ ├── mp.h │ │ │ ├── mpc8536_serdes.c │ │ │ ├── mpc8544_serdes.c │ │ │ ├── mpc8548_serdes.c │ │ │ ├── p1010_serdes.c │ │ │ ├── p1021_serdes.c │ │ │ ├── p1023_serdes.c │ │ │ ├── p2020_serdes.c │ │ │ ├── p2041_ids.c │ │ │ ├── p2041_serdes.c │ │ │ ├── p3041_ids.c │ │ │ ├── p3041_serdes.c │ │ │ ├── p4080_ids.c │ │ │ ├── p4080_serdes.c │ │ │ ├── p5040_ids.c │ │ │ ├── p5040_serdes.c │ │ │ ├── portals.c │ │ │ ├── qe_io.c │ │ │ ├── release.S │ │ │ ├── resetvec.S │ │ │ ├── speed.c │ │ │ ├── spl_minimal.c │ │ │ ├── start.S │ │ │ ├── t1024_ids.c │ │ │ ├── t1024_serdes.c │ │ │ ├── t1040_ids.c │ │ │ ├── t1040_serdes.c │ │ │ ├── t2080_ids.c │ │ │ ├── t2080_serdes.c │ │ │ ├── t4240_ids.c │ │ │ ├── t4240_serdes.c │ │ │ ├── tlb.c │ │ │ ├── traps.c │ │ │ ├── u-boot-spl.lds │ │ │ └── u-boot.lds │ │ ├── mpc8xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── fdt.c │ │ │ ├── immap.c │ │ │ ├── interrupts.c │ │ │ ├── micropatch_smc.c │ │ │ ├── micropatch_usb_sof.c │ │ │ ├── speed.c │ │ │ ├── start.S │ │ │ └── traps.c │ │ └── mpc8xxx │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── fdt.c │ │ │ ├── fsl_lbc.c │ │ │ ├── fsl_pamu.c │ │ │ ├── law.c │ │ │ ├── pamu_table.c │ │ │ └── srio.c │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── cmpc885.dts │ │ ├── cmpcpro.dts │ │ ├── e500mc_power_isa.dtsi │ │ ├── e500v2_power_isa.dtsi │ │ ├── e5500_power_isa.dtsi │ │ ├── e6500_power_isa.dtsi │ │ ├── elo3-dma-0.dtsi │ │ ├── elo3-dma-1.dtsi │ │ ├── fsl │ │ │ ├── p2020si-post.dtsi │ │ │ └── p2020si-pre.dtsi │ │ ├── gazerbeam.dts │ │ ├── gdsys │ │ │ ├── gazerbeam-base.dtsi │ │ │ ├── gazerbeam-uboot.dtsi │ │ │ ├── mpc8308.dtsi │ │ │ └── soc │ │ │ │ ├── i2c │ │ │ │ ├── cirrus-audio-codec.dtsi │ │ │ │ └── dallas-rtc.dtsi │ │ │ │ ├── lbc │ │ │ │ └── gazerbeam.dtsi │ │ │ │ └── nor │ │ │ │ └── flash-80k-partition.dtsi │ │ ├── km8321-uboot.dtsi │ │ ├── km8321.dtsi │ │ ├── km836x-uboot.dtsi │ │ ├── km836x.dtsi │ │ ├── kmcent2-u-boot.dtsi │ │ ├── kmcent2.dts │ │ ├── kmcoge5ne-uboot.dtsi │ │ ├── kmcoge5ne.dts │ │ ├── kmeter1-uboot.dtsi │ │ ├── kmeter1.dts │ │ ├── kmopti2.dts │ │ ├── kmsupc5.dts │ │ ├── kmsupm5.dts │ │ ├── kmtepr2.dts │ │ ├── kmtuge1.dts │ │ ├── kmtuxa1.dts │ │ ├── mcr3000.dts │ │ ├── mpc8379erdb.dts │ │ ├── mpc8548-post.dtsi │ │ ├── mpc8548.dtsi │ │ ├── mpc8548cds.dts │ │ ├── mpc8548cds_36b.dts │ │ ├── p1010rdb-pa.dts │ │ ├── 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 │ │ ├── p1020-post.dtsi │ │ ├── p1020.dtsi │ │ ├── p1020rdb-pc.dts │ │ ├── p1020rdb-pc.dtsi │ │ ├── p1020rdb-pc_36b.dts │ │ ├── p1020rdb-pd.dts │ │ ├── p2020-post.dtsi │ │ ├── p2020.dtsi │ │ ├── p2020rdb-pc.dts │ │ ├── p2020rdb-pc.dtsi │ │ ├── p2020rdb-pc_36b.dts │ │ ├── p2041.dtsi │ │ ├── p2041rdb.dts │ │ ├── p2041si-post.dtsi │ │ ├── p3041.dtsi │ │ ├── p3041ds.dts │ │ ├── p3041si-post.dtsi │ │ ├── p4080.dtsi │ │ ├── p4080ds.dts │ │ ├── p4080si-post.dtsi │ │ ├── p5040.dtsi │ │ ├── p5040ds.dts │ │ ├── p5040si-post.dtsi │ │ ├── pq3-dma-0.dtsi │ │ ├── pq3-dma-1.dtsi │ │ ├── pq3-duart-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-timer-B.dtsi │ │ ├── pq3-mpic.dtsi │ │ ├── pq3-sec3.1-0.dtsi │ │ ├── qemu-ppce500.dts │ │ ├── qoriq-bman1.dtsi │ │ ├── qoriq-clockgen1.dtsi │ │ ├── qoriq-clockgen2.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-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-qman3.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-usb2-dr-0.dtsi │ │ ├── qoriq-usb2-mph-0.dtsi │ │ ├── socrates-u-boot.dtsi │ │ ├── socrates.dts │ │ ├── t1023si-post.dtsi │ │ ├── t1024rdb-u-boot.dtsi │ │ ├── t1024rdb.dts │ │ ├── t1024si-post.dtsi │ │ ├── t102x.dtsi │ │ ├── t1040si-post.dtsi │ │ ├── t1042d4rdb-u-boot.dtsi │ │ ├── t1042d4rdb.dts │ │ ├── t1042si-post.dtsi │ │ ├── t104x.dtsi │ │ ├── t104xsi-pre.dtsi │ │ ├── t2080.dtsi │ │ ├── t2080qds.dts │ │ ├── t2080rdb-u-boot.dtsi │ │ ├── t2080rdb.dts │ │ ├── t2080si-post.dtsi │ │ ├── t4240.dtsi │ │ ├── t4240rdb-u-boot.dtsi │ │ ├── t4240rdb.dts │ │ ├── t4240si-post.dtsi │ │ ├── turris1x-u-boot.dtsi │ │ ├── turris1x.dts │ │ └── u-boot.dtsi │ ├── include │ │ └── asm │ │ │ ├── arch-mpc83xx │ │ │ ├── gpio.h │ │ │ └── soc.h │ │ │ ├── arch-mpc85xx │ │ │ └── gpio.h │ │ │ ├── arch-mpc8xx │ │ │ └── gpio.h │ │ │ ├── arch-ppc4xx │ │ │ └── gpio.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── config_mpc85xx.h │ │ │ ├── cpm_8xx.h │ │ │ ├── dma-mapping.h │ │ │ ├── e300.h │ │ │ ├── fsl_dma.h │ │ │ ├── fsl_fdt.h │ │ │ ├── fsl_i2c.h │ │ │ ├── fsl_law.h │ │ │ ├── fsl_lbc.h │ │ │ ├── fsl_liodn.h │ │ │ ├── fsl_mpc83xx_serdes.h │ │ │ ├── fsl_pamu.h │ │ │ ├── fsl_pci.h │ │ │ ├── fsl_portals.h │ │ │ ├── fsl_secure_boot.h │ │ │ ├── fsl_serdes.h │ │ │ ├── fsl_srio.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── immap_83xx.h │ │ │ ├── immap_85xx.h │ │ │ ├── immap_8xx.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── iopin_8xx.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── mp.h │ │ │ ├── mpc8349_pci.h │ │ │ ├── mpc85xx_gpio.h │ │ │ ├── mpc8xxx_spi.h │ │ │ ├── posix_types.h │ │ │ ├── ppc.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── sigcontext.h │ │ │ ├── signal.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── types.h │ │ │ ├── u-boot-ppc.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── _ashldi3.S │ │ ├── _ashrdi3.S │ │ ├── _lshrdi3.S │ │ ├── bdinfo.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── extable.c │ │ ├── interrupts.c │ │ ├── kgdb.c │ │ ├── misc.c │ │ ├── ppccache.S │ │ ├── ppcstring.S │ │ ├── reloc.S │ │ ├── spl.c │ │ ├── stack.c │ │ ├── ticks.S │ │ ├── time.c │ │ └── traps.c ├── riscv │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── andes │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ └── spl.c │ │ ├── ast2700 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── cpu.c │ │ ├── cpu.c │ │ ├── cv1800b │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── dram.c │ │ ├── fu540 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── fu740 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── generic │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── dram.c │ │ ├── jh7110 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── k1 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── dram.c │ │ ├── k230 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── dram.c │ │ ├── mtrap.S │ │ ├── start.S │ │ ├── th1520 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── ae350-u-boot.dtsi │ │ ├── ae350_32.dts │ │ ├── ae350_64.dts │ │ ├── ast2700-ibex.dts │ │ ├── ast2700-u-boot.dtsi │ │ ├── ast2700.dtsi │ │ ├── binman.dtsi │ │ ├── cv1800b-milkv-duo.dts │ │ ├── cv1800b.dtsi │ │ ├── cv18xx.dtsi │ │ ├── fu540-c000-u-boot.dtsi │ │ ├── fu540-c000.dtsi │ │ ├── fu540-hifive-unleashed-a00-ddr.dtsi │ │ ├── fu740-c000-u-boot.dtsi │ │ ├── fu740-c000.dtsi │ │ ├── fu740-hifive-unmatched-a00-ddr.dtsi │ │ ├── hifive-unleashed-a00-u-boot.dtsi │ │ ├── hifive-unleashed-a00.dts │ │ ├── hifive-unmatched-a00-u-boot.dtsi │ │ ├── hifive-unmatched-a00.dts │ │ ├── jh7110-common-u-boot.dtsi │ │ ├── jh7110-deepcomputing-fml13v01-u-boot.dtsi │ │ ├── jh7110-milkv-mars-u-boot.dtsi │ │ ├── jh7110-pine64-star64-u-boot.dtsi │ │ ├── jh7110-starfive-visionfive-2-v1.2a-u-boot.dtsi │ │ ├── jh7110-starfive-visionfive-2-v1.3b-u-boot.dtsi │ │ ├── jh7110-u-boot.dtsi │ │ ├── k1-bananapi-f3.dts │ │ ├── k1-pinctrl.dtsi │ │ ├── k1.dtsi │ │ ├── k210-maix-bit.dts │ │ ├── k210.dtsi │ │ ├── k230-canmv.dts │ │ ├── k230-u-boot.dtsi │ │ ├── k230.dtsi │ │ ├── openpiton-riscv64.dts │ │ ├── qemu-virt32.dts │ │ ├── qemu-virt64.dts │ │ ├── sg2002-licheerv-nano-b.dts │ │ ├── sg2002.dtsi │ │ ├── starfive-visionfive2-binman.dtsi │ │ ├── sunxi-d1-t113.dtsi │ │ ├── sunxi-d1s-t113.dtsi │ │ ├── th1520-lichee-module-4a.dtsi │ │ ├── th1520-lichee-pi-4a.dts │ │ ├── th1520.dtsi │ │ ├── thead-th1520-binman.dtsi │ │ ├── xilinx-mbv32.dts │ │ └── xilinx-mbv64.dts │ ├── include │ │ └── asm │ │ │ ├── acpi_table.h │ │ │ ├── arch-andes │ │ │ └── csr.h │ │ │ ├── arch-ast2700 │ │ │ ├── fmc_hdr.h │ │ │ ├── scu.h │ │ │ ├── sdram.h │ │ │ └── sli.h │ │ │ ├── arch-fu540 │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── reset.h │ │ │ └── spl.h │ │ │ ├── arch-fu740 │ │ │ ├── clk.h │ │ │ ├── eeprom.h │ │ │ ├── gpio.h │ │ │ ├── reset.h │ │ │ └── spl.h │ │ │ ├── arch-generic │ │ │ ├── clk.h │ │ │ └── gpio.h │ │ │ ├── arch-jh7110 │ │ │ ├── eeprom.h │ │ │ ├── gpio.h │ │ │ ├── regs.h │ │ │ └── spl.h │ │ │ ├── arch-th1520 │ │ │ ├── cpu.h │ │ │ ├── iopmp.h │ │ │ └── spl.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── barrier.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── cpufeature.h │ │ │ ├── csr.h │ │ │ ├── dma-mapping.h │ │ │ ├── encoding.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── hwcap.h │ │ │ ├── insn-def.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sbi.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── smp.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── syscon.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot-riscv.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── aclint_ipi.c │ │ ├── andes_plicsw.c │ │ ├── asm-offsets.c │ │ ├── bdinfo.c │ │ ├── board.c │ │ ├── boot.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── crt0_riscv_efi.S │ │ ├── elf_riscv32_efi.lds │ │ ├── elf_riscv64_efi.lds │ │ ├── fdt_fixup.c │ │ ├── image.c │ │ ├── interrupts.c │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── reloc_riscv_efi.c │ │ ├── reset.c │ │ ├── sbi.c │ │ ├── sbi_ipi.c │ │ ├── semihosting.S │ │ ├── setjmp.S │ │ ├── sifive_cache.c │ │ ├── smp.c │ │ ├── spl.c │ │ ├── strcmp_zbb.S │ │ ├── strlen_zbb.S │ │ ├── strncmp_zbb.S │ │ └── thead_cmo.c ├── sandbox │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── eth-raw-os.c │ │ ├── initjmp.c │ │ ├── os.c │ │ ├── sdl.c │ │ ├── spl.c │ │ ├── start.c │ │ ├── state.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── cedit.dtsi │ │ ├── cros-ec-keyboard.dtsi │ │ ├── include │ │ │ └── dt-bindings │ │ ├── other.dts │ │ ├── overlay0.dtso │ │ ├── overlay1.dtso │ │ ├── sandbox.dts │ │ ├── sandbox.dtsi │ │ ├── sandbox64.dts │ │ ├── sandbox_capsule.dtsi │ │ ├── sandbox_pmic.dtsi │ │ ├── sandbox_vpl.dtsi │ │ └── test.dts │ ├── include │ │ └── asm │ │ │ ├── acpi_table.h │ │ │ ├── axi.h │ │ │ ├── barrier.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── clk.h │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── dma-mapping.h │ │ │ ├── eth-raw-os.h │ │ │ ├── eth.h │ │ │ ├── fuzzing_engine.h │ │ │ ├── getopt.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── handoff.h │ │ │ ├── i2c.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── linkage.h │ │ │ ├── main.h │ │ │ ├── malloc.h │ │ │ ├── mbox.h │ │ │ ├── posix_types.h │ │ │ ├── power-domain.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── reset.h │ │ │ ├── rtc.h │ │ │ ├── sandbox_arm_ffa.h │ │ │ ├── sandbox_arm_ffa_priv.h │ │ │ ├── scmi_test.h │ │ │ ├── sdl.h │ │ │ ├── sections.h │ │ │ ├── serial.h │ │ │ ├── setjmp.h │ │ │ ├── spi.h │ │ │ ├── spl.h │ │ │ ├── state.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── test.h │ │ │ ├── types.h │ │ │ ├── u-boot-sandbox.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── acpi_table.c │ │ ├── bootm.c │ │ ├── crt0_sandbox_efi.S │ │ ├── fdt_fixup.c │ │ ├── interrupts.c │ │ ├── pci_io.c │ │ └── reloc_sandbox_efi.c ├── sh │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── sh4 │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ └── interrupts.c │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ └── sh7751-r2dplus.dts │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── cpu_sh4.h │ │ │ ├── cpu_sh7722.h │ │ │ ├── cpu_sh7723.h │ │ │ ├── cpu_sh7734.h │ │ │ ├── cpu_sh7750.h │ │ │ ├── cpu_sh7752.h │ │ │ ├── cpu_sh7753.h │ │ │ ├── cpu_sh7757.h │ │ │ ├── cpu_sh7763.h │ │ │ ├── cpu_sh7780.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── io.h │ │ │ ├── irqflags.h │ │ │ ├── linkage.h │ │ │ ├── macro.h │ │ │ ├── pci.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ └── zimage.h │ └── lib │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ashiftrt.S │ │ ├── ashldi3.c │ │ ├── ashlsi3.S │ │ ├── ashrdi3.c │ │ ├── ashrsi3.S │ │ ├── board.c │ │ ├── bootm.c │ │ ├── libgcc.h │ │ ├── lshrdi3.c │ │ ├── lshrsi3.S │ │ ├── movmem.S │ │ ├── start.S │ │ ├── time.c │ │ ├── time_sh2.c │ │ ├── udiv_qrnnd.S │ │ ├── udivsi3.S │ │ ├── udivsi3_i4i-Os.S │ │ ├── udivsi3_i4i.S │ │ └── zimageboot.c ├── u-boot-elf.lds ├── x86 │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── acpi_gpe.c │ │ ├── apollolake │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── cpu.c │ │ │ ├── cpu_common.c │ │ │ ├── cpu_spl.c │ │ │ ├── fsp_bindings.c │ │ │ ├── fsp_m.c │ │ │ ├── fsp_s.c │ │ │ ├── hostbridge.c │ │ │ ├── lpc.c │ │ │ ├── pch.c │ │ │ ├── pmc.c │ │ │ ├── punit.c │ │ │ ├── spl.c │ │ │ ├── systemagent.c │ │ │ └── uart.c │ │ ├── baytrail │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── cpu.c │ │ │ ├── early_uart.c │ │ │ ├── fsp_configs.c │ │ │ └── valleyview.c │ │ ├── braswell │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── braswell.c │ │ │ ├── early_uart.c │ │ │ └── fsp_configs.c │ │ ├── broadwell │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── adsp.c │ │ │ ├── cpu.c │ │ │ ├── cpu_from_spl.c │ │ │ ├── cpu_full.c │ │ │ ├── iobp.c │ │ │ ├── lpc.c │ │ │ ├── me.c │ │ │ ├── northbridge.c │ │ │ ├── pch.c │ │ │ ├── pinctrl_broadwell.c │ │ │ ├── power_state.c │ │ │ ├── refcode.c │ │ │ ├── sata.c │ │ │ └── sdram.c │ │ ├── call32.S │ │ ├── config.mk │ │ ├── coreboot │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── car.S │ │ │ ├── coreboot.c │ │ │ ├── coreboot_spl.c │ │ │ ├── sdram.c │ │ │ └── timestamp.c │ │ ├── cpu.c │ │ ├── cpu_x86.c │ │ ├── efi │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── app.c │ │ │ ├── car.S │ │ │ ├── payload.c │ │ │ └── sdram.c │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── call64.S │ │ │ ├── cpu.c │ │ │ ├── interrupt.c │ │ │ └── setjmp.S │ │ ├── intel_common │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── car.S │ │ │ ├── car2.S │ │ │ ├── car2_uninit.S │ │ │ ├── cpu.c │ │ │ ├── cpu_from_spl.c │ │ │ ├── fast_spi.c │ │ │ ├── generic_wifi.c │ │ │ ├── intel_opregion.c │ │ │ ├── itss.c │ │ │ ├── lpc.c │ │ │ ├── lpss.c │ │ │ ├── me_status.c │ │ │ ├── microcode.c │ │ │ ├── mrc.c │ │ │ ├── p2sb.c │ │ │ ├── pch.c │ │ │ └── report_platform.c │ │ ├── ioapic.c │ │ ├── irq.c │ │ ├── ivybridge │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bd82x6x.c │ │ │ ├── cpu.c │ │ │ ├── early_me.c │ │ │ ├── fsp_configs.c │ │ │ ├── ivybridge.c │ │ │ ├── lpc.c │ │ │ ├── model_206ax.c │ │ │ ├── northbridge.c │ │ │ ├── sata.c │ │ │ ├── sdram.c │ │ │ └── sdram_nop.c │ │ ├── lapic.c │ │ ├── mp_init.c │ │ ├── mtrr.c │ │ ├── pci.c │ │ ├── qemu │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── car.S │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ ├── e820.c │ │ │ └── qemu.c │ │ ├── qfw_cpu.c │ │ ├── quark │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── car.S │ │ │ ├── dram.c │ │ │ ├── hte.c │ │ │ ├── hte.h │ │ │ ├── mrc.c │ │ │ ├── mrc_util.c │ │ │ ├── mrc_util.h │ │ │ ├── msg_port.c │ │ │ ├── quark.c │ │ │ ├── smc.c │ │ │ └── smc.h │ │ ├── queensbay │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── fsp_configs.c │ │ │ └── tnc.c │ │ ├── resetvec.S │ │ ├── sipi_vector.S │ │ ├── slimbootloader │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── car.S │ │ │ ├── sdram.c │ │ │ ├── serial.c │ │ │ └── slimbootloader.c │ │ ├── start.S │ │ ├── start16.S │ │ ├── start64.S │ │ ├── start_from_spl.S │ │ ├── start_from_tpl.S │ │ ├── tangier │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── car.S │ │ │ ├── pinmux.c │ │ │ ├── sdram.c │ │ │ ├── sysreset.c │ │ │ └── tangier.c │ │ ├── turbo.c │ │ ├── u-boot-64.lds │ │ ├── u-boot-spl.lds │ │ ├── u-boot.lds │ │ ├── wakeup.S │ │ └── x86_64 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── misc.c │ │ │ └── setjmp.S │ ├── dts │ │ ├── Makefile │ │ ├── bayleybay.dts │ │ ├── baytrail_som-db5800-som-6867.dts │ │ ├── cherryhill.dts │ │ ├── chromebook_coral.dts │ │ ├── chromebook_link.dts │ │ ├── chromebook_samus.dts │ │ ├── chromebox_panther.dts │ │ ├── conga-qeval20-qa3-e3845.dts │ │ ├── coreboot-u-boot.dtsi │ │ ├── coreboot.dts │ │ ├── cougarcanyon2.dts │ │ ├── crownbay.dts │ │ ├── dfi-bt700-q7x-151.dts │ │ ├── dfi-bt700.dtsi │ │ ├── edison.dts │ │ ├── efi-x86_app.dts │ │ ├── efi-x86_payload.dts │ │ ├── emulation-u-boot.dtsi │ │ ├── galileo.dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── keyboard.dtsi │ │ ├── microcode │ │ │ ├── m0130673325.dtsi │ │ │ ├── m0130679907.dtsi │ │ │ ├── m01406c2220.dtsi │ │ │ ├── m01406c3363.dtsi │ │ │ ├── m01406c440a.dtsi │ │ │ ├── m0220661105_cv.dtsi │ │ │ ├── m0230671117.dtsi │ │ │ ├── m12206a7_00000029.dtsi │ │ │ ├── m12306a2_00000008.dtsi │ │ │ ├── m12306a4_00000007.dtsi │ │ │ ├── m12306a5_00000007.dtsi │ │ │ ├── m12306a8_00000010.dtsi │ │ │ ├── m12306a9_0000001b.dtsi │ │ │ ├── m7240651_0000001c.dtsi │ │ │ └── mc0306d4_00000018.dtsi │ │ ├── minnowmax.dts │ │ ├── pcspkr.dtsi │ │ ├── qemu-x86_i440fx.dts │ │ ├── qemu-x86_q35.dts │ │ ├── quark-u-boot.dtsi │ │ ├── reset.dtsi │ │ ├── rtc.dtsi │ │ ├── serial.dtsi │ │ ├── skeleton.dtsi │ │ ├── slimbootloader.dts │ │ ├── smbios.dtsi │ │ ├── theadorable-x86-dfi-bt700.dts │ │ ├── tsc_timer.dtsi │ │ └── u-boot.dtsi │ ├── include │ │ └── asm │ │ │ ├── acpi.h │ │ │ ├── acpi │ │ │ ├── chromeos.asl │ │ │ ├── cpu.asl │ │ │ ├── cros_ec │ │ │ │ ├── ac.asl │ │ │ │ ├── als.asl │ │ │ │ ├── battery.asl │ │ │ │ ├── cros_ec.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── emem.asl │ │ │ │ ├── keyboard_backlight.asl │ │ │ │ ├── pd.asl │ │ │ │ ├── superio.asl │ │ │ │ └── tbmc.asl │ │ │ ├── cros_gnvs.asl │ │ │ ├── debug.asl │ │ │ ├── dptf │ │ │ │ ├── charger.asl │ │ │ │ ├── cpu.asl │ │ │ │ ├── dptf.asl │ │ │ │ ├── fan.asl │ │ │ │ └── thermal.asl │ │ │ ├── global_nvs.h │ │ │ ├── globutil.asl │ │ │ ├── irq_helper.h │ │ │ ├── irqlinks.asl │ │ │ ├── irqroute.asl │ │ │ ├── lpc.asl │ │ │ ├── pci_osc.asl │ │ │ ├── pcr.asl │ │ │ ├── ramoops.asl │ │ │ ├── sleepstates.asl │ │ │ ├── statdef.asl │ │ │ └── vbnv_layout.h │ │ │ ├── acpi_nhlt.h │ │ │ ├── acpi_table.h │ │ │ ├── acpigen.h │ │ │ ├── arch-apollolake │ │ │ ├── acpi.h │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── gpiolib.asl │ │ │ │ ├── lpss.asl │ │ │ │ ├── northbridge.asl │ │ │ │ ├── pch_hda.asl │ │ │ │ ├── pci_irqs.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── pmc_ipc.asl │ │ │ │ ├── scs.asl │ │ │ │ ├── soc_int.asl │ │ │ │ ├── southbridge.asl │ │ │ │ ├── xhci.asl │ │ │ │ ├── xhci_apl_ports.asl │ │ │ │ └── xhci_glk_ports.asl │ │ │ ├── cpu.h │ │ │ ├── fsp │ │ │ │ ├── fsp_configs.h │ │ │ │ ├── fsp_m_upd.h │ │ │ │ ├── fsp_s_upd.h │ │ │ │ └── fsp_vpd.h │ │ │ ├── fsp_bindings.h │ │ │ ├── global_nvs.h │ │ │ ├── gpe.h │ │ │ ├── gpio.h │ │ │ ├── hostbridge.h │ │ │ ├── iomap.h │ │ │ ├── lpc.h │ │ │ ├── pch.h │ │ │ ├── pm.h │ │ │ ├── pmc.h │ │ │ ├── systemagent.h │ │ │ └── uart.h │ │ │ ├── arch-baytrail │ │ │ ├── acpi │ │ │ │ ├── global_nvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── irqroute.h │ │ │ │ ├── lpc.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── southcluster.asl │ │ │ │ ├── usb.asl │ │ │ │ └── xhci.asl │ │ │ ├── device.h │ │ │ ├── fsp │ │ │ │ ├── fsp_configs.h │ │ │ │ └── fsp_vpd.h │ │ │ ├── global_nvs.h │ │ │ ├── iomap.h │ │ │ └── irq.h │ │ │ ├── arch-braswell │ │ │ ├── fsp │ │ │ │ ├── fsp_configs.h │ │ │ │ └── fsp_vpd.h │ │ │ ├── gpio.h │ │ │ └── iomap.h │ │ │ ├── arch-broadwell │ │ │ ├── adsp.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ ├── lpc.h │ │ │ ├── me.h │ │ │ ├── pch.h │ │ │ ├── pei_data.h │ │ │ ├── pm.h │ │ │ ├── rcb.h │ │ │ ├── serialio.h │ │ │ └── spi.h │ │ │ ├── arch-coreboot │ │ │ └── timestamp.h │ │ │ ├── arch-ivybridge │ │ │ ├── fsp │ │ │ │ ├── fsp_configs.h │ │ │ │ └── fsp_vpd.h │ │ │ ├── me.h │ │ │ ├── model_206ax.h │ │ │ ├── pch.h │ │ │ ├── pei_data.h │ │ │ └── sandybridge.h │ │ │ ├── arch-qemu │ │ │ ├── device.h │ │ │ └── qemu.h │ │ │ ├── arch-quark │ │ │ ├── acpi │ │ │ │ ├── global_nvs.asl │ │ │ │ ├── irqroute.h │ │ │ │ ├── lpc.asl │ │ │ │ ├── platform.asl │ │ │ │ └── southcluster.asl │ │ │ ├── device.h │ │ │ ├── global_nvs.h │ │ │ ├── iomap.h │ │ │ ├── irq.h │ │ │ ├── mrc.h │ │ │ ├── msg_port.h │ │ │ └── quark.h │ │ │ ├── arch-queensbay │ │ │ ├── device.h │ │ │ ├── fsp │ │ │ │ ├── fsp_configs.h │ │ │ │ └── fsp_vpd.h │ │ │ └── tnc.h │ │ │ ├── arch-slimbootloader │ │ │ └── slimbootloader.h │ │ │ ├── arch-tangier │ │ │ ├── acpi │ │ │ │ ├── global_nvs.asl │ │ │ │ ├── platform.asl │ │ │ │ └── southcluster.asl │ │ │ ├── global_nvs.h │ │ │ └── iomap.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── bootm.h │ │ │ ├── bootparam.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cb_sysinfo.h │ │ │ ├── cmos_layout.h │ │ │ ├── config.h │ │ │ ├── control_regs.h │ │ │ ├── coreboot_tables.h │ │ │ ├── cpu.h │ │ │ ├── cpu_common.h │ │ │ ├── cpu_x86.h │ │ │ ├── dma-mapping.h │ │ │ ├── e820.h │ │ │ ├── early_cmos.h │ │ │ ├── efi.h │ │ │ ├── fast_spi.h │ │ │ ├── fsp │ │ │ ├── fsp_api.h │ │ │ ├── fsp_azalia.h │ │ │ ├── fsp_bootmode.h │ │ │ ├── fsp_fv.h │ │ │ ├── fsp_hob.h │ │ │ ├── fsp_infoheader.h │ │ │ └── fsp_support.h │ │ │ ├── fsp1 │ │ │ ├── fsp_api.h │ │ │ ├── fsp_ffs.h │ │ │ └── fsp_support.h │ │ │ ├── fsp2 │ │ │ ├── fsp_api.h │ │ │ └── fsp_internal.h │ │ │ ├── fsp_arch.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── handoff.h │ │ │ ├── hob.h │ │ │ ├── i8254.h │ │ │ ├── i8259.h │ │ │ ├── ibmpc.h │ │ │ ├── intel_acpi.h │ │ │ ├── intel_opregion.h │ │ │ ├── intel_pinctrl.h │ │ │ ├── intel_pinctrl_defs.h │ │ │ ├── intel_regs.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── ioapic.h │ │ │ ├── ioctl.h │ │ │ ├── irq.h │ │ │ ├── ist.h │ │ │ ├── itss.h │ │ │ ├── lapic.h │ │ │ ├── linkage.h │ │ │ ├── lpc_common.h │ │ │ ├── lpss.h │ │ │ ├── me_common.h │ │ │ ├── microcode.h │ │ │ ├── mp.h │ │ │ ├── mpspec.h │ │ │ ├── mrc_common.h │ │ │ ├── mrccache.h │ │ │ ├── msr-index.h │ │ │ ├── msr.h │ │ │ ├── mtrr.h │ │ │ ├── p2sb.h │ │ │ ├── pch_common.h │ │ │ ├── pci.h │ │ │ ├── pirq_routing.h │ │ │ ├── pmu.h │ │ │ ├── pnp_def.h │ │ │ ├── posix_types.h │ │ │ ├── post.h │ │ │ ├── processor-flags.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── qemu.h │ │ │ ├── report_platform.h │ │ │ ├── scu.h │ │ │ ├── sections.h │ │ │ ├── setjmp.h │ │ │ ├── sfi.h │ │ │ ├── sipi.h │ │ │ ├── smm.h │ │ │ ├── speedstep.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── sysreset.h │ │ │ ├── tables.h │ │ │ ├── turbo.h │ │ │ ├── types.h │ │ │ ├── u-boot-x86.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ ├── video │ │ │ └── edid.h │ │ │ └── zimage.h │ └── lib │ │ ├── Makefile │ │ ├── acpi.c │ │ ├── acpi_nhlt.c │ │ ├── acpi_s3.c │ │ ├── acpi_table.c │ │ ├── acpigen.c │ │ ├── asm-offsets.c │ │ ├── bdinfo.c │ │ ├── bios.c │ │ ├── bios.h │ │ ├── bios_asm.S │ │ ├── bios_interrupts.c │ │ ├── bootm.c │ │ ├── cmd_boot.c │ │ ├── coreboot │ │ ├── Makefile │ │ ├── cb_support.c │ │ └── cb_sysinfo.c │ │ ├── coreboot_table.c │ │ ├── crt0_ia32_efi.S │ │ ├── crt0_x86_64_efi.S │ │ ├── div64.c │ │ ├── e820.c │ │ ├── early_cmos.c │ │ ├── elf_ia32_efi.lds │ │ ├── elf_x86_64_efi.lds │ │ ├── fsp │ │ ├── Makefile │ │ ├── fsp_common.c │ │ ├── fsp_dram.c │ │ ├── fsp_graphics.c │ │ └── fsp_support.c │ │ ├── fsp1 │ │ ├── Makefile │ │ ├── fsp_car.S │ │ ├── fsp_common.c │ │ ├── fsp_dram.c │ │ └── fsp_support.c │ │ ├── fsp2 │ │ ├── Makefile │ │ ├── fsp_common.c │ │ ├── fsp_dram.c │ │ ├── fsp_init.c │ │ ├── fsp_meminit.c │ │ ├── fsp_silicon_init.c │ │ └── fsp_support.c │ │ ├── hob.c │ │ ├── i8254.c │ │ ├── i8259.c │ │ ├── init_helpers.c │ │ ├── interrupts.c │ │ ├── lpc-uclass.c │ │ ├── mpspec.c │ │ ├── mrccache.c │ │ ├── northbridge-uclass.c │ │ ├── physmem.c │ │ ├── pinctrl_ich6.c │ │ ├── pirq_routing.c │ │ ├── pmu.c │ │ ├── ramtest.c │ │ ├── reloc_ia32_efi.c │ │ ├── reloc_x86_64_efi.c │ │ ├── relocate.c │ │ ├── scu.c │ │ ├── sections.c │ │ ├── sfi.c │ │ ├── spl.c │ │ ├── string.c │ │ ├── tables.c │ │ ├── tpl.c │ │ └── zimage.c └── xtensa │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ ├── Makefile │ ├── cpu.c │ ├── exceptions.c │ ├── start.S │ └── u-boot.lds │ ├── dts │ ├── Makefile │ ├── include │ │ └── dt-bindings │ ├── kc705.dts │ ├── kc705_nommu.dts │ ├── ml605.dts │ ├── ml605_nommu.dts │ ├── virt-u-boot.dtsi │ ├── xtfpga-flash-128m.dtsi │ ├── xtfpga-flash-16m.dtsi │ └── xtfpga.dtsi │ ├── include │ └── asm │ │ ├── addrspace.h │ │ ├── arch-dc232b │ │ ├── core.h │ │ ├── tie-asm.h │ │ └── tie.h │ │ ├── arch-dc233c │ │ ├── core.h │ │ ├── tie-asm.h │ │ └── tie.h │ │ ├── arch-de212 │ │ ├── core.h │ │ ├── tie-asm.h │ │ └── tie.h │ │ ├── asmmacro.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── bootparam.h │ │ ├── byteorder.h │ │ ├── cache.h │ │ ├── cacheasm.h │ │ ├── config.h │ │ ├── dma-mapping.h │ │ ├── global_data.h │ │ ├── io.h │ │ ├── ldscript.h │ │ ├── linkage.h │ │ ├── misc.h │ │ ├── platform │ │ ├── simcall-gdbio.h │ │ ├── simcall-iss.h │ │ └── simcall.h │ │ ├── posix_types.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── regs.h │ │ ├── sections.h │ │ ├── spl.h │ │ ├── string.h │ │ ├── system.h │ │ ├── types.h │ │ ├── u-boot.h │ │ └── unaligned.h │ └── lib │ ├── Makefile │ ├── bootm.c │ ├── cache.c │ ├── misc.S │ ├── relocate.c │ └── time.c ├── board ├── BuR │ ├── brppt1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── config.mk │ │ └── mux.c │ ├── brppt2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── config.mk │ ├── brsmarc1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── config.mk │ │ └── mux.c │ ├── brxre1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux.c │ ├── common │ │ ├── Kconfig │ │ ├── br_resetc.c │ │ ├── br_resetc.h │ │ ├── bur_common.h │ │ └── common.c │ └── zynq │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── brcp150 │ │ ├── board.c │ │ └── ps7_init_gpl.c │ │ ├── brcp170 │ │ ├── board.c │ │ └── ps7_init_gpl.c │ │ ├── brcp1_1r │ │ ├── board.c │ │ └── ps7_init_gpl.c │ │ ├── brcp1_1r_switch │ │ ├── board.c │ │ └── ps7_init_gpl.c │ │ ├── brcp1_2r │ │ ├── board.c │ │ └── ps7_init_gpl.c │ │ ├── brsmarc2 │ │ ├── board.c │ │ └── ps7_init_gpl.c │ │ ├── common │ │ └── board.c │ │ └── env │ │ ├── brcp1.env │ │ └── brcp150.env ├── BuS │ └── eb_cpu5282 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── eb_cpu5282.c ├── CZ.NIC │ ├── turris_1x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── tlb.c │ │ └── turris_1x.c │ ├── turris_atsha_otp.c │ ├── turris_atsha_otp.h │ ├── turris_common.c │ ├── turris_common.h │ ├── turris_mox │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mox_sp.c │ │ ├── mox_sp.h │ │ └── turris_mox.c │ └── turris_omnia │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eeprom.c │ │ ├── old_ddr3_training.c │ │ └── turris_omnia.c ├── LaCie │ ├── common │ │ ├── common.c │ │ ├── common.h │ │ ├── cpld-gpio-bus.c │ │ └── cpld-gpio-bus.h │ ├── net2big_v2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── net2big_v2.c │ │ └── net2big_v2.h │ └── netspace_v2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage-is2.cfg │ │ ├── kwbimage-ns2l.cfg │ │ ├── kwbimage.cfg │ │ ├── netspace_v2.c │ │ └── netspace_v2.h ├── Marvell │ ├── db-88f6720 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── db-88f6720.c │ ├── db-88f6820-amc │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── db-88f6820-amc.c │ ├── db-88f6820-gp │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── db-88f6820-gp.c │ ├── db-mv784mp-gp │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── db-mv784mp-gp.c │ ├── db-xc3-24g4xg │ │ ├── .gitignore │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── binary.0 │ │ ├── db-xc3-24g4xg.c │ │ └── kwbimage.cfg.in │ ├── dreamplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dreamplug.c │ │ └── kwbimage.cfg │ ├── guruplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── guruplug.c │ │ ├── guruplug.h │ │ └── kwbimage.cfg │ ├── mvebu_alleycat-5 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── mvebu_armada-37xx │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── mvebu_armada-8k │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── octeon_ebb7304 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── board_ddr.h │ ├── octeon_nic23 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── board_ddr.h │ ├── octeontx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-fdt.c │ │ ├── board.c │ │ ├── smc.c │ │ └── soc-utils.c │ ├── octeontx2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-fdt.c │ │ ├── board.c │ │ ├── smc.c │ │ └── soc-utils.c │ ├── octeontx2_cn913x │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── board.c │ ├── openrd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── openrd.c │ │ ├── openrd.env │ │ └── openrd.h │ └── sheevaplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── sheevaplug.c │ │ └── sheevaplug.env ├── Seagate │ ├── dockstar │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dockstar.c │ │ └── kwbimage.cfg │ ├── goflexhome │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── goflexhome.c │ │ └── kwbimage.cfg │ └── nas220 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── nas220.c ├── Synology │ ├── common │ │ ├── Makefile │ │ ├── legacy.c │ │ └── legacy.h │ ├── ds109 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ds109.c │ │ ├── ds109.h │ │ ├── kwbimage.cfg │ │ └── openocd.cfg │ ├── ds116 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ds116.c │ └── ds414 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_syno.c │ │ ├── cmd_syno.h │ │ └── ds414.c ├── abilis │ └── tb100 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── tb100.c ├── acer │ └── picasso │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── picasso.c │ │ └── picasso.env ├── adi │ ├── sc573-ezkit │ │ ├── Kconfig │ │ └── sc573-ezkit.env │ ├── sc584-ezkit │ │ ├── Kconfig │ │ └── sc584-ezkit.env │ ├── sc589-ezkit │ │ ├── Kconfig │ │ └── sc589-ezkit.env │ ├── sc589-mini │ │ ├── Kconfig │ │ └── sc589-mini.env │ ├── sc594-som-ezkit │ │ ├── Kconfig │ │ └── sc594-som-ezkit.env │ ├── sc594-som-ezlite │ │ ├── Kconfig │ │ └── sc594-som-ezlite.env │ ├── sc598-som-ezkit │ │ ├── Kconfig │ │ └── sc598-som-ezkit.env │ └── sc598-som-ezlite │ │ ├── Kconfig │ │ └── sc598-som-ezlite.env ├── advantech │ ├── Kconfig │ ├── imx8mp_rsb3720a1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_rsb3720a1.c │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing_rsb3720a1_4G.c │ │ ├── lpddr4_timing_rsb3720a1_6G.c │ │ └── spl.c │ ├── imx8qm_dmsse20_a1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8qm_dmsse20-a1.env │ │ ├── imx8qm_dmsse20_a1.c │ │ ├── imximage.cfg │ │ └── spl.c │ ├── imx8qm_rom7720_a1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8qm_rom7720_a1.c │ │ ├── imximage.cfg │ │ └── spl.c │ └── som-db5800-som-6867 │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── dsdt.asl │ │ └── som-db5800-som-6867.c ├── airoha │ └── an7581 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── an7581_rfb.c ├── alliedtelesis │ ├── SBx81LIFKW │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── sbx81lifkw.c │ ├── SBx81LIFXCAT │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── sbx81lifxcat.c │ ├── common │ │ ├── gpio_hog.c │ │ └── gpio_hog.h │ ├── x240 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── x240.c │ ├── x250 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── x250.c │ └── x530 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── x530.c ├── altera │ ├── arria10-socdk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── fit_spl_fpga.its │ ├── arria5-socdk │ │ ├── MAINTAINERS │ │ └── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ ├── cyclone5-socdk │ │ ├── MAINTAINERS │ │ └── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ ├── nios2 │ │ └── MAINTAINERS │ └── stratix10-socdk │ │ └── MAINTAINERS ├── amarula │ └── vyasa-rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vyasa-rk3288.c ├── amd │ ├── common │ └── versal2 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── amlogic │ ├── ad401 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ad401.c │ ├── beelink-s922x │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── beelink-s922x.c │ ├── jethub-j100 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── jethub-j100.c │ ├── jethub-j80 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── jethub-j80.c │ ├── odroid-go-ultra │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── odroid-go-ultra.c │ ├── odroid-n2 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── odroid-n2.c │ ├── p200 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p200.c │ ├── p201 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p201.c │ ├── p212 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p212.c │ ├── q200 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── q200.c │ ├── s400 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── s400.c │ ├── sei510 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sei510.c │ ├── sei610 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sei610.c │ ├── u200 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── u200.c │ ├── vim3 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── khadas-mcu.h │ │ └── vim3.c │ └── w400 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── w400.c ├── anbernic │ └── rgxx3_rk3566 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rgxx3-rk3566.c ├── andestech │ └── ae350 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ae350.c ├── aries │ └── mcvevk │ │ ├── MAINTAINERS │ │ └── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h ├── aristainetos │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── aristainetos.c │ ├── aristainetos2.cfg │ ├── axi.cfg │ ├── clocks2.cfg │ ├── common │ │ └── Kconfig │ ├── ddr-setup2.cfg │ └── nt5cc256m16cp.cfg ├── armadeus │ └── opos6uldev │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── opos6uldev.env ├── armltd │ ├── corstone1000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── corstone1000.c │ │ └── corstone1000.env │ ├── integrator │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── arm-ebi.h │ │ ├── integrator-sc.h │ │ ├── integrator.c │ │ ├── lowlevel_init.S │ │ └── timer.c │ ├── total_compute │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── total_compute.c │ │ └── total_compute.env │ ├── vexpress │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vexpress_common.c │ └── vexpress64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── pcie.c │ │ ├── pcie.h │ │ └── vexpress64.c ├── armsom │ └── sige7-rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── aspeed │ ├── evb_ast2500 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_ast2600 │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── ibex_ast2700 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── fmc_hdr.c │ │ ├── ibex_ast2700.c │ │ └── sli.c ├── asus │ ├── grouper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-info.c │ │ ├── grouper-spl.c │ │ ├── grouper.c │ │ └── grouper.env │ ├── transformer-t114 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── transformer-t114-spl.c │ │ ├── transformer-t114.c │ │ └── transformer-t114.env │ ├── transformer-t20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ │ ├── sl101.config │ │ │ ├── tf101.config │ │ │ └── tf101g.config │ │ ├── transformer-t20.c │ │ └── transformer-t20.env │ └── transformer-t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-info.c │ │ ├── transformer-t30-spl.c │ │ ├── transformer-t30.c │ │ └── transformer-t30.env ├── atmel │ ├── at91sam9260ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9260ek.c │ ├── at91sam9261ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9261ek.c │ ├── at91sam9263ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9263ek.c │ ├── at91sam9m10g45ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9m10g45ek.c │ ├── at91sam9n12ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9n12ek.c │ ├── at91sam9rlek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9rlek.c │ ├── at91sam9x5ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9x5ek.c │ ├── common │ │ ├── Makefile │ │ ├── board.c │ │ ├── mac-spi-nor.c │ │ ├── mac_eeprom.c │ │ └── video_display.c │ ├── sam9x60_curiosity │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sam9x60_curiosity.c │ ├── sam9x60ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sam9x60ek.c │ ├── sam9x75_curiosity │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sam9x75_curiosity.c │ ├── sama5d27_som1_ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d27_som1_ek.c │ ├── sama5d27_wlsom1_ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d27_wlsom1_ek.c │ ├── sama5d29_curiosity │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d29_curiosity.c │ ├── sama5d2_icp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d2_icp.c │ ├── sama5d2_ptc_ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d2_ptc_ek.c │ ├── sama5d2_xplained │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d2_xplained.c │ ├── sama5d3_xplained │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d3_xplained.c │ ├── sama5d3xek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d3xek.c │ ├── sama5d4_xplained │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d4_xplained.c │ ├── sama5d4ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d4ek.c │ ├── sama7g54_curiosity │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama7g54_curiosity.c │ └── sama7g5ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama7g5ek.c ├── avionic-design │ ├── common │ │ ├── pinmux-config-tamonten-ng.h │ │ ├── tamonten-ng.c │ │ └── tamonten.c │ ├── medcom-wide │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── plutux │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── tec-ng │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── tec-ng-spl.c │ └── tec │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile ├── beacon │ ├── beacon-rzg2m │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── beacon-rzg2m.c │ ├── imx8mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mm_beacon.c │ │ ├── imx8mm_beacon.env │ │ ├── imximage-8mm-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── imx8mn │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mn_beacon.c │ │ ├── imx8mn_beacon.env │ │ ├── imximage-8mn-lpddr4.cfg │ │ ├── lpddr4_2g_timing.c │ │ ├── lpddr4_timing.c │ │ └── spl.c │ └── imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_beacon.c │ │ ├── imx8mp_beacon.env │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c ├── beagle │ ├── beagleboneai64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── beagleboneai64.c │ │ ├── beagleboneai64.env │ │ ├── board-cfg.yaml │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── beagleplay │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── beagleplay.c │ │ ├── beagleplay.env │ │ ├── board-cfg.yaml │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ └── beagley-ai │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── beagley-ai.c │ │ ├── beagley-ai.env │ │ ├── board-cfg.yaml │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── tifs-rm-cfg.yaml ├── beckhoff │ └── mx53cx9020 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx53cx9020.c │ │ └── mx53cx9020_video.c ├── bitmain │ └── antminer_s9 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bitmain-antminer-s9 │ │ └── ps7_init_gpl.c │ │ └── board.c ├── bluewater │ └── gurnard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gurnard.c │ │ └── splash_logo.h ├── bosch │ ├── acc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── acc.c │ ├── guardian │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ └── shc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── boundary │ └── nitrogen6x │ │ ├── 1066mhz_4x128mx16.cfg │ │ ├── 1066mhz_4x256mx16.cfg │ │ ├── 6x_bootscript.txt │ │ ├── 6x_bootscript_android.txt │ │ ├── 6x_bootscript_android_recovery.txt │ │ ├── 6x_upgrade.txt │ │ ├── 800mhz_2x128mx16.cfg │ │ ├── 800mhz_2x256mx16.cfg │ │ ├── 800mhz_4x128mx16.cfg │ │ ├── 800mhz_4x256mx16.cfg │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── README.mx6qsabrelite │ │ ├── clocks.cfg │ │ ├── ddr-setup.cfg │ │ ├── nitrogen6dl.cfg │ │ ├── nitrogen6dl2g.cfg │ │ ├── nitrogen6q.cfg │ │ ├── nitrogen6q2g.cfg │ │ ├── nitrogen6s.cfg │ │ ├── nitrogen6s1g.cfg │ │ └── nitrogen6x.c ├── broadcom │ ├── bcm968380gerg │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── bcmbca │ │ ├── Kconfig │ │ ├── Makefile │ │ └── board.c │ ├── bcmns │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ns.c │ ├── bcmns3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fit │ │ │ ├── keys │ │ │ │ ├── dev.crt │ │ │ │ └── dev.key │ │ │ └── multi.its │ │ └── ns3.c │ └── bcmstb │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── bcmstb.c ├── bsh │ ├── imx6ulz_smm_m2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr3l_timing_128m.c │ │ ├── ddr3l_timing_128m_m2b.c │ │ ├── ddr3l_timing_256m.c │ │ ├── ddr3l_timing_256m_m2b.c │ │ ├── ddr3l_timing_512m.c │ │ ├── imx6ulz_smm_m2.c │ │ ├── spl.c │ │ └── spl_mtypes.h │ └── imx8mn_smm_s2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr3l_timing_256m.c │ │ ├── ddr3l_timing_512m.c │ │ ├── imx8mn_smm_s2.c │ │ ├── imximage-8mn-ddr3.cfg │ │ └── spl.c ├── bticino │ └── mamoj │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mamoj.c │ │ └── spl.c ├── buffalo │ └── lsxl │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── kwbimage-lschl.cfg │ │ ├── kwbimage-lsxhl.cfg │ │ ├── lsxl.c │ │ └── lsxl.h ├── cadence │ └── xtfpga │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── xtfpga.c ├── calao │ └── usb_a9263 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── usb_a9263.c ├── canaan │ └── k230_canmv │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── cavium │ └── thunderx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── atf.c │ │ └── thunderx.c ├── cei │ └── cei-tk1-som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cei-tk1-som.c │ │ └── pinmux-config-cei-tk1-som.h ├── chipspark │ └── popmetal_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── popmetal-rk3288.c ├── cloos │ └── imx8mm_phg │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mm_phg.c │ │ ├── imx8mm_phg.env │ │ ├── imximage-8mm-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c ├── cloudengines │ ├── pogo_e02 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── pogo_e02.c │ └── pogo_v4 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── pogo_v4.c ├── cobra5272 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── bdm │ │ ├── cobra5272_uboot.gdb │ │ ├── gdbinit.reset │ │ ├── load-cobra_uboot │ │ └── reset │ ├── cobra5272.c │ └── flash.c ├── compal │ └── paz00 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── compulab │ ├── cl-som-imx7 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cl-som-imx7.c │ │ ├── common.c │ │ ├── common.h │ │ ├── mux.c │ │ └── spl.c │ ├── cm_fx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_fx6.c │ │ ├── common.c │ │ ├── common.h │ │ └── spl.c │ ├── cm_t43 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.h │ │ ├── cm_t43.c │ │ ├── mux.c │ │ └── spl.c │ ├── common │ │ ├── Makefile │ │ ├── common.c │ │ ├── common.h │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ └── omap3_smc911x.c │ ├── imx8mm-cl-iot-gate │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── ddr.h │ │ │ ├── lpddr4_timing_01061010.1_2.c │ │ │ ├── lpddr4_timing_01061010.c │ │ │ ├── lpddr4_timing_ff000110.c │ │ │ └── lpddr4_timing_ff020008.c │ │ ├── eeprom_spl.c │ │ ├── imx8mm-cl-iot-gate.c │ │ ├── imximage-8mm-lpddr4.cfg │ │ └── spl.c │ └── trimslice │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── trimslice.c ├── comtrend │ ├── ar5315u │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── ar5387un │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── ct5361 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── vr3032u │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── wap5813n │ │ ├── Kconfig │ │ └── MAINTAINERS ├── comvetia │ └── lxr2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lxr2.c │ │ └── lxr2.env ├── conclusive │ └── kstr-sama5d27 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── kstr-sama5d27.c ├── congatec │ ├── Kconfig │ ├── cgtqmx8 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cgtqmx8.c │ │ ├── imximage.cfg │ │ └── spl.c │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ └── mmc.c │ └── conga-qeval20-qa3-e3845 │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── conga-qeval20-qa3.c │ │ └── dsdt.asl ├── coolpi │ └── genbook_cm5_rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── coreboot │ ├── Kconfig │ └── coreboot │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── coreboot.c │ │ ├── coreboot.env │ │ └── sysinfo.c ├── cortina │ ├── common │ │ └── Kconfig │ └── presidio-asic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── presidio.c ├── cssi │ ├── MAINTAINERS │ ├── cmpc885 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cmpc885.c │ │ ├── cmpc885.env │ │ ├── nand.c │ │ ├── sdram.c │ │ └── u-boot.lds │ ├── cmpcpro │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cmpcpro.c │ │ ├── cmpcpro.env │ │ └── nand.c │ ├── common │ │ ├── Makefile │ │ ├── common.c │ │ └── common.h │ └── mcr3000 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fpga_code.h │ │ ├── mcr3000.c │ │ ├── mcr3000.env │ │ ├── mcr3000_gpio.c │ │ ├── nand.c │ │ └── u-boot.lds ├── d-link │ └── dns325 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dns325.c │ │ ├── dns325.h │ │ └── kwbimage.cfg ├── data_modul │ ├── common │ │ ├── common.c │ │ └── common.h │ ├── imx8mm_edm_sbc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mm_data_modul_edm_sbc.c │ │ ├── imximage.cfg │ │ ├── lpddr4_timing.h │ │ ├── lpddr4_timing_2G_32.c │ │ ├── lpddr4_timing_4G_32.c │ │ └── spl.c │ └── imx8mp_edm_sbc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_data_modul_edm_sbc.c │ │ ├── imximage.cfg │ │ ├── lpddr4_timing.h │ │ ├── lpddr4_timing_4G_32.c │ │ └── spl.c ├── davinci │ └── da8xxevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.da850 │ │ ├── da850evm.c │ │ ├── omapl138_lcdk.c │ │ └── u-boot-spl-da850evm.lds ├── devboards │ └── dbm-soc1 │ │ ├── MAINTAINERS │ │ └── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h ├── dfi │ ├── Kconfig │ └── dfi-bt700 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── dfi-bt700.c │ │ └── dsdt.asl ├── dhelectronics │ ├── common │ │ ├── Makefile │ │ ├── dh_common.c │ │ ├── dh_common.h │ │ ├── dh_imx.c │ │ └── dh_imx.h │ ├── dh_imx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dh_imx6.c │ │ └── dh_imx6_spl.c │ ├── dh_imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── common.c │ │ ├── imx8mp_dhcom_pdk2.c │ │ ├── imximage-lpddr4.cfg │ │ ├── lpddr4_timing.h │ │ ├── lpddr4_timing_2G_32.c │ │ ├── lpddr4_timing_4G_32.c │ │ └── spl.c │ └── dh_stm32mp1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── ea │ ├── ea-lpc3250devkitv2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.rst │ │ └── ea-lpc3250devkitv2.c │ └── mx7ulp_com │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx7ulp_com.c ├── ebv │ └── socrates │ │ ├── MAINTAINERS │ │ └── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h ├── edgeble │ ├── neural-compute-module-2 │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── neural-compute-module-6 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── eets │ └── pdu001 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── efi │ ├── Kconfig │ ├── efi-x86_app │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── efi-x86_app.env │ └── efi-x86_payload │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── efi-x86_payload.env │ │ └── payload.c ├── elgin │ └── elgin_rv1108 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── elgin_rv1108.c ├── embest │ └── mx6boards │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6boards.c ├── emcraft │ └── imx8mp_navqp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_navqp.c │ │ ├── imx8mp_navqp.env │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c ├── emulation │ ├── Kconfig │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── qemu_dfu.c │ │ └── qemu_mtdparts.c │ ├── configs │ │ └── acpi.config │ ├── qemu-arm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qemu-arm.c │ │ └── qemu-arm.env │ ├── qemu-ppce500 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── qemu-ppce500.c │ ├── qemu-riscv │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── qemu-riscv.c │ ├── qemu-sbsa │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── acpi.c │ │ ├── dsdt.asl │ │ ├── lowlevel_init.S │ │ ├── qemu-sbsa.c │ │ ├── qemu-sbsa.env │ │ ├── qemu-sbsa.h │ │ └── smc.c │ ├── qemu-x86 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── qemu-x86.env │ └── qemu-xtensa │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── qemu-xtensa.c ├── engicam │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── spl.c │ ├── imx6q │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── imx6q.c │ ├── imx6ul │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── imx6ul.c │ ├── imx8mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── icore_mx8mm.c │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── icore_mx8mp.c │ │ ├── imximage-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── px30_core │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── stm32mp1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── spl.c │ │ └── stm32mp1.c ├── esd │ └── meesc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── meesc.c ├── firefly │ ├── firefly-rk3288 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── firefly-rk3308 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── roc_cc_rk3308.c │ ├── roc-pc-rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── roc-pc-rk3399.c │ └── roc-pc-rk3576 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── freescale │ ├── common │ │ ├── Makefile │ │ ├── arm_sleep.c │ │ ├── cadmus.c │ │ ├── cadmus.h │ │ ├── cds_pci_ft.c │ │ ├── cds_via.c │ │ ├── cmd_esbc_validate.c │ │ ├── eeprom.h │ │ ├── emc2305.c │ │ ├── emc2305.h │ │ ├── fman.c │ │ ├── fman.h │ │ ├── fsl_chain_of_trust.c │ │ ├── fsl_validate.c │ │ ├── i2c_common.c │ │ ├── i2c_common.h │ │ ├── i2c_mux.c │ │ ├── i2c_mux.h │ │ ├── ics307_clk.c │ │ ├── ics307_clk.h │ │ ├── ls102xa_stream_id.c │ │ ├── mc34vr500.c │ │ ├── mmc.c │ │ ├── mpc85xx_sleep.c │ │ ├── ngpixis.c │ │ ├── ngpixis.h │ │ ├── ns_access.c │ │ ├── p_corenet │ │ │ ├── Makefile │ │ │ ├── law.c │ │ │ └── tlb.c │ │ ├── pfuze.c │ │ ├── pfuze.h │ │ ├── qixis.c │ │ ├── qixis.h │ │ ├── sdhc_boot.c │ │ ├── sgmii_riser.h │ │ ├── sleep.h │ │ ├── spl.h │ │ ├── sys_eeprom.c │ │ ├── via.h │ │ ├── vid.c │ │ ├── vid.h │ │ └── vsc3316_3308.h │ ├── imx8mm_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mm_evk.c │ │ ├── imx8mm_evk.env │ │ ├── imximage-8mm-lpddr4-fspi.cfg │ │ ├── imximage-8mm-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── imx8mn_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr4_timing.c │ │ ├── ddr4_timing_ld.c │ │ ├── imx8mn_evk.c │ │ ├── imx8mn_evk.env │ │ ├── imximage-8mn-ddr4.cfg │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_ld.c │ │ └── spl.c │ ├── imx8mp_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_evk.c │ │ ├── imx8mp_evk.env │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── imx8mq_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mq_evk.c │ │ ├── imx8mq_evk.env │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_b0.c │ │ └── spl.c │ ├── imx8qm_mek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imx8qm_mek.c │ │ ├── imximage.cfg │ │ ├── spl.c │ │ └── uboot-container.cfg │ ├── imx8qxp_mek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8qxp_mek.c │ │ ├── imximage.cfg │ │ ├── spl.c │ │ └── uboot-container.cfg │ ├── imx8ulp_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8ulp_evk.c │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_266.c │ │ └── spl.c │ ├── imx91_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx91_evk.c │ │ ├── imx91_evk.env │ │ ├── lpddr4_timing_1600mts.c │ │ ├── lpddr4_timing_1600mts_ecc.c │ │ ├── lpddr4_timing_2400mts.c │ │ ├── lpddr4_timing_2400mts_ecc.c │ │ └── spl.c │ ├── imx93_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx93_evk.c │ │ ├── imx93_evk.env │ │ ├── lpddr4x_timing.c │ │ ├── lpddr4x_timing_1866mts.c │ │ └── spl.c │ ├── imx93_qsb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx93_qsb.c │ │ ├── imx93_qsb.env │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_ecc.c │ │ └── spl.c │ ├── imx95_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx95_19x19_evk.env │ │ ├── imx95_evk.c │ │ └── spl.c │ ├── imxrt1020-evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── imxrt1020-evk.c │ ├── imxrt1050-evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage-nor.cfg │ │ ├── imximage.cfg │ │ ├── imxrt1050-evk-nor.env │ │ ├── imxrt1050-evk.c │ │ └── imxrt1050-evk.env │ ├── imxrt1170-evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── imxrt1170-evk.c │ ├── ls1012afrdm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── eth.c │ │ └── ls1012afrdm.c │ ├── ls1012aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── eth.c │ │ ├── ls1012aqds.c │ │ ├── ls1012aqds_pfe.h │ │ └── ls1012aqds_qixis.h │ ├── ls1012ardb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── eth.c │ │ └── ls1012ardb.c │ ├── ls1021aiot │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ls1021aiot.c │ │ ├── ls102xa_pbi.cfg │ │ ├── ls102xa_rcw_sd.cfg │ │ └── psci.S │ ├── ls1021aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── ls1021aqds.c │ │ ├── ls1021aqds_qixis.h │ │ ├── ls102xa_pbi.cfg │ │ ├── ls102xa_rcw_nand.cfg │ │ ├── ls102xa_rcw_sd_ifc.cfg │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ └── psci.S │ ├── ls1021atsn │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.rst │ │ ├── ls1021atsn.c │ │ ├── ls102xa_pbi.cfg │ │ └── ls102xa_rcw_sd.cfg │ ├── ls1021atwr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ls1021atwr.c │ │ ├── ls102xa_pbi.cfg │ │ ├── ls102xa_rcw_sd_ifc.cfg │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ └── psci.S │ ├── ls1028a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ └── ls1028a.c │ ├── ls1043aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1043aqds.c │ │ ├── ls1043aqds_pbi.cfg │ │ ├── ls1043aqds_qixis.h │ │ ├── ls1043aqds_rcw_nand.cfg │ │ ├── ls1043aqds_rcw_sd_ifc.cfg │ │ └── ls1043aqds_rcw_sd_qspi.cfg │ ├── ls1043ardb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1043ardb.c │ │ ├── ls1043ardb_pbi.cfg │ │ ├── ls1043ardb_rcw_nand.cfg │ │ └── ls1043ardb_rcw_sd.cfg │ ├── ls1046afrwy │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── eth.c │ │ └── ls1046afrwy.c │ ├── ls1046aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1046aqds.c │ │ ├── ls1046aqds_pbi.cfg │ │ ├── ls1046aqds_qixis.h │ │ ├── ls1046aqds_rcw_nand.cfg │ │ ├── ls1046aqds_rcw_sd_ifc.cfg │ │ └── ls1046aqds_rcw_sd_qspi.cfg │ ├── ls1046ardb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1046ardb.c │ │ ├── ls1046ardb_pbi.cfg │ │ ├── ls1046ardb_qspi_pbi.cfg │ │ ├── ls1046ardb_rcw_emmc.cfg │ │ ├── ls1046ardb_rcw_qspi.cfg │ │ └── ls1046ardb_rcw_sd.cfg │ ├── ls1088a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth_ls1088aqds.c │ │ ├── eth_ls1088ardb.c │ │ ├── ls1088a.c │ │ └── ls1088a_qixis.h │ ├── ls2080aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls2080aqds.c │ │ └── ls2080aqds_qixis.h │ ├── ls2080ardb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth_ls2080rdb.c │ │ ├── ls2080ardb.c │ │ └── ls2080ardb_qixis.h │ ├── lx2160a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── eth_lx2160aqds.c │ │ ├── eth_lx2160ardb.c │ │ ├── eth_lx2162aqds.c │ │ ├── lx2160a.c │ │ └── lx2160a.h │ ├── m5208evbe │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5208evbe.c │ ├── m5235evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5235evb.c │ ├── m5249evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5249evb.c │ ├── m5253demo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── m5253demo.c │ ├── m5272c3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5272c3.c │ ├── m5275evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5275evb.c │ ├── m5282evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5282evb.c │ ├── m53017evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── m53017evb.c │ ├── m5329evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── m5329evb.c │ │ └── nand.c │ ├── m5373evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── m5373evb.c │ │ └── nand.c │ ├── mpc837xerdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mpc837xerdb.c │ ├── mpc8548cds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8548cds.c │ │ └── tlb.c │ ├── mx23evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx23evk.c │ │ └── spl_boot.c │ ├── mx28evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── iomux.c │ │ └── mx28evk.c │ ├── mx51evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx51evk.c │ ├── mx53loco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx53loco.c │ ├── mx6memcal │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mx6memcal.c │ │ └── spl.c │ ├── mx6sabreauto │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6sabreauto.c │ ├── mx6sabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6sabresd.c │ ├── mx6slevk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6slevk.c │ ├── mx6sllevk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx6sllevk.c │ │ └── plugin.S │ ├── mx6sxsabreauto │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6sxsabreauto.c │ ├── mx6sxsabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6sxsabresd.c │ ├── mx6ul_14x14_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6ul_14x14_evk.c │ ├── mx6ullevk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx6ullevk.c │ │ └── plugin.S │ ├── mx7dsabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx7dsabresd.c │ ├── mx7ulp_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx7ulp_evk.c │ │ └── plugin.S │ ├── p1010rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.P1010RDB-PA │ │ ├── README.P1010RDB-PB │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1010rdb.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── p1_p2_rdb_pc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1_p2_rdb_pc.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── p2041rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── eth.c │ │ ├── p2041rdb.c │ │ ├── pbi.cfg │ │ └── rcw_p2041rdb.cfg │ ├── t102xrdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── eth_t102xrdb.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── t1023_nand_rcw.cfg │ │ ├── t1023_sd_rcw.cfg │ │ ├── t1023_spi_rcw.cfg │ │ ├── t1024_nand_rcw.cfg │ │ ├── t1024_pbi.cfg │ │ ├── t1024_sd_rcw.cfg │ │ ├── t1024_spi_rcw.cfg │ │ ├── t102xrdb.c │ │ ├── t102xrdb.h │ │ └── tlb.c │ ├── t104xrdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── t1040_nand_rcw.cfg │ │ ├── t1040_sd_rcw.cfg │ │ ├── t1040_spi_rcw.cfg │ │ ├── t1040d4_nand_rcw.cfg │ │ ├── t1040d4_sd_rcw.cfg │ │ ├── t1040d4_spi_rcw.cfg │ │ ├── t1042_nand_rcw.cfg │ │ ├── t1042_pi_nand_rcw.cfg │ │ ├── t1042_pi_sd_rcw.cfg │ │ ├── t1042_pi_spi_rcw.cfg │ │ ├── t1042_sd_rcw.cfg │ │ ├── t1042_spi_rcw.cfg │ │ ├── t1042d4_nand_rcw.cfg │ │ ├── t1042d4_sd_rcw.cfg │ │ ├── t1042d4_spi_rcw.cfg │ │ ├── t104x_pbi.cfg │ │ ├── t104x_pbi_sb.cfg │ │ ├── t104xrdb.c │ │ ├── t104xrdb.h │ │ └── tlb.c │ ├── t208xqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth_t208xqds.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── t2080_nand_rcw.cfg │ │ ├── t2080_sd_rcw.cfg │ │ ├── t2080_spi_rcw.cfg │ │ ├── t2081_nand_rcw.cfg │ │ ├── t2081_sd_rcw.cfg │ │ ├── t2081_spi_rcw.cfg │ │ ├── t208x_pbi.cfg │ │ ├── t208xqds.c │ │ ├── t208xqds.h │ │ ├── t208xqds_qixis.h │ │ └── tlb.c │ ├── t208xrdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth_t208xrdb.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── t2080_nand_rcw.cfg │ │ ├── t2080_pbi.cfg │ │ ├── t2080_sd_rcw.cfg │ │ ├── t2080_spi_rcw.cfg │ │ ├── t208xrdb.c │ │ ├── t208xrdb.h │ │ └── tlb.c │ ├── t4rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── t4240rdb.c │ │ ├── t4_pbi.cfg │ │ ├── t4_sd_rcw.cfg │ │ ├── t4rdb.h │ │ └── tlb.c │ └── vf610twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── vf610twr.c ├── friendlyarm │ ├── Kconfig │ └── nanopi2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── hwrev.c │ │ ├── hwrev.h │ │ ├── lcds.c │ │ ├── nxp-fb.h │ │ ├── onewire.c │ │ └── onewire.h ├── friendlyelec │ ├── cm3588-nas-rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── nanopc-t6-rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── nanopc-t6-rk3588.c │ ├── nanopi-r6c-rk3588s │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── nanopi-r6s-rk3588s │ │ ├── Kconfig │ │ └── MAINTAINERS ├── gardena │ ├── smart-gateway-at91sam │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── spl.c │ └── smart-gateway-mt7688 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── gateworks │ ├── fsa.c │ ├── fsa.h │ ├── gw_ventana │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── common.c │ │ ├── common.h │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ ├── gw_ventana.c │ │ ├── gw_ventana.env │ │ └── gw_ventana_spl.c │ └── venice │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ ├── imximage-8mm-lpddr4.cfg │ │ ├── imximage-8mn-lpddr4.cfg │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.h │ │ ├── lpddr4_timing_imx8mm.c │ │ ├── lpddr4_timing_imx8mn.c │ │ ├── lpddr4_timing_imx8mp.c │ │ ├── spl.c │ │ ├── venice.c │ │ └── venice.env ├── gdsys │ ├── a38x │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── controlcenterdc.c │ │ ├── dt_helpers.c │ │ ├── dt_helpers.h │ │ ├── hre.c │ │ ├── hre.h │ │ ├── hydra.c │ │ ├── hydra.h │ │ ├── ihs_phys.c │ │ ├── ihs_phys.h │ │ ├── keyprogram.c │ │ └── keyprogram.h │ ├── common │ │ ├── Makefile │ │ ├── cmd_ioloop.c │ │ ├── dp501.c │ │ ├── dp501.h │ │ ├── ihs_mdio.c │ │ ├── ihs_mdio.h │ │ ├── ioep-fpga.c │ │ ├── ioep-fpga.h │ │ ├── osd.c │ │ ├── osd.h │ │ └── osd_cmd.c │ └── mpc8308 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gazerbeam.c │ │ ├── mpc8308.c │ │ ├── mpc8308.h │ │ └── sdram.c ├── ge │ ├── b1x5v2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── b1x5v2.c │ │ └── spl.c │ ├── bx50v3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bx50v3.c │ │ └── bx50v3.cfg │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ge_rtc.c │ │ ├── ge_rtc.h │ │ ├── vpd_reader.c │ │ └── vpd_reader.h │ └── mx53ppd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx53ppd.c │ │ ├── mx53ppd_video.c │ │ └── ppd_gpio.h ├── geekbuying │ └── geekbox │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README ├── google │ ├── Kconfig │ ├── chameleonv3 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── environment.txt │ │ ├── fpga.its │ │ ├── fpga_early_io.its │ │ ├── mercury_aa1.c │ │ └── mercury_aa1.h │ ├── chromebook_coral │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── baseboard_dptf.asl │ │ ├── coral.c │ │ ├── dialog-2ch-48khz-24b.dat │ │ ├── dmic-1ch-48khz-16b.dat │ │ ├── dmic-2ch-48khz-16b.dat │ │ ├── dmic-4ch-48khz-16b.dat │ │ ├── dsdt.asl │ │ ├── max98357-render-2ch-48khz-24b.dat │ │ ├── variant_dptf.asl │ │ ├── variant_ec.h │ │ └── variant_gpio.h │ ├── chromebook_link │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── chromebook_samus │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── chromebox_panther │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── common │ │ ├── Makefile │ │ └── early_init.S │ ├── gru │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── gru.c │ ├── imx8mq_phanbell │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imx8mq_phanbell.c │ │ ├── lpddr4_timing_1g.c │ │ └── spl.c │ └── veyron │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── veyron.c ├── grinn │ ├── chiliboard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── board.c │ └── liteboard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── board.c ├── hardkernel │ ├── odroid_go2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── go2.c │ ├── odroid_m1 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── odroid_m1s │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── odroid_m2 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── highbank │ ├── MAINTAINERS │ ├── Makefile │ ├── ahci.c │ ├── hb_sregs.c │ └── highbank.c ├── hisilicon │ ├── hikey │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── build-tf.mak │ │ └── hikey.c │ ├── hikey960 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── hikey960.c │ └── poplar │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── poplar.c ├── hoperun │ └── hihope-rzg2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── hihope-rzg2.c ├── hpe │ └── gxp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── gxp.env │ │ └── gxp_board.c ├── htc │ └── endeavoru │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── endeavoru-spl.c │ │ ├── endeavoru.c │ │ └── endeavoru.env ├── huawei │ └── hg556a │ │ ├── Kconfig │ │ └── MAINTAINERS ├── imgtec │ ├── boston │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── boston-lcd.h │ │ ├── boston-regs.h │ │ ├── boston.env │ │ ├── checkboard.c │ │ ├── config.mk │ │ ├── ddr.c │ │ ├── dt.c │ │ └── lowlevel_init.S │ ├── ci20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── ci20.c │ ├── malta │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash-malta-boot.tcl │ │ ├── lowlevel_init.S │ │ ├── malta.c │ │ ├── superio.c │ │ └── superio.h │ └── xilfpga │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── xilfpga.c ├── indiedroid │ └── nova │ │ ├── Kconfig │ │ └── MAINTAINERS ├── intel │ ├── Kconfig │ ├── agilex-socdk │ │ └── MAINTAINERS │ ├── agilex5-socdk │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── socfpga.c │ ├── bayleybay │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ │ └── mainboard.asl │ │ ├── bayleybay.env │ │ └── dsdt.asl │ ├── cherryhill │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cherryhill.c │ │ └── cherryhill.env │ ├── cougarcanyon2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cougarcanyon2.c │ │ └── cougarcanyon2.env │ ├── crownbay │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── crownbay.c │ │ └── crownbay.env │ ├── edison │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── dsdt.asl │ │ ├── edison-environment.txt │ │ ├── edison-osip.dat │ │ ├── edison.c │ │ └── edison.env │ ├── galileo │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ │ └── mainboard.asl │ │ ├── dsdt.asl │ │ ├── galileo.c │ │ └── galileo.env │ ├── minnowmax │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ │ └── mainboard.asl │ │ ├── dsdt.asl │ │ ├── minnowmax.c │ │ └── minnowmax.env │ ├── n5x-socdk │ │ └── MAINTAINERS │ └── slimbootloader │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── slimbootloader.c │ │ └── slimbootloader.env ├── inteno │ └── xg6846 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── inversepath │ └── usbarmory │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── usbarmory.c ├── iomega │ └── iconnect │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── iconnect.c │ │ └── kwbimage.cfg ├── is1 │ ├── MAINTAINERS │ └── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h ├── isee │ ├── igep003x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ └── igep00x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── common.c │ │ ├── igep00x0.c │ │ ├── igep00x0.h │ │ └── spl.c ├── itead │ └── sonoff-ihost │ │ ├── Kconfig │ │ └── MAINTAINERS ├── k+p │ ├── bootscripts │ │ └── tpcboot.cmd │ ├── kp_imx53 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kp_id_rev.c │ │ ├── kp_id_rev.h │ │ └── kp_imx53.c │ └── kp_imx6q_tpc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kp_imx6q_tpc.c │ │ └── kp_imx6q_tpc_spl.c ├── keymile │ ├── Kconfig │ ├── README │ ├── common │ │ ├── common.c │ │ ├── common.h │ │ ├── ivm.c │ │ ├── qrio.c │ │ └── qrio.h │ ├── km83xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.kmeter1 │ │ ├── km83xx.c │ │ └── km83xx.env │ ├── kmcent2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── kmcent2.c │ │ ├── kmcent2.env │ │ ├── law.c │ │ └── tlb.c │ ├── pg-wcom-ls102xa │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── pg-wcom-expu1.env │ │ ├── pg-wcom-ls102xa.c │ │ └── pg-wcom-seli8.env │ ├── scripts │ │ ├── README │ │ ├── develop-arm.txt │ │ ├── develop-common.txt │ │ ├── develop-ppc_82xx.txt │ │ ├── develop-ppc_8xx.txt │ │ ├── ramfs-arm.txt │ │ ├── ramfs-common.txt │ │ ├── ramfs-ppc_82xx.txt │ │ └── ramfs-ppc_8xx.txt │ └── secu1 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ │ ├── socfpga.c │ │ └── socfpga_secu.env ├── khadas │ └── khadas-edge2-rk3588s │ │ ├── Kconfig │ │ └── MAINTAINERS ├── kobol │ └── helios4 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── helios4.c │ │ └── spiboot.config ├── kontron │ ├── pitx_imx8m │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lpddr4_timing_2gb.c │ │ ├── lpddr4_timing_4gb.c │ │ ├── pitx_imx8m.c │ │ ├── pitx_misc.c │ │ ├── pitx_misc.h │ │ └── spl.c │ ├── sl-mx6ul │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sl-mx6ul-common.c │ │ ├── sl-mx6ul-common.h │ │ ├── sl-mx6ul.c │ │ ├── sl-mx6ul.env │ │ └── spl.c │ ├── sl-mx8mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── lpddr4_timing.c │ │ ├── sl-mx8mm.c │ │ ├── sl-mx8mm.env │ │ └── spl.c │ └── sl28 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmds.c │ │ ├── common.c │ │ ├── ddr.c │ │ ├── psci.c │ │ ├── sl28.c │ │ ├── sl28.h │ │ ├── spl.c │ │ └── spl_atf.c ├── kosagi │ └── novena │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── novena.c │ │ ├── novena.h │ │ ├── novena_spl.c │ │ └── video.c ├── l+g │ └── vinco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vinco.c ├── lego │ └── ev3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── legoev3.c ├── lenovo │ └── ideapad-yoga-11 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ideapad-yoga-11-spl.c │ │ └── ideapad-yoga-11.env ├── lg │ ├── sniper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sniper.c │ │ └── sniper.h │ ├── star │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── star.c │ │ └── star.env │ └── x3-t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ ├── p880.config │ │ └── p895.config │ │ ├── p880.env │ │ ├── p895.env │ │ ├── x3-t30-spl.c │ │ └── x3-t30.c ├── libre-computer │ ├── aml-a311d-cc │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aml-a311d-cc.c │ ├── aml-s805x-ac │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aml-s805x-ac.c │ └── aml-s905d3-cc │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aml-s905d3-cc.c ├── liebherr │ ├── btt │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── boot_img_scr.h │ │ ├── btt.c │ │ ├── btt.env │ │ └── spl_btt.c │ ├── display5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── common.h │ │ ├── display5.c │ │ └── spl.c │ ├── mccmon6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mccmon6.c │ │ ├── mon6_imximage_nor.cfg │ │ ├── mon6_imximage_sd.cfg │ │ └── spl.c │ └── xea │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── boot_img_scr.h │ │ ├── spl_xea.c │ │ ├── xea.c │ │ └── xea.env ├── logicpd │ ├── am3517evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am3517evm.c │ │ ├── am3517evm.env │ │ └── am3517evm.h │ ├── imx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── imx6logic.c │ └── omap3som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── omap3logic.c │ │ └── omap3logic.h ├── maxbcm │ ├── MAINTAINERS │ ├── Makefile │ └── maxbcm.c ├── mediatek │ ├── Kconfig │ ├── common │ │ ├── Makefile │ │ ├── autoboot_helper.h │ │ ├── bl2_helper.c │ │ ├── bl2_helper.h │ │ ├── board_info.c │ │ ├── board_info.h │ │ ├── boot_helper.c │ │ ├── boot_helper.h │ │ ├── bootmenu_common.c │ │ ├── bootmenu_common.h │ │ ├── bootmenu_mmc.c │ │ ├── bootmenu_mmc_common.c │ │ ├── bootmenu_mtd.c │ │ ├── bootmenu_mtd_common.c │ │ ├── bootmenu_mtd_legacy.c │ │ ├── bootmenu_snor_emmc.c │ │ ├── bootmenu_ubi.c │ │ ├── bsp_conf.c │ │ ├── bsp_conf.h │ │ ├── cmd_bl2.c │ │ ├── cmd_bspconf.c │ │ ├── cmd_fip.c │ │ ├── cmd_mtkautoboot.c │ │ ├── cmd_mtkboardboot.c │ │ ├── cmd_mtkbootconf.c │ │ ├── cmd_mtkload.c │ │ ├── cmd_mtkupgrade.c │ │ ├── cmd_wget.c │ │ ├── cmd_xzdec.c │ │ ├── colored_print.h │ │ ├── customizations │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── cmd_mtk_cled.c │ │ ├── dm_parser.c │ │ ├── dm_parser.h │ │ ├── dual_boot.c │ │ ├── dual_boot.h │ │ ├── failsafe.c │ │ ├── fip.c │ │ ├── fip.h │ │ ├── fip_helper.c │ │ ├── fip_helper.h │ │ ├── firmware_image_package.h │ │ ├── image_helper.c │ │ ├── image_helper.h │ │ ├── load_data.c │ │ ├── load_data.h │ │ ├── mmc_helper.c │ │ ├── mmc_helper.h │ │ ├── mtd_helper.c │ │ ├── mtd_helper.h │ │ ├── mtk_aes_decrypt.c │ │ ├── mtk_ar.c │ │ ├── mtk_efuse.c │ │ ├── mtk_efuse.h │ │ ├── mtk_optee_aes_decrypt.c │ │ ├── mtk_wget.c │ │ ├── mtk_wget.h │ │ ├── nmbm.c │ │ ├── rootdisk.c │ │ ├── rootdisk.h │ │ ├── untar.c │ │ ├── untar.h │ │ ├── unxz.c │ │ ├── unxz.h │ │ ├── upgrade_helper.c │ │ ├── upgrade_helper.h │ │ ├── verify_helper.c │ │ └── verify_helper.h │ ├── mt7620 │ │ └── MAINTAINERS │ ├── mt7621 │ │ └── MAINTAINERS │ ├── mt7622 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7622_rfb.c │ ├── mt7623 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7623_rfb.c │ ├── mt7628 │ │ └── MAINTAINERS │ ├── mt7629 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7629_rfb.c │ ├── mt7981 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7981_rfb.c │ ├── mt7986 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7986_rfb.c │ ├── mt7987 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7987_rfb.c │ ├── mt7988 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7988_rfb.c │ ├── mt8183 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt8183_pumpkin.c │ ├── mt8365_evk │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt8365_evk.c │ ├── mt8512 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt8512.c │ ├── mt8516 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt8516_pumpkin.c │ └── mt8518 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt8518_ap1.c ├── menlo │ ├── m53menlo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── m53menlo.c │ └── mx8menlo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx8menlo.c ├── microchip │ ├── mpfs_icicle │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mpfs_icicle.c │ └── pic32mzda │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── pic32mzda.c ├── microsoft │ └── surface-rt │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── surface-rt-spl.c │ │ └── surface-rt.env ├── mikrotik │ └── crs3xx-98dx3236 │ │ ├── .gitignore │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── binary.0 │ │ ├── crs3xx-98dx3236.c │ │ └── kwbimage.cfg.in ├── mntre │ └── imx8mq_reform2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mq_reform2.c │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_ch2.h │ │ └── spl.c ├── motorola │ └── mot │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ ├── daytona.config │ │ └── olympus.config │ │ ├── mot-spl.c │ │ └── mot.env ├── mqmaker │ └── miqi_rk3288 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── msc │ └── sm2s_imx8mp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ ├── sm2s_imx8mp.c │ │ └── spl.c ├── mscc │ ├── common │ │ ├── Makefile │ │ └── spi.c │ ├── jr2 │ │ ├── Kconfig │ │ ├── Makefile │ │ └── jr2.c │ ├── luton │ │ ├── Kconfig │ │ ├── Makefile │ │ └── luton.c │ ├── ocelot │ │ ├── Kconfig │ │ ├── Makefile │ │ └── ocelot.c │ ├── serval │ │ ├── Kconfig │ │ ├── Makefile │ │ └── serval.c │ └── servalt │ │ ├── Kconfig │ │ ├── Makefile │ │ └── servalt.c ├── myir │ └── mys_6ulx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mys_6ulx.c │ │ └── spl.c ├── netgear │ ├── cg3100d │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── dgnd3700v2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── dgnd3700v2.c ├── novtech │ └── meerkat96 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imximage.cfg │ │ └── meerkat96.c ├── nuvoton │ ├── arbel_evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── arbel_evb.c │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── uart.c │ │ └── uart.h │ └── poleg_evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── poleg_evb.c ├── nvidia │ ├── beaver │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── beaver-spl.c │ ├── cardhu │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cardhu-spl.c │ │ ├── cardhu.c │ │ ├── cardhu.env │ │ └── pinmux-config-cardhu.h │ ├── dalmore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dalmore.c │ │ └── pinmux-config-dalmore.h │ ├── harmony │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── harmony.c │ ├── jetson-tk1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── jetson-tk1.c │ │ └── pinmux-config-jetson-tk1.h │ ├── nyan-big │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── nyan-big.c │ │ └── pinmux-config-nyan-big.h │ ├── p2371-0000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p2371-0000.c │ ├── p2371-2180 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p2371-2180.c │ ├── p2571 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── max77620_init.h │ │ └── p2571.c │ ├── p2771-0000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── p2771-0000.c │ │ └── p2771-0000.env │ ├── p3450-0000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── p3450-0000.c │ │ └── p3450-0000.env │ ├── seaboard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── seaboard.c │ ├── tegratab │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── tegratab-spl.c │ │ ├── tegratab.c │ │ └── tegratab.env │ ├── venice2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── as3722_init.c │ │ ├── pinmux-config-venice2.h │ │ └── venice2.c │ └── ventana │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile ├── olimex │ └── mx23_olinuxino │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx23_olinuxino.c │ │ └── spl_boot.c ├── opalkelly │ └── zynq │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── zynq-syzygy-hub │ │ └── ps7_init_gpl.c ├── openpiton │ └── riscv64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── openpiton-riscv64.c ├── out4 │ └── o4-imx6ull-nano │ │ ├── K4B4G1646D-BCMA.cfg │ │ ├── Kconfig │ │ ├── MT41K256M16HA-125E.cfg │ │ ├── Makefile │ │ └── o4-imx6ull-nano.c ├── ouya │ └── ouya │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ouya-spl.c │ │ ├── ouya.c │ │ └── ouya.env ├── phytec │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am6_som_detection.c │ │ ├── am6_som_detection.h │ │ ├── imx8m_som_detection.c │ │ ├── imx8m_som_detection.h │ │ ├── imx93_som_detection.c │ │ ├── imx93_som_detection.h │ │ ├── k3 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── k3_ddrss_patch.c │ │ │ └── k3_ddrss_patch.h │ │ ├── phytec_som_detection.c │ │ ├── phytec_som_detection.h │ │ ├── phytec_som_detection_blocks.c │ │ └── phytec_som_detection_blocks.h │ ├── pcl063 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── pcl063.c │ │ └── spl.c │ ├── pcm052 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── pcm052.c │ ├── pcm058 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── pcm058.c │ ├── phycore_am335x_r2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── phycore_am62ax │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── phycore-am62ax.c │ │ ├── phycore_am62ax.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── tifs-rm-cfg.yaml │ ├── phycore_am62x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── phycore-am62x.c │ │ ├── phycore-ddr-data.h │ │ ├── phycore_am62x.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── phycore_am64x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── phycore-am64x.c │ │ ├── phycore_am64x.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── phycore_imx8mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage-8mm-sd.cfg │ │ ├── lpddr4_timing.c │ │ ├── phycore-imx8mm.c │ │ ├── phycore_imx8mm.env │ │ └── spl.c │ ├── phycore_imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage-8mp-sd.cfg │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing.h │ │ ├── phycore-imx8mp.c │ │ ├── phycore_imx8mp.env │ │ └── spl.c │ ├── phycore_imx93 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lpddr4_timing.c │ │ ├── phycore-imx93.c │ │ ├── phycore_imx93.env │ │ └── spl.c │ └── phycore_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── phycore-rk3288.c │ │ └── som.h ├── phytium │ ├── durian │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpu.h │ │ └── durian.c │ ├── pe2201 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpu.h │ │ ├── ddr.c │ │ ├── pcie.c │ │ ├── pe2201.c │ │ ├── pe2201.env │ │ ├── pll.c │ │ └── sec.c │ └── pomelo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpu.h │ │ ├── ddr.c │ │ ├── pcie.c │ │ ├── pll.c │ │ ├── pomelo.c │ │ └── sec.c ├── pine64 │ ├── pinebook-pro-rk3399 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── pinephone-pro-rk3399 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── quartz64_rk3566 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── quartzpro64-rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── rockpro64_rk3399 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── polyhex │ └── imx8mp_debix_model_a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_debix_model_a.c │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c ├── powkiddy │ └── x55 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── x55.c ├── purism │ └── librem5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage-8mq-lpddr4.cfg │ │ ├── librem5.c │ │ ├── librem5.h │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_b0.c │ │ └── spl.c ├── qca │ ├── ap121 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ap121.c │ ├── ap143 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ap143.c │ └── ap152 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ap152.c ├── qnap │ └── ts433 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── qualcomm │ ├── MAINTAINERS │ ├── debug-sdm845.config │ ├── debug-sm6115.config │ ├── debug-sm8250.config │ ├── default.env │ ├── dragonboard410c │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ │ └── chainloaded.config │ │ ├── dragonboard410c.c │ │ ├── dragonboard410c.env │ │ └── readme.txt │ ├── dragonboard820c │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dragonboard820c.c │ │ └── readme.txt │ ├── dragonboard845c │ │ ├── MAINTAINERS │ │ └── db845c.its │ ├── qcom-phone.config │ ├── qcom-phone.env │ └── qcs404-evb │ │ ├── MAINTAINERS │ │ └── qcs404-evb.its ├── radxa │ ├── rock-5-itx-rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock-5c-rk3588s │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock2 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock5a-rk3588s │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock5b-rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rock5b-rk3588.c │ ├── rockpi4-rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rockpi4-rk3399.c │ └── zero3-rk3566 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── zero3-rk3566.c ├── raidsonic │ └── ib62x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ib62x0.c │ │ ├── ib62x0.h │ │ └── kwbimage.cfg ├── raspberrypi │ └── rpi │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpitables.h │ │ ├── dsdt.asl │ │ ├── emmc.asl │ │ ├── gpudevs.asl │ │ ├── lowlevel_init.S │ │ ├── pci.asl │ │ ├── pep.asl │ │ ├── rhpx.asl │ │ ├── rpi.c │ │ ├── rpi.env │ │ ├── sdhc.asl │ │ └── uart.asl ├── renesas │ ├── MAINTAINERS │ ├── alt │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── alt.c │ │ ├── alt_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── blanche │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── blanche.c │ │ ├── qos.c │ │ └── qos.h │ ├── common │ │ ├── Makefile │ │ ├── gen3-common.c │ │ ├── gen3-spl.c │ │ ├── gen4-common.c │ │ ├── gen4-spl.c │ │ ├── rcar64-common.c │ │ ├── rcar64-spl.c │ │ ├── rza1-common.c │ │ ├── rza1-lowlevel_init.S │ │ └── v3-common.c │ ├── condor │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── draak │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── draak.c │ ├── eagle │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── ebisu │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── falcon │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── genmai │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── genmai.c │ ├── gose │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gose.c │ │ ├── gose_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── grayhawk │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── grpeach │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── grpeach.c │ ├── koelsch │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── koelsch.c │ │ ├── koelsch_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── lager │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lager.c │ │ ├── lager_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── porter │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── porter.c │ │ ├── porter_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── r2dplus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── r2dplus.c │ ├── rzg2l │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rzg2l.c │ ├── s4sk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── s4sk.c │ ├── salvator-x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── salvator-x.c │ ├── silk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qos.c │ │ ├── qos.h │ │ ├── silk.c │ │ └── silk_spl.c │ ├── sparrowhawk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sparrowhawk.c │ ├── spider │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── stout │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── qos.c │ │ ├── qos.h │ │ ├── stout.c │ │ └── stout_spl.c │ ├── ulcb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpld.c │ │ └── ulcb.c │ ├── v3hsk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── cpld.c │ ├── v3msk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── cpld.c │ └── whitehawk │ │ ├── Kconfig │ │ └── MAINTAINERS ├── rikomagic │ └── mk808 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── rockchip │ ├── evb_px30 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_px5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README │ ├── evb_rk3036 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── evb_rk3036.c │ ├── evb_rk3128 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_rk3229 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README │ ├── evb_rk3288 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_rk3308 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── evb_rk3308.c │ ├── evb_rk3328 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README │ ├── evb_rk3568 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_rv1108 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── evb_rv1108.c │ ├── kylin_rk3036 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── kylin_rk3036.c │ ├── sheep_rk3368 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README │ ├── tinker_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── tinker-rk3288.c │ └── toybrick_rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── ronetix │ ├── imx7-cm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imx7-cm.c │ │ └── spl.c │ ├── imx8mq-cm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imx8mq_cm.c │ │ ├── imximage-8mq-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── pm9261 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pm9261.c │ ├── pm9263 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pm9263.c │ └── pm9g45 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pm9g45.c ├── sagem │ └── f@st1704 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── samsung │ ├── arndale │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── arndale.c │ │ └── arndale_spl.c │ ├── axy17lte │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── bootscripts │ │ │ ├── autoboot.cmd │ │ │ └── bootzimg.cmd │ │ ├── dfu_sample_env.txt │ │ ├── exynos-uboot-spl.lds │ │ ├── exynos5-dt-types.c │ │ ├── exynos5-dt.c │ │ ├── gadget.c │ │ ├── misc.c │ │ └── sromc.c │ ├── coreprimevelte │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── e850-96 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── e850-96.c │ │ ├── e850-96.env │ │ ├── fw.c │ │ └── fw.h │ ├── espresso7420 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── goni │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── goni.c │ │ ├── lowlevel_init.S │ │ └── onenand.c │ ├── odroid │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── odroid.c │ │ └── setup.h │ ├── origen │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── origen.c │ │ └── tools │ │ │ └── mkorigenspl.c │ ├── smdk5250 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── smdk5250_spl.c │ ├── smdk5420 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── smdk5420_spl.c │ ├── smdkc100 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── onenand.c │ │ └── smdkc100.c │ ├── smdkv310 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── smdkv310.c │ │ └── tools │ │ │ └── mksmdkv310spl.c │ ├── starqltechn │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── trats │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── setup.h │ │ └── trats.c │ ├── trats2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── trats2.c │ └── universal_c210 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── onenand.c │ │ └── universal.c ├── sandbox │ ├── MAINTAINERS │ ├── Makefile │ ├── capsule_priv_key_bad.key │ ├── capsule_priv_key_good.key │ ├── capsule_pub_key_bad.crt │ ├── capsule_pub_key_good.crt │ ├── sandbox.c │ └── sandbox.env ├── schneider │ ├── hmibsc │ │ ├── MAINTAINERS │ │ └── hmibsc.env │ └── rzn1-snarc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── rzn1.c │ │ └── spkgimage.cfg ├── seeed │ ├── linkit-smart-7688 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ └── npi_imx6ull │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── npi_imx6ull.c │ │ └── spl.c ├── sfr │ └── nb4_ser │ │ ├── Kconfig │ │ └── MAINTAINERS ├── sielaff │ └── imx6dl-sielaff │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx6dl-sielaff.c │ │ ├── imx6dl-sielaff.env │ │ └── spl.c ├── siemens │ ├── capricorn │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── capricorn_default.env │ │ ├── imximage.cfg │ │ ├── spl.c │ │ ├── spl_memory_test.c │ │ ├── spl_memory_test.h │ │ └── uboot-container.cfg │ ├── common │ │ ├── Kconfig │ │ ├── board.h │ │ ├── board_am335x.c │ │ ├── board_am335x.h │ │ ├── ddr_si_test.c │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ ├── factoryset.c │ │ └── factoryset.h │ ├── corvus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── draco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── iot2050 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── config.mk │ │ └── iot2050.env │ ├── pxm2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── mux.c │ │ └── pmic.h │ ├── rut │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux.c │ ├── smartweb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── smartweb.c │ └── taurus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── taurus.c ├── sifive │ ├── unleashed │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── genimage_sdcard.cfg │ │ ├── genimage_spi-nor.cfg │ │ ├── spl.c │ │ └── unleashed.c │ └── unmatched │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── hifive-platform-i2c-eeprom.c │ │ ├── spl.c │ │ ├── unmatched.c │ │ └── unmatched.env ├── silinux │ └── ek874 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ek874.c ├── sipeed │ └── maix │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── maix.c ├── skyworth │ └── hc2910-2aghd05 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── hc2910-2aghd05.c ├── socionext │ └── developerbox │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── developerbox.c │ │ └── fwu_plat.c ├── socrates │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── ddr.c │ ├── law.c │ ├── nand.c │ ├── sdram.c │ ├── socrates.c │ ├── socrates.env │ ├── tlb.c │ └── upm_table.h ├── softing │ ├── vining_2000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── vining_2000.c │ └── vining_fpga │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ │ └── socfpga.c ├── solidrun │ ├── clearfog │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── clearfog.c │ ├── common │ │ ├── Makefile │ │ ├── tlv_data.c │ │ └── tlv_data.h │ └── mx6cuboxi │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mx6cuboxi.c ├── somlabs │ └── visionsom-6ull │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── visionsom-6ull.c ├── sophgo │ ├── licheerv_nano │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ └── milkv_duo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── ethernet.c │ │ └── ethernet.h ├── spacemit │ └── bananapi-f3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── sr1500 │ ├── MAINTAINERS │ ├── Makefile │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ └── socfpga.c ├── st │ ├── common │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_stboard.c │ │ ├── stm32mp_dfu.c │ │ ├── stm32mp_dfu_virt.c │ │ ├── stpmic1.c │ │ ├── stpmic1.h │ │ ├── stusb160x.c │ │ └── stusb160x.h │ ├── stih410-b2260 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── stm32f429-discovery │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ └── stm32f429-discovery.c │ ├── stm32f429-evaluation │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32f429-evaluation.c │ ├── stm32f469-discovery │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32f469-discovery.c │ ├── stm32f746-disco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32f746-disco.c │ ├── stm32h743-disco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32h743-disco.c │ ├── stm32h743-eval │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32h743-eval.c │ ├── stm32h747-disco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32h747-disco.c │ ├── stm32h750-art-pi │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32h750-art-pi.c │ ├── stm32mp1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── debug_uart.c │ │ ├── extlinux.conf │ │ ├── fit_copro_kernel_dtb.its │ │ ├── fit_kernel_dtb.its │ │ ├── spl.c │ │ └── stm32mp1.c │ └── stm32mp2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32mp2.c ├── starfive │ └── visionfive2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── spl.c │ │ ├── starfive_visionfive2.c │ │ └── visionfive2-i2c-eeprom.c ├── ste │ └── stemmy │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stemmy.c ├── storopack │ └── smegw01 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── smegw01.c │ │ └── smegw01.env ├── sunxi │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README.nand │ ├── README.sunxi64 │ ├── board.c │ ├── chip.c │ ├── dram_sun4i_auto.c │ ├── dram_sun5i_auto.c │ ├── dram_timings_sun4i.h │ └── gmac.c ├── synopsys │ ├── MAINTAINERS │ ├── axs10x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── axs10x.c │ │ ├── axs10x.h │ │ ├── config.mk │ │ └── headerize-axs.py │ ├── emsdp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ └── emsdp.c │ ├── hsdk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── clk-lib.c │ │ ├── clk-lib.h │ │ ├── config.mk │ │ ├── env-lib.c │ │ ├── env-lib.h │ │ ├── headerize-hsdk.py │ │ └── hsdk.c │ ├── iot_devkit │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── iot_devkit.c │ │ └── u-boot.lds │ └── nsim │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── nsim.c ├── sysam │ ├── amcore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── amcore.c │ └── stmark2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sbf_dram_init.S │ │ └── stmark2.c ├── tbs │ └── tbs2910 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── tbs2910.c │ │ └── tbs2910.cfg ├── tcl │ └── sl50 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── technexion │ ├── pico-imx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── pico-imx6.c │ │ └── spl.c │ ├── pico-imx6ul │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imximage.cfg │ │ ├── pico-imx6ul.c │ │ └── spl.c │ ├── pico-imx7d │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── README.pico-imx7d_BL33 │ │ ├── pico-imx7d.c │ │ └── spl.c │ └── pico-imx8mq │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── lpddr4_timing.h │ │ ├── lpddr4_timing_1gb.c │ │ ├── lpddr4_timing_2gb.c │ │ ├── lpddr4_timing_3gb.c │ │ ├── lpddr4_timing_4gb.c │ │ ├── pico-imx8mq.c │ │ └── spl.c ├── terasic │ ├── de0-nano-soc │ │ ├── MAINTAINERS │ │ └── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ ├── de1-soc │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ │ └── socfpga.c │ ├── de10-nano │ │ ├── MAINTAINERS │ │ └── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ ├── de10-standard │ │ ├── MAINTAINERS │ │ └── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ └── sockit │ │ ├── MAINTAINERS │ │ └── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h ├── thead │ └── th1520_lpi4a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── spl.c ├── theadorable │ ├── MAINTAINERS │ ├── Makefile │ ├── fpga.c │ ├── theadorable.c │ └── theadorable.h ├── thecus │ └── n2350 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── n2350.c ├── theobroma-systems │ ├── common │ │ ├── Makefile │ │ ├── common.c │ │ └── common.h │ ├── jaguar_rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── jaguar_rk3588.c │ ├── puma_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── puma-rk3399.c │ ├── ringneck_px30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── ringneck-px30.c │ └── tiger_rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── tiger_rk3588.c ├── ti │ ├── am335x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── am43xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── am57xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux_data.h │ ├── am62ax │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am62ax.env │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── tifs-rm-cfg.yaml │ ├── am62px │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am62px.env │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── tifs-rm-cfg.yaml │ ├── am62x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am62x.env │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── am64x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am64x.env │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── am65x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am65x.env │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board_detect.c │ │ ├── board_detect.h │ │ ├── cape_detect.c │ │ ├── cape_detect.h │ │ ├── fdt_ops.c │ │ ├── fdt_ops.h │ │ ├── k3-ddr.c │ │ └── k3-ddr.h │ ├── dra7xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── evm.c │ │ └── mux_data.h │ ├── j7200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── j7200.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── j721e │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── j721e.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── j721s2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── j721s2.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── j722s │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── j722s.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── tifs-rm-cfg.yaml │ ├── j784s4 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── j784s4.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── tifs-rm-cfg.yaml │ ├── ks2_evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ ├── board_k2e.c │ │ ├── board_k2g.c │ │ ├── board_k2hk.c │ │ ├── board_k2l.c │ │ ├── ddr3_cfg.c │ │ ├── ddr3_cfg.h │ │ ├── ddr3_k2e.c │ │ ├── ddr3_k2g.c │ │ ├── ddr3_k2hk.c │ │ ├── ddr3_k2l.c │ │ ├── k2e_evm.env │ │ ├── k2g_evm.env │ │ ├── k2hk_evm.env │ │ ├── k2l_evm.env │ │ └── mux-k2g.h │ └── omap3evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── evm.c │ │ └── evm.h ├── timll │ └── devkit8000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── devkit8000.c │ │ └── devkit8000.h ├── topic │ └── zynq │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── zynq-topic-miami │ │ ├── ps7_init_gpl.c │ │ └── ps7_regs.txt │ │ ├── zynq-topic-miamilite │ │ ├── ps7_init_gpl.c │ │ └── ps7_regs.txt │ │ └── zynq-topic-miamiplus │ │ ├── ps7_init_gpl.c │ │ └── ps7_regs.txt ├── toradex │ ├── apalis-imx8 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apalis-imx8-imximage.cfg │ │ └── apalis-imx8.c │ ├── apalis-tk1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apalis-tk1.c │ │ ├── apalis-tk1.env │ │ ├── as3722_init.c │ │ └── pinmux-config-apalis-tk1.h │ ├── apalis_imx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apalis_imx6.c │ │ ├── do_fuse.c │ │ ├── pf0100.c │ │ ├── pf0100.h │ │ └── pf0100_otp.inc │ ├── apalis_t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apalis_t30-spl.c │ │ ├── apalis_t30.c │ │ ├── apalis_t30.env │ │ └── pinmux-config-apalis_t30.h │ ├── colibri-imx6ull │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri-imx6ull.c │ │ └── imximage.cfg │ ├── colibri-imx8x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri-imx8x-imximage.cfg │ │ └── colibri-imx8x.c │ ├── colibri_imx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_imx6.c │ │ ├── do_fuse.c │ │ ├── pf0100.c │ │ ├── pf0100.h │ │ └── pf0100_otp.inc │ ├── colibri_imx7 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_imx7.c │ │ └── imximage.cfg │ ├── colibri_t20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_t20.c │ │ └── colibri_t20.env │ ├── colibri_t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_t30-spl.c │ │ ├── colibri_t30.c │ │ ├── colibri_t30.env │ │ └── pinmux-config-colibri_t30.h │ ├── colibri_vf │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_vf.c │ │ └── imximage.cfg │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── tdx-cfg-block.c │ │ ├── tdx-cfg-block.h │ │ ├── tdx-common.c │ │ ├── tdx-common.h │ │ ├── tdx-eeprom.c │ │ └── tdx-eeprom.h │ ├── smarc-imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing.h │ │ ├── smarc-imx8mp.c │ │ ├── smarc-imx8mp.env │ │ └── spl.c │ ├── verdin-am62 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── verdin-am62.c │ ├── verdin-am62p │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ ├── tifs-rm-cfg.yaml │ │ ├── verdin-am62p.c │ │ └── verdin-am62p.env │ ├── verdin-imx8mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── lpddr4_timing.c │ │ ├── spl.c │ │ └── verdin-imx8mm.c │ └── verdin-imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing.h │ │ ├── spl.c │ │ └── verdin-imx8mp.c ├── tplink │ └── wdr4300 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── wdr4300.c ├── tq │ └── tqma6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── clocks.cfg │ │ ├── tqma6.c │ │ ├── tqma6_bb.h │ │ ├── tqma6_mba6.c │ │ ├── tqma6_wru4.c │ │ ├── tqma6dl.cfg │ │ ├── tqma6q.cfg │ │ └── tqma6s.cfg ├── traverse │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ten64-controller.h │ │ └── ten64_controller.c │ └── ten64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eth_ten64.c │ │ └── ten64.c ├── turing │ └── turing-rk1-rk3588 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── udoo │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── neo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── neo.c │ ├── udoo.c │ └── udoo_spl.c ├── vamrs │ └── rock960_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README ├── variscite │ ├── common │ │ ├── eth.c │ │ ├── eth.h │ │ ├── imx9_eeprom.c │ │ ├── imx9_eeprom.h │ │ └── mmc.c │ ├── dart_6ul │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── dart_6ul.c │ │ └── spl.c │ ├── imx8mn_var_som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr4_timing.c │ │ ├── imx8mn_var_som.c │ │ ├── imximage-8mn-ddr4.cfg │ │ └── spl.c │ └── imx93_var_som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx93_var_som.c │ │ ├── imx93_var_som.env │ │ ├── lpddr4x_timing.c │ │ └── spl.c ├── vocore │ └── vocore2 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── vscom │ └── baltos │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── wandboard │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── spl.c │ └── wandboard.c ├── warp7 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── imximage.cfg │ └── warp7.c ├── wexler │ └── qc750 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qc750-spl.c │ │ ├── qc750.c │ │ └── qc750.env ├── work-microwave │ └── work_92105 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── work_92105.c │ │ ├── work_92105_display.c │ │ ├── work_92105_display.h │ │ └── work_92105_spl.c ├── xen │ └── xenguest_arm64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── xenguest_arm64.c ├── xiaomi │ └── mocha │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mocha-spl.c │ │ ├── mocha.c │ │ └── mocha.env ├── xilinx │ ├── Kconfig │ ├── bootscripts │ │ ├── qspiboot.cmd │ │ └── sdboot.cmd │ ├── common │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ ├── cpu-info.c │ │ ├── fru.c │ │ ├── fru.h │ │ └── fru_ops.c │ ├── mbv │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── microblaze-generic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── microblaze-generic.c │ ├── versal-net │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── versal │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── zynq │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── bootimg.c │ │ ├── cmds.c │ │ ├── xil_io.h │ │ ├── zynq-cc108 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-cse-nand │ │ ├── zynq-cse-nor │ │ ├── zynq-cse-qspi-single │ │ ├── zynq-dlc20-rev1.0 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-microzed │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc702 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc706 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc770-xm010 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc770-xm011-x16 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc770-xm011 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc770-xm012 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zc770-xm013 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zed │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zturn-v5 │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zturn │ │ │ └── ps7_init_gpl.c │ │ ├── zynq-zybo-z7 │ │ │ └── ps7_init_gpl.c │ │ └── zynq-zybo │ │ │ └── ps7_init_gpl.c │ ├── zynqmp │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── avnet-ultra96-rev1 │ │ ├── pm_cfg_obj.S │ │ ├── pm_cfg_obj.h │ │ ├── sleep.h │ │ ├── xil_io.h │ │ ├── zynqmp-a2197-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-dlc21-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-e-a2197-00-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-e-a2197-00-revB │ │ ├── zynqmp-g-a2197-00-revA │ │ ├── zynqmp-m-a2197-01-revA │ │ ├── zynqmp-m-a2197-02-revA │ │ ├── zynqmp-m-a2197-03-revA │ │ ├── zynqmp-mini │ │ ├── zynqmp-mini-emmc0 │ │ ├── zynqmp-mini-emmc1 │ │ ├── zynqmp-mini-qspi │ │ ├── zynqmp-p-a2197-00-revA │ │ ├── zynqmp-sm-k24-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-sm-k26-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-smk-k24-revA │ │ ├── zynqmp-smk-k26-revA │ │ ├── zynqmp-topic-miamimp-xilinx-xdp-v1r1 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1232-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1254-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1751-xm015-dc1 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1751-xm016-dc2 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1751-xm017-dc3 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1751-xm018-dc4 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zc1751-xm019-dc5 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu100-revC │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu102-rev1.0 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu102-rev1.1 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu102-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu104-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu104-revC │ │ ├── zynqmp-zcu106-rev1.0 │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu106-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu111-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu1275-revA │ │ ├── zynqmp-zcu1275-revB │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu208-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp-zcu216-revA │ │ │ └── psu_init_gpl.c │ │ ├── zynqmp.c │ │ └── zynqmp_kria.env │ └── zynqmp_r5 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── xunlong │ └── orangepi-3b-rk3566 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── orangepi-3b-rk3566.c └── zyxel │ ├── nsa310s │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── kwbimage.cfg │ └── nsa310s.c │ └── nsa325 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── kwbimage.cfg │ └── nsa325.c ├── boot ├── Kconfig ├── Makefile ├── android_ab.c ├── boot_fit.c ├── bootdev-uclass.c ├── bootflow.c ├── bootflow_internal.h ├── bootflow_menu.c ├── bootm.c ├── bootm_os.c ├── bootmeth-uclass.c ├── bootmeth_android.c ├── bootmeth_android.h ├── bootmeth_cros.c ├── bootmeth_cros.h ├── bootmeth_efi.c ├── bootmeth_efi_mgr.c ├── bootmeth_extlinux.c ├── bootmeth_pxe.c ├── bootmeth_qfw.c ├── bootmeth_rauc.c ├── bootmeth_sandbox.c ├── bootmeth_script.c ├── bootretry.c ├── bootstd-uclass.c ├── cedit.c ├── common_fit.c ├── expo.c ├── expo_build.c ├── expo_build_cb.c ├── fdt_region.c ├── fdt_simplefb.c ├── fdt_support.c ├── image-android-dt.c ├── image-android.c ├── image-board.c ├── image-cipher.c ├── image-fdt.c ├── image-fit-sig.c ├── image-fit.c ├── image-host.c ├── image-pre-load.c ├── image-sig.c ├── image.c ├── prog_boot.c ├── pxe_utils.c ├── scene.c ├── scene_internal.h ├── scene_menu.c ├── scene_textedit.c ├── scene_textline.c ├── upl_common.c ├── upl_common.h ├── upl_read.c ├── upl_write.c ├── vbe.c ├── vbe_abrec.c ├── vbe_abrec.h ├── vbe_abrec_fw.c ├── vbe_common.c ├── vbe_common.h ├── vbe_request.c ├── vbe_simple.c ├── vbe_simple.h ├── vbe_simple_fw.c └── vbe_simple_os.c ├── cmd ├── .gitignore ├── 2048.c ├── Kconfig ├── Makefile ├── abootimg.c ├── acpi.c ├── adc.c ├── addrmap.c ├── adtimg.c ├── aes.c ├── arm │ ├── Makefile │ ├── exception.c │ └── exception64.c ├── armffa.c ├── armflash.c ├── avb.c ├── axi.c ├── bcb.c ├── bdinfo.c ├── bind.c ├── binop.c ├── blk_common.c ├── blkcache.c ├── blkmap.c ├── blob.c ├── bloblist.c ├── bmp.c ├── boot.c ├── bootcount.c ├── bootdev.c ├── bootefi.c ├── bootflow.c ├── booti.c ├── bootm.c ├── bootmenu.c ├── bootmeth.c ├── bootstage.c ├── bootstd.c ├── bootz.c ├── broadcom │ ├── Makefile │ ├── chimp_boot.c │ ├── chimp_handshake.c │ └── nitro_image_load.c ├── btrfs.c ├── button.c ├── cache.c ├── cat.c ├── cbfs.c ├── cedit.c ├── cli.c ├── clk.c ├── clone.c ├── cls.c ├── config.c ├── conitrace.c ├── console.c ├── cpu.c ├── cramfs.c ├── cros_ec.c ├── cyclic.c ├── date.c ├── demo.c ├── dfu.c ├── diag.c ├── disk.c ├── dm.c ├── echo.c ├── eeprom.c ├── efi.c ├── efi_common.c ├── eficonfig.c ├── eficonfig_sbkey.c ├── efidebug.c ├── elf.c ├── erofs.c ├── ethsw.c ├── event.c ├── exit.c ├── ext2.c ├── ext4.c ├── extension_board.c ├── fastboot.c ├── fat.c ├── fdt.c ├── flash.c ├── font.c ├── fpga.c ├── fpgad.c ├── fs.c ├── fs_uuid.c ├── fuse.c ├── fwu_mdata.c ├── gettime.c ├── gpio.c ├── gpt.c ├── hash.c ├── help.c ├── history.c ├── host.c ├── i2c.c ├── ide.c ├── ini.c ├── io.c ├── iotrace.c ├── irq.c ├── itest.c ├── jffs2.c ├── kaslrseed.c ├── led.c ├── legacy-mtd-utils.c ├── legacy-mtd-utils.h ├── legacy_led.c ├── license.c ├── load.c ├── log.c ├── lsblk.c ├── lwip │ ├── Makefile │ ├── dhcp.c │ ├── dns.c │ ├── ping.c │ ├── sntp.c │ ├── tftp.c │ └── wget.c ├── lzmadec.c ├── mbr.c ├── md5sum.c ├── mdio.c ├── mem.c ├── meminfo.c ├── meson │ ├── Makefile │ └── sm.c ├── mii.c ├── misc.c ├── mmc.c ├── mp.c ├── mtd.c ├── mtdparts.c ├── mux.c ├── mvebu │ ├── Kconfig │ ├── Makefile │ ├── bubt.c │ └── comphy_rx_training.c ├── nand-ext.c ├── nand.c ├── net-common.c ├── net.c ├── nmbm.c ├── nvedit.c ├── nvedit_efi.c ├── nvme.c ├── onenand.c ├── optee.c ├── optee_rpmb.c ├── osd.c ├── panic.c ├── part.c ├── pause.c ├── pcap.c ├── pci.c ├── pci_mps.c ├── pinmux.c ├── pmc.c ├── pmic.c ├── printf.c ├── printf.h ├── pstore.c ├── pvblock.c ├── pwm.c ├── pxe.c ├── qfw.c ├── read.c ├── reginfo.c ├── regulator.c ├── remoteproc.c ├── riscv │ ├── Makefile │ ├── exception.c │ └── sbi.c ├── rkmtd.c ├── rng.c ├── rockusb.c ├── rtc.c ├── sandbox │ ├── Makefile │ └── exception.c ├── sata.c ├── sb.c ├── scmi.c ├── scp03.c ├── scsi.c ├── seama.c ├── setexpr.c ├── sf.c ├── sha1sum.c ├── sleep.c ├── smbios.c ├── smccc.c ├── sound.c ├── source.c ├── spawn.c ├── spi.c ├── spl.c ├── sqfs.c ├── stackprot_test.c ├── strings.c ├── sysboot.c ├── tcpm.c ├── temperature.c ├── terminal.c ├── test.c ├── thordown.c ├── ti │ ├── Kconfig │ ├── Makefile │ ├── ddr3.c │ └── pd.c ├── time.c ├── timer.c ├── tlv_eeprom.c ├── tpm-common.c ├── tpm-user-utils.h ├── tpm-v1.c ├── tpm-v2.c ├── tpm_test.c ├── trace.c ├── ubi.c ├── ubifs.c ├── ufetch.c ├── ufs.c ├── unlz4.c ├── unzip.c ├── upl.c ├── usb.c ├── usb_gadget_sdp.c ├── usb_mass_storage.c ├── vbe.c ├── version.c ├── video.c ├── virtio.c ├── w1.c ├── wdt.c ├── wol.c ├── x86 │ ├── Makefile │ ├── cbcmos.c │ ├── cbsysinfo.c │ ├── cpuid.c │ ├── exception.c │ ├── fsp.c │ ├── hob.c │ ├── msr.c │ ├── mtrr.c │ └── zboot.c ├── ximg.c ├── xxd.c ├── zfs.c └── zip.c ├── common ├── Kconfig ├── Makefile ├── autoboot.c ├── avb_verify.c ├── bloblist.c ├── board_f.c ├── board_info.c ├── board_r.c ├── bootstage.c ├── bouncebuf.c ├── button_cmd.c ├── cli.c ├── cli_getch.c ├── cli_hush.c ├── cli_hush_modern.c ├── cli_hush_upstream.c ├── cli_readline.c ├── cli_simple.c ├── command.c ├── console.c ├── cros_ec.c ├── cyclic.c ├── ddr_spd.c ├── dfu.c ├── dlmalloc.c ├── dlmalloc.src ├── edid.c ├── eeprom │ ├── eeprom_field.c │ └── eeprom_layout.c ├── event.c ├── exports.c ├── flash.c ├── hash.c ├── hwconfig.c ├── init │ ├── Makefile │ ├── board_init.c │ └── handoff.c ├── iomux.c ├── iotrace.c ├── kallsyms.c ├── kgdb.c ├── kgdb_stubs.c ├── log.c ├── log_console.c ├── log_syslog.c ├── main.c ├── malloc_simple.c ├── mcheck_core.inc.h ├── memsize.c ├── memtop.c ├── menu.c ├── miiphyutil.c ├── qfw.c ├── s_record.c ├── scp03.c ├── spl │ ├── Kconfig │ ├── Kconfig.nxp │ ├── Kconfig.tpl │ ├── Kconfig.vpl │ ├── Makefile │ ├── spl.c │ ├── spl_atf.c │ ├── spl_blk_fs.c │ ├── spl_bootrom.c │ ├── spl_dfu.c │ ├── spl_ext.c │ ├── spl_fat.c │ ├── spl_fit.c │ ├── spl_imx_container.c │ ├── spl_legacy.c │ ├── spl_mmc.c │ ├── spl_nand.c │ ├── spl_net.c │ ├── spl_nor.c │ ├── spl_nvme.c │ ├── spl_onenand.c │ ├── spl_opensbi.c │ ├── spl_optee.S │ ├── spl_ram.c │ ├── spl_reloc.c │ ├── spl_sata.c │ ├── spl_sdp.c │ ├── spl_semihosting.c │ ├── spl_spi.c │ ├── spl_ubi.c │ ├── spl_upl.c │ ├── spl_usb.c │ ├── spl_xip.c │ └── spl_ymodem.c ├── splash.c ├── splash_source.c ├── stackprot.c ├── stdio.c ├── system_map.c ├── update.c ├── usb.c ├── usb_hub.c ├── usb_kbd.c ├── usb_onboard_hub.c ├── usb_storage.c ├── version.c └── xyzModem.c ├── config.mk ├── configs ├── 10m50_defconfig ├── 3c120_defconfig ├── A10-OLinuXino-Lime_defconfig ├── A10s-OLinuXino-M_defconfig ├── A13-OLinuXinoM_defconfig ├── A13-OLinuXino_defconfig ├── A20-OLinuXino-Lime2-eMMC_defconfig ├── A20-OLinuXino-Lime2_defconfig ├── A20-OLinuXino-Lime_defconfig ├── A20-OLinuXino_MICRO-eMMC_defconfig ├── A20-OLinuXino_MICRO_defconfig ├── A20-Olimex-SOM-EVB_defconfig ├── A20-Olimex-SOM204-EVB-eMMC_defconfig ├── A20-Olimex-SOM204-EVB_defconfig ├── A33-OLinuXino_defconfig ├── Ainol_AW1_defconfig ├── Ampe_A76_defconfig ├── Auxtek-T003_defconfig ├── Auxtek-T004_defconfig ├── Bananapi_M2_Ultra_defconfig ├── Bananapi_defconfig ├── Bananapi_m2m_defconfig ├── Bananapro_defconfig ├── CHIP_defconfig ├── CHIP_pro_defconfig ├── CMPC885_defconfig ├── CMPCPRO_defconfig ├── CSQ_CS908_defconfig ├── Chuwi_V7_CW0825_defconfig ├── Colombus_defconfig ├── Cubieboard2_defconfig ├── Cubieboard4_defconfig ├── Cubieboard_defconfig ├── Cubietruck_defconfig ├── Cubietruck_plus_defconfig ├── Empire_electronix_d709_defconfig ├── Empire_electronix_m712_defconfig ├── Hummingbird_A31_defconfig ├── Hyundai_A7HD_defconfig ├── Itead_Ibox_A20_defconfig ├── Lamobo_R1_defconfig ├── LicheePi_Zero_defconfig ├── Linksprite_pcDuino3_Nano_defconfig ├── Linksprite_pcDuino3_defconfig ├── Linksprite_pcDuino_defconfig ├── M5208EVBE_defconfig ├── M5235EVB_Flash32_defconfig ├── M5235EVB_defconfig ├── M5249EVB_defconfig ├── M5253DEMO_defconfig ├── M5272C3_defconfig ├── M5275EVB_defconfig ├── M5282EVB_defconfig ├── M53017EVB_defconfig ├── M5329AFEE_defconfig ├── M5329BFEE_defconfig ├── M5373EVB_defconfig ├── MCR3000_defconfig ├── MK808C_defconfig ├── MPC837XERDB_defconfig ├── MPC8548CDS_36BIT_defconfig ├── MPC8548CDS_defconfig ├── MPC8548CDS_legacy_defconfig ├── MSI_Primo73_defconfig ├── MSI_Primo81_defconfig ├── Marsboard_A10_defconfig ├── Mele_A1000G_quad_defconfig ├── Mele_A1000_defconfig ├── Mele_I7_defconfig ├── Mele_M3_defconfig ├── Mele_M5_defconfig ├── Mele_M9_defconfig ├── Merrii_A80_Optimus_defconfig ├── Mini-X_defconfig ├── Nintendo_NES_Classic_Edition_defconfig ├── Orangepi_defconfig ├── Orangepi_mini_defconfig ├── P1010RDB-PA_36BIT_NAND_defconfig ├── P1010RDB-PA_36BIT_NOR_defconfig ├── P1010RDB-PA_36BIT_SDCARD_defconfig ├── P1010RDB-PA_36BIT_SPIFLASH_defconfig ├── P1010RDB-PA_NAND_defconfig ├── P1010RDB-PA_NOR_defconfig ├── P1010RDB-PA_SDCARD_defconfig ├── P1010RDB-PA_SPIFLASH_defconfig ├── P1010RDB-PB_36BIT_NAND_defconfig ├── P1010RDB-PB_36BIT_NOR_defconfig ├── P1010RDB-PB_36BIT_SDCARD_defconfig ├── P1010RDB-PB_36BIT_SPIFLASH_defconfig ├── P1010RDB-PB_NAND_defconfig ├── P1010RDB-PB_NOR_defconfig ├── P1010RDB-PB_SDCARD_defconfig ├── P1010RDB-PB_SPIFLASH_defconfig ├── P1020RDB-PC_36BIT_NAND_defconfig ├── P1020RDB-PC_36BIT_SDCARD_defconfig ├── P1020RDB-PC_36BIT_SPIFLASH_defconfig ├── P1020RDB-PC_36BIT_defconfig ├── P1020RDB-PC_NAND_defconfig ├── P1020RDB-PC_SDCARD_defconfig ├── P1020RDB-PC_SPIFLASH_defconfig ├── P1020RDB-PC_defconfig ├── P1020RDB-PD_NAND_defconfig ├── P1020RDB-PD_SDCARD_defconfig ├── P1020RDB-PD_SPIFLASH_defconfig ├── P1020RDB-PD_defconfig ├── P2020RDB-PC_36BIT_NAND_defconfig ├── P2020RDB-PC_36BIT_SDCARD_defconfig ├── P2020RDB-PC_36BIT_SPIFLASH_defconfig ├── P2020RDB-PC_36BIT_defconfig ├── P2020RDB-PC_NAND_defconfig ├── P2020RDB-PC_SDCARD_defconfig ├── P2020RDB-PC_SPIFLASH_defconfig ├── P2020RDB-PC_defconfig ├── P2041RDB_NAND_defconfig ├── P2041RDB_SDCARD_defconfig ├── P2041RDB_SPIFLASH_defconfig ├── P2041RDB_defconfig ├── SBx81LIFKW_defconfig ├── SBx81LIFXCAT_defconfig ├── Sinlinx_SinA31s_defconfig ├── Sinlinx_SinA33_defconfig ├── Sinovoip_BPI_M2_defconfig ├── Sinovoip_BPI_M3_defconfig ├── Sunchip_CX-A99_defconfig ├── T1024RDB_NAND_defconfig ├── T1024RDB_SDCARD_defconfig ├── T1024RDB_SPIFLASH_defconfig ├── T1024RDB_defconfig ├── T1042D4RDB_NAND_defconfig ├── T1042D4RDB_SDCARD_defconfig ├── T1042D4RDB_SPIFLASH_defconfig ├── T1042D4RDB_defconfig ├── T2080QDS_NAND_defconfig ├── T2080QDS_SDCARD_defconfig ├── T2080QDS_SECURE_BOOT_defconfig ├── T2080QDS_SPIFLASH_defconfig ├── T2080QDS_SRIO_PCIE_BOOT_defconfig ├── T2080QDS_defconfig ├── T2080RDB_NAND_defconfig ├── T2080RDB_SDCARD_defconfig ├── T2080RDB_SPIFLASH_defconfig ├── T2080RDB_defconfig ├── T2080RDB_revD_NAND_defconfig ├── T2080RDB_revD_SDCARD_defconfig ├── T2080RDB_revD_SPIFLASH_defconfig ├── T2080RDB_revD_defconfig ├── T4240RDB_SDCARD_defconfig ├── T4240RDB_defconfig ├── UTOO_P66_defconfig ├── Wexler_TAB7200_defconfig ├── Wits_Pro_A20_DKT_defconfig ├── Wobo_i5_defconfig ├── Yones_Toptech_BD1078_defconfig ├── Yones_Toptech_BS1078_V2_defconfig ├── a3y17lte_defconfig ├── a5y17lte_defconfig ├── a64-olinuxino-emmc_defconfig ├── a64-olinuxino_defconfig ├── a7y17lte_defconfig ├── ad401_defconfig ├── ae350_rv32_defconfig ├── ae350_rv32_falcon_defconfig ├── ae350_rv32_falcon_xip_defconfig ├── ae350_rv32_spl_defconfig ├── ae350_rv32_spl_xip_defconfig ├── ae350_rv32_xip_defconfig ├── ae350_rv64_defconfig ├── ae350_rv64_falcon_defconfig ├── ae350_rv64_falcon_xip_defconfig ├── ae350_rv64_spl_defconfig ├── ae350_rv64_spl_xip_defconfig ├── ae350_rv64_xip_defconfig ├── alt_defconfig ├── am335x_baltos_defconfig ├── am335x_evm_defconfig ├── am335x_evm_spiboot_defconfig ├── am335x_guardian_defconfig ├── am335x_hs_evm_defconfig ├── am335x_hs_evm_spi_defconfig ├── am335x_hs_evm_uart_defconfig ├── am335x_igep003x_defconfig ├── am335x_pdu001_defconfig ├── am335x_shc_defconfig ├── am335x_shc_ict_defconfig ├── am335x_shc_netboot_defconfig ├── am335x_shc_sdboot_defconfig ├── am335x_sl50_defconfig ├── am3517_evm_defconfig ├── am43xx_evm_defconfig ├── am43xx_evm_qspiboot_defconfig ├── am43xx_evm_rtconly_defconfig ├── am43xx_evm_usbhost_boot_defconfig ├── am43xx_hs_evm_defconfig ├── am43xx_hs_evm_qspi_defconfig ├── am57xx_evm_defconfig ├── am57xx_hs_evm_defconfig ├── am57xx_hs_evm_usb_defconfig ├── am62ax_evm_a53_defconfig ├── am62ax_evm_r5_defconfig ├── am62px_evm_a53_defconfig ├── am62px_evm_r5_defconfig ├── am62x_a53_android.config ├── am62x_a53_usbdfu.config ├── am62x_a53_usbmsc.config ├── am62x_beagleplay_a53_defconfig ├── am62x_beagleplay_r5_defconfig ├── am62x_evm_a53_defconfig ├── am62x_evm_a53_ethboot_defconfig ├── am62x_evm_r5_defconfig ├── am62x_evm_r5_ethboot_defconfig ├── am62x_lpsk_a53_defconfig ├── am62x_lpsk_r5_defconfig ├── am62x_r5_usbdfu.config ├── am62x_r5_usbmsc.config ├── am64x_evm_a53_defconfig ├── am64x_evm_r5_defconfig ├── am65x_evm_a53_defconfig ├── am65x_evm_r5_defconfig ├── am65x_evm_r5_usbdfu_defconfig ├── am65x_evm_r5_usbmsc_defconfig ├── am67a_beagley_ai_a53_defconfig ├── am67a_beagley_ai_r5_defconfig ├── am68_sk_a72_defconfig ├── am68_sk_r5_defconfig ├── am69_sk_a72_defconfig ├── am69_sk_r5_defconfig ├── amarula_a64_relic_defconfig ├── amcore_defconfig ├── amd_versal2_mini_defconfig ├── amd_versal2_mini_emmc_defconfig ├── amd_versal2_mini_ospi_defconfig ├── amd_versal2_mini_qspi_defconfig ├── amd_versal2_virt_defconfig ├── aml-a311d-cc_defconfig ├── aml-s905d3-cc_defconfig ├── an7581_evb_defconfig ├── anbernic-rgxx3-rk3566_defconfig ├── anbernic_rg35xx_h700_defconfig ├── ap121_defconfig ├── ap143_defconfig ├── ap152_defconfig ├── apalis-imx8_defconfig ├── apalis-tk1_defconfig ├── apalis_imx6_defconfig ├── apalis_t30_defconfig ├── apple_m1_defconfig ├── arbel_evb_defconfig ├── aristainetos2c_defconfig ├── aristainetos2ccslb_defconfig ├── arndale_defconfig ├── at91sam9260ek_dataflash_cs0_defconfig ├── at91sam9260ek_dataflash_cs1_defconfig ├── at91sam9260ek_nandflash_defconfig ├── at91sam9261ek_dataflash_cs0_defconfig ├── at91sam9261ek_dataflash_cs3_defconfig ├── at91sam9261ek_nandflash_defconfig ├── at91sam9263ek_dataflash_cs0_defconfig ├── at91sam9263ek_dataflash_defconfig ├── at91sam9263ek_nandflash_defconfig ├── at91sam9263ek_norflash_boot_defconfig ├── at91sam9263ek_norflash_defconfig ├── at91sam9g10ek_dataflash_cs0_defconfig ├── at91sam9g10ek_dataflash_cs3_defconfig ├── at91sam9g10ek_nandflash_defconfig ├── at91sam9g20ek_2mmc_defconfig ├── at91sam9g20ek_2mmc_nandflash_defconfig ├── at91sam9g20ek_dataflash_cs0_defconfig ├── at91sam9g20ek_dataflash_cs1_defconfig ├── at91sam9g20ek_nandflash_defconfig ├── at91sam9m10g45ek_mmc_defconfig ├── at91sam9m10g45ek_nandflash_defconfig ├── at91sam9n12ek_mmc_defconfig ├── at91sam9n12ek_nandflash_defconfig ├── at91sam9n12ek_spiflash_defconfig ├── at91sam9rlek_dataflash_defconfig ├── at91sam9rlek_mmc_defconfig ├── at91sam9rlek_nandflash_defconfig ├── at91sam9x5ek_dataflash_defconfig ├── at91sam9x5ek_mmc_defconfig ├── at91sam9x5ek_nandflash_defconfig ├── at91sam9x5ek_spiflash_defconfig ├── at91sam9xeek_dataflash_cs0_defconfig ├── at91sam9xeek_dataflash_cs1_defconfig ├── at91sam9xeek_nandflash_defconfig ├── axm_defconfig ├── axs101_defconfig ├── axs103_defconfig ├── ba10_tv_box_defconfig ├── bananapi-cm4-cm4io_defconfig ├── bananapi-f3_defconfig ├── bananapi-m2-pro_defconfig ├── bananapi-m2s_defconfig ├── bananapi-m5_defconfig ├── bananapi_m1_plus_defconfig ├── bananapi_m2_berry_defconfig ├── bananapi_m2_plus_h3_defconfig ├── bananapi_m2_plus_h5_defconfig ├── bananapi_m2_zero_defconfig ├── bananapi_m64_defconfig ├── bayleybay_defconfig ├── bcm7260_defconfig ├── bcm7445_defconfig ├── bcm947622_defconfig ├── bcm94908_defconfig ├── bcm94912_defconfig ├── bcm963138_defconfig ├── bcm963146_defconfig ├── bcm963148_defconfig ├── bcm963158_defconfig ├── bcm963178_defconfig ├── bcm96756_defconfig ├── bcm96813_defconfig ├── bcm968380gerg_ram_defconfig ├── bcm96846_defconfig ├── bcm96855_defconfig ├── bcm96856_defconfig ├── bcm96858_defconfig ├── bcm96878_defconfig ├── bcm_ns3_defconfig ├── bcmns_defconfig ├── beaver_defconfig ├── beelink-gsking-x_defconfig ├── beelink-gt1-ultimate_defconfig ├── beelink-gtking_defconfig ├── beelink-gtkingpro_defconfig ├── beelink_gs1_defconfig ├── beelink_x2_defconfig ├── bitmain_antminer_s9_defconfig ├── bk4r1_defconfig ├── blanche_defconfig ├── boston32r2_defconfig ├── boston32r2el_defconfig ├── boston32r6_defconfig ├── boston32r6el_defconfig ├── boston64r2_defconfig ├── boston64r2el_defconfig ├── boston64r6_defconfig ├── boston64r6el_defconfig ├── bpi-r2-pro-rk3568_defconfig ├── brcp150_defconfig ├── brcp170_defconfig ├── brcp1_1r_defconfig ├── brcp1_1r_switch_defconfig ├── brcp1_2r_defconfig ├── brppt1_mmc_defconfig ├── brppt2_defconfig ├── brsmarc1_defconfig ├── brsmarc2_defconfig ├── brxre1_defconfig ├── bubblegum_96_defconfig ├── capricorn_cxg3_defconfig ├── cardhu_defconfig ├── cei-tk1-som_defconfig ├── cgtqmx8_defconfig ├── cherryhill_defconfig ├── chiliboard_defconfig ├── chromebit_mickey_defconfig ├── chromebook_bob_defconfig ├── chromebook_coral_defconfig ├── chromebook_jerry_defconfig ├── chromebook_kevin_defconfig ├── chromebook_link64_defconfig ├── chromebook_link_defconfig ├── chromebook_minnie_defconfig ├── chromebook_samus_defconfig ├── chromebook_samus_tpl_defconfig ├── chromebook_speedy_defconfig ├── chromebox_panther_defconfig ├── ci20_mmc_defconfig ├── cl-som-imx7_defconfig ├── clearfog_defconfig ├── clearfog_gt_8k_defconfig ├── clearfog_sata_defconfig ├── clearfog_spi_defconfig ├── cm3588-nas-rk3588_defconfig ├── cm_fx6_defconfig ├── cm_t43_defconfig ├── cobra5272_defconfig ├── colibri-imx6ull-emmc_defconfig ├── colibri-imx6ull_defconfig ├── colibri-imx8x_defconfig ├── colibri_imx6_defconfig ├── colibri_imx7_defconfig ├── colibri_imx7_emmc_defconfig ├── colibri_t20_defconfig ├── colibri_t30_defconfig ├── colibri_vf_defconfig ├── colorfly_e708_q1_defconfig ├── comtrend_ar5315u_ram_defconfig ├── comtrend_ar5387un_ram_defconfig ├── comtrend_ct5361_ram_defconfig ├── comtrend_vr3032u_ram_defconfig ├── comtrend_wap5813n_ram_defconfig ├── conga-qeval20-qa3-e3845-internal-uart_defconfig ├── conga-qeval20-qa3-e3845_defconfig ├── controlcenterdc_defconfig ├── coolpi-4b-rk3588s_defconfig ├── coolpi-cm5-evb-rk3588_defconfig ├── coolpi-cm5-genbook-rk3588_defconfig ├── coreboot64-no-spl_defconfig ├── coreboot64_defconfig ├── coreboot_defconfig ├── coreprimevelte_defconfig ├── corstone1000_defconfig ├── cortina_presidio-asic-base_defconfig ├── cortina_presidio-asic-emmc_defconfig ├── cortina_presidio-asic-pnand_defconfig ├── corvus_defconfig ├── cougarcanyon2_defconfig ├── crownbay_defconfig ├── crs305-1g-4s-bit_defconfig ├── crs305-1g-4s_defconfig ├── crs326-24g-2s-bit_defconfig ├── crs326-24g-2s_defconfig ├── crs328-4c-20s-4s-bit_defconfig ├── crs328-4c-20s-4s_defconfig ├── cubieboard7_defconfig ├── d2net_v2_defconfig ├── da850evm_defconfig ├── da850evm_direct_nor_defconfig ├── da850evm_nand_defconfig ├── dalmore_defconfig ├── db-88f6720_defconfig ├── db-88f6820-amc_defconfig ├── db-88f6820-amc_nand_defconfig ├── db-88f6820-gp_defconfig ├── db-mv784mp-gp_defconfig ├── db-xc3-24g4xg_defconfig ├── devkit8000_defconfig ├── dfi-bt700-q7x-151_defconfig ├── dh_imx6.config ├── dh_imx6_defconfig ├── dhsom.config ├── difrnce_dit4350_defconfig ├── display5_defconfig ├── display5_factory_defconfig ├── dns325_defconfig ├── dockstar_defconfig ├── dra7xx_evm_defconfig ├── dra7xx_hs_evm_defconfig ├── dra7xx_hs_evm_usb_defconfig ├── draco-etamin_defconfig ├── draco-rastaban_defconfig ├── draco-thuban_defconfig ├── dragonboard410c_defconfig ├── dragonboard820c_defconfig ├── dreamplug_defconfig ├── ds109_defconfig ├── ds116_defconfig ├── ds414_defconfig ├── dserve_dsrv9703c_defconfig ├── durian_defconfig ├── e850-96_defconfig ├── eDPU_defconfig ├── ea-lpc3250devkitv2_defconfig ├── eaidk-610-rk3399_defconfig ├── eb_cpu5282_defconfig ├── eb_cpu5282_internal_defconfig ├── edison_defconfig ├── efi-x86_app32_defconfig ├── efi-x86_app64_defconfig ├── efi-x86_payload32_defconfig ├── efi-x86_payload64_defconfig ├── elgin-rv1108_defconfig ├── emlid_neutis_n5_devboard_defconfig ├── emsdp_defconfig ├── endeavoru_defconfig ├── espresso7420_defconfig ├── ev-imx280-nano-x-mb_defconfig ├── evb-ast2500_defconfig ├── evb-ast2600_defconfig ├── evb-px30_defconfig ├── evb-px5_defconfig ├── evb-rk3036_defconfig ├── evb-rk3128_defconfig ├── evb-rk3229_defconfig ├── evb-rk3288_defconfig ├── evb-rk3308_defconfig ├── evb-rk3328_defconfig ├── evb-rk3399_defconfig ├── evb-rk3568_defconfig ├── evb-rk3588_defconfig ├── evb-rv1108_defconfig ├── ficus-rk3399_defconfig ├── firefly-px30_defconfig ├── firefly-rk3288_defconfig ├── firefly-rk3399_defconfig ├── ga10h_v1_1_defconfig ├── galileo_defconfig ├── gardena-smart-gateway-at91sam_defconfig ├── gardena-smart-gateway-mt7688_defconfig ├── gazerbeam_defconfig ├── ge_b1x5v2_defconfig ├── ge_bx50v3_defconfig ├── geekbox_defconfig ├── generic-rk3328_defconfig ├── generic-rk3399_defconfig ├── generic-rk3528_defconfig ├── generic-rk3568_defconfig ├── generic-rk3588_defconfig ├── genmai_defconfig ├── goflexhome_defconfig ├── gose_defconfig ├── grouper_defconfig ├── grpeach_defconfig ├── gt90h_v4_defconfig ├── gurnard_defconfig ├── guruplug_defconfig ├── gwventana_emmc_defconfig ├── gwventana_nand_defconfig ├── gxp_defconfig ├── h8_homlet_v2_defconfig ├── harmony_defconfig ├── hc2910_2aghd05_defconfig ├── helios4_defconfig ├── highbank_defconfig ├── hihope_rzg2_defconfig ├── hikey960_defconfig ├── hikey_defconfig ├── hmibsc_defconfig ├── hsdk_4xd_defconfig ├── hsdk_defconfig ├── huawei_hg556a_ram_defconfig ├── i12-tvbox_defconfig ├── iNet_3F_defconfig ├── iNet_3W_defconfig ├── iNet_86VS_defconfig ├── iNet_D978_rev2_defconfig ├── ib62x0_defconfig ├── ibex-ast2700_defconfig ├── ibm-sbp1_defconfig ├── icnova-a20-adb4006_defconfig ├── icnova-a20-swac_defconfig ├── iconnect_defconfig ├── ideapad-yoga-11_defconfig ├── igep00x0_defconfig ├── imgtec_xilfpga_defconfig ├── imx28_btt3_defconfig ├── imx28_xea_defconfig ├── imx28_xea_sb_defconfig ├── imx6_dhcom_drc02_defconfig ├── imx6_dhcom_pdk2_defconfig ├── imx6_dhcom_picoitx_defconfig ├── imx6dl_icore_nand_defconfig ├── imx6dl_mamoj_defconfig ├── imx6dl_sielaff_defconfig ├── imx6q_bosch_acc_defconfig ├── imx6q_icore_nand_defconfig ├── imx6q_logic_defconfig ├── imx6qdl_icore_mipi_defconfig ├── imx6qdl_icore_mmc_defconfig ├── imx6qdl_icore_nand_defconfig ├── imx6qdl_icore_rqs_defconfig ├── imx6ul_geam_mmc_defconfig ├── imx6ul_geam_nand_defconfig ├── imx6ul_isiot_emmc_defconfig ├── imx6ul_isiot_nand_defconfig ├── imx6ulz_smm_m2_defconfig ├── imx6ulz_smm_m2b_defconfig ├── imx7_cm_defconfig ├── imx8m_data_modul.config ├── imx8mm-cl-iot-gate-optee_defconfig ├── imx8mm-cl-iot-gate_defconfig ├── imx8mm-icore-mx8mm-ctouch2_defconfig ├── imx8mm-icore-mx8mm-edimm2.2_defconfig ├── imx8mm-mx8menlo_defconfig ├── imx8mm-phygate-tauri-l_defconfig ├── imx8mm_beacon_defconfig ├── imx8mm_beacon_fspi_defconfig ├── imx8mm_data_modul_edm_sbc_defconfig ├── imx8mm_evk_defconfig ├── imx8mm_evk_fspi_defconfig ├── imx8mm_phg_defconfig ├── imx8mm_venice_defconfig ├── imx8mn_beacon_2g_defconfig ├── imx8mn_beacon_defconfig ├── imx8mn_beacon_fspi_defconfig ├── imx8mn_bsh_smm_s2_defconfig ├── imx8mn_bsh_smm_s2pro_defconfig ├── imx8mn_ddr4_evk_defconfig ├── imx8mn_evk_defconfig ├── imx8mn_var_som_defconfig ├── imx8mn_venice_defconfig ├── imx8mp-icore-mx8mp-edimm2.2_defconfig ├── imx8mp_beacon_defconfig ├── imx8mp_data_modul_edm_sbc_defconfig ├── imx8mp_debix_model_a_defconfig ├── imx8mp_dhcom_drc02_defconfig ├── imx8mp_dhcom_pdk2_defconfig ├── imx8mp_dhcom_pdk3_defconfig ├── imx8mp_dhcom_picoitx_defconfig ├── imx8mp_dhsom.config ├── imx8mp_evk_defconfig ├── imx8mp_navqp_defconfig ├── imx8mp_rsb3720a1_4G_defconfig ├── imx8mp_rsb3720a1_6G_defconfig ├── imx8mp_venice_defconfig ├── imx8mq_cm_defconfig ├── imx8mq_evk_defconfig ├── imx8mq_phanbell_defconfig ├── imx8mq_reform2_defconfig ├── imx8qm_dmsse20a1_defconfig ├── imx8qm_mek_defconfig ├── imx8qm_rom7720_a1_4G_defconfig ├── imx8qxp_capricorn.config ├── imx8qxp_mek_defconfig ├── imx8ulp_evk_defconfig ├── imx91_11x11_evk_defconfig ├── imx91_11x11_evk_inline_ecc_defconfig ├── imx93-phycore_defconfig ├── imx93_11x11_evk_defconfig ├── imx93_9x9_qsb_defconfig ├── imx93_9x9_qsb_inline_ecc_defconfig ├── imx93_var_som_defconfig ├── imx95_19x19_evk_defconfig ├── imx_dhsom.config ├── imxrt1020-evk_defconfig ├── imxrt1050-evk_defconfig ├── imxrt1050-evk_fspi_defconfig ├── imxrt1170-evk_defconfig ├── inet1_defconfig ├── inet86dz_defconfig ├── inet97fv2_defconfig ├── inet98v_rev2_defconfig ├── inet9f_rev03_defconfig ├── inet_q972_defconfig ├── inetspace_v2_defconfig ├── integratorap_cm720t_defconfig ├── integratorap_cm920t_defconfig ├── integratorap_cm926ejs_defconfig ├── integratorap_cm946es_defconfig ├── integratorcp_cm1136_defconfig ├── integratorcp_cm920t_defconfig ├── integratorcp_cm926ejs_defconfig ├── integratorcp_cm946es_defconfig ├── inteno_xg6846_ram_defconfig ├── iot2050_defconfig ├── iot_devkit_defconfig ├── j7200_evm_a72_defconfig ├── j7200_evm_r5_defconfig ├── j721e_beagleboneai64_a72_defconfig ├── j721e_beagleboneai64_r5_defconfig ├── j721e_evm_a72_defconfig ├── j721e_evm_r5_defconfig ├── j721e_sk_a72_defconfig ├── j721e_sk_r5_defconfig ├── j721s2_evm_a72_defconfig ├── j721s2_evm_r5_defconfig ├── j722s_evm_a53_defconfig ├── j722s_evm_r5_defconfig ├── j742s2_evm_a72_defconfig ├── j742s2_evm_r5_defconfig ├── j784s4_evm_a72_defconfig ├── j784s4_evm_r5_defconfig ├── jaguar-rk3588_defconfig ├── jesurun_q5_defconfig ├── jethub_j100_defconfig ├── jethub_j80_defconfig ├── jetson-tk1_defconfig ├── k230_canmv_defconfig ├── k2e_evm_defconfig ├── k2e_hs_evm_defconfig ├── k2g_evm_defconfig ├── k2g_hs_evm_defconfig ├── k2hk_evm_defconfig ├── k2hk_hs_evm_defconfig ├── k2l_evm_defconfig ├── k2l_hs_evm_defconfig ├── k3_efi_capsule.config ├── khadas-edge-captain-rk3399_defconfig ├── khadas-edge-rk3399_defconfig ├── khadas-edge-v-rk3399_defconfig ├── khadas-edge2-rk3588s_defconfig ├── khadas-vim2_defconfig ├── khadas-vim3_android_ab_defconfig ├── khadas-vim3_android_defconfig ├── khadas-vim3_defconfig ├── khadas-vim3l_android_ab_defconfig ├── khadas-vim3l_android_defconfig ├── khadas-vim3l_defconfig ├── khadas-vim_defconfig ├── kmcent2_defconfig ├── kmcoge5ne_defconfig ├── kmeter1_defconfig ├── kmopti2_defconfig ├── kmsupx5_defconfig ├── kmtepr2_defconfig ├── koelsch_defconfig ├── kontron-sl-mx6ul_defconfig ├── kontron-sl-mx8mm_defconfig ├── kontron_pitx_imx8m_defconfig ├── kontron_sl28_defconfig ├── kp_imx53_defconfig ├── kp_imx6q_tpc_defconfig ├── kstr_sama5d27_defconfig ├── kylin-rk3036_defconfig ├── lager_defconfig ├── lckfb-tspi-rk3566_defconfig ├── lctech_pi_f1c200s_defconfig ├── leez-rk3399_defconfig ├── legoev3_defconfig ├── librem5_defconfig ├── libretech-ac_defconfig ├── libretech-cc_defconfig ├── libretech-cc_v2_defconfig ├── libretech-s905d-pc_defconfig ├── libretech-s912-pc_defconfig ├── libretech_all_h3_cc_h2_plus_defconfig ├── libretech_all_h3_cc_h3_defconfig ├── libretech_all_h3_cc_h5_defconfig ├── libretech_all_h3_it_h5_defconfig ├── libretech_all_h5_cc_h5_defconfig ├── licheepi_nano_defconfig ├── linkit-smart-7688_defconfig ├── liontron-h-a133l_defconfig ├── liteboard_defconfig ├── ls1012a2g5rdb_tfa_defconfig ├── ls1012afrdm_tfa_defconfig ├── ls1012afrwy_tfa_SECURE_BOOT_defconfig ├── ls1012afrwy_tfa_defconfig ├── ls1012aqds_tfa_SECURE_BOOT_defconfig ├── ls1012aqds_tfa_defconfig ├── ls1012ardb_tfa_SECURE_BOOT_defconfig ├── ls1012ardb_tfa_defconfig ├── ls1021aiot_qspi_defconfig ├── ls1021aiot_sdcard_defconfig ├── ls1021aqds_ddr4_nor_defconfig ├── ls1021aqds_ddr4_nor_lpuart_defconfig ├── ls1021aqds_nand_defconfig ├── ls1021aqds_nor_SECURE_BOOT_defconfig ├── ls1021aqds_nor_defconfig ├── ls1021aqds_nor_lpuart_defconfig ├── ls1021aqds_qspi_defconfig ├── ls1021aqds_sdcard_ifc_defconfig ├── ls1021aqds_sdcard_qspi_defconfig ├── ls1021atsn_qspi_defconfig ├── ls1021atsn_sdcard_defconfig ├── ls1021atwr_nor_SECURE_BOOT_defconfig ├── ls1021atwr_nor_defconfig ├── ls1021atwr_nor_lpuart_defconfig ├── ls1021atwr_qspi_defconfig ├── ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig ├── ls1021atwr_sdcard_ifc_defconfig ├── ls1021atwr_sdcard_qspi_defconfig ├── ls1028aqds_tfa_SECURE_BOOT_defconfig ├── ls1028aqds_tfa_defconfig ├── ls1028aqds_tfa_lpuart_defconfig ├── ls1028ardb_tfa_SECURE_BOOT_defconfig ├── ls1028ardb_tfa_defconfig ├── ls1043aqds_tfa_SECURE_BOOT_defconfig ├── ls1043aqds_tfa_defconfig ├── ls1043ardb_tfa_SECURE_BOOT_defconfig ├── ls1043ardb_tfa_defconfig ├── ls1046afrwy_tfa_SECURE_BOOT_defconfig ├── ls1046afrwy_tfa_defconfig ├── ls1046aqds_tfa_SECURE_BOOT_defconfig ├── ls1046aqds_tfa_defconfig ├── ls1046ardb_tfa_SECURE_BOOT_defconfig ├── ls1046ardb_tfa_defconfig ├── ls1088aqds_tfa_defconfig ├── ls1088ardb_tfa_SECURE_BOOT_defconfig ├── ls1088ardb_tfa_defconfig ├── ls2080aqds_nand_defconfig ├── ls2080aqds_qspi_defconfig ├── ls2080ardb_nand_defconfig ├── ls2088aqds_tfa_defconfig ├── ls2088ardb_tfa_SECURE_BOOT_defconfig ├── ls2088ardb_tfa_defconfig ├── lschlv2_defconfig ├── lsxhl_defconfig ├── lubancat-2-rk3568_defconfig ├── lx2160aqds_tfa_SECURE_BOOT_defconfig ├── lx2160aqds_tfa_defconfig ├── lx2160ardb_tfa_SECURE_BOOT_defconfig ├── lx2160ardb_tfa_defconfig ├── lx2160ardb_tfa_stmm_defconfig ├── lx2162aqds_tfa_SECURE_BOOT_defconfig ├── lx2162aqds_tfa_defconfig ├── lx2162aqds_tfa_verified_boot_defconfig ├── lxr2_defconfig ├── m53menlo_defconfig ├── malta64_defconfig ├── malta64el_defconfig ├── malta_defconfig ├── maltael_defconfig ├── mangopi_mq_r_defconfig ├── marsboard_defconfig ├── maxbcm_defconfig ├── mccmon6_nor_defconfig ├── mccmon6_sd_defconfig ├── medcom-wide_defconfig ├── meerkat96_defconfig ├── meesc_dataflash_defconfig ├── meesc_defconfig ├── microblaze-generic_defconfig ├── microchip_mpfs_icicle_defconfig ├── milkv_duo_defconfig ├── minnowmax_defconfig ├── miqi-rk3288_defconfig ├── mixtile_loftq_defconfig ├── mk802_a10s_defconfig ├── mk802_defconfig ├── mk802ii_defconfig ├── mk808_defconfig ├── mocha_defconfig ├── mot_defconfig ├── msc_sm2s_imx8mp_defconfig ├── mscc_jr2_defconfig ├── mscc_luton_defconfig ├── mscc_ocelot_defconfig ├── mscc_serval_defconfig ├── mscc_servalt_defconfig ├── mt7620_mt7530_rfb_defconfig ├── mt7620_rfb_defconfig ├── mt7621_ax_rfb_defconfig ├── mt7621_nand_ax_rfb_defconfig ├── mt7621_nand_rfb_defconfig ├── mt7621_rfb_defconfig ├── mt7622_emmc_rfb_defconfig ├── mt7622_nmbm_rfb_defconfig ├── mt7622_nmbm_sb_rfb_defconfig ├── mt7622_nmbm_ubi_rfb_defconfig ├── mt7622_nor_rfb_defconfig ├── mt7622_rfb_defconfig ├── mt7622_sd_rfb_defconfig ├── mt7622_snand_ubi_rfb_defconfig ├── mt7623a_unielec_u7623_02_defconfig ├── mt7623n_bpir2_defconfig ├── mt7628_rfb_defconfig ├── mt7629_nand_rfb_defconfig ├── mt7629_nand_sb_rfb_defconfig ├── mt7629_nmbm_rfb_defconfig ├── mt7629_nmbm_sb_rfb_defconfig ├── mt7629_nor_sb_rfb_defconfig ├── mt7629_rfb_defconfig ├── mt7981_emmc_rfb_defconfig ├── mt7981_gmac2_spim_nand_rfb_defconfig ├── mt7981_nor_emmc_rfb_defconfig ├── mt7981_rfb_defconfig ├── mt7981_sd_rfb_defconfig ├── mt7981_snfi_nand_rfb_defconfig ├── mt7981_spim_nand_rfb_defconfig ├── mt7981_spim_nand_sb_rfb_defconfig ├── mt7981_spim_nor_rfb_defconfig ├── mt7981b_openwrt_one_defconfig ├── mt7986_gmac2_spim_nand_rfb_defconfig ├── mt7986_nmbm_snfi_nand_sb_rfb_defconfig ├── mt7986_nor_emmc_rfb_defconfig ├── mt7986_rfb_defconfig ├── mt7986_snfi_nand_rfb_defconfig ├── mt7986_spim_nand_rfb_defconfig ├── mt7986_spim_nand_sb_rfb_defconfig ├── mt7986_spim_nor_rfb_defconfig ├── mt7986a_bpir3_emmc_defconfig ├── mt7986a_bpir3_sd_defconfig ├── mt7986a_emmc_rfb_defconfig ├── mt7986a_emmc_sb_rfb_defconfig ├── mt7986a_sd_rfb_defconfig ├── mt7986b_emmc_rfb_defconfig ├── mt7986b_sd_rfb_defconfig ├── mt7987_emmc_rfb_defconfig ├── mt7987_nor_emmc_rfb_defconfig ├── mt7987_rfb_defconfig ├── mt7987_sd_rfb_defconfig ├── mt7987_spim_nand_rfb_defconfig ├── mt7987_spim_nor_rfb_defconfig ├── mt7988_10g_p0_spim_nand_rfb_defconfig ├── mt7988_10g_p1_spim_nand_rfb_defconfig ├── mt7988_emmc_rfb_defconfig ├── mt7988_emmc_sb_rfb_defconfig ├── mt7988_i2p5g_p1_emmc_rfb_defconfig ├── mt7988_i2p5g_p1_spim_nand_rfb_defconfig ├── mt7988_nor_emmc_rfb_defconfig ├── mt7988_rfb_defconfig ├── mt7988_sd_rfb_defconfig ├── mt7988_snfi_nand_rfb_defconfig ├── mt7988_spim_nand_rfb_defconfig ├── mt7988_spim_nand_sb_rfb_defconfig ├── mt7988_spim_nand_ubi_rfb_defconfig ├── mt7988_spim_nor_rfb_defconfig ├── mt7988a_bpir4_defconfig ├── mt8183_pumpkin_defconfig ├── mt8365_evk_defconfig ├── mt8512_bm1_emmc_defconfig ├── mt8516_pumpkin_defconfig ├── mt8518_ap1_emmc_defconfig ├── mvebu_ac5_rd_defconfig ├── mvebu_crb_cn9130_defconfig ├── mvebu_db-88f3720_defconfig ├── mvebu_db_armada8k_defconfig ├── mvebu_db_cn9130_defconfig ├── mvebu_espressobin-88f3720_defconfig ├── mvebu_espressobin_ultra-88f3720_defconfig ├── mvebu_mcbin-88f8040_defconfig ├── mvebu_puzzle-m801-88f8040_defconfig ├── mx23_olinuxino_defconfig ├── mx23evk_defconfig ├── mx28evk_defconfig ├── mx51evk_defconfig ├── mx53cx9020_defconfig ├── mx53loco_defconfig ├── mx53ppd_defconfig ├── mx6cuboxi_defconfig ├── mx6memcal_defconfig ├── mx6qsabrelite_defconfig ├── mx6sabreauto_defconfig ├── mx6sabresd_defconfig ├── mx6slevk_defconfig ├── mx6sllevk_defconfig ├── mx6sllevk_plugin_defconfig ├── mx6sxsabreauto_defconfig ├── mx6sxsabresd_defconfig ├── mx6ul_14x14_evk_defconfig ├── mx6ul_9x9_evk_defconfig ├── mx6ull_14x14_evk_defconfig ├── mx6ull_14x14_evk_plugin_defconfig ├── mx6ulz_14x14_evk_defconfig ├── mx7dsabresd_defconfig ├── mx7dsabresd_qspi_defconfig ├── mx7ulp_com_defconfig ├── mx7ulp_evk_defconfig ├── mx7ulp_evk_plugin_defconfig ├── myir_mys_6ulx_defconfig ├── n2350_defconfig ├── nanopc-t4-rk3399_defconfig ├── nanopc-t6-rk3588_defconfig ├── nanopi-k2_defconfig ├── nanopi-m4-2gb-rk3399_defconfig ├── nanopi-m4-rk3399_defconfig ├── nanopi-m4b-rk3399_defconfig ├── nanopi-neo4-rk3399_defconfig ├── nanopi-r2c-plus-rk3328_defconfig ├── nanopi-r2c-rk3328_defconfig ├── nanopi-r2s-plus-rk3328_defconfig ├── nanopi-r2s-rk3328_defconfig ├── nanopi-r3s-rk3566_defconfig ├── nanopi-r4s-rk3399_defconfig ├── nanopi-r5c-rk3568_defconfig ├── nanopi-r5s-rk3568_defconfig ├── nanopi-r6c-rk3588s_defconfig ├── nanopi-r6s-rk3588s_defconfig ├── nanopi_a64_defconfig ├── nanopi_duo2_defconfig ├── nanopi_m1_defconfig ├── nanopi_m1_plus_defconfig ├── nanopi_neo2_defconfig ├── nanopi_neo_air_defconfig ├── nanopi_neo_defconfig ├── nanopi_neo_plus2_defconfig ├── nanopi_r1s_h5_defconfig ├── nas220_defconfig ├── net2big_v2_defconfig ├── netgear_cg3100d_ram_defconfig ├── netgear_dgnd3700v2_ram_defconfig ├── netspace_lite_v2_defconfig ├── netspace_max_v2_defconfig ├── netspace_mini_v2_defconfig ├── netspace_v2_defconfig ├── neu2-io-rv1126_defconfig ├── neu6a-io-rk3588_defconfig ├── neu6b-io-rk3588_defconfig ├── nitrogen6dl2g_defconfig ├── nitrogen6dl_defconfig ├── nitrogen6q2g_defconfig ├── nitrogen6q_defconfig ├── nitrogen6s1g_defconfig ├── nitrogen6s_defconfig ├── nova-rk3588s_defconfig ├── novena_defconfig ├── nsa310s_defconfig ├── nsa325_defconfig ├── nsim_700_defconfig ├── nsim_700be_defconfig ├── nsim_hs38_defconfig ├── nsim_hs38be_defconfig ├── nyan-big_defconfig ├── o4-imx6ull-nano_defconfig ├── oceanic_5205_5inmfd_defconfig ├── octeon_ebb7304_defconfig ├── octeon_nic23_defconfig ├── octeontx2_95xx_defconfig ├── octeontx2_96xx_defconfig ├── octeontx_81xx_defconfig ├── octeontx_83xx_defconfig ├── odroid-c2_defconfig ├── odroid-c4_defconfig ├── odroid-go-ultra_defconfig ├── odroid-go2_defconfig ├── odroid-hc4_defconfig ├── odroid-m1-rk3568_defconfig ├── odroid-m1s-rk3566_defconfig ├── odroid-m2-rk3588s_defconfig ├── odroid-n2_defconfig ├── odroid-n2l_defconfig ├── odroid-xu3_defconfig ├── odroid_defconfig ├── omap35_logic_defconfig ├── omap35_logic_somlv_defconfig ├── omap3_evm_defconfig ├── omap3_logic_defconfig ├── omap3_logic_somlv_defconfig ├── omapl138_lcdk_defconfig ├── openpiton_riscv64_defconfig ├── openpiton_riscv64_spl_defconfig ├── openrd_base_defconfig ├── openrd_client_defconfig ├── openrd_ultimate_defconfig ├── opos6uldev_defconfig ├── orangepi-3b-rk3566_defconfig ├── orangepi-5-max-rk3588_defconfig ├── orangepi-5-plus-rk3588_defconfig ├── orangepi-5-rk3588s_defconfig ├── orangepi-r1-plus-lts-rk3328_defconfig ├── orangepi-r1-plus-rk3328_defconfig ├── orangepi-rk3399_defconfig ├── orangepi_2_defconfig ├── orangepi_3_defconfig ├── orangepi_lite2_defconfig ├── orangepi_lite_defconfig ├── orangepi_one_defconfig ├── orangepi_one_plus_defconfig ├── orangepi_pc2_defconfig ├── orangepi_pc_defconfig ├── orangepi_pc_plus_defconfig ├── orangepi_plus2e_defconfig ├── orangepi_plus_defconfig ├── orangepi_prime_defconfig ├── orangepi_r1_defconfig ├── orangepi_win_defconfig ├── orangepi_zero2_defconfig ├── orangepi_zero2w_defconfig ├── orangepi_zero3_defconfig ├── orangepi_zero_defconfig ├── orangepi_zero_plus2_defconfig ├── orangepi_zero_plus2_h3_defconfig ├── orangepi_zero_plus_defconfig ├── origen_defconfig ├── ouya_defconfig ├── p200_defconfig ├── p201_defconfig ├── p212_defconfig ├── p2371-0000_defconfig ├── p2371-2180_defconfig ├── p2571_defconfig ├── p2771-0000-000_defconfig ├── p2771-0000-500_defconfig ├── p3450-0000_defconfig ├── parrot_r16_defconfig ├── paz00_defconfig ├── pcm051_rev3_defconfig ├── pcm052_defconfig ├── pcm058_defconfig ├── pe2201_defconfig ├── peach-pi_defconfig ├── peach-pit_defconfig ├── pg_wcom_expu1_defconfig ├── pg_wcom_expu1_update_defconfig ├── pg_wcom_seli8_defconfig ├── pg_wcom_seli8_update_defconfig ├── phycore-am335x-r2-regor_defconfig ├── phycore-am335x-r2-wega_defconfig ├── phycore-imx8mm_defconfig ├── phycore-imx8mp_defconfig ├── phycore-rk3288_defconfig ├── phycore_am62ax_a53_defconfig ├── phycore_am62ax_r5_defconfig ├── phycore_am62ax_r5_ethboot_defconfig ├── phycore_am62ax_r5_usbdfu_defconfig ├── phycore_am62x_a53_defconfig ├── phycore_am62x_r5_defconfig ├── phycore_am62x_r5_ethboot_defconfig ├── phycore_am62x_r5_usbdfu_defconfig ├── phycore_am64x_a53_defconfig ├── phycore_am64x_r5_defconfig ├── phycore_pcl063_defconfig ├── phycore_pcl063_ull_defconfig ├── pic32mzdask_defconfig ├── picasso_defconfig ├── pico-dwarf-imx6ul_defconfig ├── pico-dwarf-imx7d_defconfig ├── pico-hobbit-imx6ul_defconfig ├── pico-hobbit-imx7d_defconfig ├── pico-imx6_defconfig ├── pico-imx6ul_defconfig ├── pico-imx7d_bl33_defconfig ├── pico-imx7d_defconfig ├── pico-imx8mq_defconfig ├── pico-nymph-imx7d_defconfig ├── pico-pi-imx6ul_defconfig ├── pico-pi-imx7d_defconfig ├── pine64-lts_defconfig ├── pine64_plus_defconfig ├── pine_h64_defconfig ├── pinebook-pro-rk3399_defconfig ├── pinebook_defconfig ├── pinecube_defconfig ├── pinephone-pro-rk3399_defconfig ├── pinephone_defconfig ├── pinetab2-rk3566_defconfig ├── pinetab_defconfig ├── plutux_defconfig ├── pm9261_defconfig ├── pm9263_defconfig ├── pm9g45_defconfig ├── pogo_e02_defconfig ├── pogo_v4_defconfig ├── polaroid_mid2407pxe03_defconfig ├── polaroid_mid2809pxe04_defconfig ├── poleg_evb_defconfig ├── pomelo_defconfig ├── poplar_defconfig ├── popmetal-rk3288_defconfig ├── porter_defconfig ├── pov_protab2_ips9_defconfig ├── powkiddy-x55-rk3566_defconfig ├── puma-rk3399_defconfig ├── px30-core-ctouch2-of10-px30_defconfig ├── px30-core-ctouch2-px30_defconfig ├── px30-core-edimm2.2-px30_defconfig ├── pxm2_defconfig ├── q8_a13_tablet_defconfig ├── q8_a23_tablet_800x480_defconfig ├── q8_a33_tablet_1024x600_defconfig ├── q8_a33_tablet_800x480_defconfig ├── qc750_defconfig ├── qcm6490_defconfig ├── qcom_defconfig ├── qcom_ipq5424_mmc_defconfig ├── qcom_ipq9574_mmc_defconfig ├── qcom_qcs615_defconfig ├── qcom_qcs8300_defconfig ├── qcs9100_defconfig ├── qemu-arm-sbsa_defconfig ├── qemu-ppce500_defconfig ├── qemu-riscv32_defconfig ├── qemu-riscv32_smode_defconfig ├── qemu-riscv32_spl_defconfig ├── qemu-riscv64_defconfig ├── qemu-riscv64_smode_acpi_defconfig ├── qemu-riscv64_smode_defconfig ├── qemu-riscv64_spl_defconfig ├── qemu-x86_64_defconfig ├── qemu-x86_defconfig ├── qemu-xtensa-dc233c_defconfig ├── qemu_arm64_acpi_defconfig ├── qemu_arm64_defconfig ├── qemu_arm64_lwip_defconfig ├── qemu_arm_defconfig ├── qnap-ts433-rk3568_defconfig ├── quartz64-a-rk3566_defconfig ├── quartz64-b-rk3566_defconfig ├── quartzpro64-rk3588_defconfig ├── r2dplus_defconfig ├── r7-tv-dongle_defconfig ├── r8a77970_eagle_defconfig ├── r8a77970_v3msk_defconfig ├── r8a77980_condor_defconfig ├── r8a77980_v3hsk_defconfig ├── r8a77990_ebisu_defconfig ├── r8a77995_draak_defconfig ├── r8a779a0_falcon_defconfig ├── r8a779f0_spider_defconfig ├── r8a779f4_s4sk_defconfig ├── r8a779g0_whitehawk_defconfig ├── r8a779g3_sparrowhawk_defconfig ├── r8a779h0_grayhawk_defconfig ├── radxa-cm3-io-rk3566_defconfig ├── radxa-e20c-rk3528_defconfig ├── radxa-e25-rk3568_defconfig ├── radxa-zero-3-rk3566_defconfig ├── radxa-zero2_defconfig ├── radxa-zero_defconfig ├── rcar3_salvator-x_defconfig ├── rcar3_ulcb_defconfig ├── renesas_rcar.config ├── renesas_rcar2.config ├── renesas_rcar3.config ├── renesas_rcar4.config ├── renesas_rcar4_s4.config ├── renesas_rcar64.config ├── renesas_rza1.config ├── renesas_rzg2l_smarc_defconfig ├── ringneck-px30_defconfig ├── riotboard_defconfig ├── roc-cc-rk3308_defconfig ├── roc-cc-rk3328_defconfig ├── roc-pc-mezzanine-rk3399_defconfig ├── roc-pc-rk3399_defconfig ├── roc-pc-rk3576_defconfig ├── rock-3a-rk3568_defconfig ├── rock-3b-rk3568_defconfig ├── rock-3c-rk3566_defconfig ├── rock-4c-plus-rk3399_defconfig ├── rock-4se-rk3399_defconfig ├── rock-5-itx-rk3588_defconfig ├── rock-5c-rk3588s_defconfig ├── rock-pi-4-rk3399_defconfig ├── rock-pi-4c-rk3399_defconfig ├── rock-pi-e-rk3328_defconfig ├── rock-pi-e-v3-rk3328_defconfig ├── rock-pi-n10-rk3399pro_defconfig ├── rock-pi-n8-rk3288_defconfig ├── rock-pi-s-rk3308_defconfig ├── rock-s0-rk3308_defconfig ├── rock2_defconfig ├── rock5a-rk3588s_defconfig ├── rock5b-rk3588_defconfig ├── rock64-rk3328_defconfig ├── rock960-rk3399_defconfig ├── rock_defconfig ├── rockpro64-rk3399_defconfig ├── rpi_0_w_defconfig ├── rpi_2_defconfig ├── rpi_3_32b_defconfig ├── rpi_3_b_plus_defconfig ├── rpi_3_defconfig ├── rpi_4_32b_defconfig ├── rpi_4_acpi_defconfig ├── rpi_4_defconfig ├── rpi_arm64_defconfig ├── rpi_defconfig ├── rut_defconfig ├── rzg2_beacon_defconfig ├── rzn1_snarc_defconfig ├── s400_defconfig ├── s5p4418_nanopi2_defconfig ├── s5p_goni_defconfig ├── s5pc210_universal_defconfig ├── sagem_f@st1704_ram_defconfig ├── sam9x60_curiosity_mmc1_defconfig ├── sam9x60_curiosity_mmc_defconfig ├── sam9x60ek_mmc_defconfig ├── sam9x60ek_nandflash_defconfig ├── sam9x60ek_qspiflash_defconfig ├── sam9x75_curiosity_mmc_defconfig ├── sama5d27_giantboard_defconfig ├── sama5d27_som1_ek_mmc1_defconfig ├── sama5d27_som1_ek_mmc_defconfig ├── sama5d27_som1_ek_qspiflash_defconfig ├── sama5d27_wlsom1_ek_mmc_defconfig ├── sama5d27_wlsom1_ek_qspiflash_defconfig ├── sama5d29_curiosity_mmc1_defconfig ├── sama5d29_curiosity_mmc_defconfig ├── sama5d29_curiosity_qspiflash_defconfig ├── sama5d2_icp_mmc_defconfig ├── sama5d2_icp_qspiflash_defconfig ├── sama5d2_ptc_ek_mmc_defconfig ├── sama5d2_ptc_ek_nandflash_defconfig ├── sama5d2_xplained_emmc_defconfig ├── sama5d2_xplained_mmc_defconfig ├── sama5d2_xplained_qspiflash_defconfig ├── sama5d2_xplained_spiflash_defconfig ├── sama5d36ek_cmp_mmc_defconfig ├── sama5d36ek_cmp_nandflash_defconfig ├── sama5d36ek_cmp_spiflash_defconfig ├── sama5d3_xplained_mmc_defconfig ├── sama5d3_xplained_nandflash_defconfig ├── sama5d3xek_mmc_defconfig ├── sama5d3xek_nandflash_defconfig ├── sama5d3xek_spiflash_defconfig ├── sama5d4_xplained_mmc_defconfig ├── sama5d4_xplained_nandflash_defconfig ├── sama5d4_xplained_spiflash_defconfig ├── sama5d4ek_mmc_defconfig ├── sama5d4ek_nandflash_defconfig ├── sama5d4ek_spiflash_defconfig ├── sama7g54_curiosity_mmc_defconfig ├── sama7g54_curiosity_nandflash_defconfig ├── sama7g54_curiosity_qspiflash_defconfig ├── sama7g5ek_mmc1_defconfig ├── sama7g5ek_mmc_defconfig ├── sandbox64_defconfig ├── sandbox64_lwip_defconfig ├── sandbox_defconfig ├── sandbox_flattree_defconfig ├── sandbox_nocmdline_defconfig ├── sandbox_noinst_defconfig ├── sandbox_spl_defconfig ├── sandbox_vpl_defconfig ├── seaboard_defconfig ├── seeed_npi_imx6ull_defconfig ├── sei510_defconfig ├── sei610_defconfig ├── sfr_nb4-ser_ram_defconfig ├── sheep-rk3368_defconfig ├── sheevaplug_defconfig ├── sifive_unleashed_defconfig ├── sifive_unmatched_defconfig ├── sige7-rk3588_defconfig ├── silinux_ek874_defconfig ├── silk_defconfig ├── sipeed_licheerv_nano_defconfig ├── sipeed_maix_bitm_defconfig ├── sipeed_maix_smode_defconfig ├── slimbootloader_defconfig ├── smartweb_defconfig ├── smdk5250_defconfig ├── smdk5420_defconfig ├── smdkc100_defconfig ├── smdkv310_defconfig ├── smegw01_defconfig ├── sniper_defconfig ├── snow_defconfig ├── socfpga_agilex5_defconfig ├── socfpga_agilex5_nand2_defconfig ├── socfpga_agilex5_vab_defconfig ├── socfpga_agilex_atf_defconfig ├── socfpga_agilex_defconfig ├── socfpga_agilex_vab_defconfig ├── socfpga_arria10_defconfig ├── socfpga_arria5_defconfig ├── socfpga_chameleonv3_defconfig ├── socfpga_cyclone5_defconfig ├── socfpga_dbm_soc1_defconfig ├── socfpga_de0_nano_soc_defconfig ├── socfpga_de10_nano_defconfig ├── socfpga_de10_standard_defconfig ├── socfpga_de1_soc_defconfig ├── socfpga_is1_defconfig ├── socfpga_mcvevk_defconfig ├── socfpga_n5x_atf_defconfig ├── socfpga_n5x_defconfig ├── socfpga_n5x_vab_defconfig ├── socfpga_secu1_defconfig ├── socfpga_sockit_defconfig ├── socfpga_socrates_defconfig ├── socfpga_sr1500_defconfig ├── socfpga_stratix10_atf_defconfig ├── socfpga_stratix10_defconfig ├── socfpga_vining_fpga_defconfig ├── socrates_defconfig ├── som-db5800-som-6867_defconfig ├── somlabs_visionsom_6ull_defconfig ├── sonoff-ihost-rv1126_defconfig ├── sopine_baseboard_defconfig ├── soquartz-blade-rk3566_defconfig ├── soquartz-cm4-rk3566_defconfig ├── soquartz-model-a-rk3566_defconfig ├── spring_defconfig ├── star_defconfig ├── starfive_visionfive2_defconfig ├── stemmy_defconfig ├── stih410-b2260_defconfig ├── stm32746g-eval_defconfig ├── stm32746g-eval_spl_defconfig ├── stm32f429-discovery_defconfig ├── stm32f429-evaluation_defconfig ├── stm32f469-discovery_defconfig ├── stm32f746-disco_defconfig ├── stm32f746-disco_spl_defconfig ├── stm32f769-disco_defconfig ├── stm32f769-disco_spl_defconfig ├── stm32h743-disco_defconfig ├── stm32h743-eval_defconfig ├── stm32h747-disco_defconfig ├── stm32h750-art-pi_defconfig ├── stm32mp13_defconfig ├── stm32mp13_dhcor_defconfig ├── stm32mp15-icore-stm32mp1-ctouch2_defconfig ├── stm32mp15-icore-stm32mp1-edimm2.2_defconfig ├── stm32mp15-microgea-stm32mp1-microdev2-of7_defconfig ├── stm32mp15-microgea-stm32mp1-microdev2_defconfig ├── stm32mp15-odyssey_defconfig ├── stm32mp15_basic_defconfig ├── stm32mp15_defconfig ├── stm32mp15_dhcom_basic.config ├── stm32mp15_dhcom_basic_defconfig ├── stm32mp15_dhcom_drc02_basic_defconfig ├── stm32mp15_dhcom_pdk2_basic_defconfig ├── stm32mp15_dhcom_picoitx_basic_defconfig ├── stm32mp15_dhcor_avenger96_basic_defconfig ├── stm32mp15_dhcor_basic.config ├── stm32mp15_dhcor_basic_defconfig ├── stm32mp15_dhcor_drc_compact_basic_defconfig ├── stm32mp15_dhcor_testbench_basic_defconfig ├── stm32mp15_dhsom.config ├── stm32mp15_trusted_defconfig ├── stm32mp25_defconfig ├── stm32mp_dhsom.config ├── stmark2_defconfig ├── stout_defconfig ├── sun8i_a23_evb_defconfig ├── sunxi_Gemei_G9_defconfig ├── surface-rt_defconfig ├── synquacer_developerbox_defconfig ├── syzygy_hub_defconfig ├── tanix_tx1_defconfig ├── tanix_tx6_defconfig ├── taurus_defconfig ├── tb100_defconfig ├── tbs2910_defconfig ├── tbs_a711_defconfig ├── tec-ng_defconfig ├── tec_defconfig ├── tegratab_defconfig ├── ten64_tfa_defconfig ├── teres_i_defconfig ├── tf701t_defconfig ├── th1520_lpi4a_defconfig ├── theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig ├── theadorable-x86-conga-qa3-e3845_defconfig ├── theadorable-x86-dfi-bt700_defconfig ├── theadorable_debug_defconfig ├── thunderx_88xx_defconfig ├── tiger-rk3588_defconfig ├── tinker-rk3288_defconfig ├── tinker-s-rk3288_defconfig ├── tools-only_defconfig ├── topic_miami_defconfig ├── topic_miamilite_defconfig ├── topic_miamiplus_defconfig ├── toradex-smarc-imx8mp_defconfig ├── total_compute_defconfig ├── toybrick-rk3588_defconfig ├── tplink_wdr4300_defconfig ├── tqma6dl_mba6_mmc_defconfig ├── tqma6dl_mba6_spi_defconfig ├── tqma6q_mba6_mmc_defconfig ├── tqma6q_mba6_spi_defconfig ├── tqma6s_mba6_mmc_defconfig ├── tqma6s_mba6_spi_defconfig ├── transformer_t20_defconfig ├── transformer_t30_defconfig ├── transpeed-8k618-t_defconfig ├── trats2_defconfig ├── trats_defconfig ├── trimslice_defconfig ├── tuge1_defconfig ├── turing-rk1-rk3588_defconfig ├── turris_1x_nor_defconfig ├── turris_1x_sdcard_defconfig ├── turris_mox_defconfig ├── turris_omnia_defconfig ├── tuxx1_defconfig ├── u200_defconfig ├── uDPU_defconfig ├── udoo_defconfig ├── udoo_neo_defconfig ├── uniphier_ld4_sld8_defconfig ├── uniphier_v7_defconfig ├── uniphier_v8_defconfig ├── usb_a9263_dataflash_defconfig ├── usbarmory_defconfig ├── variscite_dart6ul_defconfig ├── venice2_defconfig ├── ventana_defconfig ├── verdin-am62_a53_defconfig ├── verdin-am62_r5_defconfig ├── verdin-am62p_a53_defconfig ├── verdin-am62p_r5_defconfig ├── verdin-imx8mm_defconfig ├── verdin-imx8mp_defconfig ├── vexpress_aemv8a_juno_defconfig ├── vexpress_aemv8a_semi_defconfig ├── vexpress_aemv8r_defconfig ├── vexpress_ca9x4_defconfig ├── vexpress_fvp_bloblist_defconfig ├── vexpress_fvp_defconfig ├── vf610twr_defconfig ├── vf610twr_nand_defconfig ├── videostrong-kii-pro_defconfig ├── vinco_defconfig ├── vining_2000_defconfig ├── vocore2_defconfig ├── vyasa-rk3288_defconfig ├── wandboard_defconfig ├── warp7_bl33_defconfig ├── warp7_defconfig ├── wetek-core2_defconfig ├── wetek-hub_defconfig ├── wetek-play2_defconfig ├── work_92105_defconfig ├── x240_defconfig ├── x250_defconfig ├── x3_t30_defconfig ├── x530_defconfig ├── x96_mate_defconfig ├── xenguest_arm64_defconfig ├── xenguest_arm64_virtio_defconfig ├── xilinx_mbv32_defconfig ├── xilinx_mbv32_smode_defconfig ├── xilinx_mbv64_defconfig ├── xilinx_mbv64_smode_defconfig ├── xilinx_versal_mini_defconfig ├── xilinx_versal_mini_emmc0_defconfig ├── xilinx_versal_mini_emmc1_defconfig ├── xilinx_versal_mini_ospi_defconfig ├── xilinx_versal_mini_qspi_defconfig ├── xilinx_versal_net_mini_defconfig ├── xilinx_versal_net_mini_emmc_defconfig ├── xilinx_versal_net_mini_ospi_defconfig ├── xilinx_versal_net_mini_qspi_defconfig ├── xilinx_versal_net_virt_defconfig ├── xilinx_versal_virt_defconfig ├── xilinx_zynq_virt_defconfig ├── xilinx_zynqmp_kria_defconfig ├── xilinx_zynqmp_mini_defconfig ├── xilinx_zynqmp_mini_emmc0_defconfig ├── xilinx_zynqmp_mini_emmc1_defconfig ├── xilinx_zynqmp_mini_nand_defconfig ├── xilinx_zynqmp_mini_nand_single_defconfig ├── xilinx_zynqmp_mini_qspi_defconfig ├── xilinx_zynqmp_r5_defconfig ├── xilinx_zynqmp_virt_defconfig ├── xtfpga_defconfig ├── yuzukihd-chameleon_defconfig ├── zeropi_defconfig ├── zynq_cse_nand_defconfig ├── zynq_cse_nor_defconfig └── zynq_cse_qspi_defconfig ├── disk ├── Kconfig ├── Makefile ├── disk-uclass.c ├── part.c ├── part_amiga.c ├── part_amiga.h ├── part_dos.c ├── part_dos.h ├── part_efi.c ├── part_iso.c ├── part_iso.h ├── part_mac.c └── part_mac.h ├── doc ├── .gitignore ├── I2C_Edge_Conditions ├── Makefile ├── README.Heterogeneous-SoCs ├── README.JFFS2_NAND ├── README.LED ├── README.OFT ├── README.POST ├── README.VLAN ├── README.VSC3316-3308 ├── README.arm-caches ├── README.arm-relocation ├── README.armada-secureboot ├── README.asn1 ├── README.atmel_mci ├── README.atmel_pmecc ├── README.autoboot ├── README.bcmns3 ├── README.boston ├── README.cfi ├── README.commands.itest ├── README.commands.spl ├── README.console ├── README.davinci ├── README.davinci.nand_spl ├── README.dfutftp ├── README.displaying-bmps ├── README.dns ├── README.enetaddr ├── README.esbc_validate ├── README.ext4 ├── README.fec_mxc ├── README.fsl-ddr ├── README.fsl-esdhc ├── README.fsl-hwconfig ├── README.fsl-trustzone-components ├── README.fsl_iim ├── README.generic_usb_ohci ├── README.gpio ├── README.gpt ├── README.hwconfig ├── README.i2c ├── README.iomux ├── README.kwbimage ├── README.link-local ├── README.malta ├── README.marvell ├── README.mediatek ├── README.memory-test ├── README.mpc83xx.ddrecc ├── README.mpc83xxads ├── README.mpc85xx ├── README.mpc85xx-sd-spi-boot ├── README.mpc85xx-spin-table ├── README.mpc85xxcds ├── README.multi-dtb-fit ├── README.mxc_ocotp ├── README.nand ├── README.odroid ├── README.omap3 ├── README.pblimage ├── README.pcap ├── README.power-framework ├── README.pxe ├── README.ramboot-ppc85xx ├── README.rockchip ├── README.rockusb ├── README.s5p4418 ├── README.s5pc1xx ├── README.sata ├── README.sched ├── README.scrapyard ├── README.serial_dt_baud ├── README.serial_multi ├── README.silent ├── README.socfpga ├── README.splashprepare ├── README.srio-pcie-boot-corenet ├── README.standalone ├── README.t1040-l2switch ├── README.tee ├── README.ubi ├── README.ubispl ├── README.ublimage ├── README.udp ├── README.unaligned-memory-access.txt ├── README.uniphier ├── README.update ├── README.usb ├── README.vf610 ├── README.video ├── README.watchdog ├── README.zfs ├── SPI │ ├── README.altera_spi │ ├── README.ftssp010_spi_test │ ├── README.sandbox-spi │ ├── README.sh_qspi_test │ └── status.txt ├── SPL │ ├── README.am335x-network │ ├── README.omap3 │ └── README.spl-secure-boot ├── android │ ├── ab.rst │ ├── avb2.rst │ ├── bcb.rst │ ├── boot-image.rst │ ├── fastboot-protocol.rst │ ├── fastboot.rst │ └── index.rst ├── api │ ├── bootcount.rst │ ├── clk.rst │ ├── dfu.rst │ ├── dm.rst │ ├── efi.rst │ ├── event.rst │ ├── fs.rst │ ├── getopt.rst │ ├── index.rst │ ├── interrupt.rst │ ├── led.rst │ ├── linker_lists.rst │ ├── logging.rst │ ├── nvmem.rst │ ├── part.rst │ ├── pinctrl.rst │ ├── rng.rst │ ├── sandbox.rst │ ├── serial.rst │ ├── setjmp.rst │ ├── sysreset.rst │ ├── timer.rst │ ├── unicode.rst │ └── uthread.rst ├── arch │ ├── arc.rst │ ├── arm64.ffa.rst │ ├── arm64.rst │ ├── index.rst │ ├── m68k.rst │ ├── mips.rst │ ├── nios2.rst │ ├── riscv.rst │ ├── sandbox │ │ ├── block_impl.rst │ │ ├── index.rst │ │ └── sandbox.rst │ ├── sh.rst │ ├── x86 │ │ ├── index.rst │ │ ├── manual_boot.rst │ │ └── x86.rst │ └── xtensa.rst ├── board │ ├── acer │ │ ├── index.rst │ │ └── picasso.rst │ ├── actions │ │ ├── cubieboard7.rst │ │ └── index.rst │ ├── advantech │ │ ├── imx8qm-dmsse20-a1.rst │ │ ├── imx8qm-rom7720-a1.rst │ │ └── index.rst │ ├── allwinner │ │ ├── index.rst │ │ └── sunxi.rst │ ├── amlogic │ │ ├── aml-a311d-cc.rst │ │ ├── aml-s905d3-cc.rst │ │ ├── bananapi-cm4io.rst │ │ ├── bananapi-m2pro.rst │ │ ├── bananapi-m2s.rst │ │ ├── bananapi-m5.rst │ │ ├── beelink-gskingx.rst │ │ ├── beelink-gt1-ultimate.rst │ │ ├── beelink-gtking.rst │ │ ├── beelink-gtkingpro.rst │ │ ├── boot-flow.rst │ │ ├── index.rst │ │ ├── jethub-j100.rst │ │ ├── jethub-j80.rst │ │ ├── khadas-vim.rst │ │ ├── khadas-vim2.rst │ │ ├── khadas-vim3.rst │ │ ├── khadas-vim3l.rst │ │ ├── libretech-ac.rst │ │ ├── libretech-cc.rst │ │ ├── nanopi-k2.rst │ │ ├── odroid-c2.rst │ │ ├── odroid-c4.rst │ │ ├── odroid-go-ultra.rst │ │ ├── odroid-hc4.rst │ │ ├── odroid-n2.rst │ │ ├── odroid-n2l.rst │ │ ├── p200.rst │ │ ├── p201.rst │ │ ├── p212.rst │ │ ├── pre-generated-fip.rst │ │ ├── q200.rst │ │ ├── radxa-zero.rst │ │ ├── radxa-zero2.rst │ │ ├── s400.rst │ │ ├── sei510.rst │ │ ├── sei610.rst │ │ ├── u200.rst │ │ ├── videostrong-kii-pro.rst │ │ ├── w400.rst │ │ ├── wetek-core2.rst │ │ ├── wetek-hub.rst │ │ └── wetek-play2.rst │ ├── anbernic │ │ ├── index.rst │ │ └── rgxx3.rst │ ├── andestech │ │ ├── adp-ag101p.rst │ │ ├── ae350.rst │ │ └── index.rst │ ├── apple │ │ ├── index.rst │ │ └── m1.rst │ ├── armltd │ │ ├── index.rst │ │ ├── juno.rst │ │ └── vexpress64.rst │ ├── aspeed │ │ ├── ibex-ast2700.rst │ │ └── index.rst │ ├── asus │ │ ├── grouper.rst │ │ ├── index.rst │ │ ├── transformer_t114.rst │ │ ├── transformer_t20.rst │ │ └── transformer_t30.rst │ ├── atmel │ │ ├── at91ek.rst │ │ └── index.rst │ ├── beacon │ │ ├── beacon-imx8mm.rst │ │ ├── beacon-imx8mn.rst │ │ ├── beacon-imx8mp.rst │ │ └── index.rst │ ├── beagle │ │ ├── am62x_beagleplay.rst │ │ ├── am67a_beagley_ai.rst │ │ ├── img │ │ │ └── beagleplay_emmc.svg │ │ ├── index.rst │ │ └── j721e_beagleboneai64.rst │ ├── broadcom │ │ ├── bcm7xxx.rst │ │ ├── index.rst │ │ ├── northstar.rst │ │ └── raspberrypi.rst │ ├── bsh │ │ ├── imx8mn_bsh_smm_s2.rst │ │ └── index.rst │ ├── canaan │ │ ├── index.rst │ │ └── k230_canmv.rst │ ├── cloos │ │ ├── imx8mm_phg.rst │ │ └── index.rst │ ├── congatec │ │ ├── cgtqmx8.rst │ │ └── index.rst │ ├── coolpi │ │ ├── genbook_cm5_rk3588.rst │ │ └── index.rst │ ├── coreboot │ │ ├── coreboot.rst │ │ └── index.rst │ ├── emcraft │ │ ├── imx8mp-navqp.rst │ │ └── index.rst │ ├── emulation │ │ ├── acpi.rst │ │ ├── blkdev.rst │ │ ├── index.rst │ │ ├── qemu-arm.rst │ │ ├── qemu-mips.rst │ │ ├── qemu-ppce500.rst │ │ ├── qemu-riscv.rst │ │ ├── qemu-sbsa.rst │ │ ├── qemu-x86.rst │ │ └── qemu-xtensa.rst │ ├── gateworks │ │ ├── imx8mm_venice.rst │ │ ├── imx8mn_venice.rst │ │ ├── imx8mp_venice.rst │ │ └── index.rst │ ├── google │ │ ├── chromebook_coral.rst │ │ ├── chromebook_link.rst │ │ ├── chromebook_samus.rst │ │ └── index.rst │ ├── highbank │ │ ├── highbank.rst │ │ └── index.rst │ ├── hisilicon │ │ ├── hikey.rst │ │ ├── hikey960.rst │ │ ├── index.rst │ │ └── poplar.rst │ ├── htc │ │ ├── endeavoru.rst │ │ └── index.rst │ ├── index.rst │ ├── intel │ │ ├── bayleybay.rst │ │ ├── cherryhill.rst │ │ ├── cougarcanyon2.rst │ │ ├── crownbay.rst │ │ ├── edison.rst │ │ ├── galileo.rst │ │ ├── index.rst │ │ ├── minnowmax.rst │ │ └── slimbootloader.rst │ ├── kontron │ │ ├── index.rst │ │ ├── pitx-imx8m.rst │ │ ├── sl-mx6ul.rst │ │ ├── sl-mx8mm.rst │ │ └── sl28.rst │ ├── lenovo │ │ ├── ideapad-yoga-11.rst │ │ └── index.rst │ ├── lg │ │ ├── index.rst │ │ ├── star.rst │ │ └── x3_t30.rst │ ├── liebherr │ │ ├── btt.rst │ │ └── index.rst │ ├── mediatek │ │ ├── index.rst │ │ └── mt7621.rst │ ├── microchip │ │ ├── index.rst │ │ └── mpfs_icicle.rst │ ├── microsoft │ │ ├── index.rst │ │ └── surface-rt.rst │ ├── motorola │ │ ├── index.rst │ │ └── mot.rst │ ├── nvidia │ │ ├── index.rst │ │ └── tegratab.rst │ ├── nxp │ │ ├── imx8mm_evk.rst │ │ ├── imx8mn_evk.rst │ │ ├── imx8mp_evk.rst │ │ ├── imx8mq_evk.rst │ │ ├── imx8qxp_mek.rst │ │ ├── imx8ulp_evk.rst │ │ ├── imx91_11x11_evk.rst │ │ ├── imx93_11x11_evk.rst │ │ ├── imx93_9x9_qsb.rst │ │ ├── imx95_evk.rst │ │ ├── imxrt1020-evk.rst │ │ ├── imxrt1050-evk.rst │ │ ├── imxrt1170-evk.rst │ │ ├── index.rst │ │ ├── ls1046ardb.rst │ │ ├── mx6sabreauto.rst │ │ ├── mx6sabresd.rst │ │ ├── mx6ul_14x14_evk.rst │ │ ├── mx6ullevk.rst │ │ └── psb.rst │ ├── openpiton │ │ ├── index.rst │ │ └── riscv64.rst │ ├── ouya │ │ ├── index.rst │ │ └── ouya.rst │ ├── phytec │ │ ├── imx8mm-optee-build.rsti │ │ ├── imx8mm-phygate-tauri-l.rst │ │ ├── imx93-phycore.rst │ │ ├── index.rst │ │ ├── k3-common.rst │ │ ├── phycore-am62ax.rst │ │ ├── phycore-am62x.rst │ │ ├── phycore-am64x.rst │ │ ├── phycore-imx8mm.rst │ │ └── phycore-imx8mp.rst │ ├── purism │ │ ├── index.rst │ │ └── librem5.rst │ ├── qnap │ │ ├── index.rst │ │ └── ts433.rst │ ├── qualcomm │ │ ├── board.rst │ │ ├── debugging.rst │ │ ├── dragonboard410c.rst │ │ ├── dragonwing.rst │ │ ├── index.rst │ │ ├── phones.rst │ │ ├── rb3gen2.rst │ │ └── rdp.rst │ ├── renesas │ │ ├── index.rst │ │ ├── renesas.rst │ │ └── rzn1.rst │ ├── rockchip │ │ ├── index.rst │ │ ├── rkmtd.rst │ │ └── rockchip.rst │ ├── samsung │ │ ├── axy17lte.rst │ │ ├── e850-96.rst │ │ ├── img │ │ │ └── exynos850-boot-architecture.svg │ │ └── index.rst │ ├── schneider │ │ ├── hmibsc.rst │ │ └── index.rst │ ├── sielaff │ │ ├── imx6dl-sielaff.rst │ │ └── index.rst │ ├── siemens │ │ ├── index.rst │ │ └── iot2050.rst │ ├── sifive │ │ ├── index.rst │ │ ├── unleashed.rst │ │ └── unmatched.rst │ ├── sipeed │ │ ├── index.rst │ │ └── maix.rst │ ├── socionext │ │ ├── developerbox.rst │ │ └── index.rst │ ├── sophgo │ │ ├── index.rst │ │ ├── licheerv_nano.rst │ │ └── milkv_duo.rst │ ├── spacemit │ │ ├── bananapi-f3.rst │ │ └── index.rst │ ├── st │ │ ├── index.rst │ │ ├── st-dt.rst │ │ ├── stm32_MCU.rst │ │ └── stm32mp1.rst │ ├── starfive │ │ ├── deepcomputing_fml13v01.rst │ │ ├── index.rst │ │ ├── jh7110_common.rst │ │ ├── milk-v_mars.rst │ │ ├── pine64_star64.rst │ │ └── visionfive2.rst │ ├── ste │ │ ├── index.rst │ │ └── stemmy.rst │ ├── tbs │ │ ├── index.rst │ │ └── tbs2910.rst │ ├── thead │ │ ├── index.rst │ │ └── lpi4a.rst │ ├── theobroma-systems │ │ ├── index.rst │ │ ├── jaguar_rk3588.rst │ │ ├── puma_rk3399.rst │ │ ├── ringneck_px30.rst │ │ └── tiger_rk3588.rst │ ├── ti │ │ ├── am335x_evm.rst │ │ ├── am43xx_evm.rst │ │ ├── am62ax_sk.rst │ │ ├── am62px_sk.rst │ │ ├── am62x_sk.rst │ │ ├── am64x_evm.rst │ │ ├── am65x_evm.rst │ │ ├── dra7xx_evm.rst │ │ ├── img │ │ │ ├── boot_diagram_am62.svg │ │ │ ├── boot_diagram_am64.svg │ │ │ ├── boot_diagram_am65.svg │ │ │ ├── boot_diagram_j721e.svg │ │ │ ├── boot_diagram_k3_current.svg │ │ │ ├── boot_flow_01.svg │ │ │ ├── boot_flow_02.svg │ │ │ ├── boot_flow_03.svg │ │ │ ├── dm_tispl.bin.svg │ │ │ ├── emmc_am65x_evm_boot0.svg │ │ │ ├── emmc_j7200_evm_boot01.svg │ │ │ ├── emmc_j7200_evm_udafs.svg │ │ │ ├── j7200_tiboot3.bin.svg │ │ │ ├── multi_cert_tiboot3.bin.svg │ │ │ ├── no_multi_cert_tiboot3.bin.svg │ │ │ ├── nodm_tispl.bin.svg │ │ │ ├── openocd-overview.svg │ │ │ ├── ospi_sysfw-am64.svg │ │ │ ├── ospi_sysfw.svg │ │ │ ├── ospi_sysfw2.svg │ │ │ ├── ospi_sysfw3.svg │ │ │ ├── sysfw.itb.svg │ │ │ └── tifsstub_dm_tispl.bin.svg │ │ ├── index.rst │ │ ├── j7200_evm.rst │ │ ├── j721e_evm.rst │ │ ├── j721s2_evm.rst │ │ ├── j722s_evm.rst │ │ ├── j784s4_evm.rst │ │ ├── k3.rst │ │ └── ks2_evm.rst │ ├── toradex │ │ ├── apalis-imx8.rst │ │ ├── colibri-imx8x.rst │ │ ├── colibri_imx7.rst │ │ ├── index.rst │ │ ├── smarc-imx8mp.rst │ │ ├── verdin-am62.rst │ │ ├── verdin-am62p.rst │ │ ├── verdin-imx8mm.rst │ │ └── verdin-imx8mp.rst │ ├── variscite │ │ ├── imx8mn_var_som.rst │ │ ├── imx93_var_som.rst │ │ └── index.rst │ ├── wexler │ │ ├── index.rst │ │ └── qc750.rst │ ├── xen │ │ ├── index.rst │ │ └── xenguest_arm64.rst │ ├── xiaomi │ │ ├── index.rst │ │ └── mocha.rst │ └── xilinx │ │ ├── index.rst │ │ ├── xilinx.rst │ │ ├── zynq.rst │ │ ├── zynqmp-r5.rst │ │ └── zynqmp.rst ├── bounces ├── build │ ├── buildman.rst │ ├── clang.rst │ ├── docker.rst │ ├── documentation.rst │ ├── gcc.rst │ ├── gen_compile_commands.rst │ ├── index.rst │ ├── reproducible.rst │ ├── source.rst │ └── tools.rst ├── chromium │ ├── chainload.rst │ ├── files │ │ ├── chromebook_jerry.its │ │ ├── devkeys │ │ │ ├── kernel.keyblock │ │ │ └── kernel_data_key.vbprivk │ │ └── nyan-big.its │ ├── index.rst │ ├── overview.rst │ └── run_vboot.rst ├── conf.py ├── develop │ ├── binman_tests.rst │ ├── bitbangmii.rst │ ├── bloblist.rst │ ├── board_best_practices.rst │ ├── bootstd │ │ ├── android.rst │ │ ├── cros.rst │ │ ├── extlinux.rst │ │ ├── index.rst │ │ ├── overview.rst │ │ ├── pxelinux.rst │ │ ├── qfw.rst │ │ ├── rauc.rst │ │ ├── sandbox.rst │ │ └── script.rst │ ├── cedit.rst │ ├── checkpatch.rst │ ├── ci_testing.rst │ ├── coccinelle.rst │ ├── codingstyle.rst │ ├── commands.rst │ ├── config_binding.rst │ ├── crash_dumps.rst │ ├── cyclic.rst │ ├── designprinciples.rst │ ├── devicetree │ │ ├── control.rst │ │ ├── dt_qemu.rst │ │ ├── index.rst │ │ └── intro.rst │ ├── directories.rst │ ├── distro.rst │ ├── docstyle.rst │ ├── driver-model │ │ ├── bind.rst │ │ ├── debugging.rst │ │ ├── design.rst │ │ ├── ethernet.rst │ │ ├── fdt-fixup.rst │ │ ├── fs_firmware_loader.rst │ │ ├── i2c-howto.rst │ │ ├── index.rst │ │ ├── livetree.rst │ │ ├── migration.rst │ │ ├── nvme.rst │ │ ├── nvmxip.rst │ │ ├── of-plat.rst │ │ ├── pci-info.rst │ │ ├── pmic-framework.rst │ │ ├── remoteproc-framework.rst │ │ ├── serial-howto.rst │ │ ├── soc-framework.rst │ │ ├── spi-howto.rst │ │ ├── usb-info.rst │ │ └── virtio.rst │ ├── environment.rst │ ├── event.rst │ ├── expo.rst │ ├── falcon.rst │ ├── gdb.rst │ ├── global_data.rst │ ├── historical │ │ ├── generic_board.rst │ │ └── index.rst │ ├── ide_integration.rst │ ├── index.rst │ ├── init.rst │ ├── kconfig.rst │ ├── lmb.rst │ ├── logging.rst │ ├── makefiles.rst │ ├── memory.rst │ ├── menus.rst │ ├── package │ │ ├── binman.rst │ │ ├── bintools.rst │ │ ├── entries.rst │ │ └── index.rst │ ├── patman.rst │ ├── pics │ │ ├── flamegraph.png │ │ ├── flamegraph_timing.png │ │ ├── flamegraph_zoom.png │ │ ├── kernelshark.png │ │ ├── kernelshark_fg.png │ │ ├── patman.jpg │ │ ├── spl_after_reloc.svg │ │ └── spl_before_reloc.svg │ ├── printf.rst │ ├── process.rst │ ├── pytest │ │ ├── index.rst │ │ ├── test_000_version.rst │ │ ├── test_bind.rst │ │ ├── test_bootmenu.rst │ │ ├── test_bootstage.rst │ │ ├── test_button.rst │ │ ├── test_efi_loader.rst │ │ ├── test_net.rst │ │ ├── test_net_boot.rst │ │ └── usage.rst │ ├── python_cq.rst │ ├── qconfig.rst │ ├── release_cycle.rst │ ├── security.rst │ ├── sending_patches.rst │ ├── smbios.rst │ ├── spl.rst │ ├── statistics │ │ ├── u-boot-stats-v1.3.0.rst │ │ ├── u-boot-stats-v1.3.1.rst │ │ ├── u-boot-stats-v1.3.2.rst │ │ ├── u-boot-stats-v1.3.3.rst │ │ ├── u-boot-stats-v1.3.4.rst │ │ ├── u-boot-stats-v2008.10.rst │ │ ├── u-boot-stats-v2009.01.rst │ │ ├── u-boot-stats-v2009.03.rst │ │ ├── u-boot-stats-v2009.06.rst │ │ ├── u-boot-stats-v2009.08.rst │ │ ├── u-boot-stats-v2009.11.rst │ │ ├── u-boot-stats-v2010.03.rst │ │ ├── u-boot-stats-v2010.06.rst │ │ ├── u-boot-stats-v2010.09.rst │ │ ├── u-boot-stats-v2010.12.rst │ │ ├── u-boot-stats-v2011.03.rst │ │ ├── u-boot-stats-v2011.06.rst │ │ ├── u-boot-stats-v2011.09.rst │ │ ├── u-boot-stats-v2011.12.rst │ │ ├── u-boot-stats-v2012.04.rst │ │ ├── u-boot-stats-v2012.07.rst │ │ ├── u-boot-stats-v2012.10.rst │ │ ├── u-boot-stats-v2013.01.rst │ │ ├── u-boot-stats-v2013.04.rst │ │ ├── u-boot-stats-v2013.07.rst │ │ ├── u-boot-stats-v2013.10.rst │ │ ├── u-boot-stats-v2014.01.rst │ │ ├── u-boot-stats-v2014.04.rst │ │ ├── u-boot-stats-v2014.07.rst │ │ ├── u-boot-stats-v2014.10.rst │ │ ├── u-boot-stats-v2015.01.rst │ │ ├── u-boot-stats-v2015.04.rst │ │ ├── u-boot-stats-v2015.07.rst │ │ ├── u-boot-stats-v2015.10.rst │ │ ├── u-boot-stats-v2016.01.rst │ │ ├── u-boot-stats-v2016.03.rst │ │ ├── u-boot-stats-v2016.05.rst │ │ ├── u-boot-stats-v2016.07.rst │ │ ├── u-boot-stats-v2016.09.rst │ │ ├── u-boot-stats-v2016.11.rst │ │ ├── u-boot-stats-v2017.01.rst │ │ ├── u-boot-stats-v2017.03.rst │ │ ├── u-boot-stats-v2017.05.rst │ │ ├── u-boot-stats-v2017.07.rst │ │ ├── u-boot-stats-v2017.09.rst │ │ ├── u-boot-stats-v2017.11.rst │ │ ├── u-boot-stats-v2018.01.rst │ │ ├── u-boot-stats-v2018.03.rst │ │ ├── u-boot-stats-v2018.05.rst │ │ ├── u-boot-stats-v2018.07.rst │ │ ├── u-boot-stats-v2018.09.rst │ │ ├── u-boot-stats-v2018.11.rst │ │ ├── u-boot-stats-v2019.01.rst │ │ ├── u-boot-stats-v2019.04.rst │ │ ├── u-boot-stats-v2019.07.rst │ │ ├── u-boot-stats-v2019.10.rst │ │ ├── u-boot-stats-v2020.01.rst │ │ ├── u-boot-stats-v2020.04.rst │ │ ├── u-boot-stats-v2020.07.rst │ │ ├── u-boot-stats-v2020.10.rst │ │ ├── u-boot-stats-v2021.01.rst │ │ ├── u-boot-stats-v2021.04.rst │ │ ├── u-boot-stats-v2021.07.rst │ │ ├── u-boot-stats-v2021.10.rst │ │ ├── u-boot-stats-v2022.01.rst │ │ ├── u-boot-stats-v2022.04.rst │ │ ├── u-boot-stats-v2022.07.rst │ │ ├── u-boot-stats-v2022.10.rst │ │ ├── u-boot-stats-v2023.01.rst │ │ ├── u-boot-stats-v2023.04.rst │ │ ├── u-boot-stats-v2023.07.rst │ │ ├── u-boot-stats-v2023.10.rst │ │ ├── u-boot-stats-v2024.01.rst │ │ ├── u-boot-stats-v2024.04.rst │ │ ├── u-boot-stats-v2024.07.rst │ │ ├── u-boot-stats-v2024.10.rst │ │ ├── u-boot-stats-v2025.01.rst │ │ ├── u-boot-stats-v2025.04.rst │ │ └── u-boot-stats-v2025.07.rst │ ├── system_configuration.rst │ ├── testing.rst │ ├── tests_sandbox.rst │ ├── tests_writing.rst │ ├── trace.rst │ ├── uefi │ │ ├── fwu_updates.rst │ │ ├── index.rst │ │ ├── iscsi.rst │ │ ├── u-boot_on_efi.rst │ │ └── uefi.rst │ ├── vbe.rst │ └── version.rst ├── device-tree-bindings │ ├── README │ ├── adc │ │ └── adc.txt │ ├── arm │ │ ├── adi │ │ │ └── adi,sc5xx.yaml │ │ ├── arm,scmi.txt │ │ └── l2c2x0.txt │ ├── ata │ │ └── intel-sata.txt │ ├── axi │ │ └── gdsys,ihs_axi.txt │ ├── bootcount-syscon.txt │ ├── bootdev.txt │ ├── bootmeth.txt │ ├── bootph.yaml │ ├── bootstd.txt │ ├── bus │ │ └── simple-pm-bus.txt │ ├── chosen.txt │ ├── clock │ │ ├── adi,sc5xx-clocks.yaml │ │ ├── fixed-factor-clock.txt │ │ ├── fsl,mpc83xx-clk.txt │ │ ├── microchip,pic32-clock.txt │ │ ├── nvidia,tegra20-car.txt │ │ ├── rockchip,rk3288-dmc.txt │ │ ├── rockchip,rk3368-dmc.txt │ │ ├── snps,hsdk-cgu.txt │ │ ├── st,stm32mp1.txt │ │ ├── ti,cdce9xx.txt │ │ └── ti,sci-clk.txt │ ├── config.txt │ ├── cpu │ │ ├── fsl,mpc83xx.txt │ │ └── nios2.txt │ ├── device.txt │ ├── exynos │ │ ├── dwmmc.txt │ │ ├── emmc-reset.txt │ │ ├── isp-spi.txt │ │ ├── soc.txt │ │ ├── sound.txt │ │ └── tmu.txt │ ├── firmware │ │ ├── firmware-version.txt │ │ ├── fwu-mdata-gpt.yaml │ │ ├── fwu-mdata-mtd.yaml │ │ ├── linaro,optee-tz.txt │ │ ├── nvidia,tegra186-bpmp.txt │ │ ├── ti,j721e-dm-sci.txt │ │ └── ti,sci.txt │ ├── fpga │ │ └── altera-socfpga-a10-fpga-mgr.txt │ ├── fsp │ │ └── fsp2 │ │ │ └── apollolake │ │ │ ├── fsp-m.txt │ │ │ └── fsp-s.txt │ ├── gpio │ │ ├── altera_pio.txt │ │ ├── bcm2835-gpio.txt │ │ ├── fsl,mpc83xx-spisel-boot.txt │ │ ├── gpio-max7320.txt │ │ ├── gpio-msm.txt │ │ ├── gpio-pcf857x.txt │ │ ├── gpio-samsung.txt │ │ ├── gpio.txt │ │ ├── intel,apl-gpio.txt │ │ ├── intel,x86-broadwell-pinctrl.txt │ │ ├── intel,x86-pinctrl.txt │ │ ├── mscc_sgpio.txt │ │ ├── nvidia,tegra186-gpio.txt │ │ ├── nvidia,tegra20-gpio.txt │ │ └── snps,creg-gpio.txt │ ├── gpu │ │ └── nvidia,tegra20-host1x.txt │ ├── i2c │ │ ├── generic-acpi.txt │ │ ├── i2c-at91.txt │ │ ├── i2c-cdns.txt │ │ ├── i2c-cortina.txt │ │ ├── i2c-designware.txt │ │ ├── i2c-gpio.txt │ │ ├── i2c-mux.txt │ │ ├── i2c.txt │ │ ├── nvidia,tegra186-bpmp-i2c.txt │ │ ├── nx_i2c.txt │ │ ├── octeon-i2c.txt │ │ └── tegra20-i2c.txt │ ├── input │ │ ├── adc-keys.txt │ │ ├── cros-ec-keyb.txt │ │ ├── hid-over-i2c.txt │ │ └── i8042.txt │ ├── interrupt-controller │ │ ├── intel,acpi-gpe.txt │ │ └── interrupts.txt │ ├── iommu │ │ └── iommu.txt │ ├── leds │ │ ├── leds-bcm6328.txt │ │ ├── leds-bcm6358.txt │ │ ├── leds-bcm6858.txt │ │ ├── leds-gpio.txt │ │ ├── leds-lp5562.txt │ │ └── leds-pwm.txt │ ├── mailbox │ │ ├── k3-secure-proxy.txt │ │ ├── mailbox.txt │ │ └── nvidia,tegra186-hsp.txt │ ├── memory-controller │ │ └── k3-j721e-ddrss.txt │ ├── memory-controllers │ │ ├── k3-am654-ddrss.txt │ │ └── st,stm32mp1-ddr.txt │ ├── memory │ │ ├── memory.txt │ │ ├── ti,gpmc-child.yaml │ │ └── ti,gpmc.yaml │ ├── mfd │ │ └── canaan,k210-sysctl.txt │ ├── misc │ │ ├── altera_sysid.txt │ │ ├── atsha204.txt │ │ ├── bootcounter.txt │ │ ├── cros-ec.txt │ │ ├── esm-pmic.txt │ │ ├── fs_loader.txt │ │ ├── intel,baytrail-fsp.txt │ │ ├── intel,irq-router.txt │ │ ├── intel-lpc.txt │ │ ├── misc │ │ │ ├── fsl,mpc83xx-serdes.txt │ │ │ ├── gdsys,io-endpoint.txt │ │ │ ├── gdsys,iocon_fpga.txt │ │ │ ├── gdsys,iocpu_fpga.txt │ │ │ └── gdsys,soc.txt │ │ ├── socfpga_dtreg.txt │ │ └── ti,j721e-esm.yaml │ ├── mmc │ │ ├── sandbox,mmc.txt │ │ └── snps,dw-mmc.txt │ ├── mtd │ │ ├── altera_qspi.txt │ │ ├── cadence,nand.yaml │ │ ├── mtd-physmap.txt │ │ ├── spi-nand.txt │ │ ├── spi │ │ │ └── spi-flash.txt │ │ ├── ti,elm.yaml │ │ └── ti,gpmc-nand.yaml │ ├── nand │ │ ├── nvidia,tegra20-nand.txt │ │ └── sandbox,nand.txt │ ├── net │ │ ├── allwinner,sun4i-emac.txt │ │ ├── allwinner,sun4i-mdio.txt │ │ ├── allwinner,sun7i-a20-gmac.txt │ │ ├── altera_tse.txt │ │ ├── aquantia-phy.txt │ │ ├── ethernet.txt │ │ ├── fixed-link.txt │ │ ├── fsl,mcf-dma-fec.txt │ │ ├── fsl,mcf-fec.txt │ │ ├── fsl-tsec-phy.txt │ │ ├── marvell-mdio.txt │ │ ├── mdio-mux-reg.txt │ │ ├── mdio-mux.txt │ │ ├── mdio.txt │ │ ├── mediatek,mt7628-eth.txt │ │ ├── micrel-ksz90x1.txt │ │ ├── phy.txt │ │ ├── phy │ │ │ ├── adin.txt │ │ │ └── atheros.txt │ │ ├── snps,dwc-qos-ethernet.txt │ │ └── stmmac.txt │ ├── nvmxip │ │ └── nvmxip_qspi.txt │ ├── pci │ │ ├── armada8k-pcie.txt │ │ ├── mediatek-pcie.txt │ │ └── x86-pci.txt │ ├── pci_endpoint │ │ └── cdns,cdns-pcie-ep.txt │ ├── phy │ │ ├── mvebu_comphy.txt │ │ ├── no-op.txt │ │ ├── phy-mtk-tphy.txt │ │ ├── phy-stih407-usb.txt │ │ └── sun4i-usb-phy.txt │ ├── pinctrl │ │ ├── adi,adsp-pinctrl.yaml │ │ ├── apple,pinctrl.yaml │ │ ├── atmel,at91-pio4-pinctrl.txt │ │ ├── bcm6838-pinctrl.txt │ │ ├── canaan,k210-fpioa.txt │ │ ├── intel,apl-pinctrl.txt │ │ ├── marvell,armada-37xx-pinctrl.txt │ │ ├── marvell,armada-apn806-pinctrl.txt │ │ ├── marvell,armada-cp110-pinctrl.txt │ │ ├── marvell,mvebu-pinctrl.txt │ │ ├── nexell,s5pxx18-pinctrl.txt │ │ └── pinctrl-bindings.txt │ ├── pmic │ │ ├── max77663.txt │ │ ├── max77686.txt │ │ ├── rn5t567.txt │ │ ├── s2mps11.txt │ │ ├── sandbox.txt │ │ ├── tps65911.txt │ │ └── tps80031.txt │ ├── power │ │ ├── ti,sci-pm-domain.txt │ │ └── tps65090.txt │ ├── pwm │ │ ├── cros-ec-pwm.txt │ │ ├── pwm-at91.txt │ │ ├── pwm-sifive.txt │ │ ├── pwm.txt │ │ └── tegra20-pwm.txt │ ├── ram │ │ └── fsl,mpc83xx-mem-controller.txt │ ├── reboot-mode │ │ ├── reboot-mode-gpio.txt │ │ └── reboot-mode-rtc.txt │ ├── regulator │ │ ├── fan53555.txt │ │ ├── fixed.txt │ │ ├── fsl,anatop-regulator.txt │ │ ├── max77686.txt │ │ ├── regulator.txt │ │ ├── sandbox.txt │ │ └── tps65090.txt │ ├── remoteproc │ │ ├── k3-rproc.txt │ │ ├── k3-system-controller.txt │ │ ├── remoteproc.txt │ │ ├── ti,k3-dsp-rproc.txt │ │ └── ti,k3-r5f-rproc.txt │ ├── reserved-memory │ │ └── reserved-memory.txt │ ├── reset │ │ ├── reset.txt │ │ ├── syscon-reset.txt │ │ └── ti,sci-reset.txt │ ├── root.txt │ ├── rtc │ │ ├── abracon,abx80x.txt │ │ ├── brcm,brcmstb-waketimer.txt │ │ └── ds3232.txt │ ├── serial │ │ ├── 8250.txt │ │ ├── altera_jtaguart.txt │ │ ├── altera_uart.txt │ │ ├── bcm2835-aux-uart.txt │ │ ├── mcf-uart.txt │ │ ├── microchip,pic32-uart.txt │ │ ├── msm-geni-serial.txt │ │ ├── mxc-serial.txt │ │ ├── omap_serial.txt │ │ ├── pl01x.txt │ │ ├── qca,ar9330-uart.txt │ │ ├── sandbox-serial.txt │ │ ├── sh.txt │ │ ├── snps-dw-apb-uart.txt │ │ └── xilinx_uartlite.txt │ ├── soc │ │ ├── fsl │ │ │ └── cpm_qe │ │ │ │ └── qe │ │ │ │ └── ucc.txt │ │ └── samsung │ │ │ └── exynos-pmu.yaml │ ├── sound │ │ ├── da7219.txt │ │ ├── intel-hda.txt │ │ ├── max98357a.txt │ │ ├── nvidia,tegra-audio-max98090.txt │ │ └── snow.txt │ ├── spi │ │ ├── brcm,bcm63xx-hsspi.yaml │ │ ├── hpe,gxp-spi.yaml │ │ ├── snps,dw-apb-ssi.txt │ │ ├── soft-spi.txt │ │ ├── spi-atcspi200.txt │ │ ├── spi-ath79.txt │ │ ├── spi-bus.txt │ │ ├── spi-cadence.txt │ │ ├── spi-mcf-dspi.txt │ │ ├── spi-qup.txt │ │ ├── spi-zynq-qspi.txt │ │ ├── spi-zynq.txt │ │ └── spi_altera.txt │ ├── spmi │ │ └── spmi-sandbox.txt │ ├── sysinfo │ │ ├── gdsys,sysinfo_gazerbeam.txt │ │ ├── google,coral.txt │ │ ├── gpio-sysinfo.txt │ │ ├── smbios.txt │ │ └── sysinfo.txt │ ├── thermal │ │ └── ti_soc_thermal.txt │ ├── timer │ │ ├── adi,sc5xx-gptimer.yaml │ │ ├── altera_timer.txt │ │ ├── arc_timer.txt │ │ ├── atcpit100_timer.txt │ │ ├── fsl,mpc83xx-timer.txt │ │ └── sandbox_timer.txt │ ├── tpm2 │ │ ├── sandbox.txt │ │ └── tis-tpm2-spi.txt │ ├── usb │ │ ├── dwc2.txt │ │ ├── dwc3-st.txt │ │ ├── generic.txt │ │ ├── marvell.xhci-usb.txt │ │ ├── mediatek,mtk-xhci.txt │ │ ├── mediatek,mtu3.txt │ │ └── tegra-usb.txt │ ├── video │ │ ├── atmel-hlcdc.txt │ │ ├── bridge │ │ │ └── ps8622.txt │ │ ├── display-timing.txt │ │ ├── displaymode.txt │ │ ├── exynos-dp.txt │ │ ├── exynos-fb.txt │ │ ├── exynos_mipi_dsi.txt │ │ ├── intel-gma.txt │ │ ├── osd │ │ │ └── gdsys,ihs_video_out.txt │ │ ├── sandbox-fb.txt │ │ ├── simple-framebuffer.txt │ │ ├── syncoam,seps525.txt │ │ ├── tegra20-dc.txt │ │ └── tilcdc │ │ │ ├── panel.txt │ │ │ └── tilcdc.txt │ ├── w1-eeprom │ │ ├── ds24xxx.txt │ │ ├── ds2502.txt │ │ └── eep_sandbox.txt │ ├── w1 │ │ ├── mxc-w1.txt │ │ └── w1-gpio.txt │ └── watchdog │ │ ├── common.txt │ │ └── gpio-wdt.txt ├── dumpimage.1 ├── feature-removal-schedule.txt ├── genindex.rst ├── git-mailrc ├── imx │ ├── ahab │ │ ├── csf_examples │ │ │ └── csf_enc_boot_image.txt │ │ └── guides │ │ │ └── mx8_mx8x_encrypted_boot.txt │ ├── clk │ │ └── ccf.txt │ ├── common │ │ ├── imx27.txt │ │ ├── imx5.txt │ │ ├── imx6.txt │ │ ├── imx7.txt │ │ └── mxs.txt │ ├── habv4 │ │ ├── csf_examples │ │ │ ├── additional_images │ │ │ │ └── csf_additional_images.txt │ │ │ └── mx6_mx7 │ │ │ │ ├── csf_uboot.txt │ │ │ │ └── csf_uboot_fast_authentication.txt │ │ ├── guides │ │ │ ├── encrypted_boot.txt │ │ │ ├── mx6_mx7_secure_boot.txt │ │ │ ├── mx6_mx7_spl_secure_boot.txt │ │ │ └── mx8m_spl_secure_boot.txt │ │ ├── introduction_habv4.txt │ │ └── script_examples │ │ │ └── genIVT.pl │ ├── imx95_container.txt │ ├── misc │ │ └── sdp.txt │ └── mkimage │ │ ├── imx8image.txt │ │ ├── imximage.txt │ │ └── mxsimage.txt ├── index.rst ├── kwboot.1 ├── learn │ ├── index.rst │ └── talks.rst ├── media │ ├── Makefile │ └── linker_lists.h.rst.exceptions ├── mkeficapsule.1 ├── mkfwumdata.1 ├── mkimage.1 ├── mvebu │ ├── armada-8k-memory.txt │ └── cmd │ │ └── bubt.txt ├── sphinx-static │ └── theme_overrides.css ├── sphinx │ ├── automarkup.py │ ├── cdomain.py │ ├── kernel_abi.py │ ├── kernel_feat.py │ ├── kernel_include.py │ ├── kerneldoc.py │ ├── kernellog.py │ ├── kfigure.py │ ├── load_config.py │ ├── maintainers_include.py │ ├── parallel-wrapper.sh │ ├── parse-headers.pl │ ├── requirements.txt │ └── rstFlatTable.py └── usage │ ├── blkmap.rst │ ├── cmd │ ├── acpi.rst │ ├── addrmap.rst │ ├── armffa.rst │ ├── askenv.rst │ ├── base.rst │ ├── bdinfo.rst │ ├── bind.rst │ ├── blkcache.rst │ ├── bootd.rst │ ├── bootdev.rst │ ├── bootefi.rst │ ├── bootelf.rst │ ├── bootflow.rst │ ├── booti.rst │ ├── bootm.rst │ ├── bootmenu.rst │ ├── bootmeth.rst │ ├── bootstd.rst │ ├── bootz.rst │ ├── button.rst │ ├── cat.rst │ ├── cbcmos.rst │ ├── cbsysinfo.rst │ ├── cedit.rst │ ├── cli.rst │ ├── cls.rst │ ├── cmp.rst │ ├── coninfo.rst │ ├── conitrace.rst │ ├── cp.rst │ ├── cpu.rst │ ├── cpuid.rst │ ├── cyclic.rst │ ├── dm.rst │ ├── ebtupdate.rst │ ├── echo.rst │ ├── efi.rst │ ├── eficonfig.rst │ ├── env.rst │ ├── event.rst │ ├── exception.rst │ ├── exit.rst │ ├── extension.rst │ ├── false.rst │ ├── fatinfo.rst │ ├── fatload.rst │ ├── fdt.rst │ ├── font.rst │ ├── for.rst │ ├── fuse.rst │ ├── fwu_mdata.rst │ ├── gpio.rst │ ├── gpt.rst │ ├── history.rst │ ├── host.rst │ ├── if.rst │ ├── imxtract.rst │ ├── itest.rst │ ├── load.rst │ ├── loadb.rst │ ├── loadm.rst │ ├── loads.rst │ ├── loadx.rst │ ├── loady.rst │ ├── mbr.rst │ ├── md.rst │ ├── meminfo.rst │ ├── mmc.rst │ ├── msr.rst │ ├── mtest.rst │ ├── mtrr.rst │ ├── mv.rst │ ├── optee.rst │ ├── panic.rst │ ├── part.rst │ ├── pause.rst │ ├── pinmux.rst │ ├── printenv.rst │ ├── pstore.rst │ ├── pwm.rst │ ├── qfw.rst │ ├── read.rst │ ├── reset.rst │ ├── rng.rst │ ├── saves.rst │ ├── sb.rst │ ├── sbi.rst │ ├── scmi.rst │ ├── scp03.rst │ ├── seama.rst │ ├── setexpr.rst │ ├── sf.rst │ ├── size.rst │ ├── sleep.rst │ ├── sm.rst │ ├── smbios.rst │ ├── sntp.rst │ ├── sound.rst │ ├── source.rst │ ├── tcpm.rst │ ├── temperature.rst │ ├── test.rst │ ├── tftpput.rst │ ├── trace.rst │ ├── true.rst │ ├── ums.rst │ ├── unbind.rst │ ├── upl.rst │ ├── ut.rst │ ├── wdt.rst │ ├── wget.rst │ ├── write.rst │ └── xxd.rst │ ├── cmdline.rst │ ├── dfu.rst │ ├── environment.rst │ ├── fdt_overlays.rst │ ├── fit │ ├── beaglebone_vboot.rst │ ├── howto.rst │ ├── index.rst │ ├── kernel.rst │ ├── kernel_fdt.rst │ ├── kernel_fdts_compressed.rst │ ├── multi-with-fpga.rst │ ├── multi-with-loadables.rst │ ├── multi.rst │ ├── multi_spl.rst │ ├── overlay-fdt-boot.rst │ ├── sec_firmware_ppa.rst │ ├── sign-configs.rst │ ├── sign-images.rst │ ├── signature.rst │ ├── source_file_format.rst │ ├── uefi.rst │ ├── update3.rst │ ├── update_uboot.rst │ ├── verified-boot.rst │ └── x86-fit-boot.rst │ ├── index.rst │ ├── measured_boot.rst │ ├── netconsole.rst │ ├── os │ ├── plan9.rst │ └── vxworks.rst │ ├── partitions.rst │ ├── semihosting.rst │ ├── spl_boot.rst │ └── upl.rst ├── drivers ├── Kconfig ├── Makefile ├── adc │ ├── Kconfig │ ├── Makefile │ ├── adc-uclass.c │ ├── exynos-adc.c │ ├── imx93-adc.c │ ├── meson-saradc.c │ ├── rockchip-saradc.c │ ├── sandbox.c │ ├── stm32-adc-core.c │ ├── stm32-adc-core.h │ └── stm32-adc.c ├── ata │ ├── Kconfig │ ├── Makefile │ ├── ahci-pci.c │ ├── ahci-uclass.c │ ├── ahci.c │ ├── ahci_generic.c │ ├── ahci_sunxi.c │ ├── dwc_ahci.c │ ├── dwc_ahsata.c │ ├── dwc_ahsata_priv.h │ ├── fsl_sata.c │ ├── fsl_sata.h │ ├── libata.c │ ├── mtk_ahci.c │ ├── sata.c │ ├── sata_bootdev.c │ ├── sata_ceva.c │ ├── sata_mv.c │ ├── sata_sil.c │ └── sata_sil.h ├── axi │ ├── Kconfig │ ├── Makefile │ ├── axi-emul-uclass.c │ ├── axi-uclass.c │ ├── axi_sandbox.c │ ├── ihs_axi.c │ └── sandbox_store.c ├── bios_emulator │ ├── Kconfig │ ├── Makefile │ ├── atibios.c │ ├── besys.c │ ├── bios.c │ ├── biosemu.c │ ├── biosemui.h │ ├── include │ │ ├── biosemu.h │ │ ├── x86emu.h │ │ └── x86emu │ │ │ ├── debug.h │ │ │ ├── decode.h │ │ │ ├── ops.h │ │ │ ├── prim_ops.h │ │ │ ├── regs.h │ │ │ └── x86emui.h │ └── x86emu │ │ ├── debug.c │ │ ├── decode.c │ │ ├── ops.c │ │ ├── ops2.c │ │ ├── prim_ops.c │ │ └── sys.c ├── block │ ├── Kconfig │ ├── Makefile │ ├── blk-uclass.c │ ├── blk_legacy.c │ ├── blkcache.c │ ├── blkmap.c │ ├── blkmap_helper.c │ ├── efi-media-uclass.c │ ├── efi_blk.c │ ├── host-uclass.c │ ├── host_dev.c │ ├── ide.c │ ├── rkmtd.c │ ├── sandbox.c │ └── sb_efi_media.c ├── bootcount │ ├── Kconfig │ ├── Makefile │ ├── bootcount-uclass.c │ ├── bootcount.c │ ├── bootcount_at91.c │ ├── bootcount_davinci.c │ ├── bootcount_dm_i2c.c │ ├── bootcount_env.c │ ├── bootcount_fs.c │ ├── bootcount_nvmem.c │ ├── bootcount_ram.c │ ├── bootcount_syscon.c │ ├── bootcount_zynqmp.c │ ├── i2c-eeprom.c │ ├── pmic_pfuze100.c │ ├── rtc.c │ └── spi-flash.c ├── bus │ ├── Kconfig │ ├── Makefile │ ├── ti-pwmss.c │ ├── ti-sysc.c │ └── uniphier-system-bus.c ├── button │ ├── Kconfig │ ├── Makefile │ ├── button-adc.c │ ├── button-gpio.c │ ├── button-qcom-pmic.c │ └── button-uclass.c ├── cache │ ├── Kconfig │ ├── Makefile │ ├── cache-andes-l2.c │ ├── cache-l2x0.c │ ├── cache-ncore.c │ ├── cache-sifive-ccache.c │ ├── cache-sifive-pl2.c │ ├── cache-uclass.c │ └── sandbox_cache.c ├── clk │ ├── Kconfig │ ├── Makefile │ ├── adi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-adi-pll.c │ │ ├── clk-adi-sc57x.c │ │ ├── clk-adi-sc58x.c │ │ ├── clk-adi-sc594.c │ │ ├── clk-adi-sc598.c │ │ ├── clk-shared.c │ │ └── clk.h │ ├── airoha │ │ ├── Makefile │ │ └── clk-airoha.c │ ├── altera │ │ ├── Makefile │ │ ├── clk-agilex.c │ │ ├── clk-agilex.h │ │ ├── clk-agilex5.c │ │ ├── clk-agilex5.h │ │ ├── clk-arria10.c │ │ ├── clk-mem-n5x.c │ │ ├── clk-mem-n5x.h │ │ ├── clk-n5x.c │ │ └── clk-n5x.h │ ├── analogbits │ │ ├── Kconfig │ │ ├── Makefile │ │ └── wrpll-cln28hpc.c │ ├── aspeed │ │ ├── Makefile │ │ ├── clk_ast2500.c │ │ └── clk_ast2600.c │ ├── at91 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-generic.c │ │ ├── clk-main.c │ │ ├── clk-master.c │ │ ├── clk-peripheral.c │ │ ├── clk-programmable.c │ │ ├── clk-sam9x60-pll.c │ │ ├── clk-sam9x60-usb.c │ │ ├── clk-system.c │ │ ├── clk-utmi.c │ │ ├── compat.c │ │ ├── pmc.c │ │ ├── pmc.h │ │ ├── sam9x60.c │ │ ├── sam9x7.c │ │ ├── sama7g5.c │ │ └── sckc.c │ ├── clk-cdce9xx.c │ ├── clk-composite.c │ ├── clk-divider.c │ ├── clk-fixed-factor.c │ ├── clk-gate.c │ ├── clk-gpio.c │ ├── clk-hsdk-cgu.c │ ├── clk-mux.c │ ├── clk-stub.c │ ├── clk-uclass.c │ ├── clk-xlnx-clock-wizard.c │ ├── clk.c │ ├── clk_bcm6345.c │ ├── clk_boston.c │ ├── clk_fixed_factor.c │ ├── clk_fixed_rate.c │ ├── clk_k210.c │ ├── clk_octeon.c │ ├── clk_pic32.c │ ├── clk_sandbox.c │ ├── clk_sandbox_ccf.c │ ├── clk_sandbox_test.c │ ├── clk_scmi.c │ ├── clk_versaclock.c │ ├── clk_versal.c │ ├── clk_vexpress_osc.c │ ├── clk_zynq.c │ ├── clk_zynqmp.c │ ├── exynos │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-exynos7420.c │ │ ├── clk-exynos850.c │ │ ├── clk-pll.c │ │ ├── clk-pll.h │ │ ├── clk.c │ │ └── clk.h │ ├── ics8n3qv01.c │ ├── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-composite-8m.c │ │ ├── clk-composite-93.c │ │ ├── clk-fracn-gppll.c │ │ ├── clk-gate-93.c │ │ ├── clk-gate2.c │ │ ├── clk-imx6q.c │ │ ├── clk-imx6ul.c │ │ ├── clk-imx8.c │ │ ├── clk-imx8.h │ │ ├── clk-imx8mm.c │ │ ├── clk-imx8mn.c │ │ ├── clk-imx8mp.c │ │ ├── clk-imx8mq.c │ │ ├── clk-imx8qm.c │ │ ├── clk-imx8qxp.c │ │ ├── clk-imx93.c │ │ ├── clk-imxrt1020.c │ │ ├── clk-imxrt1050.c │ │ ├── clk-imxrt1170.c │ │ ├── clk-pfd.c │ │ ├── clk-pll14xx.c │ │ ├── clk-pllv3.c │ │ └── clk.h │ ├── intel │ │ ├── Makefile │ │ └── clk_intel.c │ ├── mediatek │ │ ├── Makefile │ │ ├── clk-mt7622.c │ │ ├── clk-mt7623.c │ │ ├── clk-mt7629.c │ │ ├── clk-mt7981.c │ │ ├── clk-mt7986.c │ │ ├── clk-mt7987.c │ │ ├── clk-mt7988.c │ │ ├── clk-mt8183.c │ │ ├── clk-mt8365.c │ │ ├── clk-mt8512.c │ │ ├── clk-mt8516.c │ │ ├── clk-mt8518.c │ │ ├── clk-mtk.c │ │ └── clk-mtk.h │ ├── meson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── a1.c │ │ ├── axg-ao.c │ │ ├── axg.c │ │ ├── clk-measure.c │ │ ├── clk_meson.h │ │ ├── g12a-ao.c │ │ ├── g12a.c │ │ └── gxbb.c │ ├── microchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mpfs_clk.c │ │ ├── mpfs_clk.h │ │ ├── mpfs_clk_cfg.c │ │ ├── mpfs_clk_msspll.c │ │ └── mpfs_clk_periph.c │ ├── mpc83xx_clk.c │ ├── mpc83xx_clk.h │ ├── mtmips │ │ ├── Makefile │ │ ├── clk-mt7620.c │ │ ├── clk-mt7621.c │ │ └── clk-mt7628.c │ ├── mvebu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── armada-37xx-periph.c │ │ └── armada-37xx-tbg.c │ ├── nuvoton │ │ ├── Makefile │ │ ├── clk_npcm.c │ │ ├── clk_npcm.h │ │ ├── clk_npcm7xx.c │ │ └── clk_npcm8xx.c │ ├── owl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk_owl.c │ │ └── clk_owl.h │ ├── qcom │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock-apq8016.c │ │ ├── clock-apq8096.c │ │ ├── clock-ipq4019.c │ │ ├── clock-ipq5424.c │ │ ├── clock-ipq9574.c │ │ ├── clock-qcm2290.c │ │ ├── clock-qcom.c │ │ ├── clock-qcom.h │ │ ├── clock-qcs404.c │ │ ├── clock-qcs615.c │ │ ├── clock-qcs8300.c │ │ ├── clock-sa8775p.c │ │ ├── clock-sc7280.c │ │ ├── clock-sdm845.c │ │ ├── clock-sm6115.c │ │ ├── clock-sm8150.c │ │ ├── clock-sm8250.c │ │ ├── clock-sm8550.c │ │ ├── clock-sm8650.c │ │ └── clock-x1e80100.c │ ├── renesas │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-rcar-gen2.c │ │ ├── clk-rcar-gen3.c │ │ ├── r8a774a1-cpg-mssr.c │ │ ├── r8a774b1-cpg-mssr.c │ │ ├── r8a774c0-cpg-mssr.c │ │ ├── r8a774e1-cpg-mssr.c │ │ ├── r8a7790-cpg-mssr.c │ │ ├── r8a7791-cpg-mssr.c │ │ ├── r8a7792-cpg-mssr.c │ │ ├── r8a7794-cpg-mssr.c │ │ ├── r8a7795-cpg-mssr.c │ │ ├── r8a7796-cpg-mssr.c │ │ ├── r8a77965-cpg-mssr.c │ │ ├── r8a77970-cpg-mssr.c │ │ ├── r8a77980-cpg-mssr.c │ │ ├── r8a77990-cpg-mssr.c │ │ ├── r8a77995-cpg-mssr.c │ │ ├── r8a779a0-cpg-mssr.c │ │ ├── r8a779f0-cpg-mssr.c │ │ ├── r8a779g0-cpg-mssr.c │ │ ├── r8a779h0-cpg-mssr.c │ │ ├── r9a06g032-clocks.c │ │ ├── r9a07g044-cpg.c │ │ ├── rcar-cpg-lib.c │ │ ├── rcar-cpg-lib.h │ │ ├── rcar-gen2-cpg.h │ │ ├── rcar-gen3-cpg.h │ │ ├── renesas-cpg-mssr.c │ │ ├── renesas-cpg-mssr.h │ │ ├── rzg2l-cpg.c │ │ └── rzg2l-cpg.h │ ├── rockchip │ │ ├── Makefile │ │ ├── clk_pll.c │ │ ├── clk_px30.c │ │ ├── clk_rk3036.c │ │ ├── clk_rk3066.c │ │ ├── clk_rk3128.c │ │ ├── clk_rk3188.c │ │ ├── clk_rk322x.c │ │ ├── clk_rk3288.c │ │ ├── clk_rk3308.c │ │ ├── clk_rk3328.c │ │ ├── clk_rk3368.c │ │ ├── clk_rk3399.c │ │ ├── clk_rk3528.c │ │ ├── clk_rk3568.c │ │ ├── clk_rk3576.c │ │ ├── clk_rk3588.c │ │ ├── clk_rv1108.c │ │ └── clk_rv1126.c │ ├── sifive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fu540-prci.c │ │ ├── fu740-prci.c │ │ ├── sifive-prci.c │ │ └── sifive-prci.h │ ├── sophgo │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-common.h │ │ ├── clk-cv1800b.c │ │ ├── clk-cv1800b.h │ │ ├── clk-ip.c │ │ ├── clk-ip.h │ │ ├── clk-pll.c │ │ └── clk-pll.h │ ├── starfive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-jh7110-pll.c │ │ ├── clk-jh7110.c │ │ └── clk.h │ ├── stm32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-stm32-core.c │ │ ├── clk-stm32-core.h │ │ ├── clk-stm32f.c │ │ ├── clk-stm32h7.c │ │ ├── clk-stm32mp1.c │ │ ├── clk-stm32mp13.c │ │ ├── clk-stm32mp25.c │ │ └── stm32mp13_rcc.h │ ├── sunxi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk_a10.c │ │ ├── clk_a100.c │ │ ├── clk_a10s.c │ │ ├── clk_a23.c │ │ ├── clk_a31.c │ │ ├── clk_a31_r.c │ │ ├── clk_a64.c │ │ ├── clk_a80.c │ │ ├── clk_a83t.c │ │ ├── clk_d1.c │ │ ├── clk_f1c100s.c │ │ ├── clk_h3.c │ │ ├── clk_h6.c │ │ ├── clk_h616.c │ │ ├── clk_h6_r.c │ │ ├── clk_r40.c │ │ ├── clk_sun6i_rtc.c │ │ ├── clk_sunxi.c │ │ └── clk_v3s.c │ ├── tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── tegra-car-clk.c │ │ └── tegra186-clk.c │ ├── thead │ │ ├── Kconfig │ │ ├── Makefile │ │ └── clk-th1520-ap.c │ ├── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-am3-dpll-x2.c │ │ ├── clk-am3-dpll.c │ │ ├── clk-ctrl.c │ │ ├── clk-divider.c │ │ ├── clk-gate.c │ │ ├── clk-k3-pll.c │ │ ├── clk-k3.c │ │ ├── clk-mux.c │ │ ├── clk-sci.c │ │ ├── clk.c │ │ ├── clk.h │ │ └── omap4-cm.c │ └── uniphier │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-uniphier-core.c │ │ ├── clk-uniphier-mio.c │ │ ├── clk-uniphier-sys.c │ │ └── clk-uniphier.h ├── core │ ├── Kconfig │ ├── Makefile │ ├── acpi.c │ ├── device-remove.c │ ├── device.c │ ├── devres.c │ ├── dump.c │ ├── fdtaddr.c │ ├── lists.c │ ├── of_access.c │ ├── of_addr.c │ ├── of_extra.c │ ├── ofnode.c │ ├── ofnode_graph.c │ ├── read.c │ ├── read_extra.c │ ├── regmap.c │ ├── root.c │ ├── simple-bus.c │ ├── simple-pm-bus.c │ ├── syscon-uclass.c │ ├── tag.c │ ├── uclass.c │ └── util.c ├── cpu │ ├── Kconfig │ ├── Makefile │ ├── armv8_cpu.c │ ├── armv8_cpu.h │ ├── at91_cpu.c │ ├── bcm283x_cpu.c │ ├── bmips_cpu.c │ ├── cpu-uclass.c │ ├── cpu_sandbox.c │ ├── imx8_cpu.c │ ├── microblaze_cpu.c │ ├── mpc83xx_cpu.c │ ├── mpc83xx_cpu.h │ ├── mtk_cpu.c │ ├── riscv_cpu.c │ └── xtensa_cpu.c ├── crypto │ ├── Kconfig │ ├── Makefile │ ├── ace_sha.c │ ├── ace_sha.h │ ├── aspeed │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── aspeed_acry.c │ │ ├── aspeed_hace.c │ │ ├── cptra_ecdsa.c │ │ └── cptra_sha.c │ ├── fsl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dcp_rng.c │ │ ├── desc.h │ │ ├── desc_constr.h │ │ ├── error.c │ │ ├── fsl_blob.c │ │ ├── fsl_hash.c │ │ ├── fsl_hash.h │ │ ├── fsl_mfgprot.c │ │ ├── fsl_rsa.c │ │ ├── jobdesc.c │ │ ├── jobdesc.h │ │ ├── jr.c │ │ ├── jr.h │ │ ├── rng.c │ │ ├── rsa_caam.h │ │ ├── sec.c │ │ └── type.h │ ├── hash │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── hash-uclass.c │ │ └── hash_sw.c │ ├── nuvoton │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── npcm_aes.c │ │ └── npcm_sha.c │ └── rsa_mod_exp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mod_exp_sw.c │ │ └── mod_exp_uclass.c ├── ddr │ ├── Kconfig │ ├── altera │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── iossm_mailbox.c │ │ ├── iossm_mailbox.h │ │ ├── sdram_agilex.c │ │ ├── sdram_agilex5.c │ │ ├── sdram_arria10.c │ │ ├── sdram_gen5.c │ │ ├── sdram_n5x.c │ │ ├── sdram_s10.c │ │ ├── sdram_s10.h │ │ ├── sdram_soc64.c │ │ ├── sdram_soc64.h │ │ ├── sequencer.c │ │ └── sequencer.h │ ├── fsl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arm_ddr_gen3.c │ │ ├── ctrl_regs.c │ │ ├── ddr1_dimm_params.c │ │ ├── ddr2_dimm_params.c │ │ ├── ddr3_dimm_params.c │ │ ├── ddr4_dimm_params.c │ │ ├── fsl_ddr_gen4.c │ │ ├── fsl_mmdc.c │ │ ├── interactive.c │ │ ├── lc_common_dimm_params.c │ │ ├── main.c │ │ ├── mpc85xx_ddr_gen1.c │ │ ├── mpc85xx_ddr_gen2.c │ │ ├── mpc85xx_ddr_gen3.c │ │ ├── options.c │ │ └── util.c │ ├── imx │ │ ├── Kconfig │ │ ├── imx8m │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── ddr_init.c │ │ ├── imx8ulp │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── ddr_init.c │ │ ├── imx9 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── ddr_init.c │ │ └── phy │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ddrphy_train.c │ │ │ ├── ddrphy_utils.c │ │ │ └── helper.c │ ├── marvell │ │ ├── a38x │ │ │ ├── Makefile │ │ │ ├── ddr3_debug.c │ │ │ ├── ddr3_init.c │ │ │ ├── ddr3_init.h │ │ │ ├── ddr3_logging_def.h │ │ │ ├── ddr3_patterns_64bit.h │ │ │ ├── ddr3_training.c │ │ │ ├── ddr3_training_bist.c │ │ │ ├── ddr3_training_centralization.c │ │ │ ├── ddr3_training_db.c │ │ │ ├── ddr3_training_hw_algo.c │ │ │ ├── ddr3_training_hw_algo.h │ │ │ ├── ddr3_training_ip.h │ │ │ ├── ddr3_training_ip_bist.h │ │ │ ├── ddr3_training_ip_centralization.h │ │ │ ├── ddr3_training_ip_db.h │ │ │ ├── ddr3_training_ip_def.h │ │ │ ├── ddr3_training_ip_engine.c │ │ │ ├── ddr3_training_ip_engine.h │ │ │ ├── ddr3_training_ip_flow.h │ │ │ ├── ddr3_training_ip_pbs.h │ │ │ ├── ddr3_training_ip_prv_if.h │ │ │ ├── ddr3_training_leveling.c │ │ │ ├── ddr3_training_leveling.h │ │ │ ├── ddr3_training_pbs.c │ │ │ ├── ddr_ml_wrapper.h │ │ │ ├── ddr_topology_def.h │ │ │ ├── ddr_training_ip_db.h │ │ │ ├── dram_if.h │ │ │ ├── mv_ddr4_mpr_pda_if.c │ │ │ ├── mv_ddr4_mpr_pda_if.h │ │ │ ├── mv_ddr4_training.c │ │ │ ├── mv_ddr4_training.h │ │ │ ├── mv_ddr4_training_calibration.c │ │ │ ├── mv_ddr4_training_calibration.h │ │ │ ├── mv_ddr4_training_db.c │ │ │ ├── mv_ddr4_training_leveling.c │ │ │ ├── mv_ddr4_training_leveling.h │ │ │ ├── mv_ddr_build_message.c │ │ │ ├── mv_ddr_common.c │ │ │ ├── mv_ddr_common.h │ │ │ ├── mv_ddr_plat.c │ │ │ ├── mv_ddr_plat.h │ │ │ ├── mv_ddr_regs.h │ │ │ ├── mv_ddr_spd.c │ │ │ ├── mv_ddr_spd.h │ │ │ ├── mv_ddr_sys_env_lib.c │ │ │ ├── mv_ddr_sys_env_lib.h │ │ │ ├── mv_ddr_topology.c │ │ │ ├── mv_ddr_topology.h │ │ │ ├── mv_ddr_training_db.h │ │ │ ├── old │ │ │ │ ├── Makefile │ │ │ │ ├── ddr3_a38x.c │ │ │ │ ├── ddr3_a38x.h │ │ │ │ ├── ddr3_a38x_mc_static.h │ │ │ │ ├── ddr3_a38x_topology.h │ │ │ │ ├── ddr3_a38x_training.c │ │ │ │ ├── ddr3_debug.c │ │ │ │ ├── ddr3_hws_hw_training.c │ │ │ │ ├── ddr3_hws_hw_training.h │ │ │ │ ├── ddr3_hws_hw_training_def.h │ │ │ │ ├── ddr3_hws_sil_training.h │ │ │ │ ├── ddr3_init.c │ │ │ │ ├── ddr3_init.h │ │ │ │ ├── ddr3_logging_def.h │ │ │ │ ├── ddr3_patterns_64bit.h │ │ │ │ ├── ddr3_topology_def.h │ │ │ │ ├── ddr3_training.c │ │ │ │ ├── ddr3_training_bist.c │ │ │ │ ├── ddr3_training_centralization.c │ │ │ │ ├── ddr3_training_db.c │ │ │ │ ├── ddr3_training_hw_algo.c │ │ │ │ ├── ddr3_training_hw_algo.h │ │ │ │ ├── ddr3_training_ip.h │ │ │ │ ├── ddr3_training_ip_bist.h │ │ │ │ ├── ddr3_training_ip_centralization.h │ │ │ │ ├── ddr3_training_ip_db.h │ │ │ │ ├── ddr3_training_ip_def.h │ │ │ │ ├── ddr3_training_ip_engine.c │ │ │ │ ├── ddr3_training_ip_engine.h │ │ │ │ ├── ddr3_training_ip_flow.h │ │ │ │ ├── ddr3_training_ip_pbs.h │ │ │ │ ├── ddr3_training_ip_prv_if.h │ │ │ │ ├── ddr3_training_ip_static.h │ │ │ │ ├── ddr3_training_leveling.c │ │ │ │ ├── ddr3_training_leveling.h │ │ │ │ ├── ddr3_training_pbs.c │ │ │ │ ├── ddr3_training_static.c │ │ │ │ ├── ddr_topology_def.h │ │ │ │ ├── ddr_training_ip_db.h │ │ │ │ ├── glue_symbol_renames.h │ │ │ │ ├── silicon_if.h │ │ │ │ └── xor.h │ │ │ ├── xor.c │ │ │ ├── xor.h │ │ │ └── xor_regs.h │ │ └── axp │ │ │ ├── Makefile │ │ │ ├── ddr3_axp.h │ │ │ ├── ddr3_axp_config.h │ │ │ ├── ddr3_axp_mc_static.h │ │ │ ├── ddr3_axp_training_static.h │ │ │ ├── ddr3_axp_vars.h │ │ │ ├── ddr3_dfs.c │ │ │ ├── ddr3_dqs.c │ │ │ ├── ddr3_hw_training.c │ │ │ ├── ddr3_hw_training.h │ │ │ ├── ddr3_init.c │ │ │ ├── ddr3_init.h │ │ │ ├── ddr3_patterns_64bit.h │ │ │ ├── ddr3_pbs.c │ │ │ ├── ddr3_read_leveling.c │ │ │ ├── ddr3_sdram.c │ │ │ ├── ddr3_spd.c │ │ │ ├── ddr3_write_leveling.c │ │ │ ├── xor.c │ │ │ ├── xor.h │ │ │ └── xor_regs.h │ └── microchip │ │ ├── Makefile │ │ ├── ddr2.c │ │ ├── ddr2_regs.h │ │ └── ddr2_timing.h ├── demo │ ├── Kconfig │ ├── Makefile │ ├── demo-pdata.c │ ├── demo-shape.c │ ├── demo-simple.c │ └── demo-uclass.c ├── dfu │ ├── Kconfig │ ├── Makefile │ ├── dfu.c │ ├── dfu_alt.c │ ├── dfu_mmc.c │ ├── dfu_mtd.c │ ├── dfu_nand.c │ ├── dfu_ram.c │ ├── dfu_scsi.c │ ├── dfu_sf.c │ └── dfu_virt.c ├── dma │ ├── Kconfig │ ├── Makefile │ ├── adi_dma.c │ ├── apbh_dma.c │ ├── bcm6348-iudma.c │ ├── dma-uclass.c │ ├── fsl_dma.c │ ├── keystone_nav.c │ ├── keystone_nav_cfg.c │ ├── sandbox-dma-test.c │ ├── ti-edma3.c │ ├── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── k3-psil-am62.c │ │ ├── k3-psil-am62a.c │ │ ├── k3-psil-am62p.c │ │ ├── k3-psil-am64.c │ │ ├── k3-psil-am654.c │ │ ├── k3-psil-j721e.c │ │ ├── k3-psil-j721s2.c │ │ ├── k3-psil-j784s4.c │ │ ├── k3-psil-priv.h │ │ ├── k3-psil.c │ │ ├── k3-psil.h │ │ ├── k3-udma-hwdef.h │ │ ├── k3-udma-u-boot.c │ │ └── k3-udma.c │ └── xilinx_dpdma.c ├── extcon │ ├── Kconfig │ ├── Makefile │ ├── extcon-max14526.c │ ├── extcon-sandbox.c │ └── extcon-uclass.c ├── fastboot │ ├── Kconfig │ ├── Makefile │ ├── fb_command.c │ ├── fb_common.c │ ├── fb_getvar.c │ ├── fb_mmc.c │ └── fb_nand.c ├── firmware │ ├── Kconfig │ ├── Makefile │ ├── arm-ffa │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arm-ffa-uclass.c │ │ ├── arm-ffa.c │ │ ├── ffa-emul-uclass.c │ │ └── sandbox_ffa.c │ ├── firmware-sandbox.c │ ├── firmware-uclass.c │ ├── firmware-zynqmp.c │ ├── psci.c │ ├── scmi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── base.c │ │ ├── mailbox_agent.c │ │ ├── optee_agent.c │ │ ├── pwdom.c │ │ ├── sandbox-scmi_agent.c │ │ ├── sandbox-scmi_devices.c │ │ ├── scmi_agent-uclass.c │ │ ├── smccc_agent.c │ │ ├── smt.c │ │ └── smt.h │ ├── ti_sci.c │ ├── ti_sci.h │ └── ti_sci_static_data.h ├── fpga │ ├── ACEX1K.c │ ├── Kconfig │ ├── Makefile │ ├── altera.c │ ├── cyclon2.c │ ├── fpga-uclass.c │ ├── fpga.c │ ├── intel_sdm_mb.c │ ├── ivm_core.c │ ├── lattice.c │ ├── sandbox.c │ ├── socfpga.c │ ├── socfpga_arria10.c │ ├── socfpga_gen5.c │ ├── spartan2.c │ ├── spartan3.c │ ├── stratixII.c │ ├── stratixv.c │ ├── versalpl.c │ ├── virtex2.c │ ├── xilinx.c │ ├── zynqmppl.c │ └── zynqpl.c ├── fuzz │ ├── Kconfig │ ├── Makefile │ ├── fuzzing_engine-uclass.c │ └── sandbox_fuzzing_engine.c ├── fwu-mdata │ ├── Kconfig │ ├── Makefile │ ├── fwu-mdata-uclass.c │ ├── gpt_blk.c │ └── raw_mtd.c ├── gpio │ ├── 74x164_gpio.c │ ├── Kconfig │ ├── Makefile │ ├── adp5585_gpio.c │ ├── adp5588_gpio.c │ ├── altera_pio.c │ ├── at91_gpio.c │ ├── atmel_pio4.c │ ├── axp_gpio.c │ ├── bcm2835_gpio.c │ ├── bcm6345_gpio.c │ ├── cortina_gpio.c │ ├── da8xx_gpio.c │ ├── da8xx_gpio.h │ ├── dwapb_gpio.c │ ├── ftgpio010.c │ ├── gpio-adi-adsp.c │ ├── gpio-aspeed-g7.c │ ├── gpio-aspeed-sgpio.c │ ├── gpio-aspeed.c │ ├── gpio-fxl6408.c │ ├── gpio-rcar.c │ ├── gpio-rza1.c │ ├── gpio-uclass.c │ ├── gpio-uniphier.c │ ├── gpio_slg7xl45106.c │ ├── hi6220_gpio.c │ ├── hsdk-creg-gpio.c │ ├── imx_rgpio2p.c │ ├── intel_broadwell_gpio.c │ ├── intel_gpio.c │ ├── intel_ich6_gpio.c │ ├── iproc_gpio.c │ ├── kw_gpio.c │ ├── lpc32xx_gpio.c │ ├── max7320_gpio.c │ ├── max77663_gpio.c │ ├── mcp230xx_gpio.c │ ├── mpc83xx_spisel_boot.c │ ├── mpc8xx_gpio.c │ ├── mpc8xxx_gpio.c │ ├── mscc_sgpio.c │ ├── msm_gpio.c │ ├── mt7620_gpio.c │ ├── mt7621_gpio.c │ ├── mvebu_gpio.c │ ├── mxc_gpio.c │ ├── mxs_gpio.c │ ├── nmk_gpio.c │ ├── npcm_gpio.c │ ├── npcm_sgpio.c │ ├── nx_gpio.c │ ├── octeon_gpio.c │ ├── omap_gpio.c │ ├── palmas_gpio.c │ ├── pca953x.c │ ├── pca953x_gpio.c │ ├── pcf8575_gpio.c │ ├── pic32_gpio.c │ ├── qcom_pmic_gpio.c │ ├── qe_gpio.c │ ├── rk_gpio.c │ ├── rzg2l-gpio.c │ ├── s5p_gpio.c │ ├── sandbox.c │ ├── sandbox_test.c │ ├── sh_pfc.c │ ├── sifive-gpio.c │ ├── sl28cpld-gpio.c │ ├── stm32_gpio.c │ ├── stm32_gpio_priv.h │ ├── sunxi_gpio.c │ ├── tegra186_gpio.c │ ├── tegra186_gpio_priv.h │ ├── tegra_gpio.c │ ├── vybrid_gpio.c │ ├── xilinx_gpio.c │ ├── zynq_gpio.c │ └── zynqmp_gpio_modepin.c ├── hwspinlock │ ├── Kconfig │ ├── Makefile │ ├── hwspinlock-uclass.c │ ├── sandbox_hwspinlock.c │ └── stm32_hwspinlock.c ├── i2c │ ├── Kconfig │ ├── Makefile │ ├── acpi_i2c.c │ ├── acpi_i2c.h │ ├── adi_i2c.c │ ├── ast2600_i2c.c │ ├── ast2600_i2c.h │ ├── ast_i2c.c │ ├── ast_i2c.h │ ├── at91_i2c.c │ ├── at91_i2c.h │ ├── cros_ec_ldo.c │ ├── cros_ec_tunnel.c │ ├── davinci_i2c.c │ ├── davinci_i2c.h │ ├── designware_i2c.c │ ├── designware_i2c.h │ ├── designware_i2c_pci.c │ ├── exynos_hs_i2c.c │ ├── fsl_i2c.c │ ├── geni_i2c.c │ ├── i2c-cdns.c │ ├── i2c-cortina.c │ ├── i2c-cortina.h │ ├── i2c-emul-uclass.c │ ├── i2c-gpio.c │ ├── i2c-microchip.c │ ├── i2c-uclass.c │ ├── i2c-uniphier-f.c │ ├── i2c-uniphier.c │ ├── i2c-versatile.c │ ├── i2c_core.c │ ├── ihs_i2c.c │ ├── imx_lpi2c.c │ ├── intel_i2c.c │ ├── iproc_i2c.c │ ├── iproc_i2c.h │ ├── lpc32xx_i2c.c │ ├── meson_i2c.c │ ├── mtk_i2c.c │ ├── muxes │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── i2c-arb-gpio-challenge.c │ │ ├── i2c-mux-gpio.c │ │ ├── i2c-mux-uclass.c │ │ └── pca954x.c │ ├── mv_i2c.c │ ├── mv_i2c.h │ ├── mvtwsi.c │ ├── mxc_i2c.c │ ├── npcm_i2c.c │ ├── nx_i2c.c │ ├── ocores_i2c.c │ ├── octeon_i2c.c │ ├── omap24xx_i2c.c │ ├── omap24xx_i2c.h │ ├── qup_i2c.c │ ├── rcar_i2c.c │ ├── rcar_iic.c │ ├── rk_i2c.c │ ├── rz_riic.c │ ├── s3c24x0_i2c.c │ ├── s3c24x0_i2c.h │ ├── sandbox_i2c.c │ ├── sh_i2c.c │ ├── soft_i2c.c │ ├── stm32f7_i2c.c │ ├── sun6i_p2wi.c │ ├── sun8i_rsb.c │ ├── synquacer_i2c.c │ ├── tegra186_bpmp_i2c.c │ ├── tegra_i2c.c │ └── xilinx_xiic.c ├── input │ ├── Kconfig │ ├── Makefile │ ├── apple_spi_kbd.c │ ├── button_kbd.c │ ├── cpcap_pwrbutton.c │ ├── cros_ec_keyb.c │ ├── i8042.c │ ├── input.c │ ├── key_matrix.c │ ├── keyboard-uclass.c │ ├── tegra-kbc.c │ └── twl4030.c ├── iommu │ ├── Kconfig │ ├── Makefile │ ├── apple_dart.c │ ├── iommu-uclass.c │ ├── qcom-hyp-smmu.c │ └── sandbox_iommu.c ├── led │ ├── Kconfig │ ├── Makefile │ ├── led-uclass.c │ ├── led_bcm6328.c │ ├── led_bcm6358.c │ ├── led_bcm6753.c │ ├── led_bcm6858.c │ ├── led_cortina.c │ ├── led_gpio.c │ ├── led_lp5562.c │ ├── led_pwm.c │ └── led_sw_blink.c ├── mailbox │ ├── Kconfig │ ├── Makefile │ ├── apple-mbox.c │ ├── imx-mailbox.c │ ├── k3-sec-proxy.c │ ├── mailbox-uclass.c │ ├── sandbox-mbox-test.c │ ├── sandbox-mbox.c │ ├── stm32-ipcc.c │ ├── tegra-hsp.c │ └── zynqmp-ipi.c ├── memory │ ├── Kconfig │ ├── Makefile │ ├── atmel_ebi.c │ ├── memory-sandbox.c │ ├── memory-uclass.c │ ├── stm32-fmc2-ebi.c │ ├── ti-aemif-cs.c │ ├── ti-aemif-cs.h │ ├── ti-aemif.c │ ├── ti-gpmc.c │ └── ti-gpmc.h ├── mfd │ ├── Kconfig │ ├── Makefile │ └── atmel-smc.c ├── misc │ ├── Kconfig │ ├── Makefile │ ├── altera_sysid.c │ ├── atsha204a-i2c.c │ ├── cbmem_console.c │ ├── cros_ec.c │ ├── cros_ec_i2c.c │ ├── cros_ec_lpc.c │ ├── cros_ec_sandbox.c │ ├── cros_ec_spi.c │ ├── ds4510.c │ ├── ds4510.h │ ├── esm_pmic.c │ ├── fs_loader.c │ ├── fsl_devdis.c │ ├── fsl_ifc.c │ ├── fsl_iim.c │ ├── fsl_portals.c │ ├── fsl_sec_mon.c │ ├── gdsys_ioep.c │ ├── gdsys_ioep.h │ ├── gdsys_rxaui_ctrl.c │ ├── gdsys_soc.c │ ├── gdsys_soc.h │ ├── gpio_led.c │ ├── gsc.c │ ├── i2c_eeprom.c │ ├── i2c_eeprom_emul.c │ ├── ihs_fpga.c │ ├── ihs_fpga.h │ ├── imx8 │ │ ├── Makefile │ │ ├── fuse.c │ │ ├── scu.c │ │ └── scu_api.c │ ├── imx_ele │ │ ├── Makefile │ │ ├── ele_api.c │ │ ├── ele_mu.c │ │ └── fuse.c │ ├── irq-uclass.c │ ├── irq_sandbox.c │ ├── irq_sandbox_test.c │ ├── jz4780_efuse.c │ ├── k3_avs.c │ ├── k3_esm.c │ ├── k3_fuse.c │ ├── ls2_sfp.c │ ├── microchip_flexcom.c │ ├── misc-uclass.c │ ├── misc_sandbox.c │ ├── mpc83xx_serdes.c │ ├── mpc83xx_serdes.h │ ├── mxc_ocotp.c │ ├── mxs_ocotp.c │ ├── npcm_host_intf.c │ ├── npcm_otp.c │ ├── nuvoton_nct6102d.c │ ├── nvmem.c │ ├── p2sb-uclass.c │ ├── p2sb_emul.c │ ├── p2sb_sandbox.c │ ├── pca9551_led.c │ ├── pwrseq-uclass.c │ ├── qfw.c │ ├── qfw_acpi.c │ ├── qfw_mmio.c │ ├── qfw_pio.c │ ├── qfw_sandbox.c │ ├── qfw_smbios.c │ ├── rockchip-efuse.c │ ├── rockchip-io-domain.c │ ├── rockchip-otp.c │ ├── sandbox_adder.c │ ├── sifive-otp.c │ ├── sl28cpld.c │ ├── smsc_lpc47m.c │ ├── smsc_sio1007.c │ ├── socfpga_dtreg.c │ ├── spltest_sandbox.c │ ├── status_led.c │ ├── stm32_rcc.c │ ├── stm32mp_fuse.c │ ├── swap_case.c │ ├── syscon_sandbox.c │ ├── tegra186_bpmp.c │ ├── tegra_car.c │ ├── test_drv.c │ ├── turris_omnia_mcu.c │ ├── twl4030_led.c │ ├── usb251xb.c │ ├── vexpress_config.c │ └── winbond_w83627.c ├── mmc │ ├── Kconfig │ ├── Makefile │ ├── adi_sdhci.c │ ├── am654_sdhci.c │ ├── arm_pl180_mmci.c │ ├── arm_pl180_mmci.h │ ├── aspeed_sdhci.c │ ├── atmel_sdhci.c │ ├── bcm2835_sdhci.c │ ├── bcm2835_sdhost.c │ ├── bcmstb_sdhci.c │ ├── ca_dw_mmc.c │ ├── cv1800b_sdhci.c │ ├── davinci_mmc.c │ ├── dw_mmc.c │ ├── exynos_dw_mmc.c │ ├── f_sdh30.c │ ├── fsl_esdhc.c │ ├── fsl_esdhc_imx.c │ ├── fsl_esdhc_spl.c │ ├── ftsdc010_mci.c │ ├── ftsdc010_mci.h │ ├── gen_atmel_mci.c │ ├── hi6220_dw_mmc.c │ ├── iproc_sdhci.c │ ├── jz_mmc.c │ ├── kona_sdhci.c │ ├── meson_gx_mmc.c │ ├── meson_gx_mmc.h │ ├── mmc-pwrseq.c │ ├── mmc-uclass.c │ ├── mmc.c │ ├── mmc_boot.c │ ├── mmc_bootdev.c │ ├── mmc_legacy.c │ ├── mmc_private.h │ ├── mmc_spi.c │ ├── mmc_write.c │ ├── msm_sdhci.c │ ├── mtk-sd.c │ ├── mv_sdhci.c │ ├── mvebu_mmc.c │ ├── mxcmmc.c │ ├── mxsmmc.c │ ├── nexell_dw_mmc.c │ ├── npcm_sdhci.c │ ├── octeontx_hsmmc.c │ ├── octeontx_hsmmc.h │ ├── omap_hsmmc.c │ ├── owl_mmc.c │ ├── pci_mmc.c │ ├── pic32_sdhci.c │ ├── piton_mmc.c │ ├── renesas-sdhi.c │ ├── rockchip_dw_mmc.c │ ├── rockchip_sdhci.c │ ├── rpmb.c │ ├── s5p_sdhci.c │ ├── sandbox_mmc.c │ ├── sdhci-adma.c │ ├── sdhci-cadence.c │ ├── sdhci-cadence.h │ ├── sdhci-cadence6.c │ ├── sdhci.c │ ├── sh_mmcif.c │ ├── sh_mmcif.h │ ├── snps_dw_mmc.c │ ├── snps_sdhci.c │ ├── socfpga_dw_mmc.c │ ├── sti_sdhci.c │ ├── stm32_sdmmc2.c │ ├── sunxi_mmc.c │ ├── sunxi_mmc.h │ ├── tangier_sdhci.c │ ├── tegra_mmc.c │ ├── tmio-common.c │ ├── tmio-common.h │ ├── uniphier-sd.c │ ├── xenon_sdhci.c │ └── zynq_sdhci.c ├── mtd │ ├── Kconfig │ ├── Makefile │ ├── altera_qspi.c │ ├── cfi_flash.c │ ├── cfi_mtd.c │ ├── hbmc-am654.c │ ├── jedec_flash.c │ ├── mtd-uclass.c │ ├── mtd_uboot.c │ ├── mtdblock.c │ ├── mtdconcat.c │ ├── mtdcore.c │ ├── mtdcore.h │ ├── mtdpart.c │ ├── mtk-snand │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mtk-snand-def.h │ │ ├── mtk-snand-ecc.c │ │ ├── mtk-snand-ids.c │ │ ├── mtk-snand-mtd.c │ │ ├── mtk-snand-os.c │ │ ├── mtk-snand-os.h │ │ ├── mtk-snand-spl.c │ │ ├── mtk-snand.c │ │ └── mtk-snand.h │ ├── nand │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bbt.c │ │ ├── core.c │ │ ├── raw │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am335x_spl_bch.c │ │ │ ├── arasan_nfc.c │ │ │ ├── atmel │ │ │ │ ├── Makefile │ │ │ │ ├── nand-controller.c │ │ │ │ ├── pmecc.c │ │ │ │ └── pmecc.h │ │ │ ├── atmel_nand.c │ │ │ ├── atmel_nand_ecc.h │ │ │ ├── brcmnand │ │ │ │ ├── Makefile │ │ │ │ ├── bcm6368_nand.c │ │ │ │ ├── bcm6838_nand.c │ │ │ │ ├── bcmbca_nand.c │ │ │ │ ├── brcmnand.c │ │ │ │ ├── brcmnand.h │ │ │ │ ├── brcmnand_compat.c │ │ │ │ ├── brcmnand_compat.h │ │ │ │ └── iproc_nand.c │ │ │ ├── cadence_nand.c │ │ │ ├── cadence_spl.c │ │ │ ├── cortina_nand.c │ │ │ ├── cortina_nand.h │ │ │ ├── davinci_nand.c │ │ │ ├── denali.c │ │ │ ├── denali.h │ │ │ ├── denali_dt.c │ │ │ ├── denali_spl.c │ │ │ ├── fsl_elbc_nand.c │ │ │ ├── fsl_elbc_spl.c │ │ │ ├── fsl_ifc_nand.c │ │ │ ├── fsl_ifc_spl.c │ │ │ ├── kirkwood_nand.c │ │ │ ├── kmeter1_nand.c │ │ │ ├── lpc32xx_nand_mlc.c │ │ │ ├── lpc32xx_nand_slc.c │ │ │ ├── meson_nand.c │ │ │ ├── mt7621_nand.c │ │ │ ├── mt7621_nand.h │ │ │ ├── mt7621_nand_spl.c │ │ │ ├── mxc_nand.c │ │ │ ├── mxc_nand.h │ │ │ ├── mxc_nand_spl.c │ │ │ ├── mxic_nand.c │ │ │ ├── mxs_nand.c │ │ │ ├── mxs_nand_dt.c │ │ │ ├── mxs_nand_spl.c │ │ │ ├── nand.c │ │ │ ├── nand_amd.c │ │ │ ├── nand_base.c │ │ │ ├── nand_bbt.c │ │ │ ├── nand_bch.c │ │ │ ├── nand_ecc.c │ │ │ ├── nand_hynix.c │ │ │ ├── nand_ids.c │ │ │ ├── nand_macronix.c │ │ │ ├── nand_micron.c │ │ │ ├── nand_samsung.c │ │ │ ├── nand_spl_load.c │ │ │ ├── nand_spl_loaders.c │ │ │ ├── nand_spl_simple.c │ │ │ ├── nand_timings.c │ │ │ ├── nand_toshiba.c │ │ │ ├── nand_util.c │ │ │ ├── octeontx_bch.c │ │ │ ├── octeontx_bch.h │ │ │ ├── octeontx_bch_regs.h │ │ │ ├── octeontx_nand.c │ │ │ ├── omap_elm.c │ │ │ ├── omap_elm.h │ │ │ ├── omap_gpmc.c │ │ │ ├── pxa3xx_nand.c │ │ │ ├── pxa3xx_nand.h │ │ │ ├── rockchip_nfc.c │ │ │ ├── sand_nand.c │ │ │ ├── stm32_fmc2_nand.c │ │ │ ├── sunxi_nand.c │ │ │ ├── sunxi_nand_spl.c │ │ │ ├── tegra_nand.c │ │ │ ├── tegra_nand.h │ │ │ ├── vf610_nfc.c │ │ │ └── zynq_nand.c │ │ └── spi │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── core.c │ │ │ ├── esmt.c │ │ │ ├── etron.c │ │ │ ├── fudanmicro.c │ │ │ ├── gigadevice.c │ │ │ ├── macronix.c │ │ │ ├── micron.c │ │ │ ├── paragon.c │ │ │ ├── toshiba.c │ │ │ ├── winbond.c │ │ │ └── xtx.c │ ├── nmbm │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── nmbm-core.c │ │ ├── nmbm-debug.h │ │ ├── nmbm-debug.inl │ │ ├── nmbm-mtd.c │ │ └── nmbm-private.h │ ├── nvmxip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── nvmxip-uclass.c │ │ ├── nvmxip.c │ │ └── nvmxip_qspi.c │ ├── onenand │ │ ├── Makefile │ │ ├── onenand_base.c │ │ ├── onenand_bbt.c │ │ ├── onenand_spl.c │ │ ├── onenand_uboot.c │ │ └── samsung.c │ ├── renesas_rpc_hf.c │ ├── spi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fsl_espi_spl.c │ │ ├── sandbox.c │ │ ├── sf-uclass.c │ │ ├── sf_bootdev.c │ │ ├── sf_dataflash.c │ │ ├── sf_internal.h │ │ ├── sf_mtd.c │ │ ├── sf_probe.c │ │ ├── spi-nor-core.c │ │ ├── spi-nor-ids.c │ │ └── spi-nor-tiny.c │ ├── stm32_flash.c │ ├── stm32_flash.h │ ├── ubi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── attach.c │ │ ├── block.c │ │ ├── build.c │ │ ├── crc32.c │ │ ├── crc32defs.h │ │ ├── crc32table.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── eba.c │ │ ├── fastmap-wl.c │ │ ├── fastmap.c │ │ ├── io.c │ │ ├── kapi.c │ │ ├── misc.c │ │ ├── part.c │ │ ├── ubi-media.h │ │ ├── ubi.h │ │ ├── upd.c │ │ ├── vmt.c │ │ ├── vtbl.c │ │ ├── wl.c │ │ └── wl.h │ └── ubispl │ │ ├── Makefile │ │ ├── ubi-wrapper.h │ │ ├── ubispl.c │ │ └── ubispl.h ├── mux │ ├── Kconfig │ ├── Makefile │ ├── mmio.c │ └── mux-uclass.c ├── net │ ├── Kconfig │ ├── Makefile │ ├── ag7xxx.c │ ├── airoha_eth.c │ ├── altera_tse.c │ ├── altera_tse.h │ ├── aspeed_mdio.c │ ├── bcm-sf2-eth-gmac.c │ ├── bcm-sf2-eth-gmac.h │ ├── bcm-sf2-eth.c │ ├── bcm-sf2-eth.h │ ├── bcm6348-eth.c │ ├── bcm6368-eth.c │ ├── bcmgenet.c │ ├── bnxt │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bnxt.c │ │ ├── bnxt.h │ │ ├── bnxt_dbg.h │ │ └── bnxt_hsi.h │ ├── calxedaxgmac.c │ ├── cortina_ni.c │ ├── cortina_ni.h │ ├── dc2114x.c │ ├── designware.c │ ├── designware.h │ ├── dm9000x.c │ ├── dm9000x.h │ ├── dsa_sandbox.c │ ├── dwc_eth_qos.c │ ├── dwc_eth_qos.h │ ├── dwc_eth_qos_adi.c │ ├── dwc_eth_qos_imx.c │ ├── dwc_eth_qos_intel.c │ ├── dwc_eth_qos_intel.h │ ├── dwc_eth_qos_qcom.c │ ├── dwc_eth_qos_rockchip.c │ ├── dwc_eth_qos_starfive.c │ ├── dwc_eth_qos_stm32.c │ ├── dwc_eth_xgmac.c │ ├── dwc_eth_xgmac.h │ ├── dwc_eth_xgmac_socfpga.c │ ├── dwmac_meson8b.c │ ├── dwmac_s700.c │ ├── dwmac_socfpga.c │ ├── e1000.c │ ├── e1000.h │ ├── e1000_spi.c │ ├── eepro100.c │ ├── essedma.c │ ├── essedma.h │ ├── eth-phy-uclass.c │ ├── ethoc.c │ ├── fec_mxc.c │ ├── fec_mxc.h │ ├── fm │ │ ├── Makefile │ │ ├── b4860.c │ │ ├── dtsec.c │ │ ├── eth.c │ │ ├── fdt.c │ │ ├── fm.c │ │ ├── fm.h │ │ ├── ls1043.c │ │ ├── ls1046.c │ │ ├── memac.c │ │ ├── memac_phy.c │ │ ├── p1023.c │ │ ├── p4080.c │ │ ├── p5020.c │ │ ├── p5040.c │ │ ├── t1024.c │ │ ├── t1040.c │ │ ├── t2080.c │ │ ├── t4240.c │ │ ├── tgec.c │ │ └── tgec_phy.c │ ├── fsl-mc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dpbp.c │ │ ├── dpio │ │ │ ├── Makefile │ │ │ ├── dpio.c │ │ │ ├── qbman_portal.c │ │ │ ├── qbman_portal.h │ │ │ ├── qbman_private.h │ │ │ └── qbman_sys.h │ │ ├── dpmac.c │ │ ├── dpmng.c │ │ ├── dpni.c │ │ ├── dprc.c │ │ ├── dpsparser.c │ │ ├── fsl_dpmng_cmd.h │ │ ├── mc.c │ │ └── mc_sys.c │ ├── fsl_enetc.c │ ├── fsl_enetc.h │ ├── fsl_enetc_mdio.c │ ├── fsl_enetc_netc_blk_ctrl.c │ ├── fsl_ls_mdio.c │ ├── fsl_mdio.c │ ├── ftgmac100.c │ ├── ftgmac100.h │ ├── ftmac100.c │ ├── ftmac100.h │ ├── gmac_rockchip.c │ ├── hifemac.c │ ├── hifemac_mdio.c │ ├── higmacv300.c │ ├── ks8851_mll.c │ ├── ks8851_mll.h │ ├── ksz9477.c │ ├── ldpaa_eth │ │ ├── Makefile │ │ ├── ldpaa_eth.c │ │ ├── ldpaa_eth.h │ │ ├── ldpaa_wriop.c │ │ ├── ls1088a.c │ │ ├── ls2080a.c │ │ └── lx2160a.c │ ├── liteeth.c │ ├── macb.c │ ├── macb.h │ ├── mcffec.c │ ├── mcfmii.c │ ├── mdio-ipq4019.c │ ├── mdio_gpio.c │ ├── mdio_mux_i2creg.c │ ├── mdio_mux_meson_g12a.c │ ├── mdio_mux_meson_gxl.c │ ├── mdio_mux_mmioreg.c │ ├── mdio_mux_sandbox.c │ ├── mdio_sandbox.c │ ├── mpc8xx_fec.c │ ├── mscc_eswitch │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── felix_switch.c │ │ ├── jr2_switch.c │ │ ├── luton_switch.c │ │ ├── mscc_mac_table.c │ │ ├── mscc_mac_table.h │ │ ├── mscc_miim.c │ │ ├── mscc_miim.h │ │ ├── mscc_xfer.c │ │ ├── mscc_xfer.h │ │ ├── ocelot_switch.c │ │ ├── serval_switch.c │ │ └── servalt_switch.c │ ├── mt7620-eth.c │ ├── mt7628-eth.c │ ├── mtk_eth │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── an8855.c │ │ ├── mt7530.c │ │ ├── mt7531.c │ │ ├── mt753x.c │ │ ├── mt753x.h │ │ ├── mt7988.c │ │ ├── mtk_eth.c │ │ └── mtk_eth.h │ ├── mv88e6xxx.c │ ├── mvgbe.c │ ├── mvgbe.h │ ├── mvmdio.c │ ├── mvneta.c │ ├── mvpp2.c │ ├── netconsole.c │ ├── npcm750_eth.c │ ├── octeon │ │ ├── Makefile │ │ ├── octeon_eth.c │ │ └── octeon_mdio.c │ ├── octeontx │ │ ├── Makefile │ │ ├── bgx.c │ │ ├── bgx.h │ │ ├── nic.h │ │ ├── nic_main.c │ │ ├── nic_reg.h │ │ ├── nicvf_main.c │ │ ├── nicvf_queues.c │ │ ├── nicvf_queues.h │ │ ├── q_struct.h │ │ ├── smi.c │ │ └── xcv.c │ ├── octeontx2 │ │ ├── Makefile │ │ ├── cgx.c │ │ ├── cgx.h │ │ ├── cgx_intf.c │ │ ├── cgx_intf.h │ │ ├── lmt.h │ │ ├── nix.c │ │ ├── nix.h │ │ ├── nix_af.c │ │ ├── npc.h │ │ ├── rvu.h │ │ ├── rvu_af.c │ │ ├── rvu_common.c │ │ └── rvu_pf.c │ ├── pch_gbe.c │ ├── pch_gbe.h │ ├── pcnet.c │ ├── pfe_eth │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pfe_cmd.c │ │ ├── pfe_driver.c │ │ ├── pfe_eth.c │ │ ├── pfe_firmware.c │ │ ├── pfe_hw.c │ │ └── pfe_mdio.c │ ├── phy │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── adin.c │ │ ├── air_en8801s.c │ │ ├── air_en8801s.h │ │ ├── air_en8811h.c │ │ ├── air_en8811h.h │ │ ├── air_en8811h_fw.h │ │ ├── an8801.c │ │ ├── an8801.h │ │ ├── aquantia.c │ │ ├── aquantia_fw.h │ │ ├── atheros.c │ │ ├── b53.c │ │ ├── broadcom.c │ │ ├── ca_phy.c │ │ ├── cortina.c │ │ ├── davicom.c │ │ ├── dp83867.c │ │ ├── dp83869.c │ │ ├── et1011c.c │ │ ├── ethernet_id.c │ │ ├── fixed.c │ │ ├── generic_10g.c │ │ ├── intel_xway.c │ │ ├── lxt.c │ │ ├── marvell.c │ │ ├── marvell10g.c │ │ ├── mediatek │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── mt7987_i2p5ge_phy_DSPBitTb.h │ │ │ ├── mt7987_i2p5ge_phy_pmb.h │ │ │ ├── mt7988_i2p5ge_phy_pmb.h │ │ │ ├── mtk-2p5ge.c │ │ │ ├── mtk-phy-lib.c │ │ │ └── mtk.h │ │ ├── meson-gxl.c │ │ ├── micrel_ksz8xxx.c │ │ ├── micrel_ksz90x1.c │ │ ├── miiphybb.c │ │ ├── motorcomm.c │ │ ├── mscc.c │ │ ├── mv88e61xx.c │ │ ├── mv88e6352.c │ │ ├── natsemi.c │ │ ├── ncsi.c │ │ ├── nxp-c45-tja11xx.c │ │ ├── nxp-tja11xx.c │ │ ├── phy.c │ │ ├── realtek.c │ │ ├── smsc.c │ │ ├── teranetics.c │ │ ├── ti_phy_init.c │ │ ├── ti_phy_init.h │ │ ├── vitesse.c │ │ ├── xilinx_gmii2rgmii.c │ │ └── xilinx_phy.c │ ├── pic32_eth.c │ ├── pic32_eth.h │ ├── pic32_mdio.c │ ├── qe │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dm_qe_uec.c │ │ ├── dm_qe_uec.h │ │ ├── dm_qe_uec_phy.c │ │ ├── uccf.c │ │ ├── uccf.h │ │ └── uec.h │ ├── ravb.c │ ├── rswitch.c │ ├── rtl8139.c │ ├── rtl8169.c │ ├── sandbox-raw-bus.c │ ├── sandbox-raw.c │ ├── sandbox.c │ ├── sh_eth.c │ ├── sh_eth.h │ ├── sja1105.c │ ├── smc911x.c │ ├── smc911x.h │ ├── sni_ave.c │ ├── sni_netsec.c │ ├── sun8i_emac.c │ ├── sunxi_emac.c │ ├── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am65-cpsw-nuss.c │ │ ├── cpsw-common.c │ │ ├── cpsw.c │ │ ├── cpsw_mdio.c │ │ ├── cpsw_mdio.h │ │ ├── davinci_emac.c │ │ ├── davinci_emac.h │ │ ├── icss_mii_rt.h │ │ ├── icssg_classifier.c │ │ ├── icssg_config.c │ │ ├── icssg_config.h │ │ ├── icssg_prueth.c │ │ ├── icssg_prueth.h │ │ ├── icssg_queues.c │ │ ├── icssg_switch_map.h │ │ └── keystone_net.c │ ├── tsec.c │ ├── vsc7385.c │ ├── xilinx_axi_emac.c │ ├── xilinx_axi_mrmac.c │ ├── xilinx_axi_mrmac.h │ ├── xilinx_emaclite.c │ └── zynq_gem.c ├── nvme │ ├── Kconfig │ ├── Makefile │ ├── nvme-uclass.c │ ├── nvme.c │ ├── nvme.h │ ├── nvme_apple.c │ ├── nvme_pci.c │ └── nvme_show.c ├── pch │ ├── Kconfig │ ├── Makefile │ ├── pch-uclass.c │ ├── pch7.c │ ├── pch9.c │ └── sandbox_pch.c ├── pci │ ├── Kconfig │ ├── Makefile │ ├── pci-aardvark.c │ ├── pci-emul-uclass.c │ ├── pci-rcar-gen2.c │ ├── pci-rcar-gen3.c │ ├── pci-rcar-gen4.c │ ├── pci-uclass.c │ ├── pci_auto.c │ ├── pci_auto_common.c │ ├── pci_common.c │ ├── pci_compat.c │ ├── pci_ftpci100.c │ ├── pci_gt64120.c │ ├── pci_internal.h │ ├── pci_mpc85xx.c │ ├── pci_msc01.c │ ├── pci_mvebu.c │ ├── pci_octeontx.c │ ├── pci_rom.c │ ├── pci_sandbox.c │ ├── pci_sh7751.c │ ├── pci_tegra.c │ ├── pci_x86.c │ ├── pcie-xilinx-nwl.c │ ├── pcie_apple.c │ ├── pcie_brcmstb.c │ ├── pcie_cdns_ti.c │ ├── pcie_dw_common.c │ ├── pcie_dw_common.h │ ├── pcie_dw_imx.c │ ├── pcie_dw_meson.c │ ├── pcie_dw_mvebu.c │ ├── pcie_dw_qcom.c │ ├── pcie_dw_rockchip.c │ ├── pcie_dw_sifive.c │ ├── pcie_dw_ti.c │ ├── pcie_ecam_generic.c │ ├── pcie_ecam_synquacer.c │ ├── pcie_fsl.c │ ├── pcie_fsl.h │ ├── pcie_fsl_fixup.c │ ├── pcie_imx.c │ ├── pcie_intel_fpga.c │ ├── pcie_iproc.c │ ├── pcie_layerscape.c │ ├── pcie_layerscape.h │ ├── pcie_layerscape_ep.c │ ├── pcie_layerscape_fixup.c │ ├── pcie_layerscape_fixup_common.c │ ├── pcie_layerscape_fixup_common.h │ ├── pcie_layerscape_gen4.c │ ├── pcie_layerscape_gen4.h │ ├── pcie_layerscape_gen4_fixup.c │ ├── pcie_layerscape_rc.c │ ├── pcie_mediatek.c │ ├── pcie_mediatek_gen3.c │ ├── pcie_octeon.c │ ├── pcie_phytium.c │ ├── pcie_plda_common.c │ ├── pcie_plda_common.h │ ├── pcie_rockchip.c │ ├── pcie_starfive_jh7110.c │ ├── pcie_uniphier.c │ └── pcie_xilinx.c ├── pci_endpoint │ ├── Kconfig │ ├── Makefile │ ├── pci_ep-uclass.c │ ├── pcie-cadence-ep.c │ ├── pcie-cadence.h │ ├── pcie_cdns_ti_ep.c │ └── sandbox-pci_ep.c ├── phy │ ├── Kconfig │ ├── Makefile │ ├── allwinner │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── phy-sun4i-usb.c │ │ └── phy-sun50i-usb3.c │ ├── bcm6318-usbh-phy.c │ ├── bcm6348-usbh-phy.c │ ├── bcm6358-usbh-phy.c │ ├── bcm6368-usbh-phy.c │ ├── cadence │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── phy-cadence-sierra.c │ │ └── phy-cadence-torrent.c │ ├── keystone-usb-phy.c │ ├── marvell │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── comphy_a3700.c │ │ ├── comphy_a3700.h │ │ ├── comphy_core.c │ │ ├── comphy_core.h │ │ ├── comphy_cp110.c │ │ ├── comphy_mux.c │ │ ├── sata.h │ │ └── utmi_phy.h │ ├── meson-axg-mipi-dphy.c │ ├── meson-axg-mipi-pcie-analog.c │ ├── meson-g12a-usb2.c │ ├── meson-g12a-usb3-pcie.c │ ├── meson-gxbb-usb2.c │ ├── meson-gxl-usb2.c │ ├── mt7620-usb-phy.c │ ├── mt76x8-usb-phy.c │ ├── nop-phy.c │ ├── omap-usb2-phy.c │ ├── phy-ab8500-usb.c │ ├── phy-apple-atc.c │ ├── phy-bcm-sr-pcie.c │ ├── phy-core-mipi-dphy.c │ ├── phy-da8xx-usb.c │ ├── phy-imx8m-pcie.c │ ├── phy-imx8mq-usb.c │ ├── phy-mtk-tphy.c │ ├── phy-npcm-usb.c │ ├── phy-rcar-gen2.c │ ├── phy-rcar-gen3.c │ ├── phy-stm32-usbphyc.c │ ├── phy-ti-am654.c │ ├── phy-uclass.c │ ├── phy-zynqmp.c │ ├── qcom │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── msm8916-usbh-phy.c │ │ ├── phy-qcom-ipq4019-usb.c │ │ ├── phy-qcom-qmp-pcie-qhp.h │ │ ├── phy-qcom-qmp-pcie.c │ │ ├── phy-qcom-qmp-pcs-misc-v3.h │ │ ├── phy-qcom-qmp-pcs-pcie-v4.h │ │ ├── phy-qcom-qmp-pcs-pcie-v4_20.h │ │ ├── phy-qcom-qmp-pcs-pcie-v5.h │ │ ├── phy-qcom-qmp-pcs-pcie-v5_20.h │ │ ├── phy-qcom-qmp-pcs-pcie-v6.h │ │ ├── phy-qcom-qmp-pcs-pcie-v6_20.h │ │ ├── phy-qcom-qmp-pcs-ufs-v2.h │ │ ├── phy-qcom-qmp-pcs-ufs-v3.h │ │ ├── phy-qcom-qmp-pcs-ufs-v4.h │ │ ├── phy-qcom-qmp-pcs-ufs-v5.h │ │ ├── phy-qcom-qmp-pcs-ufs-v6.h │ │ ├── phy-qcom-qmp-pcs-v2.h │ │ ├── phy-qcom-qmp-pcs-v3.h │ │ ├── phy-qcom-qmp-pcs-v4.h │ │ ├── phy-qcom-qmp-pcs-v5.h │ │ ├── phy-qcom-qmp-pcs-v6.h │ │ ├── phy-qcom-qmp-pcs-v6_20.h │ │ ├── phy-qcom-qmp-qserdes-com-v3.h │ │ ├── phy-qcom-qmp-qserdes-com-v4.h │ │ ├── phy-qcom-qmp-qserdes-com-v5.h │ │ ├── phy-qcom-qmp-qserdes-com-v6.h │ │ ├── phy-qcom-qmp-qserdes-com.h │ │ ├── phy-qcom-qmp-qserdes-ln-shrd-v6.h │ │ ├── phy-qcom-qmp-qserdes-pll.h │ │ ├── phy-qcom-qmp-qserdes-txrx-ufs-v6.h │ │ ├── phy-qcom-qmp-qserdes-txrx-v3.h │ │ ├── phy-qcom-qmp-qserdes-txrx-v4.h │ │ ├── phy-qcom-qmp-qserdes-txrx-v5.h │ │ ├── phy-qcom-qmp-qserdes-txrx-v6.h │ │ ├── phy-qcom-qmp-qserdes-txrx-v6_20.h │ │ ├── phy-qcom-qmp-qserdes-txrx.h │ │ ├── phy-qcom-qmp-ufs.c │ │ ├── phy-qcom-qmp.h │ │ ├── phy-qcom-qusb2.c │ │ ├── phy-qcom-snps-eusb2.c │ │ ├── phy-qcom-snps-femto-v2.c │ │ ├── phy-qcom-usb-hs-28nm.c │ │ └── phy-qcom-usb-ss.c │ ├── renesas │ │ ├── Kconfig │ │ ├── Makefile │ │ └── r8a779f0-ether-serdes.c │ ├── rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── phy-rockchip-inno-dsidphy.c │ │ ├── phy-rockchip-inno-hdmi.c │ │ ├── phy-rockchip-inno-usb2.c │ │ ├── phy-rockchip-naneng-combphy.c │ │ ├── phy-rockchip-pcie.c │ │ ├── phy-rockchip-snps-pcie3.c │ │ ├── phy-rockchip-typec.c │ │ └── phy-rockchip-usbdp.c │ ├── sandbox-phy.c │ ├── socionext │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── phy-uniphier-pcie.c │ │ └── phy-uniphier-usb3.c │ ├── starfive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── phy-jh7110-pcie.c │ │ ├── phy-jh7110-usb-syscon.h │ │ └── phy-jh7110-usb2.c │ ├── sti_usb_phy.c │ ├── ti-pipe3-phy.c │ └── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ └── phy-j721e-wiz.c ├── pinctrl │ ├── Kconfig │ ├── Makefile │ ├── aspeed │ │ ├── Makefile │ │ ├── pinctrl_ast2500.c │ │ └── pinctrl_ast2600.c │ ├── ath79 │ │ ├── Makefile │ │ ├── pinctrl_ar933x.c │ │ └── pinctrl_qca953x.c │ ├── broadcom │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-bcm283x.c │ │ └── pinctrl-bcm6838.c │ ├── exynos │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-exynos.c │ │ ├── pinctrl-exynos.h │ │ ├── pinctrl-exynos7420.c │ │ ├── pinctrl-exynos78x0.c │ │ └── pinctrl-exynos850.c │ ├── intel │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl.c │ │ └── pinctrl_apl.c │ ├── mediatek │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-mt7622.c │ │ ├── pinctrl-mt7623.c │ │ ├── pinctrl-mt7629.c │ │ ├── pinctrl-mt7981.c │ │ ├── pinctrl-mt7986.c │ │ ├── pinctrl-mt7987.c │ │ ├── pinctrl-mt7988.c │ │ ├── pinctrl-mt8512.c │ │ ├── pinctrl-mt8516.c │ │ ├── pinctrl-mt8518.c │ │ ├── pinctrl-mtk-common.c │ │ └── pinctrl-mtk-common.h │ ├── meson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-meson-a1.c │ │ ├── pinctrl-meson-axg-pmx.c │ │ ├── pinctrl-meson-axg.c │ │ ├── pinctrl-meson-axg.h │ │ ├── pinctrl-meson-g12a.c │ │ ├── pinctrl-meson-gx-pmx.c │ │ ├── pinctrl-meson-gx.h │ │ ├── pinctrl-meson-gxbb.c │ │ ├── pinctrl-meson-gxl.c │ │ ├── pinctrl-meson.c │ │ └── pinctrl-meson.h │ ├── mscc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mscc-common.c │ │ ├── mscc-common.h │ │ ├── pinctrl-jr2.c │ │ ├── pinctrl-luton.c │ │ ├── pinctrl-ocelot.c │ │ ├── pinctrl-serval.c │ │ └── pinctrl-servalt.c │ ├── mtmips │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-mt7620.c │ │ ├── pinctrl-mt7621.c │ │ ├── pinctrl-mt7628.c │ │ ├── pinctrl-mtmips-common.c │ │ └── pinctrl-mtmips-common.h │ ├── mvebu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-armada-37xx.c │ │ ├── pinctrl-armada-38x.c │ │ ├── pinctrl-mvebu.c │ │ └── pinctrl-mvebu.h │ ├── nexell │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-nexell.c │ │ ├── pinctrl-nexell.h │ │ ├── pinctrl-s5pxx18.c │ │ └── pinctrl-s5pxx18.h │ ├── nuvoton │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-npcm7xx.c │ │ └── pinctrl-npcm8xx.c │ ├── nxp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-imx-mmio.c │ │ ├── pinctrl-imx-scmi.c │ │ ├── pinctrl-imx.c │ │ ├── pinctrl-imx.h │ │ ├── pinctrl-imx5.c │ │ ├── pinctrl-imx6.c │ │ ├── pinctrl-imx7.c │ │ ├── pinctrl-imx7ulp.c │ │ ├── pinctrl-imx8.c │ │ ├── pinctrl-imx8m.c │ │ ├── pinctrl-imx8ulp.c │ │ ├── pinctrl-imx93.c │ │ ├── pinctrl-imxrt.c │ │ ├── pinctrl-mxs.c │ │ ├── pinctrl-mxs.h │ │ └── pinctrl-vf610.c │ ├── pinctrl-adi-adsp.c │ ├── pinctrl-apple.c │ ├── pinctrl-at91-pio4.c │ ├── pinctrl-at91.c │ ├── pinctrl-generic.c │ ├── pinctrl-k210.c │ ├── pinctrl-qe-io.c │ ├── pinctrl-sandbox.c │ ├── pinctrl-single.c │ ├── pinctrl-sti.c │ ├── pinctrl-stmfx.c │ ├── pinctrl-sx150x.c │ ├── pinctrl-th1520.c │ ├── pinctrl-uclass.c │ ├── pinctrl-zynqmp.c │ ├── pinctrl_pic32.c │ ├── pinctrl_stm32.c │ ├── qcom │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-apq8016.c │ │ ├── pinctrl-apq8096.c │ │ ├── pinctrl-ipq4019.c │ │ ├── pinctrl-ipq5424.c │ │ ├── pinctrl-ipq9574.c │ │ ├── pinctrl-qcm2290.c │ │ ├── pinctrl-qcom.c │ │ ├── pinctrl-qcom.h │ │ ├── pinctrl-qcs404.c │ │ ├── pinctrl-sa8775p.c │ │ ├── pinctrl-sc7280.c │ │ ├── pinctrl-sdm660.c │ │ ├── pinctrl-sdm845.c │ │ ├── pinctrl-sm6115.c │ │ ├── pinctrl-sm8150.c │ │ ├── pinctrl-sm8250.c │ │ ├── pinctrl-sm8550.c │ │ ├── pinctrl-sm8650.c │ │ └── pinctrl-x1e80100.c │ ├── renesas │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pfc-r8a7790.c │ │ ├── pfc-r8a7791.c │ │ ├── pfc-r8a7792.c │ │ ├── pfc-r8a7794.c │ │ ├── pfc-r8a77951.c │ │ ├── pfc-r8a7796.c │ │ ├── pfc-r8a77965.c │ │ ├── pfc-r8a77970.c │ │ ├── pfc-r8a77980.c │ │ ├── pfc-r8a77990.c │ │ ├── pfc-r8a77995.c │ │ ├── pfc-r8a779a0.c │ │ ├── pfc-r8a779f0.c │ │ ├── pfc-r8a779g0.c │ │ ├── pfc-r8a779h0.c │ │ ├── pfc.c │ │ ├── pinctrl-rza1.c │ │ ├── pinctrl-rzn1.c │ │ ├── rzg2l-pfc.c │ │ └── sh_pfc.h │ ├── rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-px30.c │ │ ├── pinctrl-rk3036.c │ │ ├── pinctrl-rk3066.c │ │ ├── pinctrl-rk3128.c │ │ ├── pinctrl-rk3188.c │ │ ├── pinctrl-rk322x.c │ │ ├── pinctrl-rk3288.c │ │ ├── pinctrl-rk3308.c │ │ ├── pinctrl-rk3328.c │ │ ├── pinctrl-rk3368.c │ │ ├── pinctrl-rk3399.c │ │ ├── pinctrl-rk3528.c │ │ ├── pinctrl-rk3568.c │ │ ├── pinctrl-rk3576.c │ │ ├── pinctrl-rk3588.c │ │ ├── pinctrl-rockchip-core.c │ │ ├── pinctrl-rockchip.h │ │ ├── pinctrl-rv1108.c │ │ └── pinctrl-rv1126.c │ ├── starfive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-jh7110-aon.c │ │ ├── pinctrl-jh7110-sys.c │ │ ├── pinctrl-starfive.c │ │ └── pinctrl-starfive.h │ ├── sunxi │ │ ├── Kconfig │ │ ├── Makefile │ │ └── pinctrl-sunxi.c │ ├── tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── funcmux-tegra114.c │ │ ├── funcmux-tegra124.c │ │ ├── funcmux-tegra20.c │ │ ├── funcmux-tegra210.c │ │ ├── funcmux-tegra30.c │ │ ├── pinctrl-tegra.c │ │ ├── pinctrl-tegra20.c │ │ ├── pinmux-common.c │ │ ├── pinmux-tegra114.c │ │ ├── pinmux-tegra124.c │ │ ├── pinmux-tegra20.c │ │ ├── pinmux-tegra210.c │ │ └── pinmux-tegra30.c │ └── uniphier │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-uniphier-core.c │ │ ├── pinctrl-uniphier-ld11.c │ │ ├── pinctrl-uniphier-ld20.c │ │ ├── pinctrl-uniphier-ld4.c │ │ ├── pinctrl-uniphier-ld6b.c │ │ ├── pinctrl-uniphier-pro4.c │ │ ├── pinctrl-uniphier-pro5.c │ │ ├── pinctrl-uniphier-pxs2.c │ │ ├── pinctrl-uniphier-pxs3.c │ │ ├── pinctrl-uniphier-sld8.c │ │ └── pinctrl-uniphier.h ├── power │ ├── Kconfig │ ├── Makefile │ ├── acpi_pmc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── acpi-pmc-uclass.c │ │ ├── pmc_emul.c │ │ └── sandbox.c │ ├── axp152.c │ ├── axp209.c │ ├── axp221.c │ ├── axp809.c │ ├── axp818.c │ ├── axp_spl.c │ ├── domain │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── apple-pmgr.c │ │ ├── bcm6328-power-domain.c │ │ ├── imx8-power-domain-legacy.c │ │ ├── imx8-power-domain.c │ │ ├── imx8m-power-domain.c │ │ ├── imx8mp-hsiomix.c │ │ ├── imx8mp-mediamix.c │ │ ├── meson-ee-pwrc.c │ │ ├── meson-gx-pwrc-vpu.c │ │ ├── meson-secure-pwrc.c │ │ ├── mtk-power-domain.c │ │ ├── power-domain-uclass.c │ │ ├── sandbox-power-domain-test.c │ │ ├── sandbox-power-domain.c │ │ ├── scmi-power-domain.c │ │ ├── tegra186-power-domain.c │ │ ├── ti-power-domain.c │ │ ├── ti-sci-power-domain.c │ │ └── zynqmp-power-domain.c │ ├── exynos-tmu.c │ ├── mt6323.c │ ├── palmas.c │ ├── pmic │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ab8500.c │ │ ├── act8846.c │ │ ├── as3722.c │ │ ├── as3722_gpio.c │ │ ├── axp.c │ │ ├── bd71837.c │ │ ├── cpcap.c │ │ ├── da9063.c │ │ ├── fan53555.c │ │ ├── i2c_pmic_emul.c │ │ ├── lp873x.c │ │ ├── lp87565.c │ │ ├── max77663.c │ │ ├── max77686.c │ │ ├── max8907.c │ │ ├── max8997.c │ │ ├── max8998.c │ │ ├── mc34708.c │ │ ├── mp5416.c │ │ ├── palmas.c │ │ ├── pca9450.c │ │ ├── pfuze100.c │ │ ├── pmic-uclass.c │ │ ├── pmic_hi6553.c │ │ ├── pmic_ltc3676.c │ │ ├── pmic_mc34vr500.c │ │ ├── pmic_pca9450.c │ │ ├── pmic_pfuze100.c │ │ ├── pmic_pfuze3000.c │ │ ├── pmic_qcom.c │ │ ├── pmic_tps62362.c │ │ ├── pmic_tps65217.c │ │ ├── pmic_tps65218.c │ │ ├── pmic_tps65910.c │ │ ├── pmic_tps65910_dm.c │ │ ├── raa215300.c │ │ ├── rk8xx.c │ │ ├── rn5t567.c │ │ ├── s2mps11.c │ │ ├── s5m8767.c │ │ ├── sandbox.c │ │ ├── stpmic1.c │ │ ├── tps65090.c │ │ ├── tps65219.c │ │ ├── tps65941.c │ │ └── tps80031.c │ ├── power_core.c │ ├── power_dialog.c │ ├── power_fsl.c │ ├── power_i2c.c │ ├── power_spi.c │ ├── regulator │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── act8846.c │ │ ├── anatop_regulator.c │ │ ├── as3722_regulator.c │ │ ├── axp_drivevbus.c │ │ ├── axp_regulator.c │ │ ├── axp_usb_power.c │ │ ├── bd71837.c │ │ ├── cpcap_regulator.c │ │ ├── da9063.c │ │ ├── fan53555.c │ │ ├── fixed.c │ │ ├── gpio-regulator.c │ │ ├── lp873x_regulator.c │ │ ├── lp87565_regulator.c │ │ ├── max77663_regulator.c │ │ ├── max77686.c │ │ ├── max8907_regulator.c │ │ ├── npcm8xx_regulator.c │ │ ├── palmas_regulator.c │ │ ├── pbias_regulator.c │ │ ├── pca9450.c │ │ ├── pfuze100.c │ │ ├── pwm_regulator.c │ │ ├── qcom-rpmh-regulator.c │ │ ├── qcom_usb_vbus_regulator.c │ │ ├── regulator-uclass.c │ │ ├── regulator_common.c │ │ ├── regulator_common.h │ │ ├── rk8xx.c │ │ ├── rzg2l-usbphy-regulator.c │ │ ├── s2mps11_regulator.c │ │ ├── s5m8767.c │ │ ├── sandbox.c │ │ ├── scmi_regulator.c │ │ ├── stm32-vrefbuf.c │ │ ├── stpmic1.c │ │ ├── tps62360_regulator.c │ │ ├── tps6287x_regulator.c │ │ ├── tps65090_regulator.c │ │ ├── tps65219_regulator.c │ │ ├── tps65910_regulator.c │ │ ├── tps65911_regulator.c │ │ ├── tps65941_regulator.c │ │ └── tps80031_regulator.c │ ├── sy8106a.c │ ├── tps6586x.c │ └── twl4030.c ├── pwm │ ├── Kconfig │ ├── Makefile │ ├── cros_ec_pwm.c │ ├── exynos_pwm.c │ ├── pwm-aspeed.c │ ├── pwm-at91.c │ ├── pwm-cadence-ttc.c │ ├── pwm-imx.c │ ├── pwm-meson.c │ ├── pwm-mtk.c │ ├── pwm-sifive.c │ ├── pwm-stm32.c │ ├── pwm-ti-ehrpwm.c │ ├── pwm-tiecap.c │ ├── pwm-uclass.c │ ├── rk_pwm.c │ ├── sandbox_pwm.c │ ├── sunxi_pwm.c │ └── tegra_pwm.c ├── qe │ ├── Kconfig │ ├── Makefile │ ├── fdt.c │ └── qe.c ├── ram │ ├── Kconfig │ ├── Makefile │ ├── aspeed │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dwc_ddrphy_phyinit_ddr4-3200-nodimm-train2D.c │ │ ├── dwc_ddrphy_phyinit_ddr5-3200-nodimm-train2D.c │ │ ├── sdram_ast2500.c │ │ ├── sdram_ast2600.c │ │ └── sdram_ast2700.c │ ├── bmips_ram.c │ ├── cadence │ │ ├── Kconfig │ │ ├── Makefile │ │ └── ddr_ctrl.c │ ├── imxrt_sdram.c │ ├── k3-am654-ddrss.c │ ├── k3-am654-ddrss.h │ ├── k3-ddrss │ │ ├── Makefile │ │ ├── am62a │ │ │ ├── lpddr4_address_slice_0_macros.h │ │ │ ├── lpddr4_address_slice_1_macros.h │ │ │ ├── lpddr4_address_slice_2_macros.h │ │ │ ├── lpddr4_am62a_ctl_regs_rw_masks.h │ │ │ ├── lpddr4_am62a_if.h │ │ │ ├── lpddr4_am62a_obj_if.h │ │ │ ├── lpddr4_am62a_structs_if.h │ │ │ ├── lpddr4_ctl_regs.h │ │ │ ├── lpddr4_data_slice_0_macros.h │ │ │ ├── lpddr4_data_slice_1_macros.h │ │ │ ├── lpddr4_data_slice_2_macros.h │ │ │ ├── lpddr4_data_slice_3_macros.h │ │ │ ├── lpddr4_ddr_controller_macros.h │ │ │ ├── lpddr4_phy_core_macros.h │ │ │ └── lpddr4_pi_macros.h │ │ ├── am64 │ │ │ ├── lpddr4_address_slice_0_macros.h │ │ │ ├── lpddr4_address_slice_1_macros.h │ │ │ ├── lpddr4_address_slice_2_macros.h │ │ │ ├── lpddr4_am64_ctl_regs_rw_masks.h │ │ │ ├── lpddr4_am64_if.h │ │ │ ├── lpddr4_am64_obj_if.h │ │ │ ├── lpddr4_am64_structs_if.h │ │ │ ├── lpddr4_ctl_regs.h │ │ │ ├── lpddr4_data_slice_0_macros.h │ │ │ ├── lpddr4_data_slice_1_macros.h │ │ │ ├── lpddr4_ddr_controller_macros.h │ │ │ ├── lpddr4_phy_core_macros.h │ │ │ └── lpddr4_pi_macros.h │ │ ├── cps_drv_lpddr4.h │ │ ├── j721e │ │ │ ├── lpddr4_address_slice_0_macros.h │ │ │ ├── lpddr4_ctl_regs.h │ │ │ ├── lpddr4_data_slice_0_macros.h │ │ │ ├── lpddr4_data_slice_1_macros.h │ │ │ ├── lpddr4_data_slice_2_macros.h │ │ │ ├── lpddr4_data_slice_3_macros.h │ │ │ ├── lpddr4_ddr_controller_macros.h │ │ │ ├── lpddr4_j721e_ctl_regs_rw_masks.h │ │ │ ├── lpddr4_j721e_if.h │ │ │ ├── lpddr4_j721e_obj_if.h │ │ │ ├── lpddr4_j721e_structs_if.h │ │ │ ├── lpddr4_phy_core_macros.h │ │ │ └── lpddr4_pi_macros.h │ │ ├── k3-ddrss.c │ │ ├── lpddr4.c │ │ ├── lpddr4.h │ │ ├── lpddr4_am62a_ctl_regs_rw_masks.c │ │ ├── lpddr4_am64_ctl_regs_rw_masks.c │ │ ├── lpddr4_am6x.c │ │ ├── lpddr4_am6x.h │ │ ├── lpddr4_am6x_sanity.h │ │ ├── lpddr4_if.h │ │ ├── lpddr4_j721e.c │ │ ├── lpddr4_j721e.h │ │ ├── lpddr4_j721e_ctl_regs_rw_masks.c │ │ ├── lpddr4_j721e_sanity.h │ │ ├── lpddr4_obj_if.c │ │ ├── lpddr4_obj_if.h │ │ ├── lpddr4_sanity.h │ │ └── lpddr4_structs_if.h │ ├── mediatek │ │ ├── Makefile │ │ └── ddr3-mt7629.c │ ├── mpc83xx_sdram.c │ ├── octeon │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dimm_spd_eeprom.c │ │ ├── octeon3_lmc.c │ │ └── octeon_ddr.c │ ├── ram-uclass.c │ ├── renesas │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dbsc5 │ │ │ ├── Makefile │ │ │ ├── dbsc5.c │ │ │ ├── dbsc5.h │ │ │ ├── dram.c │ │ │ ├── qos.c │ │ │ └── rtvram.c │ │ └── rzn1 │ │ │ ├── Makefile │ │ │ └── ddr_async.c │ ├── rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dmc-rk3368.c │ │ ├── sdram-px30-ddr3-detect-333.inc │ │ ├── sdram-px30-ddr4-detect-333.inc │ │ ├── sdram-px30-ddr_skew.inc │ │ ├── sdram-px30-lpddr2-detect-333.inc │ │ ├── sdram-px30-lpddr3-detect-333.inc │ │ ├── sdram-rk3399-lpddr4-400.inc │ │ ├── sdram-rk3399-lpddr4-800.inc │ │ ├── sdram-rv1126-ddr3-detect-1056.inc │ │ ├── sdram-rv1126-ddr3-detect-328.inc │ │ ├── sdram-rv1126-ddr3-detect-396.inc │ │ ├── sdram-rv1126-ddr3-detect-528.inc │ │ ├── sdram-rv1126-ddr3-detect-664.inc │ │ ├── sdram-rv1126-ddr3-detect-784.inc │ │ ├── sdram-rv1126-ddr3-detect-924.inc │ │ ├── sdram-rv1126-ddr4-detect-1056.inc │ │ ├── sdram-rv1126-ddr4-detect-328.inc │ │ ├── sdram-rv1126-ddr4-detect-396.inc │ │ ├── sdram-rv1126-ddr4-detect-528.inc │ │ ├── sdram-rv1126-ddr4-detect-664.inc │ │ ├── sdram-rv1126-ddr4-detect-784.inc │ │ ├── sdram-rv1126-ddr4-detect-924.inc │ │ ├── sdram-rv1126-loader_params.inc │ │ ├── sdram-rv1126-lpddr4-detect-1056.inc │ │ ├── sdram-rv1126-lpddr4-detect-328.inc │ │ ├── sdram-rv1126-lpddr4-detect-396.inc │ │ ├── sdram-rv1126-lpddr4-detect-528.inc │ │ ├── sdram-rv1126-lpddr4-detect-664.inc │ │ ├── sdram-rv1126-lpddr4-detect-784.inc │ │ ├── sdram-rv1126-lpddr4-detect-924.inc │ │ ├── sdram_common.c │ │ ├── sdram_pctl_px30.c │ │ ├── sdram_phy_px30.c │ │ ├── sdram_px30.c │ │ ├── sdram_rk3066.c │ │ ├── sdram_rk3128.c │ │ ├── sdram_rk3188.c │ │ ├── sdram_rk322x.c │ │ ├── sdram_rk3288.c │ │ ├── sdram_rk3308.c │ │ ├── sdram_rk3328.c │ │ ├── sdram_rk3399.c │ │ ├── sdram_rk3528.c │ │ ├── sdram_rk3568.c │ │ ├── sdram_rk3576.c │ │ ├── sdram_rk3588.c │ │ └── sdram_rv1126.c │ ├── sandbox_ram.c │ ├── sifive │ │ ├── Kconfig │ │ ├── Makefile │ │ └── sifive_ddr.c │ ├── starfive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ddrcsr_boot.c │ │ ├── ddrphy_start.c │ │ ├── ddrphy_train.c │ │ ├── ddrphy_utils.c │ │ ├── starfive_ddr.c │ │ └── starfive_ddr.h │ ├── stm32_sdram.c │ ├── stm32mp1 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── stm32mp1_ddr.c │ │ ├── stm32mp1_ddr.h │ │ ├── stm32mp1_ddr_regs.h │ │ ├── stm32mp1_interactive.c │ │ ├── stm32mp1_ram.c │ │ ├── stm32mp1_tests.c │ │ └── stm32mp1_tests.h │ ├── sunxi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dram_sun20i_d1.c │ │ └── dram_sun20i_d1.h │ └── thead │ │ ├── Kconfig │ │ ├── Makefile │ │ └── th1520_ddr.c ├── reboot-mode │ ├── Kconfig │ ├── Makefile │ ├── reboot-mode-gpio.c │ ├── reboot-mode-nvmem.c │ ├── reboot-mode-rtc.c │ └── reboot-mode-uclass.c ├── remoteproc │ ├── Kconfig │ ├── Makefile │ ├── adi_sc5xx_rproc.c │ ├── ipu_rproc.c │ ├── k3_system_controller.c │ ├── pru_rproc.c │ ├── renesas_apmu.c │ ├── rproc-elf-loader.c │ ├── rproc-uclass.c │ ├── sandbox_testproc.c │ ├── stm32_copro.c │ ├── ti_k3_arm64_rproc.c │ ├── ti_k3_dsp_rproc.c │ ├── ti_k3_m4_rproc.c │ ├── ti_k3_r5f_rproc.c │ ├── ti_power_proc.c │ └── ti_sci_proc.h ├── reset │ ├── Kconfig │ ├── Makefile │ ├── reset-airoha.c │ ├── reset-ast2500.c │ ├── reset-ast2600.c │ ├── reset-at91.c │ ├── reset-bcm6345.c │ ├── reset-dra7.c │ ├── reset-hisilicon.c │ ├── reset-hsdk.c │ ├── reset-imx7.c │ ├── reset-jh7110.c │ ├── reset-mediatek.c │ ├── reset-meson.c │ ├── reset-mtmips.c │ ├── reset-npcm.c │ ├── reset-raspberrypi.c │ ├── reset-rockchip.c │ ├── reset-rzg2l-usbphy-ctrl.c │ ├── reset-scmi.c │ ├── reset-sifive.c │ ├── reset-socfpga.c │ ├── reset-spacemit-k1.c │ ├── reset-sunxi.c │ ├── reset-syscon.c │ ├── reset-ti-sci.c │ ├── reset-uclass.c │ ├── reset-uniphier.c │ ├── reset-zynqmp.c │ ├── rst-rk3528.c │ ├── rst-rk3576.c │ ├── rst-rk3588.c │ ├── sandbox-reset-test.c │ ├── sandbox-reset.c │ ├── sti-reset.c │ ├── stm32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── stm32-reset-core.c │ │ ├── stm32-reset-core.h │ │ ├── stm32-reset-mp1.c │ │ ├── stm32-reset-mp25.c │ │ └── stm32-reset.c │ ├── tegra-car-reset.c │ └── tegra186-reset.c ├── rng │ ├── Kconfig │ ├── Makefile │ ├── arm_rndr.c │ ├── exynos-trng.c │ ├── iproc_rng200.c │ ├── jh7110_rng.c │ ├── meson-rng.c │ ├── msm_rng.c │ ├── npcm_rng.c │ ├── optee_rng.c │ ├── riscv_zkr_rng.c │ ├── rng-uclass.c │ ├── rockchip_rng.c │ ├── sandbox_rng.c │ ├── smccc_trng.c │ ├── stm32_rng.c │ ├── tpm_rng.c │ └── turris_rwtm_rng.c ├── rtc │ ├── Kconfig │ ├── Makefile │ ├── abx80x.c │ ├── armada38x.c │ ├── davinci.c │ ├── ds1307.c │ ├── ds1337.c │ ├── ds1374.c │ ├── ds1672.c │ ├── ds3231.c │ ├── ds3232.c │ ├── emul_rtc.c │ ├── goldfish_rtc.c │ ├── ht1380.c │ ├── i2c_rtc_emul.c │ ├── isl1208.c │ ├── m41t62.c │ ├── max313xx.c │ ├── mc13xxx-rtc.c │ ├── mc146818.c │ ├── mcfrtc.c │ ├── mvrtc.c │ ├── mvrtc.h │ ├── mxsrtc.c │ ├── pcf2127.c │ ├── pcf8563.c │ ├── pl031.c │ ├── pt7c4338.c │ ├── rtc-uclass.c │ ├── rv3028.c │ ├── rv3029.c │ ├── rv8803.c │ ├── rx8010sj.c │ ├── rx8025.c │ ├── s35392a.c │ ├── sandbox_rtc.c │ ├── stm32_rtc.c │ └── zynqmp_rtc.c ├── scsi │ ├── Kconfig │ ├── Makefile │ ├── sandbox_scsi.c │ ├── scsi-uclass.c │ ├── scsi.c │ ├── scsi_bootdev.c │ └── scsi_emul.c ├── serial │ ├── Kconfig │ ├── Makefile │ ├── altera_jtag_uart.c │ ├── altera_uart.c │ ├── arm_dcc.c │ ├── atmel_usart.c │ ├── atmel_usart.h │ ├── ns16550.c │ ├── sandbox.c │ ├── serial-uclass.c │ ├── serial.c │ ├── serial_adi_uart4.c │ ├── serial_ar933x.c │ ├── serial_arc.c │ ├── serial_bcm283x_mu.c │ ├── serial_bcm283x_pl011.c │ ├── serial_bcm6345.c │ ├── serial_coreboot.c │ ├── serial_cortina.c │ ├── serial_efi.c │ ├── serial_htif.c │ ├── serial_intel_mid.c │ ├── serial_linflexuart.c │ ├── serial_lpuart.c │ ├── serial_mcf.c │ ├── serial_meson.c │ ├── serial_mpc8xx.c │ ├── serial_msm.c │ ├── serial_msm_geni.c │ ├── serial_mt7620.c │ ├── serial_mtk.c │ ├── serial_mvebu_a3700.c │ ├── serial_mxc.c │ ├── serial_mxs.c │ ├── serial_npcm.c │ ├── serial_ns16550.c │ ├── serial_nulldev.c │ ├── serial_octeon_bootcmd.c │ ├── serial_octeon_pcie_console.c │ ├── serial_omap.c │ ├── serial_owl.c │ ├── serial_pic32.c │ ├── serial_pl01x.c │ ├── serial_pl01x_internal.h │ ├── serial_rockchip.c │ ├── serial_s5p.c │ ├── serial_s5p4418_pl011.c │ ├── serial_sbi.c │ ├── serial_semihosting.c │ ├── serial_sh.c │ ├── serial_sh.h │ ├── serial_sifive.c │ ├── serial_sti_asc.c │ ├── serial_stm32.c │ ├── serial_stm32.h │ ├── serial_uniphier.c │ ├── serial_xen.c │ ├── serial_xtensa_semihosting.c │ ├── serial_xuartlite.c │ └── serial_zynq.c ├── sm │ ├── Kconfig │ ├── Makefile │ ├── meson-sm.c │ ├── sandbox-sm.c │ └── sm-uclass.c ├── smem │ ├── Kconfig │ ├── Makefile │ ├── msm_smem.c │ ├── sandbox_smem.c │ └── smem-uclass.c ├── soc │ ├── Kconfig │ ├── Makefile │ ├── qcom │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cmd-db.c │ │ ├── rpmh-internal.h │ │ ├── rpmh-rsc.c │ │ └── rpmh.c │ ├── samsung │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── exynos-pmu.c │ │ └── exynos-usi.c │ ├── soc-uclass.c │ ├── soc_amd_versal2.c │ ├── soc_sandbox.c │ ├── soc_ti_k3.c │ ├── soc_xilinx_versal.c │ ├── soc_xilinx_versal_net.c │ ├── soc_xilinx_zynqmp.c │ └── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── k3-navss-ringacc-u-boot.c │ │ ├── k3-navss-ringacc.c │ │ ├── keystone_serdes.c │ │ └── pruss.c ├── sound │ ├── Kconfig │ ├── Makefile │ ├── broadwell_i2s.c │ ├── broadwell_i2s.h │ ├── broadwell_sound.c │ ├── codec-uclass.c │ ├── da7219.c │ ├── hda_codec.c │ ├── i2s-uclass.c │ ├── i8254_beep.c │ ├── ivybridge_sound.c │ ├── max98088.c │ ├── max98088.h │ ├── max98090.c │ ├── max98090.h │ ├── max98095.c │ ├── max98095.h │ ├── max98357a.c │ ├── maxim_codec.c │ ├── maxim_codec.h │ ├── rockchip_i2s.c │ ├── rockchip_sound.c │ ├── rt5677.c │ ├── rt5677.h │ ├── samsung-i2s.c │ ├── samsung_sound.c │ ├── sandbox.c │ ├── sound-uclass.c │ ├── sound.c │ ├── tegra_ahub.c │ ├── tegra_i2s.c │ ├── tegra_i2s_priv.h │ ├── tegra_sound.c │ ├── wm8994.c │ ├── wm8994.h │ └── wm8994_registers.h ├── spi │ ├── Kconfig │ ├── Makefile │ ├── adi_spi3.c │ ├── airoha_snfi_spi.c │ ├── altera_spi.c │ ├── apple_spi.c │ ├── atcspi200_spi.c │ ├── ath79_spi.c │ ├── atmel-quadspi.c │ ├── atmel_spi.c │ ├── bcm63xx_hsspi.c │ ├── bcm63xx_spi.c │ ├── bcmbca_hsspi.c │ ├── bcmstb_spi.c │ ├── ca_sflash.c │ ├── cadence_ospi_versal.c │ ├── cadence_qspi.c │ ├── cadence_qspi.h │ ├── cadence_qspi_apb.c │ ├── cf_spi.c │ ├── cv1800b_spif.c │ ├── davinci_spi.c │ ├── designware_spi.c │ ├── exynos_spi.c │ ├── fsl_dspi.c │ ├── fsl_espi.c │ ├── fsl_qspi.c │ ├── gxp_spi.c │ ├── ich.c │ ├── ich.h │ ├── iproc_qspi.c │ ├── kirkwood_spi.c │ ├── meson_spifc.c │ ├── meson_spifc_a1.c │ ├── microchip_coreqspi.c │ ├── mpc8xx_spi.c │ ├── mpc8xxx_spi.c │ ├── mscc_bb_spi.c │ ├── mt7620_spi.c │ ├── mt7621_spi.c │ ├── mtk_snfi_spi.c │ ├── mtk_snor.c │ ├── mtk_spim.c │ ├── mvebu_a3700_spi.c │ ├── mxc_spi.c │ ├── mxs_spi.c │ ├── npcm_fiu_spi.c │ ├── npcm_pspi.c │ ├── nxp_fspi.c │ ├── octeon_spi.c │ ├── omap3_spi.c │ ├── pic32_spi.c │ ├── pl022_spi.c │ ├── renesas_rpc_spi.c │ ├── rk_spi.c │ ├── rk_spi.h │ ├── rockchip_sfc.c │ ├── sandbox_spi.c │ ├── sh_qspi.c │ ├── soft_spi.c │ ├── spi-aspeed-smc.c │ ├── spi-emul-uclass.c │ ├── spi-mem-nodm.c │ ├── spi-mem.c │ ├── spi-mxic.c │ ├── spi-qup.c │ ├── spi-sifive.c │ ├── spi-sn-f-ospi.c │ ├── spi-sunxi.c │ ├── spi-synquacer.c │ ├── spi-uclass.c │ ├── spi.c │ ├── stm32_qspi.c │ ├── stm32_spi.c │ ├── tegra114_spi.c │ ├── tegra20_sflash.c │ ├── tegra20_slink.c │ ├── tegra210_qspi.c │ ├── tegra_spi.h │ ├── ti_qspi.c │ ├── uniphier_spi.c │ ├── xilinx_spi.c │ ├── zynq_qspi.c │ ├── zynq_spi.c │ └── zynqmp_gqspi.c ├── spmi │ ├── Kconfig │ ├── Makefile │ ├── spmi-msm.c │ ├── spmi-sandbox.c │ └── spmi-uclass.c ├── sysinfo │ ├── Kconfig │ ├── Makefile │ ├── gazerbeam.c │ ├── gazerbeam.h │ ├── gpio.c │ ├── iot2050.c │ ├── iot2050.h │ ├── rcar3.c │ ├── sandbox.c │ ├── sandbox.h │ ├── smbios.c │ └── sysinfo-uclass.c ├── sysreset │ ├── Kconfig │ ├── Makefile │ ├── poweroff_gpio.c │ ├── sysreset-ti-sci.c │ ├── sysreset-uclass.c │ ├── sysreset_ast.c │ ├── sysreset_at91.c │ ├── sysreset_cv1800b.c │ ├── sysreset_gpio.c │ ├── sysreset_max77663.c │ ├── sysreset_max8907.c │ ├── sysreset_microblaze.c │ ├── sysreset_mpc83xx.c │ ├── sysreset_mpc83xx.h │ ├── sysreset_octeon.c │ ├── sysreset_palmas.c │ ├── sysreset_psci.c │ ├── sysreset_qcom-pshold.c │ ├── sysreset_raa215300.c │ ├── sysreset_resetctl.c │ ├── sysreset_rockchip.c │ ├── sysreset_sandbox.c │ ├── sysreset_sbi.c │ ├── sysreset_socfpga.c │ ├── sysreset_socfpga_soc64.c │ ├── sysreset_sti.c │ ├── sysreset_syscon.c │ ├── sysreset_tegra.c │ ├── sysreset_tps65910.c │ ├── sysreset_tps80031.c │ ├── sysreset_watchdog.c │ ├── sysreset_x86.c │ └── sysreset_xtfpga.c ├── tee │ ├── Kconfig │ ├── Makefile │ ├── broadcom │ │ ├── Kconfig │ │ ├── Makefile │ │ └── chimp_optee.c │ ├── optee │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── i2c.c │ │ ├── optee_msg.h │ │ ├── optee_msg_supplicant.h │ │ ├── optee_private.h │ │ ├── optee_smc.h │ │ ├── rpmb.c │ │ └── supplicant.c │ ├── sandbox.c │ └── tee-uclass.c ├── thermal │ ├── Kconfig │ ├── Makefile │ ├── imx_scu_thermal.c │ ├── imx_thermal.c │ ├── imx_tmu.c │ ├── thermal-uclass.c │ ├── thermal_sandbox.c │ ├── ti-bandgap.c │ └── ti-lm74.c ├── timer │ ├── Kconfig │ ├── Makefile │ ├── adi_sc5xx_timer.c │ ├── altera_timer.c │ ├── andes_plmt_timer.c │ ├── arc_timer.c │ ├── arm_global_timer.c │ ├── arm_twd_timer.c │ ├── ast_ibex_timer.c │ ├── ast_timer.c │ ├── atmel_pit_timer.c │ ├── atmel_tcb_timer.c │ ├── cadence-ttc.c │ ├── dw-apb-timer.c │ ├── fttmr010_timer.c │ ├── gxp-timer.c │ ├── imx-gpt-timer.c │ ├── mchp-pit64b-timer.c │ ├── mpc83xx_timer.c │ ├── mtk_timer.c │ ├── nomadik-mtu-timer.c │ ├── npcm-timer.c │ ├── omap-timer.c │ ├── orion-timer.c │ ├── ostm_timer.c │ ├── riscv_aclint_timer.c │ ├── riscv_timer.c │ ├── rockchip_timer.c │ ├── sandbox_timer.c │ ├── sp804_timer.c │ ├── starfive-timer.c │ ├── stm32_timer.c │ ├── tegra-timer.c │ ├── timer-uclass.c │ ├── tsc_timer.c │ └── xilinx-timer.c ├── tpm │ ├── Kconfig │ ├── Makefile │ ├── cr50_i2c.c │ ├── sandbox_common.c │ ├── sandbox_common.h │ ├── tpm-uclass.c │ ├── tpm2_ftpm_tee.c │ ├── tpm2_ftpm_tee.h │ ├── tpm2_tis_core.c │ ├── tpm2_tis_i2c.c │ ├── tpm2_tis_mmio.c │ ├── tpm2_tis_sandbox.c │ ├── tpm2_tis_spi.c │ ├── tpm_atmel_twi.c │ ├── tpm_internal.h │ ├── tpm_tis.h │ ├── tpm_tis_infineon.c │ ├── tpm_tis_lpc.c │ ├── tpm_tis_sandbox.c │ ├── tpm_tis_st33zp24_i2c.c │ └── tpm_tis_st33zp24_spi.c ├── ufs │ ├── Kconfig │ ├── Makefile │ ├── cdns-platform.c │ ├── ti-j721e-ufs.c │ ├── ufs-amd-versal2.c │ ├── ufs-pci.c │ ├── ufs-qcom.c │ ├── ufs-qcom.h │ ├── ufs-renesas.c │ ├── ufs-uclass.c │ ├── ufs.c │ ├── ufs.h │ ├── ufshcd-dwc.c │ ├── ufshcd-dwc.h │ ├── ufshci-dwc.h │ ├── ufshci.h │ └── unipro.h ├── usb │ ├── Kconfig │ ├── cdns3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cdns3-starfive.c │ │ ├── cdns3-ti.c │ │ ├── core.c │ │ ├── core.h │ │ ├── debug.h │ │ ├── drd.c │ │ ├── drd.h │ │ ├── ep0.c │ │ ├── gadget-export.h │ │ ├── gadget.c │ │ ├── gadget.h │ │ ├── host-export.h │ │ ├── host.c │ │ ├── trace.c │ │ └── trace.h │ ├── common │ │ ├── Makefile │ │ ├── common.c │ │ ├── dwc2_core.c │ │ ├── dwc2_core.h │ │ ├── fsl-dt-fixup.c │ │ ├── fsl-errata.c │ │ └── usb_urb.c │ ├── dwc3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── core.h │ │ ├── dwc3-am62.c │ │ ├── dwc3-generic-sti.c │ │ ├── dwc3-generic.c │ │ ├── dwc3-generic.h │ │ ├── dwc3-layerscape.c │ │ ├── dwc3-meson-g12a.c │ │ ├── dwc3-meson-gxl.c │ │ ├── dwc3-omap.c │ │ ├── dwc3-uniphier.c │ │ ├── ep0.c │ │ ├── gadget.c │ │ ├── gadget.h │ │ ├── io.h │ │ ├── linux-compat.h │ │ ├── samsung_usb_phy.c │ │ └── ti_usb_phy.c │ ├── emul │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── sandbox_flash.c │ │ ├── sandbox_hub.c │ │ ├── sandbox_keyb.c │ │ └── usb-emul-uclass.c │ ├── eth │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── asix.c │ │ ├── asix88179.c │ │ ├── lan75xx.c │ │ ├── lan78xx.c │ │ ├── lan7x.c │ │ ├── lan7x.h │ │ ├── mcs7830.c │ │ ├── r8152.c │ │ ├── r8152.h │ │ ├── r8152_fw.c │ │ ├── smsc95xx.c │ │ └── usb_ether.c │ ├── gadget │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── at91_udc.c │ │ ├── at91_udc.h │ │ ├── atmel_usba_udc.c │ │ ├── atmel_usba_udc.h │ │ ├── bcm_udc_otg.h │ │ ├── bcm_udc_otg_phy.c │ │ ├── ci_udc.c │ │ ├── ci_udc.h │ │ ├── composite.c │ │ ├── config.c │ │ ├── dwc2_udc_otg.c │ │ ├── dwc2_udc_otg_phy.c │ │ ├── dwc2_udc_otg_priv.h │ │ ├── dwc2_udc_otg_regs.h │ │ ├── dwc2_udc_otg_xfer_dma.c │ │ ├── ep0.h │ │ ├── epautoconf.c │ │ ├── ether.c │ │ ├── f_acm.c │ │ ├── f_dfu.c │ │ ├── f_dfu.h │ │ ├── f_fastboot.c │ │ ├── f_mass_storage.c │ │ ├── f_rockusb.c │ │ ├── f_sdp.c │ │ ├── f_thor.c │ │ ├── f_thor.h │ │ ├── g_dnl.c │ │ ├── max3420_udc.c │ │ ├── ndis.h │ │ ├── rcar │ │ │ ├── Makefile │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── fifo.c │ │ │ ├── fifo.h │ │ │ ├── mod.c │ │ │ ├── mod.h │ │ │ ├── mod_gadget.c │ │ │ ├── pipe.c │ │ │ ├── pipe.h │ │ │ └── renesas_usb.h │ │ ├── rndis.c │ │ ├── rndis.h │ │ ├── storage_common.c │ │ ├── u_os_desc.h │ │ ├── udc │ │ │ ├── Makefile │ │ │ ├── udc-core.c │ │ │ └── udc-uclass.c │ │ └── usbstring.c │ ├── host │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dwc2.c │ │ ├── dwc2.h │ │ ├── dwc3-octeon-glue.c │ │ ├── dwc3-of-simple.c │ │ ├── ehci-atmel.c │ │ ├── ehci-exynos.c │ │ ├── ehci-fsl.c │ │ ├── ehci-generic.c │ │ ├── ehci-hcd.c │ │ ├── ehci-marvell.c │ │ ├── ehci-msm.c │ │ ├── ehci-mx5.c │ │ ├── ehci-mx6.c │ │ ├── ehci-mxs.c │ │ ├── ehci-npcm.c │ │ ├── ehci-omap.c │ │ ├── ehci-pci.c │ │ ├── ehci-tegra.c │ │ ├── ehci-vf.c │ │ ├── ehci-zynq.c │ │ ├── ehci.h │ │ ├── ohci-at91.c │ │ ├── ohci-da8xx.c │ │ ├── ohci-generic.c │ │ ├── ohci-hcd.c │ │ ├── ohci-lpc32xx.c │ │ ├── ohci-npcm.c │ │ ├── ohci-pci.c │ │ ├── ohci.h │ │ ├── r8a66597-hcd.c │ │ ├── r8a66597.h │ │ ├── usb-sandbox.c │ │ ├── usb-uclass.c │ │ ├── usb_bootdev.c │ │ ├── xhci-brcm.c │ │ ├── xhci-dwc3.c │ │ ├── xhci-exynos5.c │ │ ├── xhci-fsl.c │ │ ├── xhci-generic.c │ │ ├── xhci-mem.c │ │ ├── xhci-mtk.c │ │ ├── xhci-mvebu.c │ │ ├── xhci-omap.c │ │ ├── xhci-pci.c │ │ ├── xhci-rcar-r8a779x_usb3_v3.h │ │ ├── xhci-rcar.c │ │ ├── xhci-ring.c │ │ └── xhci.c │ ├── isp1760 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── isp1760-core.c │ │ ├── isp1760-core.h │ │ ├── isp1760-hcd.c │ │ ├── isp1760-hcd.h │ │ ├── isp1760-if.c │ │ ├── isp1760-regs.h │ │ ├── isp1760-uboot.c │ │ └── isp1760-uboot.h │ ├── mtu3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mtu3.h │ │ ├── mtu3_core.c │ │ ├── mtu3_dr.h │ │ ├── mtu3_gadget.c │ │ ├── mtu3_gadget_ep0.c │ │ ├── mtu3_host.c │ │ ├── mtu3_hw_regs.h │ │ ├── mtu3_plat.c │ │ ├── mtu3_qmu.c │ │ └── mtu3_qmu.h │ ├── musb-new │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am35x.c │ │ ├── da8xx.c │ │ ├── linux-compat.h │ │ ├── mt85xx.c │ │ ├── musb_core.c │ │ ├── musb_core.h │ │ ├── musb_debug.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 │ │ ├── musb_uboot.c │ │ ├── musb_uboot.h │ │ ├── omap2430.c │ │ ├── omap2430.h │ │ ├── pic32.c │ │ ├── sc5xx.c │ │ ├── sunxi.c │ │ ├── ti-musb.c │ │ └── ux500.c │ ├── musb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am35x.c │ │ ├── am35x.h │ │ ├── musb_core.c │ │ ├── musb_core.h │ │ ├── musb_debug.h │ │ ├── musb_hcd.c │ │ ├── musb_hcd.h │ │ ├── musb_udc.c │ │ ├── omap3.c │ │ └── omap3.h │ ├── phy │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── rockchip_usb2_phy.c │ │ └── twl4030.c │ ├── tcpm │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fusb302.c │ │ ├── fusb302_reg.h │ │ ├── tcpm-internal.h │ │ ├── tcpm-uclass.c │ │ └── tcpm.c │ └── ulpi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ulpi-viewport.c │ │ └── ulpi.c ├── video │ ├── Kconfig │ ├── Makefile │ ├── aat2870_backlight.c │ ├── anx9804.c │ ├── anx9804.h │ ├── anx98xx-edp.h │ ├── atmel_hlcdfb.c │ ├── atmel_lcdfb.c │ ├── backlight-uclass.c │ ├── backlight_gpio.c │ ├── bcm2835.c │ ├── bmp.c │ ├── bochs.c │ ├── bochs.h │ ├── bridge │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── anx6345.c │ │ ├── dp501.c │ │ ├── lvds-codec.c │ │ ├── ps862x.c │ │ ├── ptn3460.c │ │ ├── ssd2825.c │ │ ├── tc358768.c │ │ └── video-bridge-uclass.c │ ├── broadwell_igd.c │ ├── console_core.c │ ├── console_normal.c │ ├── console_rotate.c │ ├── console_truetype.c │ ├── coreboot.c │ ├── display-uclass.c │ ├── dsi-host-uclass.c │ ├── dw_hdmi.c │ ├── dw_mipi_dsi.c │ ├── efi.c │ ├── endeavoru-panel.c │ ├── exynos │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── exynos_dp.c │ │ ├── exynos_dp_lowlevel.c │ │ ├── exynos_dp_lowlevel.h │ │ ├── exynos_fb.c │ │ ├── exynos_mipi_dsi.c │ │ ├── exynos_mipi_dsi_common.c │ │ ├── exynos_mipi_dsi_common.h │ │ ├── exynos_mipi_dsi_lowlevel.c │ │ └── exynos_mipi_dsi_lowlevel.h │ ├── fonts │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ankacoder_c75_r.ttf │ │ ├── cantoraone_regular.ttf │ │ ├── nimbus_sans_l_regular.ttf │ │ └── rufscript010.ttf │ ├── himax-hx8394.c │ ├── hitachi-tx10d07vm0baa.c │ ├── hitachi_tx18d42vm_lcd.c │ ├── hitachi_tx18d42vm_lcd.h │ ├── hx8238d.c │ ├── i915_reg.h │ ├── ihs_video_out.c │ ├── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ipu.h │ │ ├── ipu_common.c │ │ ├── ipu_disp.c │ │ ├── ipu_regs.h │ │ ├── lcdif.c │ │ ├── ldb.c │ │ ├── mxc_ipuv3_fb.c │ │ └── mxcfb.h │ ├── ivybridge_igd.c │ ├── lg-ld070wx3.c │ ├── lg-lh400wv3-sd04.c │ ├── lm3532_backlight.c │ ├── lm3533_backlight.c │ ├── logicore_dp_dpcd.h │ ├── logicore_dp_tx.c │ ├── logicore_dp_tx.h │ ├── logicore_dp_tx_regif.h │ ├── lp855x_backlight.c │ ├── mali_dp.c │ ├── mcde_simple.c │ ├── meson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── meson_canvas.c │ │ ├── meson_dw_hdmi.c │ │ ├── meson_dw_hdmi.h │ │ ├── meson_plane.c │ │ ├── meson_registers.h │ │ ├── meson_vclk.c │ │ ├── meson_venc.c │ │ ├── meson_vpu.c │ │ ├── meson_vpu.h │ │ ├── meson_vpu_init.c │ │ ├── simplefb_common.c │ │ └── simplefb_common.h │ ├── mipi_dsi.c │ ├── mot-panel.c │ ├── mvebu_lcd.c │ ├── mxsfb.c │ ├── nexell │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── s5pxx18_dp.c │ │ ├── s5pxx18_dp_hdmi.c │ │ ├── s5pxx18_dp_lvds.c │ │ ├── s5pxx18_dp_mipi.c │ │ ├── s5pxx18_dp_rgb.c │ │ └── soc │ │ │ ├── Makefile │ │ │ ├── s5pxx18_soc_disptop.c │ │ │ ├── s5pxx18_soc_disptop.h │ │ │ ├── s5pxx18_soc_disptop_clk.c │ │ │ ├── s5pxx18_soc_disptop_clk.h │ │ │ ├── s5pxx18_soc_disptype.h │ │ │ ├── s5pxx18_soc_dpc.c │ │ │ ├── s5pxx18_soc_dpc.h │ │ │ ├── s5pxx18_soc_hdmi.c │ │ │ ├── s5pxx18_soc_hdmi.h │ │ │ ├── s5pxx18_soc_lvds.c │ │ │ ├── s5pxx18_soc_lvds.h │ │ │ ├── s5pxx18_soc_mipi.c │ │ │ ├── s5pxx18_soc_mipi.h │ │ │ ├── s5pxx18_soc_mlc.c │ │ │ └── s5pxx18_soc_mlc.h │ ├── nexell_display.c │ ├── novatek-nt35510.c │ ├── omap3_dss.c │ ├── orisetech_otm8009a.c │ ├── panel-uclass.c │ ├── pwm_backlight.c │ ├── raydium-rm68200.c │ ├── renesas-r61307.c │ ├── renesas-r69328.c │ ├── rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dw_mipi_dsi_rockchip.c │ │ ├── rk3288_hdmi.c │ │ ├── rk3288_mipi.c │ │ ├── rk3288_vop.c │ │ ├── rk3328_hdmi.c │ │ ├── rk3328_vop.c │ │ ├── rk3399_hdmi.c │ │ ├── rk3399_mipi.c │ │ ├── rk3399_vop.c │ │ ├── rk_edp.c │ │ ├── rk_hdmi.c │ │ ├── rk_hdmi.h │ │ ├── rk_lvds.c │ │ ├── rk_mipi.c │ │ ├── rk_mipi.h │ │ ├── rk_vop.c │ │ └── rk_vop.h │ ├── samsung-ltl106hl02.c │ ├── sandbox_dsi_host.c │ ├── sandbox_osd.c │ ├── sandbox_osd.h │ ├── sandbox_sdl.c │ ├── seps525.c │ ├── sharp-lq079l1sx01.c │ ├── sharp-lq101r1sx01.c │ ├── simple_panel.c │ ├── simplefb.c │ ├── ssd2828.c │ ├── ssd2828.h │ ├── stb_truetype.h │ ├── stm32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── stm32_dsi.c │ │ └── stm32_ltdc.c │ ├── sunxi │ │ ├── Makefile │ │ ├── lcdc.c │ │ ├── simplefb_common.c │ │ ├── simplefb_common.h │ │ ├── sunxi_de2.c │ │ ├── sunxi_display.c │ │ ├── sunxi_dw_hdmi.c │ │ ├── sunxi_lcd.c │ │ └── tve_common.c │ ├── tda19988.c │ ├── tdo-tl070wsh30.c │ ├── tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── TODO │ │ ├── cpu-bridge.c │ │ ├── dc-pwm-backlight.c │ │ ├── dc.c │ │ ├── dc.h │ │ ├── dsi.c │ │ ├── dsi.h │ │ ├── hdmi.c │ │ ├── hdmi.h │ │ ├── host1x.c │ │ ├── mipi-phy.c │ │ ├── mipi-phy.h │ │ ├── mipi.c │ │ └── tegra124 │ │ │ ├── Makefile │ │ │ ├── display.c │ │ │ ├── displayport.h │ │ │ ├── dp.c │ │ │ ├── sor.c │ │ │ └── sor.h │ ├── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── tilcdc-panel.c │ │ ├── tilcdc-panel.h │ │ ├── tilcdc.c │ │ └── tilcdc.h │ ├── tidss │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── tidss_drv.c │ │ ├── tidss_drv.h │ │ └── tidss_regs.h │ ├── u_boot_logo.bmp │ ├── vesa.c │ ├── vidconsole-uclass.c │ ├── vidconsole_internal.h │ ├── video-uclass.c │ ├── video_bmp.c │ ├── video_osd-uclass.c │ ├── videomodes.c │ ├── videomodes.h │ └── zynqmp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── zynqmp_dpsub.c │ │ └── zynqmp_dpsub.h ├── virtio │ ├── Kconfig │ ├── Makefile │ ├── virtio-uclass.c │ ├── virtio_blk.c │ ├── virtio_blk.h │ ├── virtio_mmio.c │ ├── virtio_mmio.h │ ├── virtio_net.c │ ├── virtio_net.h │ ├── virtio_pci.h │ ├── virtio_pci_legacy.c │ ├── virtio_pci_modern.c │ ├── virtio_ring.c │ ├── virtio_rng.c │ └── virtio_sandbox.c ├── w1-eeprom │ ├── Kconfig │ ├── Makefile │ ├── ds24xxx.c │ ├── ds2502.c │ ├── eep_sandbox.c │ └── w1-eeprom-uclass.c ├── w1 │ ├── Kconfig │ ├── Makefile │ ├── mxc_w1.c │ ├── w1-gpio.c │ └── w1-uclass.c ├── watchdog │ ├── Kconfig │ ├── Makefile │ ├── adi_wdt.c │ ├── apple_wdt.c │ ├── arm_smc_wdt.c │ ├── armada-37xx-wdt.c │ ├── ast2600_wdt.c │ ├── ast_wdt.c │ ├── at91sam9_wdt.c │ ├── atcwdt200_wdt.c │ ├── bcm2835_wdt.c │ ├── bcm6345_wdt.c │ ├── booke_wdt.c │ ├── cdns_wdt.c │ ├── cortina_wdt.c │ ├── da9063-wdt.c │ ├── davinci_wdt.c │ ├── designware_wdt.c │ ├── ftwdt010_wdt.c │ ├── gpio_wdt.c │ ├── imx_watchdog.c │ ├── max6370_wdt.c │ ├── mcf_wdt.c │ ├── meson_gxbb_wdt.c │ ├── mpc8xxx_wdt.c │ ├── mt7620_wdt.c │ ├── mt7621_wdt.c │ ├── mtk_wdt.c │ ├── npcm_wdt.c │ ├── octeontx_wdt.c │ ├── omap_wdt.c │ ├── orion_wdt.c │ ├── qcom-wdt.c │ ├── renesas_wdt.c │ ├── rti_wdt.c │ ├── s5p_wdt.c │ ├── sandbox_alarm-wdt.c │ ├── sandbox_wdt.c │ ├── sbsa_gwdt.c │ ├── siemens_pmic_wdt.c │ ├── sl28cpld-wdt.c │ ├── sp805_wdt.c │ ├── starfive_wdt.c │ ├── stm32mp_wdt.c │ ├── sunxi_wdt.c │ ├── tangier_wdt.c │ ├── ulp_wdog.c │ ├── wdt-uclass.c │ ├── xilinx_tb_wdt.c │ └── xilinx_wwdt.c └── xen │ ├── Kconfig │ ├── Makefile │ ├── events.c │ ├── gnttab.c │ ├── hypervisor.c │ ├── pvblock.c │ └── xenbus.c ├── dts ├── Kconfig ├── Makefile └── upstream │ ├── .gitignore │ ├── Bindings │ ├── .gitignore │ ├── .yamllint │ ├── ABI.rst │ ├── Makefile │ ├── access-controllers │ │ └── access-controllers.yaml │ ├── arc │ │ ├── axs101.txt │ │ ├── axs103.txt │ │ ├── eznps.txt │ │ ├── hsdk.txt │ │ ├── pct.txt │ │ └── snps,archs-pct.yaml │ ├── arm │ │ ├── actions.yaml │ │ ├── airoha,en7581-chip-scu.yaml │ │ ├── airoha.yaml │ │ ├── altera.yaml │ │ ├── altera │ │ │ ├── socfpga-clk-manager.yaml │ │ │ └── socfpga-sdram-edac.txt │ │ ├── amazon,al.yaml │ │ ├── amd,pensando.yaml │ │ ├── amlogic.yaml │ │ ├── amlogic │ │ │ ├── amlogic,meson-gx-ao-secure.yaml │ │ │ └── amlogic,meson-mx-secbus2.yaml │ │ ├── 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,juno-fpga-apb-regs.yaml │ │ ├── arm,morello.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 │ │ ├── blaize.yaml │ │ ├── calxeda.yaml │ │ ├── calxeda │ │ │ ├── hb-sregs.yaml │ │ │ └── l2ecc.yaml │ │ ├── cavium-thunder.txt │ │ ├── cavium-thunder2.txt │ │ ├── cci-control-port.yaml │ │ ├── cirrus │ │ │ └── cirrus,ep9301.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-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.yaml │ │ │ ├── armada-380-mpcore-soc-ctrl.txt │ │ │ ├── armada-38x.yaml │ │ │ ├── armada-39x.txt │ │ │ ├── armada-7k-8k.yaml │ │ │ ├── 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,g3dsys.txt │ │ │ ├── mediatek,mmsys.yaml │ │ │ ├── mediatek,mt7622-pcie-mirror.yaml │ │ │ ├── mediatek,mt7622-wed.yaml │ │ │ └── mediatek,mt7986-wed-pcie.yaml │ │ ├── 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-ctcu.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 │ │ ├── samsung │ │ │ ├── samsung-boards.yaml │ │ │ ├── samsung-secure-firmware.yaml │ │ │ └── samsung-soc.yaml │ │ ├── secure.txt │ │ ├── socionext │ │ │ ├── milbeaut.yaml │ │ │ ├── synquacer.yaml │ │ │ └── uniphier.yaml │ │ ├── sp810.yaml │ │ ├── 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-dm816.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 │ │ ├── cirrus,ep9312-pata.yaml │ │ ├── cortina,gemini-sata-bridge.yaml │ │ ├── faraday,ftide010.yaml │ │ ├── fsl,ahci.yaml │ │ ├── fsl,imx-pata.yaml │ │ ├── fsl,pq-sata.yaml │ │ ├── imx-sata.yaml │ │ ├── intel,ixp4xx-compact-flash.yaml │ │ ├── marvell.txt │ │ ├── mediatek,mtk-ahci.yaml │ │ ├── nvidia,tegra-ahci.yaml │ │ ├── pata-arasan.txt │ │ ├── pata-common.yaml │ │ ├── renesas,rcar-sata.yaml │ │ ├── rockchip,dwc-ahci.yaml │ │ ├── sata-common.yaml │ │ ├── sata_highbank.yaml │ │ ├── snps,dwc-ahci-common.yaml │ │ ├── snps,dwc-ahci.yaml │ │ └── ti,da850-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,bcsr.yaml │ │ ├── fsl,fpga-qixis-i2c.yaml │ │ └── fsl,fpga-qixis.yaml │ ├── 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,ssbi.yaml │ │ ├── qcom,ssc-block-bus.yaml │ │ ├── renesas,bsc.yaml │ │ ├── simple-pm-bus.yaml │ │ ├── socionext,uniphier-system-bus.yaml │ │ ├── st,stm32-etzpc.yaml │ │ ├── st,stm32mp25-rifsc.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 │ │ └── starfive,jh8100-starlink-cache.yaml │ ├── chrome │ │ └── google,cros-ec-typec.yaml │ ├── clock │ │ ├── actions,owl-cmu.yaml │ │ ├── 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,sun55i-a523-ccu.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.yaml │ │ ├── amlogic,c3-peripherals-clkc.yaml │ │ ├── amlogic,c3-pll-clkc.yaml │ │ ├── amlogic,gxbb-aoclkc.yaml │ │ ├── amlogic,gxbb-clkc.yaml │ │ ├── amlogic,meson8-clkc.yaml │ │ ├── amlogic,meson8-ddr-clkc.yaml │ │ ├── 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,qoriq-clock-legacy.yaml │ │ ├── fsl,qoriq-clock.yaml │ │ ├── fsl,sai-clock.yaml │ │ ├── fsl,scu-clk.yaml │ │ ├── fujitsu,mb86s70-crg11.txt │ │ ├── gated-fixed-clock.yaml │ │ ├── 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,pxa1908.yaml │ │ ├── marvell,pxa1928.txt │ │ ├── marvell,pxa910.txt │ │ ├── maxim,max77686.txt │ │ ├── maxim,max9485.txt │ │ ├── mediatek,apmixedsys.yaml │ │ ├── mediatek,ethsys.yaml │ │ ├── mediatek,infracfg.yaml │ │ ├── mediatek,mt2701-hifsys.yaml │ │ ├── mediatek,mt6795-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-clock.yaml │ │ ├── mediatek,mt8186-fhctl.yaml │ │ ├── mediatek,mt8186-sys-clock.yaml │ │ ├── mediatek,mt8188-clock.yaml │ │ ├── mediatek,mt8188-sys-clock.yaml │ │ ├── mediatek,mt8192-clock.yaml │ │ ├── mediatek,mt8192-sys-clock.yaml │ │ ├── mediatek,mt8195-clock.yaml │ │ ├── mediatek,mt8195-sys-clock.yaml │ │ ├── mediatek,mt8365-clock.yaml │ │ ├── mediatek,mt8365-sys-clock.yaml │ │ ├── mediatek,mtmips-sysc.yaml │ │ ├── mediatek,pericfg.yaml │ │ ├── mediatek,syscon.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 │ │ ├── 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,imx95-blk-ctl.yaml │ │ ├── nxp,imx95-display-master-csr.yaml │ │ ├── nxp,lpc3220-clk.yaml │ │ ├── nxp,lpc3220-usb-clk.yaml │ │ ├── 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-mdm9607.yaml │ │ ├── qcom,gcc-mdm9615.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-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.yaml │ │ ├── qcom,ipq5018-gcc.yaml │ │ ├── qcom,ipq5332-gcc.yaml │ │ ├── qcom,ipq9574-cmn-pll.yaml │ │ ├── qcom,ipq9574-gcc.yaml │ │ ├── qcom,ipq9574-nsscc.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,qca8k-nsscc.yaml │ │ ├── qcom,qcm2290-dispcc.yaml │ │ ├── qcom,qcm2290-gpucc.yaml │ │ ├── qcom,qcs404-turingcc.yaml │ │ ├── qcom,qcs615-gcc.yaml │ │ ├── qcom,qcs8300-gcc.yaml │ │ ├── qcom,qdu1000-ecpricc.yaml │ │ ├── qcom,qdu1000-gcc.yaml │ │ ├── qcom,rpmcc.yaml │ │ ├── qcom,rpmhcc.yaml │ │ ├── qcom,sa8775p-camcc.yaml │ │ ├── qcom,sa8775p-dispcc.yaml │ │ ├── qcom,sa8775p-gcc.yaml │ │ ├── qcom,sa8775p-videocc.yaml │ │ ├── qcom,sar2130p-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-camcc.yaml │ │ ├── qcom,sm4450-dispcc.yaml │ │ ├── qcom,sm4450-gcc.yaml │ │ ├── qcom,sm6115-dispcc.yaml │ │ ├── qcom,sm6115-gpucc.yaml │ │ ├── qcom,sm6115-lpasscc.yaml │ │ ├── qcom,sm6125-gpucc.yaml │ │ ├── qcom,sm6350-camcc.yaml │ │ ├── qcom,sm6375-dispcc.yaml │ │ ├── qcom,sm6375-gcc.yaml │ │ ├── qcom,sm6375-gpucc.yaml │ │ ├── qcom,sm7150-camcc.yaml │ │ ├── qcom,sm7150-dispcc.yaml │ │ ├── qcom,sm7150-gcc.yaml │ │ ├── qcom,sm7150-videocc.yaml │ │ ├── qcom,sm8150-camcc.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,sm8750-gcc.yaml │ │ ├── qcom,spmi-clkdiv.yaml │ │ ├── qcom,videocc.yaml │ │ ├── qcom,x1e80100-camcc.yaml │ │ ├── qcom,x1e80100-gcc.yaml │ │ ├── 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,r9a08g045-vbattb.yaml │ │ ├── renesas,rcar-usb2-clock-sel.yaml │ │ ├── renesas,rzg2l-cpg.yaml │ │ ├── renesas,rzv2h-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.yaml │ │ ├── rockchip,rk3368-cru.yaml │ │ ├── rockchip,rk3399-cru.yaml │ │ ├── rockchip,rk3528-cru.yaml │ │ ├── rockchip,rk3562-cru.yaml │ │ ├── rockchip,rk3568-cru.yaml │ │ ├── rockchip,rk3576-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,exynos2200-cmu.yaml │ │ ├── samsung,exynos4412-isp-clock.yaml │ │ ├── samsung,exynos5260-clock.yaml │ │ ├── samsung,exynos5410-clock.yaml │ │ ├── samsung,exynos5433-clock.yaml │ │ ├── samsung,exynos7-clock.yaml │ │ ├── samsung,exynos7870-cmu.yaml │ │ ├── samsung,exynos7885-clock.yaml │ │ ├── samsung,exynos850-clock.yaml │ │ ├── samsung,exynos8895-clock.yaml │ │ ├── samsung,exynos990-clock.yaml │ │ ├── samsung,exynosautov9-clock.yaml │ │ ├── samsung,exynosautov920-clock.yaml │ │ ├── samsung,s2mps11.yaml │ │ ├── samsung,s3c6400-clock.yaml │ │ ├── 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 │ │ ├── sophgo,sg2042-clkgen.yaml │ │ ├── sophgo,sg2042-pll.yaml │ │ ├── sophgo,sg2042-rpgate.yaml │ │ ├── sprd,sc9860-clk.yaml │ │ ├── sprd,sc9863a-clk.yaml │ │ ├── sprd,ums512-clk.yaml │ │ ├── st,nomadik.txt │ │ ├── st,stm32-rcc.yaml │ │ ├── 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,u8500-clks.yaml │ │ ├── sunplus,sp7021-clkc.yaml │ │ ├── tesla,fsd-clock.yaml │ │ ├── thead,th1520-clk-ap.yaml │ │ ├── ti,am62-audio-refclk.yaml │ │ ├── ti,am654-ehrpwm-tbclk.yaml │ │ ├── ti,cdce706.txt │ │ ├── ti,cdce925.yaml │ │ ├── ti,clkctrl.yaml │ │ ├── ti,lmk04832.yaml │ │ ├── ti,sci-clk.yaml │ │ ├── ti │ │ │ ├── adpll.txt │ │ │ ├── apll.txt │ │ │ ├── autoidle.txt │ │ │ ├── clockdomain.txt │ │ │ ├── davinci │ │ │ │ ├── da8xx-cfgchip.txt │ │ │ │ ├── pll.txt │ │ │ │ └── psc.txt │ │ │ ├── dpll.txt │ │ │ ├── dra7-atl.txt │ │ │ ├── fapll.txt │ │ │ ├── fixed-factor-clock.txt │ │ │ ├── ti,clksel.yaml │ │ │ ├── ti,composite-clock.yaml │ │ │ ├── ti,divider-clock.yaml │ │ │ ├── ti,gate-clock.yaml │ │ │ ├── ti,interface-clock.yaml │ │ │ └── ti,mux-clock.yaml │ │ ├── toshiba,tmpv770x-pipllct.yaml │ │ ├── toshiba,tmpv770x-pismu.yaml │ │ ├── vf610-clock.txt │ │ ├── vt8500.txt │ │ ├── xgene.txt │ │ ├── xlnx,clocking-wizard.yaml │ │ ├── xlnx,vcu.yaml │ │ ├── xlnx,versal-clk.yaml │ │ └── zynq-7000.txt │ ├── common-properties.txt │ ├── connector │ │ ├── gocontroll,moduline-module-slot.yaml │ │ └── 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 │ ├── cpufreq │ │ ├── airoha,en7581-cpufreq.yaml │ │ ├── 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 │ │ └── qemu,virtual-cpufreq.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,sec2.0.yaml │ │ ├── fsl-dcp.yaml │ │ ├── fsl-imx-sahara.yaml │ │ ├── fsl-imx-scc.yaml │ │ ├── fsl-sec6.txt │ │ ├── hisilicon,hip07-sec.txt │ │ ├── img-hash.txt │ │ ├── inside-secure,safexcel-eip93.yaml │ │ ├── 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 │ │ ├── nvidia,tegra234-se-aes.yaml │ │ ├── nvidia,tegra234-se-hash.yaml │ │ ├── omap-aes.txt │ │ ├── omap-des.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,omap-sham.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 │ │ ├── apple,h7-display-pipe-mipi.yaml │ │ ├── apple,h7-display-pipe.yaml │ │ ├── arm,hdlcd.yaml │ │ ├── arm,komeda.yaml │ │ ├── arm,malidp.yaml │ │ ├── arm,pl11x.yaml │ │ ├── armada │ │ │ └── marvell,dove-lcd.txt │ │ ├── atmel,lcdc-display.yaml │ │ ├── atmel,lcdc.yaml │ │ ├── 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,it6263.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 │ │ │ ├── microchip,sam9x75-lvds.yaml │ │ │ ├── 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,tdp158.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 │ │ ├── elgin,jg10309-01.yaml │ │ ├── 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-dual-ports.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,sa8775p-mdss.yaml │ │ │ ├── qcom,sc7180-dpu.yaml │ │ │ ├── qcom,sc7180-mdss.yaml │ │ │ ├── qcom,sc7280-dpu.yaml │ │ │ ├── qcom,sc7280-mdss.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,sm6150-dpu.yaml │ │ │ ├── qcom,sm6150-mdss.yaml │ │ │ ├── qcom,sm6350-mdss.yaml │ │ │ ├── qcom,sm6375-mdss.yaml │ │ │ ├── qcom,sm7150-dpu.yaml │ │ │ ├── qcom,sm7150-mdss.yaml │ │ │ ├── qcom,sm8150-dpu.yaml │ │ │ ├── qcom,sm8150-mdss.yaml │ │ │ ├── qcom,sm8250-mdss.yaml │ │ │ ├── qcom,sm8350-mdss.yaml │ │ │ ├── qcom,sm8450-mdss.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 │ │ │ ├── anbernic,rg35xx-plus-panel.yaml │ │ │ ├── apple,summit.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-ll2.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,hx83102.yaml │ │ │ ├── himax,hx83112a.yaml │ │ │ ├── himax,hx8394.yaml │ │ │ ├── ilitek,ili9163.yaml │ │ │ ├── ilitek,ili9322.yaml │ │ │ ├── ilitek,ili9341.yaml │ │ │ ├── ilitek,ili9805.yaml │ │ │ ├── ilitek,ili9806e.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 │ │ │ ├── lg,sw43408.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-dual.yaml │ │ │ ├── panel-common.yaml │ │ │ ├── panel-dpi.yaml │ │ │ ├── panel-dsi-cm.yaml │ │ │ ├── panel-edp-legacy.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 │ │ │ ├── powertip,hx8238a.yaml │ │ │ ├── powertip,st7272.yaml │ │ │ ├── raspberrypi,7inch-touchscreen.yaml │ │ │ ├── raydium,rm67191.yaml │ │ │ ├── raydium,rm67200.yaml │ │ │ ├── raydium,rm68200.yaml │ │ │ ├── raydium,rm692e5.yaml │ │ │ ├── raydium,rm69380.yaml │ │ │ ├── rocktech,jh057n00900.yaml │ │ │ ├── ronbo,rb070d30.yaml │ │ │ ├── samsung,amoled-mipi-dsi.yaml │ │ │ ├── samsung,ams495qa01.yaml │ │ │ ├── samsung,ams581vf01.yaml │ │ │ ├── samsung,ams639rq08.yaml │ │ │ ├── samsung,atna33xc20.yaml │ │ │ ├── samsung,ld9040.yaml │ │ │ ├── samsung,lms380kf01.yaml │ │ │ ├── samsung,lms397kf04.yaml │ │ │ ├── samsung,s6d16d0.yaml │ │ │ ├── samsung,s6d27a1.yaml │ │ │ ├── samsung,s6d7aa0.yaml │ │ │ ├── samsung,s6e3ha8.yaml │ │ │ ├── samsung,s6e63m0.yaml │ │ │ ├── samsung,s6e88a0-ams427ap24.yaml │ │ │ ├── samsung,s6e88a0-ams452ef01.yaml │ │ │ ├── samsung,s6e8aa0.yaml │ │ │ ├── seiko,43wvf1g.yaml │ │ │ ├── sgd,gktw70sdae4se.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,rm692e5.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,rk3588-dw-hdmi-qp.yaml │ │ │ ├── rockchip,rk3588-mipi-dsi2.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,exynos5-dp.yaml │ │ │ ├── samsung,exynos5433-decon.yaml │ │ │ ├── samsung,exynos5433-mic.yaml │ │ │ ├── samsung,exynos7-decon.yaml │ │ │ └── samsung,fimd.yaml │ │ ├── sharp,ls010b7dh04.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 │ │ ├── st,stm32mp25-lvds.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.yaml │ │ ├── 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,at91sam9g45-dma.yaml │ │ ├── atmel,sama5d4-dma.yaml │ │ ├── brcm,bcm2835-dma.yaml │ │ ├── brcm,iproc-sba.txt │ │ ├── cirrus,ep9301-dma-m2m.yaml │ │ ├── cirrus,ep9301-dma-m2p.yaml │ │ ├── dma-common.yaml │ │ ├── dma-controller.yaml │ │ ├── dma-router.yaml │ │ ├── dma.txt │ │ ├── fsl,edma.yaml │ │ ├── fsl,elo-dma.yaml │ │ ├── fsl,elo3-dma.yaml │ │ ├── fsl,eloplus-dma.yaml │ │ ├── fsl,imx-dma.yaml │ │ ├── fsl,imx-sdma.yaml │ │ ├── fsl,mxs-dma.yaml │ │ ├── fsl-qdma.yaml │ │ ├── img-mdc-dma.txt │ │ ├── ingenic,dma.yaml │ │ ├── intel,ldma.yaml │ │ ├── k3dma.txt │ │ ├── loongson,ls1b-apbdma.yaml │ │ ├── loongson,ls2x-apbdma.yaml │ │ ├── lpc1850-dmamux.txt │ │ ├── marvell,mmp-dma.yaml │ │ ├── marvell,xor-v2.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.txt │ │ ├── nvidia,tegra186-gpc-dma.yaml │ │ ├── nvidia,tegra20-apbdma.txt │ │ ├── nvidia,tegra210-adma.yaml │ │ ├── nxp,lpc3220-dmamux.yaml │ │ ├── owl-dma.yaml │ │ ├── qcom,adm.yaml │ │ ├── qcom,bam-dma.yaml │ │ ├── qcom,gpi.yaml │ │ ├── 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,sc9860-dma.yaml │ │ ├── st_fdma.txt │ │ ├── stericsson,dma40.yaml │ │ ├── stm32 │ │ │ ├── st,stm32-dma.yaml │ │ │ ├── st,stm32-dma3.yaml │ │ │ ├── st,stm32-dmamux.yaml │ │ │ └── st,stm32-mdma.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 │ │ ├── altr,socfpga-ecc-manager.yaml │ │ ├── amazon,al-mc-edac.yaml │ │ ├── apm-xgene-edac.txt │ │ ├── aspeed-sdram-edac.txt │ │ └── dmc-520.yaml │ ├── 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-usbc-cros-ec.yaml │ │ ├── extcon-usbc-tusb320.yaml │ │ ├── fcs,fsa880.yaml │ │ ├── linux,extcon-usb-gpio.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 │ │ ├── cznic,turris-omnia-mcu.yaml │ │ ├── fsl,scu.yaml │ │ ├── google,gs101-acpm-ipc.yaml │ │ ├── intel,ixp4xx-network-processing-engine.yaml │ │ ├── intel,stratix10-svc.txt │ │ ├── nvidia,tegra186-bpmp.yaml │ │ ├── nvidia,tegra210-bpmp.txt │ │ ├── nxp,imx95-scmi-pinctrl.yaml │ │ ├── nxp,imx95-scmi.yaml │ │ ├── qcom,scm.yaml │ │ ├── qemu,fw-cfg-mmio.yaml │ │ ├── thead,th1520-aon.yaml │ │ └── xilinx │ │ │ └── xlnx,zynqmp-firmware.yaml │ ├── fpga │ │ ├── altera-pr-ip.txt │ │ ├── altera-socfpga-a10-fpga-mgr.txt │ │ ├── altera-socfpga-fpga-mgr.txt │ │ ├── altr,fpga-passive-serial.yaml │ │ ├── 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-selectmap.yaml │ │ ├── xlnx,fpga-slave-serial.yaml │ │ ├── xlnx,pr-decoupler.yaml │ │ ├── xlnx,versal-fpga.yaml │ │ └── xlnx,zynqmp-pcap-fpga.yaml │ ├── fsi │ │ ├── aspeed,ast2600-fsi-master.yaml │ │ ├── fsi-controller.yaml │ │ ├── fsi-master-ast-cf.txt │ │ ├── fsi-master-gpio.txt │ │ ├── fsi.txt │ │ ├── ibm,fsi2spi.yaml │ │ ├── ibm,i2cr-fsi-master.yaml │ │ ├── ibm,p9-fsi-controller.yaml │ │ ├── ibm,p9-occ.yaml │ │ ├── ibm,p9-sbefifo.yaml │ │ └── ibm,p9-scom.yaml │ ├── 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 │ │ ├── atmel,at91rm9200-gpio.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,qoriq-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-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-zynq.yaml │ │ ├── gpio.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 │ │ ├── lsi,zevio-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,lpc3220-gpio.yaml │ │ ├── nxp,pcf8575.yaml │ │ ├── pl061-gpio.yaml │ │ ├── qcom,wcd934x-gpio.yaml │ │ ├── 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 │ │ ├── arm,mali-valhall-csf.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-r3p0.yaml │ │ ├── st,stm32-hwspinlock.yaml │ │ └── ti,omap-hwspinlock.yaml │ ├── hwmon │ │ ├── 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 │ │ ├── aspeed,g6-pwm-tach.yaml │ │ ├── aspeed-pwm-tacho.txt │ │ ├── baikal,bt1-pvt.yaml │ │ ├── cirrus,lochnagar.yaml │ │ ├── fan-common.yaml │ │ ├── gmt,g762.yaml │ │ ├── gpio-fan.yaml │ │ ├── hpe,gxp-fan-ctrl.yaml │ │ ├── hwmon-common.yaml │ │ ├── ibm,occ-hwmon.yaml │ │ ├── ibm,opal-sensor.yaml │ │ ├── iio-hwmon.yaml │ │ ├── jedec,jc42.yaml │ │ ├── kontron,sl28cpld-hwmon.yaml │ │ ├── lltc,ltc2978.yaml │ │ ├── lltc,ltc4151.yaml │ │ ├── lltc,ltc4286.yaml │ │ ├── lm75.yaml │ │ ├── ltc2990.txt │ │ ├── ltq-cputemp.txt │ │ ├── max31785.txt │ │ ├── max6697.txt │ │ ├── maxim,max20730.yaml │ │ ├── maxim,max31790.yaml │ │ ├── maxim,max6639.yaml │ │ ├── maxim,max6650.yaml │ │ ├── microchip,emc2305.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,nct7363.yaml │ │ ├── nuvoton,nct7802.yaml │ │ ├── nxp,mc34vr500.yaml │ │ ├── pmbus │ │ │ ├── adi,adp1050.yaml │ │ │ ├── infineon,tda38640.yaml │ │ │ ├── isil,isl68137.yaml │ │ │ ├── mps,mp2975.yaml │ │ │ ├── ti,lm25066.yaml │ │ │ ├── ti,tps25990.yaml │ │ │ ├── ti,ucd90320.yaml │ │ │ └── vicor,pli1209bc.yaml │ │ ├── pwm-fan.yaml │ │ ├── renesas,isl28022.yaml │ │ ├── sensirion,sht15.yaml │ │ ├── sensirion,shtc1.yaml │ │ ├── sophgo,sg2042-hwmon-mcu.yaml │ │ ├── st,stts751.yaml │ │ ├── starfive,jh71x0-temp.yaml │ │ ├── syna,as370.yaml │ │ ├── ti,adc128d818.yaml │ │ ├── ti,ads7828.yaml │ │ ├── ti,amc6821.yaml │ │ ├── ti,ina2xx.yaml │ │ ├── ti,ina3221.yaml │ │ ├── ti,lm87.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-gate.yaml │ │ ├── i2c-gpio.yaml │ │ ├── i2c-hix5hd2.txt │ │ ├── i2c-img-scb.txt │ │ ├── i2c-imx-lpi2c.yaml │ │ ├── i2c-imx.yaml │ │ ├── i2c-iop3xx.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-pxa-pci-ce4100.txt │ │ ├── i2c-pxa.yaml │ │ ├── i2c-rk3x.yaml │ │ ├── i2c-virtio.yaml │ │ ├── i2c-wmt.txt │ │ ├── i2c-xgene-slimpro.txt │ │ ├── ibm,i2c-fsi.yaml │ │ ├── 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,lpc1788-i2c.yaml │ │ ├── nxp,pca9541.yaml │ │ ├── nxp,pnx-i2c.yaml │ │ ├── opencores,i2c-ocores.yaml │ │ ├── qcom,i2c-cci.yaml │ │ ├── qcom,i2c-geni-qcom.yaml │ │ ├── qcom,i2c-qup.yaml │ │ ├── realtek,rtl9301-i2c.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 │ │ ├── spacemit,k1-i2c.yaml │ │ ├── sprd,sc9860-i2c.yaml │ │ ├── st,nomadik-i2c.yaml │ │ ├── st,sti-i2c.yaml │ │ ├── st,stm32-i2c.yaml │ │ ├── ti,omap4-i2c.yaml │ │ ├── tsd,mule-i2c-mux.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 │ │ │ ├── adi,adxl380.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,ad4000.yaml │ │ │ ├── adi,ad4030.yaml │ │ │ ├── adi,ad4130.yaml │ │ │ ├── adi,ad4695.yaml │ │ │ ├── adi,ad4851.yaml │ │ │ ├── adi,ad7091r5.yaml │ │ │ ├── adi,ad7124.yaml │ │ │ ├── adi,ad7173.yaml │ │ │ ├── adi,ad7191.yaml │ │ │ ├── adi,ad7192.yaml │ │ │ ├── adi,ad7280a.yaml │ │ │ ├── adi,ad7291.yaml │ │ │ ├── adi,ad7292.yaml │ │ │ ├── adi,ad7298.yaml │ │ │ ├── adi,ad7380.yaml │ │ │ ├── adi,ad7476.yaml │ │ │ ├── adi,ad7606.yaml │ │ │ ├── adi,ad7625.yaml │ │ │ ├── adi,ad7768-1.yaml │ │ │ ├── adi,ad7779.yaml │ │ │ ├── adi,ad7780.yaml │ │ │ ├── adi,ad7923.yaml │ │ │ ├── adi,ad7944.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 │ │ │ ├── gehc,pmc-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,mt6359-auxadc.yaml │ │ │ ├── mediatek,mt6360-adc.yaml │ │ │ ├── microchip,mcp3201.yaml │ │ │ ├── microchip,mcp3564.yaml │ │ │ ├── microchip,mcp3911.yaml │ │ │ ├── microchip,pac1921.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 │ │ │ ├── sophgo,cv1800b-saradc.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,ads1119.yaml │ │ │ ├── ti,ads124s08.yaml │ │ │ ├── ti,ads1298.yaml │ │ │ ├── ti,ads131e08.yaml │ │ │ ├── ti,ads7138.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 │ │ │ ├── bosch,bme680.yaml │ │ │ ├── plantower,pms7003.yaml │ │ │ ├── sciosense,ens160.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,ad8460.yaml │ │ │ ├── adi,ad8801.yaml │ │ │ ├── adi,ad9739a.yaml │ │ │ ├── adi,axi-dac.yaml │ │ │ ├── adi,ltc2664.yaml │ │ │ ├── adi,ltc2672.yaml │ │ │ ├── adi,ltc2688.yaml │ │ │ ├── dac.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 │ │ │ ├── rohm,bd79703.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 │ │ │ ├── sciosense,ens210.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 │ │ │ ├── adi,adis16550.yaml │ │ │ ├── bosch,bmi160.yaml │ │ │ ├── bosch,bmi270.yaml │ │ │ ├── bosch,bmi323.yaml │ │ │ ├── bosch,bno055.yaml │ │ │ ├── bosch,smi240.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 │ │ │ ├── bh1750.yaml │ │ │ ├── brcm,apds9160.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,bh1745.yaml │ │ │ ├── rohm,bu27034anuc.yaml │ │ │ ├── sharp,gp2ap002.yaml │ │ │ ├── sharp,gp2ap020a00f.yaml │ │ │ ├── st,uvis25.yaml │ │ │ ├── st,vl6180.yaml │ │ │ ├── stk33xx.yaml │ │ │ ├── ti,opt3001.yaml │ │ │ ├── ti,opt4001.yaml │ │ │ ├── ti,opt4060.yaml │ │ │ ├── tsl2583.yaml │ │ │ ├── tsl2772.yaml │ │ │ ├── upisemi,us5182.yaml │ │ │ ├── vishay,vcnl4000.yaml │ │ │ ├── vishay,vcnl4035.yaml │ │ │ ├── vishay,veml6030.yaml │ │ │ └── vishay,veml6075.yaml │ │ ├── magnetometer │ │ │ ├── allegromicro,als31300.yaml │ │ │ ├── asahi-kasei,ak8974.yaml │ │ │ ├── asahi-kasei,ak8975.yaml │ │ │ ├── bosch,bmc150_magn.yaml │ │ │ ├── fsl,mag3110.yaml │ │ │ ├── honeywell,hmc5843.yaml │ │ │ ├── pni,rm3100.yaml │ │ │ ├── silabs,si7210.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 │ │ │ └── sensirion,sdp500.yaml │ │ ├── proximity │ │ │ ├── ams,as3935.yaml │ │ │ ├── awinic,aw96103.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 │ │ │ ├── tyhx,hx9023s.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 │ ├── incomplete-devices.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 │ │ ├── cirrus,cs40l50.yaml │ │ ├── cirrus,ep9307-keypad.yaml │ │ ├── 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 │ │ ├── goodix,gt7986u-spifw.yaml │ │ ├── google,cros-ec-keyb.yaml │ │ ├── gpio-beeper.yaml │ │ ├── gpio-decoder.txt │ │ ├── gpio-keys.yaml │ │ ├── gpio-matrix-keypad.yaml │ │ ├── gpio-mouse.yaml │ │ ├── gpio-vibrator.yaml │ │ ├── hid-over-i2c.yaml │ │ ├── ibm,op-panel.yaml │ │ ├── ilitek,ili2901.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.yaml │ │ ├── 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.yaml │ │ ├── ti,palmas-pwrbutton.txt │ │ ├── touchscreen │ │ │ ├── adi,ad7879.yaml │ │ │ ├── apple,z2-multitouch.yaml │ │ │ ├── ar1021.txt │ │ │ ├── auo_pixcir_ts.txt │ │ │ ├── azoteq,iqs5xx.yaml │ │ │ ├── azoteq,iqs7211.yaml │ │ │ ├── brcm,iproc-touchscreen.txt │ │ │ ├── bu21013.txt │ │ │ ├── bu21029.txt │ │ │ ├── chipone,icn8318.yaml │ │ │ ├── cypress,cy8ctma140.yaml │ │ │ ├── cypress,cy8ctma340.yaml │ │ │ ├── cypress,tt21000.yaml │ │ │ ├── edt-ft5x06.yaml │ │ │ ├── eeti,exc3000.yaml │ │ │ ├── eeti.txt │ │ │ ├── egalax-ts.txt │ │ │ ├── elan,ektf2127.yaml │ │ │ ├── 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 │ │ │ ├── novatek,nvt-ts.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,ads7843.yaml │ │ │ ├── ti,am3359-tsc.yaml │ │ │ ├── ti,tsc2005.yaml │ │ │ ├── toradex,vf50-touchscreen.yaml │ │ │ ├── touchscreen.txt │ │ │ ├── touchscreen.yaml │ │ │ ├── ts4800-ts.txt │ │ │ ├── tsc2007.txt │ │ │ ├── zet6223.txt │ │ │ └── zinitix,bt400.yaml │ │ ├── tps65218-pwrbutton.txt │ │ ├── twl4030-keypad.txt │ │ └── zii,rave-sp-pwrbutton.yaml │ ├── interconnect │ │ ├── fsl,imx8m-noc.yaml │ │ ├── interconnect.txt │ │ ├── mediatek,cci.yaml │ │ ├── mediatek,mt8183-emi.yaml │ │ ├── qcom,bcm-voter.yaml │ │ ├── qcom,msm8939.yaml │ │ ├── qcom,msm8953.yaml │ │ ├── qcom,msm8974.yaml │ │ ├── qcom,msm8996.yaml │ │ ├── qcom,msm8998-bwmon.yaml │ │ ├── qcom,osm-l3.yaml │ │ ├── qcom,qcm2290.yaml │ │ ├── qcom,qcs615-rpmh.yaml │ │ ├── qcom,qcs8300-rpmh.yaml │ │ ├── qcom,qdu1000-rpmh.yaml │ │ ├── qcom,rpm-common.yaml │ │ ├── qcom,rpm.yaml │ │ ├── qcom,rpmh-common.yaml │ │ ├── qcom,rpmh.yaml │ │ ├── qcom,sa8775p-rpmh.yaml │ │ ├── qcom,sar2130p-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,sm8750-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.yaml │ │ ├── aspeed,ast2700-intc.yaml │ │ ├── aspeed,ast2xxx-scu-ic.txt │ │ ├── atmel,aic.yaml │ │ ├── brcm,bcm2712-msix.yaml │ │ ├── brcm,bcm2835-armctrl-ic.txt │ │ ├── brcm,bcm2836-l1-intc.yaml │ │ ├── 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-msi.yaml │ │ ├── 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-8k-pic.txt │ │ ├── marvell,gicp.txt │ │ ├── marvell,icu.txt │ │ ├── marvell,mpic.yaml │ │ ├── marvell,odmi-controller.txt │ │ ├── marvell,orion-intc.txt │ │ ├── marvell,sei.txt │ │ ├── mediatek,mt6577-sysirq.yaml │ │ ├── mediatek,mtk-cirq.yaml │ │ ├── microchip,lan966x-oic.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.yaml │ │ ├── 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 │ │ ├── renesas,rzv2h-icu.yaml │ │ ├── riscv,aplic.yaml │ │ ├── riscv,cpu-intc.yaml │ │ ├── riscv,imsics.yaml │ │ ├── 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 │ │ ├── sophgo,sg2042-msi.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 │ │ ├── thead,c900-aclint-sswi.yaml │ │ ├── ti,cp-intc.txt │ │ ├── ti,keystone-irq.txt │ │ ├── ti,omap-intc-irq.txt │ │ ├── ti,omap2-intc.txt │ │ ├── ti,omap4-wugen-mpu.txt │ │ ├── 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 │ │ ├── nvidia,tegra30-smmu.txt │ │ ├── qcom,apq8064-iommu.yaml │ │ ├── qcom,iommu.yaml │ │ ├── qcom,tbu.yaml │ │ ├── renesas,ipmmu-vmsa.yaml │ │ ├── riscv,iommu.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 │ │ │ ├── apple,dwi-bl.yaml │ │ │ ├── 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 │ │ │ ├── ti,lm3509.yaml │ │ │ ├── tps65217-backlight.txt │ │ │ └── zii,rave-sp-backlight.yaml │ │ ├── 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-lm3697.txt │ │ ├── leds-lp50xx.yaml │ │ ├── leds-lp55xx.yaml │ │ ├── leds-lt3593.txt │ │ ├── leds-max77650.yaml │ │ ├── leds-mt6360.yaml │ │ ├── leds-netxbig.txt │ │ ├── leds-ns2.txt │ │ ├── leds-powernv.txt │ │ ├── leds-pwm-multicolor.yaml │ │ ├── leds-pwm.yaml │ │ ├── leds-qcom-lpg.yaml │ │ ├── leds-rt4505.yaml │ │ ├── leds-sgm3140.yaml │ │ ├── leds-spi-byte.txt │ │ ├── leds-trigger-pattern.txt │ │ ├── maxim,max77693.yaml │ │ ├── mediatek,mt6370-flashlight.yaml │ │ ├── mediatek,mt6370-indicator.yaml │ │ ├── nxp,pca953x.yaml │ │ ├── nxp,pca955x.yaml │ │ ├── nxp,pca963x.yaml │ │ ├── nxp,pca995x.yaml │ │ ├── onnn,ncp5623.yaml │ │ ├── panasonic,an30259a.yaml │ │ ├── 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 │ │ ├── silergy,sy7802.yaml │ │ ├── skyworks,aat1290.yaml │ │ ├── sprd,sc2731-bltc.yaml │ │ ├── st,led1202.yaml │ │ ├── ti,lp8860.yaml │ │ ├── ti,tca6507.yaml │ │ ├── ti,tlc59116.yaml │ │ ├── ti.lm36922.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 │ │ ├── arm,mhuv3.yaml │ │ ├── brcm,bcm2835-mbox.yaml │ │ ├── brcm,iproc-flexrm-mbox.txt │ │ ├── brcm,iproc-pdc-mbox.txt │ │ ├── fsl,mu.yaml │ │ ├── google,gs101-mbox.yaml │ │ ├── hisilicon,hi3660-mailbox.txt │ │ ├── hisilicon,hi6220-mailbox.txt │ │ ├── mailbox.txt │ │ ├── marvell,armada-3700-rwtm-mailbox.txt │ │ ├── mediatek,gce-mailbox.yaml │ │ ├── mediatek,gce-props.yaml │ │ ├── microchip,mpfs-mailbox.yaml │ │ ├── microchip,sbi-ipc.yaml │ │ ├── mtk,adsp-mbox.yaml │ │ ├── nvidia,tegra186-hsp.yaml │ │ ├── qcom,apcs-kpss-global.yaml │ │ ├── qcom,cpucp-mbox.yaml │ │ ├── qcom-ipcc.yaml │ │ ├── rockchip-mailbox.txt │ │ ├── sprd-mailbox.yaml │ │ ├── st,sti-mailbox.yaml │ │ ├── st,stm32-ipcc.yaml │ │ ├── thead,th1520-mbox.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-engine.yaml │ │ ├── atmel,isc.yaml │ │ ├── atmel-isi.txt │ │ ├── brcm,bcm2835-unicam.yaml │ │ ├── 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,gc05a2.yaml │ │ │ ├── galaxycore,gc08a3.yaml │ │ │ ├── galaxycore,gc2145.yaml │ │ │ ├── hynix,hi846.yaml │ │ │ ├── imi,rdacm2x-gmsl.yaml │ │ │ ├── imx219.yaml │ │ │ ├── isil,isl79987.yaml │ │ │ ├── max2175.txt │ │ │ ├── maxim,max9286.yaml │ │ │ ├── maxim,max96712.yaml │ │ │ ├── maxim,max96714.yaml │ │ │ ├── maxim,max96717.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 │ │ │ ├── ov9650.txt │ │ │ ├── ovti,og01a1b.yaml │ │ │ ├── ovti,ov02a10.yaml │ │ │ ├── ovti,ov08x40.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,ov8856.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,imx258.yaml │ │ │ ├── sony,imx274.yaml │ │ │ ├── sony,imx283.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,e5010-jpeg-enc.yaml │ │ ├── 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,mt7622-cir.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 │ │ ├── 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,msm8953-camss.yaml │ │ ├── qcom,msm8996-camss.yaml │ │ ├── qcom,msm8996-venus.yaml │ │ ├── qcom,sc7180-venus.yaml │ │ ├── qcom,sc7280-camss.yaml │ │ ├── qcom,sc7280-venus.yaml │ │ ├── qcom,sc8280xp-camss.yaml │ │ ├── qcom,sdm660-camss.yaml │ │ ├── qcom,sdm660-venus.yaml │ │ ├── qcom,sdm670-camss.yaml │ │ ├── qcom,sdm845-camss.yaml │ │ ├── qcom,sdm845-venus-v2.yaml │ │ ├── qcom,sdm845-venus.yaml │ │ ├── qcom,sm8250-camss.yaml │ │ ├── qcom,sm8250-venus.yaml │ │ ├── qcom,sm8550-camss.yaml │ │ ├── qcom,sm8550-iris.yaml │ │ ├── qcom,venus-common.yaml │ │ ├── raspberrypi,pispbe.yaml │ │ ├── raspberrypi,rp1-cfe.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 │ │ ├── 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 │ │ ├── snps,dw-hdmi-rx.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-csi.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 │ │ ├── qcom,ebi2-peripheral-props.yaml │ │ ├── qcom,ebi2.yaml │ │ ├── renesas,dbsc.yaml │ │ ├── renesas,rpc-if.yaml │ │ ├── rockchip,rk3399-dmc.yaml │ │ ├── samsung,exynos4210-srom-peripheral-props.yaml │ │ ├── samsung,exynos5422-dmc.yaml │ │ ├── samsung,s5pv210-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,adp5585.yaml │ │ ├── adi,max77541.yaml │ │ ├── airoha,en7581-gpio-sysctl.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,at91sam9260-gpbr.yaml │ │ ├── atmel,at91sam9260-matrix.yaml │ │ ├── atmel,hlcdc.yaml │ │ ├── atmel,sama5d2-flexcom.yaml │ │ ├── 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,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,mcu-mpc8349emitx.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 │ │ ├── marvell,88pm886-a1.yaml │ │ ├── max77620.txt │ │ ├── max77650.yaml │ │ ├── maxim,max14577.yaml │ │ ├── maxim,max5970.yaml │ │ ├── maxim,max77686.yaml │ │ ├── maxim,max77693.yaml │ │ ├── maxim,max77705.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,mt6397.yaml │ │ ├── mediatek,mt8195-scpsys.yaml │ │ ├── mfd.txt │ │ ├── motorola-cpcap.txt │ │ ├── mps,mp2629.yaml │ │ ├── mscc,ocelot.yaml │ │ ├── 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 │ │ ├── qnap,ts433-mcu.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,rk816.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 │ │ ├── rohm,bd96801-pmic.yaml │ │ ├── samsung,exynos5433-lpass.yaml │ │ ├── samsung,s2dos05.yaml │ │ ├── samsung,s2mpa01.yaml │ │ ├── samsung,s2mps11.yaml │ │ ├── samsung,s5m8767.yaml │ │ ├── silergy,sy7636a.yaml │ │ ├── sky81452.txt │ │ ├── sprd,sc2731.yaml │ │ ├── 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-common.yaml │ │ ├── syscon.yaml │ │ ├── tc3589x.txt │ │ ├── ti,am3359-tscadc.yaml │ │ ├── ti,lp8732.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.yaml │ ├── 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 │ │ ├── mti,mips-cm.yaml │ │ ├── ni.txt │ │ ├── pic32 │ │ │ └── microchip,pic32mzda.txt │ │ ├── ralink.yaml │ │ └── realtek-rtl.yaml │ ├── misc │ │ ├── aspeed,ast2400-cvic.yaml │ │ ├── aspeed-p2a-ctrl.txt │ │ ├── fsl,dpaa2-console.yaml │ │ ├── fsl,qoriq-mc.yaml │ │ ├── ge-achc.yaml │ │ ├── idt,89hpesx.yaml │ │ ├── ifm-csi.txt │ │ ├── intel,ixp4xx-ahb-queue-manager.yaml │ │ ├── lwn,bk4-spi.yaml │ │ ├── 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.yaml │ │ ├── arasan,sdhci.yaml │ │ ├── arm,pl18x.yaml │ │ ├── aspeed,sdhci.yaml │ │ ├── atmel,hsmci.yaml │ │ ├── atmel,sama5d2-sdhci.yaml │ │ ├── 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.yaml │ │ ├── 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-common.yaml │ │ ├── mmc-controller.yaml │ │ ├── mmc-pwrseq-emmc.yaml │ │ ├── mmc-pwrseq-sd8787.yaml │ │ ├── mmc-pwrseq-simple.yaml │ │ ├── mmc-slot.yaml │ │ ├── mmc-spi-slot.yaml │ │ ├── mmc.txt │ │ ├── moxa,moxart-mmc.txt │ │ ├── mtk-sd.yaml │ │ ├── mxs-mmc.yaml │ │ ├── npcm,sdhci.yaml │ │ ├── nuvoton,ma35d1-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-common.yaml │ │ ├── sdhci-milbeaut.txt │ │ ├── sdhci-msm.yaml │ │ ├── sdhci-omap.txt │ │ ├── sdhci-pxa.yaml │ │ ├── sdhci-spear.txt │ │ ├── sdhci-st.txt │ │ ├── sdhci.txt │ │ ├── snps,dwcmshc-sdhci.yaml │ │ ├── socionext,uniphier-sd.yaml │ │ ├── sprd,sdhci-r11.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.yaml │ │ ├── atmel-nand.txt │ │ ├── brcm,brcmnand.yaml │ │ ├── cdns,hp-nfc.yaml │ │ ├── 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 │ │ ├── nuvoton,ma35d1-nand.yaml │ │ ├── nvidia-tegra20-nand.txt │ │ ├── nxp-spifi.txt │ │ ├── orion-nand.txt │ │ ├── partitions │ │ │ ├── arm,arm-firmware-suite.yaml │ │ │ ├── binman.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,s5pv210-onenand.yaml │ │ ├── samsung-s3c2410.txt │ │ ├── spear_smi.txt │ │ ├── spi-nand.yaml │ │ ├── st,stm32-fmc2-nand.yaml │ │ ├── st-fsm.txt │ │ ├── technologic,nand.yaml │ │ ├── ti,am654-hbmc.yaml │ │ ├── ti,davinci-nand.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 │ │ ├── airoha,en7581-eth.yaml │ │ ├── airoha,en7581-npu.yaml │ │ ├── airoha,en8811h.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 │ │ ├── asix,ax88178.yaml │ │ ├── asix,ax88796c.yaml │ │ ├── aspeed,ast2600-mdio.yaml │ │ ├── bluetooth │ │ │ ├── amlogic,w155s2-bt.yaml │ │ │ ├── bluetooth-controller.yaml │ │ │ ├── brcm,bcm4377-bluetooth.yaml │ │ │ ├── brcm,bluetooth.yaml │ │ │ ├── marvell,88w8897.yaml │ │ │ ├── mediatek,bluetooth.txt │ │ │ ├── mediatek,mt7622-bluetooth.yaml │ │ │ ├── mediatek,mt7921s-bluetooth.yaml │ │ │ ├── nokia,h4p-bluetooth.txt │ │ │ ├── nxp,88w8987-bt.yaml │ │ │ ├── qualcomm-bluetooth.yaml │ │ │ ├── realtek,bluetooth.yaml │ │ │ └── ti,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 │ │ ├── btusb.txt │ │ ├── calxeda-xgmac.yaml │ │ ├── can │ │ │ ├── allwinner,sun4i-a10-can.yaml │ │ │ ├── atmel,at91sam9263-can.yaml │ │ │ ├── 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,mcp2510.yaml │ │ │ ├── microchip,mcp251xfd.yaml │ │ │ ├── microchip,mpfs-can.yaml │ │ │ ├── mpc5xxx-mscan.txt │ │ │ ├── nxp,sja1000.yaml │ │ │ ├── renesas,rcar-can.yaml │ │ │ ├── renesas,rcar-canfd.yaml │ │ │ ├── rockchip,rk3568v2-canfd.yaml │ │ │ ├── st,stm32-bxcan.yaml │ │ │ ├── ti,tcan4x5x.yaml │ │ │ ├── ti_hecc.txt │ │ │ └── xilinx,can.yaml │ │ ├── cavium-mdio.txt │ │ ├── cavium-mix.txt │ │ ├── cavium-pip.txt │ │ ├── cdns,macb.yaml │ │ ├── cirrus,cs89x0.txt │ │ ├── cirrus,ep9301-eth.yaml │ │ ├── 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.yaml │ │ │ ├── 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.yaml │ │ ├── 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,cpm-enet.yaml │ │ ├── fsl,cpm-mdio.yaml │ │ ├── fsl,enetc-ierb.yaml │ │ ├── fsl,enetc-mdio.yaml │ │ ├── fsl,enetc.yaml │ │ ├── fsl,fec.yaml │ │ ├── fsl,fman-dtsec.yaml │ │ ├── fsl,fman-mdio.yaml │ │ ├── fsl,fman-muram.yaml │ │ ├── fsl,fman-port.yaml │ │ ├── fsl,fman.yaml │ │ ├── fsl,gianfar-mdio.yaml │ │ ├── fsl,gianfar.yaml │ │ ├── fsl,qoriq-mc-dpmac.yaml │ │ ├── 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-bt-8xxx.txt │ │ ├── marvell-neta-bm.txt │ │ ├── marvell-orion-net.txt │ │ ├── marvell-pxa168.txt │ │ ├── maxim,ds26522.yaml │ │ ├── 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-dwmac.yaml │ │ ├── micrel,ks8851.yaml │ │ ├── micrel-ks8995.txt │ │ ├── micrel-ksz90x1.txt │ │ ├── micrel.txt │ │ ├── microchip,enc28j60.txt │ │ ├── microchip,lan78xx.txt │ │ ├── microchip,lan8650.yaml │ │ ├── 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 │ │ ├── nvidia,tegra234-mgbe.yaml │ │ ├── nxp,dwmac-imx.yaml │ │ ├── nxp,lpc1850-dwmac.txt │ │ ├── nxp,netc-blk-ctrl.yaml │ │ ├── nxp,s32-dwmac.yaml │ │ ├── nxp,tja11xx.yaml │ │ ├── opencores-ethoc.txt │ │ ├── pcs │ │ │ ├── fsl,lynx-pcs.yaml │ │ │ ├── mediatek,sgmiisys.yaml │ │ │ ├── renesas,rzn1-miic.yaml │ │ │ └── snps,dw-xpcs.yaml │ │ ├── phy.txt │ │ ├── pse-pd │ │ │ ├── microchip,pd692x0.yaml │ │ │ ├── podl-pse-regulator.yaml │ │ │ ├── pse-controller.yaml │ │ │ └── ti,tps23881.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,rtl9301-mdio.yaml │ │ ├── realtek,rtl9301-switch.yaml │ │ ├── renesas,ether.yaml │ │ ├── renesas,etheravb.yaml │ │ ├── renesas,ethertsn.yaml │ │ ├── renesas,r8a779f0-ether-switch.yaml │ │ ├── renesas,rzn1-gmac.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 │ │ ├── sophgo,sg2044-dwmac.yaml │ │ ├── starfive,jh7110-dwmac.yaml │ │ ├── sti-dwmac.txt │ │ ├── stm32-dwmac.yaml │ │ ├── stmmac.txt │ │ ├── sunplus,sp7021-emac.yaml │ │ ├── tesla,fsd-ethqos.yaml │ │ ├── thead,th1520-gmac.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,sd8787.yaml │ │ │ ├── mediatek,mt76.yaml │ │ │ ├── microchip,wilc1000.yaml │ │ │ ├── qca,ath9k.yaml │ │ │ ├── qcom,ath10k.yaml │ │ │ ├── qcom,ath11k-pci.yaml │ │ │ ├── qcom,ath11k.yaml │ │ │ ├── qcom,ath12k-wsi.yaml │ │ │ ├── qcom,ath12k.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 │ │ │ └── u-boot,env.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 │ │ ├── renesas,rcar-efuse.yaml │ │ ├── renesas,rcar-otp.yaml │ │ ├── rmem.yaml │ │ ├── rockchip,otp.yaml │ │ ├── rockchip-efuse.yaml │ │ ├── snvs-lpgpr.yaml │ │ ├── socionext,uniphier-efuse.yaml │ │ ├── sprd,sc2731-efuse.yaml │ │ ├── sprd,ums312-efuse.yaml │ │ ├── st,stm32-romem.yaml │ │ ├── sunplus,sp7021-ocotp.yaml │ │ ├── vf610-ocotp.txt │ │ ├── xlnx,zynqmp-nvmem.yaml │ │ └── zii,rave-sp-eeprom.yaml │ ├── 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 │ │ ├── altr,msi-controller.yaml │ │ ├── altr,pcie-root-port.yaml │ │ ├── amd,versal2-mdb-host.yaml │ │ ├── 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,layerscape-pcie-ep.yaml │ │ ├── fsl,layerscape-pcie.yaml │ │ ├── fsl,mpc8xxx-pci.yaml │ │ ├── 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 │ │ ├── loongson.yaml │ │ ├── mbvl,gpex40-pcie.yaml │ │ ├── mediatek,mt7621-pcie.yaml │ │ ├── mediatek-pcie-cfg.yaml │ │ ├── mediatek-pcie-gen3.yaml │ │ ├── mediatek-pcie.txt │ │ ├── microchip,pcie-host.yaml │ │ ├── mvebu-pci.txt │ │ ├── nvidia,tegra194-pcie-ep.yaml │ │ ├── nvidia,tegra194-pcie.yaml │ │ ├── nvidia,tegra20-pcie.txt │ │ ├── pci-armada8k.txt │ │ ├── pci-ep-bus.yaml │ │ ├── pci-ep.yaml │ │ ├── pci-iommu.txt │ │ ├── pci-msi.txt │ │ ├── pci.txt │ │ ├── pcie-al.txt │ │ ├── plda,xpressrich3-axi-common.yaml │ │ ├── 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-common.yaml │ │ ├── rockchip-dw-pcie-ep.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 │ │ ├── starfive,jh7110-pcie.yaml │ │ ├── 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,ni.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 │ │ ├── airoha,en7581-pcie-phy.yaml │ │ ├── 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,imx8mp-hdmi-phy.yaml │ │ ├── fsl,imx8mq-usb-phy.yaml │ │ ├── fsl,imx8qm-hsio.yaml │ │ ├── fsl,imx8qm-lvds-phy.yaml │ │ ├── fsl,lynx-28g.yaml │ │ ├── fsl,mxs-usbphy.yaml │ │ ├── hisilicon,hi3660-usb3.yaml │ │ ├── hisilicon,hi3670-usb3.yaml │ │ ├── hisilicon,hi3798cv200-combphy.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,mt7988-xfi-tphy.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 │ │ ├── nuvoton,ma35d1-usb2-phy.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 │ │ ├── nxp,ptn3222.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-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-naneng-combphy.yaml │ │ ├── phy-rockchip-typec.txt │ │ ├── phy-rockchip-usbdp.yaml │ │ ├── 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-uniphy-pcie-phy.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,sata-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-hs-28nm.yaml │ │ ├── qcom,usb-hs-phy.yaml │ │ ├── qcom,usb-hsic-phy.yaml │ │ ├── qcom,usb-snps-femto-v2.yaml │ │ ├── qcom,usb-ss.yaml │ │ ├── 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,rk3228-hdmi-phy.yaml │ │ ├── rockchip,rk3288-dp-phy.yaml │ │ ├── rockchip,rk3399-emmc-phy.yaml │ │ ├── rockchip,rk3588-hdptx-phy.yaml │ │ ├── rockchip,rk3588-mipi-dcphy.yaml │ │ ├── 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,stm32mp25-combophy.yaml │ │ ├── st-spear-miphy.txt │ │ ├── starfive,jh7110-dphy-rx.yaml │ │ ├── starfive,jh7110-dphy-tx.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 │ │ ├── airoha,en7581-pinctrl.yaml │ │ ├── allwinner,sun4i-a10-pinctrl.yaml │ │ ├── allwinner,sun55i-a523-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 │ │ ├── amlogic,pinctrl-a4.yaml │ │ ├── apple,pinctrl.yaml │ │ ├── aspeed,ast2400-pinctrl.yaml │ │ ├── aspeed,ast2500-pinctrl.yaml │ │ ├── aspeed,ast2600-pinctrl.yaml │ │ ├── atmel,at91-pio4-pinctrl.txt │ │ ├── atmel,at91rm9200-pinctrl.yaml │ │ ├── awinic,aw9523-pinctrl.yaml │ │ ├── axis,artpec6-pinctrl.txt │ │ ├── berlin,pinctrl.txt │ │ ├── bitmain,bm1880-pinctrl.txt │ │ ├── brcm,bcm11351-pinctrl.yaml │ │ ├── brcm,bcm21664-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 │ │ ├── canaan,k230-pinctrl.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.yaml │ │ ├── fsl,imx7d-pinctrl.yaml │ │ ├── fsl,imx7ulp-pinctrl.txt │ │ ├── fsl,imx8m-pinctrl.yaml │ │ ├── fsl,imx8ulp-pinctrl.yaml │ │ ├── fsl,imx9-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,mt7988-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,mcp23s08.yaml │ │ ├── microchip,pic32-pinctrl.txt │ │ ├── microchip,sparx5-sgpio.yaml │ │ ├── mscc,ocelot-pinctrl.yaml │ │ ├── nuvoton,ma35d1-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-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.yaml │ │ ├── qcom,apq8084-pinctrl.yaml │ │ ├── qcom,ipq4019-pinctrl.yaml │ │ ├── qcom,ipq5018-tlmm.yaml │ │ ├── qcom,ipq5332-tlmm.yaml │ │ ├── qcom,ipq5424-tlmm.yaml │ │ ├── qcom,ipq6018-pinctrl.yaml │ │ ├── qcom,ipq8064-pinctrl.yaml │ │ ├── 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,msm8917-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,qcs615-tlmm.yaml │ │ ├── qcom,qcs8300-tlmm.yaml │ │ ├── qcom,qdu1000-tlmm.yaml │ │ ├── qcom,sa8775p-tlmm.yaml │ │ ├── qcom,sar2130p-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,sm4250-lpass-lpi-pinctrl.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,sm8750-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 │ │ ├── sophgo,cv1800-pinctrl.yaml │ │ ├── sophgo,sg2042-pinctrl.yaml │ │ ├── spacemit,k1-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 │ │ ├── thead,th1520-pinctrl.yaml │ │ ├── ti,da850-pupd.txt │ │ ├── ti,iodelay.txt │ │ ├── toshiba,visconti-pinctrl.yaml │ │ ├── xlnx,pinctrl-zynq.yaml │ │ ├── xlnx,versal-pinctrl.yaml │ │ └── xlnx,zynqmp-pinctrl.yaml │ ├── platform │ │ ├── acer,aspire1-ec.yaml │ │ ├── huawei,gaokun-ec.yaml │ │ ├── lenovo,yoga-c630-ec.yaml │ │ └── microsoft,surface-sam.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 │ │ ├── raspberrypi,bcm2835-power.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 │ │ │ ├── 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,max17201.yaml │ │ │ ├── maxim,max77693.yaml │ │ │ ├── maxim,max77705.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 │ │ │ ├── st,stc3117.yaml │ │ │ ├── stericsson,ab8500-btemp.yaml │ │ │ ├── stericsson,ab8500-chargalg.yaml │ │ │ ├── stericsson,ab8500-charger.yaml │ │ │ ├── stericsson,ab8500-fg.yaml │ │ │ ├── summit,smb347-charger.yaml │ │ │ ├── ti,lp8727.yaml │ │ │ ├── ti,twl6030-charger.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 │ │ │ ├── ecm.txt │ │ │ ├── interlaken-lac.txt │ │ │ ├── lbc.txt │ │ │ ├── mcm.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 │ │ ├── fsl,ptp.yaml │ │ ├── ptp-idt82p33.yaml │ │ ├── ptp-idtcm.yaml │ │ ├── ptp-ines.txt │ │ └── timestamper.txt │ ├── pwm │ │ ├── adi,axi-pwmgen.yaml │ │ ├── airoha,en7581-pwm.yaml │ │ ├── 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 │ │ ├── cirrus,ep9301-pwm.yaml │ │ ├── clk-pwm.yaml │ │ ├── fsl,vf610-ftm-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,berlin-pwm.yaml │ │ ├── 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-gpio.yaml │ │ ├── pwm-hibvt.txt │ │ ├── pwm-lp3943.txt │ │ ├── pwm-nexus-node.yaml │ │ ├── pwm-rockchip.yaml │ │ ├── pwm-samsung.yaml │ │ ├── pwm-sifive.yaml │ │ ├── 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 │ │ ├── sophgo,sg2042-pwm.yaml │ │ ├── spear-pwm.txt │ │ ├── sprd,ums512-pwm.yaml │ │ ├── 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 │ │ ├── allwinner,sun20i-d1-system-ldos.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 │ │ ├── lltc,ltc3676.yaml │ │ ├── lm363x-regulator.txt │ │ ├── lp872x.txt │ │ ├── ltc3589.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 │ │ ├── mediatek,mt6397-regulator.yaml │ │ ├── mediatek,mt6873-dvfsrc-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 │ │ ├── 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,qca6390-pmu.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 │ │ ├── rohm,bd96801-regulator.yaml │ │ ├── samsung,s2mpa01.yaml │ │ ├── samsung,s2mps11.yaml │ │ ├── samsung,s2mps13.yaml │ │ ├── samsung,s2mps14.yaml │ │ ├── samsung,s2mps15.yaml │ │ ├── samsung,s2mpu02.yaml │ │ ├── samsung,s2mpu05.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.yaml │ │ ├── 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 │ │ ├── vctrl-regulator.yaml │ │ ├── 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,sa8775p-pas.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,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-m4f-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 │ │ ├── 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 │ │ ├── spacemit.yaml │ │ ├── starfive.yaml │ │ ├── sunxi.yaml │ │ └── thead.yaml │ ├── rng │ │ ├── airoha,en7581-trng.yaml │ │ ├── amlogic,meson-rng.yaml │ │ ├── apm,x-gene-rng.yaml │ │ ├── arm-cctrng.yaml │ │ ├── atmel,at91-trng.yaml │ │ ├── brcm,bcm2835.yaml │ │ ├── brcm,bcm74110-rng.yaml │ │ ├── brcm,iproc-rng200.yaml │ │ ├── hisi-rng.txt │ │ ├── imx-rng.yaml │ │ ├── ingenic,rng.yaml │ │ ├── ingenic,trng.yaml │ │ ├── inside-secure,safexcel-eip76.yaml │ │ ├── intel,ixp46x-rng.yaml │ │ ├── microchip,pic32-rng.txt │ │ ├── microsoft,vmgenid.yaml │ │ ├── mtk-rng.yaml │ │ ├── nuvoton,npcm-rng.yaml │ │ ├── rockchip,rk3568-rng.yaml │ │ ├── rockchip,rk3588-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.yaml │ │ ├── amlogic,a4-rtc.yaml │ │ ├── amlogic,meson-vrtc.yaml │ │ ├── amlogic,meson6-rtc.yaml │ │ ├── arm,pl031.yaml │ │ ├── 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 │ │ ├── epson,rtc7301.yaml │ │ ├── epson,rx6110.txt │ │ ├── epson,rx8900.yaml │ │ ├── faraday,ftrtc010.yaml │ │ ├── fsl,ls-ftm-alarm.yaml │ │ ├── fsl,scu-rtc.yaml │ │ ├── fsl,stmp3xxx-rtc.yaml │ │ ├── haoyu,hym8563.yaml │ │ ├── imxdi-rtc.yaml │ │ ├── ingenic,rtc.yaml │ │ ├── intersil,isl12022.yaml │ │ ├── isil,isl12026.txt │ │ ├── isil,isl12057.txt │ │ ├── isil,isl1208.yaml │ │ ├── loongson,rtc.yaml │ │ ├── marvell,armada-380-rtc.yaml │ │ ├── marvell,pxa-rtc.yaml │ │ ├── maxim-ds1302.txt │ │ ├── mediatek,mt2712-rtc.yaml │ │ ├── mediatek,mt7622-rtc.yaml │ │ ├── microchip,mpfs-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.yaml │ │ ├── nxp,pcf2123.yaml │ │ ├── nxp,pcf2127.yaml │ │ ├── nxp,pcf85063.yaml │ │ ├── nxp,pcf8523.yaml │ │ ├── nxp,pcf85363.yaml │ │ ├── nxp,pcf8563.yaml │ │ ├── olpc-xo1-rtc.txt │ │ ├── qcom-pm8xxx-rtc.yaml │ │ ├── realtek,rtd119x.txt │ │ ├── renesas,rz-rtca3.yaml │ │ ├── renesas,rzn1-rtc.yaml │ │ ├── renesas,sh-rtc.yaml │ │ ├── rtc-cmos.txt │ │ ├── rtc-ds1307.yaml │ │ ├── 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 │ │ ├── sprd,sc2731-rtc.yaml │ │ ├── st,m41t80.yaml │ │ ├── st,m48t86.yaml │ │ ├── st,stm32-rtc.yaml │ │ ├── sunplus,sp7021-rtc.yaml │ │ ├── ti,bq32000.yaml │ │ ├── ti,k3-rtc.yaml │ │ ├── trivial-rtc.yaml │ │ ├── xgene-rtc.txt │ │ └── xlnx,zynqmp-rtc.yaml │ ├── scsi │ │ └── hisilicon-sas.txt │ ├── serial │ │ ├── 8250.yaml │ │ ├── 8250_omap.yaml │ │ ├── actions,owl-uart.yaml │ │ ├── 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.yaml │ │ ├── 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 │ │ ├── mvebu-uart.txt │ │ ├── nuvoton,ma35d1-serial.yaml │ │ ├── nvidia,tegra194-tcu.yaml │ │ ├── nvidia,tegra20-hsuart.yaml │ │ ├── nvidia,tegra264-utc.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-peripheral-props.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 │ │ ├── via,vt8500-uart.yaml │ │ └── 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 │ │ ├── altera │ │ │ └── altr,sys-mgr.yaml │ │ ├── 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,bcm2711-avs-monitor.yaml │ │ │ ├── brcm,bcm2835-pm.yaml │ │ │ └── brcm,bcm2835-vchiq.yaml │ │ ├── cirrus │ │ │ └── cirrus,ep9301-syscon.yaml │ │ ├── dove │ │ │ └── pmu.txt │ │ ├── fsl │ │ │ ├── cpm_qe │ │ │ │ ├── cpm.txt │ │ │ │ ├── cpm │ │ │ │ │ ├── brg.txt │ │ │ │ │ ├── i2c.txt │ │ │ │ │ ├── pic.txt │ │ │ │ │ └── usb.txt │ │ │ │ ├── fsl,cpm1-scc-qmc.yaml │ │ │ │ ├── fsl,cpm1-tsa.yaml │ │ │ │ ├── fsl,qe-firmware.yaml │ │ │ │ ├── fsl,qe-ic.yaml │ │ │ │ ├── fsl,qe-muram.yaml │ │ │ │ ├── fsl,qe-si.yaml │ │ │ │ ├── fsl,qe-siram.yaml │ │ │ │ ├── fsl,qe-tsa.yaml │ │ │ │ ├── fsl,qe-ucc-qmc.yaml │ │ │ │ ├── fsl,qe.yaml │ │ │ │ ├── fsl,ucc-hdlc.yaml │ │ │ │ ├── gpio.txt │ │ │ │ ├── qe │ │ │ │ │ ├── firmware.txt │ │ │ │ │ ├── par_io.txt │ │ │ │ │ ├── pincfg.txt │ │ │ │ │ ├── ucc.txt │ │ │ │ │ └── usb.txt │ │ │ │ ├── serial.txt │ │ │ │ └── uqe_serial.txt │ │ │ ├── fsl,bman-portal.yaml │ │ │ ├── fsl,bman.yaml │ │ │ ├── fsl,layerscape-dcfg.yaml │ │ │ ├── fsl,layerscape-scfg.yaml │ │ │ ├── fsl,ls1028a-reset.yaml │ │ │ ├── fsl,qman-fqd.yaml │ │ │ ├── fsl,qman-portal.yaml │ │ │ ├── fsl,qman.yaml │ │ │ ├── fsl,rcpm.yaml │ │ │ └── guts.txt │ │ ├── hisilicon │ │ │ └── hisilicon,hi3660-usb3-otg-bc.yaml │ │ ├── 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 │ │ │ └── intel,lgm-syscon.yaml │ │ ├── litex │ │ │ └── litex,soc-controller.yaml │ │ ├── loongson │ │ │ └── loongson,ls2k-pmc.yaml │ │ ├── mediatek │ │ │ ├── devapc.yaml │ │ │ ├── mediatek,ccorr.yaml │ │ │ ├── mediatek,mt7986-wo-ccif.yaml │ │ │ ├── mediatek,mt8183-dvfsrc.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 │ │ │ └── microchip,sparx5-cpu-syscon.yaml │ │ ├── mobileye │ │ │ └── mobileye,eyeq5-olb.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,r9a09g057-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 │ │ ├── sprd │ │ │ └── sprd,sc9863a-glbregs.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,am654-serdes-ctrl.yaml │ │ │ ├── ti,j721e-system-controller.yaml │ │ │ ├── ti,pruss.yaml │ │ │ └── wkup-m3-ipc.yaml │ │ └── xilinx │ │ │ ├── xilinx.yaml │ │ │ └── xlnx,vcu-settings.yaml │ ├── sound │ │ ├── ac97-bus.txt │ │ ├── adi,adau1372.yaml │ │ ├── adi,adau1373.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 │ │ ├── ak4118.txt │ │ ├── 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.yaml │ │ ├── amlogic,gx-sound-card.yaml │ │ ├── amlogic,t9015.yaml │ │ ├── apple,mca.yaml │ │ ├── arm,pl041.yaml │ │ ├── armada-370db-audio.txt │ │ ├── asahi-kasei,ak4104.yaml │ │ ├── asahi-kasei,ak4375.yaml │ │ ├── asahi-kasei,ak4458.yaml │ │ ├── asahi-kasei,ak4554.yaml │ │ ├── asahi-kasei,ak4613.yaml │ │ ├── asahi-kasei,ak4619.yaml │ │ ├── asahi-kasei,ak4642.yaml │ │ ├── asahi-kasei,ak5558.yaml │ │ ├── atmel,asoc-wm8904.yaml │ │ ├── atmel,at91-ssc.yaml │ │ ├── atmel,at91sam9g20ek-wm8731.yaml │ │ ├── atmel,sam9x5-wm8731-audio.yaml │ │ ├── atmel,sama5d2-classd.yaml │ │ ├── atmel,sama5d2-i2s.yaml │ │ ├── atmel,sama5d2-pdmic.yaml │ │ ├── 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,cs4270.yaml │ │ ├── cirrus,cs4271.yaml │ │ ├── cirrus,cs42l42.yaml │ │ ├── cirrus,cs42l43.yaml │ │ ├── cirrus,cs42l51.yaml │ │ ├── cirrus,cs42l84.yaml │ │ ├── cirrus,cs42xx8.yaml │ │ ├── cirrus,cs530x.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 │ │ ├── cs42l52.txt │ │ ├── cs42l56.txt │ │ ├── cs42l73.txt │ │ ├── cs43130.txt │ │ ├── cs4341.txt │ │ ├── cs4349.txt │ │ ├── cs53l30.txt │ │ ├── da7218.txt │ │ ├── da9055.txt │ │ ├── dai-common.yaml │ │ ├── dai-params.yaml │ │ ├── davinci-evm-audio.txt │ │ ├── davinci-mcasp-audio.yaml │ │ ├── davinci-mcbsp.yaml │ │ ├── dialog,da7219.yaml │ │ ├── dlg,da7213.yaml │ │ ├── dmic-codec.yaml │ │ ├── eukrea-tlv320.txt │ │ ├── everest,es71x4.yaml │ │ ├── everest,es7241.yaml │ │ ├── everest,es8316.yaml │ │ ├── everest,es8326.yaml │ │ ├── everest,es8328.yaml │ │ ├── fsl,aud2htx.yaml │ │ ├── fsl,audmix.yaml │ │ ├── fsl,easrc.yaml │ │ ├── fsl,esai.yaml │ │ ├── fsl,imx-asrc.yaml │ │ ├── fsl,imx-audio-es8328.yaml │ │ ├── fsl,imx95-cm7-sof.yaml │ │ ├── fsl,micfil.yaml │ │ ├── fsl,mqs.yaml │ │ ├── fsl,qmc-audio.yaml │ │ ├── fsl,rpmsg.yaml │ │ ├── fsl,sai.yaml │ │ ├── fsl,saif.yaml │ │ ├── fsl,sgtl5000.yaml │ │ ├── fsl,sof-cpu.yaml │ │ ├── fsl,spdif.yaml │ │ ├── fsl,ssi.yaml │ │ ├── fsl,xcvr.yaml │ │ ├── fsl-asoc-card.yaml │ │ ├── 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 │ │ ├── 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-hdmi.yaml │ │ ├── imx-audio-sgtl5000.txt │ │ ├── imx-audmux.yaml │ │ ├── infineon,peb2466.yaml │ │ ├── ingenic,aic.yaml │ │ ├── ingenic,codec.yaml │ │ ├── intel,keembay-i2s.yaml │ │ ├── invensense,ics43432.yaml │ │ ├── irondevice,sma1303.yaml │ │ ├── irondevice,sma1307.yaml │ │ ├── linux,bt-sco.yaml │ │ ├── linux,spdif.yaml │ │ ├── loongson,ls-audio-card.yaml │ │ ├── loongson,ls2k1000-i2s.yaml │ │ ├── marvell,mmp-sspa.yaml │ │ ├── marvell,pxa2xx-ac97.txt │ │ ├── max98373.txt │ │ ├── max9860.txt │ │ ├── maxim,max9759.yaml │ │ ├── maxim,max98088.yaml │ │ ├── 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,mt2701-wm8960.yaml │ │ ├── mediatek,mt7986-afe.yaml │ │ ├── mediatek,mt7986-wm8960.yaml │ │ ├── mediatek,mt8188-afe.yaml │ │ ├── mediatek,mt8188-mt6359.yaml │ │ ├── mediatek,mt8365-afe.yaml │ │ ├── mediatek,mt8365-mt6357.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 │ │ ├── mscc,zl38060.yaml │ │ ├── mt2701-cs42448.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 │ │ ├── neofidelity,ntp8835.yaml │ │ ├── neofidelity,ntp8918.yaml │ │ ├── nokia,rx51.txt │ │ ├── nuvoton,nau8315.yaml │ │ ├── nuvoton,nau8325.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.yaml │ │ ├── nvidia,tegra20-das.yaml │ │ ├── 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.yaml │ │ ├── nxp,lpc3220-i2s.yaml │ │ ├── nxp,tfa9879.yaml │ │ ├── nxp,tfa989x.yaml │ │ ├── nxp,uda1342.yaml │ │ ├── omap-abe-twl6040.txt │ │ ├── omap-dmic.txt │ │ ├── omap-mcbsp.txt │ │ ├── omap-twl4030.txt │ │ ├── option,gtm601.yaml │ │ ├── pcm1789.txt │ │ ├── pcm179x.txt │ │ ├── pcm186x.txt │ │ ├── pcm3060.txt │ │ ├── pcm5102a.txt │ │ ├── qcom,apq8016-sbc-sndcard.yaml │ │ ├── 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-codec.yaml │ │ ├── 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,wcd937x-sdw.yaml │ │ ├── qcom,wcd937x.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,rt1019.yaml │ │ ├── realtek,rt5514.yaml │ │ ├── realtek,rt5616.yaml │ │ ├── realtek,rt5631.yaml │ │ ├── realtek,rt5640.yaml │ │ ├── realtek,rt5645.yaml │ │ ├── realtek,rt5659.yaml │ │ ├── realtek,rt5677.yaml │ │ ├── realtek,rt5682.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,rk3036-codec.yaml │ │ ├── rockchip,rk3288-hdmi-analog.txt │ │ ├── rockchip,rk3308-codec.yaml │ │ ├── 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 │ │ ├── rt1308.txt │ │ ├── rt274.txt │ │ ├── rt5651.txt │ │ ├── rt5660.txt │ │ ├── rt5663.txt │ │ ├── rt5665.txt │ │ ├── rt5668.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 │ │ ├── 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 │ │ ├── sprd,pcm-platform.yaml │ │ ├── sprd,sc9860-mcdt.yaml │ │ ├── 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 │ │ ├── tas5720.txt │ │ ├── tda7419.txt │ │ ├── tdm-slot.txt │ │ ├── test-component.yaml │ │ ├── ti,ads117x.txt │ │ ├── ti,j721e-cpb-audio.yaml │ │ ├── ti,j721e-cpb-ivi-audio.yaml │ │ ├── ti,omap4-mcpdm.yaml │ │ ├── ti,pcm1681.yaml │ │ ├── ti,pcm3168a.yaml │ │ ├── ti,pcm512x.yaml │ │ ├── ti,pcm6240.yaml │ │ ├── ti,src4xxx.yaml │ │ ├── ti,tas2562.yaml │ │ ├── ti,tas2770.yaml │ │ ├── ti,tas2781.yaml │ │ ├── ti,tas27xx.yaml │ │ ├── ti,tas5086.txt │ │ ├── ti,tas57xx.yaml │ │ ├── ti,tas5805m.yaml │ │ ├── ti,tas6424.txt │ │ ├── ti,tlv320adc3xxx.yaml │ │ ├── ti,tlv320adcx140.yaml │ │ ├── ti,tlv320aic32x4.yaml │ │ ├── ti,tlv320aic3x.yaml │ │ ├── ti,tlv320dac3100.yaml │ │ ├── ti,tpa6130a2.yaml │ │ ├── ti,ts3a227e.yaml │ │ ├── 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,wm8750.yaml │ │ ├── wlf,wm8753.yaml │ │ ├── wlf,wm8776.yaml │ │ ├── wlf,wm8782.yaml │ │ ├── wlf,wm8804.yaml │ │ ├── wlf,wm8903.yaml │ │ ├── wlf,wm8904.yaml │ │ ├── wlf,wm8940.yaml │ │ ├── wlf,wm8960.yaml │ │ ├── wlf,wm8961.yaml │ │ ├── wlf,wm8962.yaml │ │ ├── wlf,wm8974.yaml │ │ ├── wlf,wm8978.yaml │ │ ├── wlf,wm8994.yaml │ │ ├── wm8741.txt │ │ ├── wm8770.txt │ │ ├── xlnx,audio-formatter.yaml │ │ ├── xlnx,i2s.yaml │ │ ├── xlnx,spdif.yaml │ │ └── xmos,xvf3500.yaml │ ├── soundwire │ │ ├── qcom,soundwire.yaml │ │ └── soundwire-controller.yaml │ ├── spi │ │ ├── adi,axi-spi-engine.yaml │ │ ├── airoha,en7581-snand.yaml │ │ ├── allwinner,sun4i-a10-spi.yaml │ │ ├── allwinner,sun6i-a31-spi.yaml │ │ ├── amlogic,a1-spifc.yaml │ │ ├── amlogic,meson-gx-spicc.yaml │ │ ├── amlogic,meson6-spifc.yaml │ │ ├── apple,spi.yaml │ │ ├── arm,pl022-peripheral-props.yaml │ │ ├── aspeed,ast2600-fmc.yaml │ │ ├── atmel,at91rm9200-spi.yaml │ │ ├── atmel,quadspi.yaml │ │ ├── brcm,bcm2835-aux-spi.yaml │ │ ├── brcm,bcm2835-spi.yaml │ │ ├── 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 │ │ ├── cirrus,ep9301-spi.yaml │ │ ├── fsl,dspi-peripheral-props.yaml │ │ ├── fsl,dspi.yaml │ │ ├── fsl,espi.yaml │ │ ├── fsl,spi-fsl-qspi.yaml │ │ ├── fsl,spi.yaml │ │ ├── fsl-imx-cspi.yaml │ │ ├── hpe,gxp-spifi.yaml │ │ ├── ibm,spi-fsi.yaml │ │ ├── icpdas-lp8841-spi-rtc.txt │ │ ├── ingenic,spi.yaml │ │ ├── jcore,spi.txt │ │ ├── loongson,ls2k-spi.yaml │ │ ├── marvell,armada-3700-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 │ │ ├── nxp,sc18is.yaml │ │ ├── omap-spi.yaml │ │ ├── qca,ar934x-spi.yaml │ │ ├── qcom,spi-geni-qcom.yaml │ │ ├── qcom,spi-qcom-qspi.yaml │ │ ├── qcom,spi-qpic-snand.yaml │ │ ├── qcom,spi-qup.yaml │ │ ├── ralink,mt7621-spi.yaml │ │ ├── realtek,rtl-spi.yaml │ │ ├── realtek,rtl9301-snand.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-ath79.txt │ │ ├── spi-bus.txt │ │ ├── spi-cadence.yaml │ │ ├── spi-clps711x.txt │ │ ├── spi-controller.yaml │ │ ├── spi-davinci.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-sg2044-nor.yaml │ │ ├── spi-sifive.yaml │ │ ├── spi-sunplus-sp7021.yaml │ │ ├── spi-xilinx.yaml │ │ ├── spi-xtensa-xtfpga.txt │ │ ├── spi-zynqmp-qspi.yaml │ │ ├── spi_altera.txt │ │ ├── spi_oc_tiny.txt │ │ ├── sprd,sc9860-spi.yaml │ │ ├── sprd,spi-adi.yaml │ │ ├── sqi-pic32.txt │ │ ├── st,ssc-spi.yaml │ │ ├── st,stm32-qspi.yaml │ │ ├── st,stm32-spi.yaml │ │ ├── st,stm32mp25-ospi.yaml │ │ ├── ti,qspi.yaml │ │ └── xlnx,zynq-qspi.yaml │ ├── spmi │ │ ├── hisilicon,hisi-spmi-controller.yaml │ │ ├── mtk,spmi-mtk-pmif.yaml │ │ ├── qcom,spmi-pmic-arb.yaml │ │ ├── qcom,x1e80100-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,tsensor.yaml │ │ ├── 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,stih407-thermal.yaml │ │ ├── st,stm32-thermal.yaml │ │ ├── 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.yaml │ │ ├── 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.yaml │ │ ├── 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.yaml │ │ ├── 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.yaml │ │ ├── nxp,sysctr-timer.yaml │ │ ├── nxp,tpm-timer.yaml │ │ ├── ralink,cevt-systick.yaml │ │ ├── ralink,rt2880-timer.yaml │ │ ├── rda,8810pl-timer.yaml │ │ ├── realtek,otto-timer.yaml │ │ ├── renesas,cmt.yaml │ │ ├── renesas,em-sti.yaml │ │ ├── renesas,mtu2.yaml │ │ ├── renesas,ostm.yaml │ │ ├── renesas,rz-mtu3.yaml │ │ ├── renesas,tmu.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 │ │ ├── sprd,sc9860-timer.yaml │ │ ├── st,nomadik-mtu.yaml │ │ ├── st,spear-timer.txt │ │ ├── st,stih407-lpc │ │ ├── st,stm32-timer.yaml │ │ ├── thead,c900-aclint-mtimer.yaml │ │ ├── ti,da830-timer.yaml │ │ ├── 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 │ ├── trigger-source │ │ └── pwm-trigger.yaml │ ├── trivial-devices.yaml │ ├── ufs │ │ ├── cdns,ufshc.yaml │ │ ├── hisilicon,ufs.yaml │ │ ├── mediatek,ufs.yaml │ │ ├── qcom,ufs.yaml │ │ ├── renesas,ufs.yaml │ │ ├── rockchip,rk3576-ufshc.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 │ │ ├── chipidea,usb2-common.yaml │ │ ├── chipidea,usb2-imx.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,ls1028a.yaml │ │ ├── fsl,usb2.yaml │ │ ├── fsl,usbmisc.yaml │ │ ├── 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,usb2514.yaml │ │ ├── microchip,usb5744.yaml │ │ ├── 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 │ │ ├── parade,ps8830.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-common.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,tusb1046.yaml │ │ ├── ti,tusb73x0-pci.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.yaml │ │ ├── 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 │ │ ├── airoha,en7581-wdt.yaml │ │ ├── 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,ast2400-wdt.yaml │ │ ├── atmel,at91rm9200-wdt.yaml │ │ ├── atmel,at91sam9-wdt.yaml │ │ ├── atmel,sama5d4-wdt.yaml │ │ ├── brcm,bcm7038-wdt.yaml │ │ ├── brcm,kona-wdt.yaml │ │ ├── cdns,wdt-r1p2.yaml │ │ ├── cirrus,ep9301-wdt.yaml │ │ ├── cnxt,cx92755-wdt.yaml │ │ ├── dlg,da9062-watchdog.yaml │ │ ├── faraday,ftwdt010.yaml │ │ ├── fsl,scu-wdt.yaml │ │ ├── fsl-imx-wdt.yaml │ │ ├── fsl-imx7ulp-wdt.yaml │ │ ├── img,pdc-wdt.yaml │ │ ├── intel,keembay-wdt.yaml │ │ ├── kontron,sl28cpld-wdt.yaml │ │ ├── lantiq-wdt.txt │ │ ├── linux,wdt-gpio.yaml │ │ ├── loongson,ls1x-wdt.yaml │ │ ├── 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,lpc1850-wwdt.yaml │ │ ├── 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,davinci-wdt.yaml │ │ ├── ti,rti-wdt.yaml │ │ ├── toshiba,visconti-wdt.yaml │ │ ├── ts4800-wdt.txt │ │ ├── watchdog.yaml │ │ ├── xlnx,versal-wwdt.yaml │ │ ├── xlnx,xps-timebase-wdt.yaml │ │ ├── zii,rave-sp-wdt.yaml │ │ └── zii,rave-wdt.yaml │ ├── 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 │ │ ├── mhuv3-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,c3-peripherals-clkc.h │ │ ├── amlogic,c3-pll-clkc.h │ │ ├── amlogic,c3-scmi-clkc.h │ │ ├── amlogic,s4-peripherals-clkc.h │ │ ├── amlogic,s4-pll-clkc.h │ │ ├── aspeed,ast2700-scu.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 │ │ ├── cirrus,ep9301-syscon.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,pxa1908.h │ │ ├── marvell,pxa1928.h │ │ ├── marvell,pxa910.h │ │ ├── maxim,max77620.h │ │ ├── maxim,max77686.h │ │ ├── maxim,max77802.h │ │ ├── maxim,max9485.h │ │ ├── mediatek,mt6735-apmixedsys.h │ │ ├── mediatek,mt6735-imgsys.h │ │ ├── mediatek,mt6735-infracfg.h │ │ ├── mediatek,mt6735-mfgcfg.h │ │ ├── mediatek,mt6735-pericfg.h │ │ ├── mediatek,mt6735-topckgen.h │ │ ├── mediatek,mt6735-vdecsys.h │ │ ├── mediatek,mt6735-vencsys.h │ │ ├── mediatek,mt6795-clk.h │ │ ├── mediatek,mt7981-clk.h │ │ ├── mediatek,mt7988-clk.h │ │ ├── mediatek,mt8188-clk.h │ │ ├── mediatek,mt8365-clk.h │ │ ├── mediatek,mtmips-sysc.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 │ │ ├── nxp,imx95-clock.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,dsi-phy-28nm.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,ipq-cmn-pll.h │ │ ├── qcom,ipq5332-gcc.h │ │ ├── qcom,ipq5424-gcc.h │ │ ├── qcom,ipq9574-gcc.h │ │ ├── qcom,ipq9574-nsscc.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,qca8k-nsscc.h │ │ ├── qcom,qcm2290-gpucc.h │ │ ├── qcom,qcs615-gcc.h │ │ ├── qcom,qcs8300-camcc.h │ │ ├── qcom,qcs8300-gcc.h │ │ ├── qcom,qcs8300-gpucc.h │ │ ├── qcom,qdu1000-ecpricc.h │ │ ├── qcom,qdu1000-gcc.h │ │ ├── qcom,rpmcc.h │ │ ├── qcom,rpmh.h │ │ ├── qcom,sa8775p-camcc.h │ │ ├── qcom,sa8775p-dispcc.h │ │ ├── qcom,sa8775p-gcc.h │ │ ├── qcom,sa8775p-gpucc.h │ │ ├── qcom,sa8775p-videocc.h │ │ ├── qcom,sar2130p-gcc.h │ │ ├── qcom,sar2130p-gpucc.h │ │ ├── qcom,sc8280xp-camcc.h │ │ ├── qcom,sc8280xp-lpasscc.h │ │ ├── qcom,sdx75-gcc.h │ │ ├── qcom,sm4450-camcc.h │ │ ├── qcom,sm4450-dispcc.h │ │ ├── qcom,sm4450-gcc.h │ │ ├── qcom,sm4450-gpucc.h │ │ ├── qcom,sm6115-dispcc.h │ │ ├── qcom,sm6115-gpucc.h │ │ ├── qcom,sm6115-lpasscc.h │ │ ├── qcom,sm6125-gpucc.h │ │ ├── qcom,sm6350-camcc.h │ │ ├── qcom,sm6375-dispcc.h │ │ ├── qcom,sm6375-gcc.h │ │ ├── qcom,sm6375-gpucc.h │ │ ├── qcom,sm7150-camcc.h │ │ ├── qcom,sm7150-dispcc.h │ │ ├── qcom,sm7150-gcc.h │ │ ├── qcom,sm7150-videocc.h │ │ ├── qcom,sm8150-camcc.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-camcc.h │ │ ├── qcom,sm8650-dispcc.h │ │ ├── qcom,sm8650-gcc.h │ │ ├── qcom,sm8650-gpucc.h │ │ ├── qcom,sm8650-tcsr.h │ │ ├── qcom,sm8650-videocc.h │ │ ├── qcom,sm8750-dispcc.h │ │ ├── qcom,sm8750-gcc.h │ │ ├── qcom,sm8750-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-cpg-mssr.h │ │ ├── r8a7791-cpg-mssr.h │ │ ├── r8a7792-cpg-mssr.h │ │ ├── r8a7793-cpg-mssr.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,r9a08g045-vbattb.h │ │ ├── renesas,r9a09g047-cpg.h │ │ ├── renesas,r9a09g057-cpg.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,rk3528-cru.h │ │ ├── rockchip,rk3562-cru.h │ │ ├── rockchip,rk3576-cru.h │ │ ├── rockchip,rk3588-cru.h │ │ ├── rockchip,rk808.h │ │ ├── rockchip,rv1126-cru.h │ │ ├── rv1108-cru.h │ │ ├── s5pv210-audss.h │ │ ├── s5pv210.h │ │ ├── samsung,exynos2200-cmu.h │ │ ├── samsung,exynos7870-cmu.h │ │ ├── samsung,exynos8895.h │ │ ├── samsung,exynos990.h │ │ ├── samsung,exynosautov9.h │ │ ├── samsung,exynosautov920.h │ │ ├── samsung,s2mps11.h │ │ ├── samsung,s3c64xx-clock.h │ │ ├── sh73a0-clock.h │ │ ├── sifive-fu540-prci.h │ │ ├── sifive-fu740-prci.h │ │ ├── sophgo,cv1800.h │ │ ├── sophgo,sg2042-clkgen.h │ │ ├── sophgo,sg2042-pll.h │ │ ├── sophgo,sg2042-rpgate.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 │ │ ├── sun55i-a523-ccu.h │ │ ├── sun55i-a523-r-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 │ │ ├── thead,th1520-clk-ap.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 │ │ ├── i3c │ │ └── i3c.h │ │ ├── iio │ │ ├── adc │ │ │ ├── adi,ad4695.h │ │ │ ├── at91-sama5d2_adc.h │ │ │ ├── fsl-imx25-gcq.h │ │ │ ├── gehc,pmc-adc.h │ │ │ ├── ingenic,adc.h │ │ │ ├── mediatek,mt6357-auxadc.h │ │ │ ├── mediatek,mt6358-auxadc.h │ │ │ ├── mediatek,mt6359-auxadc.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 │ │ ├── mediatek,mt8183.h │ │ ├── mediatek,mt8195.h │ │ ├── qcom,icc.h │ │ ├── qcom,ipq5332.h │ │ ├── qcom,ipq5424.h │ │ ├── qcom,ipq9574.h │ │ ├── qcom,msm8909.h │ │ ├── qcom,msm8916.h │ │ ├── qcom,msm8937.h │ │ ├── qcom,msm8939.h │ │ ├── qcom,msm8953.h │ │ ├── qcom,msm8974.h │ │ ├── qcom,msm8976.h │ │ ├── qcom,msm8996-cbf.h │ │ ├── qcom,msm8996.h │ │ ├── qcom,osm-l3.h │ │ ├── qcom,qcm2290.h │ │ ├── qcom,qcs404.h │ │ ├── qcom,qcs615-rpmh.h │ │ ├── qcom,qcs8300-rpmh.h │ │ ├── qcom,qdu1000-rpmh.h │ │ ├── qcom,rpm-icc.h │ │ ├── qcom,sa8775p-rpmh.h │ │ ├── qcom,sar2130p-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,sm8750-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-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 │ │ ├── amlogic,pinctrl.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-cv1800b.h │ │ ├── pinctrl-cv1812h.h │ │ ├── pinctrl-cv18xx.h │ │ ├── pinctrl-sg2000.h │ │ ├── pinctrl-sg2002.h │ │ ├── pinctrl-sg2042.h │ │ ├── pinctrl-sg2044.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 │ │ ├── renesas,r9a09g047-pinctrl.h │ │ ├── renesas,r9a09g057-pinctrl.h │ │ ├── rockchip.h │ │ ├── rzg2l-pinctrl.h │ │ ├── rzn1-pinctrl.h │ │ ├── rzv2m-pinctrl.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 │ │ ├── allwinner,sun8i-v853-ppu.h │ │ ├── amlogic,a4-pwrc.h │ │ ├── amlogic,a5-pwrc.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,mt6735-power-controller.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,rk3576-power.h │ │ ├── rockchip,rv1126-power.h │ │ ├── starfive,jh7110-pmu.h │ │ ├── summit,smb347-charger.h │ │ ├── tegra186-powergate.h │ │ ├── tegra194-powergate.h │ │ ├── tegra234-powergate.h │ │ ├── thead,th1520-power.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 │ │ ├── st,stm32mp25-regulator.h │ │ └── ti,tps62864.h │ │ ├── reset │ │ ├── actions,s500-reset.h │ │ ├── actions,s700-reset.h │ │ ├── actions,s900-reset.h │ │ ├── airoha,en7581-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-audio-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 │ │ ├── aspeed,ast2700-scu.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-audiomix.h │ │ ├── imx8mp-reset.h │ │ ├── imx8mq-reset.h │ │ ├── imx8ulp-pcc-reset.h │ │ ├── k210-rst.h │ │ ├── mediatek,mt6735-infracfg.h │ │ ├── mediatek,mt6735-mfgcfg.h │ │ ├── mediatek,mt6735-pericfg.h │ │ ├── mediatek,mt6735-vdecsys.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,ipq5424-gcc.h │ │ ├── qcom,ipq9574-gcc.h │ │ ├── qcom,ipq9574-nsscc.h │ │ ├── qcom,mmcc-apq8084.h │ │ ├── qcom,mmcc-msm8960.h │ │ ├── qcom,mmcc-msm8974.h │ │ ├── qcom,qca8k-nsscc.h │ │ ├── qcom,sar2130p-gpucc.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,rk3528-cru.h │ │ ├── rockchip,rk3562-cru.h │ │ ├── rockchip,rk3576-cru.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 │ │ ├── sun55i-a523-ccu.h │ │ ├── sun55i-a523-r-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 │ │ ├── qe-fsl,tsa.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-graph.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 │ │ ├── qcom,wcd934x.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 │ ├── git-filter-branch │ ├── 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 │ ├── Makefile │ ├── 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-614-plus.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-vstar-core1.dtsi │ │ ├── sun8i-a33-vstar.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-netcube-kumquat.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 │ │ ├── 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-mtjefferson.dts │ │ ├── aspeed-bmc-ampere-mtmitchell.dts │ │ ├── aspeed-bmc-arm-stardragon4800-rep2.dts │ │ ├── aspeed-bmc-asrock-e3c246d4i.dts │ │ ├── aspeed-bmc-asrock-e3c256d4i.dts │ │ ├── aspeed-bmc-asrock-romed8hm3.dts │ │ ├── aspeed-bmc-asrock-spc621d8hm3.dts │ │ ├── aspeed-bmc-asrock-x570d4u.dts │ │ ├── aspeed-bmc-asus-x4tf.dts │ │ ├── aspeed-bmc-bytedance-g220a.dts │ │ ├── aspeed-bmc-delta-ahe50dc.dts │ │ ├── aspeed-bmc-facebook-bletchley.dts │ │ ├── aspeed-bmc-facebook-catalina.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-harma.dts │ │ ├── aspeed-bmc-facebook-minerva.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-blueridge-4u.dts │ │ ├── aspeed-bmc-ibm-blueridge.dts │ │ ├── aspeed-bmc-ibm-bonnell.dts │ │ ├── aspeed-bmc-ibm-everest.dts │ │ ├── aspeed-bmc-ibm-fuji.dts │ │ ├── aspeed-bmc-ibm-rainier-1s4u.dts │ │ ├── aspeed-bmc-ibm-rainier-4u.dts │ │ ├── aspeed-bmc-ibm-rainier.dts │ │ ├── aspeed-bmc-ibm-sbp1.dts │ │ ├── aspeed-bmc-ibm-system1.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-power11-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 │ │ ├── bcm2166x-common.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-ac3200.dts │ │ ├── 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-ac5300.dts │ │ ├── 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-genexis-xg6846b.dts │ │ ├── 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 │ │ ├── ep93xx-bk3.dts │ │ ├── ep93xx-edb9302.dts │ │ ├── ep93xx-ts7250.dts │ │ └── ep93xx.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-sam9x75_curiosity.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-sama7d65_curiosity.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 │ │ ├── sam9x7.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 │ │ ├── sama7d65-pinfunc.h │ │ ├── sama7d65.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-colibri-v1.2-aster.dts │ │ │ ├── imx6dl-colibri-v1.2-eval-v3.dts │ │ │ ├── imx6dl-colibri-v1.2-iris-v2.dts │ │ │ ├── imx6dl-colibri-v1.2-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-pdk2.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-ads2.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-apalis-v1.2-eval-v1.2.dts │ │ │ ├── imx6q-apalis-v1.2-eval.dts │ │ │ ├── imx6q-apalis-v1.2-ixora-v1.1.dts │ │ │ ├── imx6q-apalis-v1.2-ixora-v1.2.dts │ │ │ ├── imx6q-apalis-v1.2-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-ads2.dts │ │ │ ├── imx6q-kontron-samx6i.dtsi │ │ │ ├── imx6q-kp-tpc.dts │ │ │ ├── imx6q-kp.dtsi │ │ │ ├── imx6q-logicpd.dts │ │ │ ├── imx6q-lxr.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-v1.2.dtsi │ │ │ ├── imx6qdl-apalis.dtsi │ │ │ ├── imx6qdl-apf6.dtsi │ │ │ ├── imx6qdl-apf6dev.dtsi │ │ │ ├── imx6qdl-aristainetos.dtsi │ │ │ ├── imx6qdl-aristainetos2.dtsi │ │ │ ├── imx6qdl-colibri-v1.2.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-ads2.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-clara2e-a.dts │ │ │ ├── imx6sll-kobo-clara2e-b.dts │ │ │ ├── imx6sll-kobo-clara2e-common.dtsi │ │ │ ├── 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-var-som-concerto.dts │ │ │ ├── imx6ul-var-som.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-seeed-npi-dev-board-emmc.dts │ │ │ ├── imx6ull-seeed-npi-dev-board-nand.dts │ │ │ ├── imx6ull-seeed-npi-dev-board.dtsi │ │ │ ├── imx6ull-seeed-npi.dtsi │ │ │ ├── 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-uti260b.dts │ │ │ ├── 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-btt3-0.dts │ │ │ ├── imx28-btt3-1.dts │ │ │ ├── imx28-btt3-2.dts │ │ │ ├── imx28-btt3.dtsi │ │ │ ├── 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 │ │ ├── msm8226-motorola-falcon.dts │ │ ├── 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-apq8026-samsung-milletwifi.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-ms013g.dts │ │ ├── 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-samsung-hlte.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-htc-m8.dts │ │ ├── qcom-msm8974pro-oneplus-bacon.dts │ │ ├── qcom-msm8974pro-samsung-klte-common.dtsi │ │ ├── qcom-msm8974pro-samsung-klte.dts │ │ ├── qcom-msm8974pro-samsung-kltechn.dts │ │ ├── qcom-msm8974pro-sony-xperia-shinano-aries.dts │ │ ├── qcom-msm8974pro-sony-xperia-shinano-castor.dts │ │ ├── qcom-msm8974pro-sony-xperia-shinano-common.dtsi │ │ ├── qcom-msm8974pro-sony-xperia-shinano-leo.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-relfor-saib.dts │ │ ├── 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 │ │ ├── stm32h747i-disco.dts │ │ ├── stm32h750.dtsi │ │ ├── stm32h750i-art-pi.dts │ │ ├── stm32mp13-pinctrl.dtsi │ │ ├── stm32mp131.dtsi │ │ ├── stm32mp133.dtsi │ │ ├── stm32mp133c-prihmb.dts │ │ ├── stm32mp135.dtsi │ │ ├── stm32mp135f-dhcor-dhsbc.dts │ │ ├── stm32mp135f-dk.dts │ │ ├── stm32mp13xc.dtsi │ │ ├── stm32mp13xf.dtsi │ │ ├── stm32mp13xx-dhcor-som.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 │ │ ├── stm32mp151c-mecio1r0.dts │ │ ├── stm32mp151c-mect1s.dts │ │ ├── stm32mp151c-plyaqm.dts │ │ ├── stm32mp153.dtsi │ │ ├── stm32mp153c-dhcom-drc02.dts │ │ ├── stm32mp153c-dhcor-drc-compact.dts │ │ ├── stm32mp153c-lxa-fairytux2-gen1.dts │ │ ├── stm32mp153c-lxa-fairytux2-gen2.dts │ │ ├── stm32mp153c-lxa-fairytux2.dtsi │ │ ├── stm32mp153c-lxa-tac-gen3.dts │ │ ├── stm32mp153c-mecio1r1.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 │ │ ├── stm32mp15x-mecio1-io.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 │ ├── Makefile │ ├── actions │ │ ├── s700-cubieboard7.dts │ │ ├── s700.dtsi │ │ ├── s900-bubblegum-96.dts │ │ └── s900.dtsi │ ├── airoha │ │ ├── en7581-evb.dts │ │ └── en7581.dtsi │ ├── allwinner │ │ ├── axp803.dtsi │ │ ├── sun50i-a100-allwinner-perf1.dts │ │ ├── sun50i-a100-cpu-opp.dtsi │ │ ├── sun50i-a100.dtsi │ │ ├── sun50i-a133-liontron-h-a133l.dts │ │ ├── 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-h313-tanix-tx1.dts │ │ ├── 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-cpu-opp.dtsi │ │ ├── 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-h618-yuzukihd-chameleon.dts │ │ ├── sun50i-h64-remix-mini-pc.dts │ │ ├── sun50i-h700-anbernic-rg35xx-2024.dts │ │ ├── sun50i-h700-anbernic-rg35xx-h.dts │ │ ├── sun50i-h700-anbernic-rg35xx-plus.dts │ │ └── sun50i-h700-anbernic-rg35xx-sp.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-a4-a113l2-ba400.dts │ │ ├── amlogic-a4-common.dtsi │ │ ├── amlogic-a4.dtsi │ │ ├── amlogic-a5-a113x2-av400.dts │ │ ├── amlogic-a5.dtsi │ │ ├── amlogic-c3-c302x-aw409.dts │ │ ├── amlogic-c3-c308l-aw419.dts │ │ ├── amlogic-c3.dtsi │ │ ├── amlogic-t7-a311d2-an400.dts │ │ ├── amlogic-t7-a311d2-khadas-vim4.dts │ │ ├── amlogic-t7-reset.h │ │ ├── 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-mnt-reform2.dts │ │ ├── meson-g12b-bananapi-cm4.dtsi │ │ ├── meson-g12b-bananapi.dtsi │ │ ├── meson-g12b-dreambox-one.dts │ │ ├── meson-g12b-dreambox-two.dts │ │ ├── meson-g12b-dreambox.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-vero4k.dts │ │ ├── meson-gxl-s905x.dtsi │ │ ├── meson-gxl.dtsi │ │ ├── meson-gxlx-s905l-p271.dts │ │ ├── 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-ts050.dtso │ │ ├── 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 │ │ ├── s5l8960x-5s.dtsi │ │ ├── s5l8960x-air1.dtsi │ │ ├── s5l8960x-common.dtsi │ │ ├── s5l8960x-j71.dts │ │ ├── s5l8960x-j72.dts │ │ ├── s5l8960x-j73.dts │ │ ├── s5l8960x-j85.dts │ │ ├── s5l8960x-j85m.dts │ │ ├── s5l8960x-j86.dts │ │ ├── s5l8960x-j86m.dts │ │ ├── s5l8960x-j87.dts │ │ ├── s5l8960x-j87m.dts │ │ ├── s5l8960x-mini2.dtsi │ │ ├── s5l8960x-mini3.dtsi │ │ ├── s5l8960x-n51.dts │ │ ├── s5l8960x-n53.dts │ │ ├── s5l8960x-opp.dtsi │ │ ├── s5l8960x-pmgr.dtsi │ │ ├── s5l8960x.dtsi │ │ ├── s5l8965x-opp.dtsi │ │ ├── s800-0-3-common.dtsi │ │ ├── s800-0-3-pmgr.dtsi │ │ ├── s800-0-3.dtsi │ │ ├── s8000-j71s.dts │ │ ├── s8000-j72s.dts │ │ ├── s8000-n66.dts │ │ ├── s8000-n69u.dts │ │ ├── s8000-n71.dts │ │ ├── s8000.dtsi │ │ ├── s8001-common.dtsi │ │ ├── s8001-j127.dts │ │ ├── s8001-j128.dts │ │ ├── s8001-j98a-j99a.dtsi │ │ ├── s8001-j98a.dts │ │ ├── s8001-j99a.dts │ │ ├── s8001-pmgr.dtsi │ │ ├── s8001-pro.dtsi │ │ ├── s8001.dtsi │ │ ├── s8003-j71t.dts │ │ ├── s8003-j72t.dts │ │ ├── s8003-n66m.dts │ │ ├── s8003-n69.dts │ │ ├── s8003-n71m.dts │ │ ├── s8003.dtsi │ │ ├── s800x-6s.dtsi │ │ ├── s800x-ipad5.dtsi │ │ ├── s800x-se.dtsi │ │ ├── spi1-nvram.dtsi │ │ ├── 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 │ │ ├── t7000-6.dtsi │ │ ├── t7000-common.dtsi │ │ ├── t7000-handheld.dtsi │ │ ├── t7000-j42d.dts │ │ ├── t7000-j96.dts │ │ ├── t7000-j97.dts │ │ ├── t7000-mini4.dtsi │ │ ├── t7000-n102.dts │ │ ├── t7000-n56.dts │ │ ├── t7000-n61.dts │ │ ├── t7000-pmgr.dtsi │ │ ├── t7000.dtsi │ │ ├── t7001-air2.dtsi │ │ ├── t7001-j81.dts │ │ ├── t7001-j82.dts │ │ ├── t7001-pmgr.dtsi │ │ ├── t7001.dtsi │ │ ├── t8010-7.dtsi │ │ ├── t8010-common.dtsi │ │ ├── t8010-d10.dts │ │ ├── t8010-d101.dts │ │ ├── t8010-d11.dts │ │ ├── t8010-d111.dts │ │ ├── t8010-ipad6.dtsi │ │ ├── t8010-ipad7.dtsi │ │ ├── t8010-j171.dts │ │ ├── t8010-j172.dts │ │ ├── t8010-j71b.dts │ │ ├── t8010-j72b.dts │ │ ├── t8010-n112.dts │ │ ├── t8010-pmgr.dtsi │ │ ├── t8010.dtsi │ │ ├── t8011-common.dtsi │ │ ├── t8011-j105a.dts │ │ ├── t8011-j120.dts │ │ ├── t8011-j121.dts │ │ ├── t8011-j207.dts │ │ ├── t8011-j208.dts │ │ ├── t8011-pmgr.dtsi │ │ ├── t8011-pro2.dtsi │ │ ├── t8011.dtsi │ │ ├── t8012-j132.dts │ │ ├── t8012-j137.dts │ │ ├── t8012-j140a.dts │ │ ├── t8012-j140k.dts │ │ ├── t8012-j152f.dts │ │ ├── t8012-j160.dts │ │ ├── t8012-j174.dts │ │ ├── t8012-j185.dts │ │ ├── t8012-j185f.dts │ │ ├── t8012-j213.dts │ │ ├── t8012-j214k.dts │ │ ├── t8012-j215.dts │ │ ├── t8012-j223.dts │ │ ├── t8012-j230k.dts │ │ ├── t8012-j680.dts │ │ ├── t8012-j780.dts │ │ ├── t8012-jxxx.dtsi │ │ ├── t8012-pmgr.dtsi │ │ ├── t8012-touchbar.dtsi │ │ ├── t8012.dtsi │ │ ├── t8015-8.dtsi │ │ ├── t8015-8plus.dtsi │ │ ├── t8015-common.dtsi │ │ ├── t8015-d20.dts │ │ ├── t8015-d201.dts │ │ ├── t8015-d21.dts │ │ ├── t8015-d211.dts │ │ ├── t8015-d22.dts │ │ ├── t8015-d221.dts │ │ ├── t8015-pmgr.dtsi │ │ ├── t8015-x.dtsi │ │ ├── t8015.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 │ │ ├── morello-fvp.dts │ │ ├── morello-sdp.dts │ │ ├── morello.dtsi │ │ ├── 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 │ ├── blaize │ │ ├── blaize-blzp1600-cb2.dts │ │ ├── blaize-blzp1600-som.dtsi │ │ └── blaize-blzp1600.dtsi │ ├── broadcom │ │ ├── bcm2711-rpi-4-b.dts │ │ ├── bcm2711-rpi-400.dts │ │ ├── bcm2711-rpi-cm4-io.dts │ │ ├── bcm2712-d-rpi-5-b.dts │ │ ├── bcm2712-rpi-5-b.dts │ │ ├── bcm2712.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-zero-2-w.dts │ │ ├── bcmbca │ │ │ ├── bcm4906-netgear-r8000p.dts │ │ │ ├── bcm4906-tplink-archer-c2300-v1.dts │ │ │ ├── bcm4906-zyxel-ex3510b.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 │ │ ├── exynos8895-dreamlte.dts │ │ ├── exynos8895-pinctrl.dtsi │ │ ├── exynos8895.dtsi │ │ ├── exynos9810-pinctrl.dtsi │ │ ├── exynos9810-starlte.dts │ │ ├── exynos9810.dtsi │ │ ├── exynos990-c1s.dts │ │ ├── exynos990-pinctrl.dtsi │ │ ├── exynos990-r8s.dts │ │ ├── exynos990-x1s-common.dtsi │ │ ├── exynos990-x1s.dts │ │ ├── exynos990-x1slte.dts │ │ ├── exynos990.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-pixel-common.dtsi │ │ │ ├── gs101-raven.dts │ │ │ └── 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-var3.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-rev2.dtsi │ │ ├── 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-cm40.dtsi │ │ ├── imx8-ss-cm41.dtsi │ │ ├── imx8-ss-conn.dtsi │ │ ├── imx8-ss-ddr.dtsi │ │ ├── imx8-ss-dma.dtsi │ │ ├── imx8-ss-gpu0.dtsi │ │ ├── imx8-ss-hsio.dtsi │ │ ├── imx8-ss-img.dtsi │ │ ├── imx8-ss-lsio.dtsi │ │ ├── imx8-ss-lvds0.dtsi │ │ ├── imx8-ss-lvds1.dtsi │ │ ├── imx8-ss-mipi0.dtsi │ │ ├── imx8-ss-mipi1.dtsi │ │ ├── imx8-ss-vpu.dtsi │ │ ├── imx8dx-colibri-aster.dts │ │ ├── imx8dx-colibri-eval-v3.dts │ │ ├── imx8dx-colibri-iris-v2.dts │ │ ├── imx8dx-colibri-iris.dts │ │ ├── imx8dx-colibri.dtsi │ │ ├── imx8dx.dtsi │ │ ├── imx8dxl-evk.dts │ │ ├── imx8dxl-ss-adma.dtsi │ │ ├── imx8dxl-ss-conn.dtsi │ │ ├── imx8dxl-ss-ddr.dtsi │ │ ├── imx8dxl-ss-hsio.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-iot-gateway.dts │ │ ├── imx8mm-kontron-bl-osm-s.dts │ │ ├── imx8mm-kontron-bl.dts │ │ ├── imx8mm-kontron-dl.dtso │ │ ├── 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-peb-av-10.dtso │ │ ├── imx8mm-phyboard-polis-peb-eval-01.dtso │ │ ├── imx8mm-phyboard-polis-rdk.dts │ │ ├── imx8mm-phycore-no-eth.dtso │ │ ├── imx8mm-phycore-no-spiflash.dtso │ │ ├── imx8mm-phycore-rpmsg.dtso │ │ ├── imx8mm-phycore-som.dtsi │ │ ├── imx8mm-phygate-tauri-l-rs232-rs232.dtso │ │ ├── imx8mm-phygate-tauri-l-rs232-rs485.dtso │ │ ├── imx8mm-phygate-tauri-l-rs232-rts-cts.dtso │ │ ├── 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-ucm-som.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-gw75xx-0x.dts │ │ ├── imx8mm-venice-gw75xx.dtsi │ │ ├── imx8mm-venice-gw7901.dts │ │ ├── imx8mm-venice-gw7902.dts │ │ ├── imx8mm-venice-gw7903.dts │ │ ├── imx8mm-venice-gw7904.dts │ │ ├── imx8mm-verdin-dahlia.dtsi │ │ ├── imx8mm-verdin-dev.dtsi │ │ ├── imx8mm-verdin-ivy.dtsi │ │ ├── imx8mm-verdin-mallow.dtsi │ │ ├── imx8mm-verdin-nonwifi-dahlia.dts │ │ ├── imx8mm-verdin-nonwifi-dev.dts │ │ ├── imx8mm-verdin-nonwifi-ivy.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-ivy.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-aristainetos3-adpismarc.dts │ │ ├── imx8mp-aristainetos3-helios-lvds.dtso │ │ ├── imx8mp-aristainetos3-helios.dts │ │ ├── imx8mp-aristainetos3-proton2s.dts │ │ ├── imx8mp-aristainetos3a-som-v1.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-drc02.dts │ │ ├── imx8mp-dhcom-pdk2.dts │ │ ├── imx8mp-dhcom-pdk3.dts │ │ ├── imx8mp-dhcom-picoitx.dts │ │ ├── imx8mp-dhcom-som.dtsi │ │ ├── imx8mp-evk-imx-lvds-hdmi-common.dtsi │ │ ├── imx8mp-evk-lvds0-imx-dlvds-hdmi-channel0.dtso │ │ ├── imx8mp-evk-lvds0-imx-lvds-hdmi-common.dtsi │ │ ├── imx8mp-evk-lvds0-imx-lvds-hdmi.dtso │ │ ├── imx8mp-evk-lvds1-imx-dlvds-hdmi-channel0.dtso │ │ ├── imx8mp-evk-lvds1-imx-lvds-hdmi-common.dtsi │ │ ├── imx8mp-evk-lvds1-imx-lvds-hdmi.dtso │ │ ├── imx8mp-evk-mx8-dlvds-lcd1.dtso │ │ ├── imx8mp-evk-pcie-ep.dtso │ │ ├── imx8mp-evk.dts │ │ ├── imx8mp-icore-mx8mp-edimm2.2.dts │ │ ├── imx8mp-icore-mx8mp.dtsi │ │ ├── imx8mp-iota2-lumpy.dts │ │ ├── imx8mp-kontron-bl-osm-s.dts │ │ ├── imx8mp-kontron-dl.dtso │ │ ├── imx8mp-kontron-osm-s.dtsi │ │ ├── imx8mp-kontron-smarc-eval-carrier.dts │ │ ├── imx8mp-kontron-smarc.dtsi │ │ ├── imx8mp-msc-sm2s-14N0600E.dtsi │ │ ├── imx8mp-msc-sm2s-ep1.dts │ │ ├── imx8mp-msc-sm2s.dtsi │ │ ├── imx8mp-navqp.dts │ │ ├── imx8mp-nitrogen-smarc-som.dtsi │ │ ├── imx8mp-nitrogen-smarc-universal-board.dts │ │ ├── imx8mp-nominal.dtsi │ │ ├── imx8mp-phyboard-pollux-rdk.dts │ │ ├── imx8mp-phycore-no-eth.dtso │ │ ├── imx8mp-phycore-som.dtsi │ │ ├── imx8mp-pinfunc.h │ │ ├── imx8mp-skov-basic.dts │ │ ├── imx8mp-skov-reva.dtsi │ │ ├── imx8mp-skov-revb-hdmi.dts │ │ ├── imx8mp-skov-revb-lt6.dts │ │ ├── imx8mp-skov-revb-mi1010ait-1cp1.dts │ │ ├── imx8mp-skov-revc-bd500.dts │ │ ├── imx8mp-skov-revc-tian-g07017.dts │ │ ├── imx8mp-tqma8mpql-mba8mp-ras314.dts │ │ ├── imx8mp-tqma8mpql-mba8mpxl-lvds-g133han01.dtso │ │ ├── imx8mp-tqma8mpql-mba8mpxl-lvds.dtso │ │ ├── imx8mp-tqma8mpql-mba8mpxl.dts │ │ ├── imx8mp-tqma8mpql.dtsi │ │ ├── imx8mp-var-som-symphony.dts │ │ ├── imx8mp-var-som.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-gw75xx-2x.dts │ │ ├── imx8mp-venice-gw75xx.dtsi │ │ ├── imx8mp-venice-gw82xx-2x.dts │ │ ├── imx8mp-venice-gw82xx.dtsi │ │ ├── imx8mp-verdin-dahlia.dtsi │ │ ├── imx8mp-verdin-dev.dtsi │ │ ├── imx8mp-verdin-ivy.dtsi │ │ ├── imx8mp-verdin-mallow.dtsi │ │ ├── imx8mp-verdin-nonwifi-dahlia.dts │ │ ├── imx8mp-verdin-nonwifi-dev.dts │ │ ├── imx8mp-verdin-nonwifi-ivy.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-ivy.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-audio.dtsi │ │ ├── imx8qm-ss-conn.dtsi │ │ ├── imx8qm-ss-dma.dtsi │ │ ├── imx8qm-ss-hsio.dtsi │ │ ├── imx8qm-ss-img.dtsi │ │ ├── imx8qm-ss-lsio.dtsi │ │ ├── imx8qm-ss-lvds.dtsi │ │ ├── imx8qm-ss-mipi.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-pcie-ep.dtso │ │ ├── imx8qxp-mek.dts │ │ ├── imx8qxp-ss-adma.dtsi │ │ ├── imx8qxp-ss-conn.dtsi │ │ ├── imx8qxp-ss-hsio.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-14x14-evk.dts │ │ ├── imx93-9x9-qsb-i3c.dtso │ │ ├── imx93-9x9-qsb.dts │ │ ├── imx93-kontron-bl-osm-s.dts │ │ ├── imx93-kontron-osm-s.dtsi │ │ ├── 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 │ │ ├── imx95-15x15-evk.dts │ │ ├── imx95-19x19-evk.dts │ │ ├── imx95-clock.h │ │ ├── imx95-pinfunc.h │ │ ├── imx95-power.h │ │ ├── imx95.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 │ │ ├── s32g3.dtsi │ │ ├── s32g399a-rdb3.dts │ │ ├── s32gxxxa-evb.dtsi │ │ ├── s32gxxxa-rdb.dtsi │ │ ├── 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-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-cf-base.dts │ │ ├── cn9130-cf-pro.dts │ │ ├── cn9130-cf.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-sr-som.dtsi │ │ ├── cn9130.dtsi │ │ ├── cn9131-cf-solidwan.dts │ │ ├── cn9131-db-B.dts │ │ ├── cn9131-db-comexpress.dtsi │ │ ├── cn9131-db.dts │ │ ├── cn9131-db.dtsi │ │ ├── cn9132-clearfog.dts │ │ ├── cn9132-db-B.dts │ │ ├── cn9132-db.dts │ │ ├── cn9132-db.dtsi │ │ └── cn9132-sr-cex7.dtsi │ ├── mediatek │ │ ├── files-6.6 │ │ │ ├── mt7981.dtsi │ │ │ ├── mt7981b-openwrt-one.dts │ │ │ ├── mt7988a-bananapi-bpi-r4.dts │ │ │ ├── mt7988a-bananapi-bpi-r4.dtsi │ │ │ └── mt7988a.dtsi │ │ ├── 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-cudy-wr3000-v1.dts │ │ ├── mt7981b-openwrt-one.dts │ │ ├── mt7981b-xiaomi-ax3000t.dts │ │ ├── mt7981b.dtsi │ │ ├── mt7986a-acelink-ew-7886cax.dts │ │ ├── mt7986a-bananapi-bpi-r3-emmc.dtso │ │ ├── mt7986a-bananapi-bpi-r3-mini.dts │ │ ├── mt7986a-bananapi-bpi-r3-nand.dtso │ │ ├── mt7986a-bananapi-bpi-r3-nor.dtso │ │ ├── mt7986a-bananapi-bpi-r3-sata.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-emmc.dtso │ │ ├── mt7988a-bananapi-bpi-r4-sd.dtso │ │ ├── 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-chinchou-sku0.dts │ │ ├── mt8186-corsola-chinchou-sku1.dts │ │ ├── mt8186-corsola-chinchou-sku16.dts │ │ ├── mt8186-corsola-chinchou.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-starmie-sku0.dts │ │ ├── mt8186-corsola-starmie-sku1.dts │ │ ├── mt8186-corsola-starmie.dtsi │ │ ├── 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-voltorb-sku589824.dts │ │ ├── mt8186-corsola-voltorb-sku589825.dts │ │ ├── mt8186-corsola-voltorb.dtsi │ │ ├── mt8186-corsola.dtsi │ │ ├── mt8186-evb.dts │ │ ├── mt8186.dtsi │ │ ├── mt8188-evb.dts │ │ ├── mt8188-geralt-ciri-sku0.dts │ │ ├── mt8188-geralt-ciri-sku1.dts │ │ ├── mt8188-geralt-ciri-sku2.dts │ │ ├── mt8188-geralt-ciri-sku3.dts │ │ ├── mt8188-geralt-ciri-sku4.dts │ │ ├── mt8188-geralt-ciri-sku5.dts │ │ ├── mt8188-geralt-ciri-sku6.dts │ │ ├── mt8188-geralt-ciri-sku7.dts │ │ ├── mt8188-geralt-ciri.dtsi │ │ ├── mt8188-geralt.dtsi │ │ ├── mt8188.dtsi │ │ ├── mt8192-asurada-hayato-r1.dts │ │ ├── mt8192-asurada-spherion-r0.dts │ │ ├── mt8192-asurada.dtsi │ │ ├── mt8192-evb.dts │ │ ├── mt8192.dtsi │ │ ├── mt8195-cherry-dojo-r1.dts │ │ ├── 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 │ │ ├── mt8370-genio-510-evk.dts │ │ ├── mt8370.dtsi │ │ ├── mt8390-genio-700-evk.dts │ │ ├── mt8390-genio-common.dtsi │ │ ├── mt8395-genio-1200-evk.dts │ │ ├── mt8395-kontron-3-5-sbc-i1200.dts │ │ ├── mt8395-radxa-nio-12l-8-hd-panel.dtso │ │ ├── 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+p3701-0008.dts │ │ ├── tegra234-p3737-0000+p3701.dtsi │ │ ├── tegra234-p3740-0002+p3701-0008.dts │ │ ├── tegra234-p3767.dtsi │ │ ├── tegra234-p3768-0000+p3767-0000.dts │ │ ├── tegra234-p3768-0000+p3767-0005.dts │ │ ├── tegra234-p3768-0000+p3767.dtsi │ │ ├── tegra234-sim-vdk.dts │ │ └── tegra234.dtsi │ ├── qcom │ │ ├── apq8016-sbc-d3-camera-mezzanine.dts │ │ ├── apq8016-sbc-usb-host.dtso │ │ ├── apq8016-sbc.dts │ │ ├── apq8016-schneider-hmibsc.dts │ │ ├── apq8039-t2.dts │ │ ├── apq8094-sony-xperia-kitakami-karin_windy.dts │ │ ├── apq8096-db820c.dts │ │ ├── apq8096-ifc6640.dts │ │ ├── ipq5018-rdp432-c2.dts │ │ ├── ipq5018-tplink-archer-ax55-v1.dts │ │ ├── ipq5018.dtsi │ │ ├── ipq5332-rdp-common.dtsi │ │ ├── ipq5332-rdp441.dts │ │ ├── ipq5332-rdp442.dts │ │ ├── ipq5332-rdp468.dts │ │ ├── ipq5332-rdp474.dts │ │ ├── ipq5332.dtsi │ │ ├── ipq5424-rdp466.dts │ │ ├── ipq5424.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-lg-c50.dts │ │ ├── msm8916-lg-m216.dts │ │ ├── msm8916-longcheer-l8150.dts │ │ ├── msm8916-longcheer-l8910.dts │ │ ├── msm8916-modem-qdsp6.dtsi │ │ ├── msm8916-motorola-common.dtsi │ │ ├── msm8916-motorola-harpia.dts │ │ ├── msm8916-motorola-osprey.dts │ │ ├── msm8916-motorola-surnia.dts │ │ ├── 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-j3-common.dtsi │ │ ├── msm8916-samsung-j3ltetw.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-wt86518.dts │ │ ├── msm8916-wingtech-wt86528.dts │ │ ├── msm8916-wingtech-wt865x8.dtsi │ │ ├── msm8916-wingtech-wt88047.dts │ │ ├── msm8916-yiming-uz801v3.dts │ │ ├── msm8916.dtsi │ │ ├── msm8917-xiaomi-riva.dts │ │ ├── msm8917.dtsi │ │ ├── msm8929-pm8916.dtsi │ │ ├── msm8929-wingtech-wt82918hd.dts │ │ ├── msm8929.dtsi │ │ ├── msm8939-huawei-kiwi.dts │ │ ├── msm8939-longcheer-l9100.dts │ │ ├── msm8939-pm8916.dtsi │ │ ├── msm8939-samsung-a7.dts │ │ ├── msm8939-sony-xperia-kanuti-tulip.dts │ │ ├── msm8939-wingtech-wt82918.dts │ │ ├── msm8939-wingtech-wt82918.dtsi │ │ ├── msm8939-wingtech-wt82918hd.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-lg-h815.dts │ │ ├── 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 │ │ ├── pm8937.dtsi │ │ ├── pm8950.dtsi │ │ ├── pm8953.dtsi │ │ ├── pm8994.dtsi │ │ ├── pm8998.dtsi │ │ ├── pmd8028.dtsi │ │ ├── pmi632.dtsi │ │ ├── pmi8950.dtsi │ │ ├── pmi8994.dtsi │ │ ├── pmi8996.dtsi │ │ ├── pmi8998.dtsi │ │ ├── pmih0108.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 │ │ ├── qcm6490-shift-otter.dts │ │ ├── qcs404-evb-1000.dts │ │ ├── qcs404-evb-4000.dts │ │ ├── qcs404-evb.dtsi │ │ ├── qcs404.dtsi │ │ ├── qcs615-ride.dts │ │ ├── qcs615.dtsi │ │ ├── qcs6490-rb3gen2.dts │ │ ├── qcs8300-ride.dts │ │ ├── qcs8300.dtsi │ │ ├── qcs8550-aim300-aiot.dts │ │ ├── qcs8550-aim300.dtsi │ │ ├── qcs8550.dtsi │ │ ├── qcs9100-ride-r3.dts │ │ ├── qcs9100-ride.dts │ │ ├── qdu1000-idp.dts │ │ ├── qdu1000.dtsi │ │ ├── qrb2210-rb1.dts │ │ ├── qrb4210-rb2.dts │ │ ├── qrb5165-rb5-vision-mezzanine.dtso │ │ ├── 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-r3.dts │ │ ├── sa8775p-ride.dts │ │ ├── sa8775p-ride.dtsi │ │ ├── sa8775p.dtsi │ │ ├── sar2130p-qar2130p.dts │ │ ├── sar2130p.dtsi │ │ ├── sc7180-acer-aspire1.dts │ │ ├── sc7180-firmware-tfa.dtsi │ │ ├── sc7180-idp.dts │ │ ├── sc7180-lite.dtsi │ │ ├── sc7180-trogdor-clamshell.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-detachable.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-huawei-gaokun3.dts │ │ ├── sc8280xp-lenovo-thinkpad-x13s.dts │ │ ├── sc8280xp-microsoft-arcata.dts │ │ ├── sc8280xp-microsoft-blackrock.dts │ │ ├── sc8280xp-pmics.dtsi │ │ ├── sc8280xp.dtsi │ │ ├── sda660-inforce-ifc6560.dts │ │ ├── sdm450-lenovo-tbx605f.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.dtso │ │ ├── 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 │ │ ├── sm7325-nothing-spacewar.dts │ │ ├── sm7325.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-samsung-q5q.dts │ │ ├── sm8550-sony-xperia-yodo-pdx234.dts │ │ ├── sm8550.dtsi │ │ ├── sm8650-hdk-display-card.dtso │ │ ├── sm8650-hdk.dts │ │ ├── sm8650-mtp.dts │ │ ├── sm8650-qrd.dts │ │ ├── sm8650.dtsi │ │ ├── sm8750-mtp.dts │ │ ├── sm8750-pmics.dtsi │ │ ├── sm8750-qrd.dts │ │ ├── sm8750.dtsi │ │ ├── x1e001de-devkit.dts │ │ ├── x1e78100-lenovo-thinkpad-t14s.dts │ │ ├── x1e80100-asus-vivobook-s15.dts │ │ ├── x1e80100-crd.dts │ │ ├── x1e80100-dell-xps13-9345.dts │ │ ├── x1e80100-hp-omnibook-x14.dts │ │ ├── x1e80100-lenovo-yoga-slim7x.dts │ │ ├── x1e80100-microsoft-romulus.dtsi │ │ ├── x1e80100-microsoft-romulus13.dts │ │ ├── x1e80100-microsoft-romulus15.dts │ │ ├── x1e80100-pmics.dtsi │ │ ├── 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-function-expansion.dtso │ │ ├── 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-cpu.dts │ │ ├── r8a779g0-white-hawk-cpu.dtsi │ │ ├── r8a779g0-white-hawk.dts │ │ ├── r8a779g0.dtsi │ │ ├── r8a779g2-white-hawk-single.dts │ │ ├── r8a779g2.dtsi │ │ ├── r8a779g3-sparrow-hawk.dts │ │ ├── r8a779g3-white-hawk-single.dts │ │ ├── r8a779g3.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-du-adv7513.dtso │ │ ├── r9a07g043u11-smarc.dts │ │ ├── r9a07g044.dtsi │ │ ├── r9a07g044c1.dtsi │ │ ├── r9a07g044c2-smarc-cru-csi-ov5645.dtso │ │ ├── r9a07g044c2-smarc.dts │ │ ├── r9a07g044c2.dtsi │ │ ├── r9a07g044l1.dtsi │ │ ├── r9a07g044l2-remi-pi.dts │ │ ├── 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-pmod1-type-3a.dtso │ │ ├── r9a08g045s33-smarc.dts │ │ ├── r9a08g045s33.dtsi │ │ ├── r9a09g011-v2mevk2.dts │ │ ├── r9a09g011.dtsi │ │ ├── r9a09g047.dtsi │ │ ├── r9a09g047e37.dtsi │ │ ├── r9a09g047e57-smarc.dts │ │ ├── r9a09g047e57.dtsi │ │ ├── r9a09g057.dtsi │ │ ├── r9a09g057h44-rzv2h-evk.dts │ │ ├── r9a09g057h48-kakip.dts │ │ ├── renesas-smarc2.dtsi │ │ ├── rz-smarc-common.dtsi │ │ ├── rz-smarc-cru-csi-ov5645.dtsi │ │ ├── rz-smarc-du-adv7513.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 │ │ ├── rzg3e-smarc-som.dtsi │ │ ├── rzg3s-smarc-som.dtsi │ │ ├── rzg3s-smarc-switches.h │ │ ├── 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-ard-audio-da7212.dtso │ │ ├── white-hawk-common.dtsi │ │ ├── white-hawk-cpu-common.dtsi │ │ ├── white-hawk-csi-dsi.dtsi │ │ ├── white-hawk-ethernet.dtsi │ │ └── white-hawk-single.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-firefly-jd4-core-mb.dts │ │ ├── px30-firefly-jd4-core.dtsi │ │ ├── px30-ringneck-haikou-lvds-9904379.dtso │ │ ├── px30-ringneck-haikou-video-demo.dtso │ │ ├── px30-ringneck-haikou.dts │ │ ├── px30-ringneck.dtsi │ │ ├── px30.dtsi │ │ ├── rk3308-bpi-p2-pro.dts │ │ ├── rk3308-evb.dts │ │ ├── rk3308-roc-cc.dts │ │ ├── rk3308-rock-pi-s.dts │ │ ├── rk3308-rock-s0.dts │ │ ├── rk3308.dtsi │ │ ├── rk3318-a95x-z2.dts │ │ ├── rk3326-anbernic-rg351m.dts │ │ ├── rk3326-anbernic-rg351m.dtsi │ │ ├── rk3326-anbernic-rg351v.dts │ │ ├── rk3326-gameforce-chi.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-r2.dtsi │ │ ├── rk3328-nanopi-r2c-plus.dts │ │ ├── rk3328-nanopi-r2c.dts │ │ ├── rk3328-nanopi-r2c.dtsi │ │ ├── rk3328-nanopi-r2s-plus.dts │ │ ├── rk3328-nanopi-r2s.dts │ │ ├── rk3328-nanopi-r2s.dtsi │ │ ├── rk3328-orangepi-r1-plus-lts.dts │ │ ├── rk3328-orangepi-r1-plus.dts │ │ ├── rk3328-orangepi-r1-plus.dtsi │ │ ├── rk3328-roc-cc.dts │ │ ├── rk3328-roc-pc.dts │ │ ├── rk3328-roc.dtsi │ │ ├── rk3328-rock-pi-e.dts │ │ ├── rk3328-rock64.dts │ │ ├── rk3328.dtsi │ │ ├── rk3368-evb-act8846.dts │ │ ├── rk3368-evb.dtsi │ │ ├── rk3368-geekbox.dts │ │ ├── rk3368-lba3368.dts │ │ ├── rk3368-lion-haikou.dts │ │ ├── rk3368-lion.dtsi │ │ ├── rk3368-orion-r68-meta.dts │ │ ├── rk3368-px5-evb.dts │ │ ├── rk3368-r88.dts │ │ ├── rk3368.dtsi │ │ ├── rk3399-base.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-m4.dtsi │ │ ├── rk3399-nanopi-m4b.dts │ │ ├── rk3399-nanopi-neo4.dts │ │ ├── rk3399-nanopi-r4s-enterprise.dts │ │ ├── rk3399-nanopi-r4s.dts │ │ ├── rk3399-nanopi-r4s.dtsi │ │ ├── rk3399-nanopi4.dtsi │ │ ├── rk3399-op1.dtsi │ │ ├── rk3399-orangepi.dts │ │ ├── rk3399-pinebook-pro.dts │ │ ├── rk3399-pinephone-pro.dts │ │ ├── rk3399-puma-haikou-video-demo.dtso │ │ ├── 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-s.dtsi │ │ ├── rk3399-sapphire-excavator.dts │ │ ├── rk3399-sapphire.dts │ │ ├── rk3399-sapphire.dtsi │ │ ├── rk3399-t.dtsi │ │ ├── rk3399.dtsi │ │ ├── rk3399pro-rock-pi-n10.dts │ │ ├── rk3399pro-vmarc-som.dtsi │ │ ├── rk3528-pinctrl.dtsi │ │ ├── rk3528-radxa-e20c.dts │ │ ├── rk3528.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-base.dtsi │ │ ├── rk3566-bigtreetech-cb2-manta.dts │ │ ├── rk3566-bigtreetech-cb2.dtsi │ │ ├── rk3566-bigtreetech-pi2.dts │ │ ├── rk3566-box-demo.dts │ │ ├── rk3566-lckfb-tspi.dts │ │ ├── rk3566-lubancat-1.dts │ │ ├── rk3566-nanopi-r3s.dts │ │ ├── rk3566-odroid-m1s.dts │ │ ├── rk3566-orangepi-3b-v1.1.dts │ │ ├── rk3566-orangepi-3b-v2.1.dts │ │ ├── rk3566-orangepi-3b.dtsi │ │ ├── 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-rgb20sx.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-radxa-zero-3.dtsi │ │ ├── rk3566-radxa-zero-3e.dts │ │ ├── rk3566-radxa-zero-3w.dts │ │ ├── rk3566-roc-pc.dts │ │ ├── rk3566-rock-3c.dts │ │ ├── rk3566-soquartz-blade.dts │ │ ├── rk3566-soquartz-cm4.dts │ │ ├── rk3566-soquartz-model-a.dts │ │ ├── rk3566-soquartz.dtsi │ │ ├── rk3566.dtsi │ │ ├── rk3566t.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-mecsbc.dts │ │ ├── rk3568-nanopi-r5c.dts │ │ ├── rk3568-nanopi-r5s.dts │ │ ├── rk3568-nanopi-r5s.dtsi │ │ ├── rk3568-odroid-m1.dts │ │ ├── rk3568-photonicat.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-rock-3b.dts │ │ ├── rk3568-wolfvision-pf5-display-vz.dtso │ │ ├── rk3568-wolfvision-pf5-display.dtsi │ │ ├── rk3568-wolfvision-pf5-io-expander.dtso │ │ ├── rk3568-wolfvision-pf5.dts │ │ ├── rk3568.dtsi │ │ ├── rk356x-base.dtsi │ │ ├── rk3576-armsom-sige5.dts │ │ ├── rk3576-evb1-v10.dts │ │ ├── rk3576-pinctrl.dtsi │ │ ├── rk3576-roc-pc.dts │ │ ├── rk3576-rock-4d.dts │ │ ├── rk3576.dtsi │ │ ├── rk3582-radxa-e52c.dts │ │ ├── rk3588-armsom-lm7.dtsi │ │ ├── rk3588-armsom-sige7.dts │ │ ├── rk3588-armsom-w3.dts │ │ ├── rk3588-base-pinctrl.dtsi │ │ ├── rk3588-base.dtsi │ │ ├── rk3588-coolpi-cm5-evb.dts │ │ ├── rk3588-coolpi-cm5-genbook.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-extra-pinctrl.dtsi │ │ ├── rk3588-extra.dtsi │ │ ├── rk3588-fet3588-c.dtsi │ │ ├── rk3588-firefly-core-3588j.dtsi │ │ ├── rk3588-firefly-icore-3588q.dtsi │ │ ├── rk3588-firefly-itx-3588j.dts │ │ ├── rk3588-friendlyelec-cm3588-nas.dts │ │ ├── rk3588-friendlyelec-cm3588.dtsi │ │ ├── rk3588-h96-max-v58.dts │ │ ├── rk3588-jaguar-pre-ict-tester.dtso │ │ ├── rk3588-jaguar.dts │ │ ├── rk3588-mnt-reform2.dts │ │ ├── rk3588-nanopc-t6-lts.dts │ │ ├── rk3588-nanopc-t6.dts │ │ ├── rk3588-nanopc-t6.dtsi │ │ ├── rk3588-ok3588-c.dts │ │ ├── rk3588-opp.dtsi │ │ ├── rk3588-orangepi-5-compact.dtsi │ │ ├── rk3588-orangepi-5-max.dts │ │ ├── rk3588-orangepi-5-plus.dts │ │ ├── rk3588-orangepi-5-ultra.dts │ │ ├── rk3588-orangepi-5.dtsi │ │ ├── rk3588-quartzpro64.dts │ │ ├── rk3588-rock-5-itx.dts │ │ ├── rk3588-rock-5b-pcie-ep.dtso │ │ ├── rk3588-rock-5b-pcie-srns.dtso │ │ ├── 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-evb1-v10.dts │ │ ├── rk3588s-gameforce-ace.dts │ │ ├── rk3588s-indiedroid-nova.dts │ │ ├── rk3588s-khadas-edge2.dts │ │ ├── rk3588s-nanopi-r6.dtsi │ │ ├── rk3588s-nanopi-r6c.dts │ │ ├── rk3588s-nanopi-r6s.dts │ │ ├── rk3588s-odroid-m2.dts │ │ ├── rk3588s-orangepi-5.dts │ │ ├── rk3588s-orangepi-5.dtsi │ │ ├── rk3588s-orangepi-5b.dts │ │ ├── rk3588s-rock-5a.dts │ │ ├── rk3588s-rock-5c.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 │ │ ├── stm32mp211.dtsi │ │ ├── stm32mp213.dtsi │ │ ├── stm32mp215.dtsi │ │ ├── stm32mp215f-dk.dts │ │ ├── stm32mp21xc.dtsi │ │ ├── stm32mp21xf.dtsi │ │ ├── stm32mp231.dtsi │ │ ├── stm32mp233.dtsi │ │ ├── stm32mp235.dtsi │ │ ├── stm32mp235f-dk.dts │ │ ├── stm32mp23xc.dtsi │ │ ├── stm32mp23xf.dtsi │ │ ├── stm32mp25-pinctrl.dtsi │ │ ├── stm32mp251.dtsi │ │ ├── stm32mp253.dtsi │ │ ├── stm32mp255.dtsi │ │ ├── stm32mp257.dtsi │ │ ├── stm32mp257f-dk.dts │ │ ├── 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-nand.dtso │ │ ├── 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-ivy.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-ivy.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-ivy.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-phycore-som.dtsi │ │ ├── k3-am62a-thermal.dtsi │ │ ├── k3-am62a-wakeup.dtsi │ │ ├── k3-am62a.dtsi │ │ ├── k3-am62a7-phyboard-lyra-rdk.dts │ │ ├── k3-am62a7-sk.dts │ │ ├── k3-am62a7.dtsi │ │ ├── k3-am62p-j722s-common-main.dtsi │ │ ├── k3-am62p-j722s-common-mcu.dtsi │ │ ├── k3-am62p-j722s-common-thermal.dtsi │ │ ├── k3-am62p-j722s-common-wakeup.dtsi │ │ ├── k3-am62p-main.dtsi │ │ ├── k3-am62p.dtsi │ │ ├── k3-am62p5-sk.dts │ │ ├── k3-am62p5.dtsi │ │ ├── k3-am62x-phyboard-lyra-gpio-fan.dtso │ │ ├── k3-am62x-phyboard-lyra.dtsi │ │ ├── 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-mii.dtso │ │ ├── k3-am642-evm-icssg1-dualemac.dtso │ │ ├── k3-am642-evm-nand.dtso │ │ ├── k3-am642-evm-pcie0-ep.dtso │ │ ├── k3-am642-evm.dts │ │ ├── k3-am642-hummingboard-t-pcie.dts │ │ ├── k3-am642-hummingboard-t-usb3.dts │ │ ├── k3-am642-hummingboard-t.dts │ │ ├── k3-am642-phyboard-electra-gpio-fan.dtso │ │ ├── k3-am642-phyboard-electra-pcie-usb2.dtso │ │ ├── k3-am642-phyboard-electra-rdk.dts │ │ ├── k3-am642-phyboard-electra-x27-gpio1-spi1-uart3.dtso │ │ ├── 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-bkey-ekey-pcie.dtso │ │ ├── k3-am6548-iot2050-advanced-m2-bkey-usb3.dtso │ │ ├── k3-am6548-iot2050-advanced-m2.dts │ │ ├── k3-am6548-iot2050-advanced-pg2.dts │ │ ├── k3-am6548-iot2050-advanced-sm.dts │ │ ├── k3-am6548-iot2050-advanced.dts │ │ ├── k3-am67a-beagley-ai.dts │ │ ├── k3-am68-sk-base-board-pcie1-ep.dtso │ │ ├── k3-am68-sk-base-board.dts │ │ ├── k3-am68-sk-som.dtsi │ │ ├── k3-am69-sk-pcie0-ep.dtso │ │ ├── k3-am69-sk.dts │ │ ├── k3-am6xx-phycore-disable-eth-phy.dtso │ │ ├── k3-am6xx-phycore-disable-rtc.dtso │ │ ├── k3-am6xx-phycore-disable-spi-nor.dtso │ │ ├── k3-am6xx-phycore-qspi-nor.dtso │ │ ├── k3-j7200-common-proc-board.dts │ │ ├── k3-j7200-evm-pcie1-ep.dtso │ │ ├── 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-infotainment.dtso │ │ ├── k3-j721e-common-proc-board.dts │ │ ├── k3-j721e-evm-gesi-exp-board.dtso │ │ ├── k3-j721e-evm-pcie0-ep.dtso │ │ ├── k3-j721e-evm-pcie1-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-main.dtsi │ │ ├── k3-j722s.dtsi │ │ ├── k3-j742s2-evm.dts │ │ ├── k3-j742s2-main.dtsi │ │ ├── k3-j742s2.dtsi │ │ ├── k3-j784s4-evm-pcie0-pcie1-ep.dtso │ │ ├── k3-j784s4-evm-quad-port-eth-exp1.dtso │ │ ├── k3-j784s4-evm-usxgmii-exp1-exp2.dtso │ │ ├── k3-j784s4-evm.dts │ │ ├── k3-j784s4-j742s2-common.dtsi │ │ ├── k3-j784s4-j742s2-evm-common.dtsi │ │ ├── k3-j784s4-j742s2-main-common.dtsi │ │ ├── k3-j784s4-j742s2-mcu-wakeup-common.dtsi │ │ ├── k3-j784s4-j742s2-thermal-common.dtsi │ │ ├── k3-j784s4-main.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 │ │ ├── versal-net-clk.dtsi │ │ ├── versal-net-vn-x-b2197-01-revA.dts │ │ ├── versal-net.dtsi │ │ ├── xlnx-zynqmp-clk.h │ │ ├── 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 │ ├── Makefile │ ├── 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-pins.dtsi │ │ ├── eyeq5.dtsi │ │ ├── eyeq6h-epm6.dts │ │ ├── eyeq6h-pins.dtsi │ │ └── eyeq6h.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 │ │ ├── cameo-rtl9302c-2x-rtl8224-2xge.dts │ │ ├── cisco_sg220-26.dts │ │ ├── rtl838x.dtsi │ │ ├── rtl9302c.dtsi │ │ └── rtl930x.dtsi │ └── xilfpga │ │ ├── microAptiv.dtsi │ │ └── nexys4ddr.dts │ ├── nios2 │ ├── 10m50_devboard.dts │ └── 3c120_devboard.dts │ ├── openrisc │ ├── or1klitex.dts │ ├── or1ksim.dts │ └── simple_smp.dts │ ├── powerpc │ ├── Makefile │ ├── a3m071.dts │ ├── a4m072.dts │ ├── ac14xx.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-power.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 │ ├── holly.dts │ ├── icon.dts │ ├── iss4xx-mpic.dts │ ├── iss4xx.dts │ ├── katmai.dts │ ├── kmeter1.dts │ ├── ksi8560.dts │ ├── kuroboxHD.dts │ ├── kuroboxHG.dts │ ├── lite5200.dts │ ├── lite5200b.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 │ ├── 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 │ ├── Makefile │ ├── allwinner │ │ ├── sun20i-common-regulators.dtsi │ │ ├── sun20i-d1-clockworkpi-v3.14.dts │ │ ├── sun20i-d1-devterm-v3.14.dts │ │ ├── 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-beaglev-fire-fabric.dtsi │ │ ├── mpfs-beaglev-fire.dts │ │ ├── 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 │ │ ├── cv181x.dtsi │ │ ├── cv18xx.dtsi │ │ ├── sg2002-licheerv-nano-b.dts │ │ ├── sg2002.dtsi │ │ ├── sg2042-cpus.dtsi │ │ ├── sg2042-milkv-pioneer.dts │ │ └── sg2042.dtsi │ ├── spacemit │ │ ├── k1-bananapi-f3.dts │ │ ├── k1-milkv-jupiter.dts │ │ ├── k1-pinctrl.dtsi │ │ └── k1.dtsi │ ├── starfive │ │ ├── jh7100-beaglev-starlight.dts │ │ ├── jh7100-common.dtsi │ │ ├── jh7100-starfive-visionfive-v1.dts │ │ ├── jh7100.dtsi │ │ ├── jh7110-common.dtsi │ │ ├── jh7110-deepcomputing-fml13v01.dts │ │ ├── jh7110-milkv-mars.dts │ │ ├── jh7110-pine64-star64.dts │ │ ├── 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 │ ├── Makefile │ ├── 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 ├── env ├── Kconfig ├── Makefile ├── attr.c ├── callback.c ├── common.c ├── eeprom.c ├── embedded.c ├── env.c ├── ext4.c ├── fat.c ├── flags.c ├── flash.c ├── mmc.c ├── mtd.c ├── nand.c ├── nowhere.c ├── nvram.c ├── onenand.c ├── remote.c ├── scsi.c ├── sf.c └── ubi.c ├── examples ├── Makefile ├── api │ ├── .gitignore │ ├── Makefile │ ├── crt0.S │ ├── demo.c │ ├── glue.c │ ├── glue.h │ └── libgenwrap.c └── standalone │ ├── .gitignore │ ├── Makefile │ ├── README.smc91111_eeprom │ ├── atmel_df_pow2.c │ ├── hello_world.c │ ├── ppc_longjmp.S │ ├── ppc_setjmp.S │ ├── sched.c │ ├── sparc.lds │ └── stubs.c ├── failsafe ├── Kconfig ├── Makefile ├── failsafe.c ├── fs.c ├── fs.h └── fsdata │ ├── 404.html │ ├── Makefile │ ├── embed.S │ ├── fail.html │ ├── flashing.html │ ├── index.html │ ├── style.css │ ├── success.html │ ├── upload.html │ └── validate_fail.html ├── fs ├── Kconfig ├── Makefile ├── btrfs │ ├── Kconfig │ ├── Makefile │ ├── btrfs.c │ ├── btrfs.h │ ├── common │ │ ├── rbtree-utils.c │ │ └── rbtree-utils.h │ ├── compat.h │ ├── compression.c │ ├── conv-funcs.h │ ├── crypto │ │ ├── hash.c │ │ └── hash.h │ ├── ctree.c │ ├── ctree.h │ ├── dev.c │ ├── dir-item.c │ ├── disk-io.c │ ├── disk-io.h │ ├── extent-cache.c │ ├── extent-cache.h │ ├── extent-io.c │ ├── extent-io.h │ ├── inode.c │ ├── kernel-shared │ │ └── btrfs_tree.h │ ├── root-tree.c │ ├── subvolume.c │ ├── volumes.c │ └── volumes.h ├── cbfs │ ├── Kconfig │ ├── Makefile │ └── cbfs.c ├── cramfs │ ├── Kconfig │ ├── Makefile │ ├── cramfs.c │ └── uncompress.c ├── erofs │ ├── Kconfig │ ├── Makefile │ ├── data.c │ ├── decompress.c │ ├── decompress.h │ ├── erofs_fs.h │ ├── fs.c │ ├── internal.h │ ├── namei.c │ ├── super.c │ └── zmap.c ├── exfat │ ├── Kconfig │ ├── Makefile │ ├── byteorder.h │ ├── cluster.c │ ├── compiler.h │ ├── exfat.h │ ├── exfatfs.h │ ├── io.c │ ├── lookup.c │ ├── mount.c │ ├── node.c │ ├── platform.h │ ├── repair.c │ ├── time.c │ ├── utf.c │ └── utils.c ├── ext4 │ ├── Kconfig │ ├── Makefile │ ├── dev.c │ ├── ext4_common.c │ ├── ext4_common.h │ ├── ext4_journal.c │ ├── ext4_journal.h │ ├── ext4_write.c │ └── ext4fs.c ├── fat │ ├── Kconfig │ ├── Makefile │ ├── fat.c │ └── fat_write.c ├── fs.c ├── fs_internal.c ├── jffs2 │ ├── Kconfig │ ├── LICENCE │ ├── Makefile │ ├── compr_lzma.c │ ├── compr_lzo.c │ ├── compr_rtime.c │ ├── compr_rubin.c │ ├── compr_zlib.c │ ├── jffs2_1pass.c │ ├── jffs2_private.h │ ├── mergesort.c │ ├── mini_inflate.c │ └── summary.h ├── sandbox │ ├── Kconfig │ ├── Makefile │ ├── host_bootdev.c │ └── sandboxfs.c ├── semihostingfs.c ├── squashfs │ ├── Kconfig │ ├── Makefile │ ├── sqfs.c │ ├── sqfs_decompressor.c │ ├── sqfs_decompressor.h │ ├── sqfs_dir.c │ ├── sqfs_filesystem.h │ ├── sqfs_inode.c │ └── sqfs_utils.h ├── ubifs │ ├── Kconfig │ ├── Makefile │ ├── budget.c │ ├── debug.c │ ├── debug.h │ ├── gc.c │ ├── io.c │ ├── key.h │ ├── log.c │ ├── lprops.c │ ├── lpt.c │ ├── lpt_commit.c │ ├── master.c │ ├── misc.h │ ├── orphan.c │ ├── recovery.c │ ├── replay.c │ ├── sb.c │ ├── scan.c │ ├── super.c │ ├── tnc.c │ ├── tnc_misc.c │ ├── ubifs-media.h │ ├── ubifs.c │ └── ubifs.h └── zfs │ ├── Makefile │ ├── dev.c │ ├── zfs.c │ ├── zfs_fletcher.c │ ├── zfs_lzjb.c │ └── zfs_sha256.c ├── include ├── ACEX1K.h ├── _exports.h ├── abuf.h ├── acpi │ ├── acpi_device.h │ ├── acpi_dp.h │ ├── acpi_s3.h │ ├── acpi_table.h │ └── acpigen.h ├── adc.h ├── addr_map.h ├── ahci.h ├── alist.h ├── altera.h ├── android_ab.h ├── android_bootloader_message.h ├── android_image.h ├── ansi.h ├── api.h ├── api_public.h ├── arm_ffa.h ├── arm_ffa_priv.h ├── armcoremodule.h ├── asm-generic │ ├── atomic-long.h │ ├── atomic.h │ ├── bitops │ │ ├── __ffs.h │ │ ├── __fls.h │ │ ├── builtin-__ffs.h │ │ ├── builtin-__fls.h │ │ ├── builtin-ffs.h │ │ ├── builtin-fls.h │ │ ├── fls.h │ │ └── fls64.h │ ├── bitsperlong.h │ ├── global_data.h │ ├── gpio.h │ ├── int-ll64.h │ ├── io.h │ ├── ioctl.h │ ├── pe.h │ ├── sections.h │ ├── signal.h │ ├── u-boot.h │ └── unaligned.h ├── asm-offsets.h ├── ata.h ├── atf_common.h ├── atmel_hlcdc.h ├── atmel_lcd.h ├── atmel_lcdc.h ├── atmel_mci.h ├── atsha204a-i2c.h ├── audio_codec.h ├── autoboot.h ├── avb_verify.h ├── axi.h ├── axp152.h ├── axp209.h ├── axp221.h ├── axp305.h ├── axp809.h ├── axp818.h ├── axp_pmic.h ├── backlight.h ├── bcb.h ├── bcd.h ├── binman.h ├── binman_sym.h ├── bios_emul.h ├── bitfield.h ├── blk.h ├── blkmap.h ├── bloblist.h ├── bmp_layout.h ├── board_f.h ├── boot_fit.h ├── bootcount.h ├── bootdev.h ├── bootflow.h ├── bootm.h ├── bootmeth.h ├── bootretry.h ├── bootstage.h ├── bootstd.h ├── bouncebuf.h ├── broadcom │ └── chimp.h ├── btrfs.h ├── bus_vcxk.h ├── button.h ├── bzlib.h ├── cache.h ├── cadence-nand.h ├── capitalization.h ├── cavium │ ├── atf.h │ ├── atf_part.h │ └── thunderx_svc.h ├── cbfs.h ├── cedit.h ├── charset.h ├── circbuf.h ├── cli.h ├── cli_hush.h ├── clk-uclass.h ├── clk.h ├── clk │ └── sunxi.h ├── clock_legacy.h ├── cmd_spl.h ├── command.h ├── common_timing_params.h ├── compiler.h ├── config_distro_bootcmd.h ├── config_fallbacks.h ├── config_fsl_chain_trust.h ├── config_phylib_all_drivers.h ├── configs │ ├── 10m50_devboard.h │ ├── 3c120_devboard.h │ ├── M5208EVBE.h │ ├── M5235EVB.h │ ├── M5249EVB.h │ ├── M5253DEMO.h │ ├── M5272C3.h │ ├── M5275EVB.h │ ├── M5282EVB.h │ ├── M53017EVB.h │ ├── M5329EVB.h │ ├── M5373EVB.h │ ├── MPC837XERDB.h │ ├── MPC8548CDS.h │ ├── P1010RDB.h │ ├── P2041RDB.h │ ├── SBx81LIFKW.h │ ├── SBx81LIFXCAT.h │ ├── T102xRDB.h │ ├── T104xRDB.h │ ├── T208xQDS.h │ ├── T208xRDB.h │ ├── T4240RDB.h │ ├── ae350.h │ ├── alt.h │ ├── am335x_evm.h │ ├── am335x_guardian.h │ ├── am335x_igep003x.h │ ├── am335x_shc.h │ ├── am335x_sl50.h │ ├── am3517_evm.h │ ├── am43xx_evm.h │ ├── am57xx_evm.h │ ├── am62ax_evm.h │ ├── am62px_evm.h │ ├── am62x_evm.h │ ├── am64x_evm.h │ ├── am65x_evm.h │ ├── amcore.h │ ├── amd_versal2.h │ ├── amd_versal2_mini.h │ ├── an7581.h │ ├── anbernic-rgxx3-rk3566.h │ ├── ap121.h │ ├── ap143.h │ ├── ap152.h │ ├── apalis-imx8.h │ ├── apalis-tk1.h │ ├── apalis_imx6.h │ ├── apple.h │ ├── arbel.h │ ├── aristainetos2.h │ ├── arndale.h │ ├── aspeed-common.h │ ├── at91-sama5_common.h │ ├── at91sam9260ek.h │ ├── at91sam9261ek.h │ ├── at91sam9263ek.h │ ├── at91sam9m10g45ek.h │ ├── at91sam9n12ek.h │ ├── at91sam9rlek.h │ ├── at91sam9x5ek.h │ ├── axs10x.h │ ├── baltos.h │ ├── bananapi-f3.h │ ├── bcm7260.h │ ├── bcm7445.h │ ├── bcm947622.h │ ├── bcm94908.h │ ├── bcm94912.h │ ├── bcm963138.h │ ├── bcm963146.h │ ├── bcm963148.h │ ├── bcm963158.h │ ├── bcm963178.h │ ├── bcm96756.h │ ├── bcm96813.h │ ├── bcm96846.h │ ├── bcm96855.h │ ├── bcm96856.h │ ├── bcm96858.h │ ├── bcm96878.h │ ├── bcm_ns3.h │ ├── bcmns.h │ ├── bcmstb.h │ ├── beacon-rzg2m.h │ ├── beagleboneai64.h │ ├── beagleplay.h │ ├── beagley_ai.h │ ├── bitmain_antminer_s9.h │ ├── bk4r1.h │ ├── blanche.h │ ├── bmips_bcm3380.h │ ├── bmips_bcm6318.h │ ├── bmips_bcm63268.h │ ├── bmips_bcm6328.h │ ├── bmips_bcm6338.h │ ├── bmips_bcm6348.h │ ├── bmips_bcm6358.h │ ├── bmips_bcm6362.h │ ├── bmips_bcm6368.h │ ├── bmips_bcm6838.h │ ├── bmips_common.h │ ├── boston.h │ ├── broadcom_bcm968380gerg.h │ ├── brppt1.h │ ├── brppt2.h │ ├── brsmarc1.h │ ├── brxre1.h │ ├── brzynq.h │ ├── btt.h │ ├── bur_am335x_common.h │ ├── bur_cfg_common.h │ ├── capricorn-common.h │ ├── cgtqmx8.h │ ├── chiliboard.h │ ├── chromebook_coral.h │ ├── chromebook_link.h │ ├── chromebook_samus.h │ ├── chromebox_panther.h │ ├── ci20.h │ ├── cl-som-imx7.h │ ├── clearfog.h │ ├── cm_fx6.h │ ├── cm_t43.h │ ├── cmpc885.h │ ├── cmpcpro.h │ ├── cobra5272.h │ ├── colibri-imx6ull.h │ ├── colibri-imx8x.h │ ├── colibri_imx6.h │ ├── colibri_imx7.h │ ├── colibri_vf.h │ ├── comtrend_ar5315u.h │ ├── comtrend_ar5387un.h │ ├── comtrend_ct5361.h │ ├── comtrend_vr3032u.h │ ├── comtrend_wap5813n.h │ ├── condor.h │ ├── conga-qeval20-qa3-e3845.h │ ├── controlcenterdc.h │ ├── corstone1000.h │ ├── corvus.h │ ├── crs3xx-98dx3236.h │ ├── da850evm.h │ ├── dart_6ul.h │ ├── db-88f6720.h │ ├── db-88f6820-amc.h │ ├── db-88f6820-gp.h │ ├── db-mv784mp-gp.h │ ├── db-xc3-24g4xg.h │ ├── devkit8000.h │ ├── dfi-bt700.h │ ├── dh_imx6.h │ ├── display5.h │ ├── dns325.h │ ├── dockstar.h │ ├── dra7xx_evm.h │ ├── draak.h │ ├── draco-etamin.h │ ├── draco-rastaban.h │ ├── draco-thuban.h │ ├── dragonboard410c.h │ ├── dragonboard820c.h │ ├── dreamplug.h │ ├── ds109.h │ ├── ds116.h │ ├── ds414.h │ ├── durian.h │ ├── e850-96.h │ ├── ea-lpc3250devkitv2.h │ ├── eb_cpu5282.h │ ├── ebisu.h │ ├── el6x_common.h │ ├── elgin_rv1108.h │ ├── embestmx6boards.h │ ├── emsdp.h │ ├── espresso7420.h │ ├── evb_ast2500.h │ ├── evb_ast2600.h │ ├── evb_px30.h │ ├── evb_px5.h │ ├── evb_rk3036.h │ ├── evb_rk3128.h │ ├── evb_rk3229.h │ ├── evb_rk3288.h │ ├── evb_rk3308.h │ ├── evb_rk3328.h │ ├── evb_rk3399.h │ ├── evb_rk3568.h │ ├── evb_rk3588.h │ ├── evb_rv1108.h │ ├── exynos-common.h │ ├── exynos4-common.h │ ├── exynos5-common.h │ ├── exynos5-dt-common.h │ ├── exynos5250-common.h │ ├── exynos5420-common.h │ ├── exynos7420-common.h │ ├── exynos78x0-common.h │ ├── falcon.h │ ├── firefly-rk3288.h │ ├── firefly_rk3308.h │ ├── gardena-smart-gateway-at91sam.h │ ├── gardena-smart-gateway-mt7688.h │ ├── gazerbeam.h │ ├── ge_b1x5v2.h │ ├── ge_bx50v3.h │ ├── geekbox.h │ ├── genbook-cm5-rk3588.h │ ├── genmai.h │ ├── goflexhome.h │ ├── gose.h │ ├── grayhawk.h │ ├── grpeach.h │ ├── gru.h │ ├── guruplug.h │ ├── gw_ventana.h │ ├── gxp.h │ ├── helios4.h │ ├── highbank.h │ ├── hihope-rzg2.h │ ├── hikey.h │ ├── hikey960.h │ ├── hmibsc.h │ ├── hsdk-4xd.h │ ├── hsdk.h │ ├── huawei_hg556a.h │ ├── ib62x0.h │ ├── ibex_ast2700.h │ ├── iconnect.h │ ├── imgtec_xilfpga.h │ ├── imx6-engicam.h │ ├── imx6_logic.h │ ├── imx6dl-mamoj.h │ ├── imx6dl-sielaff.h │ ├── imx6q-bosch-acc.h │ ├── imx6ulz_smm_m2.h │ ├── imx7-cm.h │ ├── imx8mm-cl-iot-gate.h │ ├── imx8mm-mx8menlo.h │ ├── imx8mm_beacon.h │ ├── imx8mm_data_modul_edm_sbc.h │ ├── imx8mm_evk.h │ ├── imx8mm_icore_mx8mm.h │ ├── imx8mm_phg.h │ ├── imx8mm_venice.h │ ├── imx8mn_beacon.h │ ├── imx8mn_bsh_smm_s2.h │ ├── imx8mn_bsh_smm_s2_common.h │ ├── imx8mn_bsh_smm_s2pro.h │ ├── imx8mn_evk.h │ ├── imx8mn_var_som.h │ ├── imx8mn_venice.h │ ├── imx8mp_beacon.h │ ├── imx8mp_data_modul_edm_sbc.h │ ├── imx8mp_debix_model_a.h │ ├── imx8mp_dhcom_pdk2.h │ ├── imx8mp_evk.h │ ├── imx8mp_icore_mx8mp.h │ ├── imx8mp_navqp.h │ ├── imx8mp_rsb3720.h │ ├── imx8mp_venice.h │ ├── imx8mq_cm.h │ ├── imx8mq_evk.h │ ├── imx8mq_phanbell.h │ ├── imx8mq_reform2.h │ ├── imx8qm_dmsse20.h │ ├── imx8qm_mek.h │ ├── imx8qm_rom7720.h │ ├── imx8qxp_mek.h │ ├── imx8ulp_evk.h │ ├── imx91_evk.h │ ├── imx93_evk.h │ ├── imx93_qsb.h │ ├── imx93_var_som.h │ ├── imx95_evk.h │ ├── imxrt1020-evk.h │ ├── imxrt1050-evk.h │ ├── imxrt1170-evk.h │ ├── integrator-common.h │ ├── integratorap.h │ ├── integratorcp.h │ ├── inteno_xg6846.h │ ├── iot2050.h │ ├── iot_devkit.h │ ├── j721e_evm.h │ ├── j721s2_evm.h │ ├── j722s_evm.h │ ├── j784s4_evm.h │ ├── jaguar_rk3588.h │ ├── jethub.h │ ├── k2e_evm.h │ ├── k2g_evm.h │ ├── k2hk_evm.h │ ├── k2l_evm.h │ ├── khadas-edge2-rk3588s.h │ ├── khadas-vim3_android.h │ ├── khadas-vim3l_android.h │ ├── km │ │ ├── km-mpc83xx.h │ │ └── pg-wcom-ls102xa.h │ ├── km832x.h │ ├── kmcent2.h │ ├── kmcoge5ne.h │ ├── kmeter1.h │ ├── koelsch.h │ ├── kontron-sl-mx6ul.h │ ├── kontron-sl-mx8mm.h │ ├── kontron_pitx_imx8m.h │ ├── kontron_sl28.h │ ├── kp_imx53.h │ ├── kp_imx6q_tpc.h │ ├── kstr-sama5d27.h │ ├── kylin_rk3036.h │ ├── lacie_kw.h │ ├── lager.h │ ├── legoev3.h │ ├── librem5.h │ ├── libretech-ac.h │ ├── licheerv_nano.h │ ├── linkit-smart-7688.h │ ├── liteboard.h │ ├── ls1012a2g5rdb.h │ ├── ls1012a_common.h │ ├── ls1012afrdm.h │ ├── ls1012afrwy.h │ ├── ls1012aqds.h │ ├── ls1012ardb.h │ ├── ls1021aiot.h │ ├── ls1021aqds.h │ ├── ls1021atsn.h │ ├── ls1021atwr.h │ ├── ls1028a_common.h │ ├── ls1028aqds.h │ ├── ls1028ardb.h │ ├── ls1043a_common.h │ ├── ls1043aqds.h │ ├── ls1043ardb.h │ ├── ls1046a_common.h │ ├── ls1046afrwy.h │ ├── ls1046aqds.h │ ├── ls1046ardb.h │ ├── ls1088a_common.h │ ├── ls1088aqds.h │ ├── ls1088ardb.h │ ├── ls2080a_common.h │ ├── ls2080aqds.h │ ├── ls2080ardb.h │ ├── lsxl.h │ ├── lx2160a_common.h │ ├── lx2160aqds.h │ ├── lx2160ardb.h │ ├── lx2162aqds.h │ ├── lxr2.h │ ├── m53menlo.h │ ├── malta.h │ ├── maxbcm.h │ ├── mccmon6.h │ ├── mcr3000.h │ ├── meerkat96.h │ ├── meesc.h │ ├── meson64.h │ ├── meson64_android.h │ ├── microblaze-generic.h │ ├── microchip_mpfs_icicle.h │ ├── milkv_duo.h │ ├── miqi_rk3288.h │ ├── mk808.h │ ├── mot.h │ ├── msc_sm2s_imx8mp.h │ ├── mt7620.h │ ├── mt7621.h │ ├── mt7622.h │ ├── mt7623.h │ ├── mt7628.h │ ├── mt7629.h │ ├── mt7981.h │ ├── mt7986.h │ ├── mt7987.h │ ├── mt7988.h │ ├── mt8183.h │ ├── mt8365.h │ ├── mt8512.h │ ├── mt8516.h │ ├── mt8518.h │ ├── mv-common.h │ ├── mvebu_alleycat-5.h │ ├── mvebu_armada-37xx.h │ ├── mvebu_armada-8k.h │ ├── mx23_olinuxino.h │ ├── mx23evk.h │ ├── mx28evk.h │ ├── mx51evk.h │ ├── mx53cx9020.h │ ├── mx53loco.h │ ├── mx53ppd.h │ ├── mx6_common.h │ ├── mx6cuboxi.h │ ├── mx6memcal.h │ ├── mx6sabre_common.h │ ├── mx6sabreauto.h │ ├── mx6sabresd.h │ ├── mx6slevk.h │ ├── mx6sllevk.h │ ├── mx6sxsabreauto.h │ ├── mx6sxsabresd.h │ ├── mx6ul_14x14_evk.h │ ├── mx6ullevk.h │ ├── mx7_common.h │ ├── mx7dsabresd.h │ ├── mx7ulp_com.h │ ├── mx7ulp_evk.h │ ├── mxs.h │ ├── mys_6ulx.h │ ├── n2350.h │ ├── nanopc-t6-rk3588.h │ ├── nanopi-r6c-rk3588s.h │ ├── nanopi-r6s-rk3588s.h │ ├── nas220.h │ ├── netgear_cg3100d.h │ ├── netgear_dgnd3700v2.h │ ├── neural-compute-module-2.h │ ├── neural-compute-module-6.h │ ├── nitrogen6x.h │ ├── nova-rk3588s.h │ ├── novena.h │ ├── npi_imx6ull.h │ ├── nsa310s.h │ ├── nsa325.h │ ├── nsim.h │ ├── o4-imx6ull-nano.h │ ├── octeon_common.h │ ├── octeon_ebb7304.h │ ├── octeon_nic23.h │ ├── octeontx2_common.h │ ├── octeontx_common.h │ ├── odroid.h │ ├── odroid_go2.h │ ├── odroid_m1.h │ ├── odroid_m2.h │ ├── odroid_xu3.h │ ├── omap3_evm.h │ ├── omap3_igep00x0.h │ ├── omap3_logic.h │ ├── omapl138_lcdk.h │ ├── openpiton-riscv64.h │ ├── openrd.h │ ├── opos6uldev.h │ ├── origen.h │ ├── owl-common.h │ ├── p1_p2_bootsrc.h │ ├── p1_p2_rdb_pc.h │ ├── pcl063.h │ ├── pcl063_ull.h │ ├── pcm052.h │ ├── pcm058.h │ ├── pdu001.h │ ├── pe2201.h │ ├── peach-pi.h │ ├── peach-pit.h │ ├── pg-wcom-expu1.h │ ├── pg-wcom-seli8.h │ ├── phycore_am335x_r2.h │ ├── phycore_am62ax.h │ ├── phycore_am62x.h │ ├── phycore_am64x.h │ ├── phycore_imx8mm.h │ ├── phycore_imx8mp.h │ ├── phycore_imx93.h │ ├── phycore_rk3288.h │ ├── pic32mzdask.h │ ├── pico-imx6.h │ ├── pico-imx6ul.h │ ├── pico-imx7d.h │ ├── pico-imx8mq.h │ ├── pinebook-pro-rk3399.h │ ├── pinephone-pro-rk3399.h │ ├── pm9261.h │ ├── pm9263.h │ ├── pm9g45.h │ ├── pogo_e02.h │ ├── pogo_v4.h │ ├── poleg.h │ ├── pomelo.h │ ├── poplar.h │ ├── popmetal_rk3288.h │ ├── porter.h │ ├── powkiddy-x55-rk3566.h │ ├── presidio_asic.h │ ├── puma_rk3399.h │ ├── px30_common.h │ ├── px30_core.h │ ├── pxa1908.h │ ├── pxm2.h │ ├── qcom.h │ ├── qemu-arm.h │ ├── qemu-ppce500.h │ ├── qemu-riscv.h │ ├── qemu-sbsa.h │ ├── qemu-xtensa.h │ ├── qnap_ts433.h │ ├── quartz64_rk3566.h │ ├── quartzpro64-rk3588.h │ ├── r2dplus.h │ ├── rcar-gen2-common.h │ ├── rcar-gen3-common.h │ ├── rcar-gen4-common.h │ ├── ringneck_px30.h │ ├── rk3036_common.h │ ├── rk3066_common.h │ ├── rk3128_common.h │ ├── rk3188_common.h │ ├── rk322x_common.h │ ├── rk3288_common.h │ ├── rk3308_common.h │ ├── rk3328_common.h │ ├── rk3368_common.h │ ├── rk3399_common.h │ ├── rk3528_common.h │ ├── rk3568_common.h │ ├── rk3576_common.h │ ├── rk3588_common.h │ ├── roc-pc-rk3399.h │ ├── roc-pc-rk3576.h │ ├── rock-5-itx-rk3588.h │ ├── rock-5c-rk3588s.h │ ├── rock.h │ ├── rock2.h │ ├── rock5a-rk3588s.h │ ├── rock5b-rk3588.h │ ├── rock960_rk3399.h │ ├── rockchip-common.h │ ├── rockpi4-rk3399.h │ ├── rockpro64_rk3399.h │ ├── rpi.h │ ├── rut.h │ ├── rv1108_common.h │ ├── rv1126_common.h │ ├── rzg2l-smarc.h │ ├── rzn1-snarc.h │ ├── s4sk.h │ ├── s5p4418_nanopi2.h │ ├── s5p_goni.h │ ├── s5pc210_universal.h │ ├── sagem_f@st1704.h │ ├── salvator-x.h │ ├── sam9x60_curiosity.h │ ├── sam9x60ek.h │ ├── sam9x75_curiosity.h │ ├── sama5d27_som1_ek.h │ ├── sama5d27_wlsom1_ek.h │ ├── sama5d29_curiosity.h │ ├── sama5d2_icp.h │ ├── sama5d2_ptc_ek.h │ ├── sama5d2_xplained.h │ ├── sama5d3_xplained.h │ ├── sama5d3xek.h │ ├── sama5d4_xplained.h │ ├── sama5d4ek.h │ ├── sama7g54_curiosity.h │ ├── sama7g5ek.h │ ├── sandbox.h │ ├── sandbox_spl.h │ ├── sc573-ezkit.h │ ├── sc584-ezkit.h │ ├── sc589.h │ ├── sc594-som.h │ ├── sc598-som.h │ ├── sei510.h │ ├── sei610.h │ ├── sfr_nb4_ser.h │ ├── sheep_rk3368.h │ ├── sheevaplug.h │ ├── siemens-am33x-common.h │ ├── siemens-env-common.h │ ├── sifive-unleashed.h │ ├── sifive-unmatched.h │ ├── sige7-rk3588.h │ ├── silinux-ek874.h │ ├── silk.h │ ├── sipeed-maix.h │ ├── smartweb.h │ ├── smdk5250.h │ ├── smdk5420.h │ ├── smdkc100.h │ ├── smdkv310.h │ ├── smegw01.h │ ├── snapper9g45.h │ ├── sniper.h │ ├── snow.h │ ├── socfpga_agilex5_socdk.h │ ├── socfpga_agilex_socdk.h │ ├── socfpga_arria10_socdk.h │ ├── socfpga_arria5_secu1.h │ ├── socfpga_arria5_socdk.h │ ├── socfpga_chameleonv3.h │ ├── socfpga_common.h │ ├── socfpga_cyclone5_socdk.h │ ├── socfpga_dbm_soc1.h │ ├── socfpga_de0_nano_soc.h │ ├── socfpga_de10_nano.h │ ├── socfpga_de10_standard.h │ ├── socfpga_de1_soc.h │ ├── socfpga_is1.h │ ├── socfpga_mcvevk.h │ ├── socfpga_n5x_socdk.h │ ├── socfpga_soc64_common.h │ ├── socfpga_sockit.h │ ├── socfpga_socrates.h │ ├── socfpga_sr1500.h │ ├── socfpga_stratix10_socdk.h │ ├── socfpga_vining_fpga.h │ ├── socrates.h │ ├── som-db5800-som-6867.h │ ├── somlabs_visionsom_6ull.h │ ├── sonoff-ihost.h │ ├── sparrowhawk.h │ ├── spider.h │ ├── spring.h │ ├── starfive-visionfive2.h │ ├── stemmy.h │ ├── stih410-b2260.h │ ├── stm32f429-discovery.h │ ├── stm32f429-evaluation.h │ ├── stm32f469-discovery.h │ ├── stm32f746-disco.h │ ├── stm32h743-disco.h │ ├── stm32h743-eval.h │ ├── stm32h747-disco.h │ ├── stm32h750-art-pi.h │ ├── stm32mp13_common.h │ ├── stm32mp13_st_common.h │ ├── stm32mp15_common.h │ ├── stm32mp15_dh_dhsom.h │ ├── stm32mp15_st_common.h │ ├── stm32mp25_common.h │ ├── stm32mp25_st_common.h │ ├── stmark2.h │ ├── stout.h │ ├── sun4i.h │ ├── sun50i.h │ ├── sun5i.h │ ├── sun6i.h │ ├── sun7i.h │ ├── sun8i.h │ ├── sun9i.h │ ├── suniv.h │ ├── sunxi-common.h │ ├── synquacer.h │ ├── syzygy_hub.h │ ├── taurus.h │ ├── tb100.h │ ├── tbs2910.h │ ├── tegra-common-post.h │ ├── tegra-common.h │ ├── tegra.h │ ├── tegra114-common.h │ ├── tegra124-common.h │ ├── tegra186-common.h │ ├── tegra20-common.h │ ├── tegra210-common.h │ ├── tegra30-common.h │ ├── ten64.h │ ├── th1520_lpi4a.h │ ├── theadorable-x86-common.h │ ├── theadorable-x86-conga-qa3-e3845.h │ ├── theadorable-x86-dfi-bt700.h │ ├── theadorable.h │ ├── thunderx_88xx.h │ ├── ti_am335x_common.h │ ├── ti_armv7_common.h │ ├── ti_armv7_keystone2.h │ ├── ti_armv7_omap.h │ ├── ti_omap3_common.h │ ├── ti_omap4_common.h │ ├── ti_omap5_common.h │ ├── tiger_rk3588.h │ ├── tinker_rk3288.h │ ├── topic_miami.h │ ├── toradex-smarc-imx8mp.h │ ├── total_compute.h │ ├── toybrick_rk3588.h │ ├── tplink_wdr4300.h │ ├── tqma6.h │ ├── tqma6_mba6.h │ ├── tqma6_wru4.h │ ├── trats.h │ ├── trats2.h │ ├── turing-rk1-rk3588.h │ ├── turris_1x.h │ ├── turris_mox.h │ ├── turris_omnia.h │ ├── udoo.h │ ├── udoo_neo.h │ ├── ulcb.h │ ├── uniphier.h │ ├── usb_a9263.h │ ├── usbarmory.h │ ├── v3hsk.h │ ├── vcoreiii.h │ ├── verdin-am62.h │ ├── verdin-am62p.h │ ├── verdin-imx8mm.h │ ├── verdin-imx8mp.h │ ├── vexpress_aemv8.h │ ├── vexpress_ca9x4.h │ ├── vexpress_common.h │ ├── veyron.h │ ├── vf610twr.h │ ├── vinco.h │ ├── vining_2000.h │ ├── vocore2.h │ ├── vyasa-rk3288.h │ ├── wandboard.h │ ├── warp7.h │ ├── whitehawk.h │ ├── work_92105.h │ ├── x240.h │ ├── x250.h │ ├── x530.h │ ├── x86-chromebook.h │ ├── x86-common.h │ ├── xea.h │ ├── xenguest_arm64.h │ ├── xilinx_versal.h │ ├── xilinx_versal_mini.h │ ├── xilinx_versal_net.h │ ├── xilinx_versal_net_mini.h │ ├── xilinx_zynqmp.h │ ├── xilinx_zynqmp_mini.h │ ├── xilinx_zynqmp_mini_nand.h │ ├── xilinx_zynqmp_r5.h │ ├── xpress.h │ ├── xtfpga.h │ ├── zynq-common.h │ └── zynq_cse.h ├── console.h ├── cortina.h ├── cp1250.h ├── cp437.h ├── cpsw.h ├── cpu.h ├── cpu_func.h ├── cramfs │ └── cramfs_fs.h ├── cros_ec.h ├── cros_ec_message.h ├── crypt.h ├── crypto │ ├── ecdsa-uclass.h │ ├── internal │ │ └── rsa.h │ ├── mscode.h │ ├── pkcs7.h │ ├── pkcs7_parser.h │ ├── public_key.h │ └── x509_parser.h ├── ctype.h ├── cyclic.h ├── dbsc5.h ├── ddr_spd.h ├── debug_uart.h ├── dfu.h ├── dialog_pmic.h ├── display.h ├── display_options.h ├── div64.h ├── dm-demo.h ├── dm.h ├── dm │ ├── acpi.h │ ├── device-internal.h │ ├── device.h │ ├── device_compat.h │ ├── devres.h │ ├── fdtaddr.h │ ├── lists.h │ ├── of.h │ ├── of_access.h │ ├── of_addr.h │ ├── of_extra.h │ ├── ofnode.h │ ├── ofnode_decl.h │ ├── ofnode_graph.h │ ├── pci.h │ ├── pinctrl.h │ ├── platdata.h │ ├── platform_data │ │ ├── fsl_espi.h │ │ ├── net_ethoc.h │ │ ├── pfe_dm_eth.h │ │ ├── serial_bcm283x_mu.h │ │ ├── serial_coldfire.h │ │ ├── serial_mxc.h │ │ ├── serial_pl01x.h │ │ ├── serial_sh.h │ │ ├── spi_coldfire.h │ │ └── spi_davinci.h │ ├── read.h │ ├── root.h │ ├── simple_bus.h │ ├── tag.h │ ├── test.h │ ├── uclass-id.h │ ├── uclass-internal.h │ ├── uclass.h │ └── util.h ├── dma-uclass.h ├── dma.h ├── dsi_host.h ├── dt-bindings │ ├── clk │ │ ├── at91.h │ │ ├── mpc83xx-clk.h │ │ └── ti-dra7-atl.h │ ├── clock │ │ ├── adi-sc5xx-clock.h │ │ ├── agilex5-clock.h │ │ ├── aspeed-clock.h │ │ ├── ast2600-clock.h │ │ ├── bcm3380-clock.h │ │ ├── bcm6318-clock.h │ │ ├── bcm63268-clock.h │ │ ├── bcm6338-clock.h │ │ ├── bcm6348-clock.h │ │ ├── exynos7420-clk.h │ │ ├── histb-clock.h │ │ ├── imx8qm-clock.h │ │ ├── imx8qxp-clock.h │ │ ├── imxrt1020-clock.h │ │ ├── imxrt1170-clock.h │ │ ├── intel-clock.h │ │ ├── jz4780-cgu.h │ │ ├── k210-sysctl.h │ │ ├── mediatek,mt7987-clk.h │ │ ├── mediatek,mt8365-clk.h │ │ ├── microchip,clock.h │ │ ├── microchip-mpfs-clock.h │ │ ├── mt7620-clk.h │ │ ├── mt7621-clk.h │ │ ├── mt7623-clk.h │ │ ├── mt7628-clk.h │ │ ├── mt7981-clk.h │ │ ├── mt7986-clk.h │ │ ├── mt7988-clk.h │ │ ├── mt8183-clk.h │ │ ├── mt8512-clk.h │ │ ├── mt8516-clk.h │ │ ├── mt8518-clk.h │ │ ├── n5x-clock.h │ │ ├── nuvoton,npcm7xx-clock.h │ │ ├── nuvoton,npcm845-clk.h │ │ ├── octeon-clock.h │ │ ├── rk3128-cru.h │ │ ├── rk3228-cru.h │ │ ├── sifive-fu540-prci.h │ │ ├── snps,hsdk-cgu.h │ │ ├── stm32mp1-clksrc.h │ │ └── stm32mp13-clksrc.h │ ├── comphy │ │ └── comphy_data.h │ ├── dma │ │ ├── bcm6318-dma.h │ │ ├── bcm63268-dma.h │ │ ├── bcm6328-dma.h │ │ ├── bcm6338-dma.h │ │ ├── bcm6348-dma.h │ │ ├── bcm6358-dma.h │ │ ├── bcm6362-dma.h │ │ └── bcm6368-dma.h │ ├── gpio │ │ ├── sandbox-gpio.h │ │ ├── tegra186-gpio.h │ │ └── x86-gpio.h │ ├── interrupt-controller │ │ └── x86-irq.h │ ├── interrupt-router │ │ └── intel-irq.h │ ├── mailbox │ │ └── tegra186-hsp.h │ ├── memory │ │ ├── bcm-ns3-mc.h │ │ ├── imxrt-sdram.h │ │ ├── mpc83xx-sdram.h │ │ ├── rk3368-dmc.h │ │ └── stm32-sdram.h │ ├── mfd │ │ ├── dbx500-prcmu.h │ │ └── k210-sysctl.h │ ├── mrc │ │ └── quark.h │ ├── mscc │ │ ├── jr2_data.h │ │ ├── luton_data.h │ │ ├── ocelot_data.h │ │ └── serval_data.h │ ├── net │ │ └── ti-dp83869.h │ ├── pci │ │ └── pci.h │ ├── phy │ │ ├── nuvoton,npcm-usbphy.h │ │ └── phy-cadence.h │ ├── pinctrl │ │ ├── adi-adsp.h │ │ ├── at91.h │ │ ├── k210-pinctrl.h │ │ ├── pads-imx8qm.h │ │ ├── pads-imx8qxp.h │ │ ├── pinctrl-starfive-jh7110.h │ │ ├── rockchip.h │ │ └── sandbox-pinmux.h │ ├── pmic │ │ ├── max77663.h │ │ └── sandbox_pmic.h │ ├── power-domain │ │ ├── bcm6318-power-domain.h │ │ ├── bcm63268-power-domain.h │ │ ├── bcm6328-power-domain.h │ │ └── bcm6362-power-domain.h │ ├── power │ │ ├── mt7623-power.h │ │ ├── mt7629-power.h │ │ └── xlnx-versal-power.h │ ├── reset │ │ ├── altr,rst-mgr-agx5.h │ │ ├── ast2500-reset.h │ │ ├── ast2600-reset.h │ │ ├── bcm3380-reset.h │ │ ├── bcm6338-reset.h │ │ ├── bcm6348-reset.h │ │ ├── k210-sysctl.h │ │ ├── mt7620-reset.h │ │ ├── mt7621-reset.h │ │ ├── mt7623-reset.h │ │ ├── mt7628-reset.h │ │ ├── mt7629-reset.h │ │ ├── mt7988-reset.h │ │ ├── nuvoton,npcm8xx-reset.h │ │ ├── sifive-fu540-prci.h │ │ ├── sifive-fu740-prci.h │ │ └── spacemit-k1-reset.h │ ├── soc │ │ ├── imx8_pd.h │ │ └── imx_rsrc.h │ ├── sound │ │ ├── azalia.h │ │ ├── nhlt.h │ │ └── tlv320aic31xx-micbias.h │ └── video │ │ └── rk3288.h ├── dt-structs.h ├── dt_table.h ├── dw_hdmi.h ├── dwc3-omap-uboot.h ├── dwc3-uboot.h ├── dwc_ahsata.h ├── dwmmc.h ├── e500.h ├── ec_commands.h ├── edid.h ├── eeprom.h ├── eeprom_field.h ├── eeprom_layout.h ├── efi.h ├── efi_api.h ├── efi_config.h ├── efi_device_path.h ├── efi_driver.h ├── efi_dt_fixup.h ├── efi_load_initrd.h ├── efi_loader.h ├── efi_riscv.h ├── efi_rng.h ├── efi_selftest.h ├── efi_tcg2.h ├── efi_variable.h ├── elf.h ├── env.h ├── env │ ├── adi │ │ └── adi_boot.env │ ├── distro │ │ └── sf.h │ ├── nvidia │ │ └── prod_upd.env │ ├── pg-wcom │ │ ├── common.env │ │ ├── ls102xa.env │ │ └── powerpc.env │ ├── phytec │ │ ├── k3_dfu.env │ │ ├── k3_mmc.env │ │ ├── k3_net.env │ │ ├── k3_spi.env │ │ ├── overlays.env │ │ └── rauc.env │ ├── ti │ │ ├── android.env │ │ ├── dfu.h │ │ ├── k3_dfu.env │ │ ├── k3_dfu.h │ │ ├── k3_rproc.env │ │ ├── k3_rproc.h │ │ ├── mmc.env │ │ ├── mmc.h │ │ ├── nand.env │ │ ├── nand.h │ │ ├── ti_armv7_keystone2.env │ │ ├── ti_common.env │ │ ├── ufs.env │ │ └── ufs.h │ └── x86.env ├── env_attr.h ├── env_callback.h ├── env_default.h ├── env_flags.h ├── env_internal.h ├── erofs.h ├── errno.h ├── eth_phy.h ├── ethsw.h ├── event.h ├── event_internal.h ├── exception.h ├── exfat.h ├── expo.h ├── exports.h ├── ext4fs.h ├── ext_common.h ├── extcon.h ├── extension_board.h ├── extlinux.h ├── faraday │ ├── ftsdc010.h │ ├── ftsmc020.h │ ├── fttmr010.h │ └── ftwdt010_wdt.h ├── fastboot-internal.h ├── fastboot.h ├── fat.h ├── fb_mmc.h ├── fb_nand.h ├── fdt.h ├── fdt_region.h ├── fdt_simplefb.h ├── fdt_support.h ├── fdtdec.h ├── firmware │ └── imx │ │ └── sci │ │ ├── rpc.h │ │ ├── sci.h │ │ ├── svc │ │ ├── misc │ │ │ └── api.h │ │ ├── pad │ │ │ └── api.h │ │ ├── pm │ │ │ └── api.h │ │ ├── rm │ │ │ └── api.h │ │ ├── seco │ │ │ └── api.h │ │ └── timer │ │ │ └── api.h │ │ └── types.h ├── fis.h ├── flash.h ├── fm_eth.h ├── fpga.h ├── fs.h ├── fs_internal.h ├── fs_loader.h ├── fsl-mc │ ├── fsl_dpaa_fd.h │ ├── fsl_dpbp.h │ ├── fsl_dpio.h │ ├── fsl_dpmac.h │ ├── fsl_dpmng.h │ ├── fsl_dpni.h │ ├── fsl_dprc.h │ ├── fsl_dpsparser.h │ ├── fsl_mc.h │ ├── fsl_mc_cmd.h │ ├── fsl_mc_private.h │ ├── fsl_mc_sys.h │ ├── fsl_qbman_base.h │ ├── fsl_qbman_portal.h │ └── ldpaa_wriop.h ├── fsl_csu.h ├── fsl_ddr.h ├── fsl_ddr_dimm_params.h ├── fsl_ddr_sdram.h ├── fsl_ddrc_version.h ├── fsl_devdis.h ├── fsl_dspi.h ├── fsl_dtsec.h ├── fsl_errata.h ├── fsl_esdhc.h ├── fsl_esdhc_imx.h ├── fsl_fman.h ├── fsl_ifc.h ├── fsl_immap.h ├── fsl_lpuart.h ├── fsl_mdio.h ├── fsl_memac.h ├── fsl_mmdc.h ├── fsl_pmic.h ├── fsl_qbman.h ├── fsl_qe.h ├── fsl_sec.h ├── fsl_sec_mon.h ├── fsl_secboot_err.h ├── fsl_sfp.h ├── fsl_tgec.h ├── fsl_usb.h ├── fsl_validate.h ├── fsl_wdog.h ├── fuse.h ├── fuzzing_engine.h ├── fwu.h ├── fwu_mdata.h ├── g_dnl.h ├── gdsys_fpga.h ├── generic-phy.h ├── getopt.h ├── gsc.h ├── gt64120.h ├── gzip.h ├── handoff.h ├── hang.h ├── hash.h ├── hda_codec.h ├── hexdump.h ├── host_arch.h ├── hw_sha.h ├── hwconfig.h ├── hwspinlock.h ├── i2c.h ├── i2c_eeprom.h ├── i2s.h ├── i8042.h ├── ide.h ├── image-android-dt.h ├── image-sparse.h ├── image.h ├── imx8image.h ├── imx_container.h ├── imx_lpi2c.h ├── imx_sip.h ├── imx_thermal.h ├── imximage.h ├── init.h ├── initcall.h ├── input.h ├── intel_gnvs.h ├── interrupt.h ├── inttypes.h ├── iommu.h ├── iomux.h ├── ioports.h ├── iotrace.h ├── ipu_pixfmt.h ├── irq.h ├── irq_func.h ├── jffs2 │ ├── compr_rubin.h │ ├── jffs2.h │ ├── jffs2_1pass.h │ ├── load_kernel.h │ └── mini_inflate.h ├── k210 │ └── pll.h ├── k3-avs.h ├── k3-clk.h ├── k3-ddrss.h ├── k3-dev.h ├── key_matrix.h ├── keyboard.h ├── keys │ └── asymmetric-type.h ├── kgdb.h ├── lattice.h ├── led.h ├── libata.h ├── libtizen.h ├── limits.h ├── linker_lists.h ├── linux │ ├── apm_bios.h │ ├── apple-mailbox.h │ ├── arm-smccc.h │ ├── asn1.h │ ├── asn1_ber_bytecode.h │ ├── asn1_decoder.h │ ├── bch.h │ ├── bitfield.h │ ├── bitmap.h │ ├── bitops.h │ ├── bitrev.h │ ├── bug.h │ ├── build_bug.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── clk-provider.h │ ├── clk │ │ ├── analogbits-wrpll-cln28hpc.h │ │ └── at91_pmc.h │ ├── compat.h │ ├── compiler-clang.h │ ├── compiler-gcc.h │ ├── compiler-intel.h │ ├── compiler.h │ ├── compiler_attributes.h │ ├── compiler_types.h │ ├── completion.h │ ├── const.h │ ├── crc16.h │ ├── crc32.h │ ├── crc7.h │ ├── ctype.h │ ├── delay.h │ ├── dma-direction.h │ ├── dma-mapping.h │ ├── drm_dp_helper.h │ ├── edd.h │ ├── err.h │ ├── errno.h │ ├── ethtool.h │ ├── fb.h │ ├── if_ether.h │ ├── if_vlan.h │ ├── immap_qe.h │ ├── input.h │ ├── intel-smc.h │ ├── io.h │ ├── ioctl.h │ ├── iopoll.h │ ├── ioport.h │ ├── kbuild.h │ ├── kconfig.h │ ├── kernel.h │ ├── libfdt.h │ ├── libfdt_env.h │ ├── linkage.h │ ├── linux_string.h │ ├── list.h │ ├── list_sort.h │ ├── litex.h │ ├── log2.h │ ├── lzo.h │ ├── math64.h │ ├── mbus.h │ ├── mdio.h │ ├── mfd │ │ └── syscon │ │ │ ├── atmel-matrix.h │ │ │ └── atmel-smc.h │ ├── mii.h │ ├── mtd │ │ ├── bbm.h │ │ ├── casn.h │ │ ├── cfi.h │ │ ├── concat.h │ │ ├── flashchip.h │ │ ├── mtd.h │ │ ├── nand.h │ │ ├── nand_bch.h │ │ ├── nand_ecc.h │ │ ├── omap_gpmc.h │ │ ├── onenand.h │ │ ├── onenand_regs.h │ │ ├── partitions.h │ │ ├── rawnand.h │ │ ├── samsung_onenand.h │ │ ├── spi-nor.h │ │ ├── spinand.h │ │ └── ubi.h │ ├── netdevice.h │ ├── oid_registry.h │ ├── poison.h │ ├── posix_types.h │ ├── printk.h │ ├── pruss_driver.h │ ├── psci.h │ ├── rational.h │ ├── rbtree.h │ ├── rbtree_augmented.h │ ├── screen_info.h │ ├── serial_reg.h │ ├── sizes.h │ ├── soc │ │ └── ti │ │ │ ├── cppi5.h │ │ │ ├── k3-navss-ringacc.h │ │ │ ├── k3-sec-proxy.h │ │ │ ├── ti-udma.h │ │ │ └── ti_sci_protocol.h │ ├── stat.h │ ├── stddef.h │ ├── string.h │ ├── stringify.h │ ├── time.h │ ├── typecheck.h │ ├── types.h │ ├── unaligned │ │ ├── be_byteshift.h │ │ ├── generic.h │ │ └── le_byteshift.h │ ├── usb │ │ ├── at91_udc.h │ │ ├── atmel_usba_udc.h │ │ ├── cdc.h │ │ ├── ch9.h │ │ ├── composite.h │ │ ├── dwc3-omap.h │ │ ├── dwc3.h │ │ ├── gadget.h │ │ ├── musb.h │ │ ├── otg.h │ │ ├── phy-rockchip-usbdp.h │ │ ├── phy.h │ │ ├── usb_urb_compat.h │ │ ├── xhci-fsl.h │ │ └── xhci-omap.h │ ├── utf.h │ ├── xxhash.h │ ├── zstd.h │ ├── zstd_errors.h │ └── zstd_lib.h ├── lmb.h ├── log.h ├── lzma │ ├── LzmaDec.h │ ├── LzmaTools.h │ └── LzmaTypes.h ├── mailbox-uclass.h ├── mailbox.h ├── malloc.h ├── mapmem.h ├── marvell_phy.h ├── mc13892.h ├── mcheck.h ├── media_bus_format.h ├── memalign.h ├── membuf.h ├── memtop.h ├── menu.h ├── meson │ └── sm.h ├── micrel.h ├── miiphy.h ├── mipi_display.h ├── mipi_dsi.h ├── misc.h ├── mm_communication.h ├── mmc.h ├── mpc83xx.h ├── mpc85xx.h ├── mpc8xx.h ├── mpc8xx_irq.h ├── msc01.h ├── mtd.h ├── mtd │ ├── cfi_flash.h │ ├── mtd-abi.h │ └── ubi-user.h ├── mtd_node.h ├── mux-internal.h ├── mux.h ├── mv88e6352.h ├── mvebu │ └── comphy.h ├── mvebu_mmc.h ├── mxs_nand.h ├── nand.h ├── ndisc.h ├── net-common.h ├── net-legacy.h ├── net-lwip.h ├── net.h ├── net │ ├── dsa.h │ ├── fastboot_tcp.h │ ├── fastboot_udp.h │ ├── ldpaa_eth.h │ ├── mtk_httpd.h │ ├── mtk_tcp.h │ ├── ncsi-pkt.h │ ├── ncsi.h │ ├── pcap.h │ ├── pfe_eth │ │ ├── pfe │ │ │ ├── cbus.h │ │ │ ├── cbus │ │ │ │ ├── bmu.h │ │ │ │ ├── class_csr.h │ │ │ │ ├── emac.h │ │ │ │ ├── gpi.h │ │ │ │ ├── hif.h │ │ │ │ ├── hif_nocpy.h │ │ │ │ ├── tmu_csr.h │ │ │ │ └── util_csr.h │ │ │ └── pfe_hw.h │ │ ├── pfe_driver.h │ │ ├── pfe_eth.h │ │ ├── pfe_firmware.h │ │ └── pfe_mdio.h │ ├── sntp.h │ ├── tcp.h │ ├── tftp.h │ ├── udp.h │ └── wget.h ├── net6.h ├── netdev.h ├── nmbm │ ├── nmbm-mtd.h │ ├── nmbm-os.h │ └── nmbm.h ├── ns16550.h ├── nuvoton_nct6102d.h ├── nvme.h ├── nvmem.h ├── nvmxip.h ├── of_live.h ├── omap3_spi.h ├── onenand_uboot.h ├── opensbi.h ├── os.h ├── p2sb.h ├── palmas.h ├── panel.h ├── part.h ├── part_efi.h ├── pca953x.h ├── pch.h ├── pci.h ├── pci_ep.h ├── pci_gt64120.h ├── pci_ids.h ├── pci_msc01.h ├── pci_rom.h ├── pci_tegra.h ├── pe.h ├── phy-mipi-dphy.h ├── phy-sun4i-usb.h ├── phy.h ├── phy_interface.h ├── phys2bus.h ├── physmem.h ├── post.h ├── power-domain-uclass.h ├── power-domain.h ├── power │ ├── ab8500.h │ ├── acpi_pmc.h │ ├── act8846_pmic.h │ ├── as3722.h │ ├── battery.h │ ├── bd71837.h │ ├── cpcap.h │ ├── da9063_pmic.h │ ├── fan53555.h │ ├── hi6553_pmic.h │ ├── lp873x.h │ ├── lp87565.h │ ├── ltc3676_pmic.h │ ├── max17042_fg.h │ ├── max77663.h │ ├── max77686_pmic.h │ ├── max77693_fg.h │ ├── max77693_muic.h │ ├── max77693_pmic.h │ ├── max8907.h │ ├── max8997_muic.h │ ├── max8997_pmic.h │ ├── max8998_pmic.h │ ├── mc34vr500_pmic.h │ ├── mp5416.h │ ├── palmas.h │ ├── pca9450.h │ ├── pfuze100_pmic.h │ ├── pfuze3000_pmic.h │ ├── pmic.h │ ├── power_chrg.h │ ├── regulator.h │ ├── rk8xx_pmic.h │ ├── rn5t567_pmic.h │ ├── s2mps11.h │ ├── s5m8767.h │ ├── sandbox_pmic.h │ ├── stpmic1.h │ ├── tps62362.h │ ├── tps65090.h │ ├── tps65217.h │ ├── tps65218.h │ ├── tps65219.h │ ├── tps65910.h │ ├── tps65910_pmic.h │ ├── tps65941.h │ └── tps80031.h ├── ppc_asm.tmpl ├── ppc_defs.h ├── pvblock.h ├── pwm.h ├── pwrseq.h ├── pxe_utils.h ├── qfw.h ├── ram.h ├── rand.h ├── rc4.h ├── reboot-mode │ ├── reboot-mode-gpio.h │ ├── reboot-mode-rtc.h │ └── reboot-mode.h ├── regmap.h ├── relocate.h ├── remoteproc.h ├── renesas │ ├── ddr_ctrl.h │ ├── is43tr16256a_125k_CTL.h │ ├── jedec_ddr3_2g_x16_1333h_500_cl8.h │ ├── rzg2l-pfc.h │ └── rzg2l-usbphy.h ├── reset-uclass.h ├── reset.h ├── rkmtd.h ├── rng.h ├── rtc.h ├── rtc_def.h ├── s_record.h ├── samsung-usb-phy-uboot.h ├── samsung │ ├── exynos5-dt-types.h │ └── misc.h ├── sandbox-adc.h ├── sandbox-clk.h ├── sandbox-sm.h ├── sandbox_efi_capsule.h ├── sandbox_host.h ├── sandboxfs.h ├── sandboxtee.h ├── sata.h ├── scmi_agent-uclass.h ├── scmi_agent.h ├── scmi_protocols.h ├── scp03.h ├── scsi.h ├── scsi_emul.h ├── sdhci.h ├── sdp.h ├── search.h ├── semihosting.h ├── semihostingfs.h ├── serial.h ├── setjmp.h ├── sh_pfc.h ├── signatures.h ├── sl28cpld.h ├── slre.h ├── sm-uclass.h ├── sm.h ├── smbios.h ├── smbios_def.h ├── smbios_plat.h ├── smem.h ├── smsc_lpc47m.h ├── smsc_sio1007.h ├── soc.h ├── soc │ └── qcom │ │ ├── cmd-db.h │ │ ├── geni-se.h │ │ ├── rpmh.h │ │ └── tcs.h ├── sort.h ├── sound.h ├── sparse_defs.h ├── sparse_format.h ├── spartan2.h ├── spartan3.h ├── spd.h ├── spd_sdram.h ├── spi-mem.h ├── spi.h ├── spi_flash.h ├── spl.h ├── spl_gpio.h ├── spl_load.h ├── splash.h ├── spmi │ └── spmi.h ├── squashfs.h ├── status_led.h ├── stdint.h ├── stdio.h ├── stdio_dev.h ├── stdlib.h ├── stm32_rcc.h ├── stm32mp25_rcc.h ├── stratixII.h ├── string.h ├── sunxi_gpio.h ├── sunxi_image.h ├── sy8106a.h ├── syscon.h ├── sysinfo.h ├── sysreset.h ├── system-constants.h ├── tables_csum.h ├── tee.h ├── tee │ ├── optee.h │ ├── optee_service.h │ ├── optee_ta_avb.h │ ├── optee_ta_rpc_test.h │ └── optee_ta_scp03.h ├── tegra-kbc.h ├── test │ ├── cedit-test.h │ ├── cmd.h │ ├── common.h │ ├── env.h │ ├── export.h │ ├── fdt_overlay.h │ ├── fuzz.h │ ├── hush.h │ ├── lib.h │ ├── log.h │ ├── optee.h │ ├── spl.h │ ├── test.h │ ├── ut.h │ └── video.h ├── thermal.h ├── thor.h ├── ti-usb-phy-uboot.h ├── time.h ├── timer.h ├── timestamp.h ├── tlv_eeprom.h ├── tmu.h ├── tpm-common.h ├── tpm-v1.h ├── tpm-v2.h ├── tpm_api.h ├── tpm_tcg2.h ├── tps6586x.h ├── trace.h ├── tsec.h ├── turris-omnia-mcu-interface.h ├── twl4030.h ├── u-boot │ ├── aes.h │ ├── blake2.h │ ├── crc.h │ ├── ecdsa.h │ ├── fdt-libcrypto.h │ ├── hash-checksum.h │ ├── hash.h │ ├── lz4.h │ ├── md5.h │ ├── rsa-mod-exp.h │ ├── rsa.h │ ├── schedule.h │ ├── sha1.h │ ├── sha256.h │ ├── sha512.h │ ├── u-boot.lds.h │ ├── uuid.h │ ├── variadic-macro.h │ └── zlib.h ├── ubi_uboot.h ├── ubifs_uboot.h ├── ubispl.h ├── uboot_aes.h ├── ufs.h ├── universe.h ├── upl.h ├── usb.h ├── usb │ ├── ci_udc.h │ ├── dwc2_udc.h │ ├── ehci-ci.h │ ├── pd.h │ ├── tcpm.h │ ├── udc.h │ ├── ulpi.h │ └── xhci.h ├── usb_cdc_acm.h ├── usb_defs.h ├── usb_ether.h ├── usb_mass_storage.h ├── usbdescriptors.h ├── usbdevice.h ├── usbroothubdes.h ├── uthread.h ├── valgrind │ ├── memcheck.h │ └── valgrind.h ├── vbe.h ├── versalpl.h ├── version.h ├── version_string.h ├── vesa.h ├── video.h ├── video_bridge.h ├── video_console.h ├── video_font.h ├── video_font_4x6.h ├── video_font_8x16.h ├── video_font_data.h ├── video_font_sun12x22.h ├── video_font_ter16x32.h ├── video_osd.h ├── virtex2.h ├── virtio.h ├── virtio_ring.h ├── virtio_types.h ├── vsc7385.h ├── vsc9953.h ├── vsprintf.h ├── vxworks.h ├── w1-eeprom.h ├── w1.h ├── wait_bit.h ├── watchdog.h ├── wdt.h ├── winbond_w83627.h ├── xen.h ├── xen │ ├── arm │ │ └── interface.h │ ├── events.h │ ├── gnttab.h │ ├── hvm.h │ ├── interface │ │ ├── event_channel.h │ │ ├── grant_table.h │ │ ├── hvm │ │ │ ├── hvm_op.h │ │ │ └── params.h │ │ ├── io │ │ │ ├── blkif.h │ │ │ ├── console.h │ │ │ ├── protocols.h │ │ │ ├── ring.h │ │ │ ├── xenbus.h │ │ │ └── xs_wire.h │ │ ├── memory.h │ │ ├── sched.h │ │ └── xen.h │ └── xenbus.h ├── xilinx.h ├── xyzModem.h ├── xz │ └── xz.h ├── zfs │ ├── dmu.h │ ├── dmu_objset.h │ ├── dnode.h │ ├── dsl_dataset.h │ ├── dsl_dir.h │ ├── sa_impl.h │ ├── spa.h │ ├── uberblock_impl.h │ ├── vdev_impl.h │ ├── zap_impl.h │ ├── zap_leaf.h │ ├── zfs.h │ ├── zfs_acl.h │ ├── zfs_znode.h │ ├── zil.h │ ├── zio.h │ └── zio_checksum.h ├── zfs_common.h ├── zynq_bootimg.h ├── zynqmp_firmware.h ├── zynqmppl.h └── zynqpl.h ├── lib ├── .gitignore ├── Kconfig ├── Makefile ├── abuf.c ├── acpi │ ├── Makefile │ ├── acpi.c │ ├── acpi_device.c │ ├── acpi_dp.c │ ├── acpi_table.c │ ├── acpi_writer.c │ ├── acpigen.c │ ├── base.c │ ├── csrt.c │ ├── dsdt.c │ ├── facs.c │ ├── mcfg.c │ └── ssdt.c ├── addr_map.c ├── aes.c ├── aes │ ├── Makefile │ ├── aes-decrypt.c │ └── aes-encrypt.c ├── alist.c ├── asm-offsets.c ├── asn1_decoder.c ├── at91 │ ├── Makefile │ ├── at91.c │ ├── atmel_logo_8bpp.h │ └── microchip_logo_8bpp.h ├── bch.c ├── binman.c ├── bitrev.c ├── blake2 │ ├── blake2-impl.h │ └── blake2b.c ├── bzip2 │ ├── Makefile │ ├── bzlib.c │ ├── bzlib_blocksort.c │ ├── bzlib_compress.c │ ├── bzlib_crctable.c │ ├── bzlib_decompress.c │ ├── bzlib_huffman.c │ ├── bzlib_private.h │ └── bzlib_randtable.c ├── charset.c ├── circbuf.c ├── crc16-ccitt.c ├── crc16.c ├── crc32.c ├── crc32c.c ├── crc7.c ├── crc8.c ├── crypt │ ├── Kconfig │ ├── Makefile │ ├── alg-sha256.h │ ├── alg-sha512.h │ ├── crypt-port.h │ ├── crypt-sha256.c │ ├── crypt-sha512.c │ └── crypt.c ├── crypto │ ├── Kconfig │ ├── Makefile │ ├── asymmetric_type.c │ ├── mscode.asn1 │ ├── mscode_parser.c │ ├── pkcs7.asn1 │ ├── pkcs7_helper.c │ ├── pkcs7_parser.c │ ├── pkcs7_verify.c │ ├── public_key.c │ ├── public_key_helper.c │ ├── rsa_helper.c │ ├── rsapubkey.asn1 │ ├── x509.asn1 │ ├── x509_akid.asn1 │ ├── x509_cert_parser.c │ ├── x509_helper.c │ └── x509_public_key.c ├── ctype.c ├── date.c ├── dhry │ ├── Kconfig │ ├── Makefile │ ├── cmd_dhry.c │ ├── dhry.h │ ├── dhry_1.c │ └── dhry_2.c ├── display_options.c ├── div64.c ├── ecdsa │ ├── Kconfig │ ├── Makefile │ ├── ecdsa-libcrypto.c │ └── ecdsa-verify.c ├── efi │ ├── Kconfig │ ├── Makefile │ ├── efi.c │ ├── efi_app.c │ ├── efi_app_init.c │ ├── efi_info.c │ └── efi_stub.c ├── efi_driver │ ├── Makefile │ ├── efi_block_device.c │ ├── efi_reset_riscv.c │ └── efi_uclass.c ├── efi_loader │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ ├── boothart.c │ ├── dbginfodump.c │ ├── dtbdump.c │ ├── efi_acpi.c │ ├── efi_bootbin.c │ ├── efi_bootmgr.c │ ├── efi_boottime.c │ ├── efi_capsule.c │ ├── efi_capsule_key.S │ ├── efi_conformance.c │ ├── efi_console.c │ ├── efi_debug_support.c │ ├── efi_device_path.c │ ├── efi_device_path_to_text.c │ ├── efi_device_path_utilities.c │ ├── efi_disk.c │ ├── efi_dt_fixup.c │ ├── efi_esrt.c │ ├── efi_fdt.c │ ├── efi_file.c │ ├── efi_firmware.c │ ├── efi_freestanding.c │ ├── efi_gop.c │ ├── efi_helper.c │ ├── efi_hii.c │ ├── efi_hii_config.c │ ├── efi_http.c │ ├── efi_image_loader.c │ ├── efi_ipconfig.c │ ├── efi_load_initrd.c │ ├── efi_load_options.c │ ├── efi_memory.c │ ├── efi_net.c │ ├── efi_riscv.c │ ├── efi_rng.c │ ├── efi_root_node.c │ ├── efi_runtime.c │ ├── efi_setup.c │ ├── efi_signature.c │ ├── efi_smbios.c │ ├── efi_string.c │ ├── efi_tcg2.c │ ├── efi_unicode_collation.c │ ├── efi_var_common.c │ ├── efi_var_file.c │ ├── efi_var_mem.c │ ├── efi_var_seed.S │ ├── efi_variable.c │ ├── efi_variable_tee.c │ ├── efi_watchdog.c │ ├── elf_efi.ldsi │ ├── helloworld.c │ ├── initrddump.c │ ├── smbiosdump.c │ └── testapp.c ├── efi_selftest │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ ├── efi_freestanding.c │ ├── efi_miniapp_tcg2_arm.h │ ├── efi_miniapp_tcg2_arm64.h │ ├── efi_miniapp_tcg2_ia32.h │ ├── efi_miniapp_tcg2_riscv32.h │ ├── efi_miniapp_tcg2_riscv64.h │ ├── efi_miniapp_tcg2_x86_64.h │ ├── efi_selftest.c │ ├── efi_selftest_bitblt.c │ ├── efi_selftest_block_device.c │ ├── efi_selftest_config_table.c │ ├── efi_selftest_console.c │ ├── efi_selftest_controllers.c │ ├── efi_selftest_crc32.c │ ├── efi_selftest_debug_support.c │ ├── efi_selftest_devicepath.c │ ├── efi_selftest_devicepath_util.c │ ├── efi_selftest_disk_image.h │ ├── efi_selftest_ecpt.c │ ├── efi_selftest_el.c │ ├── efi_selftest_esrt.c │ ├── efi_selftest_event_groups.c │ ├── efi_selftest_events.c │ ├── efi_selftest_exception.c │ ├── efi_selftest_exitbootservices.c │ ├── efi_selftest_fdt.c │ ├── efi_selftest_gop.c │ ├── efi_selftest_hii.c │ ├── efi_selftest_hii_data.c │ ├── efi_selftest_http.c │ ├── efi_selftest_ipconfig.c │ ├── efi_selftest_load_file.c │ ├── efi_selftest_loaded_image.c │ ├── efi_selftest_loadimage.c │ ├── efi_selftest_manageprotocols.c │ ├── efi_selftest_mem.c │ ├── efi_selftest_memory.c │ ├── efi_selftest_miniapp_exception.c │ ├── efi_selftest_miniapp_exit.c │ ├── efi_selftest_miniapp_return.c │ ├── efi_selftest_open_protocol.c │ ├── efi_selftest_register_notify.c │ ├── efi_selftest_reset.c │ ├── efi_selftest_rng.c │ ├── efi_selftest_rtc.c │ ├── efi_selftest_set_virtual_address_map.c │ ├── efi_selftest_snp.c │ ├── efi_selftest_startimage_exit.c │ ├── efi_selftest_startimage_return.c │ ├── efi_selftest_tcg2.c │ ├── efi_selftest_textinput.c │ ├── efi_selftest_textinputex.c │ ├── efi_selftest_textoutput.c │ ├── efi_selftest_tpl.c │ ├── efi_selftest_unaligned.c │ ├── efi_selftest_unicode_collation.c │ ├── efi_selftest_util.c │ ├── efi_selftest_variables.c │ ├── efi_selftest_variables_common.c │ ├── efi_selftest_variables_runtime.c │ └── efi_selftest_watchdog.c ├── elf.c ├── errno.c ├── errno_str.c ├── fdt-libcrypto.c ├── fdtdec.c ├── fdtdec_common.c ├── fdtdec_test.c ├── fwu_updates │ ├── Kconfig │ ├── Makefile │ ├── fwu.c │ ├── fwu_gpt.c │ ├── fwu_mtd.c │ ├── fwu_v1.c │ └── fwu_v2.c ├── getopt.c ├── gunzip.c ├── gzip.c ├── hang.c ├── hash-checksum.c ├── hashtable.c ├── hexdump.c ├── image-sparse.c ├── ldiv.c ├── libavb │ ├── Makefile │ ├── avb_chain_partition_descriptor.c │ ├── avb_chain_partition_descriptor.h │ ├── avb_cmdline.c │ ├── avb_cmdline.h │ ├── avb_crypto.c │ ├── avb_crypto.h │ ├── avb_descriptor.c │ ├── avb_descriptor.h │ ├── avb_footer.c │ ├── avb_footer.h │ ├── avb_hash_descriptor.c │ ├── avb_hash_descriptor.h │ ├── avb_hashtree_descriptor.c │ ├── avb_hashtree_descriptor.h │ ├── avb_kernel_cmdline_descriptor.c │ ├── avb_kernel_cmdline_descriptor.h │ ├── avb_ops.h │ ├── avb_property_descriptor.c │ ├── avb_property_descriptor.h │ ├── avb_rsa.c │ ├── avb_rsa.h │ ├── avb_sha.h │ ├── avb_sha256.c │ ├── avb_sha512.c │ ├── avb_slot_verify.c │ ├── avb_slot_verify.h │ ├── avb_sysdeps.h │ ├── avb_sysdeps_posix.c │ ├── avb_util.c │ ├── avb_util.h │ ├── avb_vbmeta_image.c │ ├── avb_vbmeta_image.h │ ├── avb_version.c │ ├── avb_version.h │ └── libavb.h ├── libfdt │ ├── Makefile │ ├── README │ ├── fdt.c │ ├── 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_internal.h │ └── test_libfdt.py ├── linux_compat.c ├── linux_string.c ├── list_sort.c ├── lmb.c ├── lwip │ ├── Makefile │ ├── lwip │ │ ├── BUILDING │ │ ├── CHANGELOG │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── FEATURES │ │ ├── FILES │ │ ├── README │ │ ├── UPGRADING │ │ ├── codespell_changed_files.sh │ │ ├── codespell_check.sh │ │ ├── contrib │ │ │ ├── Coverity │ │ │ │ └── coverity.c │ │ │ ├── Filelists.cmake │ │ │ ├── Filelists.mk │ │ │ ├── addons │ │ │ │ ├── dhcp_extra_opts │ │ │ │ │ ├── README │ │ │ │ │ ├── dhcp_extra_opts.c │ │ │ │ │ └── dhcp_extra_opts.h │ │ │ │ ├── ipv6_static_routing │ │ │ │ │ ├── README │ │ │ │ │ ├── ip6_route_table.c │ │ │ │ │ └── ip6_route_table.h │ │ │ │ ├── netconn │ │ │ │ │ └── external_resolve │ │ │ │ │ │ ├── dnssd.c │ │ │ │ │ │ └── dnssd.h │ │ │ │ ├── tcp_isn │ │ │ │ │ ├── tcp_isn.c │ │ │ │ │ └── tcp_isn.h │ │ │ │ └── tcp_md5 │ │ │ │ │ ├── README │ │ │ │ │ ├── tcp_md5.c │ │ │ │ │ └── tcp_md5.h │ │ │ ├── apps │ │ │ │ ├── LwipMibCompiler │ │ │ │ │ ├── CCodeGeneration │ │ │ │ │ │ ├── CCodeGeneration.csproj │ │ │ │ │ │ ├── CFile.cs │ │ │ │ │ │ ├── CGenerator.cs │ │ │ │ │ │ ├── Code.cs │ │ │ │ │ │ ├── CodeContainerBase.cs │ │ │ │ │ │ ├── CodeElement.cs │ │ │ │ │ │ ├── Comment.cs │ │ │ │ │ │ ├── EmptyLine.cs │ │ │ │ │ │ ├── Function.cs │ │ │ │ │ │ ├── FunctionDeclaration.cs │ │ │ │ │ │ ├── IfThenElse.cs │ │ │ │ │ │ ├── PP_If.cs │ │ │ │ │ │ ├── PP_Ifdef.cs │ │ │ │ │ │ ├── PP_Include.cs │ │ │ │ │ │ ├── PP_Macro.cs │ │ │ │ │ │ ├── PlainText.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── Switch.cs │ │ │ │ │ │ ├── VariableDeclaration.cs │ │ │ │ │ │ ├── VariablePrototype.cs │ │ │ │ │ │ └── VariableType.cs │ │ │ │ │ ├── LwipMibCompiler.sln │ │ │ │ │ ├── LwipMibCompiler │ │ │ │ │ │ ├── LwipMibCompiler.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ └── app.config │ │ │ │ │ ├── LwipSnmpCodeGeneration │ │ │ │ │ │ ├── IRestriction.cs │ │ │ │ │ │ ├── LwipSnmp.cs │ │ │ │ │ │ ├── LwipSnmpCodeGeneration.csproj │ │ │ │ │ │ ├── MibCFile.cs │ │ │ │ │ │ ├── MibHeaderFile.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── SnmpMib.cs │ │ │ │ │ │ ├── SnmpNode.cs │ │ │ │ │ │ ├── SnmpScalarAggregationNode.cs │ │ │ │ │ │ ├── SnmpScalarArrayNode.cs │ │ │ │ │ │ ├── SnmpScalarNode.cs │ │ │ │ │ │ ├── SnmpScalarNodeBits.cs │ │ │ │ │ │ ├── SnmpScalarNodeCounter64.cs │ │ │ │ │ │ ├── SnmpScalarNodeInt.cs │ │ │ │ │ │ ├── SnmpScalarNodeObjectIdentifier.cs │ │ │ │ │ │ ├── SnmpScalarNodeOctetString.cs │ │ │ │ │ │ ├── SnmpScalarNodeTruthValue.cs │ │ │ │ │ │ ├── SnmpScalarNodeUint.cs │ │ │ │ │ │ ├── SnmpTableNode.cs │ │ │ │ │ │ └── SnmpTreeNode.cs │ │ │ │ │ ├── MibViewer │ │ │ │ │ │ ├── FormMain.Designer.cs │ │ │ │ │ │ ├── FormMain.cs │ │ │ │ │ │ ├── FormMain.resx │ │ │ │ │ │ ├── MibViewer.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ └── app.config │ │ │ │ │ ├── Mibs │ │ │ │ │ │ ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB │ │ │ │ │ │ ├── IANA-CHARSET-MIB │ │ │ │ │ │ ├── IANA │ │ │ │ │ │ │ ├── IANA-ITU-ALARM-TC-MIB │ │ │ │ │ │ │ ├── IANA-LANGUAGE-MIB │ │ │ │ │ │ │ ├── IANA-MALLOC-MIB │ │ │ │ │ │ │ ├── IANA-MAU-MIB │ │ │ │ │ │ │ ├── IANA-PRINTER-MIB │ │ │ │ │ │ │ ├── IANA-RTPROTO-MIB │ │ │ │ │ │ │ ├── IANATn3270eTC-MIB │ │ │ │ │ │ │ └── IANAifType-MIB │ │ │ │ │ │ ├── IF-MIB │ │ │ │ │ │ ├── INET-ADDRESS-MIB │ │ │ │ │ │ ├── IP-MIB │ │ │ │ │ │ ├── RFC-1212 │ │ │ │ │ │ ├── RFC-1215 │ │ │ │ │ │ ├── RFC1065-SMI │ │ │ │ │ │ ├── RFC1155-SMI │ │ │ │ │ │ ├── RFC1158-MIB │ │ │ │ │ │ ├── RFC1213-MIB │ │ │ │ │ │ ├── SNMPv2-CONF │ │ │ │ │ │ ├── SNMPv2-MIB │ │ │ │ │ │ ├── SNMPv2-SMI │ │ │ │ │ │ ├── SNMPv2-TC │ │ │ │ │ │ ├── SNMPv2-TM │ │ │ │ │ │ ├── TCP-MIB │ │ │ │ │ │ └── UDP-MIB │ │ │ │ │ ├── SharpSnmpLib │ │ │ │ │ │ ├── Mib │ │ │ │ │ │ │ ├── DisplayHint.cs │ │ │ │ │ │ │ ├── Elements │ │ │ │ │ │ │ │ ├── Entities │ │ │ │ │ │ │ │ │ ├── AgentCapabilities.cs │ │ │ │ │ │ │ │ │ ├── EntityBase.cs │ │ │ │ │ │ │ │ │ ├── IEntity.cs │ │ │ │ │ │ │ │ │ ├── ModuleCompliance.cs │ │ │ │ │ │ │ │ │ ├── ModuleIdentity.cs │ │ │ │ │ │ │ │ │ ├── NotificationGroup.cs │ │ │ │ │ │ │ │ │ ├── NotificationType.cs │ │ │ │ │ │ │ │ │ ├── ObjectGroup.cs │ │ │ │ │ │ │ │ │ ├── ObjectIdentity.cs │ │ │ │ │ │ │ │ │ ├── ObjectType.cs │ │ │ │ │ │ │ │ │ └── OidValueAssignment.cs │ │ │ │ │ │ │ │ ├── Exports.cs │ │ │ │ │ │ │ │ ├── IDeclaration.cs │ │ │ │ │ │ │ │ ├── IElement.cs │ │ │ │ │ │ │ │ ├── ITypeReferrer.cs │ │ │ │ │ │ │ │ ├── Imports.cs │ │ │ │ │ │ │ │ ├── ImportsFrom.cs │ │ │ │ │ │ │ │ ├── TrapType.cs │ │ │ │ │ │ │ │ └── Types │ │ │ │ │ │ │ │ │ ├── BaseType.cs │ │ │ │ │ │ │ │ │ ├── BitsType.cs │ │ │ │ │ │ │ │ │ ├── Choice.cs │ │ │ │ │ │ │ │ │ ├── ITypeAssignment.cs │ │ │ │ │ │ │ │ │ ├── IntegerType.cs │ │ │ │ │ │ │ │ │ ├── IpAddressType.cs │ │ │ │ │ │ │ │ │ ├── Macro.cs │ │ │ │ │ │ │ │ │ ├── ObjectIdentifierType.cs │ │ │ │ │ │ │ │ │ ├── OctetStringType.cs │ │ │ │ │ │ │ │ │ ├── OpaqueType.cs │ │ │ │ │ │ │ │ │ ├── Sequence.cs │ │ │ │ │ │ │ │ │ ├── SequenceOf.cs │ │ │ │ │ │ │ │ │ ├── TextualConvention.cs │ │ │ │ │ │ │ │ │ ├── TypeAssignment.cs │ │ │ │ │ │ │ │ │ └── UnsignedType.cs │ │ │ │ │ │ │ ├── IModule.cs │ │ │ │ │ │ │ ├── ISymbolEnumerator.cs │ │ │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ │ │ ├── MaxAccess.cs │ │ │ │ │ │ │ ├── MibDocument.cs │ │ │ │ │ │ │ ├── MibException.cs │ │ │ │ │ │ │ ├── MibModule.cs │ │ │ │ │ │ │ ├── MibResolver.cs │ │ │ │ │ │ │ ├── MibTree.cs │ │ │ │ │ │ │ ├── MibTreeNode.cs │ │ │ │ │ │ │ ├── MibTypesResolver.cs │ │ │ │ │ │ │ ├── ObjectIdentifier.cs │ │ │ │ │ │ │ ├── Status.cs │ │ │ │ │ │ │ ├── Symbol.cs │ │ │ │ │ │ │ ├── SymbolList.cs │ │ │ │ │ │ │ ├── ValueMap.cs │ │ │ │ │ │ │ └── ValueRange.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ │ ├── SharpSnmpLib.Mib.csproj │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── sharpsnmplib.snk │ │ │ │ │ └── example │ │ │ │ │ │ ├── compile_udp_mib.cmd │ │ │ │ │ │ └── compile_udp_mib.sh │ │ │ │ ├── chargen │ │ │ │ │ ├── README │ │ │ │ │ ├── chargen.c │ │ │ │ │ └── chargen.h │ │ │ │ ├── httpserver │ │ │ │ │ ├── README │ │ │ │ │ ├── httpserver-netconn.c │ │ │ │ │ └── httpserver-netconn.h │ │ │ │ ├── netio │ │ │ │ │ ├── netio.c │ │ │ │ │ └── netio.h │ │ │ │ ├── ping │ │ │ │ │ ├── ping.c │ │ │ │ │ └── ping.h │ │ │ │ ├── rtp │ │ │ │ │ ├── rtp.c │ │ │ │ │ ├── rtp.h │ │ │ │ │ └── rtpdata.h │ │ │ │ ├── shell │ │ │ │ │ ├── shell.c │ │ │ │ │ └── shell.h │ │ │ │ ├── socket_examples │ │ │ │ │ ├── socket_examples.c │ │ │ │ │ └── socket_examples.h │ │ │ │ ├── tcpecho │ │ │ │ │ ├── tcpecho.c │ │ │ │ │ └── tcpecho.h │ │ │ │ ├── tcpecho_raw │ │ │ │ │ ├── tcpecho_raw.c │ │ │ │ │ └── tcpecho_raw.h │ │ │ │ ├── udpecho │ │ │ │ │ ├── udpecho.c │ │ │ │ │ └── udpecho.h │ │ │ │ └── udpecho_raw │ │ │ │ │ ├── udpecho_raw.c │ │ │ │ │ └── udpecho_raw.h │ │ │ ├── examples │ │ │ │ ├── ethernetif │ │ │ │ │ └── ethernetif.c │ │ │ │ ├── example_app │ │ │ │ │ ├── default_netif.h │ │ │ │ │ ├── lwipcfg.h.ci │ │ │ │ │ ├── lwipcfg.h.example │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ ├── lwippools.h │ │ │ │ │ ├── ppp_settings.h │ │ │ │ │ ├── test.c │ │ │ │ │ └── test_configs │ │ │ │ │ │ ├── opt_default.h │ │ │ │ │ │ ├── opt_dualstack.h │ │ │ │ │ │ ├── opt_ipv4only.h │ │ │ │ │ │ ├── opt_ipv6only.h │ │ │ │ │ │ ├── opt_no_tcp_dualstack.h │ │ │ │ │ │ ├── opt_no_tcp_ipv4only.h │ │ │ │ │ │ ├── opt_no_tcp_ipv6only.h │ │ │ │ │ │ ├── opt_no_udp_dualstack.h │ │ │ │ │ │ ├── opt_no_udp_ipv4only.h │ │ │ │ │ │ ├── opt_no_udp_ipv6only.h │ │ │ │ │ │ ├── opt_none.h │ │ │ │ │ │ ├── opt_nosys_dual.h │ │ │ │ │ │ ├── opt_nosys_ipv4.h │ │ │ │ │ │ └── opt_nosys_ipv6.h │ │ │ │ ├── httpd │ │ │ │ │ ├── cgi_example │ │ │ │ │ │ ├── cgi_example.c │ │ │ │ │ │ └── cgi_example.h │ │ │ │ │ ├── examples_fs │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── sics.gif │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ ├── loginfail.html │ │ │ │ │ │ ├── session.html │ │ │ │ │ │ └── ssi.shtml │ │ │ │ │ ├── examples_fsdata.c │ │ │ │ │ ├── fs_example │ │ │ │ │ │ ├── fs_example.c │ │ │ │ │ │ └── fs_example.h │ │ │ │ │ ├── genfiles_example │ │ │ │ │ │ ├── genfiles_example.c │ │ │ │ │ │ └── genfiles_example.h │ │ │ │ │ ├── https_example │ │ │ │ │ │ ├── https_example.c │ │ │ │ │ │ └── https_example.h │ │ │ │ │ ├── post_example │ │ │ │ │ │ └── post_example.c │ │ │ │ │ └── ssi_example │ │ │ │ │ │ ├── ssi_example.c │ │ │ │ │ │ └── ssi_example.h │ │ │ │ ├── lwiperf │ │ │ │ │ ├── lwiperf_example.c │ │ │ │ │ └── lwiperf_example.h │ │ │ │ ├── mdns │ │ │ │ │ ├── mdns_example.c │ │ │ │ │ └── mdns_example.h │ │ │ │ ├── mqtt │ │ │ │ │ ├── mqtt_example.c │ │ │ │ │ └── mqtt_example.h │ │ │ │ ├── ppp │ │ │ │ │ ├── pppos_example.c │ │ │ │ │ └── pppos_example.h │ │ │ │ ├── snmp │ │ │ │ │ ├── snmp_example.c │ │ │ │ │ ├── snmp_example.h │ │ │ │ │ ├── snmp_private_mib │ │ │ │ │ │ ├── lwip_prvmib.c │ │ │ │ │ │ └── private_mib.h │ │ │ │ │ └── snmp_v3 │ │ │ │ │ │ ├── snmpv3_dummy.c │ │ │ │ │ │ └── snmpv3_dummy.h │ │ │ │ ├── sntp │ │ │ │ │ ├── sntp_example.c │ │ │ │ │ └── sntp_example.h │ │ │ │ └── tftp │ │ │ │ │ ├── tftp_example.c │ │ │ │ │ └── tftp_example.h │ │ │ └── ports │ │ │ │ ├── CMakeCommon.cmake │ │ │ │ ├── Common.allports.mk │ │ │ │ ├── freertos │ │ │ │ ├── include │ │ │ │ │ └── arch │ │ │ │ │ │ └── sys_arch.h │ │ │ │ └── sys_arch.c │ │ │ │ ├── unix │ │ │ │ ├── Common.mk │ │ │ │ ├── Filelists.cmake │ │ │ │ ├── README │ │ │ │ ├── check │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── config.h │ │ │ │ ├── example_app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── default_netif.c │ │ │ │ │ └── iteropts.sh │ │ │ │ ├── lib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README │ │ │ │ │ └── lwipopts.h │ │ │ │ ├── port │ │ │ │ │ ├── include │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ ├── fifo.h │ │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ │ ├── pcapif.h │ │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ │ ├── tapif.h │ │ │ │ │ │ │ └── vdeif.h │ │ │ │ │ ├── netif │ │ │ │ │ │ ├── fifo.c │ │ │ │ │ │ ├── list.c │ │ │ │ │ │ ├── pcapif.c │ │ │ │ │ │ ├── sio.c │ │ │ │ │ │ ├── tapif.c │ │ │ │ │ │ └── vdeif.c │ │ │ │ │ ├── perf.c │ │ │ │ │ └── sys_arch.c │ │ │ │ ├── posixlib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Uninstall.cmake │ │ │ │ │ ├── include │ │ │ │ │ │ └── posix │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ └── sockets.h │ │ │ │ │ └── lwipopts.h │ │ │ │ └── setup-tapif │ │ │ │ └── win32 │ │ │ │ ├── Common.mk │ │ │ │ ├── Filelists.cmake │ │ │ │ ├── check │ │ │ │ ├── check_stdint.h │ │ │ │ ├── config.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── sys │ │ │ │ │ └── time.h │ │ │ │ ├── time.c │ │ │ │ └── unistd.h │ │ │ │ ├── example_app │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── default_netif.c │ │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ ├── bpstruct.h │ │ │ │ │ ├── cc.h │ │ │ │ │ ├── epstruct.h │ │ │ │ │ ├── perf.h │ │ │ │ │ └── sys_arch.h │ │ │ │ ├── msvc │ │ │ │ ├── build_coverity.cmd │ │ │ │ ├── libcheck.vcxproj │ │ │ │ ├── libcheck.vcxproj.filters │ │ │ │ ├── lwIP.vcxproj │ │ │ │ ├── lwIP.vcxproj.filters │ │ │ │ ├── lwIP_Test.sln │ │ │ │ ├── lwIP_Test.vcxproj │ │ │ │ ├── lwIP_Test.vcxproj.filters │ │ │ │ ├── lwIP_pcapif.vcxproj │ │ │ │ ├── lwIP_pcapif.vcxproj.filters │ │ │ │ ├── lwIP_unittests.sln │ │ │ │ ├── lwip_unittests.vcxproj │ │ │ │ ├── lwip_unittests.vcxproj.filters │ │ │ │ ├── makefsdata.vcxproj │ │ │ │ └── makefsdata.vcxproj.filters │ │ │ │ ├── pcapif.c │ │ │ │ ├── pcapif.h │ │ │ │ ├── pcapif_helper.c │ │ │ │ ├── pcapif_helper.h │ │ │ │ ├── readme.txt │ │ │ │ ├── sio.c │ │ │ │ └── sys_arch.c │ │ ├── doc │ │ │ ├── FILES │ │ │ ├── NO_SYS_SampleCode.c │ │ │ ├── ZeroCopyRx.c │ │ │ ├── contrib.txt │ │ │ ├── doxygen │ │ │ │ ├── generate.bat │ │ │ │ ├── generate.sh │ │ │ │ ├── lwip.Doxyfile │ │ │ │ ├── lwip.Doxyfile.cmake.in │ │ │ │ ├── main_page.h │ │ │ │ └── output │ │ │ │ │ └── index.html │ │ │ ├── mdns.txt │ │ │ ├── mqtt_client.txt │ │ │ ├── ppp.txt │ │ │ └── savannah.txt │ │ ├── src │ │ │ ├── FILES │ │ │ ├── Filelists.cmake │ │ │ ├── Filelists.mk │ │ │ ├── api │ │ │ │ ├── api_lib.c │ │ │ │ ├── api_msg.c │ │ │ │ ├── err.c │ │ │ │ ├── if_api.c │ │ │ │ ├── netbuf.c │ │ │ │ ├── netdb.c │ │ │ │ ├── netifapi.c │ │ │ │ ├── sockets.c │ │ │ │ └── tcpip.c │ │ │ ├── apps │ │ │ │ ├── altcp_tls │ │ │ │ │ ├── altcp_tls_mbedtls.c │ │ │ │ │ ├── altcp_tls_mbedtls_mem.c │ │ │ │ │ ├── altcp_tls_mbedtls_mem.h │ │ │ │ │ └── altcp_tls_mbedtls_structs.h │ │ │ │ ├── http │ │ │ │ │ ├── altcp_proxyconnect.c │ │ │ │ │ ├── fs.c │ │ │ │ │ ├── fs │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── sics.gif │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fsdata.c │ │ │ │ │ ├── fsdata.h │ │ │ │ │ ├── http_client.c │ │ │ │ │ ├── httpd.c │ │ │ │ │ ├── httpd_structs.h │ │ │ │ │ └── makefsdata │ │ │ │ │ │ ├── makefsdata │ │ │ │ │ │ ├── makefsdata.c │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── tinydir.h │ │ │ │ ├── lwiperf │ │ │ │ │ └── lwiperf.c │ │ │ │ ├── mdns │ │ │ │ │ ├── mdns.c │ │ │ │ │ ├── mdns_domain.c │ │ │ │ │ └── mdns_out.c │ │ │ │ ├── mqtt │ │ │ │ │ └── mqtt.c │ │ │ │ ├── netbiosns │ │ │ │ │ └── netbiosns.c │ │ │ │ ├── smtp │ │ │ │ │ └── smtp.c │ │ │ │ ├── snmp │ │ │ │ │ ├── snmp_asn1.c │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ ├── snmp_core.c │ │ │ │ │ ├── snmp_core_priv.h │ │ │ │ │ ├── snmp_mib2.c │ │ │ │ │ ├── snmp_mib2_icmp.c │ │ │ │ │ ├── snmp_mib2_interfaces.c │ │ │ │ │ ├── snmp_mib2_ip.c │ │ │ │ │ ├── snmp_mib2_snmp.c │ │ │ │ │ ├── snmp_mib2_system.c │ │ │ │ │ ├── snmp_mib2_tcp.c │ │ │ │ │ ├── snmp_mib2_udp.c │ │ │ │ │ ├── snmp_msg.c │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ ├── snmp_netconn.c │ │ │ │ │ ├── snmp_pbuf_stream.c │ │ │ │ │ ├── snmp_pbuf_stream.h │ │ │ │ │ ├── snmp_raw.c │ │ │ │ │ ├── snmp_scalar.c │ │ │ │ │ ├── snmp_snmpv2_framework.c │ │ │ │ │ ├── snmp_snmpv2_usm.c │ │ │ │ │ ├── snmp_table.c │ │ │ │ │ ├── snmp_threadsync.c │ │ │ │ │ ├── snmp_traps.c │ │ │ │ │ ├── snmpv3.c │ │ │ │ │ ├── snmpv3_mbedtls.c │ │ │ │ │ └── snmpv3_priv.h │ │ │ │ ├── sntp │ │ │ │ │ └── sntp.c │ │ │ │ └── tftp │ │ │ │ │ └── tftp.c │ │ │ ├── core │ │ │ │ ├── altcp.c │ │ │ │ ├── altcp_alloc.c │ │ │ │ ├── altcp_tcp.c │ │ │ │ ├── def.c │ │ │ │ ├── dns.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── init.c │ │ │ │ ├── ip.c │ │ │ │ ├── ipv4 │ │ │ │ │ ├── acd.c │ │ │ │ │ ├── autoip.c │ │ │ │ │ ├── dhcp.c │ │ │ │ │ ├── etharp.c │ │ │ │ │ ├── icmp.c │ │ │ │ │ ├── igmp.c │ │ │ │ │ ├── ip4.c │ │ │ │ │ ├── ip4_addr.c │ │ │ │ │ └── ip4_frag.c │ │ │ │ ├── ipv6 │ │ │ │ │ ├── dhcp6.c │ │ │ │ │ ├── ethip6.c │ │ │ │ │ ├── icmp6.c │ │ │ │ │ ├── inet6.c │ │ │ │ │ ├── ip6.c │ │ │ │ │ ├── ip6_addr.c │ │ │ │ │ ├── ip6_frag.c │ │ │ │ │ ├── mld6.c │ │ │ │ │ └── nd6.c │ │ │ │ ├── mem.c │ │ │ │ ├── memp.c │ │ │ │ ├── netif.c │ │ │ │ ├── pbuf.c │ │ │ │ ├── raw.c │ │ │ │ ├── stats.c │ │ │ │ ├── sys.c │ │ │ │ ├── tcp.c │ │ │ │ ├── tcp_in.c │ │ │ │ ├── tcp_out.c │ │ │ │ ├── timeouts.c │ │ │ │ └── udp.c │ │ │ ├── include │ │ │ │ ├── compat │ │ │ │ │ ├── posix │ │ │ │ │ │ ├── arpa │ │ │ │ │ │ │ └── inet.h │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── if.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ └── socket.h │ │ │ │ │ └── stdc │ │ │ │ │ │ └── errno.h │ │ │ │ ├── lwip │ │ │ │ │ ├── acd.h │ │ │ │ │ ├── altcp.h │ │ │ │ │ ├── altcp_tcp.h │ │ │ │ │ ├── altcp_tls.h │ │ │ │ │ ├── api.h │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── FILES │ │ │ │ │ │ ├── altcp_proxyconnect.h │ │ │ │ │ │ ├── altcp_tls_mbedtls_opts.h │ │ │ │ │ │ ├── fs.h │ │ │ │ │ │ ├── http_client.h │ │ │ │ │ │ ├── httpd.h │ │ │ │ │ │ ├── httpd_opts.h │ │ │ │ │ │ ├── lwiperf.h │ │ │ │ │ │ ├── mdns.h │ │ │ │ │ │ ├── mdns_domain.h │ │ │ │ │ │ ├── mdns_opts.h │ │ │ │ │ │ ├── mdns_out.h │ │ │ │ │ │ ├── mdns_priv.h │ │ │ │ │ │ ├── mqtt.h │ │ │ │ │ │ ├── mqtt_opts.h │ │ │ │ │ │ ├── mqtt_priv.h │ │ │ │ │ │ ├── netbiosns.h │ │ │ │ │ │ ├── netbiosns_opts.h │ │ │ │ │ │ ├── smtp.h │ │ │ │ │ │ ├── smtp_opts.h │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ ├── snmp_core.h │ │ │ │ │ │ ├── snmp_mib2.h │ │ │ │ │ │ ├── snmp_opts.h │ │ │ │ │ │ ├── snmp_scalar.h │ │ │ │ │ │ ├── snmp_snmpv2_framework.h │ │ │ │ │ │ ├── snmp_snmpv2_usm.h │ │ │ │ │ │ ├── snmp_table.h │ │ │ │ │ │ ├── snmp_threadsync.h │ │ │ │ │ │ ├── snmpv3.h │ │ │ │ │ │ ├── sntp.h │ │ │ │ │ │ ├── sntp_opts.h │ │ │ │ │ │ ├── tftp_client.h │ │ │ │ │ │ ├── tftp_common.h │ │ │ │ │ │ ├── tftp_opts.h │ │ │ │ │ │ └── tftp_server.h │ │ │ │ │ ├── arch.h │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── def.h │ │ │ │ │ ├── dhcp.h │ │ │ │ │ ├── dhcp6.h │ │ │ │ │ ├── dns.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── etharp.h │ │ │ │ │ ├── ethip6.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── if_api.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── init.h.cmake.in │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip4.h │ │ │ │ │ ├── ip4_addr.h │ │ │ │ │ ├── ip4_frag.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── ip6_addr.h │ │ │ │ │ ├── ip6_frag.h │ │ │ │ │ ├── ip6_zone.h │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── memp.h │ │ │ │ │ ├── mld6.h │ │ │ │ │ ├── nd6.h │ │ │ │ │ ├── netbuf.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netif.h │ │ │ │ │ ├── netifapi.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── pbuf.h │ │ │ │ │ ├── priv │ │ │ │ │ │ ├── altcp_priv.h │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ ├── mem_priv.h │ │ │ │ │ │ ├── memp_priv.h │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ ├── nd6_priv.h │ │ │ │ │ │ ├── raw_priv.h │ │ │ │ │ │ ├── sockets_priv.h │ │ │ │ │ │ ├── tcp_priv.h │ │ │ │ │ │ └── tcpip_priv.h │ │ │ │ │ ├── prot │ │ │ │ │ │ ├── acd.h │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ ├── dhcp6.h │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ ├── ethernet.h │ │ │ │ │ │ ├── iana.h │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ ├── icmp6.h │ │ │ │ │ │ ├── ieee.h │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ ├── ip4.h │ │ │ │ │ │ ├── ip6.h │ │ │ │ │ │ ├── mld6.h │ │ │ │ │ │ ├── nd6.h │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ └── udp.h │ │ │ │ │ ├── raw.h │ │ │ │ │ ├── sio.h │ │ │ │ │ ├── snmp.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── sys.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ ├── tcpbase.h │ │ │ │ │ ├── tcpip.h │ │ │ │ │ ├── timeouts.h │ │ │ │ │ └── udp.h │ │ │ │ └── netif │ │ │ │ │ ├── bridgeif.h │ │ │ │ │ ├── bridgeif_opts.h │ │ │ │ │ ├── etharp.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── ieee802154.h │ │ │ │ │ ├── lowpan6.h │ │ │ │ │ ├── lowpan6_ble.h │ │ │ │ │ ├── lowpan6_common.h │ │ │ │ │ ├── lowpan6_opts.h │ │ │ │ │ ├── ppp │ │ │ │ │ ├── ccp.h │ │ │ │ │ ├── chap-md5.h │ │ │ │ │ ├── chap-new.h │ │ │ │ │ ├── chap_ms.h │ │ │ │ │ ├── eap.h │ │ │ │ │ ├── ecp.h │ │ │ │ │ ├── eui64.h │ │ │ │ │ ├── fsm.h │ │ │ │ │ ├── ipcp.h │ │ │ │ │ ├── ipv6cp.h │ │ │ │ │ ├── lcp.h │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── mppe.h │ │ │ │ │ ├── polarssl │ │ │ │ │ │ ├── arc4.h │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ ├── md4.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ └── sha1.h │ │ │ │ │ ├── ppp.h │ │ │ │ │ ├── ppp_impl.h │ │ │ │ │ ├── ppp_opts.h │ │ │ │ │ ├── pppapi.h │ │ │ │ │ ├── pppcrypt.h │ │ │ │ │ ├── pppdebug.h │ │ │ │ │ ├── pppoe.h │ │ │ │ │ ├── pppol2tp.h │ │ │ │ │ ├── pppos.h │ │ │ │ │ ├── upap.h │ │ │ │ │ └── vj.h │ │ │ │ │ ├── slipif.h │ │ │ │ │ └── zepif.h │ │ │ └── netif │ │ │ │ ├── FILES │ │ │ │ ├── bridgeif.c │ │ │ │ ├── bridgeif_fdb.c │ │ │ │ ├── ethernet.c │ │ │ │ ├── lowpan6.c │ │ │ │ ├── lowpan6_ble.c │ │ │ │ ├── lowpan6_common.c │ │ │ │ ├── ppp │ │ │ │ ├── PPPD_FOLLOWUP │ │ │ │ ├── auth.c │ │ │ │ ├── ccp.c │ │ │ │ ├── chap-md5.c │ │ │ │ ├── chap-new.c │ │ │ │ ├── chap_ms.c │ │ │ │ ├── demand.c │ │ │ │ ├── eap.c │ │ │ │ ├── ecp.c │ │ │ │ ├── eui64.c │ │ │ │ ├── fsm.c │ │ │ │ ├── ipcp.c │ │ │ │ ├── ipv6cp.c │ │ │ │ ├── lcp.c │ │ │ │ ├── magic.c │ │ │ │ ├── mppe.c │ │ │ │ ├── multilink.c │ │ │ │ ├── polarssl │ │ │ │ │ ├── README │ │ │ │ │ ├── arc4.c │ │ │ │ │ ├── des.c │ │ │ │ │ ├── md4.c │ │ │ │ │ ├── md5.c │ │ │ │ │ └── sha1.c │ │ │ │ ├── ppp.c │ │ │ │ ├── pppapi.c │ │ │ │ ├── pppcrypt.c │ │ │ │ ├── pppoe.c │ │ │ │ ├── pppol2tp.c │ │ │ │ ├── pppos.c │ │ │ │ ├── upap.c │ │ │ │ ├── utils.c │ │ │ │ └── vj.c │ │ │ │ ├── slipif.c │ │ │ │ └── zepif.c │ │ └── test │ │ │ ├── fuzz │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.h │ │ │ ├── fuzz.c │ │ │ ├── fuzz2.c │ │ │ ├── fuzz3.c │ │ │ ├── fuzz_common.c │ │ │ ├── fuzz_common.h │ │ │ ├── inputs │ │ │ │ ├── arp │ │ │ │ │ └── arp_req.bin │ │ │ │ ├── icmp │ │ │ │ │ └── icmp_ping.bin │ │ │ │ ├── ipv6 │ │ │ │ │ ├── neighbor_solicitation.bin │ │ │ │ │ └── router_adv.bin │ │ │ │ ├── tcp │ │ │ │ │ └── tcp_syn.bin │ │ │ │ └── udp │ │ │ │ │ └── udp_port_5000.bin │ │ │ ├── lwipopts.h │ │ │ └── output_to_pcap.sh │ │ │ ├── sockets │ │ │ ├── sockets_stresstest.c │ │ │ └── sockets_stresstest.h │ │ │ └── unit │ │ │ ├── Filelists.cmake │ │ │ ├── Filelists.mk │ │ │ ├── Makefile │ │ │ ├── api │ │ │ ├── test_sockets.c │ │ │ └── test_sockets.h │ │ │ ├── arch │ │ │ ├── sys_arch.c │ │ │ └── sys_arch.h │ │ │ ├── core │ │ │ ├── test_def.c │ │ │ ├── test_def.h │ │ │ ├── test_dns.c │ │ │ ├── test_dns.h │ │ │ ├── test_mem.c │ │ │ ├── test_mem.h │ │ │ ├── test_netif.c │ │ │ ├── test_netif.h │ │ │ ├── test_pbuf.c │ │ │ ├── test_pbuf.h │ │ │ ├── test_timers.c │ │ │ └── test_timers.h │ │ │ ├── dhcp │ │ │ ├── test_dhcp.c │ │ │ └── test_dhcp.h │ │ │ ├── etharp │ │ │ ├── test_etharp.c │ │ │ └── test_etharp.h │ │ │ ├── ip4 │ │ │ ├── test_ip4.c │ │ │ └── test_ip4.h │ │ │ ├── ip6 │ │ │ ├── test_ip6.c │ │ │ └── test_ip6.h │ │ │ ├── lwip_check.h │ │ │ ├── lwip_unittests.c │ │ │ ├── lwipopts.h │ │ │ ├── mdns │ │ │ ├── test_mdns.c │ │ │ └── test_mdns.h │ │ │ ├── mqtt │ │ │ ├── test_mqtt.c │ │ │ └── test_mqtt.h │ │ │ ├── ppp │ │ │ ├── test_pppos.c │ │ │ └── test_pppos.h │ │ │ ├── tcp │ │ │ ├── tcp_helper.c │ │ │ ├── tcp_helper.h │ │ │ ├── test_tcp.c │ │ │ ├── test_tcp.h │ │ │ ├── test_tcp_oos.c │ │ │ ├── test_tcp_oos.h │ │ │ ├── test_tcp_state.c │ │ │ └── test_tcp_state.h │ │ │ └── udp │ │ │ ├── test_udp.c │ │ │ └── test_udp.h │ └── u-boot │ │ ├── arch │ │ ├── cc.h │ │ └── sys_arch.h │ │ ├── limits.h │ │ └── lwipopts.h ├── lz4.c ├── lz4_wrapper.c ├── lzma │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── LzmaTools.c │ ├── LzmaTools.h │ ├── Makefile │ ├── README.txt │ ├── Types.h │ ├── history.txt │ ├── import_lzmasdk.sh │ ├── license.txt │ └── lzma.txt ├── lzo │ ├── Makefile │ ├── lzo1x_decompress.c │ └── lzodefs.h ├── mbedtls │ ├── Kconfig │ ├── Makefile │ ├── external │ │ └── mbedtls │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── config.yml │ │ │ │ └── feature_request.md │ │ │ └── pull_request_template.md │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .globalrc │ │ │ ├── .mypy.ini │ │ │ ├── .pylintrc │ │ │ ├── .readthedocs.yaml │ │ │ ├── .travis.yml │ │ │ ├── .uncrustify.cfg │ │ │ ├── 3rdparty │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.inc │ │ │ ├── everest │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ │ └── everest │ │ │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ │ │ ├── everest.h │ │ │ │ │ │ ├── kremlib.h │ │ │ │ │ │ ├── kremlib │ │ │ │ │ │ ├── FStar_UInt128.h │ │ │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h │ │ │ │ │ │ ├── kremlin │ │ │ │ │ │ ├── c_endianness.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── builtin.h │ │ │ │ │ │ │ ├── callconv.h │ │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── target.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── wasmsupport.h │ │ │ │ │ │ ├── vs2013 │ │ │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ │ │ ├── inttypes.h │ │ │ │ │ │ └── stdbool.h │ │ │ │ │ │ └── x25519.h │ │ │ │ └── library │ │ │ │ │ ├── Hacl_Curve25519.c │ │ │ │ │ ├── Hacl_Curve25519_joined.c │ │ │ │ │ ├── everest.c │ │ │ │ │ ├── kremlib │ │ │ │ │ ├── FStar_UInt128_extracted.c │ │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c │ │ │ │ │ ├── legacy │ │ │ │ │ └── Hacl_Curve25519.c │ │ │ │ │ └── x25519.c │ │ │ └── p256-m │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── p256-m │ │ │ │ ├── README.md │ │ │ │ ├── p256-m.c │ │ │ │ └── p256-m.h │ │ │ │ ├── p256-m_driver_entrypoints.c │ │ │ │ └── p256-m_driver_entrypoints.h │ │ │ ├── BRANCHES.md │ │ │ ├── BUGS.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.d │ │ │ └── 00README.md │ │ │ ├── DartConfiguration.tcl │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── cmake │ │ │ └── MbedTLSConfig.cmake.in │ │ │ ├── configs │ │ │ ├── README.txt │ │ │ ├── config-ccm-psk-dtls1_2.h │ │ │ ├── config-ccm-psk-tls1_2.h │ │ │ ├── config-no-entropy.h │ │ │ ├── config-suite-b.h │ │ │ ├── config-symmetric-only.h │ │ │ ├── config-tfm.h │ │ │ ├── config-thread.h │ │ │ ├── crypto-config-ccm-aes-sha256.h │ │ │ └── ext │ │ │ │ ├── README.md │ │ │ │ ├── config_tfm.h │ │ │ │ ├── crypto_config_profile_medium.h │ │ │ │ ├── mbedtls_entropy_nv_seed_config.h │ │ │ │ └── tfm_mbedcrypto_config_profile_medium.h │ │ │ ├── dco.txt │ │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── 3.0-migration-guide.md │ │ │ ├── Makefile │ │ │ ├── architecture │ │ │ │ ├── Makefile │ │ │ │ ├── alternative-implementations.md │ │ │ │ ├── mbed-crypto-storage-specification.md │ │ │ │ ├── psa-crypto-implementation-structure.md │ │ │ │ ├── psa-migration │ │ │ │ │ ├── md-cipher-dispatch.md │ │ │ │ │ ├── outcome-analysis.sh │ │ │ │ │ ├── psa-legacy-bridges.md │ │ │ │ │ ├── psa-limitations.md │ │ │ │ │ ├── strategy.md │ │ │ │ │ ├── syms.sh │ │ │ │ │ └── testing.md │ │ │ │ ├── psa-shared-memory.md │ │ │ │ ├── psa-storage-resilience.md │ │ │ │ ├── psa-thread-safety │ │ │ │ │ ├── key-slot-state-transitions.png │ │ │ │ │ └── psa-thread-safety.md │ │ │ │ ├── testing │ │ │ │ │ ├── driver-interface-test-strategy.md │ │ │ │ │ ├── invasive-testing.md │ │ │ │ │ ├── psa-storage-format-testing.md │ │ │ │ │ └── test-framework.md │ │ │ │ └── tls13-support.md │ │ │ ├── conf.py │ │ │ ├── driver-only-builds.md │ │ │ ├── index.rst │ │ │ ├── proposed │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── psa-conditional-inclusion-c.md │ │ │ │ ├── psa-driver-developer-guide.md │ │ │ │ ├── psa-driver-integration-guide.md │ │ │ │ ├── psa-driver-interface.md │ │ │ │ └── psa-driver-wrappers-codegen-migration-guide.md │ │ │ ├── psa-driver-example-and-guide.md │ │ │ ├── psa-transition.md │ │ │ ├── redirects.yaml │ │ │ ├── requirements.in │ │ │ ├── requirements.txt │ │ │ ├── tls13-early-data.md │ │ │ └── use-psa-crypto.md │ │ │ ├── doxygen │ │ │ ├── input │ │ │ │ ├── doc_encdec.h │ │ │ │ ├── doc_hashing.h │ │ │ │ ├── doc_mainpage.h │ │ │ │ ├── doc_rng.h │ │ │ │ ├── doc_ssltls.h │ │ │ │ ├── doc_tcpip.h │ │ │ │ └── doc_x509.h │ │ │ └── mbedtls.doxyfile │ │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── mbedtls │ │ │ │ ├── aes.h │ │ │ │ ├── aria.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1write.h │ │ │ │ ├── base64.h │ │ │ │ ├── bignum.h │ │ │ │ ├── block_cipher.h │ │ │ │ ├── build_info.h │ │ │ │ ├── camellia.h │ │ │ │ ├── ccm.h │ │ │ │ ├── chacha20.h │ │ │ │ ├── chachapoly.h │ │ │ │ ├── check_config.h │ │ │ │ ├── cipher.h │ │ │ │ ├── cmac.h │ │ │ │ ├── compat-2.x.h │ │ │ │ ├── config_adjust_legacy_crypto.h │ │ │ │ ├── config_adjust_legacy_from_psa.h │ │ │ │ ├── config_adjust_psa_from_legacy.h │ │ │ │ ├── config_adjust_psa_superset_legacy.h │ │ │ │ ├── config_adjust_ssl.h │ │ │ │ ├── config_adjust_x509.h │ │ │ │ ├── config_psa.h │ │ │ │ ├── constant_time.h │ │ │ │ ├── ctr_drbg.h │ │ │ │ ├── debug.h │ │ │ │ ├── des.h │ │ │ │ ├── dhm.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecjpake.h │ │ │ │ ├── ecp.h │ │ │ │ ├── entropy.h │ │ │ │ ├── error.h │ │ │ │ ├── gcm.h │ │ │ │ ├── hkdf.h │ │ │ │ ├── hmac_drbg.h │ │ │ │ ├── lms.h │ │ │ │ ├── mbedtls_config.h │ │ │ │ ├── md.h │ │ │ │ ├── md5.h │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ ├── net_sockets.h │ │ │ │ ├── nist_kw.h │ │ │ │ ├── oid.h │ │ │ │ ├── pem.h │ │ │ │ ├── pk.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs5.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform_time.h │ │ │ │ ├── platform_util.h │ │ │ │ ├── poly1305.h │ │ │ │ ├── private_access.h │ │ │ │ ├── psa_util.h │ │ │ │ ├── ripemd160.h │ │ │ │ ├── rsa.h │ │ │ │ ├── sha1.h │ │ │ │ ├── sha256.h │ │ │ │ ├── sha3.h │ │ │ │ ├── sha512.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl_cache.h │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ ├── ssl_cookie.h │ │ │ │ ├── ssl_ticket.h │ │ │ │ ├── threading.h │ │ │ │ ├── timing.h │ │ │ │ ├── version.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_crl.h │ │ │ │ ├── x509_crt.h │ │ │ │ └── x509_csr.h │ │ │ └── psa │ │ │ │ ├── build_info.h │ │ │ │ ├── crypto.h │ │ │ │ ├── crypto_adjust_auto_enabled.h │ │ │ │ ├── crypto_adjust_config_key_pair_types.h │ │ │ │ ├── crypto_adjust_config_synonyms.h │ │ │ │ ├── crypto_builtin_composites.h │ │ │ │ ├── crypto_builtin_key_derivation.h │ │ │ │ ├── crypto_builtin_primitives.h │ │ │ │ ├── crypto_compat.h │ │ │ │ ├── crypto_config.h │ │ │ │ ├── crypto_driver_common.h │ │ │ │ ├── crypto_driver_contexts_composites.h │ │ │ │ ├── crypto_driver_contexts_key_derivation.h │ │ │ │ ├── crypto_driver_contexts_primitives.h │ │ │ │ ├── crypto_extra.h │ │ │ │ ├── crypto_legacy.h │ │ │ │ ├── crypto_platform.h │ │ │ │ ├── crypto_se_driver.h │ │ │ │ ├── crypto_sizes.h │ │ │ │ ├── crypto_struct.h │ │ │ │ ├── crypto_types.h │ │ │ │ └── crypto_values.h │ │ │ ├── library │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── aes.c │ │ │ ├── aesce.c │ │ │ ├── aesce.h │ │ │ ├── aesni.c │ │ │ ├── aesni.h │ │ │ ├── alignment.h │ │ │ ├── aria.c │ │ │ ├── asn1parse.c │ │ │ ├── asn1write.c │ │ │ ├── base64.c │ │ │ ├── base64_internal.h │ │ │ ├── bignum.c │ │ │ ├── bignum_core.c │ │ │ ├── bignum_core.h │ │ │ ├── bignum_mod.c │ │ │ ├── bignum_mod.h │ │ │ ├── bignum_mod_raw.c │ │ │ ├── bignum_mod_raw.h │ │ │ ├── bignum_mod_raw_invasive.h │ │ │ ├── block_cipher.c │ │ │ ├── block_cipher_internal.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.c │ │ │ ├── ccm.c │ │ │ ├── chacha20.c │ │ │ ├── chachapoly.c │ │ │ ├── check_crypto_config.h │ │ │ ├── cipher.c │ │ │ ├── cipher_wrap.c │ │ │ ├── cipher_wrap.h │ │ │ ├── cmac.c │ │ │ ├── common.h │ │ │ ├── constant_time.c │ │ │ ├── constant_time_impl.h │ │ │ ├── constant_time_internal.h │ │ │ ├── ctr.h │ │ │ ├── ctr_drbg.c │ │ │ ├── debug.c │ │ │ ├── debug_internal.h │ │ │ ├── des.c │ │ │ ├── dhm.c │ │ │ ├── ecdh.c │ │ │ ├── ecdsa.c │ │ │ ├── ecjpake.c │ │ │ ├── ecp.c │ │ │ ├── ecp_curves.c │ │ │ ├── ecp_curves_new.c │ │ │ ├── ecp_internal_alt.h │ │ │ ├── ecp_invasive.h │ │ │ ├── entropy.c │ │ │ ├── entropy_poll.c │ │ │ ├── entropy_poll.h │ │ │ ├── error.c │ │ │ ├── gcm.c │ │ │ ├── hkdf.c │ │ │ ├── hmac_drbg.c │ │ │ ├── lmots.c │ │ │ ├── lmots.h │ │ │ ├── lms.c │ │ │ ├── md.c │ │ │ ├── md5.c │ │ │ ├── md_psa.h │ │ │ ├── md_wrap.h │ │ │ ├── memory_buffer_alloc.c │ │ │ ├── mps_common.h │ │ │ ├── mps_error.h │ │ │ ├── mps_reader.c │ │ │ ├── mps_reader.h │ │ │ ├── mps_trace.c │ │ │ ├── mps_trace.h │ │ │ ├── net_sockets.c │ │ │ ├── nist_kw.c │ │ │ ├── oid.c │ │ │ ├── padlock.c │ │ │ ├── padlock.h │ │ │ ├── pem.c │ │ │ ├── pk.c │ │ │ ├── pk_ecc.c │ │ │ ├── pk_internal.h │ │ │ ├── pk_wrap.c │ │ │ ├── pk_wrap.h │ │ │ ├── pkcs12.c │ │ │ ├── pkcs5.c │ │ │ ├── pkcs7.c │ │ │ ├── pkparse.c │ │ │ ├── pkwrite.c │ │ │ ├── pkwrite.h │ │ │ ├── platform.c │ │ │ ├── platform_util.c │ │ │ ├── poly1305.c │ │ │ ├── psa_crypto.c │ │ │ ├── psa_crypto_aead.c │ │ │ ├── psa_crypto_aead.h │ │ │ ├── psa_crypto_cipher.c │ │ │ ├── psa_crypto_cipher.h │ │ │ ├── psa_crypto_client.c │ │ │ ├── psa_crypto_core.h │ │ │ ├── psa_crypto_core_common.h │ │ │ ├── psa_crypto_driver_wrappers.h │ │ │ ├── psa_crypto_driver_wrappers_no_static.c │ │ │ ├── psa_crypto_driver_wrappers_no_static.h │ │ │ ├── psa_crypto_ecp.c │ │ │ ├── psa_crypto_ecp.h │ │ │ ├── psa_crypto_ffdh.c │ │ │ ├── psa_crypto_ffdh.h │ │ │ ├── psa_crypto_hash.c │ │ │ ├── psa_crypto_hash.h │ │ │ ├── psa_crypto_invasive.h │ │ │ ├── psa_crypto_its.h │ │ │ ├── psa_crypto_mac.c │ │ │ ├── psa_crypto_mac.h │ │ │ ├── psa_crypto_pake.c │ │ │ ├── psa_crypto_pake.h │ │ │ ├── psa_crypto_random_impl.h │ │ │ ├── psa_crypto_rsa.c │ │ │ ├── psa_crypto_rsa.h │ │ │ ├── psa_crypto_se.c │ │ │ ├── psa_crypto_se.h │ │ │ ├── psa_crypto_slot_management.c │ │ │ ├── psa_crypto_slot_management.h │ │ │ ├── psa_crypto_storage.c │ │ │ ├── psa_crypto_storage.h │ │ │ ├── psa_its_file.c │ │ │ ├── psa_util.c │ │ │ ├── psa_util_internal.h │ │ │ ├── ripemd160.c │ │ │ ├── rsa.c │ │ │ ├── rsa_alt_helpers.c │ │ │ ├── rsa_alt_helpers.h │ │ │ ├── rsa_internal.h │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ ├── sha3.c │ │ │ ├── sha512.c │ │ │ ├── ssl_cache.c │ │ │ ├── ssl_ciphersuites.c │ │ │ ├── ssl_ciphersuites_internal.h │ │ │ ├── ssl_client.c │ │ │ ├── ssl_client.h │ │ │ ├── ssl_cookie.c │ │ │ ├── ssl_debug_helpers.h │ │ │ ├── ssl_debug_helpers_generated.c │ │ │ ├── ssl_misc.h │ │ │ ├── ssl_msg.c │ │ │ ├── ssl_ticket.c │ │ │ ├── ssl_tls.c │ │ │ ├── ssl_tls12_client.c │ │ │ ├── ssl_tls12_server.c │ │ │ ├── ssl_tls13_client.c │ │ │ ├── ssl_tls13_generic.c │ │ │ ├── ssl_tls13_invasive.h │ │ │ ├── ssl_tls13_keys.c │ │ │ ├── ssl_tls13_keys.h │ │ │ ├── ssl_tls13_server.c │ │ │ ├── threading.c │ │ │ ├── timing.c │ │ │ ├── version.c │ │ │ ├── version_features.c │ │ │ ├── x509.c │ │ │ ├── x509_create.c │ │ │ ├── x509_crl.c │ │ │ ├── x509_crt.c │ │ │ ├── x509_csr.c │ │ │ ├── x509_internal.h │ │ │ ├── x509write.c │ │ │ ├── x509write_crt.c │ │ │ └── x509write_csr.c │ │ │ ├── pkgconfig │ │ │ ├── CMakeLists.txt │ │ │ ├── JoinPaths.cmake │ │ │ ├── mbedcrypto.pc.in │ │ │ ├── mbedtls.pc.in │ │ │ └── mbedx509.pc.in │ │ │ ├── programs │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── aes │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── crypt_and_hash.c │ │ │ ├── cipher │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cipher_aead_demo.c │ │ │ ├── demo_common.sh │ │ │ ├── fuzz │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── corpuses │ │ │ │ │ ├── client │ │ │ │ │ ├── dtlsclient │ │ │ │ │ ├── dtlsserver │ │ │ │ │ └── server │ │ │ │ ├── fuzz_client.c │ │ │ │ ├── fuzz_client.options │ │ │ │ ├── fuzz_dtlsclient.c │ │ │ │ ├── fuzz_dtlsclient.options │ │ │ │ ├── fuzz_dtlsserver.c │ │ │ │ ├── fuzz_dtlsserver.options │ │ │ │ ├── fuzz_pkcs7.c │ │ │ │ ├── fuzz_pkcs7.options │ │ │ │ ├── fuzz_privkey.c │ │ │ │ ├── fuzz_privkey.options │ │ │ │ ├── fuzz_pubkey.c │ │ │ │ ├── fuzz_pubkey.options │ │ │ │ ├── fuzz_server.c │ │ │ │ ├── fuzz_server.options │ │ │ │ ├── fuzz_x509crl.c │ │ │ │ ├── fuzz_x509crl.options │ │ │ │ ├── fuzz_x509crt.c │ │ │ │ ├── fuzz_x509crt.options │ │ │ │ ├── fuzz_x509csr.c │ │ │ │ ├── fuzz_x509csr.options │ │ │ │ └── onefile.c │ │ │ ├── hash │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generic_sum.c │ │ │ │ ├── hello.c │ │ │ │ └── md_hmac_demo.c │ │ │ ├── pkey │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dh_client.c │ │ │ │ ├── dh_genprime.c │ │ │ │ ├── dh_prime.txt │ │ │ │ ├── dh_server.c │ │ │ │ ├── ecdh_curve25519.c │ │ │ │ ├── ecdsa.c │ │ │ │ ├── gen_key.c │ │ │ │ ├── key_app.c │ │ │ │ ├── key_app_writer.c │ │ │ │ ├── mpi_demo.c │ │ │ │ ├── pk_decrypt.c │ │ │ │ ├── pk_encrypt.c │ │ │ │ ├── pk_sign.c │ │ │ │ ├── pk_verify.c │ │ │ │ ├── rsa_decrypt.c │ │ │ │ ├── rsa_encrypt.c │ │ │ │ ├── rsa_genkey.c │ │ │ │ ├── rsa_priv.txt │ │ │ │ ├── rsa_pub.txt │ │ │ │ ├── rsa_sign.c │ │ │ │ ├── rsa_sign_pss.c │ │ │ │ ├── rsa_verify.c │ │ │ │ └── rsa_verify_pss.c │ │ │ ├── psa │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aead_demo.c │ │ │ │ ├── crypto_examples.c │ │ │ │ ├── hmac_demo.c │ │ │ │ ├── key_ladder_demo.c │ │ │ │ ├── key_ladder_demo.sh │ │ │ │ ├── psa_constant_names.c │ │ │ │ ├── psa_constant_names_generated.c │ │ │ │ ├── psa_hash.c │ │ │ │ └── psa_hash_demo.sh │ │ │ ├── random │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gen_entropy.c │ │ │ │ └── gen_random_ctr_drbg.c │ │ │ ├── ssl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dtls_client.c │ │ │ │ ├── dtls_server.c │ │ │ │ ├── mini_client.c │ │ │ │ ├── ssl_client1.c │ │ │ │ ├── ssl_client2.c │ │ │ │ ├── ssl_context_info.c │ │ │ │ ├── ssl_fork_server.c │ │ │ │ ├── ssl_mail_client.c │ │ │ │ ├── ssl_pthread_server.c │ │ │ │ ├── ssl_server.c │ │ │ │ ├── ssl_server2.c │ │ │ │ ├── ssl_test_common_source.c │ │ │ │ ├── ssl_test_lib.c │ │ │ │ └── ssl_test_lib.h │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── benchmark.c │ │ │ │ ├── cmake_package │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── cmake_package.c │ │ │ │ ├── cmake_package_install │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── cmake_package_install.c │ │ │ │ ├── cmake_subproject │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── cmake_subproject.c │ │ │ │ ├── dlopen.c │ │ │ │ ├── dlopen_demo.sh │ │ │ │ ├── generate_cpp_dummy_build.sh │ │ │ │ ├── metatest.c │ │ │ │ ├── query_compile_time_config.c │ │ │ │ ├── query_config.c │ │ │ │ ├── query_config.h │ │ │ │ ├── query_included_headers.c │ │ │ │ ├── selftest.c │ │ │ │ ├── udp_proxy.c │ │ │ │ ├── udp_proxy_wrapper.sh │ │ │ │ └── zeroize.c │ │ │ ├── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pem2der.c │ │ │ │ └── strerror.c │ │ │ ├── wince_main.c │ │ │ └── x509 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cert_app.c │ │ │ │ ├── cert_req.c │ │ │ │ ├── cert_write.c │ │ │ │ ├── crl_app.c │ │ │ │ ├── load_roots.c │ │ │ │ └── req_app.c │ │ │ ├── scripts │ │ │ ├── abi_check.py │ │ │ ├── apidoc_full.sh │ │ │ ├── assemble_changelog.py │ │ │ ├── basic.requirements.txt │ │ │ ├── bump_version.sh │ │ │ ├── ci.requirements.txt │ │ │ ├── code_size_compare.py │ │ │ ├── code_style.py │ │ │ ├── common.make │ │ │ ├── config.pl │ │ │ ├── config.py │ │ │ ├── data_files │ │ │ │ ├── driver_jsons │ │ │ │ │ ├── driver_opaque_schema.json │ │ │ │ │ ├── driver_transparent_schema.json │ │ │ │ │ ├── driverlist.json │ │ │ │ │ ├── mbedtls_test_opaque_driver.json │ │ │ │ │ ├── mbedtls_test_transparent_driver.json │ │ │ │ │ └── p256_transparent_driver.json │ │ │ │ ├── driver_templates │ │ │ │ │ ├── OS-template-opaque.jinja │ │ │ │ │ ├── OS-template-transparent.jinja │ │ │ │ │ ├── psa_crypto_driver_wrappers.h.jinja │ │ │ │ │ └── psa_crypto_driver_wrappers_no_static.c.jinja │ │ │ │ ├── error.fmt │ │ │ │ ├── query_config.fmt │ │ │ │ ├── version_features.fmt │ │ │ │ ├── vs2017-app-template.vcxproj │ │ │ │ ├── vs2017-main-template.vcxproj │ │ │ │ └── vs2017-sln-template.sln │ │ │ ├── driver.requirements.txt │ │ │ ├── ecc-heap.sh │ │ │ ├── ecp_comb_table.py │ │ │ ├── footprint.sh │ │ │ ├── generate_driver_wrappers.py │ │ │ ├── generate_errors.pl │ │ │ ├── generate_features.pl │ │ │ ├── generate_psa_constants.py │ │ │ ├── generate_query_config.pl │ │ │ ├── generate_ssl_debug_helpers.py │ │ │ ├── generate_visualc_files.pl │ │ │ ├── lcov.sh │ │ │ ├── maintainer.requirements.txt │ │ │ ├── make_generated_files.bat │ │ │ ├── massif_max.pl │ │ │ ├── mbedtls_dev │ │ │ │ ├── __init__.py │ │ │ │ ├── asymmetric_key_data.py │ │ │ │ ├── bignum_common.py │ │ │ │ ├── bignum_core.py │ │ │ │ ├── bignum_data.py │ │ │ │ ├── bignum_mod.py │ │ │ │ ├── bignum_mod_raw.py │ │ │ │ ├── build_tree.py │ │ │ │ ├── c_build_helper.py │ │ │ │ ├── c_parsing_helper.py │ │ │ │ ├── c_wrapper_generator.py │ │ │ │ ├── crypto_data_tests.py │ │ │ │ ├── crypto_knowledge.py │ │ │ │ ├── ecp.py │ │ │ │ ├── logging_util.py │ │ │ │ ├── macro_collector.py │ │ │ │ ├── psa_information.py │ │ │ │ ├── psa_storage.py │ │ │ │ ├── test_case.py │ │ │ │ ├── test_data_generation.py │ │ │ │ └── typing_util.py │ │ │ ├── memory.sh │ │ │ ├── min_requirements.py │ │ │ ├── output_env.sh │ │ │ ├── prepare_release.sh │ │ │ ├── tmp_ignore_makefiles.sh │ │ │ └── windows_msbuild.bat │ │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── .jenkins │ │ │ │ └── Jenkinsfile │ │ │ ├── CMakeLists.txt │ │ │ ├── Descriptions.txt │ │ │ ├── Makefile │ │ │ ├── compat-in-docker.sh │ │ │ ├── compat.sh │ │ │ ├── configs │ │ │ │ ├── tls13-only.h │ │ │ │ ├── user-config-for-test.h │ │ │ │ ├── user-config-malloc-0-null.h │ │ │ │ └── user-config-zeroize-memset.h │ │ │ ├── context-info.sh │ │ │ ├── data_files │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme-x509.txt │ │ │ │ ├── authorityKeyId_no_authorityKeyId.crt.der │ │ │ │ ├── authorityKeyId_no_issuer.crt.der │ │ │ │ ├── authorityKeyId_no_keyid.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId.conf │ │ │ │ ├── authorityKeyId_subjectKeyId.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_issuer_tag1_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_issuer_tag2_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_keyid_tag_len_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_keyid_tag_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_length_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_sequence_tag_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_sn_len_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_sn_tag_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_tag_len_malformed.crt.der │ │ │ │ ├── authorityKeyId_subjectKeyId_tag_malformed.crt.der │ │ │ │ ├── base64 │ │ │ │ │ ├── cli_cid.txt │ │ │ │ │ ├── cli_ciphersuite.txt │ │ │ │ │ ├── cli_def.txt │ │ │ │ │ ├── cli_min_cfg.txt │ │ │ │ │ ├── cli_no_alpn.txt │ │ │ │ │ ├── cli_no_keep_cert.txt │ │ │ │ │ ├── cli_no_mfl.txt │ │ │ │ │ ├── cli_no_packing.txt │ │ │ │ │ ├── def_b64_ff.bin │ │ │ │ │ ├── def_b64_too_big_1.txt │ │ │ │ │ ├── def_b64_too_big_2.txt │ │ │ │ │ ├── def_b64_too_big_3.txt │ │ │ │ │ ├── def_bad_b64.txt │ │ │ │ │ ├── empty.txt │ │ │ │ │ ├── mfl_1024.txt │ │ │ │ │ ├── mtu_10000.txt │ │ │ │ │ ├── srv_cid.txt │ │ │ │ │ ├── srv_ciphersuite.txt │ │ │ │ │ ├── srv_def.txt │ │ │ │ │ ├── srv_min_cfg.txt │ │ │ │ │ ├── srv_no_alpn.txt │ │ │ │ │ ├── srv_no_keep_cert.txt │ │ │ │ │ ├── srv_no_mfl.txt │ │ │ │ │ ├── srv_no_packing.txt │ │ │ │ │ └── v2.19.1.txt │ │ │ │ ├── cert_example_multi.crt │ │ │ │ ├── cert_example_multi_nocn.crt │ │ │ │ ├── cert_example_wildcard.crt │ │ │ │ ├── cert_md5.crt │ │ │ │ ├── cert_md5.csr │ │ │ │ ├── cert_sha1.crt │ │ │ │ ├── cert_sha224.crt │ │ │ │ ├── cert_sha256.crt │ │ │ │ ├── cert_sha384.crt │ │ │ │ ├── cert_sha512.crt │ │ │ │ ├── cert_v1_with_ext.crt │ │ │ │ ├── cli-rsa-sha1.crt │ │ │ │ ├── cli-rsa-sha256.crt │ │ │ │ ├── cli-rsa-sha256.crt.der │ │ │ │ ├── cli-rsa-sha256.key.der │ │ │ │ ├── cli-rsa.key │ │ │ │ ├── cli-rsa.key.der │ │ │ │ ├── cli.opensslconf │ │ │ │ ├── cli2.crt │ │ │ │ ├── cli2.crt.der │ │ │ │ ├── cli2.key │ │ │ │ ├── cli2.key.der │ │ │ │ ├── clusterfuzz-testcase-minimized-fuzz_x509crt-6666050834661376.crt.der │ │ │ │ ├── crl-ec-sha1.pem │ │ │ │ ├── crl-ec-sha256.pem │ │ │ │ ├── crl-future.pem │ │ │ │ ├── crl-futureRevocationDate.pem │ │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ │ ├── crl.pem │ │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ │ ├── crl_expired.pem │ │ │ │ ├── crl_sha256.pem │ │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ │ ├── dh.1000.pem │ │ │ │ ├── dh.998.pem │ │ │ │ ├── dh.999.pem │ │ │ │ ├── dh.optlen.der │ │ │ │ ├── dh.optlen.pem │ │ │ │ ├── dhparams.pem │ │ │ │ ├── dir-maxpath │ │ │ │ │ ├── 00.crt │ │ │ │ │ ├── 00.key │ │ │ │ │ ├── 01.crt │ │ │ │ │ ├── 01.key │ │ │ │ │ ├── 02.crt │ │ │ │ │ ├── 02.key │ │ │ │ │ ├── 03.crt │ │ │ │ │ ├── 03.key │ │ │ │ │ ├── 04.crt │ │ │ │ │ ├── 04.key │ │ │ │ │ ├── 05.crt │ │ │ │ │ ├── 05.key │ │ │ │ │ ├── 06.crt │ │ │ │ │ ├── 06.key │ │ │ │ │ ├── 07.crt │ │ │ │ │ ├── 07.key │ │ │ │ │ ├── 08.crt │ │ │ │ │ ├── 08.key │ │ │ │ │ ├── 09.crt │ │ │ │ │ ├── 09.key │ │ │ │ │ ├── 10.crt │ │ │ │ │ ├── 10.key │ │ │ │ │ ├── 11.crt │ │ │ │ │ ├── 11.key │ │ │ │ │ ├── 12.crt │ │ │ │ │ ├── 12.key │ │ │ │ │ ├── 13.crt │ │ │ │ │ ├── 13.key │ │ │ │ │ ├── 14.crt │ │ │ │ │ ├── 14.key │ │ │ │ │ ├── 15.crt │ │ │ │ │ ├── 15.key │ │ │ │ │ ├── 16.crt │ │ │ │ │ ├── 16.key │ │ │ │ │ ├── 17.crt │ │ │ │ │ ├── 17.key │ │ │ │ │ ├── 18.crt │ │ │ │ │ ├── 18.key │ │ │ │ │ ├── 19.crt │ │ │ │ │ ├── 19.key │ │ │ │ │ ├── 20.crt │ │ │ │ │ ├── 20.key │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── c00.pem │ │ │ │ │ ├── c01.pem │ │ │ │ │ ├── c02.pem │ │ │ │ │ ├── c03.pem │ │ │ │ │ ├── c04.pem │ │ │ │ │ ├── c05.pem │ │ │ │ │ ├── c06.pem │ │ │ │ │ ├── c07.pem │ │ │ │ │ ├── c08.pem │ │ │ │ │ ├── c09.pem │ │ │ │ │ ├── c10.pem │ │ │ │ │ ├── c11.pem │ │ │ │ │ ├── c12.pem │ │ │ │ │ ├── c13.pem │ │ │ │ │ ├── c14.pem │ │ │ │ │ ├── c15.pem │ │ │ │ │ ├── c16.pem │ │ │ │ │ ├── c17.pem │ │ │ │ │ ├── c18.pem │ │ │ │ │ ├── c19.pem │ │ │ │ │ ├── c20.pem │ │ │ │ │ ├── int.opensslconf │ │ │ │ │ └── long.sh │ │ │ │ ├── dir1 │ │ │ │ │ └── test-ca.crt │ │ │ │ ├── dir2 │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ └── test-ca2.crt │ │ │ │ ├── dir3 │ │ │ │ │ ├── Readme │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ └── test-ca2.crt │ │ │ │ ├── dir4 │ │ │ │ │ ├── Readme │ │ │ │ │ ├── cert11.crt │ │ │ │ │ ├── cert12.crt │ │ │ │ │ ├── cert13.crt │ │ │ │ │ ├── cert14.crt │ │ │ │ │ ├── cert21.crt │ │ │ │ │ ├── cert22.crt │ │ │ │ │ ├── cert23.crt │ │ │ │ │ ├── cert31.crt │ │ │ │ │ ├── cert32.crt │ │ │ │ │ ├── cert33.crt │ │ │ │ │ ├── cert34.crt │ │ │ │ │ ├── cert41.crt │ │ │ │ │ ├── cert42.crt │ │ │ │ │ ├── cert43.crt │ │ │ │ │ ├── cert44.crt │ │ │ │ │ ├── cert45.crt │ │ │ │ │ ├── cert51.crt │ │ │ │ │ ├── cert52.crt │ │ │ │ │ ├── cert53.crt │ │ │ │ │ ├── cert54.crt │ │ │ │ │ ├── cert61.crt │ │ │ │ │ ├── cert62.crt │ │ │ │ │ ├── cert63.crt │ │ │ │ │ ├── cert71.crt │ │ │ │ │ ├── cert72.crt │ │ │ │ │ ├── cert73.crt │ │ │ │ │ ├── cert74.crt │ │ │ │ │ ├── cert81.crt │ │ │ │ │ ├── cert82.crt │ │ │ │ │ ├── cert83.crt │ │ │ │ │ ├── cert91.crt │ │ │ │ │ └── cert92.crt │ │ │ │ ├── ec_224_prv.comp.pem │ │ │ │ ├── ec_224_prv.pem │ │ │ │ ├── ec_224_pub.comp.pem │ │ │ │ ├── ec_224_pub.pem │ │ │ │ ├── ec_256_long_prv.der │ │ │ │ ├── ec_256_long_prv.pem │ │ │ │ ├── ec_256_prv.comp.pem │ │ │ │ ├── ec_256_prv.pem │ │ │ │ ├── ec_256_pub.comp.pem │ │ │ │ ├── ec_256_pub.pem │ │ │ │ ├── ec_384_prv.comp.pem │ │ │ │ ├── ec_384_prv.pem │ │ │ │ ├── ec_384_pub.comp.pem │ │ │ │ ├── ec_384_pub.pem │ │ │ │ ├── ec_521_prv.comp.pem │ │ │ │ ├── ec_521_prv.der │ │ │ │ ├── ec_521_prv.pem │ │ │ │ ├── ec_521_pub.comp.pem │ │ │ │ ├── ec_521_pub.der │ │ │ │ ├── ec_521_pub.pem │ │ │ │ ├── ec_521_short_prv.der │ │ │ │ ├── ec_521_short_prv.pem │ │ │ │ ├── ec_bp256_prv.comp.pem │ │ │ │ ├── ec_bp256_prv.pem │ │ │ │ ├── ec_bp256_pub.comp.pem │ │ │ │ ├── ec_bp256_pub.pem │ │ │ │ ├── ec_bp384_prv.comp.pem │ │ │ │ ├── ec_bp384_prv.pem │ │ │ │ ├── ec_bp384_pub.comp.pem │ │ │ │ ├── ec_bp384_pub.pem │ │ │ │ ├── ec_bp512_prv.comp.pem │ │ │ │ ├── ec_bp512_prv.der │ │ │ │ ├── ec_bp512_prv.pem │ │ │ │ ├── ec_bp512_pub.comp.pem │ │ │ │ ├── ec_bp512_pub.der │ │ │ │ ├── ec_bp512_pub.pem │ │ │ │ ├── ec_prv.pk8.der │ │ │ │ ├── ec_prv.pk8.pem │ │ │ │ ├── ec_prv.pk8.pw.der │ │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ │ ├── ec_prv.pk8nopub.der │ │ │ │ ├── ec_prv.pk8nopub.pem │ │ │ │ ├── ec_prv.pk8nopubparam.der │ │ │ │ ├── ec_prv.pk8nopubparam.pem │ │ │ │ ├── ec_prv.pk8param.der │ │ │ │ ├── ec_prv.pk8param.pem │ │ │ │ ├── ec_prv.sec1.comp.pem │ │ │ │ ├── ec_prv.sec1.der │ │ │ │ ├── ec_prv.sec1.pem │ │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ │ ├── ec_prv.specdom.der │ │ │ │ ├── ec_pub.comp.pem │ │ │ │ ├── ec_pub.der │ │ │ │ ├── ec_pub.pem │ │ │ │ ├── ec_x25519_prv.der │ │ │ │ ├── ec_x25519_prv.pem │ │ │ │ ├── ec_x25519_pub.der │ │ │ │ ├── ec_x25519_pub.pem │ │ │ │ ├── ec_x448_prv.der │ │ │ │ ├── ec_x448_prv.pem │ │ │ │ ├── ec_x448_pub.der │ │ │ │ ├── ec_x448_pub.pem │ │ │ │ ├── ecdsa_secp256r1.crt │ │ │ │ ├── ecdsa_secp256r1.key │ │ │ │ ├── ecdsa_secp384r1.crt │ │ │ │ ├── ecdsa_secp384r1.key │ │ │ │ ├── ecdsa_secp521r1.crt │ │ │ │ ├── ecdsa_secp521r1.key │ │ │ │ ├── enco-ca-prstr.pem │ │ │ │ ├── enco-cert-utf8str.pem │ │ │ │ ├── format_gen.key │ │ │ │ ├── format_gen.pub │ │ │ │ ├── format_pkcs12.fmt │ │ │ │ ├── format_rsa.key │ │ │ │ ├── hash_file_1 │ │ │ │ ├── hash_file_2 │ │ │ │ ├── hash_file_3 │ │ │ │ ├── hash_file_4 │ │ │ │ ├── hash_file_5 │ │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ │ ├── lms_hash-sigs_sha256_m32_h5_lmots_sha256_n32_w8_aux │ │ │ │ ├── lms_hash-sigs_sha256_m32_h5_lmots_sha256_n32_w8_prv │ │ │ │ ├── lms_hash-sigs_sha256_m32_h5_lmots_sha256_n32_w8_pub │ │ │ │ ├── lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv │ │ │ │ ├── lms_pyhsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv │ │ │ │ ├── lms_pyhsslms_sha256_m32_h5_lmots_sha256_n32_w8_pub │ │ │ │ ├── mpi_16 │ │ │ │ ├── mpi_too_big │ │ │ │ ├── opensslcnf │ │ │ │ │ └── server9.crt.v3_ext │ │ │ │ ├── parse_input │ │ │ │ │ ├── bitstring-in-dn.pem │ │ │ │ │ ├── cert_example_multi.crt │ │ │ │ │ ├── cert_example_multi_nocn.crt │ │ │ │ │ ├── cert_md5.crt │ │ │ │ │ ├── cert_sha1.crt │ │ │ │ │ ├── cert_sha224.crt │ │ │ │ │ ├── cert_sha256.crt │ │ │ │ │ ├── cert_sha384.crt │ │ │ │ │ ├── cert_sha512.crt │ │ │ │ │ ├── cli-rsa-sha256-badalg.crt.der │ │ │ │ │ ├── crl-ec-sha1.pem │ │ │ │ │ ├── crl-ec-sha224.pem │ │ │ │ │ ├── crl-ec-sha256.pem │ │ │ │ │ ├── crl-ec-sha384.pem │ │ │ │ │ ├── crl-ec-sha512.pem │ │ │ │ │ ├── crl-idp.pem │ │ │ │ │ ├── crl-idpnc.pem │ │ │ │ │ ├── crl-malformed-trailing-spaces.pem │ │ │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ │ │ ├── crl_expired.pem │ │ │ │ │ ├── crl_md5.pem │ │ │ │ │ ├── crl_sha1.pem │ │ │ │ │ ├── crl_sha224.pem │ │ │ │ │ ├── crl_sha256.pem │ │ │ │ │ ├── crl_sha384.pem │ │ │ │ │ ├── crl_sha512.pem │ │ │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ │ │ ├── multiple_san.crt │ │ │ │ │ ├── non-ascii-string-in-issuer.crt │ │ │ │ │ ├── rsa_multiple_san_uri.crt.der │ │ │ │ │ ├── rsa_single_san_uri.crt.der │ │ │ │ │ ├── server1-ms.req.sha256 │ │ │ │ │ ├── server1.cert_type.crt │ │ │ │ │ ├── server1.crt │ │ │ │ │ ├── server1.crt.der │ │ │ │ │ ├── server1.ext_ku.crt │ │ │ │ │ ├── server1.key_usage.crt │ │ │ │ │ ├── server1.req.commas.sha256 │ │ │ │ │ ├── server1.req.md5 │ │ │ │ │ ├── server1.req.sha1 │ │ │ │ │ ├── server1.req.sha224 │ │ │ │ │ ├── server1.req.sha256 │ │ │ │ │ ├── server1.req.sha384 │ │ │ │ │ ├── server1.req.sha512 │ │ │ │ │ ├── server1_pathlen_int_max-1.crt │ │ │ │ │ ├── server1_pathlen_int_max.crt │ │ │ │ │ ├── server2.crt │ │ │ │ │ ├── server2.crt.der │ │ │ │ │ ├── server3.crt │ │ │ │ │ ├── server4.crt │ │ │ │ │ ├── server5-directoryname-seq-malformed.crt.der │ │ │ │ │ ├── server5-directoryname.crt.der │ │ │ │ │ ├── server5-fan.crt.der │ │ │ │ │ ├── server5-non-compliant.crt │ │ │ │ │ ├── server5-nonprintable_othername.crt.der │ │ │ │ │ ├── server5-othername.crt.der │ │ │ │ │ ├── server5-second-directoryname-oid-malformed.crt.der │ │ │ │ │ ├── server5-sha1.crt │ │ │ │ │ ├── server5-sha224.crt │ │ │ │ │ ├── server5-sha384.crt │ │ │ │ │ ├── server5-sha512.crt │ │ │ │ │ ├── server5-two-directorynames.crt.der │ │ │ │ │ ├── server5-unsupported_othername.crt.der │ │ │ │ │ ├── server5.crt │ │ │ │ │ ├── server5.req.sha1 │ │ │ │ │ ├── server5.req.sha224 │ │ │ │ │ ├── server5.req.sha256 │ │ │ │ │ ├── server5.req.sha384 │ │ │ │ │ ├── server5.req.sha512 │ │ │ │ │ ├── server7_all_space.crt │ │ │ │ │ ├── server7_int-ca.crt │ │ │ │ │ ├── server7_pem_space.crt │ │ │ │ │ ├── server7_trailing_space.crt │ │ │ │ │ ├── server9-sha224.crt │ │ │ │ │ ├── server9-sha256.crt │ │ │ │ │ ├── server9-sha384.crt │ │ │ │ │ ├── server9-sha512.crt │ │ │ │ │ ├── server9.crt │ │ │ │ │ ├── server9.req.sha1 │ │ │ │ │ ├── server9.req.sha224 │ │ │ │ │ ├── server9.req.sha256 │ │ │ │ │ ├── server9.req.sha384 │ │ │ │ │ ├── server9.req.sha512 │ │ │ │ │ ├── test-ca-any_policy.crt │ │ │ │ │ ├── test-ca-any_policy_ec.crt │ │ │ │ │ ├── test-ca-any_policy_with_qualifier.crt │ │ │ │ │ ├── test-ca-any_policy_with_qualifier_ec.crt │ │ │ │ │ ├── test-ca-multi_policy.crt │ │ │ │ │ ├── test-ca-multi_policy_ec.crt │ │ │ │ │ ├── test-ca-unsupported_policy.crt │ │ │ │ │ ├── test-ca-unsupported_policy_ec.crt │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ ├── test-ca.crt.der │ │ │ │ │ ├── test_cert_rfc822name.crt.der │ │ │ │ │ ├── test_csr_v3_all.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_extension_request.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_extension_request_sequence_len1.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_extension_request_sequence_len2.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_extension_request_sequence_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_extension_request_set_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_id_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_len1.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_len2.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_attributes_sequence_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_duplicated_extension.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_data_len1.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_data_len2.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_data_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_id_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_key_usage_bitstream_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_ns_cert_bitstream_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_subject_alt_name_sequence_tag.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extension_type_oid.csr.der │ │ │ │ │ ├── test_csr_v3_all_malformed_extensions_sequence_tag.csr.der │ │ │ │ │ ├── test_csr_v3_keyUsage.csr.der │ │ │ │ │ ├── test_csr_v3_nsCertType.csr.der │ │ │ │ │ └── test_csr_v3_subjectAltName.csr.der │ │ │ │ ├── passwd.psk │ │ │ │ ├── pkcs7-rsa-expired.crt │ │ │ │ ├── pkcs7-rsa-expired.der │ │ │ │ ├── pkcs7-rsa-expired.key │ │ │ │ ├── pkcs7-rsa-sha256-1.crt │ │ │ │ ├── pkcs7-rsa-sha256-1.der │ │ │ │ ├── pkcs7-rsa-sha256-1.key │ │ │ │ ├── pkcs7-rsa-sha256-1.pem │ │ │ │ ├── pkcs7-rsa-sha256-2.crt │ │ │ │ ├── pkcs7-rsa-sha256-2.der │ │ │ │ ├── pkcs7-rsa-sha256-2.key │ │ │ │ ├── pkcs7-rsa-sha256-2.pem │ │ │ │ ├── pkcs7-rsa-sha256-3.crt │ │ │ │ ├── pkcs7-rsa-sha256-3.key │ │ │ │ ├── pkcs7-rsa-sha256-3.pem │ │ │ │ ├── pkcs7_data.bin │ │ │ │ ├── pkcs7_data_1.bin │ │ │ │ ├── pkcs7_data_3_signed.der │ │ │ │ ├── pkcs7_data_cert_encrypted.der │ │ │ │ ├── pkcs7_data_cert_signed_sha1.der │ │ │ │ ├── pkcs7_data_cert_signed_sha256.der │ │ │ │ ├── pkcs7_data_cert_signed_sha512.der │ │ │ │ ├── pkcs7_data_cert_signed_v2.der │ │ │ │ ├── pkcs7_data_cert_signeddata_sha256.der │ │ │ │ ├── pkcs7_data_multiple_certs_signed.der │ │ │ │ ├── pkcs7_data_multiple_signed.der │ │ │ │ ├── pkcs7_data_no_signers.der │ │ │ │ ├── pkcs7_data_rsa_expired.der │ │ │ │ ├── pkcs7_data_signed_badcert.der │ │ │ │ ├── pkcs7_data_signed_badsigner.der │ │ │ │ ├── pkcs7_data_signed_badsigner1_badsize.der │ │ │ │ ├── pkcs7_data_signed_badsigner1_badtag.der │ │ │ │ ├── pkcs7_data_signed_badsigner1_fuzzbad.der │ │ │ │ ├── pkcs7_data_signed_badsigner2_badsize.der │ │ │ │ ├── pkcs7_data_signed_badsigner2_badtag.der │ │ │ │ ├── pkcs7_data_signed_badsigner2_fuzzbad.der │ │ │ │ ├── pkcs7_data_with_signature.der │ │ │ │ ├── pkcs7_data_without_cert_signed.der │ │ │ │ ├── pkcs7_signerInfo_1_serial_invalid_tag_after_long_name.der │ │ │ │ ├── pkcs7_signerInfo_2_invalid_tag.der │ │ │ │ ├── pkcs7_signerInfo_issuer_invalid_size.der │ │ │ │ ├── pkcs7_signerInfo_serial_invalid_size.der │ │ │ │ ├── pkcs7_zerolendata.bin │ │ │ │ ├── pkcs7_zerolendata_detached.der │ │ │ │ ├── print_c.pl │ │ │ │ ├── rsa4096_prv.der │ │ │ │ ├── rsa4096_prv.pem │ │ │ │ ├── rsa4096_pub.der │ │ │ │ ├── rsa4096_pub.pem │ │ │ │ ├── rsa512.key │ │ │ │ ├── rsa521.key │ │ │ │ ├── rsa522.key │ │ │ │ ├── rsa528.key │ │ │ │ ├── rsa_multiple_san_uri.key │ │ │ │ ├── rsa_pkcs1_1024_3des.pem │ │ │ │ ├── rsa_pkcs1_1024_aes128.pem │ │ │ │ ├── rsa_pkcs1_1024_aes192.pem │ │ │ │ ├── rsa_pkcs1_1024_aes256.pem │ │ │ │ ├── rsa_pkcs1_1024_clear.pem │ │ │ │ ├── rsa_pkcs1_1024_des.pem │ │ │ │ ├── rsa_pkcs1_2048_3des.pem │ │ │ │ ├── rsa_pkcs1_2048_aes128.pem │ │ │ │ ├── rsa_pkcs1_2048_aes192.pem │ │ │ │ ├── rsa_pkcs1_2048_aes256.pem │ │ │ │ ├── rsa_pkcs1_2048_clear.pem │ │ │ │ ├── rsa_pkcs1_2048_des.pem │ │ │ │ ├── rsa_pkcs1_2048_public.der │ │ │ │ ├── rsa_pkcs1_2048_public.pem │ │ │ │ ├── rsa_pkcs1_4096_3des.pem │ │ │ │ ├── rsa_pkcs1_4096_aes128.pem │ │ │ │ ├── rsa_pkcs1_4096_aes192.pem │ │ │ │ ├── rsa_pkcs1_4096_aes256.pem │ │ │ │ ├── rsa_pkcs1_4096_clear.pem │ │ │ │ ├── rsa_pkcs1_4096_des.pem │ │ │ │ ├── rsa_pkcs8_1024_public.der │ │ │ │ ├── rsa_pkcs8_2048_public.der │ │ │ │ ├── rsa_pkcs8_2048_public.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes128cbc_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes128cbc_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes192cbc_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes192cbc_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes256cbc_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes256cbc_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem │ │ │ │ ├── rsa_single_san_uri.crt.der │ │ │ │ ├── rsa_single_san_uri.key │ │ │ │ ├── server1-nospace.crt │ │ │ │ ├── server1-v1.crt │ │ │ │ ├── server1.80serial.crt │ │ │ │ ├── server1.allSubjectAltNames.crt │ │ │ │ ├── server1.asciichars.crt │ │ │ │ ├── server1.ca.crt │ │ │ │ ├── server1.ca.der │ │ │ │ ├── server1.ca_noauthid.crt │ │ │ │ ├── server1.cert_type.crt │ │ │ │ ├── server1.cert_type.crt.openssl.v3_ext │ │ │ │ ├── server1.cert_type_noauthid.crt │ │ │ │ ├── server1.commas.crt │ │ │ │ ├── server1.crt │ │ │ │ ├── server1.crt.openssl.v3_ext │ │ │ │ ├── server1.csr │ │ │ │ ├── server1.der │ │ │ │ ├── server1.hashsymbol.crt │ │ │ │ ├── server1.key │ │ │ │ ├── server1.key.der │ │ │ │ ├── server1.key_ext_usage.crt │ │ │ │ ├── server1.key_ext_usages.crt │ │ │ │ ├── server1.key_usage.crt │ │ │ │ ├── server1.key_usage.crt.openssl.v3_ext │ │ │ │ ├── server1.key_usage_noauthid.crt │ │ │ │ ├── server1.long_serial.crt │ │ │ │ ├── server1.long_serial_FF.crt │ │ │ │ ├── server1.noauthid.crt │ │ │ │ ├── server1.pubkey │ │ │ │ ├── server1.pubkey.der │ │ │ │ ├── server1.req.cert_type │ │ │ │ ├── server1.req.cert_type_empty │ │ │ │ ├── server1.req.key_usage │ │ │ │ ├── server1.req.key_usage_empty │ │ │ │ ├── server1.req.ku-ct │ │ │ │ ├── server1.req.md5 │ │ │ │ ├── server1.req.sha1 │ │ │ │ ├── server1.req.sha224 │ │ │ │ ├── server1.req.sha256 │ │ │ │ ├── server1.req.sha256.conf │ │ │ │ ├── server1.req.sha256.ext │ │ │ │ ├── server1.req.sha384 │ │ │ │ ├── server1.req.sha512 │ │ │ │ ├── server1.spaces.crt │ │ │ │ ├── server1.v1.crt │ │ │ │ ├── server10-badsign.crt │ │ │ │ ├── server10-bs_int3.pem │ │ │ │ ├── server10.crt │ │ │ │ ├── server10.key │ │ │ │ ├── server10_int3-bs.pem │ │ │ │ ├── server10_int3_int-ca2.crt │ │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ │ ├── server10_int3_spurious_int-ca2.crt │ │ │ │ ├── server1_ca.crt │ │ │ │ ├── server1_csr.opensslconf │ │ │ │ ├── server2-badsign.crt │ │ │ │ ├── server2-sha256.crt │ │ │ │ ├── server2-sha256.crt.der │ │ │ │ ├── server2-v1-chain.crt │ │ │ │ ├── server2-v1.crt │ │ │ │ ├── server2.crt │ │ │ │ ├── server2.crt.der │ │ │ │ ├── server2.der │ │ │ │ ├── server2.key │ │ │ │ ├── server2.key.der │ │ │ │ ├── server2.key.enc │ │ │ │ ├── server2.ku-ds.crt │ │ │ │ ├── server2.ku-ds_ke.crt │ │ │ │ ├── server2.ku-ka.crt │ │ │ │ ├── server2.ku-ke.crt │ │ │ │ ├── server3.crt │ │ │ │ ├── server3.key │ │ │ │ ├── server4.crt │ │ │ │ ├── server4.key │ │ │ │ ├── server5-badsign.crt │ │ │ │ ├── server5-der0.crt │ │ │ │ ├── server5-der1a.crt │ │ │ │ ├── server5-der1b.crt │ │ │ │ ├── server5-der2.crt │ │ │ │ ├── server5-der4.crt │ │ │ │ ├── server5-der8.crt │ │ │ │ ├── server5-der9.crt │ │ │ │ ├── server5-expired.crt │ │ │ │ ├── server5-future.crt │ │ │ │ ├── server5-selfsigned.crt │ │ │ │ ├── server5-sha1.crt │ │ │ │ ├── server5-sha224.crt │ │ │ │ ├── server5-sha384.crt │ │ │ │ ├── server5-sha512.crt │ │ │ │ ├── server5-ss-expired.crt │ │ │ │ ├── server5-ss-forgeca.crt │ │ │ │ ├── server5-tricky-ip-san-malformed-len.crt.der │ │ │ │ ├── server5-tricky-ip-san.crt.der │ │ │ │ ├── server5.crt │ │ │ │ ├── server5.crt.der │ │ │ │ ├── server5.crt.openssl.v3_ext │ │ │ │ ├── server5.eku-cli.crt │ │ │ │ ├── server5.eku-cs.crt │ │ │ │ ├── server5.eku-cs_any.crt │ │ │ │ ├── server5.eku-srv.crt │ │ │ │ ├── server5.eku-srv_cli.crt │ │ │ │ ├── server5.key │ │ │ │ ├── server5.key.der │ │ │ │ ├── server5.key.enc │ │ │ │ ├── server5.ku-ds.crt │ │ │ │ ├── server5.ku-ka.crt │ │ │ │ ├── server5.ku-ke.crt │ │ │ │ ├── server5.req.ku.sha1 │ │ │ │ ├── server6-ss-child.crt │ │ │ │ ├── server6-ss-child.crt.openssl.v3_ext │ │ │ │ ├── server6.crt │ │ │ │ ├── server6.key │ │ │ │ ├── server7-badsign.crt │ │ │ │ ├── server7-expired.crt │ │ │ │ ├── server7-future.crt │ │ │ │ ├── server7.crt │ │ │ │ ├── server7.key │ │ │ │ ├── server7_int-ca-exp.crt │ │ │ │ ├── server7_int-ca.crt │ │ │ │ ├── server7_int-ca_ca2.crt │ │ │ │ ├── server7_spurious_int-ca.crt │ │ │ │ ├── server8.crt │ │ │ │ ├── server8.key │ │ │ │ ├── server8_int-ca2.crt │ │ │ │ ├── server9-bad-mgfhash.crt │ │ │ │ ├── server9-bad-saltlen.crt │ │ │ │ ├── server9-badsign.crt │ │ │ │ ├── server9-defaults.crt │ │ │ │ ├── server9-sha224.crt │ │ │ │ ├── server9-sha256.crt │ │ │ │ ├── server9-sha384.crt │ │ │ │ ├── server9-sha512.crt │ │ │ │ ├── server9-with-ca.crt │ │ │ │ ├── server9.crt │ │ │ │ ├── server9.key │ │ │ │ ├── simplepass.psk │ │ │ │ ├── test-ca-alt-good.crt │ │ │ │ ├── test-ca-alt.crt │ │ │ │ ├── test-ca-alt.csr │ │ │ │ ├── test-ca-alt.key │ │ │ │ ├── test-ca-good-alt.crt │ │ │ │ ├── test-ca-sha1.crt │ │ │ │ ├── test-ca-sha1.crt.der │ │ │ │ ├── test-ca-sha256.crt │ │ │ │ ├── test-ca-sha256.crt.der │ │ │ │ ├── test-ca-v1.crt │ │ │ │ ├── test-ca.crt │ │ │ │ ├── test-ca.der │ │ │ │ ├── test-ca.key │ │ │ │ ├── test-ca.key.der │ │ │ │ ├── test-ca.opensslconf │ │ │ │ ├── test-ca.req.sha256 │ │ │ │ ├── test-ca.req_ec.sha256 │ │ │ │ ├── test-ca.server1.db │ │ │ │ ├── test-ca.server1.future-crl.db │ │ │ │ ├── test-ca.server1.future-crl.opensslconf │ │ │ │ ├── test-ca.server1.opensslconf │ │ │ │ ├── test-ca.server1.test_serial.opensslconf │ │ │ │ ├── test-ca2-expired.crt │ │ │ │ ├── test-ca2.crt │ │ │ │ ├── test-ca2.crt.der │ │ │ │ ├── test-ca2.key │ │ │ │ ├── test-ca2.key.der │ │ │ │ ├── test-ca2.key.enc │ │ │ │ ├── test-ca2.ku-crl.crt │ │ │ │ ├── test-ca2.ku-crl.crt.openssl.v3_ext │ │ │ │ ├── test-ca2.ku-crt.crt │ │ │ │ ├── test-ca2.ku-crt.crt.openssl.v3_ext │ │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ │ ├── test-ca2.ku-crt_crl.crt.openssl.v3_ext │ │ │ │ ├── test-ca2.ku-ds.crt │ │ │ │ ├── test-ca2.ku-ds.crt.openssl.v3_ext │ │ │ │ ├── test-ca2.req.sha256 │ │ │ │ ├── test-ca2_cat-future-invalid.crt │ │ │ │ ├── test-ca2_cat-future-present.crt │ │ │ │ ├── test-ca2_cat-past-invalid.crt │ │ │ │ ├── test-ca2_cat-past-present.crt │ │ │ │ ├── test-ca2_cat-present-future.crt │ │ │ │ ├── test-ca2_cat-present-past.crt │ │ │ │ ├── test-ca_cat12.crt │ │ │ │ ├── test-ca_cat21.crt │ │ │ │ ├── test-ca_printable.crt │ │ │ │ ├── test-ca_unenc.key │ │ │ │ ├── test-ca_uppercase.crt │ │ │ │ ├── test-ca_utf8.crt │ │ │ │ ├── test-int-ca-exp.crt │ │ │ │ ├── test-int-ca.crt │ │ │ │ ├── test-int-ca.key │ │ │ │ ├── test-int-ca2.crt │ │ │ │ ├── test-int-ca2.key │ │ │ │ ├── test-int-ca3-badsign.crt │ │ │ │ ├── test-int-ca3.crt │ │ │ │ ├── test-int-ca3.key │ │ │ │ ├── test_certs.h.jinja2 │ │ │ │ └── tls13_early_data.txt │ │ │ ├── docker │ │ │ │ └── bionic │ │ │ │ │ └── Dockerfile │ │ │ ├── git-scripts │ │ │ │ ├── README.md │ │ │ │ └── pre-push.sh │ │ │ ├── include │ │ │ │ ├── alt-dummy │ │ │ │ │ ├── aes_alt.h │ │ │ │ │ ├── aria_alt.h │ │ │ │ │ ├── camellia_alt.h │ │ │ │ │ ├── ccm_alt.h │ │ │ │ │ ├── chacha20_alt.h │ │ │ │ │ ├── chachapoly_alt.h │ │ │ │ │ ├── cmac_alt.h │ │ │ │ │ ├── des_alt.h │ │ │ │ │ ├── dhm_alt.h │ │ │ │ │ ├── ecjpake_alt.h │ │ │ │ │ ├── ecp_alt.h │ │ │ │ │ ├── gcm_alt.h │ │ │ │ │ ├── md5_alt.h │ │ │ │ │ ├── nist_kw_alt.h │ │ │ │ │ ├── platform_alt.h │ │ │ │ │ ├── poly1305_alt.h │ │ │ │ │ ├── ripemd160_alt.h │ │ │ │ │ ├── rsa_alt.h │ │ │ │ │ ├── sha1_alt.h │ │ │ │ │ ├── sha256_alt.h │ │ │ │ │ ├── sha512_alt.h │ │ │ │ │ ├── threading_alt.h │ │ │ │ │ └── timing_alt.h │ │ │ │ ├── alt-extra │ │ │ │ │ └── psa │ │ │ │ │ │ └── crypto.h │ │ │ │ ├── baremetal-override │ │ │ │ │ └── time.h │ │ │ │ ├── spe │ │ │ │ │ └── crypto_spe.h │ │ │ │ └── test │ │ │ │ │ ├── arguments.h │ │ │ │ │ ├── asn1_helpers.h │ │ │ │ │ ├── bignum_helpers.h │ │ │ │ │ ├── certs.h │ │ │ │ │ ├── constant_flow.h │ │ │ │ │ ├── drivers │ │ │ │ │ ├── aead.h │ │ │ │ │ ├── asymmetric_encryption.h │ │ │ │ │ ├── cipher.h │ │ │ │ │ ├── config_test_driver.h │ │ │ │ │ ├── crypto_config_test_driver_extension.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── key_agreement.h │ │ │ │ │ ├── key_management.h │ │ │ │ │ ├── mac.h │ │ │ │ │ ├── pake.h │ │ │ │ │ ├── signature.h │ │ │ │ │ └── test_driver.h │ │ │ │ │ ├── fake_external_rng_for_test.h │ │ │ │ │ ├── helpers.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── psa_crypto_helpers.h │ │ │ │ │ ├── psa_exercise_key.h │ │ │ │ │ ├── psa_helpers.h │ │ │ │ │ ├── psa_memory_poisoning_wrappers.h │ │ │ │ │ ├── psa_test_wrappers.h │ │ │ │ │ ├── random.h │ │ │ │ │ ├── ssl_helpers.h │ │ │ │ │ └── threading_helpers.h │ │ │ ├── make-in-docker.sh │ │ │ ├── opt-testcases │ │ │ │ ├── tls13-compat.sh │ │ │ │ ├── tls13-kex-modes.sh │ │ │ │ └── tls13-misc.sh │ │ │ ├── scripts │ │ │ │ ├── all-in-docker.sh │ │ │ │ ├── all.sh │ │ │ │ ├── analyze_outcomes.py │ │ │ │ ├── audit-validity-dates.py │ │ │ │ ├── basic-build-test.sh │ │ │ │ ├── basic-in-docker.sh │ │ │ │ ├── check-doxy-blocks.pl │ │ │ │ ├── check-generated-files.sh │ │ │ │ ├── check-python-files.sh │ │ │ │ ├── check_files.py │ │ │ │ ├── check_names.py │ │ │ │ ├── check_test_cases.py │ │ │ │ ├── depends.py │ │ │ │ ├── docker_env.sh │ │ │ │ ├── doxygen.sh │ │ │ │ ├── gen_ctr_drbg.pl │ │ │ │ ├── gen_gcm_decrypt.pl │ │ │ │ ├── gen_gcm_encrypt.pl │ │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ │ ├── generate-afl-tests.sh │ │ │ │ ├── generate_bignum_tests.py │ │ │ │ ├── generate_ecp_tests.py │ │ │ │ ├── generate_pkcs7_tests.py │ │ │ │ ├── generate_psa_tests.py │ │ │ │ ├── generate_psa_wrappers.py │ │ │ │ ├── generate_server9_bad_saltlen.py │ │ │ │ ├── generate_test_cert_macros.py │ │ │ │ ├── generate_test_code.py │ │ │ │ ├── generate_tls13_compat_tests.py │ │ │ │ ├── list-identifiers.sh │ │ │ │ ├── list_internal_identifiers.py │ │ │ │ ├── psa_collect_statuses.py │ │ │ │ ├── quiet │ │ │ │ │ ├── cmake │ │ │ │ │ ├── make │ │ │ │ │ └── quiet.sh │ │ │ │ ├── recursion.pl │ │ │ │ ├── run-metatests.sh │ │ │ │ ├── run-test-suites.pl │ │ │ │ ├── run_demos.py │ │ │ │ ├── scripts_path.py │ │ │ │ ├── set_psa_test_dependencies.py │ │ │ │ ├── tcp_client.pl │ │ │ │ ├── test-ref-configs.pl │ │ │ │ ├── test_config_script.py │ │ │ │ ├── test_generate_test_code.py │ │ │ │ ├── test_psa_compliance.py │ │ │ │ ├── test_psa_constant_names.py │ │ │ │ ├── test_zeroize.gdb │ │ │ │ ├── translate_ciphers.py │ │ │ │ └── travis-log-failure.sh │ │ │ ├── src │ │ │ │ ├── asn1_helpers.c │ │ │ │ ├── bignum_helpers.c │ │ │ │ ├── certs.c │ │ │ │ ├── drivers │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── platform_builtin_keys.c │ │ │ │ │ ├── test_driver_aead.c │ │ │ │ │ ├── test_driver_asymmetric_encryption.c │ │ │ │ │ ├── test_driver_cipher.c │ │ │ │ │ ├── test_driver_key_agreement.c │ │ │ │ │ ├── test_driver_key_management.c │ │ │ │ │ ├── test_driver_mac.c │ │ │ │ │ ├── test_driver_pake.c │ │ │ │ │ └── test_driver_signature.c │ │ │ │ ├── fake_external_rng_for_test.c │ │ │ │ ├── helpers.c │ │ │ │ ├── psa_crypto_helpers.c │ │ │ │ ├── psa_crypto_stubs.c │ │ │ │ ├── psa_exercise_key.c │ │ │ │ ├── psa_memory_poisoning_wrappers.c │ │ │ │ ├── psa_test_wrappers.c │ │ │ │ ├── random.c │ │ │ │ ├── test_certs.h │ │ │ │ ├── test_helpers │ │ │ │ │ └── ssl_helpers.c │ │ │ │ ├── test_memory.c │ │ │ │ └── threading_helpers.c │ │ │ ├── ssl-opt-in-docker.sh │ │ │ ├── ssl-opt.sh │ │ │ └── suites │ │ │ │ ├── helpers.function │ │ │ │ ├── host_test.function │ │ │ │ ├── main_test.function │ │ │ │ ├── test_suite_aes.cbc.data │ │ │ │ ├── test_suite_aes.cfb.data │ │ │ │ ├── test_suite_aes.ctr.data │ │ │ │ ├── test_suite_aes.ecb.data │ │ │ │ ├── test_suite_aes.function │ │ │ │ ├── test_suite_aes.ofb.data │ │ │ │ ├── test_suite_aes.rest.data │ │ │ │ ├── test_suite_aes.xts.data │ │ │ │ ├── test_suite_alignment.data │ │ │ │ ├── test_suite_alignment.function │ │ │ │ ├── test_suite_aria.data │ │ │ │ ├── test_suite_aria.function │ │ │ │ ├── test_suite_asn1parse.data │ │ │ │ ├── test_suite_asn1parse.function │ │ │ │ ├── test_suite_asn1write.data │ │ │ │ ├── test_suite_asn1write.function │ │ │ │ ├── test_suite_base64.data │ │ │ │ ├── test_suite_base64.function │ │ │ │ ├── test_suite_bignum.function │ │ │ │ ├── test_suite_bignum.generated.data │ │ │ │ ├── test_suite_bignum.misc.data │ │ │ │ ├── test_suite_bignum_core.function │ │ │ │ ├── test_suite_bignum_core.generated.data │ │ │ │ ├── test_suite_bignum_core.misc.data │ │ │ │ ├── test_suite_bignum_mod.function │ │ │ │ ├── test_suite_bignum_mod.generated.data │ │ │ │ ├── test_suite_bignum_mod.misc.data │ │ │ │ ├── test_suite_bignum_mod_raw.data │ │ │ │ ├── test_suite_bignum_mod_raw.function │ │ │ │ ├── test_suite_bignum_mod_raw.generated.data │ │ │ │ ├── test_suite_bignum_random.data │ │ │ │ ├── test_suite_bignum_random.function │ │ │ │ ├── test_suite_block_cipher.data │ │ │ │ ├── test_suite_block_cipher.function │ │ │ │ ├── test_suite_block_cipher.psa.data │ │ │ │ ├── test_suite_camellia.data │ │ │ │ ├── test_suite_camellia.function │ │ │ │ ├── test_suite_ccm.data │ │ │ │ ├── test_suite_ccm.function │ │ │ │ ├── test_suite_chacha20.data │ │ │ │ ├── test_suite_chacha20.function │ │ │ │ ├── test_suite_chachapoly.data │ │ │ │ ├── test_suite_chachapoly.function │ │ │ │ ├── test_suite_cipher.aes.data │ │ │ │ ├── test_suite_cipher.aria.data │ │ │ │ ├── test_suite_cipher.camellia.data │ │ │ │ ├── test_suite_cipher.ccm.data │ │ │ │ ├── test_suite_cipher.chacha20.data │ │ │ │ ├── test_suite_cipher.chachapoly.data │ │ │ │ ├── test_suite_cipher.des.data │ │ │ │ ├── test_suite_cipher.function │ │ │ │ ├── test_suite_cipher.gcm.data │ │ │ │ ├── test_suite_cipher.misc.data │ │ │ │ ├── test_suite_cipher.nist_kw.data │ │ │ │ ├── test_suite_cipher.null.data │ │ │ │ ├── test_suite_cipher.padding.data │ │ │ │ ├── test_suite_cmac.data │ │ │ │ ├── test_suite_cmac.function │ │ │ │ ├── test_suite_common.data │ │ │ │ ├── test_suite_common.function │ │ │ │ ├── test_suite_constant_time.data │ │ │ │ ├── test_suite_constant_time.function │ │ │ │ ├── test_suite_constant_time_hmac.data │ │ │ │ ├── test_suite_constant_time_hmac.function │ │ │ │ ├── test_suite_ctr_drbg.data │ │ │ │ ├── test_suite_ctr_drbg.function │ │ │ │ ├── test_suite_debug.data │ │ │ │ ├── test_suite_debug.function │ │ │ │ ├── test_suite_des.data │ │ │ │ ├── test_suite_des.function │ │ │ │ ├── test_suite_dhm.data │ │ │ │ ├── test_suite_dhm.function │ │ │ │ ├── test_suite_ecdh.data │ │ │ │ ├── test_suite_ecdh.function │ │ │ │ ├── test_suite_ecdsa.data │ │ │ │ ├── test_suite_ecdsa.function │ │ │ │ ├── test_suite_ecjpake.data │ │ │ │ ├── test_suite_ecjpake.function │ │ │ │ ├── test_suite_ecp.data │ │ │ │ ├── test_suite_ecp.function │ │ │ │ ├── test_suite_ecp.generated.data │ │ │ │ ├── test_suite_entropy.data │ │ │ │ ├── test_suite_entropy.function │ │ │ │ ├── test_suite_error.data │ │ │ │ ├── test_suite_error.function │ │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ │ ├── test_suite_gcm.camellia.data │ │ │ │ ├── test_suite_gcm.function │ │ │ │ ├── test_suite_gcm.misc.data │ │ │ │ ├── test_suite_hkdf.data │ │ │ │ ├── test_suite_hkdf.function │ │ │ │ ├── test_suite_hmac_drbg.function │ │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ │ ├── test_suite_lmots.data │ │ │ │ ├── test_suite_lmots.function │ │ │ │ ├── test_suite_lms.data │ │ │ │ ├── test_suite_lms.function │ │ │ │ ├── test_suite_md.data │ │ │ │ ├── test_suite_md.function │ │ │ │ ├── test_suite_md.psa.data │ │ │ │ ├── test_suite_mdx.data │ │ │ │ ├── test_suite_mdx.function │ │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ │ ├── test_suite_mps.data │ │ │ │ ├── test_suite_mps.function │ │ │ │ ├── test_suite_net.data │ │ │ │ ├── test_suite_net.function │ │ │ │ ├── test_suite_nist_kw.data │ │ │ │ ├── test_suite_nist_kw.function │ │ │ │ ├── test_suite_oid.data │ │ │ │ ├── test_suite_oid.function │ │ │ │ ├── test_suite_pem.data │ │ │ │ ├── test_suite_pem.function │ │ │ │ ├── test_suite_pk.data │ │ │ │ ├── test_suite_pk.function │ │ │ │ ├── test_suite_pkcs12.data │ │ │ │ ├── test_suite_pkcs12.function │ │ │ │ ├── test_suite_pkcs1_v15.data │ │ │ │ ├── test_suite_pkcs1_v15.function │ │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ │ ├── test_suite_pkcs5.data │ │ │ │ ├── test_suite_pkcs5.function │ │ │ │ ├── test_suite_pkcs7.data │ │ │ │ ├── test_suite_pkcs7.function │ │ │ │ ├── test_suite_pkparse.data │ │ │ │ ├── test_suite_pkparse.function │ │ │ │ ├── test_suite_pkwrite.data │ │ │ │ ├── test_suite_pkwrite.function │ │ │ │ ├── test_suite_platform.data │ │ │ │ ├── test_suite_platform.function │ │ │ │ ├── test_suite_platform_printf.data │ │ │ │ ├── test_suite_platform_printf.function │ │ │ │ ├── test_suite_platform_util.data │ │ │ │ ├── test_suite_platform_util.function │ │ │ │ ├── test_suite_poly1305.data │ │ │ │ ├── test_suite_poly1305.function │ │ │ │ ├── test_suite_psa_crypto.data │ │ │ │ ├── test_suite_psa_crypto.function │ │ │ │ ├── test_suite_psa_crypto.pbkdf2.data │ │ │ │ ├── test_suite_psa_crypto_attributes.data │ │ │ │ ├── test_suite_psa_crypto_attributes.function │ │ │ │ ├── test_suite_psa_crypto_driver_wrappers.data │ │ │ │ ├── test_suite_psa_crypto_driver_wrappers.function │ │ │ │ ├── test_suite_psa_crypto_entropy.data │ │ │ │ ├── test_suite_psa_crypto_entropy.function │ │ │ │ ├── test_suite_psa_crypto_generate_key.function │ │ │ │ ├── test_suite_psa_crypto_generate_key.generated.data │ │ │ │ ├── test_suite_psa_crypto_hash.data │ │ │ │ ├── test_suite_psa_crypto_hash.function │ │ │ │ ├── test_suite_psa_crypto_init.data │ │ │ │ ├── test_suite_psa_crypto_init.function │ │ │ │ ├── test_suite_psa_crypto_low_hash.function │ │ │ │ ├── test_suite_psa_crypto_low_hash.generated.data │ │ │ │ ├── test_suite_psa_crypto_memory.data │ │ │ │ ├── test_suite_psa_crypto_memory.function │ │ │ │ ├── test_suite_psa_crypto_metadata.data │ │ │ │ ├── test_suite_psa_crypto_metadata.function │ │ │ │ ├── test_suite_psa_crypto_not_supported.function │ │ │ │ ├── test_suite_psa_crypto_not_supported.generated.data │ │ │ │ ├── test_suite_psa_crypto_not_supported.misc.data │ │ │ │ ├── test_suite_psa_crypto_op_fail.function │ │ │ │ ├── test_suite_psa_crypto_op_fail.generated.data │ │ │ │ ├── test_suite_psa_crypto_op_fail.misc.data │ │ │ │ ├── test_suite_psa_crypto_pake.data │ │ │ │ ├── test_suite_psa_crypto_pake.function │ │ │ │ ├── test_suite_psa_crypto_persistent_key.data │ │ │ │ ├── test_suite_psa_crypto_persistent_key.function │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal.data │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal.function │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.data │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.function │ │ │ │ ├── test_suite_psa_crypto_slot_management.data │ │ │ │ ├── test_suite_psa_crypto_slot_management.function │ │ │ │ ├── test_suite_psa_crypto_storage_format.current.data │ │ │ │ ├── test_suite_psa_crypto_storage_format.function │ │ │ │ ├── test_suite_psa_crypto_storage_format.misc.data │ │ │ │ ├── test_suite_psa_crypto_storage_format.v0.data │ │ │ │ ├── test_suite_psa_crypto_util.data │ │ │ │ ├── test_suite_psa_crypto_util.function │ │ │ │ ├── test_suite_psa_its.data │ │ │ │ ├── test_suite_psa_its.function │ │ │ │ ├── test_suite_random.data │ │ │ │ ├── test_suite_random.function │ │ │ │ ├── test_suite_rsa.data │ │ │ │ ├── test_suite_rsa.function │ │ │ │ ├── test_suite_shax.data │ │ │ │ ├── test_suite_shax.function │ │ │ │ ├── test_suite_ssl.data │ │ │ │ ├── test_suite_ssl.function │ │ │ │ ├── test_suite_ssl_decrypt.function │ │ │ │ ├── test_suite_ssl_decrypt.misc.data │ │ │ │ ├── test_suite_test_helpers.data │ │ │ │ ├── test_suite_test_helpers.function │ │ │ │ ├── test_suite_timing.data │ │ │ │ ├── test_suite_timing.function │ │ │ │ ├── test_suite_version.data │ │ │ │ ├── test_suite_version.function │ │ │ │ ├── test_suite_x509parse.data │ │ │ │ ├── test_suite_x509parse.function │ │ │ │ ├── test_suite_x509write.data │ │ │ │ └── test_suite_x509write.function │ │ │ └── visualc │ │ │ └── VS2017 │ │ │ ├── .gitignore │ │ │ ├── aead_demo.vcxproj │ │ │ ├── benchmark.vcxproj │ │ │ ├── cert_app.vcxproj │ │ │ ├── cert_req.vcxproj │ │ │ ├── cert_write.vcxproj │ │ │ ├── cipher_aead_demo.vcxproj │ │ │ ├── crl_app.vcxproj │ │ │ ├── crypt_and_hash.vcxproj │ │ │ ├── crypto_examples.vcxproj │ │ │ ├── dh_client.vcxproj │ │ │ ├── dh_genprime.vcxproj │ │ │ ├── dh_server.vcxproj │ │ │ ├── dtls_client.vcxproj │ │ │ ├── dtls_server.vcxproj │ │ │ ├── ecdh_curve25519.vcxproj │ │ │ ├── ecdsa.vcxproj │ │ │ ├── gen_entropy.vcxproj │ │ │ ├── gen_key.vcxproj │ │ │ ├── gen_random_ctr_drbg.vcxproj │ │ │ ├── generic_sum.vcxproj │ │ │ ├── hello.vcxproj │ │ │ ├── hmac_demo.vcxproj │ │ │ ├── key_app.vcxproj │ │ │ ├── key_app_writer.vcxproj │ │ │ ├── key_ladder_demo.vcxproj │ │ │ ├── load_roots.vcxproj │ │ │ ├── mbedTLS.sln │ │ │ ├── mbedTLS.vcxproj │ │ │ ├── md_hmac_demo.vcxproj │ │ │ ├── metatest.vcxproj │ │ │ ├── mini_client.vcxproj │ │ │ ├── mpi_demo.vcxproj │ │ │ ├── pem2der.vcxproj │ │ │ ├── pk_decrypt.vcxproj │ │ │ ├── pk_encrypt.vcxproj │ │ │ ├── pk_sign.vcxproj │ │ │ ├── pk_verify.vcxproj │ │ │ ├── psa_constant_names.vcxproj │ │ │ ├── psa_hash.vcxproj │ │ │ ├── query_compile_time_config.vcxproj │ │ │ ├── query_included_headers.vcxproj │ │ │ ├── req_app.vcxproj │ │ │ ├── rsa_decrypt.vcxproj │ │ │ ├── rsa_encrypt.vcxproj │ │ │ ├── rsa_genkey.vcxproj │ │ │ ├── rsa_sign.vcxproj │ │ │ ├── rsa_sign_pss.vcxproj │ │ │ ├── rsa_verify.vcxproj │ │ │ ├── rsa_verify_pss.vcxproj │ │ │ ├── selftest.vcxproj │ │ │ ├── ssl_client1.vcxproj │ │ │ ├── ssl_client2.vcxproj │ │ │ ├── ssl_context_info.vcxproj │ │ │ ├── ssl_fork_server.vcxproj │ │ │ ├── ssl_mail_client.vcxproj │ │ │ ├── ssl_server.vcxproj │ │ │ ├── ssl_server2.vcxproj │ │ │ ├── strerror.vcxproj │ │ │ ├── udp_proxy.vcxproj │ │ │ └── zeroize.vcxproj │ ├── mbedtls_def_config.h │ ├── md5.c │ ├── mscode_parser.c │ ├── pkcs7_parser.c │ ├── port │ │ ├── assert.h │ │ ├── mbedtls_options.h │ │ ├── md5_alt.h │ │ ├── sha1_alt.h │ │ ├── sha256_alt.h │ │ └── sha512_alt.h │ ├── public_key.c │ ├── rsa_helper.c │ ├── sha1.c │ ├── sha256.c │ ├── sha512.c │ └── x509_cert_parser.c ├── md5.c ├── membuf.c ├── net_utils.c ├── of_live.c ├── oid_registry.c ├── optee │ ├── Kconfig │ ├── Makefile │ └── optee.c ├── panic.c ├── physmem.c ├── qsort.c ├── rand.c ├── rational.c ├── rbtree.c ├── rc4.c ├── rsa │ ├── Kconfig │ ├── Makefile │ ├── rsa-keyprop.c │ ├── rsa-mod-exp.c │ ├── rsa-sign.c │ └── rsa-verify.c ├── rtc-lib.c ├── semihosting.c ├── sha1.c ├── sha256.c ├── sha256_common.c ├── sha512.c ├── slre.c ├── smbios-parser.c ├── smbios.c ├── sscanf.c ├── string.c ├── strto.c ├── tables_csum.c ├── time.c ├── tiny-printf.c ├── tpm-common.c ├── tpm-utils.h ├── tpm-v1.c ├── tpm-v2.c ├── tpm_api.c ├── tpm_tcg2.c ├── trace.c ├── uthread.c ├── uuid.c ├── vsprintf.c ├── xxhash.c ├── xz │ ├── Makefile │ ├── README.txt │ ├── xz_config.h │ ├── xz_crc32.c │ ├── xz_crc64.c │ ├── xz_dec_bcj.c │ ├── xz_dec_lzma2.c │ ├── xz_dec_stream.c │ ├── xz_lzma2.h │ ├── xz_private.h │ └── xz_stream.h ├── zlib │ ├── Makefile │ ├── adler32.c │ ├── deflate.c │ ├── deflate.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zlib.c │ ├── zlib.h │ ├── zutil.c │ └── zutil.h └── zstd │ ├── Makefile │ ├── common │ ├── bitstream.h │ ├── compiler.h │ ├── cpu.h │ ├── debug.c │ ├── debug.h │ ├── entropy_common.c │ ├── error_private.c │ ├── error_private.h │ ├── fse.h │ ├── fse_decompress.c │ ├── huf.h │ ├── mem.h │ ├── portability_macros.h │ ├── zstd_common.c │ ├── zstd_deps.h │ └── zstd_internal.h │ ├── decompress │ ├── huf_decompress.c │ ├── zstd_ddict.c │ ├── zstd_ddict.h │ ├── zstd_decompress.c │ ├── zstd_decompress_block.c │ ├── zstd_decompress_block.h │ └── zstd_decompress_internal.h │ ├── decompress_sources.h │ ├── zstd.c │ ├── zstd_common_module.c │ └── zstd_decompress_module.c ├── net ├── Kconfig ├── Makefile ├── arp.c ├── arp.h ├── bootp.c ├── bootp.h ├── cdp.c ├── cdp.h ├── dhcpv6.c ├── dhcpv6.h ├── dns.c ├── dns.h ├── dsa-uclass.c ├── eth-uclass.c ├── eth_bootdev.c ├── eth_common.c ├── eth_internal.h ├── fastboot_tcp.c ├── fastboot_udp.c ├── link_local.c ├── link_local.h ├── lwip │ ├── Kconfig │ ├── Makefile │ ├── dhcp.c │ ├── net-lwip.c │ ├── tftp.c │ └── wget.c ├── mdio-mux-uclass.c ├── mdio-uclass.c ├── mtk_httpd.c ├── mtk_tcp.c ├── mtk_tcp.h ├── ndisc.c ├── net-common.c ├── net.c ├── net6.c ├── net_rand.h ├── nfs.c ├── nfs.h ├── pcap.c ├── ping.c ├── ping.h ├── ping6.c ├── rarp.c ├── rarp.h ├── sntp.c ├── tcp.c ├── tftp.c ├── udp.c ├── wget.c ├── wol.c └── wol.h ├── post ├── Makefile ├── cpu │ └── mpc83xx │ │ ├── Makefile │ │ └── ecc.c ├── drivers │ ├── Makefile │ ├── flash.c │ ├── i2c.c │ ├── memory.c │ └── rtc.c ├── lib_powerpc │ ├── Makefile │ ├── andi.c │ ├── asm.S │ ├── b.c │ ├── cmp.c │ ├── cmpi.c │ ├── complex.c │ ├── cpu.c │ ├── cpu_asm.h │ ├── cr.c │ ├── fpu │ │ ├── 20001122-1.c │ │ ├── 20010114-2.c │ │ ├── 20010226-1.c │ │ ├── 980619-1.c │ │ ├── Makefile │ │ ├── acc1.c │ │ ├── compare-fp-1.c │ │ ├── darwin-ldouble.c │ │ ├── fpu.c │ │ └── mul-subnormal-single-1.c │ ├── load.c │ ├── multi.c │ ├── rlwimi.c │ ├── rlwinm.c │ ├── rlwnm.c │ ├── srawi.c │ ├── store.c │ ├── string.c │ ├── three.c │ ├── threei.c │ ├── threex.c │ ├── two.c │ └── twox.c ├── post.c └── tests.c ├── scripts ├── .gitignore ├── Kbuild.include ├── Kconfig.include ├── Lindent ├── Makefile ├── Makefile.autoconf ├── Makefile.build ├── Makefile.clean ├── Makefile.dts ├── Makefile.extrawarn ├── Makefile.gcc-plugins ├── Makefile.host ├── Makefile.kcov ├── Makefile.lib ├── Makefile.xpl ├── basic │ ├── .gitignore │ ├── Makefile │ └── fixdep.c ├── bin2c.c ├── binutils-version.sh ├── build-cb.sh ├── build-efi.sh ├── build_OID_registry ├── check-of.sh ├── checkpatch.pl ├── checkstack.pl ├── clang-version.sh ├── cleanpatch ├── coccicheck ├── coccinelle │ ├── api │ │ └── alloc │ │ │ └── alloc_cast.cocci │ ├── free │ │ └── ifnullfree.cocci │ ├── iterators │ │ ├── itnull.cocci │ │ ├── list_entry_update.cocci │ │ └── use_after_iter.cocci │ ├── misc │ │ └── badty.cocci │ ├── net │ │ └── mdio_register.cocci │ └── null │ │ ├── badzero.cocci │ │ └── kmerr.cocci ├── config ├── const_structs.checkpatch ├── coreboot.sed ├── decodecode ├── documentation-file-ref-check ├── dtc-version.sh ├── dtc │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dtc │ ├── README │ ├── checks.c │ ├── data.c │ ├── dtc-lexer.l │ ├── dtc-parser.y │ ├── dtc.c │ ├── dtc.h │ ├── 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 │ ├── pylibfdt │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── libfdt.i_shipped │ │ └── setup.py │ ├── srcpos.c │ ├── srcpos.h │ ├── treesource.c │ ├── update-dtc-source.sh │ ├── util.c │ ├── util.h │ └── version_gen.h ├── env2string.awk ├── event_dump.py ├── gcc-stack-usage.sh ├── gcc-version.sh ├── gen_compile_commands.py ├── gen_ll_addressable_symbols.sh ├── get_default_envs.sh ├── get_maintainer.pl ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf-cfg.sh │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kconf_id.c │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── 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 │ ├── 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 │ │ ├── pytest.ini │ │ └── rand_nested_choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── expected_stdout0 │ │ │ ├── expected_stdout1 │ │ │ └── expected_stdout2 │ ├── util.c │ ├── zconf.l │ └── zconf.y ├── kernel-doc ├── ld-version.sh ├── mailmapper ├── make_pip.sh ├── mkmakefile ├── objdiff ├── of_allowlist.txt ├── pylint.base ├── setlocalversion ├── show-gnu-make ├── spdxcheck.py ├── spelling.txt ├── style.py └── u-boot.supp ├── test ├── Kconfig ├── Makefile ├── boot │ ├── Makefile │ ├── bootdev.c │ ├── bootflow.c │ ├── bootm.c │ ├── bootmeth.c │ ├── bootstd_common.c │ ├── bootstd_common.h │ ├── cedit.c │ ├── expo.c │ ├── files │ │ ├── expo_ids.h │ │ └── expo_layout.dts │ ├── image.c │ ├── measurement.c │ ├── upl.c │ ├── vbe_fixup.c │ └── vbe_simple.c ├── cmd │ ├── Makefile │ ├── addrmap.c │ ├── armffa.c │ ├── bdinfo.c │ ├── command.c │ ├── coreboot.c │ ├── cpuid.c │ ├── exit.c │ ├── fdt.c │ ├── font.c │ ├── hash.c │ ├── history.c │ ├── loadm.c │ ├── mbr.c │ ├── mem_copy.c │ ├── mem_search.c │ ├── meminfo.c │ ├── msr.c │ ├── pci_mps.c │ ├── pinmux.c │ ├── pwm.c │ ├── rw.c │ ├── seama.c │ ├── setexpr.c │ ├── spawn.c │ ├── temperature.c │ ├── test_echo.c │ ├── test_pause.c │ └── wget.c ├── cmd_ut.c ├── common │ ├── Makefile │ ├── bloblist.c │ ├── cread.c │ ├── cyclic.c │ ├── event.c │ ├── print.c │ └── test_autoboot.c ├── dm │ ├── Kconfig │ ├── Makefile │ ├── acpi.c │ ├── acpi.h │ ├── acpi_dp.c │ ├── acpigen.c │ ├── adc.c │ ├── audio.c │ ├── axi.c │ ├── blk.c │ ├── blkmap.c │ ├── bootcount.c │ ├── bus.c │ ├── button.c │ ├── cache.c │ ├── clk.c │ ├── clk_ccf.c │ ├── core.c │ ├── cpu.c │ ├── cros_ec.c │ ├── cros_ec_pwm.c │ ├── devres.c │ ├── dma.c │ ├── dsa.c │ ├── dsi_host.c │ ├── ecdsa.c │ ├── efi_media.c │ ├── eth.c │ ├── extcon.c │ ├── fastboot.c │ ├── fdtdec.c │ ├── ffa.c │ ├── firmware.c │ ├── fpga.c │ ├── fwu_mdata.c │ ├── fwu_mdata_disk_image.h │ ├── gpio.c │ ├── host.c │ ├── hwspinlock.c │ ├── i2c.c │ ├── i2s.c │ ├── iommu.c │ ├── irq.c │ ├── k210_pll.c │ ├── led.c │ ├── mailbox.c │ ├── mdio.c │ ├── mdio_mux.c │ ├── memory.c │ ├── misc.c │ ├── mmc.c │ ├── mux-cmd.c │ ├── mux-emul.c │ ├── mux-mmio.c │ ├── nand.c │ ├── nop.c │ ├── nvmxip.c │ ├── of_extra.c │ ├── of_platdata.c │ ├── ofnode.c │ ├── ofread.c │ ├── osd.c │ ├── p2sb.c │ ├── panel.c │ ├── part.c │ ├── pch.c │ ├── pci.c │ ├── pci_ep.c │ ├── phy.c │ ├── phys2bus.c │ ├── pinmux.c │ ├── pmc.c │ ├── pmic.c │ ├── power-domain.c │ ├── pwm.c │ ├── qfw.c │ ├── ram.c │ ├── read.c │ ├── reboot-mode.c │ ├── regmap.c │ ├── regulator.c │ ├── remoteproc.c │ ├── reset.c │ ├── rkmtd.c │ ├── rng.c │ ├── rtc.c │ ├── scmi.c │ ├── scsi.c │ ├── serial.c │ ├── sf.c │ ├── simple-bus.c │ ├── simple-pm-bus.c │ ├── sm.c │ ├── smem.c │ ├── soc.c │ ├── sound.c │ ├── spi.c │ ├── spmi.c │ ├── syscon-reset.c │ ├── syscon.c │ ├── sysinfo-gpio.c │ ├── sysinfo.c │ ├── sysreset.c │ ├── tag.c │ ├── tee.c │ ├── test-driver.c │ ├── test-fdt.c │ ├── test-uclass.c │ ├── timer.c │ ├── tpm.c │ ├── usb.c │ ├── video.c │ ├── video_bridge.c │ ├── virtio.c │ ├── virtio_device.c │ ├── virtio_rng.c │ └── wdt.c ├── env │ ├── Kconfig │ ├── Makefile │ ├── attr.c │ ├── cmd_ut_env.c │ ├── fdt.c │ └── hashtable.c ├── fdt_overlay │ ├── Kconfig │ ├── Makefile │ ├── cmd_ut_fdt_overlay.c │ ├── test-fdt-base.dts │ ├── test-fdt-overlay-stacked.dtso │ └── test-fdt-overlay.dtso ├── fs │ ├── fat-noncontig-test.sh │ └── fs-test.sh ├── fuzz │ ├── Makefile │ ├── cmd_fuzz.c │ └── virtio.c ├── hush │ ├── Makefile │ ├── dollar.c │ ├── if.c │ ├── list.c │ └── loop.c ├── image │ ├── Kconfig │ ├── Makefile │ ├── spl_load.c │ ├── spl_load_fs.c │ ├── spl_load_nand.c │ ├── spl_load_net.c │ ├── spl_load_nor.c │ ├── spl_load_os.c │ ├── spl_load_spi.c │ └── test-imagetools.sh ├── lib │ ├── Kconfig │ ├── Makefile │ ├── abuf.c │ ├── alist.c │ ├── asn1.c │ ├── compression.c │ ├── efi_device_path.c │ ├── efi_image_region.c │ ├── efi_memory.c │ ├── getopt.c │ ├── hexdump.c │ ├── initjmp.c │ ├── kconfig.c │ ├── kconfig_spl.c │ ├── lmb.c │ ├── longjmp.c │ ├── membuf.c │ ├── rsa.c │ ├── slre.c │ ├── sscanf.c │ ├── str.c │ ├── string.c │ ├── strlcat.c │ ├── test_aes.c │ ├── test_crc8.c │ ├── test_crypt.c │ ├── test_errno_str.c │ ├── test_print.c │ ├── test_sha256_hkdf.c │ ├── test_sha256_hmac.c │ ├── time.c │ ├── unicode.c │ ├── uthread.c │ └── uuid.c ├── log │ ├── Makefile │ ├── cont_test.c │ ├── log_filter.c │ ├── log_test.c │ ├── nolog_ndebug.c │ ├── nolog_test.c │ ├── pr_cont_test.c │ ├── syslog_test.c │ ├── syslog_test.h │ └── syslog_test_ndebug.c ├── optee │ ├── Kconfig │ ├── Makefile │ ├── optee.c │ ├── test-optee-base.dts │ ├── test-optee-no-optee.dts │ └── test-optee-optee.dts ├── py │ ├── .gitignore │ ├── conftest.py │ ├── console_base.py │ ├── console_board.py │ ├── console_sandbox.py │ ├── multiplexed_log.css │ ├── multiplexed_log.py │ ├── pytest.ini │ ├── requirements.txt │ ├── spawn.py │ ├── test.py │ ├── tests │ │ ├── bootstd │ │ │ └── armbian.bmp.xz │ │ ├── fit_util.py │ │ ├── fs_helper.py │ │ ├── source.its │ │ ├── test_000_version.py │ │ ├── test_android │ │ │ ├── test_ab.py │ │ │ ├── test_abootimg.py │ │ │ └── test_avb.py │ │ ├── test_bind.py │ │ ├── test_bootmenu.py │ │ ├── test_bootstage.py │ │ ├── test_button.py │ │ ├── test_cat.py │ │ ├── test_cleanup_build.py │ │ ├── test_dfu.py │ │ ├── test_distro.py │ │ ├── test_dm.py │ │ ├── test_efi_bootmgr.py │ │ ├── test_efi_capsule │ │ │ ├── capsule_common.py │ │ │ ├── capsule_defs.py │ │ │ ├── capsule_gen_binman.dts │ │ │ ├── conftest.py │ │ │ ├── test_capsule_firmware_fit.py │ │ │ ├── test_capsule_firmware_raw.py │ │ │ ├── test_capsule_firmware_signed_fit.py │ │ │ ├── test_capsule_firmware_signed_raw.py │ │ │ └── version.dtso │ │ ├── test_efi_fit.py │ │ ├── test_efi_loader.py │ │ ├── test_efi_secboot │ │ │ ├── conftest.py │ │ │ ├── defs.py │ │ │ ├── forge_image.sh │ │ │ ├── openssl.cnf │ │ │ ├── test_authvar.py │ │ │ ├── test_signed.py │ │ │ ├── test_signed_intca.py │ │ │ └── test_unsigned.py │ │ ├── test_efi_selftest.py │ │ ├── test_eficonfig.py │ │ ├── test_env.py │ │ ├── test_event_dump.py │ │ ├── test_extension.py │ │ ├── test_fit.py │ │ ├── test_fit_auto_signed.py │ │ ├── test_fit_ecdsa.py │ │ ├── test_fit_hashes.py │ │ ├── test_fit_mkimage_validate.py │ │ ├── test_fpga.py │ │ ├── test_fs │ │ │ ├── conftest.py │ │ │ ├── fstest_defs.py │ │ │ ├── fstest_helpers.py │ │ │ ├── test_basic.py │ │ │ ├── test_erofs.py │ │ │ ├── test_ext.py │ │ │ ├── test_fs_cmd.py │ │ │ ├── test_fs_fat.py │ │ │ ├── test_mkdir.py │ │ │ ├── test_rename.py │ │ │ ├── test_squashfs │ │ │ │ ├── sqfs_common.py │ │ │ │ ├── test_sqfs_load.py │ │ │ │ └── test_sqfs_ls.py │ │ │ ├── test_symlink.py │ │ │ └── test_unlink.py │ │ ├── test_gpio.py │ │ ├── test_gpt.py │ │ ├── test_handoff.py │ │ ├── test_help.py │ │ ├── test_i2c.py │ │ ├── test_kconfig.py │ │ ├── test_log.py │ │ ├── test_lsblk.py │ │ ├── test_md.py │ │ ├── test_mdio.py │ │ ├── test_memtest.py │ │ ├── test_mii.py │ │ ├── test_mmc.py │ │ ├── test_mmc_rd.py │ │ ├── test_mmc_wr.py │ │ ├── test_net.py │ │ ├── test_net_boot.py │ │ ├── test_of_migrate.py │ │ ├── test_ofplatdata.py │ │ ├── test_optee_rpmb.py │ │ ├── test_part.py │ │ ├── test_pinmux.py │ │ ├── test_pstore.py │ │ ├── test_pstore_data_console.hex │ │ ├── test_pstore_data_panic1.hex │ │ ├── test_pstore_data_panic2.hex │ │ ├── test_qfw.py │ │ ├── test_reset.py │ │ ├── test_sandbox_exit.py │ │ ├── test_sandbox_opts.py │ │ ├── test_saveenv.py │ │ ├── test_scp03.py │ │ ├── test_scsi.py │ │ ├── test_semihosting │ │ │ ├── conftest.py │ │ │ └── test_hostfs.py │ │ ├── test_sf.py │ │ ├── test_shell_basics.py │ │ ├── test_sleep.py │ │ ├── test_smbios.py │ │ ├── test_source.py │ │ ├── test_spi.py │ │ ├── test_spl.py │ │ ├── test_stackprotector.py │ │ ├── test_suite.py │ │ ├── test_tpm2.py │ │ ├── test_trace.py │ │ ├── test_ums.py │ │ ├── test_unknown_cmd.py │ │ ├── test_upl.py │ │ ├── test_usb.py │ │ ├── test_ut.py │ │ ├── test_vbe.py │ │ ├── test_vbe_vpl.py │ │ ├── test_vboot.py │ │ ├── test_vpl.py │ │ ├── test_xxd.py │ │ ├── test_zynq_secure.py │ │ ├── test_zynqmp_rpu.py │ │ ├── test_zynqmp_secure.py │ │ ├── vboot │ │ │ ├── hash-images.its │ │ │ ├── sandbox-binman-pss.dts │ │ │ ├── sandbox-binman.dts │ │ │ ├── sandbox-kernel.dts │ │ │ ├── sandbox-u-boot-global-pss.dts │ │ │ ├── sandbox-u-boot-global.dts │ │ │ ├── sandbox-u-boot.dts │ │ │ ├── sign-configs-algo-arg.its │ │ │ ├── sign-configs-sha1-pss.its │ │ │ ├── sign-configs-sha1.its │ │ │ ├── sign-configs-sha256-pss-prod.its │ │ │ ├── sign-configs-sha256-pss.its │ │ │ ├── sign-configs-sha256.its │ │ │ ├── sign-configs-sha384.its │ │ │ ├── sign-images-algo-arg.its │ │ │ ├── sign-images-sha1-pss.its │ │ │ ├── sign-images-sha1.its │ │ │ ├── sign-images-sha256-pss.its │ │ │ ├── sign-images-sha256.its │ │ │ ├── sign-images-sha384.its │ │ │ └── simple-images.its │ │ ├── vboot_evil.py │ │ └── vboot_forge.py │ └── utils.py ├── run ├── stdint │ ├── int-types.c │ └── test-includes.sh ├── test-main.c └── ut.c └── tools ├── .gitignore ├── Kconfig ├── Makefile ├── aisimage.c ├── aisimage.h ├── asn1_compiler.c ├── atmel_pmecc_params.c ├── atmelimage.c ├── binman ├── .gitignore ├── README.rst ├── __init__.py ├── binman ├── binman.rst ├── bintool.py ├── bintool_test.py ├── bintools.rst ├── btool │ ├── _testing.py │ ├── bootgen.py │ ├── btool_gzip.py │ ├── bzip2.py │ ├── cbfstool.py │ ├── cst.py │ ├── fdt_add_pubkey.py │ ├── fdtgrep.py │ ├── fiptool.py │ ├── futility.py │ ├── ifwitool.py │ ├── lz4.py │ ├── lzma_alone.py │ ├── lzop.py │ ├── mkeficapsule.py │ ├── mkimage.py │ ├── openssl.py │ ├── xz.py │ └── zstd.py ├── cbfs_util.py ├── cbfs_util_test.py ├── cmdline.py ├── control.py ├── elf.py ├── elf_test.py ├── entries.rst ├── entry.py ├── entry_test.py ├── etype │ ├── _testing.py │ ├── alternates_fdt.py │ ├── atf_bl1.py │ ├── atf_bl31.py │ ├── atf_fip.py │ ├── blob.py │ ├── blob_dtb.py │ ├── blob_ext.py │ ├── blob_ext_list.py │ ├── blob_named_by_arg.py │ ├── blob_phase.py │ ├── cbfs.py │ ├── collection.py │ ├── cros_ec_rw.py │ ├── efi_capsule.py │ ├── efi_empty_capsule.py │ ├── encrypted.py │ ├── fdtmap.py │ ├── files.py │ ├── fill.py │ ├── fit.py │ ├── fmap.py │ ├── gbb.py │ ├── image_header.py │ ├── intel_cmc.py │ ├── intel_descriptor.py │ ├── intel_fit.py │ ├── intel_fit_ptr.py │ ├── intel_fsp.py │ ├── intel_fsp_m.py │ ├── intel_fsp_s.py │ ├── intel_fsp_t.py │ ├── intel_ifwi.py │ ├── intel_me.py │ ├── intel_mrc.py │ ├── intel_refcode.py │ ├── intel_vbt.py │ ├── intel_vga.py │ ├── mkimage.py │ ├── null.py │ ├── nxp_header_ddrfw.py │ ├── nxp_imx8mcst.py │ ├── nxp_imx8mimage.py │ ├── opensbi.py │ ├── powerpc_mpc85xx_bootpg_resetvec.py │ ├── pre_load.py │ ├── renesas_rcar4_sa0.py │ ├── rockchip_tpl.py │ ├── scp.py │ ├── section.py │ ├── tee_os.py │ ├── text.py │ ├── ti_board_config.py │ ├── ti_dm.py │ ├── ti_secure.py │ ├── ti_secure_rom.py │ ├── u_boot.py │ ├── u_boot_dtb.py │ ├── u_boot_dtb_with_ucode.py │ ├── u_boot_elf.py │ ├── u_boot_env.py │ ├── u_boot_expanded.py │ ├── u_boot_img.py │ ├── u_boot_nodtb.py │ ├── u_boot_spl.py │ ├── u_boot_spl_bss_pad.py │ ├── u_boot_spl_dtb.py │ ├── u_boot_spl_elf.py │ ├── u_boot_spl_expanded.py │ ├── u_boot_spl_nodtb.py │ ├── u_boot_spl_pubkey_dtb.py │ ├── u_boot_spl_with_ucode_ptr.py │ ├── u_boot_tpl.py │ ├── u_boot_tpl_bss_pad.py │ ├── u_boot_tpl_dtb.py │ ├── u_boot_tpl_dtb_with_ucode.py │ ├── u_boot_tpl_elf.py │ ├── u_boot_tpl_expanded.py │ ├── u_boot_tpl_nodtb.py │ ├── u_boot_tpl_with_ucode_ptr.py │ ├── u_boot_ucode.py │ ├── u_boot_vpl.py │ ├── u_boot_vpl_bss_pad.py │ ├── u_boot_vpl_dtb.py │ ├── u_boot_vpl_elf.py │ ├── u_boot_vpl_expanded.py │ ├── u_boot_vpl_nodtb.py │ ├── u_boot_with_ucode_ptr.py │ ├── vblock.py │ ├── x509_cert.py │ ├── x86_reset16.py │ ├── x86_reset16_spl.py │ ├── x86_reset16_tpl.py │ ├── x86_start16.py │ ├── x86_start16_spl.py │ ├── x86_start16_tpl.py │ └── xilinx_bootgen.py ├── fdt_test.py ├── fip_util.py ├── fip_util_test.py ├── fmap_util.py ├── ftest.py ├── image.py ├── image_test.py ├── index.rst ├── main.py ├── missing-blob-help ├── pyproject.toml ├── requirements.txt ├── setup.py ├── state.py └── test │ ├── 001_invalid.dts │ ├── 002_missing_node.dts │ ├── 003_empty.dts │ ├── 004_invalid_entry.dts │ ├── 005_simple.dts │ ├── 006_dual_image.dts │ ├── 007_bad_align.dts │ ├── 008_pack.dts │ ├── 009_pack_extra.dts │ ├── 010_pack_align_power2.dts │ ├── 011_pack_align_size_power2.dts │ ├── 012_pack_inv_align.dts │ ├── 013_pack_inv_size_align.dts │ ├── 014_pack_overlap.dts │ ├── 015_pack_overflow.dts │ ├── 016_pack_image_overflow.dts │ ├── 017_pack_image_size.dts │ ├── 018_pack_image_align.dts │ ├── 019_pack_inv_image_align.dts │ ├── 020_pack_inv_image_align_power2.dts │ ├── 021_image_pad.dts │ ├── 022_image_name.dts │ ├── 023_blob.dts │ ├── 024_sorted.dts │ ├── 025_pack_zero_size.dts │ ├── 026_pack_u_boot_dtb.dts │ ├── 027_pack_4gb_no_size.dts │ ├── 028_pack_4gb_outside.dts │ ├── 029_x86_rom.dts │ ├── 030_x86_rom_me_no_desc.dts │ ├── 031_x86_rom_me.dts │ ├── 032_intel_vga.dts │ ├── 033_x86_start16.dts │ ├── 034_x86_ucode.dts │ ├── 035_x86_single_ucode.dts │ ├── 036_u_boot_img.dts │ ├── 037_x86_no_ucode.dts │ ├── 038_x86_ucode_missing_node.dts │ ├── 039_x86_ucode_missing_node2.dts │ ├── 040_x86_ucode_not_in_image.dts │ ├── 041_unknown_pos_size.dts │ ├── 042_intel_fsp.dts │ ├── 043_intel_cmc.dts │ ├── 044_x86_optional_ucode.dts │ ├── 045_prop_test.dts │ ├── 046_intel_vbt.dts │ ├── 047_spl_bss_pad.dts │ ├── 048_x86_start16_spl.dts │ ├── 049_x86_ucode_spl.dts │ ├── 050_intel_mrc.dts │ ├── 051_u_boot_spl_dtb.dts │ ├── 052_u_boot_spl_nodtb.dts │ ├── 053_symbols.dts │ ├── 054_unit_address.dts │ ├── 055_sections.dts │ ├── 056_name_prefix.dts │ ├── 057_unknown_contents.dts │ ├── 058_x86_ucode_spl_needs_retry.dts │ ├── 059_change_size.dts │ ├── 060_fdt_update.dts │ ├── 061_fdt_update_bad.dts │ ├── 062_entry_args.dts │ ├── 063_entry_args_missing.dts │ ├── 064_entry_args_required.dts │ ├── 065_entry_args_unknown_datatype.dts │ ├── 066_text.dts │ ├── 067_fmap.dts │ ├── 068_blob_named_by_arg.dts │ ├── 069_fill.dts │ ├── 070_fill_no_size.dts │ ├── 071_gbb.dts │ ├── 072_gbb_too_small.dts │ ├── 073_gbb_no_size.dts │ ├── 074_vblock.dts │ ├── 075_vblock_no_content.dts │ ├── 076_vblock_bad_phandle.dts │ ├── 077_vblock_bad_entry.dts │ ├── 078_u_boot_tpl.dts │ ├── 079_uses_pos.dts │ ├── 080_fill_empty.dts │ ├── 081_x86_start16_tpl.dts │ ├── 082_fdt_update_all.dts │ ├── 083_compress.dts │ ├── 084_files.dts │ ├── 085_files_compress.dts │ ├── 086_files_none.dts │ ├── 087_files_no_pattern.dts │ ├── 088_extend_size.dts │ ├── 089_extend_size_bad.dts │ ├── 090_hash.dts │ ├── 091_hash_no_algo.dts │ ├── 092_hash_bad_algo.dts │ ├── 093_x86_tpl_ucode.dts │ ├── 094_fmap_x86.dts │ ├── 095_fmap_x86_section.dts │ ├── 096_elf.dts │ ├── 097_elf_strip.dts │ ├── 098_4gb_and_skip_at_start_together.dts │ ├── 099_hash_section.dts │ ├── 100_intel_refcode.dts │ ├── 101_sections_offset.dts │ ├── 102_cbfs_raw.dts │ ├── 103_cbfs_raw_ppc.dts │ ├── 104_cbfs_stage.dts │ ├── 105_cbfs_raw_compress.dts │ ├── 106_cbfs_bad_arch.dts │ ├── 107_cbfs_no_size.dts │ ├── 108_cbfs_no_contents.dts │ ├── 109_cbfs_bad_compress.dts │ ├── 110_cbfs_name.dts │ ├── 111_x86_rom_ifwi.dts │ ├── 112_x86_rom_ifwi_nodesc.dts │ ├── 113_x86_rom_ifwi_nodata.dts │ ├── 114_cbfs_offset.dts │ ├── 115_fdtmap.dts │ ├── 116_fdtmap_hdr.dts │ ├── 117_fdtmap_hdr_start.dts │ ├── 118_fdtmap_hdr_pos.dts │ ├── 119_fdtmap_hdr_missing.dts │ ├── 120_hdr_no_location.dts │ ├── 121_entry_extend.dts │ ├── 122_entry_extend_twice.dts │ ├── 123_entry_extend_section.dts │ ├── 124_compress_dtb.dts │ ├── 125_cbfs_update.dts │ ├── 126_cbfs_bad_type.dts │ ├── 127_list.dts │ ├── 128_decode_image.dts │ ├── 129_decode_image_nohdr.dts │ ├── 130_list_fdtmap.dts │ ├── 131_pack_align_section.dts │ ├── 132_replace.dts │ ├── 133_replace_multi.dts │ ├── 134_fdt_update_all_repack.dts │ ├── 135_fdtmap_hdr_middle.dts │ ├── 136_fdtmap_hdr_startbad.dts │ ├── 137_fdtmap_hdr_endbad.dts │ ├── 138_fdtmap_hdr_nosize.dts │ ├── 139_replace_repack.dts │ ├── 140_entry_shrink.dts │ ├── 141_descriptor_offset.dts │ ├── 142_replace_cbfs.dts │ ├── 143_replace_all.dts │ ├── 144_x86_reset16.dts │ ├── 145_x86_reset16_spl.dts │ ├── 146_x86_reset16_tpl.dts │ ├── 147_intel_fit.dts │ ├── 148_intel_fit_missing.dts │ ├── 149_symbols_tpl.dts │ ├── 150_powerpc_mpc85xx_bootpg_resetvec.dts │ ├── 151_x86_rom_ifwi_section.dts │ ├── 152_intel_fsp_m.dts │ ├── 153_intel_fsp_s.dts │ ├── 154_intel_fsp_t.dts │ ├── 155_symbols_tpl_x86.dts │ ├── 156_mkimage.dts │ ├── 157_blob_ext.dts │ ├── 158_blob_ext_missing.dts │ ├── 159_blob_ext_missing_sect.dts │ ├── 160_pack_overlap_zero.dts │ ├── 161_fit.dts │ ├── 162_fit_external.dts │ ├── 163_x86_rom_me_empty.dts │ ├── 164_x86_rom_me_missing.dts │ ├── 165_section_ignore_hash_signature.dts │ ├── 166_pad_in_sections.dts │ ├── 167_fit_image_subentry_alignment.dts │ ├── 168_fit_missing_blob.dts │ ├── 169_atf_bl31.dts │ ├── 170_fit_fdt.dts │ ├── 171_fit_fdt_missing_prop.dts │ ├── 172_scp.dts │ ├── 173_missing_blob.dts │ ├── 174_env.dts │ ├── 175_env_no_size.dts │ ├── 176_env_too_small.dts │ ├── 177_skip_at_start.dts │ ├── 178_skip_at_start_pad.dts │ ├── 179_skip_at_start_section_pad.dts │ ├── 180_section_pad.dts │ ├── 181_section_align.dts │ ├── 182_compress_image.dts │ ├── 183_compress_image_less.dts │ ├── 184_compress_section_size.dts │ ├── 185_compress_section.dts │ ├── 186_compress_extra.dts │ ├── 187_symbols_sub.dts │ ├── 188_image_entryarg.dts │ ├── 189_vblock_content.dts │ ├── 190_files_align.dts │ ├── 191_read_image_skip.dts │ ├── 192_u_boot_tpl_nodtb.dts │ ├── 193_tpl_bss_pad.dts │ ├── 194_fdt_incl.dts │ ├── 195_fdt_incl_tpl.dts │ ├── 196_symbols_nodtb.dts │ ├── 197_symbols_expand.dts │ ├── 198_collection.dts │ ├── 199_collection_section.dts │ ├── 200_align_default.dts │ ├── 201_opensbi.dts │ ├── 202_section_timeout.dts │ ├── 203_fip.dts │ ├── 204_fip_other.dts │ ├── 205_fip_no_type.dts │ ├── 206_fip_uuid.dts │ ├── 207_fip_ls.dts │ ├── 208_fip_replace.dts │ ├── 209_fip_missing.dts │ ├── 210_fip_size.dts │ ├── 211_fip_bad_align.dts │ ├── 212_fip_collection.dts │ ├── 213_fdtmap_alt_format.dts │ ├── 214_no_alt_format.dts │ ├── 215_blob_ext_list.dts │ ├── 216_blob_ext_list_missing.dts │ ├── 217_fake_blob.dts │ ├── 218_blob_ext_list_fake.dts │ ├── 219_fit_gennode.dts │ ├── 220_fit_subentry_bintool.dts │ ├── 221_fit_subentry_hash.dts │ ├── 222_tee_os.dts │ ├── 223_fit_fdt_oper.dts │ ├── 224_fit_bad_oper.dts │ ├── 225_expand_size_bad.dts │ ├── 225_ti_dm.dts │ ├── 226_fit_split_elf.dts │ ├── 227_fit_bad_dir.dts │ ├── 228_fit_bad_dir_config.dts │ ├── 229_mkimage_missing.dts │ ├── 230_pre_load.dts │ ├── 231_pre_load_pkcs.dts │ ├── 232_pre_load_pss.dts │ ├── 233_pre_load_invalid_padding.dts │ ├── 234_pre_load_invalid_sha.dts │ ├── 235_pre_load_invalid_algo.dts │ ├── 236_pre_load_invalid_key.dts │ ├── 237_unique_names.dts │ ├── 238_unique_names_multi.dts │ ├── 239_replace_with_bintool.dts │ ├── 240_fit_extract_replace.dts │ ├── 241_replace_section_simple.dts │ ├── 242_mkimage_name.dts │ ├── 243_mkimage_image.dts │ ├── 244_mkimage_image_no_content.dts │ ├── 245_mkimage_image_bad.dts │ ├── 246_collection_other.dts │ ├── 247_mkimage_coll.dts │ ├── 248_compress_dtb_prepend_invalid.dts │ ├── 249_compress_dtb_prepend_length.dts │ ├── 250_compress_dtb_invalid.dts │ ├── 251_compress_dtb_zstd.dts │ ├── 252_mkimage_mult_data.dts │ ├── 253_mkimage_mult_no_content.dts │ ├── 254_mkimage_filename.dts │ ├── 255_u_boot_vpl.dts │ ├── 256_u_boot_vpl_nodtb.dts │ ├── 257_fdt_incl_vpl.dts │ ├── 258_vpl_bss_pad.dts │ ├── 259_symlink.dts │ ├── 260_symbols_elf.dts │ ├── 261_section_fname.dts │ ├── 262_absent.dts │ ├── 263_tee_os_opt.dts │ ├── 264_tee_os_opt_fit.dts │ ├── 265_tee_os_opt_fit_bad.dts │ ├── 266_blob_ext_opt.dts │ ├── 267_section_inner.dts │ ├── 268_null.dts │ ├── 269_overlap.dts │ ├── 270_overlap_null.dts │ ├── 271_overlap_bad.dts │ ├── 272_overlap_no_size.dts │ ├── 273_blob_symbol.dts │ ├── 274_offset_from_elf.dts │ ├── 275_fit_align.dts │ ├── 276_fit_firmware_loadables.dts │ ├── 277_replace_fit_sibling.dts │ ├── 278_replace_section_deep.dts │ ├── 279_x509_cert.dts │ ├── 280_fit_sign.dts │ ├── 281_sign_non_fit.dts │ ├── 282_symbols_disable.dts │ ├── 283_mkimage_special.dts │ ├── 284_fit_fdt_list.dts │ ├── 285_spl_expand.dts │ ├── 286_template.dts │ ├── 287_template_multi.dts │ ├── 288_template_fit.dts │ ├── 289_template_section.dts │ ├── 290_mkimage_sym.dts │ ├── 291_rockchip_tpl.dts │ ├── 292_mkimage_missing_multiple.dts │ ├── 293_ti_board_cfg.dts │ ├── 294_ti_board_cfg_combined.dts │ ├── 295_ti_board_cfg_no_type.dts │ ├── 296_ti_secure.dts │ ├── 297_ti_secure_rom.dts │ ├── 298_ti_secure_rom_combined.dts │ ├── 299_ti_secure_rom_a.dts │ ├── 300_ti_secure_rom_b.dts │ ├── 301_encrypted_no_algo.dts │ ├── 302_encrypted_invalid_iv_file.dts │ ├── 303_encrypted_missing_key.dts │ ├── 304_encrypted_key_source.dts │ ├── 305_encrypted_key_file.dts │ ├── 306_spl_pubkey_dtb.dts │ ├── 307_xilinx_bootgen_sign.dts │ ├── 308_xilinx_bootgen_sign_enc.dts │ ├── 309_template_phandle.dts │ ├── 310_template_phandle_dup.dts │ ├── 311_capsule.dts │ ├── 312_capsule_signed.dts │ ├── 313_capsule_version.dts │ ├── 314_capsule_signed_ver.dts │ ├── 315_capsule_oemflags.dts │ ├── 316_capsule_missing_key.dts │ ├── 317_capsule_missing_index.dts │ ├── 318_capsule_missing_guid.dts │ ├── 319_capsule_accept.dts │ ├── 320_capsule_revert.dts │ ├── 321_capsule_accept_missing_guid.dts │ ├── 322_empty_capsule_type_missing.dts │ ├── 323_capsule_accept_revert_missing.dts │ ├── 323_ti_board_cfg_phony.dts │ ├── 324_ti_secure_firewall.dts │ ├── 325_ti_secure_firewall_missing_property.dts │ ├── 326_assume_size.dts │ ├── 327_assume_size_ok.dts │ ├── 328_alternates_fdt.dts │ ├── 329_alternates_fdtgrep.dts │ ├── 330_alternates_vpl.dts │ ├── 331_alternates_spl.dts │ ├── 332_alternates_inval.dts │ ├── 333_fit_fdt_dir.dts │ ├── 334_fit_fdt_compat.dts │ ├── 335_fit_fdt_phase.dts │ ├── 336_symbols_base.dts │ ├── 337_symbols_base_expand.dts │ ├── 338_symbols_comp.dts │ ├── 339_nxp_imx8.dts │ ├── 340_fit_signature.dts │ ├── 340_rsa2048.key │ ├── 341_fit_signature.dts │ ├── 342_fit_signature.dts │ ├── 343_fit_encrypt_data.dts │ ├── 344_fit_encrypt_data_no_key.dts │ ├── 345_fit_fdt_name.dts │ ├── 346_nxp_ddrfw_imx95.dts │ ├── 346_remove_template.dts │ ├── 347_bl1.dts │ ├── 347_bootph_prop.dts │ ├── 347_key_name_hint_dir_fit_signature.dts │ ├── 348_key_name_hint_dir_spl_pubkey_dtb.dts │ ├── 348_renesas_rcar4_sa0.dts │ ├── 349_renesas_rcar4_sa0_size.dts │ ├── Makefile │ ├── aes256.bin │ ├── alt_dts │ ├── model1.dts │ └── model2.dts │ ├── blob_syms.c │ ├── blob_syms.lds │ ├── bss_data.c │ ├── bss_data.lds │ ├── bss_data_zero.c │ ├── bss_data_zero.lds │ ├── descriptor.bin │ ├── dev.key │ ├── elf_sections.c │ ├── elf_sections.lds │ ├── embed_data.c │ ├── embed_data.lds │ ├── files │ ├── 1.dat │ ├── 2.dat │ ├── ignored_dir.dat │ │ └── ignore │ └── not-this-one │ ├── fitimage.bin.gz │ ├── generated │ └── autoconf.h │ ├── ifwi.bin.gz │ ├── key.key │ ├── key.pem │ ├── u_boot_binman_embed.c │ ├── u_boot_binman_embed.lds │ ├── u_boot_binman_embed_sm.c │ ├── u_boot_binman_syms.c │ ├── u_boot_binman_syms.lds │ ├── u_boot_binman_syms_bad.c │ ├── u_boot_binman_syms_bad.lds │ ├── u_boot_binman_syms_size.c │ ├── u_boot_binman_syms_x86.c │ ├── u_boot_binman_syms_x86.lds │ ├── u_boot_no_ucode_ptr.c │ ├── u_boot_ucode_ptr.c │ ├── u_boot_ucode_ptr.lds │ └── yaml │ ├── config.yaml │ ├── config_phony.yaml │ ├── schema.yaml │ └── schema_notype.yaml ├── bmp_logo.c ├── buildman ├── .gitignore ├── README.rst ├── __init__.py ├── board.py ├── boards.py ├── bsettings.py ├── builder.py ├── builderthread.py ├── buildman ├── buildman.rst ├── cfgutil.py ├── cmdline.py ├── control.py ├── func_test.py ├── kconfiglib.py ├── main.py ├── pyproject.toml ├── requirements.txt ├── test.py ├── test │ ├── Kconfig │ ├── boards │ │ ├── board0 │ │ │ └── MAINTAINERS │ │ └── board2 │ │ │ └── MAINTAINERS │ └── configs │ │ ├── board0_defconfig │ │ └── board2_defconfig └── toolchain.py ├── default_image.c ├── docker └── Dockerfile ├── dtoc ├── .gitignore ├── README.rst ├── __init__.py ├── dtb_platdata.py ├── dtoc ├── fdt.py ├── fdt_util.py ├── main.py ├── pyproject.toml ├── setup.py ├── src_scan.py ├── test │ ├── dtoc_test.dts │ ├── dtoc_test_add_prop.dts │ ├── dtoc_test_addr32.dts │ ├── dtoc_test_addr32_64.dts │ ├── dtoc_test_addr64.dts │ ├── dtoc_test_addr64_32.dts │ ├── dtoc_test_alias_bad.dts │ ├── dtoc_test_alias_bad_path.dts │ ├── dtoc_test_alias_bad_uc.dts │ ├── dtoc_test_aliases.dts │ ├── dtoc_test_bad_reg.dts │ ├── dtoc_test_bad_reg2.dts │ ├── dtoc_test_copy.dts │ ├── dtoc_test_driver_alias.dts │ ├── dtoc_test_empty.dts │ ├── dtoc_test_inst.dts │ ├── dtoc_test_invalid_driver.dts │ ├── dtoc_test_noparent.dts │ ├── dtoc_test_noprops.dts │ ├── dtoc_test_phandle.dts │ ├── dtoc_test_phandle_bad.dts │ ├── dtoc_test_phandle_bad2.dts │ ├── dtoc_test_phandle_cd_gpios.dts │ ├── dtoc_test_phandle_reorder.dts │ ├── dtoc_test_phandle_single.dts │ ├── dtoc_test_scan_drivers.cxx │ ├── dtoc_test_simple.dts │ └── dtoc_test_single_reg.dts ├── test_dtoc.py ├── test_fdt ├── test_fdt.py └── test_src_scan.py ├── dumpimage.c ├── dumpimage.h ├── eficapsule.h ├── efivar.py ├── endian-swap.py ├── env ├── .gitignore ├── Makefile ├── README ├── crc32.c ├── ctype.c ├── env_attr.c ├── env_flags.c ├── fw_env.c ├── fw_env.config ├── fw_env.h ├── fw_env_main.c ├── fw_env_private.h └── linux_string.c ├── envcrc.c ├── expo.py ├── fdt_add_pubkey.c ├── fdt_host.h ├── fdtgrep.c ├── file2include.c ├── fit_check_sign.c ├── fit_common.c ├── fit_common.h ├── fit_image.c ├── fit_info.c ├── gdb ├── Makefile ├── error.c ├── error.h ├── gdbcont.c ├── gdbsend.c ├── remote.c ├── remote.h ├── serial.c └── serial.h ├── gen_eth_addr.c ├── gen_ethaddr_crc.c ├── getline.c ├── getline.h ├── gpheader.h ├── gpimage-common.c ├── gpimage.c ├── ifdtool.c ├── ifdtool.h ├── ifwitool.c ├── image-host.c ├── image-sig-host.c ├── imagetool.c ├── imagetool.h ├── img2srec.c ├── imx8image.c ├── imx8m_image.sh ├── imx8mimage.c ├── imx9_image.sh ├── imx_cntr_image.sh ├── imximage.c ├── iot2050-sign-fw.sh ├── jtagconsole ├── kermit ├── README ├── dot.kermrc ├── flash_param ├── send_cmd └── send_image ├── kernel_encrypt_add_node.sh ├── key2dtsi.py ├── kwbimage.c ├── kwbimage.h ├── kwboot.c ├── libfdt ├── fdt.c ├── 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 ├── logos ├── atmel.bmp ├── compulab.bmp ├── denx-16bpp.bmp.gz ├── denx-24bpp.bmp.gz ├── denx-comp.bmp ├── denx.bmp ├── engicam.bmp ├── esd.bmp ├── freescale.bmp ├── gateworks.bmp ├── intercontrol.bmp ├── linux_logo_ttcontrol.bmp ├── linux_logo_ttcontrol_palfin.bmp ├── microchip.bmp ├── ronetix.bmp ├── siemens.bmp ├── solidrun.bmp ├── st.bmp ├── stm32f469-discovery.bmp ├── stm32f746-disco.bmp ├── syteco.bmp ├── technexion.bmp ├── ti_logo_414x97_32bpp.bmp ├── ti_logo_414x97_32bpp.bmp.gz ├── toradex.bmp ├── u-boot_logo.bmp ├── u-boot_logo.svg └── wandboard.bmp ├── lpc32xximage.c ├── microcode-tool ├── microcode-tool.py ├── mips-relocs.c ├── mkeficapsule.c ├── mkenvimage.c ├── mkexynosspl.c ├── mkfwumdata.c ├── mkimage.c ├── mkimage.h ├── mksunxiboot.c ├── mtk_image.c ├── mtk_image.h ├── mtk_nand_headers.c ├── mtk_nand_headers.h ├── mxsboot.c ├── mxsimage.c ├── mxsimage.h ├── ncb.c ├── netconsole ├── omap └── clocks_get_m_n.c ├── omapimage.c ├── omapimage.h ├── os_support.c ├── os_support.h ├── patman ├── .checkpatch.conf ├── .gitignore ├── README.rst ├── __init__.py ├── __main__.py ├── checkpatch.py ├── cmdline.py ├── commit.py ├── control.py ├── cser_helper.py ├── cseries.py ├── database.py ├── func_test.py ├── get_maintainer.py ├── patchstream.py ├── patchwork.py ├── patman ├── patman.rst ├── project.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── send.py ├── series.py ├── settings.py ├── setup.py ├── status.py ├── test │ ├── 0000-cover-letter.patch │ ├── 0001-pci-Correct-cast-for-sandbox.patch │ ├── 0002-fdt-Correct-cast-for-sandbox-in-fdtdec_setup_mem_siz.patch │ └── test01.txt ├── test_checkpatch.py ├── test_common.py ├── test_cseries.py └── test_settings.py ├── pbl_crc32.c ├── pbl_crc32.h ├── pblimage.c ├── pblimage.h ├── prelink-riscv.c ├── prelink-riscv.inc ├── preload_check_sign.c ├── printinitialenv.c ├── proftool.c ├── qconfig.py ├── relocate-rela.c ├── renesas_spkgimage.c ├── renesas_spkgimage.h ├── rkcommon.c ├── rkcommon.h ├── rkimage.c ├── rkmux.py ├── rksd.c ├── rkspi.c ├── rmboard.py ├── scripts └── define2mk.sed ├── sfspl.c ├── socfpgaimage.c ├── spl_size_limit.c ├── stm32image.c ├── sunxi-spl-image-builder.c ├── sunxi_egon.c ├── sunxi_toc0.c ├── termios_linux.h ├── u_boot_pylib ├── LICENSE ├── README.rst ├── __init__.py ├── __main__.py ├── command.py ├── cros_subprocess.py ├── gitutil.py ├── pyproject.toml ├── requirements.txt ├── terminal.py ├── test_util.py ├── tools.py ├── tout.py └── u_boot_pylib ├── ublimage.c ├── ublimage.h ├── update-subtree.sh ├── update_octeon_header.c ├── vybridimage.c ├── zynqimage.c ├── zynqmp_pm_cfg_obj_convert.py ├── zynqmp_psu_init_minimize.sh ├── zynqmpbif.c ├── zynqmpimage.c └── zynqmpimage.h /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.get_maintainer.ignore: -------------------------------------------------------------------------------- 1 | "Pali Rohár" 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Kconfig -------------------------------------------------------------------------------- /Licenses/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Licenses/OFL.txt -------------------------------------------------------------------------------- /Licenses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Licenses/README -------------------------------------------------------------------------------- /Licenses/isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Licenses/isc.txt -------------------------------------------------------------------------------- /Licenses/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Licenses/mit.txt -------------------------------------------------------------------------------- /Licenses/x11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Licenses/x11.txt -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/README -------------------------------------------------------------------------------- /api/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/Kconfig -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/README -------------------------------------------------------------------------------- /api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/api.c -------------------------------------------------------------------------------- /api/api_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/api_display.c -------------------------------------------------------------------------------- /api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/api_net.c -------------------------------------------------------------------------------- /api/api_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/api_private.h -------------------------------------------------------------------------------- /api/api_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/api/api_storage.c -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/Kconfig -------------------------------------------------------------------------------- /arch/Kconfig.nxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/Kconfig.nxp -------------------------------------------------------------------------------- /arch/arc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/arc/Kconfig -------------------------------------------------------------------------------- /arch/arc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/arc/Makefile -------------------------------------------------------------------------------- /arch/arc/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/arc/include/asm/string.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/arm/Kconfig -------------------------------------------------------------------------------- /arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/arm/Makefile -------------------------------------------------------------------------------- /arch/arm/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj- += dummy.o 4 | -------------------------------------------------------------------------------- /arch/arm/dts/bcm283x-rpi-usb-host.dtsi: -------------------------------------------------------------------------------- 1 | &usb { 2 | dr_mode = "host"; 3 | }; 4 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6ull-colibri-emmc-eval-v3-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | imx6ull-colibri-eval-v3-u-boot.dtsi -------------------------------------------------------------------------------- /arch/arm/dts/imx7d-colibri-emmc-eval-v3-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | imx7d-colibri-eval-v3-u-boot.dtsi -------------------------------------------------------------------------------- /arch/arm/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/arm/dts/k3-am6548-iot2050-advanced-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | k3-am6528-iot2050-basic-u-boot.dtsi -------------------------------------------------------------------------------- /arch/arm/dts/sun8i-a23-ippo-q8h-v1.2.dts: -------------------------------------------------------------------------------- 1 | sun8i-a23-q8-tablet.dts -------------------------------------------------------------------------------- /arch/arm/dts/sun8i-a23-ippo-q8h-v5.dts: -------------------------------------------------------------------------------- 1 | sun8i-a23-q8-tablet.dts -------------------------------------------------------------------------------- /arch/arm/dts/sun8i-a33-et-q8-v1.6.dts: -------------------------------------------------------------------------------- 1 | sun8i-a33-q8-tablet.dts -------------------------------------------------------------------------------- /arch/arm/dts/sun8i-a33-ippo-q8h-v1.2.dts: -------------------------------------------------------------------------------- 1 | sun8i-a33-q8-tablet.dts -------------------------------------------------------------------------------- /arch/arm/dts/t8103-j274-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "t8103-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/t8103-j293-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "t8103-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/t8103-j313-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "t8103-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/t8103-j456-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "t8103-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/t8103-j457-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "t8103-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/zynq-brcp1_1r_switch-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | zynq-brcp1_1r-u-boot.dtsi -------------------------------------------------------------------------------- /arch/arm/dts/zynq-brcp1_2r-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | zynq-brcp1_1r-u-boot.dtsi -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-ls102xa/soc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/arm/mach-hpe/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_SOC_GXP) += gxp/ 2 | -------------------------------------------------------------------------------- /arch/arm/mach-hpe/gxp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += reset.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-mmp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o mmu.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /arch/arm/mach-npcm/npcm8xx/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += cpu.o reset.o 2 | -------------------------------------------------------------------------------- /arch/m68k/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/m68k/Kconfig -------------------------------------------------------------------------------- /arch/m68k/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/m68k/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/m68k/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/microblaze/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/microblaze/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/mips/Kconfig -------------------------------------------------------------------------------- /arch/mips/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/mips/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/mips/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nios2/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/nios2/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start 3 | -------------------------------------------------------------------------------- /arch/powerpc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/powerpc/dts/fsl/p2020si-post.dtsi: -------------------------------------------------------------------------------- 1 | ../p2020-post.dtsi -------------------------------------------------------------------------------- /arch/powerpc/dts/fsl/p2020si-pre.dtsi: -------------------------------------------------------------------------------- 1 | ../p2020.dtsi -------------------------------------------------------------------------------- /arch/powerpc/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/riscv/cpu/ast2700/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += cpu.o 2 | -------------------------------------------------------------------------------- /arch/riscv/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/sandbox/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/sandbox/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/sh/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/sh/Kconfig -------------------------------------------------------------------------------- /arch/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/sh/Makefile -------------------------------------------------------------------------------- /arch/sh/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/sh/config.mk -------------------------------------------------------------------------------- /arch/sh/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/sh/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/sh/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/x86/Kconfig -------------------------------------------------------------------------------- /arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/arch/x86/Makefile -------------------------------------------------------------------------------- /arch/x86/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/xtensa/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/xtensa/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/Marvell/db-xc3-24g4xg/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/amd/common: -------------------------------------------------------------------------------- 1 | ../xilinx/common/ -------------------------------------------------------------------------------- /board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /board/dfi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/board/dfi/Kconfig -------------------------------------------------------------------------------- /board/efi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/board/efi/Kconfig -------------------------------------------------------------------------------- /board/geekbuying/geekbox/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /board/hpe/gxp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += gxp_board.o 2 | -------------------------------------------------------------------------------- /board/intel/edison/edison-osip.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/l+g/vinco/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += vinco.o 2 | -------------------------------------------------------------------------------- /board/mikrotik/crs3xx-98dx3236/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/novtech/meerkat96/Makefile: -------------------------------------------------------------------------------- 1 | obj-y := meerkat96.o 2 | -------------------------------------------------------------------------------- /board/nuvoton/arbel_evb/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += arbel_evb.o 2 | -------------------------------------------------------------------------------- /board/nuvoton/common/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_SYS_SKIP_UART_INIT) += uart.o 2 | -------------------------------------------------------------------------------- /board/nuvoton/poleg_evb/Makefile: -------------------------------------------------------------------------------- 1 | obj-y := poleg_evb.o 2 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /board/samsung/common/Kconfig: -------------------------------------------------------------------------------- 1 | config MISC_COMMON 2 | bool 3 | -------------------------------------------------------------------------------- /board/skyworth/hc2910-2aghd05/Makefile: -------------------------------------------------------------------------------- 1 | obj-y := hc2910-2aghd05.o 2 | -------------------------------------------------------------------------------- /board/st/stm32mp1/README: -------------------------------------------------------------------------------- 1 | see doc/board/st/stm32mp1.rst 2 | -------------------------------------------------------------------------------- /board/topic/zynq/board.c: -------------------------------------------------------------------------------- 1 | #include "../../xilinx/zynq/board.c" 2 | -------------------------------------------------------------------------------- /board/udoo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/board/udoo/README -------------------------------------------------------------------------------- /board/udoo/udoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/board/udoo/udoo.c -------------------------------------------------------------------------------- /board/xilinx/zynq/.gitignore: -------------------------------------------------------------------------------- 1 | /ps7_init_gpl.[ch] 2 | -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-nand: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm011 -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-nor: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm012 -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-qspi-single: -------------------------------------------------------------------------------- 1 | zynq-zc706 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/avnet-ultra96-rev1: -------------------------------------------------------------------------------- 1 | zynqmp-zcu100-revC -------------------------------------------------------------------------------- /board/xilinx/zynqmp/sleep.h: -------------------------------------------------------------------------------- 1 | /* Intentionally empty file for psu_init* */ 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-e-a2197-00-revB: -------------------------------------------------------------------------------- 1 | zynqmp-e-a2197-00-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-g-a2197-00-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-m-a2197-01-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-m-a2197-02-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-m-a2197-03-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-emmc0: -------------------------------------------------------------------------------- 1 | zynqmp-zcu100-revC -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-emmc1: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-qspi: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-p-a2197-00-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-smk-k24-revA: -------------------------------------------------------------------------------- 1 | zynqmp-sm-k24-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-smk-k26-revA: -------------------------------------------------------------------------------- 1 | zynqmp-sm-k26-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-zcu104-revC: -------------------------------------------------------------------------------- 1 | zynqmp-zcu104-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-zcu1275-revA: -------------------------------------------------------------------------------- 1 | zynqmp-zc1254-revA -------------------------------------------------------------------------------- /boot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/Kconfig -------------------------------------------------------------------------------- /boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/Makefile -------------------------------------------------------------------------------- /boot/android_ab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/android_ab.c -------------------------------------------------------------------------------- /boot/boot_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/boot_fit.c -------------------------------------------------------------------------------- /boot/bootflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/bootflow.c -------------------------------------------------------------------------------- /boot/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/bootm.c -------------------------------------------------------------------------------- /boot/bootm_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/bootm_os.c -------------------------------------------------------------------------------- /boot/bootretry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/bootretry.c -------------------------------------------------------------------------------- /boot/cedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/cedit.c -------------------------------------------------------------------------------- /boot/common_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/common_fit.c -------------------------------------------------------------------------------- /boot/expo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/expo.c -------------------------------------------------------------------------------- /boot/expo_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/expo_build.c -------------------------------------------------------------------------------- /boot/fdt_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/fdt_region.c -------------------------------------------------------------------------------- /boot/image-fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/image-fdt.c -------------------------------------------------------------------------------- /boot/image-fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/image-fit.c -------------------------------------------------------------------------------- /boot/image-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/image-host.c -------------------------------------------------------------------------------- /boot/image-sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/image-sig.c -------------------------------------------------------------------------------- /boot/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/image.c -------------------------------------------------------------------------------- /boot/prog_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/prog_boot.c -------------------------------------------------------------------------------- /boot/pxe_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/pxe_utils.c -------------------------------------------------------------------------------- /boot/scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/scene.c -------------------------------------------------------------------------------- /boot/scene_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/scene_menu.c -------------------------------------------------------------------------------- /boot/upl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/upl_common.c -------------------------------------------------------------------------------- /boot/upl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/upl_common.h -------------------------------------------------------------------------------- /boot/upl_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/upl_read.c -------------------------------------------------------------------------------- /boot/upl_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/upl_write.c -------------------------------------------------------------------------------- /boot/vbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe.c -------------------------------------------------------------------------------- /boot/vbe_abrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe_abrec.c -------------------------------------------------------------------------------- /boot/vbe_abrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe_abrec.h -------------------------------------------------------------------------------- /boot/vbe_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe_common.c -------------------------------------------------------------------------------- /boot/vbe_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe_common.h -------------------------------------------------------------------------------- /boot/vbe_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe_simple.c -------------------------------------------------------------------------------- /boot/vbe_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/boot/vbe_simple.h -------------------------------------------------------------------------------- /cmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/.gitignore -------------------------------------------------------------------------------- /cmd/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/2048.c -------------------------------------------------------------------------------- /cmd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/Kconfig -------------------------------------------------------------------------------- /cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/Makefile -------------------------------------------------------------------------------- /cmd/abootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/abootimg.c -------------------------------------------------------------------------------- /cmd/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/acpi.c -------------------------------------------------------------------------------- /cmd/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/adc.c -------------------------------------------------------------------------------- /cmd/addrmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/addrmap.c -------------------------------------------------------------------------------- /cmd/adtimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/adtimg.c -------------------------------------------------------------------------------- /cmd/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/aes.c -------------------------------------------------------------------------------- /cmd/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/arm/Makefile -------------------------------------------------------------------------------- /cmd/armffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/armffa.c -------------------------------------------------------------------------------- /cmd/armflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/armflash.c -------------------------------------------------------------------------------- /cmd/avb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/avb.c -------------------------------------------------------------------------------- /cmd/axi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/axi.c -------------------------------------------------------------------------------- /cmd/bcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bcb.c -------------------------------------------------------------------------------- /cmd/bdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bdinfo.c -------------------------------------------------------------------------------- /cmd/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bind.c -------------------------------------------------------------------------------- /cmd/binop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/binop.c -------------------------------------------------------------------------------- /cmd/blk_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/blk_common.c -------------------------------------------------------------------------------- /cmd/blkcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/blkcache.c -------------------------------------------------------------------------------- /cmd/blkmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/blkmap.c -------------------------------------------------------------------------------- /cmd/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/blob.c -------------------------------------------------------------------------------- /cmd/bloblist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bloblist.c -------------------------------------------------------------------------------- /cmd/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bmp.c -------------------------------------------------------------------------------- /cmd/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/boot.c -------------------------------------------------------------------------------- /cmd/bootcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootcount.c -------------------------------------------------------------------------------- /cmd/bootdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootdev.c -------------------------------------------------------------------------------- /cmd/bootefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootefi.c -------------------------------------------------------------------------------- /cmd/bootflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootflow.c -------------------------------------------------------------------------------- /cmd/booti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/booti.c -------------------------------------------------------------------------------- /cmd/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootm.c -------------------------------------------------------------------------------- /cmd/bootmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootmenu.c -------------------------------------------------------------------------------- /cmd/bootmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootmeth.c -------------------------------------------------------------------------------- /cmd/bootstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootstage.c -------------------------------------------------------------------------------- /cmd/bootstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootstd.c -------------------------------------------------------------------------------- /cmd/bootz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/bootz.c -------------------------------------------------------------------------------- /cmd/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/btrfs.c -------------------------------------------------------------------------------- /cmd/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/button.c -------------------------------------------------------------------------------- /cmd/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cache.c -------------------------------------------------------------------------------- /cmd/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cat.c -------------------------------------------------------------------------------- /cmd/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cbfs.c -------------------------------------------------------------------------------- /cmd/cedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cedit.c -------------------------------------------------------------------------------- /cmd/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cli.c -------------------------------------------------------------------------------- /cmd/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/clk.c -------------------------------------------------------------------------------- /cmd/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/clone.c -------------------------------------------------------------------------------- /cmd/cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cls.c -------------------------------------------------------------------------------- /cmd/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/config.c -------------------------------------------------------------------------------- /cmd/conitrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/conitrace.c -------------------------------------------------------------------------------- /cmd/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/console.c -------------------------------------------------------------------------------- /cmd/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cpu.c -------------------------------------------------------------------------------- /cmd/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cramfs.c -------------------------------------------------------------------------------- /cmd/cros_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cros_ec.c -------------------------------------------------------------------------------- /cmd/cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/cyclic.c -------------------------------------------------------------------------------- /cmd/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/date.c -------------------------------------------------------------------------------- /cmd/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/demo.c -------------------------------------------------------------------------------- /cmd/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/dfu.c -------------------------------------------------------------------------------- /cmd/diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/diag.c -------------------------------------------------------------------------------- /cmd/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/disk.c -------------------------------------------------------------------------------- /cmd/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/dm.c -------------------------------------------------------------------------------- /cmd/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/echo.c -------------------------------------------------------------------------------- /cmd/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/eeprom.c -------------------------------------------------------------------------------- /cmd/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/efi.c -------------------------------------------------------------------------------- /cmd/efi_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/efi_common.c -------------------------------------------------------------------------------- /cmd/eficonfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/eficonfig.c -------------------------------------------------------------------------------- /cmd/efidebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/efidebug.c -------------------------------------------------------------------------------- /cmd/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/elf.c -------------------------------------------------------------------------------- /cmd/erofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/erofs.c -------------------------------------------------------------------------------- /cmd/ethsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ethsw.c -------------------------------------------------------------------------------- /cmd/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/event.c -------------------------------------------------------------------------------- /cmd/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/exit.c -------------------------------------------------------------------------------- /cmd/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ext2.c -------------------------------------------------------------------------------- /cmd/ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ext4.c -------------------------------------------------------------------------------- /cmd/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fastboot.c -------------------------------------------------------------------------------- /cmd/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fat.c -------------------------------------------------------------------------------- /cmd/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fdt.c -------------------------------------------------------------------------------- /cmd/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/flash.c -------------------------------------------------------------------------------- /cmd/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/font.c -------------------------------------------------------------------------------- /cmd/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fpga.c -------------------------------------------------------------------------------- /cmd/fpgad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fpgad.c -------------------------------------------------------------------------------- /cmd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fs.c -------------------------------------------------------------------------------- /cmd/fs_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fs_uuid.c -------------------------------------------------------------------------------- /cmd/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fuse.c -------------------------------------------------------------------------------- /cmd/fwu_mdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/fwu_mdata.c -------------------------------------------------------------------------------- /cmd/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/gettime.c -------------------------------------------------------------------------------- /cmd/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/gpio.c -------------------------------------------------------------------------------- /cmd/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/gpt.c -------------------------------------------------------------------------------- /cmd/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/hash.c -------------------------------------------------------------------------------- /cmd/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/help.c -------------------------------------------------------------------------------- /cmd/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/history.c -------------------------------------------------------------------------------- /cmd/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/host.c -------------------------------------------------------------------------------- /cmd/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/i2c.c -------------------------------------------------------------------------------- /cmd/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ide.c -------------------------------------------------------------------------------- /cmd/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ini.c -------------------------------------------------------------------------------- /cmd/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/io.c -------------------------------------------------------------------------------- /cmd/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/iotrace.c -------------------------------------------------------------------------------- /cmd/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/irq.c -------------------------------------------------------------------------------- /cmd/itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/itest.c -------------------------------------------------------------------------------- /cmd/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/jffs2.c -------------------------------------------------------------------------------- /cmd/kaslrseed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/kaslrseed.c -------------------------------------------------------------------------------- /cmd/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/led.c -------------------------------------------------------------------------------- /cmd/legacy_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/legacy_led.c -------------------------------------------------------------------------------- /cmd/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/license.c -------------------------------------------------------------------------------- /cmd/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/load.c -------------------------------------------------------------------------------- /cmd/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/log.c -------------------------------------------------------------------------------- /cmd/lsblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lsblk.c -------------------------------------------------------------------------------- /cmd/lwip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/Makefile -------------------------------------------------------------------------------- /cmd/lwip/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/dhcp.c -------------------------------------------------------------------------------- /cmd/lwip/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/dns.c -------------------------------------------------------------------------------- /cmd/lwip/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/ping.c -------------------------------------------------------------------------------- /cmd/lwip/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/sntp.c -------------------------------------------------------------------------------- /cmd/lwip/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/tftp.c -------------------------------------------------------------------------------- /cmd/lwip/wget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lwip/wget.c -------------------------------------------------------------------------------- /cmd/lzmadec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/lzmadec.c -------------------------------------------------------------------------------- /cmd/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mbr.c -------------------------------------------------------------------------------- /cmd/md5sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/md5sum.c -------------------------------------------------------------------------------- /cmd/mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mdio.c -------------------------------------------------------------------------------- /cmd/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mem.c -------------------------------------------------------------------------------- /cmd/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/meminfo.c -------------------------------------------------------------------------------- /cmd/meson/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/meson/sm.c -------------------------------------------------------------------------------- /cmd/mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mii.c -------------------------------------------------------------------------------- /cmd/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/misc.c -------------------------------------------------------------------------------- /cmd/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mmc.c -------------------------------------------------------------------------------- /cmd/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mp.c -------------------------------------------------------------------------------- /cmd/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mtd.c -------------------------------------------------------------------------------- /cmd/mtdparts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mtdparts.c -------------------------------------------------------------------------------- /cmd/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mux.c -------------------------------------------------------------------------------- /cmd/mvebu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mvebu/Kconfig -------------------------------------------------------------------------------- /cmd/mvebu/bubt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/mvebu/bubt.c -------------------------------------------------------------------------------- /cmd/nand-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/nand-ext.c -------------------------------------------------------------------------------- /cmd/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/nand.c -------------------------------------------------------------------------------- /cmd/net-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/net-common.c -------------------------------------------------------------------------------- /cmd/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/net.c -------------------------------------------------------------------------------- /cmd/nmbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/nmbm.c -------------------------------------------------------------------------------- /cmd/nvedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/nvedit.c -------------------------------------------------------------------------------- /cmd/nvedit_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/nvedit_efi.c -------------------------------------------------------------------------------- /cmd/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/nvme.c -------------------------------------------------------------------------------- /cmd/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/onenand.c -------------------------------------------------------------------------------- /cmd/optee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/optee.c -------------------------------------------------------------------------------- /cmd/optee_rpmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/optee_rpmb.c -------------------------------------------------------------------------------- /cmd/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/osd.c -------------------------------------------------------------------------------- /cmd/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/panic.c -------------------------------------------------------------------------------- /cmd/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/part.c -------------------------------------------------------------------------------- /cmd/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pause.c -------------------------------------------------------------------------------- /cmd/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pcap.c -------------------------------------------------------------------------------- /cmd/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pci.c -------------------------------------------------------------------------------- /cmd/pci_mps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pci_mps.c -------------------------------------------------------------------------------- /cmd/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pinmux.c -------------------------------------------------------------------------------- /cmd/pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pmc.c -------------------------------------------------------------------------------- /cmd/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pmic.c -------------------------------------------------------------------------------- /cmd/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/printf.c -------------------------------------------------------------------------------- /cmd/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/printf.h -------------------------------------------------------------------------------- /cmd/pstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pstore.c -------------------------------------------------------------------------------- /cmd/pvblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pvblock.c -------------------------------------------------------------------------------- /cmd/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pwm.c -------------------------------------------------------------------------------- /cmd/pxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/pxe.c -------------------------------------------------------------------------------- /cmd/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/qfw.c -------------------------------------------------------------------------------- /cmd/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/read.c -------------------------------------------------------------------------------- /cmd/reginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/reginfo.c -------------------------------------------------------------------------------- /cmd/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/regulator.c -------------------------------------------------------------------------------- /cmd/remoteproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/remoteproc.c -------------------------------------------------------------------------------- /cmd/riscv/sbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/riscv/sbi.c -------------------------------------------------------------------------------- /cmd/rkmtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/rkmtd.c -------------------------------------------------------------------------------- /cmd/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/rng.c -------------------------------------------------------------------------------- /cmd/rockusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/rockusb.c -------------------------------------------------------------------------------- /cmd/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/rtc.c -------------------------------------------------------------------------------- /cmd/sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sata.c -------------------------------------------------------------------------------- /cmd/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sb.c -------------------------------------------------------------------------------- /cmd/scmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/scmi.c -------------------------------------------------------------------------------- /cmd/scp03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/scp03.c -------------------------------------------------------------------------------- /cmd/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/scsi.c -------------------------------------------------------------------------------- /cmd/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/seama.c -------------------------------------------------------------------------------- /cmd/setexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/setexpr.c -------------------------------------------------------------------------------- /cmd/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sf.c -------------------------------------------------------------------------------- /cmd/sha1sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sha1sum.c -------------------------------------------------------------------------------- /cmd/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sleep.c -------------------------------------------------------------------------------- /cmd/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/smbios.c -------------------------------------------------------------------------------- /cmd/smccc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/smccc.c -------------------------------------------------------------------------------- /cmd/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sound.c -------------------------------------------------------------------------------- /cmd/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/source.c -------------------------------------------------------------------------------- /cmd/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/spawn.c -------------------------------------------------------------------------------- /cmd/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/spi.c -------------------------------------------------------------------------------- /cmd/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/spl.c -------------------------------------------------------------------------------- /cmd/sqfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sqfs.c -------------------------------------------------------------------------------- /cmd/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/strings.c -------------------------------------------------------------------------------- /cmd/sysboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/sysboot.c -------------------------------------------------------------------------------- /cmd/tcpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/tcpm.c -------------------------------------------------------------------------------- /cmd/temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/temperature.c -------------------------------------------------------------------------------- /cmd/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/terminal.c -------------------------------------------------------------------------------- /cmd/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/test.c -------------------------------------------------------------------------------- /cmd/thordown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/thordown.c -------------------------------------------------------------------------------- /cmd/ti/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ti/Kconfig -------------------------------------------------------------------------------- /cmd/ti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ti/Makefile -------------------------------------------------------------------------------- /cmd/ti/ddr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ti/ddr3.c -------------------------------------------------------------------------------- /cmd/ti/pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ti/pd.c -------------------------------------------------------------------------------- /cmd/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/time.c -------------------------------------------------------------------------------- /cmd/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/timer.c -------------------------------------------------------------------------------- /cmd/tlv_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/tlv_eeprom.c -------------------------------------------------------------------------------- /cmd/tpm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/tpm-common.c -------------------------------------------------------------------------------- /cmd/tpm-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/tpm-v1.c -------------------------------------------------------------------------------- /cmd/tpm-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/tpm-v2.c -------------------------------------------------------------------------------- /cmd/tpm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/tpm_test.c -------------------------------------------------------------------------------- /cmd/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/trace.c -------------------------------------------------------------------------------- /cmd/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ubi.c -------------------------------------------------------------------------------- /cmd/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ubifs.c -------------------------------------------------------------------------------- /cmd/ufetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ufetch.c -------------------------------------------------------------------------------- /cmd/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ufs.c -------------------------------------------------------------------------------- /cmd/unlz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/unlz4.c -------------------------------------------------------------------------------- /cmd/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/unzip.c -------------------------------------------------------------------------------- /cmd/upl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/upl.c -------------------------------------------------------------------------------- /cmd/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/usb.c -------------------------------------------------------------------------------- /cmd/vbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/vbe.c -------------------------------------------------------------------------------- /cmd/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/version.c -------------------------------------------------------------------------------- /cmd/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/video.c -------------------------------------------------------------------------------- /cmd/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/virtio.c -------------------------------------------------------------------------------- /cmd/w1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/w1.c -------------------------------------------------------------------------------- /cmd/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/wdt.c -------------------------------------------------------------------------------- /cmd/wol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/wol.c -------------------------------------------------------------------------------- /cmd/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/Makefile -------------------------------------------------------------------------------- /cmd/x86/cbcmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/cbcmos.c -------------------------------------------------------------------------------- /cmd/x86/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/cpuid.c -------------------------------------------------------------------------------- /cmd/x86/fsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/fsp.c -------------------------------------------------------------------------------- /cmd/x86/hob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/hob.c -------------------------------------------------------------------------------- /cmd/x86/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/msr.c -------------------------------------------------------------------------------- /cmd/x86/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/mtrr.c -------------------------------------------------------------------------------- /cmd/x86/zboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/x86/zboot.c -------------------------------------------------------------------------------- /cmd/ximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/ximg.c -------------------------------------------------------------------------------- /cmd/xxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/xxd.c -------------------------------------------------------------------------------- /cmd/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/zfs.c -------------------------------------------------------------------------------- /cmd/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/cmd/zip.c -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/autoboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/autoboot.c -------------------------------------------------------------------------------- /common/bloblist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/bloblist.c -------------------------------------------------------------------------------- /common/board_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/board_f.c -------------------------------------------------------------------------------- /common/board_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/board_r.c -------------------------------------------------------------------------------- /common/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/cli.c -------------------------------------------------------------------------------- /common/cli_hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/cli_hush.c -------------------------------------------------------------------------------- /common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/command.c -------------------------------------------------------------------------------- /common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/console.c -------------------------------------------------------------------------------- /common/cros_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/cros_ec.c -------------------------------------------------------------------------------- /common/cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/cyclic.c -------------------------------------------------------------------------------- /common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/ddr_spd.c -------------------------------------------------------------------------------- /common/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/dfu.c -------------------------------------------------------------------------------- /common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/dlmalloc.c -------------------------------------------------------------------------------- /common/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/edid.c -------------------------------------------------------------------------------- /common/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/event.c -------------------------------------------------------------------------------- /common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/exports.c -------------------------------------------------------------------------------- /common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/flash.c -------------------------------------------------------------------------------- /common/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/hash.c -------------------------------------------------------------------------------- /common/hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/hwconfig.c -------------------------------------------------------------------------------- /common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/iomux.c -------------------------------------------------------------------------------- /common/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/iotrace.c -------------------------------------------------------------------------------- /common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/kallsyms.c -------------------------------------------------------------------------------- /common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/kgdb.c -------------------------------------------------------------------------------- /common/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/log.c -------------------------------------------------------------------------------- /common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/main.c -------------------------------------------------------------------------------- /common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/memsize.c -------------------------------------------------------------------------------- /common/memtop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/memtop.c -------------------------------------------------------------------------------- /common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/menu.c -------------------------------------------------------------------------------- /common/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/qfw.c -------------------------------------------------------------------------------- /common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/s_record.c -------------------------------------------------------------------------------- /common/scp03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/scp03.c -------------------------------------------------------------------------------- /common/spl/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/spl/spl.c -------------------------------------------------------------------------------- /common/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/splash.c -------------------------------------------------------------------------------- /common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/stdio.c -------------------------------------------------------------------------------- /common/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/update.c -------------------------------------------------------------------------------- /common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/usb.c -------------------------------------------------------------------------------- /common/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/usb_hub.c -------------------------------------------------------------------------------- /common/usb_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/usb_kbd.c -------------------------------------------------------------------------------- /common/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/version.c -------------------------------------------------------------------------------- /common/xyzModem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/common/xyzModem.c -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/config.mk -------------------------------------------------------------------------------- /disk/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/Kconfig -------------------------------------------------------------------------------- /disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/Makefile -------------------------------------------------------------------------------- /disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part.c -------------------------------------------------------------------------------- /disk/part_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_amiga.c -------------------------------------------------------------------------------- /disk/part_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_amiga.h -------------------------------------------------------------------------------- /disk/part_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_dos.c -------------------------------------------------------------------------------- /disk/part_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_dos.h -------------------------------------------------------------------------------- /disk/part_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_efi.c -------------------------------------------------------------------------------- /disk/part_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_iso.c -------------------------------------------------------------------------------- /disk/part_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_iso.h -------------------------------------------------------------------------------- /disk/part_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_mac.c -------------------------------------------------------------------------------- /disk/part_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/disk/part_mac.h -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.LED -------------------------------------------------------------------------------- /doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.OFT -------------------------------------------------------------------------------- /doc/README.POST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.POST -------------------------------------------------------------------------------- /doc/README.VLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.VLAN -------------------------------------------------------------------------------- /doc/README.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.asn1 -------------------------------------------------------------------------------- /doc/README.bcmns3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.bcmns3 -------------------------------------------------------------------------------- /doc/README.boston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.boston -------------------------------------------------------------------------------- /doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.cfi -------------------------------------------------------------------------------- /doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.dns -------------------------------------------------------------------------------- /doc/README.ext4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.ext4 -------------------------------------------------------------------------------- /doc/README.gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.gpio -------------------------------------------------------------------------------- /doc/README.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.gpt -------------------------------------------------------------------------------- /doc/README.i2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.i2c -------------------------------------------------------------------------------- /doc/README.iomux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.iomux -------------------------------------------------------------------------------- /doc/README.malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.malta -------------------------------------------------------------------------------- /doc/README.nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.nand -------------------------------------------------------------------------------- /doc/README.odroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.odroid -------------------------------------------------------------------------------- /doc/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.omap3 -------------------------------------------------------------------------------- /doc/README.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.pcap -------------------------------------------------------------------------------- /doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.pxe -------------------------------------------------------------------------------- /doc/README.sata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.sata -------------------------------------------------------------------------------- /doc/README.sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.sched -------------------------------------------------------------------------------- /doc/README.silent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.silent -------------------------------------------------------------------------------- /doc/README.tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.tee -------------------------------------------------------------------------------- /doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.ubi -------------------------------------------------------------------------------- /doc/README.ubispl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.ubispl -------------------------------------------------------------------------------- /doc/README.udp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.udp -------------------------------------------------------------------------------- /doc/README.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.update -------------------------------------------------------------------------------- /doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.usb -------------------------------------------------------------------------------- /doc/README.vf610: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.vf610 -------------------------------------------------------------------------------- /doc/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.video -------------------------------------------------------------------------------- /doc/README.zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/README.zfs -------------------------------------------------------------------------------- /doc/api/clk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/clk.rst -------------------------------------------------------------------------------- /doc/api/dfu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/dfu.rst -------------------------------------------------------------------------------- /doc/api/dm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/dm.rst -------------------------------------------------------------------------------- /doc/api/efi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/efi.rst -------------------------------------------------------------------------------- /doc/api/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/event.rst -------------------------------------------------------------------------------- /doc/api/fs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/fs.rst -------------------------------------------------------------------------------- /doc/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/index.rst -------------------------------------------------------------------------------- /doc/api/led.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/led.rst -------------------------------------------------------------------------------- /doc/api/nvmem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/nvmem.rst -------------------------------------------------------------------------------- /doc/api/part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/part.rst -------------------------------------------------------------------------------- /doc/api/rng.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/rng.rst -------------------------------------------------------------------------------- /doc/api/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/api/timer.rst -------------------------------------------------------------------------------- /doc/arch/arc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/arch/arc.rst -------------------------------------------------------------------------------- /doc/arch/m68k.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/arch/m68k.rst -------------------------------------------------------------------------------- /doc/arch/mips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/arch/mips.rst -------------------------------------------------------------------------------- /doc/arch/sh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/arch/sh.rst -------------------------------------------------------------------------------- /doc/bounces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/bounces -------------------------------------------------------------------------------- /doc/build/buildman.rst: -------------------------------------------------------------------------------- 1 | ../../tools/buildman/buildman.rst -------------------------------------------------------------------------------- /doc/build/gcc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/build/gcc.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/develop/package/binman.rst: -------------------------------------------------------------------------------- 1 | ../../../tools/binman/binman.rst -------------------------------------------------------------------------------- /doc/develop/package/bintools.rst: -------------------------------------------------------------------------------- 1 | ../../../tools/binman/bintools.rst -------------------------------------------------------------------------------- /doc/develop/package/entries.rst: -------------------------------------------------------------------------------- 1 | ../../../tools/binman/entries.rst -------------------------------------------------------------------------------- /doc/develop/patman.rst: -------------------------------------------------------------------------------- 1 | ../../tools/patman/patman.rst -------------------------------------------------------------------------------- /doc/develop/pics/spl_before_reloc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/dumpimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/dumpimage.1 -------------------------------------------------------------------------------- /doc/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/genindex.rst -------------------------------------------------------------------------------- /doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/git-mailrc -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/kwboot.1 -------------------------------------------------------------------------------- /doc/media/linker_lists.h.rst.exceptions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/mkfwumdata.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/mkfwumdata.1 -------------------------------------------------------------------------------- /doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/mkimage.1 -------------------------------------------------------------------------------- /doc/usage/dfu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/usage/dfu.rst -------------------------------------------------------------------------------- /doc/usage/upl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/doc/usage/upl.rst -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/clk/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/clk/clk.c -------------------------------------------------------------------------------- /drivers/dfu/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/dfu/dfu.c -------------------------------------------------------------------------------- /drivers/mfd/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_MFD_ATMEL_SMC) += atmel-smc.o 2 | -------------------------------------------------------------------------------- /drivers/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/mmc/mmc.c -------------------------------------------------------------------------------- /drivers/mtd/ubispl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubispl.o ../ubi/crc32.o 2 | -------------------------------------------------------------------------------- /drivers/phy/ti/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(PHASE_)PHY_J721E_WIZ) += phy-j721e-wiz.o 2 | -------------------------------------------------------------------------------- /drivers/qe/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/qe/fdt.c -------------------------------------------------------------------------------- /drivers/qe/qe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/qe/qe.c -------------------------------------------------------------------------------- /drivers/ram/cadence/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_CADENCE_DDR_CTRL) += ddr_ctrl.o 2 | -------------------------------------------------------------------------------- /drivers/spi/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/spi/ich.c -------------------------------------------------------------------------------- /drivers/spi/ich.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/spi/ich.h -------------------------------------------------------------------------------- /drivers/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/spi/spi.c -------------------------------------------------------------------------------- /drivers/ufs/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/ufs/ufs.c -------------------------------------------------------------------------------- /drivers/ufs/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/drivers/ufs/ufs.h -------------------------------------------------------------------------------- /drivers/video/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | *.S 2 | -------------------------------------------------------------------------------- /dts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/dts/Kconfig -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/dts/Makefile -------------------------------------------------------------------------------- /dts/upstream/.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | *.dtb 4 | 5 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/dma/dma.txt: -------------------------------------------------------------------------------- 1 | This file has been moved to dma-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/graph.txt: -------------------------------------------------------------------------------- 1 | This file has moved to graph.yaml in dt-schema repo 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/input/touchscreen/touchscreen.txt: -------------------------------------------------------------------------------- 1 | See touchscreen.yaml 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/leds/common.txt: -------------------------------------------------------------------------------- 1 | This file has moved to ./common.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/media/rc.txt: -------------------------------------------------------------------------------- 1 | This file has been moved to rc.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/mmc/mmc.txt: -------------------------------------------------------------------------------- 1 | This file has moved to mmc-controller.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/net/mdio.txt: -------------------------------------------------------------------------------- 1 | This file has moved to mdio.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/net/phy.txt: -------------------------------------------------------------------------------- 1 | This file has moved to ethernet-phy.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/net/stmmac.txt: -------------------------------------------------------------------------------- 1 | This file has moved to snps,dwmac.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/regulator/regulator.txt: -------------------------------------------------------------------------------- 1 | This file has moved to regulator.yaml. 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/serial/rs485.txt: -------------------------------------------------------------------------------- 1 | See rs485.yaml 2 | -------------------------------------------------------------------------------- /dts/upstream/Bindings/spi/spi-bus.txt: -------------------------------------------------------------------------------- 1 | This file has moved to spi-controller.yaml. 2 | -------------------------------------------------------------------------------- /env/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/Kconfig -------------------------------------------------------------------------------- /env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/Makefile -------------------------------------------------------------------------------- /env/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/attr.c -------------------------------------------------------------------------------- /env/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/callback.c -------------------------------------------------------------------------------- /env/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/common.c -------------------------------------------------------------------------------- /env/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/eeprom.c -------------------------------------------------------------------------------- /env/embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/embedded.c -------------------------------------------------------------------------------- /env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/env.c -------------------------------------------------------------------------------- /env/ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/ext4.c -------------------------------------------------------------------------------- /env/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/fat.c -------------------------------------------------------------------------------- /env/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/flags.c -------------------------------------------------------------------------------- /env/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/flash.c -------------------------------------------------------------------------------- /env/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/mmc.c -------------------------------------------------------------------------------- /env/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/mtd.c -------------------------------------------------------------------------------- /env/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/nand.c -------------------------------------------------------------------------------- /env/nowhere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/nowhere.c -------------------------------------------------------------------------------- /env/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/nvram.c -------------------------------------------------------------------------------- /env/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/onenand.c -------------------------------------------------------------------------------- /env/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/remote.c -------------------------------------------------------------------------------- /env/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/scsi.c -------------------------------------------------------------------------------- /env/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/sf.c -------------------------------------------------------------------------------- /env/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/env/ubi.c -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /failsafe/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/failsafe/Kconfig -------------------------------------------------------------------------------- /failsafe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/failsafe/Makefile -------------------------------------------------------------------------------- /failsafe/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/failsafe/fs.c -------------------------------------------------------------------------------- /failsafe/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/failsafe/fs.h -------------------------------------------------------------------------------- /fs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/Kconfig -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/Makefile -------------------------------------------------------------------------------- /fs/btrfs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/Kconfig -------------------------------------------------------------------------------- /fs/btrfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/Makefile -------------------------------------------------------------------------------- /fs/btrfs/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/btrfs.c -------------------------------------------------------------------------------- /fs/btrfs/btrfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/btrfs.h -------------------------------------------------------------------------------- /fs/btrfs/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/compat.h -------------------------------------------------------------------------------- /fs/btrfs/ctree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/ctree.c -------------------------------------------------------------------------------- /fs/btrfs/ctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/ctree.h -------------------------------------------------------------------------------- /fs/btrfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/dev.c -------------------------------------------------------------------------------- /fs/btrfs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/btrfs/inode.c -------------------------------------------------------------------------------- /fs/cbfs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/cbfs/Kconfig -------------------------------------------------------------------------------- /fs/cbfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/cbfs/Makefile -------------------------------------------------------------------------------- /fs/cbfs/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/cbfs/cbfs.c -------------------------------------------------------------------------------- /fs/cramfs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/cramfs/Kconfig -------------------------------------------------------------------------------- /fs/erofs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/Kconfig -------------------------------------------------------------------------------- /fs/erofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/Makefile -------------------------------------------------------------------------------- /fs/erofs/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/data.c -------------------------------------------------------------------------------- /fs/erofs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/fs.c -------------------------------------------------------------------------------- /fs/erofs/namei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/namei.c -------------------------------------------------------------------------------- /fs/erofs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/super.c -------------------------------------------------------------------------------- /fs/erofs/zmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/erofs/zmap.c -------------------------------------------------------------------------------- /fs/exfat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/Kconfig -------------------------------------------------------------------------------- /fs/exfat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/Makefile -------------------------------------------------------------------------------- /fs/exfat/exfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/exfat.h -------------------------------------------------------------------------------- /fs/exfat/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/io.c -------------------------------------------------------------------------------- /fs/exfat/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/lookup.c -------------------------------------------------------------------------------- /fs/exfat/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/mount.c -------------------------------------------------------------------------------- /fs/exfat/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/node.c -------------------------------------------------------------------------------- /fs/exfat/repair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/repair.c -------------------------------------------------------------------------------- /fs/exfat/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/time.c -------------------------------------------------------------------------------- /fs/exfat/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/utf.c -------------------------------------------------------------------------------- /fs/exfat/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/exfat/utils.c -------------------------------------------------------------------------------- /fs/ext4/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ext4/Kconfig -------------------------------------------------------------------------------- /fs/ext4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ext4/Makefile -------------------------------------------------------------------------------- /fs/ext4/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ext4/dev.c -------------------------------------------------------------------------------- /fs/ext4/ext4fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ext4/ext4fs.c -------------------------------------------------------------------------------- /fs/fat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/fat/Kconfig -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/fat/Makefile -------------------------------------------------------------------------------- /fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/fat/fat.c -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/fs.c -------------------------------------------------------------------------------- /fs/fs_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/fs_internal.c -------------------------------------------------------------------------------- /fs/jffs2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/jffs2/Kconfig -------------------------------------------------------------------------------- /fs/jffs2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/jffs2/LICENCE -------------------------------------------------------------------------------- /fs/jffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/jffs2/Makefile -------------------------------------------------------------------------------- /fs/sandbox/Kconfig: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | -------------------------------------------------------------------------------- /fs/ubifs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/Kconfig -------------------------------------------------------------------------------- /fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/Makefile -------------------------------------------------------------------------------- /fs/ubifs/budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/budget.c -------------------------------------------------------------------------------- /fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/debug.c -------------------------------------------------------------------------------- /fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/debug.h -------------------------------------------------------------------------------- /fs/ubifs/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/gc.c -------------------------------------------------------------------------------- /fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/io.c -------------------------------------------------------------------------------- /fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/key.h -------------------------------------------------------------------------------- /fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/log.c -------------------------------------------------------------------------------- /fs/ubifs/lprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/lprops.c -------------------------------------------------------------------------------- /fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/master.c -------------------------------------------------------------------------------- /fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/misc.h -------------------------------------------------------------------------------- /fs/ubifs/orphan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/orphan.c -------------------------------------------------------------------------------- /fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/replay.c -------------------------------------------------------------------------------- /fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/sb.c -------------------------------------------------------------------------------- /fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/scan.c -------------------------------------------------------------------------------- /fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/super.c -------------------------------------------------------------------------------- /fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /fs/zfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/zfs/Makefile -------------------------------------------------------------------------------- /fs/zfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/zfs/dev.c -------------------------------------------------------------------------------- /fs/zfs/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/zfs/zfs.c -------------------------------------------------------------------------------- /fs/zfs/zfs_lzjb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/fs/zfs/zfs_lzjb.c -------------------------------------------------------------------------------- /include/ACEX1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ACEX1K.h -------------------------------------------------------------------------------- /include/abuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/abuf.h -------------------------------------------------------------------------------- /include/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/adc.h -------------------------------------------------------------------------------- /include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ahci.h -------------------------------------------------------------------------------- /include/alist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/alist.h -------------------------------------------------------------------------------- /include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/altera.h -------------------------------------------------------------------------------- /include/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ansi.h -------------------------------------------------------------------------------- /include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/api.h -------------------------------------------------------------------------------- /include/arm_ffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/arm_ffa.h -------------------------------------------------------------------------------- /include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ata.h -------------------------------------------------------------------------------- /include/axi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/axi.h -------------------------------------------------------------------------------- /include/axp152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/axp152.h -------------------------------------------------------------------------------- /include/axp209.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/axp209.h -------------------------------------------------------------------------------- /include/axp221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/axp221.h -------------------------------------------------------------------------------- /include/axp305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/axp305.h -------------------------------------------------------------------------------- /include/bcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/bcb.h -------------------------------------------------------------------------------- /include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/bcd.h -------------------------------------------------------------------------------- /include/blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/blk.h -------------------------------------------------------------------------------- /include/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/cbfs.h -------------------------------------------------------------------------------- /include/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/cli.h -------------------------------------------------------------------------------- /include/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/clk.h -------------------------------------------------------------------------------- /include/cpsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/cpsw.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- 1 | linux/ctype.h -------------------------------------------------------------------------------- /include/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/dfu.h -------------------------------------------------------------------------------- /include/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/dm.h -------------------------------------------------------------------------------- /include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/dma.h -------------------------------------------------------------------------------- /include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/e500.h -------------------------------------------------------------------------------- /include/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/edid.h -------------------------------------------------------------------------------- /include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/efi.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/env.h -------------------------------------------------------------------------------- /include/expo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/expo.h -------------------------------------------------------------------------------- /include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/fat.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- 1 | #include "../scripts/dtc/libfdt/fdt.h" 2 | -------------------------------------------------------------------------------- /include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/fis.h -------------------------------------------------------------------------------- /include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/fpga.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/fuse.h -------------------------------------------------------------------------------- /include/fwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/fwu.h -------------------------------------------------------------------------------- /include/gsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/gsc.h -------------------------------------------------------------------------------- /include/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/gzip.h -------------------------------------------------------------------------------- /include/hang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/hang.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/i2s.h -------------------------------------------------------------------------------- /include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ide.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/init.h -------------------------------------------------------------------------------- /include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/irq.h -------------------------------------------------------------------------------- /include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/kgdb.h -------------------------------------------------------------------------------- /include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/led.h -------------------------------------------------------------------------------- /include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/lmb.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/log.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/mmc.h -------------------------------------------------------------------------------- /include/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/mtd.h -------------------------------------------------------------------------------- /include/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/mux.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/net.h -------------------------------------------------------------------------------- /include/net6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/net6.h -------------------------------------------------------------------------------- /include/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/nvme.h -------------------------------------------------------------------------------- /include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/os.h -------------------------------------------------------------------------------- /include/p2sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/p2sb.h -------------------------------------------------------------------------------- /include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/part.h -------------------------------------------------------------------------------- /include/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/pch.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/pe.h -------------------------------------------------------------------------------- /include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/phy.h -------------------------------------------------------------------------------- /include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/post.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/qfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/qfw.h -------------------------------------------------------------------------------- /include/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ram.h -------------------------------------------------------------------------------- /include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/rand.h -------------------------------------------------------------------------------- /include/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/rc4.h -------------------------------------------------------------------------------- /include/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/rng.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/sata.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/sdp.h -------------------------------------------------------------------------------- /include/slre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/slre.h -------------------------------------------------------------------------------- /include/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/sm.h -------------------------------------------------------------------------------- /include/smem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/smem.h -------------------------------------------------------------------------------- /include/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/soc.h -------------------------------------------------------------------------------- /include/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/sort.h -------------------------------------------------------------------------------- /include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/spd.h -------------------------------------------------------------------------------- /include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/spi.h -------------------------------------------------------------------------------- /include/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/spl.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/tee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/tee.h -------------------------------------------------------------------------------- /include/thor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/thor.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/time.h -------------------------------------------------------------------------------- /include/tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/tmu.h -------------------------------------------------------------------------------- /include/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/tsec.h -------------------------------------------------------------------------------- /include/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/ufs.h -------------------------------------------------------------------------------- /include/upl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/upl.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/usb.h -------------------------------------------------------------------------------- /include/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/vbe.h -------------------------------------------------------------------------------- /include/vesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/vesa.h -------------------------------------------------------------------------------- /include/w1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/w1.h -------------------------------------------------------------------------------- /include/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/wdt.h -------------------------------------------------------------------------------- /include/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/include/xen.h -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | oid_registry_data.c 2 | -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/abuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/abuf.c -------------------------------------------------------------------------------- /lib/addr_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/addr_map.c -------------------------------------------------------------------------------- /lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/aes.c -------------------------------------------------------------------------------- /lib/alist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/alist.c -------------------------------------------------------------------------------- /lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/bch.c -------------------------------------------------------------------------------- /lib/binman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/binman.c -------------------------------------------------------------------------------- /lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/bitrev.c -------------------------------------------------------------------------------- /lib/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/charset.c -------------------------------------------------------------------------------- /lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/circbuf.c -------------------------------------------------------------------------------- /lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/crc16.c -------------------------------------------------------------------------------- /lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/crc32.c -------------------------------------------------------------------------------- /lib/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/crc32c.c -------------------------------------------------------------------------------- /lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/crc7.c -------------------------------------------------------------------------------- /lib/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/crc8.c -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/date.c -------------------------------------------------------------------------------- /lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/div64.c -------------------------------------------------------------------------------- /lib/ecdsa/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(PHASE_)ECDSA_VERIFY) += ecdsa-verify.o 2 | -------------------------------------------------------------------------------- /lib/efi/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/efi/efi.c -------------------------------------------------------------------------------- /lib/efi_loader/.gitignore: -------------------------------------------------------------------------------- 1 | *.efi 2 | *.so 3 | *.S 4 | -------------------------------------------------------------------------------- /lib/efi_selftest/.gitignore: -------------------------------------------------------------------------------- 1 | efi_miniapp_*.h 2 | *.efi 3 | *.so 4 | -------------------------------------------------------------------------------- /lib/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/elf.c -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/errno.c -------------------------------------------------------------------------------- /lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/fdtdec.c -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/gunzip.c -------------------------------------------------------------------------------- /lib/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/gzip.c -------------------------------------------------------------------------------- /lib/hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/hang.c -------------------------------------------------------------------------------- /lib/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/hexdump.c -------------------------------------------------------------------------------- /lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/ldiv.c -------------------------------------------------------------------------------- /lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/lmb.c -------------------------------------------------------------------------------- /lib/lwip/lwip/contrib/ports/win32/include/arch/bpstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(push,1) 2 | -------------------------------------------------------------------------------- /lib/lwip/lwip/contrib/ports/win32/include/arch/epstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(pop) 2 | -------------------------------------------------------------------------------- /lib/lwip/lwip/doc/doxygen/generate.bat: -------------------------------------------------------------------------------- 1 | doxygen lwip.Doxyfile 2 | -------------------------------------------------------------------------------- /lib/lwip/lwip/doc/doxygen/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | doxygen lwip.Doxyfile 4 | -------------------------------------------------------------------------------- /lib/lwip/lwip/test/fuzz/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lwip/u-boot/arch/sys_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lwip/u-boot/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/lz4.c -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/3rdparty/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/3rdparty/everest/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- 1 | mbedtls.run_job() 2 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/data_files/base64/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/data_files/pkcs7_data.bin: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/data_files/pkcs7_data_1.bin: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/data_files/pkcs7_zerolendata.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mbedtls/external/mbedtls/tests/data_files/simplepass.psk: -------------------------------------------------------------------------------- 1 | 0a0b0c:010203 2 | -------------------------------------------------------------------------------- /lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/md5.c -------------------------------------------------------------------------------- /lib/membuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/membuf.c -------------------------------------------------------------------------------- /lib/of_live.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/of_live.c -------------------------------------------------------------------------------- /lib/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/panic.c -------------------------------------------------------------------------------- /lib/physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/physmem.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/rational.c -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/rc4.c -------------------------------------------------------------------------------- /lib/rtc-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/rtc-lib.c -------------------------------------------------------------------------------- /lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/sha1.c -------------------------------------------------------------------------------- /lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/sha256.c -------------------------------------------------------------------------------- /lib/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/sha512.c -------------------------------------------------------------------------------- /lib/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/slre.c -------------------------------------------------------------------------------- /lib/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/smbios.c -------------------------------------------------------------------------------- /lib/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/sscanf.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/strto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/strto.c -------------------------------------------------------------------------------- /lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/time.c -------------------------------------------------------------------------------- /lib/tpm-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/tpm-v1.c -------------------------------------------------------------------------------- /lib/tpm-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/tpm-v2.c -------------------------------------------------------------------------------- /lib/tpm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/tpm_api.c -------------------------------------------------------------------------------- /lib/tpm_tcg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/tpm_tcg2.c -------------------------------------------------------------------------------- /lib/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/trace.c -------------------------------------------------------------------------------- /lib/uthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/uthread.c -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/lib/xxhash.c -------------------------------------------------------------------------------- /net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/Kconfig -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/Makefile -------------------------------------------------------------------------------- /net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/arp.c -------------------------------------------------------------------------------- /net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/arp.h -------------------------------------------------------------------------------- /net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/bootp.c -------------------------------------------------------------------------------- /net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/bootp.h -------------------------------------------------------------------------------- /net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/cdp.c -------------------------------------------------------------------------------- /net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/cdp.h -------------------------------------------------------------------------------- /net/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/dhcpv6.c -------------------------------------------------------------------------------- /net/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/dhcpv6.h -------------------------------------------------------------------------------- /net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/dns.c -------------------------------------------------------------------------------- /net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/dns.h -------------------------------------------------------------------------------- /net/mtk_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/mtk_tcp.c -------------------------------------------------------------------------------- /net/mtk_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/mtk_tcp.h -------------------------------------------------------------------------------- /net/ndisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/ndisc.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/net.c -------------------------------------------------------------------------------- /net/net6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/net6.c -------------------------------------------------------------------------------- /net/net_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/net_rand.h -------------------------------------------------------------------------------- /net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/nfs.c -------------------------------------------------------------------------------- /net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/nfs.h -------------------------------------------------------------------------------- /net/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/pcap.c -------------------------------------------------------------------------------- /net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/ping.c -------------------------------------------------------------------------------- /net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/ping.h -------------------------------------------------------------------------------- /net/ping6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/ping6.c -------------------------------------------------------------------------------- /net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/rarp.c -------------------------------------------------------------------------------- /net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/rarp.h -------------------------------------------------------------------------------- /net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/sntp.c -------------------------------------------------------------------------------- /net/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/tcp.c -------------------------------------------------------------------------------- /net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/tftp.c -------------------------------------------------------------------------------- /net/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/udp.c -------------------------------------------------------------------------------- /net/wget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/wget.c -------------------------------------------------------------------------------- /net/wol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/wol.c -------------------------------------------------------------------------------- /net/wol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/net/wol.h -------------------------------------------------------------------------------- /post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/post/Makefile -------------------------------------------------------------------------------- /post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/post/post.c -------------------------------------------------------------------------------- /post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/post/tests.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | bin2c 5 | -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/scripts/config -------------------------------------------------------------------------------- /scripts/dtc/.gitignore: -------------------------------------------------------------------------------- 1 | /dtc 2 | -------------------------------------------------------------------------------- /scripts/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.4.6-g84e414b0" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig: -------------------------------------------------------------------------------- 1 | source "Kconfig.inc1" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc3: -------------------------------------------------------------------------------- 1 | source "Kconfig.inc1" 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/Kconfig -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/cmd/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/cmd/fdt.c -------------------------------------------------------------------------------- /test/cmd/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/cmd/mbr.c -------------------------------------------------------------------------------- /test/cmd/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/cmd/msr.c -------------------------------------------------------------------------------- /test/cmd/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/cmd/pwm.c -------------------------------------------------------------------------------- /test/cmd/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/cmd/rw.c -------------------------------------------------------------------------------- /test/cmd_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/cmd_ut.c -------------------------------------------------------------------------------- /test/dm/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/acpi.c -------------------------------------------------------------------------------- /test/dm/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/acpi.h -------------------------------------------------------------------------------- /test/dm/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/adc.c -------------------------------------------------------------------------------- /test/dm/axi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/axi.c -------------------------------------------------------------------------------- /test/dm/blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/blk.c -------------------------------------------------------------------------------- /test/dm/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/bus.c -------------------------------------------------------------------------------- /test/dm/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/clk.c -------------------------------------------------------------------------------- /test/dm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/core.c -------------------------------------------------------------------------------- /test/dm/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/cpu.c -------------------------------------------------------------------------------- /test/dm/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/dma.c -------------------------------------------------------------------------------- /test/dm/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/dsa.c -------------------------------------------------------------------------------- /test/dm/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/eth.c -------------------------------------------------------------------------------- /test/dm/ffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/ffa.c -------------------------------------------------------------------------------- /test/dm/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/fpga.c -------------------------------------------------------------------------------- /test/dm/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/gpio.c -------------------------------------------------------------------------------- /test/dm/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/host.c -------------------------------------------------------------------------------- /test/dm/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/i2c.c -------------------------------------------------------------------------------- /test/dm/i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/i2s.c -------------------------------------------------------------------------------- /test/dm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/irq.c -------------------------------------------------------------------------------- /test/dm/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/led.c -------------------------------------------------------------------------------- /test/dm/mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/mdio.c -------------------------------------------------------------------------------- /test/dm/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/misc.c -------------------------------------------------------------------------------- /test/dm/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/mmc.c -------------------------------------------------------------------------------- /test/dm/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/nand.c -------------------------------------------------------------------------------- /test/dm/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/nop.c -------------------------------------------------------------------------------- /test/dm/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/osd.c -------------------------------------------------------------------------------- /test/dm/p2sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/p2sb.c -------------------------------------------------------------------------------- /test/dm/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/part.c -------------------------------------------------------------------------------- /test/dm/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/pch.c -------------------------------------------------------------------------------- /test/dm/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/pci.c -------------------------------------------------------------------------------- /test/dm/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/phy.c -------------------------------------------------------------------------------- /test/dm/pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/pmc.c -------------------------------------------------------------------------------- /test/dm/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/pmic.c -------------------------------------------------------------------------------- /test/dm/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/pwm.c -------------------------------------------------------------------------------- /test/dm/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/qfw.c -------------------------------------------------------------------------------- /test/dm/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/ram.c -------------------------------------------------------------------------------- /test/dm/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/read.c -------------------------------------------------------------------------------- /test/dm/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/rng.c -------------------------------------------------------------------------------- /test/dm/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/rtc.c -------------------------------------------------------------------------------- /test/dm/scmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/scmi.c -------------------------------------------------------------------------------- /test/dm/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/scsi.c -------------------------------------------------------------------------------- /test/dm/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/sf.c -------------------------------------------------------------------------------- /test/dm/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/sm.c -------------------------------------------------------------------------------- /test/dm/smem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/smem.c -------------------------------------------------------------------------------- /test/dm/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/soc.c -------------------------------------------------------------------------------- /test/dm/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/spi.c -------------------------------------------------------------------------------- /test/dm/spmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/spmi.c -------------------------------------------------------------------------------- /test/dm/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/tag.c -------------------------------------------------------------------------------- /test/dm/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/tee.c -------------------------------------------------------------------------------- /test/dm/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/tpm.c -------------------------------------------------------------------------------- /test/dm/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/usb.c -------------------------------------------------------------------------------- /test/dm/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/dm/wdt.c -------------------------------------------------------------------------------- /test/env/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/env/fdt.c -------------------------------------------------------------------------------- /test/hush/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/hush/if.c -------------------------------------------------------------------------------- /test/lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/lib/lmb.c -------------------------------------------------------------------------------- /test/lib/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/lib/rsa.c -------------------------------------------------------------------------------- /test/lib/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/lib/str.c -------------------------------------------------------------------------------- /test/py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/run -------------------------------------------------------------------------------- /test/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/test/ut.c -------------------------------------------------------------------------------- /tools/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/Kconfig -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/binman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/binman/README.rst: -------------------------------------------------------------------------------- 1 | binman.rst -------------------------------------------------------------------------------- /tools/binman/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/binman/binman: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /tools/binman/test/aes256.bin: -------------------------------------------------------------------------------- 1 | 1234567890abcdefghijklmnopqrstuv -------------------------------------------------------------------------------- /tools/binman/test/files/1.dat: -------------------------------------------------------------------------------- 1 | sorry I'm late 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/ignored_dir.dat/ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/binman/test/files/not-this-one: -------------------------------------------------------------------------------- 1 | this does not have a .dat extenion 2 | -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_bad.c: -------------------------------------------------------------------------------- 1 | u_boot_binman_syms.c -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_x86.c: -------------------------------------------------------------------------------- 1 | u_boot_binman_syms.c -------------------------------------------------------------------------------- /tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/buildman/README.rst: -------------------------------------------------------------------------------- 1 | buildman.rst -------------------------------------------------------------------------------- /tools/buildman/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /tools/buildman/requirements.txt: -------------------------------------------------------------------------------- 1 | filelock==3.0.12 2 | importlib_resources==6.5.2 3 | -------------------------------------------------------------------------------- /tools/buildman/test/configs/board0_defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_BOARD0=y 2 | -------------------------------------------------------------------------------- /tools/buildman/test/configs/board2_defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_BOARD2=y 2 | -------------------------------------------------------------------------------- /tools/dtoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/dtoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dtoc/dtoc: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /tools/dtoc/test_fdt: -------------------------------------------------------------------------------- 1 | test_fdt.py -------------------------------------------------------------------------------- /tools/env/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /tools/env/ctype.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/ctype.c" 2 | -------------------------------------------------------------------------------- /tools/env/env_attr.c: -------------------------------------------------------------------------------- 1 | #include "../../env/attr.c" 2 | -------------------------------------------------------------------------------- /tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../env/flags.c" 2 | -------------------------------------------------------------------------------- /tools/envcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/envcrc.c -------------------------------------------------------------------------------- /tools/expo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/expo.py -------------------------------------------------------------------------------- /tools/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/kwboot.c -------------------------------------------------------------------------------- /tools/microcode-tool: -------------------------------------------------------------------------------- 1 | microcode-tool.py -------------------------------------------------------------------------------- /tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/ncb.c -------------------------------------------------------------------------------- /tools/patman/.checkpatch.conf: -------------------------------------------------------------------------------- 1 | ../../.checkpatch.conf -------------------------------------------------------------------------------- /tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/patman/README.rst: -------------------------------------------------------------------------------- 1 | patman.rst -------------------------------------------------------------------------------- /tools/patman/patman: -------------------------------------------------------------------------------- 1 | __main__.py -------------------------------------------------------------------------------- /tools/patman/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --doctest-modules 3 | -------------------------------------------------------------------------------- /tools/rkmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/rkmux.py -------------------------------------------------------------------------------- /tools/rksd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/rksd.c -------------------------------------------------------------------------------- /tools/rkspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/rkspi.c -------------------------------------------------------------------------------- /tools/sfspl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtk-openwrt/u-boot/HEAD/tools/sfspl.c -------------------------------------------------------------------------------- /tools/u_boot_pylib/requirements.txt: -------------------------------------------------------------------------------- 1 | concurrencytest==0.1.2 2 | -------------------------------------------------------------------------------- /tools/u_boot_pylib/u_boot_pylib: -------------------------------------------------------------------------------- 1 | __main__.py --------------------------------------------------------------------------------