├── .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-arm.c ├── api_platform-mips.c ├── api_platform-powerpc.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 │ │ │ ├── sctlr.S │ │ │ ├── smccc-call.S │ │ │ ├── start.S │ │ │ ├── stv0991 │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── lowlevel.S │ │ │ │ ├── pinmux.c │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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-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-evm.dts │ │ ├── am3517-som.dtsi │ │ ├── am3517-u-boot.dtsi │ │ ├── am3517.dtsi │ │ ├── am35xx-clocks.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 │ │ ├── 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-synology-ds116.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-u-boot.dtsi │ │ ├── ast2600.dtsi │ │ ├── at91-kstr-sama5d27-u-boot.dtsi │ │ ├── at91-kstr-sama5d27.dts │ │ ├── at91-sam9x60_curiosity-u-boot.dtsi │ │ ├── at91-sam9x60_curiosity.dts │ │ ├── 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-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 │ │ ├── at91sam9xe.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 │ │ ├── bcm47622.dtsi │ │ ├── bcm4908.dtsi │ │ ├── bcm4912.dtsi │ │ ├── bcm5301x.dtsi │ │ ├── bcm63138.dtsi │ │ ├── bcm63146.dtsi │ │ ├── bcm63148.dtsi │ │ ├── bcm63158.dtsi │ │ ├── bcm63178.dtsi │ │ ├── bcm6756.dtsi │ │ ├── bcm6813.dtsi │ │ ├── bcm6846.dtsi │ │ ├── bcm6855.dtsi │ │ ├── bcm6856.dtsi │ │ ├── bcm6858.dtsi │ │ ├── bcm6878.dtsi │ │ ├── bcm7xxx.dts │ │ ├── bcm947622.dts │ │ ├── bcm94908.dts │ │ ├── bcm94912.dts │ │ ├── bcm963138.dts │ │ ├── bcm963146.dts │ │ ├── bcm963148.dts │ │ ├── bcm963158.dts │ │ ├── bcm963178.dts │ │ ├── bcm96753ref.dts │ │ ├── bcm96756.dts │ │ ├── bcm96813.dts │ │ ├── bcm968360bg.dts │ │ ├── bcm96846.dts │ │ ├── bcm96855.dts │ │ ├── bcm96856.dts │ │ ├── bcm96858.dts │ │ ├── bcm968580xref.dts │ │ ├── bcm96878.dts │ │ ├── beacon-renesom-baseboard.dtsi │ │ ├── beacon-renesom-som.dtsi │ │ ├── bitmain-antminer-s9.dts │ │ ├── bubblegum_96.dts │ │ ├── ca-presidio-engboard.dts │ │ ├── cat875.dtsi │ │ ├── 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-evm.dts │ │ ├── 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 │ │ ├── dragonboard410c-uboot.dtsi │ │ ├── dragonboard410c.dts │ │ ├── dragonboard820c-uboot.dtsi │ │ ├── dragonboard820c.dts │ │ ├── dragonboard845c-uboot.dtsi │ │ ├── dragonboard845c.dts │ │ ├── ebisu.dtsi │ │ ├── elpida_ecb240abacn.dtsi │ │ ├── ethernut5.dts │ │ ├── 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 │ │ ├── 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-var1.dts │ │ ├── fsl-ls1028a-kontron-sl28-var2-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var2.dts │ │ ├── fsl-ls1028a-kontron-sl28-var3-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var3.dts │ │ ├── fsl-ls1028a-kontron-sl28-var4-u-boot.dtsi │ │ ├── fsl-ls1028a-kontron-sl28-var4.dts │ │ ├── fsl-ls1028a-kontron-sl28.dts │ │ ├── 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-pinfunc.h │ │ ├── imx23-u-boot.dtsi │ │ ├── imx23.dtsi │ │ ├── imx28-evk-u-boot.dtsi │ │ ├── imx28-evk.dts │ │ ├── imx28-lwe.dtsi │ │ ├── imx28-pinfunc.h │ │ ├── imx28-u-boot.dtsi │ │ ├── imx28-xea-u-boot.dtsi │ │ ├── imx28-xea.dts │ │ ├── imx28.dtsi │ │ ├── imx51-babbage.dts │ │ ├── imx51-pinfunc.h │ │ ├── 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-pinfunc.h │ │ ├── imx53-ppd-uboot.dtsi │ │ ├── imx53-ppd.dts │ │ ├── imx53-qsb-common.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-pdk2.dts │ │ ├── imx6dl-dhcom-picoitx-u-boot.dtsi │ │ ├── imx6dl-dhcom-picoitx.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-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.dts │ │ ├── imx6dl-nitrogen6x.dts │ │ ├── imx6dl-pico-u-boot.dtsi │ │ ├── imx6dl-pico.dts │ │ ├── imx6dl-pinfunc.h │ │ ├── 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-tqma6a.dtsi │ │ ├── imx6dl-tqma6b.dtsi │ │ ├── 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-dhcom-pdk2.dts │ │ ├── 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.dts │ │ ├── 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-pinfunc.h │ │ ├── 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-tqma6a.dtsi │ │ ├── imx6q-tqma6b.dtsi │ │ ├── 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.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.dtsi │ │ ├── imx6qdl-tqma6.dtsi │ │ ├── imx6qdl-tqma6a.dtsi │ │ ├── imx6qdl-tqma6b.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 │ │ ├── imx6s-dhcom-drc02.dts │ │ ├── imx6sl-evk.dts │ │ ├── imx6sl-pinfunc.h │ │ ├── imx6sl.dtsi │ │ ├── imx6sll-evk-u-boot.dtsi │ │ ├── imx6sll-evk.dts │ │ ├── imx6sll-pinfunc.h │ │ ├── imx6sll.dtsi │ │ ├── imx6sx-pinfunc.h │ │ ├── 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-udoo-neo-basic.dts │ │ ├── imx6sx-udoo-neo-extended.dts │ │ ├── imx6sx-udoo-neo-full.dts │ │ ├── imx6sx-udoo-neo.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-pinfunc.h │ │ ├── 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-pinfunc-snvs.h │ │ ├── imx6ull-pinfunc.h │ │ ├── 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-bsh-smm-m2.dts │ │ ├── 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-pinfunc.h │ │ ├── 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-warp.dts │ │ ├── imx7s.dtsi │ │ ├── imx7ulp-com-u-boot.dtsi │ │ ├── imx7ulp-com.dts │ │ ├── imx7ulp-evk.dts │ │ ├── imx7ulp-pinfunc.h │ │ ├── imx7ulp-uboot.dtsi │ │ ├── imx7ulp.dtsi │ │ ├── imx8-deneb.dts │ │ ├── imx8-giedi.dts │ │ ├── imx8mm-beacon-baseboard.dtsi │ │ ├── imx8mm-beacon-kit-u-boot.dtsi │ │ ├── imx8mm-beacon-kit.dts │ │ ├── imx8mm-beacon-som.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-evk.dts │ │ ├── imx8mm-evk.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-pinfunc.h │ │ ├── imx8mm-tqma8mqml.dtsi │ │ ├── imx8mm-u-boot.dtsi │ │ ├── imx8mm-venice-gw700x-u-boot.dtsi │ │ ├── imx8mm-venice-gw700x.dtsi │ │ ├── imx8mm-venice-gw71xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw71xx-0x.dts │ │ ├── imx8mm-venice-gw71xx.dtsi │ │ ├── imx8mm-venice-gw72xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw72xx-0x.dts │ │ ├── imx8mm-venice-gw72xx.dtsi │ │ ├── imx8mm-venice-gw73xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw73xx-0x.dts │ │ ├── imx8mm-venice-gw73xx.dtsi │ │ ├── imx8mm-venice-gw7901-u-boot.dtsi │ │ ├── imx8mm-venice-gw7901.dts │ │ ├── imx8mm-venice-gw7902-u-boot.dtsi │ │ ├── imx8mm-venice-gw7902.dts │ │ ├── imx8mm-venice-gw7903-u-boot.dtsi │ │ ├── imx8mm-venice-gw7903.dts │ │ ├── imx8mm-venice-gw7904-u-boot.dtsi │ │ ├── imx8mm-venice-gw7904.dts │ │ ├── imx8mm-venice-gw7905-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw7905-0x.dts │ │ ├── imx8mm-venice-gw7905.dtsi │ │ ├── imx8mm-venice-u-boot.dtsi │ │ ├── imx8mm-venice.dts │ │ ├── imx8mm-verdin-dev.dtsi │ │ ├── imx8mm-verdin-wifi-dev-u-boot.dtsi │ │ ├── imx8mm-verdin-wifi-dev.dts │ │ ├── imx8mm-verdin-wifi.dtsi │ │ ├── imx8mm-verdin.dtsi │ │ ├── imx8mm.dtsi │ │ ├── imx8mn-beacon-baseboard.dtsi │ │ ├── imx8mn-beacon-kit-u-boot.dtsi │ │ ├── imx8mn-beacon-kit.dts │ │ ├── imx8mn-beacon-som.dtsi │ │ ├── imx8mn-bsh-smm-s2-common.dtsi │ │ ├── imx8mn-bsh-smm-s2-u-boot-common.dtsi │ │ ├── imx8mn-bsh-smm-s2-u-boot.dtsi │ │ ├── imx8mn-bsh-smm-s2.dts │ │ ├── imx8mn-bsh-smm-s2pro-u-boot.dtsi │ │ ├── imx8mn-bsh-smm-s2pro.dts │ │ ├── imx8mn-ddr4-evk-u-boot.dtsi │ │ ├── imx8mn-ddr4-evk.dts │ │ ├── imx8mn-evk-u-boot.dtsi │ │ ├── imx8mn-evk.dts │ │ ├── imx8mn-evk.dtsi │ │ ├── imx8mn-pinfunc.h │ │ ├── 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-gw7902.dts │ │ ├── imx8mn-venice-u-boot.dtsi │ │ ├── imx8mn-venice.dts │ │ ├── imx8mn.dtsi │ │ ├── imx8mp-beacon-kit-u-boot.dtsi │ │ ├── imx8mp-beacon-kit.dts │ │ ├── imx8mp-beacon-som.dtsi │ │ ├── imx8mp-data-modul-edm-sbc-u-boot.dtsi │ │ ├── imx8mp-data-modul-edm-sbc.dts │ │ ├── imx8mp-dhcom-pdk-overlay-eth2xfast.dts │ │ ├── imx8mp-dhcom-pdk2-u-boot.dtsi │ │ ├── imx8mp-dhcom-pdk2.dts │ │ ├── imx8mp-dhcom-pdk3-overlay-rev100.dts │ │ ├── imx8mp-dhcom-pdk3-u-boot.dtsi │ │ ├── imx8mp-dhcom-pdk3.dts │ │ ├── imx8mp-dhcom-som-overlay-eth1xfast.dts │ │ ├── imx8mp-dhcom-som-overlay-eth2xfast.dts │ │ ├── imx8mp-dhcom-som-overlay-rev100.dts │ │ ├── imx8mp-dhcom-som.dtsi │ │ ├── imx8mp-dhcom-u-boot.dtsi │ │ ├── imx8mp-evk-u-boot.dtsi │ │ ├── imx8mp-evk.dts │ │ ├── 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-phyboard-pollux-rdk-u-boot.dtsi │ │ ├── imx8mp-phyboard-pollux-rdk.dts │ │ ├── imx8mp-phycore-som.dtsi │ │ ├── imx8mp-pinfunc.h │ │ ├── imx8mp-rsb3720-a1-u-boot.dtsi │ │ ├── imx8mp-rsb3720-a1.dts │ │ ├── imx8mp-u-boot.dtsi │ │ ├── imx8mp-venice-gw702x-u-boot.dtsi │ │ ├── imx8mp-venice-gw702x.dtsi │ │ ├── imx8mp-venice-gw71xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw71xx-2x.dts │ │ ├── imx8mp-venice-gw71xx.dtsi │ │ ├── imx8mp-venice-gw72xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw72xx-2x.dts │ │ ├── imx8mp-venice-gw72xx.dtsi │ │ ├── imx8mp-venice-gw73xx-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw73xx-2x.dts │ │ ├── imx8mp-venice-gw73xx.dtsi │ │ ├── imx8mp-venice-gw74xx-u-boot.dtsi │ │ ├── imx8mp-venice-gw74xx.dts │ │ ├── imx8mp-venice-gw7905-2x-u-boot.dtsi │ │ ├── imx8mp-venice-gw7905-2x.dts │ │ ├── imx8mp-venice-gw7905.dtsi │ │ ├── imx8mp-venice-u-boot.dtsi │ │ ├── imx8mp-venice.dts │ │ ├── imx8mp-verdin-dev.dtsi │ │ ├── imx8mp-verdin-wifi-dev-u-boot.dtsi │ │ ├── imx8mp-verdin-wifi-dev.dts │ │ ├── imx8mp-verdin-wifi.dtsi │ │ ├── imx8mp-verdin.dtsi │ │ ├── imx8mp.dtsi │ │ ├── imx8mq-cm-u-boot.dtsi │ │ ├── imx8mq-cm.dts │ │ ├── imx8mq-evk-u-boot.dtsi │ │ ├── imx8mq-evk.dts │ │ ├── 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-pinfunc.h │ │ ├── imx8mq-u-boot.dtsi │ │ ├── imx8mq.dtsi │ │ ├── imx8qm-cgtqmx8.dts │ │ ├── imx8qm-dmsse20-a1.dts │ │ ├── imx8qm-rom7720-a1.dts │ │ ├── imx8qm-u-boot.dtsi │ │ ├── imx8qxp-capricorn-u-boot.dtsi │ │ ├── imx8qxp-capricorn.dtsi │ │ ├── imx8qxp-u-boot.dtsi │ │ ├── imx8ulp-evk-u-boot.dtsi │ │ ├── imx8ulp-evk.dts │ │ ├── imx8ulp-pinfunc.h │ │ ├── imx8ulp.dtsi │ │ ├── imx93-11x11-evk-u-boot.dtsi │ │ ├── imx93-11x11-evk.dts │ │ ├── imx93-pinfunc.h │ │ ├── imx93.dtsi │ │ ├── imxrt1020-evk-u-boot.dtsi │ │ ├── imxrt1020-evk.dts │ │ ├── imxrt1020-pinfunc.h │ │ ├── imxrt1020.dtsi │ │ ├── imxrt1050-evk-u-boot.dtsi │ │ ├── imxrt1050-evk.dts │ │ ├── imxrt1050-pinfunc.h │ │ ├── imxrt1050.dtsi │ │ ├── imxrt1170-evk-u-boot.dtsi │ │ ├── imxrt1170-evk.dts │ │ ├── imxrt1170-pinfunc.h │ │ ├── imxrt1170.dtsi │ │ ├── include │ │ │ └── dt-bindings │ │ ├── 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-main.dtsi │ │ ├── k3-am62-mcu.dtsi │ │ ├── k3-am62-thermal.dtsi │ │ ├── k3-am62-verdin-dev.dtsi │ │ ├── k3-am62-verdin-wifi.dtsi │ │ ├── k3-am62-verdin.dtsi │ │ ├── k3-am62-wakeup.dtsi │ │ ├── k3-am62.dtsi │ │ ├── k3-am625-beagleplay-ddr4-1600MTs.dtsi │ │ ├── k3-am625-beagleplay-u-boot.dtsi │ │ ├── k3-am625-beagleplay.dts │ │ ├── k3-am625-r5-beagleplay.dts │ │ ├── k3-am625-r5-sk.dts │ │ ├── k3-am625-sk-binman.dtsi │ │ ├── k3-am625-sk-u-boot.dtsi │ │ ├── k3-am625-sk.dts │ │ ├── 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-am625-verdin-wifi-dev.dts │ │ ├── k3-am625.dtsi │ │ ├── k3-am62a-ddr-1866mhz-32bit.dtsi │ │ ├── k3-am62a-ddr.dtsi │ │ ├── k3-am62a-main.dtsi │ │ ├── k3-am62a-mcu.dtsi │ │ ├── k3-am62a-sk-binman.dtsi │ │ ├── k3-am62a-thermal.dtsi │ │ ├── k3-am62a-wakeup.dtsi │ │ ├── k3-am62a.dtsi │ │ ├── k3-am62a7-r5-sk.dts │ │ ├── k3-am62a7-sk-u-boot.dtsi │ │ ├── k3-am62a7-sk.dts │ │ ├── k3-am62a7.dtsi │ │ ├── k3-am62x-sk-common.dtsi │ │ ├── k3-am62x-sk-ddr4-1600MTs.dtsi │ │ ├── k3-am64-ddr.dtsi │ │ ├── k3-am64-evm-ddr4-1600MTs.dtsi │ │ ├── k3-am64-main.dtsi │ │ ├── k3-am64-mcu.dtsi │ │ ├── k3-am64-sk-lp4-1600MTs.dtsi │ │ ├── k3-am64-thermal.dtsi │ │ ├── k3-am64.dtsi │ │ ├── k3-am642-evm-u-boot.dtsi │ │ ├── k3-am642-evm.dts │ │ ├── k3-am642-r5-evm.dts │ │ ├── k3-am642-r5-sk.dts │ │ ├── k3-am642-sk-u-boot.dtsi │ │ ├── k3-am642-sk.dts │ │ ├── k3-am642.dtsi │ │ ├── k3-am64x-binman.dtsi │ │ ├── k3-am65-iot2050-boot-image.dtsi │ │ ├── k3-am65-iot2050-common-pg1.dtsi │ │ ├── k3-am65-iot2050-common-pg2-u-boot.dtsi │ │ ├── k3-am65-iot2050-common-pg2.dtsi │ │ ├── k3-am65-iot2050-common-u-boot.dtsi │ │ ├── k3-am65-iot2050-common.dtsi │ │ ├── k3-am65-iot2050-spl.dts │ │ ├── k3-am65-main.dtsi │ │ ├── k3-am65-mcu.dtsi │ │ ├── k3-am65-wakeup.dtsi │ │ ├── k3-am65.dtsi │ │ ├── k3-am6528-iot2050-basic-common.dtsi │ │ ├── k3-am6528-iot2050-basic-pg2-u-boot.dtsi │ │ ├── k3-am6528-iot2050-basic-pg2.dts │ │ ├── k3-am6528-iot2050-basic-u-boot.dtsi │ │ ├── k3-am6528-iot2050-basic.dts │ │ ├── k3-am654-base-board-ddr4-1600MTs.dtsi │ │ ├── k3-am654-base-board-u-boot.dtsi │ │ ├── k3-am654-base-board.dts │ │ ├── k3-am654-ddr.dtsi │ │ ├── k3-am654-industrial-thermal.dtsi │ │ ├── k3-am654-r5-base-board.dts │ │ ├── k3-am654.dtsi │ │ ├── k3-am6548-iot2050-advanced-common.dtsi │ │ ├── k3-am6548-iot2050-advanced-m2-bkey-ekey-pcie-overlay.dtso │ │ ├── k3-am6548-iot2050-advanced-m2-bkey-usb3-overlay.dtso │ │ ├── k3-am6548-iot2050-advanced-m2-u-boot.dtsi │ │ ├── k3-am6548-iot2050-advanced-m2.dts │ │ ├── k3-am6548-iot2050-advanced-pg2-u-boot.dtsi │ │ ├── k3-am6548-iot2050-advanced-pg2.dts │ │ ├── k3-am6548-iot2050-advanced-u-boot.dtsi │ │ ├── k3-am6548-iot2050-advanced.dts │ │ ├── k3-am65x-binman.dtsi │ │ ├── k3-am68-sk-base-board-u-boot.dtsi │ │ ├── k3-am68-sk-base-board.dts │ │ ├── k3-am68-sk-r5-base-board.dts │ │ ├── k3-am68-sk-som.dtsi │ │ ├── k3-binman.dtsi │ │ ├── k3-j7200-binman.dtsi │ │ ├── k3-j7200-common-proc-board-u-boot.dtsi │ │ ├── k3-j7200-common-proc-board.dts │ │ ├── k3-j7200-ddr-evm-lp4-2666.dtsi │ │ ├── k3-j7200-main.dtsi │ │ ├── k3-j7200-mcu-wakeup.dtsi │ │ ├── k3-j7200-r5-common-proc-board.dts │ │ ├── k3-j7200-som-p0.dtsi │ │ ├── k3-j7200-thermal.dtsi │ │ ├── k3-j7200.dtsi │ │ ├── k3-j721e-binman.dtsi │ │ ├── k3-j721e-common-proc-board-u-boot.dtsi │ │ ├── k3-j721e-common-proc-board.dts │ │ ├── k3-j721e-ddr-evm-lp4-4266.dtsi │ │ ├── k3-j721e-ddr-sk-lp4-4266.dtsi │ │ ├── k3-j721e-ddr.dtsi │ │ ├── k3-j721e-main.dtsi │ │ ├── k3-j721e-mcu-wakeup.dtsi │ │ ├── k3-j721e-r5-common-proc-board.dts │ │ ├── k3-j721e-r5-sk.dts │ │ ├── k3-j721e-sk-u-boot.dtsi │ │ ├── k3-j721e-sk.dts │ │ ├── k3-j721e-som-p0.dtsi │ │ ├── k3-j721e-thermal.dtsi │ │ ├── k3-j721e.dtsi │ │ ├── k3-j721s2-binman.dtsi │ │ ├── k3-j721s2-common-proc-board-u-boot.dtsi │ │ ├── k3-j721s2-common-proc-board.dts │ │ ├── k3-j721s2-ddr-evm-lp4-4266.dtsi │ │ ├── k3-j721s2-ddr.dtsi │ │ ├── k3-j721s2-main.dtsi │ │ ├── k3-j721s2-mcu-wakeup.dtsi │ │ ├── k3-j721s2-r5-common-proc-board.dts │ │ ├── k3-j721s2-som-p0.dtsi │ │ ├── k3-j721s2-thermal.dtsi │ │ ├── k3-j721s2.dtsi │ │ ├── k3-pinctrl.h │ │ ├── k3-serdes.h │ │ ├── keystone-clocks.dtsi │ │ ├── keystone-k2e-clocks.dtsi │ │ ├── keystone-k2e-evm-u-boot.dtsi │ │ ├── keystone-k2e-evm.dts │ │ ├── keystone-k2e-netcp.dtsi │ │ ├── keystone-k2e.dtsi │ │ ├── keystone-k2g-evm-u-boot.dtsi │ │ ├── keystone-k2g-evm.dts │ │ ├── keystone-k2g-generic-u-boot.dtsi │ │ ├── keystone-k2g-generic.dts │ │ ├── keystone-k2g-ice-u-boot.dtsi │ │ ├── keystone-k2g-ice.dts │ │ ├── keystone-k2g-netcp.dtsi │ │ ├── keystone-k2g.dtsi │ │ ├── keystone-k2hk-clocks.dtsi │ │ ├── keystone-k2hk-evm-u-boot.dtsi │ │ ├── keystone-k2hk-evm.dts │ │ ├── keystone-k2hk-netcp.dtsi │ │ ├── keystone-k2hk.dtsi │ │ ├── keystone-k2l-clocks.dtsi │ │ ├── keystone-k2l-evm-u-boot.dtsi │ │ ├── keystone-k2l-evm.dts │ │ ├── keystone-k2l-netcp.dtsi │ │ ├── keystone-k2l.dtsi │ │ ├── keystone.dtsi │ │ ├── kirkwood-6192.dtsi │ │ ├── kirkwood-6281.dtsi │ │ ├── kirkwood-6282.dtsi │ │ ├── kirkwood-98dx4122.dtsi │ │ ├── kirkwood-atl-sbx81lifkw.dts │ │ ├── kirkwood-atl-sbx81lifxcat.dts │ │ ├── kirkwood-blackarmor-nas220.dts │ │ ├── kirkwood-d2net-u-boot.dtsi │ │ ├── kirkwood-d2net.dts │ │ ├── kirkwood-dns325.dts │ │ ├── kirkwood-dnskw.dtsi │ │ ├── kirkwood-dockstar.dts │ │ ├── kirkwood-dreamplug.dts │ │ ├── kirkwood-ds109.dts │ │ ├── kirkwood-goflexnet.dts │ │ ├── kirkwood-guruplug-server-plus.dts │ │ ├── kirkwood-ib62x0.dts │ │ ├── kirkwood-iconnect.dts │ │ ├── kirkwood-is2-u-boot.dtsi │ │ ├── kirkwood-is2.dts │ │ ├── kirkwood-lschlv2-u-boot.dtsi │ │ ├── kirkwood-lschlv2.dts │ │ ├── kirkwood-lsxhl-u-boot.dtsi │ │ ├── kirkwood-lsxhl.dts │ │ ├── kirkwood-lsxl.dtsi │ │ ├── kirkwood-net2big-u-boot.dtsi │ │ ├── kirkwood-net2big.dts │ │ ├── kirkwood-netxbig.dtsi │ │ ├── kirkwood-ns2-common.dtsi │ │ ├── kirkwood-ns2-u-boot.dtsi │ │ ├── kirkwood-ns2.dts │ │ ├── kirkwood-ns2lite-u-boot.dtsi │ │ ├── kirkwood-ns2lite.dts │ │ ├── kirkwood-ns2max-u-boot.dtsi │ │ ├── kirkwood-ns2max.dts │ │ ├── kirkwood-ns2mini-u-boot.dtsi │ │ ├── kirkwood-ns2mini.dts │ │ ├── kirkwood-nsa310s.dts │ │ ├── kirkwood-nsa325.dts │ │ ├── kirkwood-nsa3x0-common.dtsi │ │ ├── kirkwood-openrd-base.dts │ │ ├── kirkwood-openrd-client.dts │ │ ├── kirkwood-openrd-ultimate.dts │ │ ├── kirkwood-openrd.dtsi │ │ ├── kirkwood-pogo_e02.dts │ │ ├── kirkwood-pogoplug-series-4-u-boot.dtsi │ │ ├── kirkwood-pogoplug-series-4.dts │ │ ├── kirkwood-sheevaplug-common.dtsi │ │ ├── kirkwood-sheevaplug.dts │ │ ├── kirkwood-synology.dtsi │ │ ├── kirkwood.dtsi │ │ ├── logicpd-som-lv-35xx-devkit-u-boot.dtsi │ │ ├── logicpd-som-lv-35xx-devkit.dts │ │ ├── logicpd-som-lv-37xx-devkit-u-boot.dtsi │ │ ├── logicpd-som-lv-37xx-devkit.dts │ │ ├── logicpd-som-lv-baseboard.dtsi │ │ ├── logicpd-som-lv.dtsi │ │ ├── logicpd-torpedo-35xx-devkit-u-boot.dtsi │ │ ├── logicpd-torpedo-35xx-devkit.dts │ │ ├── logicpd-torpedo-37xx-devkit-u-boot.dtsi │ │ ├── logicpd-torpedo-37xx-devkit.dts │ │ ├── logicpd-torpedo-baseboard.dtsi │ │ ├── logicpd-torpedo-som.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-a1.dtsi │ │ ├── meson-axg-jethome-jethub-j100-u-boot.dtsi │ │ ├── meson-axg-jethome-jethub-j100.dts │ │ ├── meson-axg-s400-u-boot.dtsi │ │ ├── meson-axg-s400.dts │ │ ├── meson-axg.dtsi │ │ ├── meson-g12-common-u-boot.dtsi │ │ ├── meson-g12-common.dtsi │ │ ├── meson-g12.dtsi │ │ ├── meson-g12a-radxa-zero-u-boot.dtsi │ │ ├── meson-g12a-radxa-zero.dts │ │ ├── meson-g12a-sei510-u-boot.dtsi │ │ ├── meson-g12a-sei510.dts │ │ ├── meson-g12a-u200-u-boot.dtsi │ │ ├── meson-g12a-u200.dts │ │ ├── meson-g12a.dtsi │ │ ├── meson-g12b-a311d-bananapi-m2s.dts │ │ ├── meson-g12b-a311d-khadas-vim3-u-boot.dtsi │ │ ├── meson-g12b-a311d-khadas-vim3.dts │ │ ├── meson-g12b-a311d.dtsi │ │ ├── meson-g12b-bananapi-cm4-cm4io-u-boot.dtsi │ │ ├── meson-g12b-bananapi-cm4-cm4io.dts │ │ ├── meson-g12b-bananapi-cm4.dtsi │ │ ├── meson-g12b-bananapi-u-boot.dtsi │ │ ├── meson-g12b-bananapi.dtsi │ │ ├── meson-g12b-gsking-x-u-boot.dtsi │ │ ├── meson-g12b-gsking-x.dts │ │ ├── meson-g12b-gtking-pro-u-boot.dtsi │ │ ├── meson-g12b-gtking-pro.dts │ │ ├── meson-g12b-gtking-u-boot.dtsi │ │ ├── meson-g12b-gtking.dts │ │ ├── meson-g12b-khadas-vim3.dtsi │ │ ├── meson-g12b-odroid-go-ultra-u-boot.dtsi │ │ ├── meson-g12b-odroid-go-ultra.dts │ │ ├── meson-g12b-odroid-n2-plus.dts │ │ ├── meson-g12b-odroid-n2-u-boot.dtsi │ │ ├── meson-g12b-odroid-n2.dts │ │ ├── meson-g12b-odroid-n2.dtsi │ │ ├── meson-g12b-odroid-n2l-u-boot.dtsi │ │ ├── meson-g12b-odroid-n2l.dts │ │ ├── meson-g12b-odroid.dtsi │ │ ├── meson-g12b-radxa-zero2-u-boot.dtsi │ │ ├── meson-g12b-radxa-zero2.dts │ │ ├── meson-g12b-s922x-bananapi-m2s.dts │ │ ├── meson-g12b-s922x.dtsi │ │ ├── meson-g12b-w400.dtsi │ │ ├── meson-g12b.dtsi │ │ ├── meson-gx-libretech-pc.dtsi │ │ ├── meson-gx-mali450.dtsi │ │ ├── meson-gx-p23x-q20x.dtsi │ │ ├── meson-gx-u-boot.dtsi │ │ ├── meson-gx.dtsi │ │ ├── meson-gxbb-kii-pro-u-boot.dtsi │ │ ├── meson-gxbb-kii-pro.dts │ │ ├── meson-gxbb-nanopi-k2-u-boot.dtsi │ │ ├── meson-gxbb-nanopi-k2.dts │ │ ├── meson-gxbb-odroidc2-u-boot.dtsi │ │ ├── meson-gxbb-odroidc2.dts │ │ ├── meson-gxbb-p200-u-boot.dtsi │ │ ├── meson-gxbb-p200.dts │ │ ├── meson-gxbb-p201-u-boot.dtsi │ │ ├── meson-gxbb-p201.dts │ │ ├── meson-gxbb-p20x.dtsi │ │ ├── meson-gxbb-wetek-hub.dts │ │ ├── meson-gxbb-wetek-play2.dts │ │ ├── meson-gxbb-wetek-u-boot.dtsi │ │ ├── meson-gxbb-wetek.dtsi │ │ ├── meson-gxbb.dtsi │ │ ├── meson-gxl-mali.dtsi │ │ ├── meson-gxl-s805x-libretech-ac-u-boot.dtsi │ │ ├── meson-gxl-s805x-libretech-ac.dts │ │ ├── meson-gxl-s805x.dtsi │ │ ├── meson-gxl-s905d-libretech-pc-u-boot.dtsi │ │ ├── meson-gxl-s905d-libretech-pc.dts │ │ ├── meson-gxl-s905d.dtsi │ │ ├── meson-gxl-s905w-jethome-jethub-j80.dts │ │ ├── meson-gxl-s905x-khadas-vim-u-boot.dtsi │ │ ├── meson-gxl-s905x-khadas-vim.dts │ │ ├── meson-gxl-s905x-libretech-cc-u-boot.dtsi │ │ ├── meson-gxl-s905x-libretech-cc-v2-u-boot.dtsi │ │ ├── meson-gxl-s905x-libretech-cc-v2.dts │ │ ├── meson-gxl-s905x-libretech-cc.dts │ │ ├── meson-gxl-s905x-p212-u-boot.dtsi │ │ ├── meson-gxl-s905x-p212.dts │ │ ├── meson-gxl-s905x-p212.dtsi │ │ ├── meson-gxl-s905x.dtsi │ │ ├── meson-gxl-u-boot.dtsi │ │ ├── meson-gxl.dtsi │ │ ├── meson-gxm-gt1-ultimate-u-boot.dtsi │ │ ├── meson-gxm-gt1-ultimate.dts │ │ ├── meson-gxm-khadas-vim2-u-boot.dtsi │ │ ├── meson-gxm-khadas-vim2.dts │ │ ├── meson-gxm-s912-libretech-pc-u-boot.dtsi │ │ ├── meson-gxm-s912-libretech-pc.dts │ │ ├── meson-gxm-wetek-core2-u-boot.dtsi │ │ ├── meson-gxm-wetek-core2.dts │ │ ├── meson-gxm.dtsi │ │ ├── meson-khadas-vim3-u-boot.dtsi │ │ ├── meson-khadas-vim3.dtsi │ │ ├── meson-sm1-bananapi-m2-pro-u-boot.dtsi │ │ ├── meson-sm1-bananapi-m2-pro.dts │ │ ├── meson-sm1-bananapi-m5-u-boot.dtsi │ │ ├── meson-sm1-bananapi-m5.dts │ │ ├── meson-sm1-bananapi.dtsi │ │ ├── meson-sm1-khadas-vim3l-u-boot.dtsi │ │ ├── meson-sm1-khadas-vim3l.dts │ │ ├── meson-sm1-odroid-c4-u-boot.dtsi │ │ ├── meson-sm1-odroid-c4.dts │ │ ├── meson-sm1-odroid-hc4-u-boot.dtsi │ │ ├── meson-sm1-odroid-hc4.dts │ │ ├── meson-sm1-odroid.dtsi │ │ ├── meson-sm1-sei610-u-boot.dtsi │ │ ├── meson-sm1-sei610.dts │ │ ├── meson-sm1-u-boot.dtsi │ │ ├── meson-sm1.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 │ │ ├── mt7629-rfb.dts │ │ ├── mt7629.dtsi │ │ ├── mt7981-emmc-rfb.dts │ │ ├── mt7981-rfb.dts │ │ ├── mt7981-sd-rfb.dts │ │ ├── mt7981.dtsi │ │ ├── mt7986-u-boot.dtsi │ │ ├── mt7986.dtsi │ │ ├── mt7986a-bpi-r3-emmc.dts │ │ ├── mt7986a-bpi-r3-sd.dts │ │ ├── mt7986a-emmc-rfb.dts │ │ ├── mt7986a-rfb.dts │ │ ├── mt7986a-sd-rfb.dts │ │ ├── mt7986b-emmc-rfb.dts │ │ ├── mt7986b-rfb.dts │ │ ├── mt7986b-sd-rfb.dts │ │ ├── mt7988-rfb.dts │ │ ├── mt7988-sd-rfb.dts │ │ ├── mt7988-u-boot.dtsi │ │ ├── mt7988.dtsi │ │ ├── mt8183-pumpkin.dts │ │ ├── mt8183.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 │ │ ├── mxs-pinfunc.h │ │ ├── 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.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-beagle-u-boot.dtsi │ │ ├── omap3-beagle-xm-ab-u-boot.dtsi │ │ ├── omap3-beagle-xm-ab.dts │ │ ├── omap3-beagle-xm-u-boot.dtsi │ │ ├── omap3-beagle-xm.dts │ │ ├── omap3-beagle.dts │ │ ├── omap3-cpu-thermal.dtsi │ │ ├── omap3-devkit8000-u-boot.dtsi │ │ ├── omap3-devkit8000.dts │ │ ├── omap3-evm-37xx-u-boot.dtsi │ │ ├── omap3-evm-37xx.dts │ │ ├── omap3-evm-common.dtsi │ │ ├── omap3-evm-processor-common.dtsi │ │ ├── omap3-evm-u-boot.dtsi │ │ ├── omap3-evm.dts │ │ ├── omap3-igep.dtsi │ │ ├── omap3-igep0020-common.dtsi │ │ ├── omap3-igep0020-u-boot.dtsi │ │ ├── omap3-igep0020.dts │ │ ├── omap3-panel-sharp-ls037v7dw01.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 │ │ ├── omap4-l4-abe.dtsi │ │ ├── omap4-l4.dtsi │ │ ├── omap4-mcpdm.dtsi │ │ ├── omap4-panda-common.dtsi │ │ ├── omap4-panda-es.dts │ │ ├── omap4-panda.dts │ │ ├── omap4-sdp-es23plus.dts │ │ ├── omap4-sdp.dts │ │ ├── omap4-u-boot.dtsi │ │ ├── omap4.dtsi │ │ ├── omap443x-clocks.dtsi │ │ ├── omap443x.dtsi │ │ ├── omap4460.dtsi │ │ ├── omap446x-clocks.dtsi │ │ ├── omap44xx-clocks.dtsi │ │ ├── omap5-core-thermal.dtsi │ │ ├── omap5-gpu-thermal.dtsi │ │ ├── omap5-u-boot.dtsi │ │ ├── phycore-imx8mm-u-boot.dtsi │ │ ├── phycore-imx8mm.dts │ │ ├── phytium-durian.dts │ │ ├── phytium-pomelo.dts │ │ ├── poplar-pinctrl.dtsi │ │ ├── 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-u-boot.dtsi │ │ ├── px30-evb.dts │ │ ├── px30-firefly-u-boot.dtsi │ │ ├── px30-firefly.dts │ │ ├── px30-ringneck-haikou-u-boot.dtsi │ │ ├── px30-ringneck-haikou.dts │ │ ├── px30-ringneck.dtsi │ │ ├── px30-u-boot.dtsi │ │ ├── px30.dtsi │ │ ├── qcom-ipq4019.dtsi │ │ ├── qcs404-evb-uboot.dtsi │ │ ├── qcs404-evb.dts │ │ ├── qemu-arm.dts │ │ ├── qemu-arm64.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-gr-peach-u-boot.dts │ │ ├── r7s72100-gr-peach.dts │ │ ├── r7s72100.dtsi │ │ ├── r8a774a1-beacon-rzg2m-kit-u-boot.dtsi │ │ ├── r8a774a1-beacon-rzg2m-kit.dts │ │ ├── r8a774a1-hihope-rzg2m-ex.dts │ │ ├── r8a774a1-hihope-rzg2m-u-boot.dts │ │ ├── r8a774a1-hihope-rzg2m.dts │ │ ├── r8a774a1-u-boot.dtsi │ │ ├── r8a774a1.dtsi │ │ ├── r8a774b1-beacon-rzg2n-kit-u-boot.dtsi │ │ ├── r8a774b1-beacon-rzg2n-kit.dts │ │ ├── r8a774b1-hihope-rzg2n-ex.dts │ │ ├── r8a774b1-hihope-rzg2n-u-boot.dts │ │ ├── r8a774b1-hihope-rzg2n.dts │ │ ├── r8a774b1-u-boot.dtsi │ │ ├── r8a774b1.dtsi │ │ ├── r8a774c0-cat874.dts │ │ ├── r8a774c0-ek874-u-boot.dts │ │ ├── r8a774c0-ek874.dts │ │ ├── r8a774c0-u-boot.dtsi │ │ ├── r8a774c0.dtsi │ │ ├── r8a774e1-beacon-rzg2h-kit-u-boot.dtsi │ │ ├── r8a774e1-beacon-rzg2h-kit.dts │ │ ├── r8a774e1-hihope-rzg2h-ex.dts │ │ ├── r8a774e1-hihope-rzg2h-u-boot.dts │ │ ├── r8a774e1-hihope-rzg2h.dts │ │ ├── r8a774e1-u-boot.dtsi │ │ ├── r8a774e1.dtsi │ │ ├── r8a7790-lager-u-boot.dts │ │ ├── r8a7790-lager.dts │ │ ├── r8a7790-stout-u-boot.dts │ │ ├── r8a7790-stout.dts │ │ ├── r8a7790-u-boot.dtsi │ │ ├── r8a7790.dtsi │ │ ├── r8a7791-koelsch-u-boot.dts │ │ ├── r8a7791-koelsch.dts │ │ ├── r8a7791-porter-u-boot.dts │ │ ├── r8a7791-porter.dts │ │ ├── r8a7791-u-boot.dtsi │ │ ├── r8a7791.dtsi │ │ ├── r8a7792-blanche-u-boot.dts │ │ ├── r8a7792-blanche.dts │ │ ├── r8a7792-u-boot.dtsi │ │ ├── r8a7792.dtsi │ │ ├── r8a7793-gose-u-boot.dts │ │ ├── r8a7793-gose.dts │ │ ├── r8a7793-u-boot.dtsi │ │ ├── r8a7793.dtsi │ │ ├── r8a7794-alt-u-boot.dts │ │ ├── r8a7794-alt.dts │ │ ├── r8a7794-silk-u-boot.dts │ │ ├── r8a7794-silk.dts │ │ ├── r8a7794-u-boot.dtsi │ │ ├── r8a7794.dtsi │ │ ├── r8a77950-salvator-x-u-boot.dts │ │ ├── r8a77950-salvator-x.dts │ │ ├── r8a77950-u-boot.dtsi │ │ ├── r8a77950-ulcb-u-boot.dts │ │ ├── r8a77950-ulcb.dts │ │ ├── r8a77950.dtsi │ │ ├── r8a77951.dtsi │ │ ├── r8a77960-salvator-x-u-boot.dts │ │ ├── r8a77960-salvator-x.dts │ │ ├── r8a77960-u-boot.dtsi │ │ ├── r8a77960-ulcb-u-boot.dts │ │ ├── r8a77960-ulcb.dts │ │ ├── r8a77960.dtsi │ │ ├── r8a77965-salvator-x-u-boot.dts │ │ ├── r8a77965-salvator-x.dts │ │ ├── r8a77965-u-boot.dtsi │ │ ├── r8a77965-ulcb-u-boot.dts │ │ ├── r8a77965-ulcb.dts │ │ ├── r8a77965.dtsi │ │ ├── r8a77970-eagle-u-boot.dts │ │ ├── r8a77970-eagle.dts │ │ ├── r8a77970-u-boot.dtsi │ │ ├── r8a77970-v3msk-u-boot.dts │ │ ├── r8a77970-v3msk.dts │ │ ├── r8a77970.dtsi │ │ ├── r8a77980-condor-u-boot.dts │ │ ├── r8a77980-condor.dts │ │ ├── r8a77980-u-boot.dtsi │ │ ├── r8a77980-v3hsk-u-boot.dts │ │ ├── r8a77980-v3hsk.dts │ │ ├── r8a77980.dtsi │ │ ├── r8a77990-ebisu-u-boot.dts │ │ ├── r8a77990-ebisu.dts │ │ ├── r8a77990-u-boot.dtsi │ │ ├── r8a77990.dtsi │ │ ├── r8a77995-draak-u-boot.dts │ │ ├── r8a77995-draak.dts │ │ ├── r8a77995-u-boot.dtsi │ │ ├── r8a77995.dtsi │ │ ├── r8a779a0-falcon-cpu.dtsi │ │ ├── r8a779a0-falcon-csi-dsi.dtsi │ │ ├── r8a779a0-falcon-ethernet.dtsi │ │ ├── r8a779a0-falcon-u-boot.dts │ │ ├── r8a779a0-falcon.dts │ │ ├── r8a779a0-u-boot.dtsi │ │ ├── r8a779a0.dtsi │ │ ├── r8a779f0-spider-cpu.dtsi │ │ ├── r8a779f0-spider-ethernet.dtsi │ │ ├── r8a779f0-spider-u-boot.dts │ │ ├── r8a779f0-spider.dts │ │ ├── r8a779f0-u-boot.dtsi │ │ ├── r8a779f0.dtsi │ │ ├── r8a779g0-u-boot.dtsi │ │ ├── r8a779g0-white-hawk-cpu.dtsi │ │ ├── r8a779g0-white-hawk-csi-dsi.dtsi │ │ ├── r8a779g0-white-hawk-ethernet.dtsi │ │ ├── r8a779g0-white-hawk-u-boot.dts │ │ ├── r8a779g0-white-hawk.dts │ │ ├── r8a779g0.dtsi │ │ ├── r8a779x-u-boot.dtsi │ │ ├── r9a06g032-ddr.dtsi │ │ ├── r9a06g032-rzn1-snarc-u-boot.dtsi │ │ ├── r9a06g032-rzn1-snarc.dts │ │ ├── r9a06g032.dtsi │ │ ├── r9a07g044.dtsi │ │ ├── r9a07g044l2-smarc.dts │ │ ├── r9a07g044l2.dtsi │ │ ├── rk3036-sdk-u-boot.dtsi │ │ ├── rk3036-sdk.dts │ │ ├── rk3036-u-boot.dtsi │ │ ├── rk3036.dtsi │ │ ├── rk3066a-mk808-u-boot.dtsi │ │ ├── rk3066a-mk808.dts │ │ ├── rk3066a-u-boot.dtsi │ │ ├── rk3066a.dtsi │ │ ├── rk3128-evb-u-boot.dtsi │ │ ├── rk3128-evb.dts │ │ ├── rk3128-u-boot.dtsi │ │ ├── rk3128.dtsi │ │ ├── rk3188-radxarock-u-boot.dtsi │ │ ├── rk3188-radxarock.dts │ │ ├── rk3188-u-boot.dtsi │ │ ├── rk3188.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-firefly.dts │ │ ├── rk3288-firefly.dtsi │ │ ├── rk3288-miqi-u-boot.dtsi │ │ ├── rk3288-miqi.dts │ │ ├── rk3288-miqi.dtsi │ │ ├── rk3288-phycore-rdk-u-boot.dtsi │ │ ├── rk3288-phycore-rdk.dts │ │ ├── rk3288-phycore-som.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-s.dts │ │ ├── rk3288-tinker-u-boot.dtsi │ │ ├── rk3288-tinker.dts │ │ ├── rk3288-tinker.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 │ │ ├── rk3288.dtsi │ │ ├── rk3308-evb-u-boot.dtsi │ │ ├── rk3308-evb.dts │ │ ├── rk3308-roc-cc-u-boot.dtsi │ │ ├── rk3308-roc-cc.dts │ │ ├── rk3308-rock-pi-s-u-boot.dtsi │ │ ├── rk3308-rock-pi-s.dts │ │ ├── rk3308-u-boot.dtsi │ │ ├── rk3308.dtsi │ │ ├── rk3326-odroid-go2-u-boot.dtsi │ │ ├── rk3326-odroid-go2.dts │ │ ├── rk3326.dtsi │ │ ├── rk3328-evb-u-boot.dtsi │ │ ├── rk3328-evb.dts │ │ ├── rk3328-nanopi-r2c-u-boot.dtsi │ │ ├── rk3328-nanopi-r2c.dts │ │ ├── rk3328-nanopi-r2s-u-boot.dtsi │ │ ├── rk3328-nanopi-r2s.dts │ │ ├── rk3328-orangepi-r1-plus-lts-u-boot.dtsi │ │ ├── rk3328-orangepi-r1-plus-lts.dts │ │ ├── rk3328-orangepi-r1-plus-u-boot.dtsi │ │ ├── rk3328-orangepi-r1-plus.dts │ │ ├── rk3328-roc-cc-u-boot.dtsi │ │ ├── rk3328-roc-cc.dts │ │ ├── rk3328-rock-pi-e-u-boot.dtsi │ │ ├── rk3328-rock-pi-e.dts │ │ ├── rk3328-rock64-u-boot.dtsi │ │ ├── rk3328-rock64.dts │ │ ├── rk3328-sdram-ddr3-666.dtsi │ │ ├── rk3328-sdram-ddr4-666.dtsi │ │ ├── rk3328-sdram-lpddr3-1600.dtsi │ │ ├── rk3328-sdram-lpddr3-666.dtsi │ │ ├── rk3328-u-boot.dtsi │ │ ├── rk3328.dtsi │ │ ├── rk3368-geekbox-u-boot.dtsi │ │ ├── rk3368-geekbox.dts │ │ ├── rk3368-lion-haikou-u-boot.dtsi │ │ ├── rk3368-lion-haikou.dts │ │ ├── rk3368-lion.dtsi │ │ ├── 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-eaidk-610.dts │ │ ├── rk3399-evb-u-boot.dtsi │ │ ├── rk3399-evb.dts │ │ ├── rk3399-ficus-u-boot.dtsi │ │ ├── rk3399-ficus.dts │ │ ├── rk3399-firefly-u-boot.dtsi │ │ ├── rk3399-firefly.dts │ │ ├── rk3399-gru-bob-u-boot.dtsi │ │ ├── rk3399-gru-bob.dts │ │ ├── rk3399-gru-chromebook.dtsi │ │ ├── rk3399-gru-kevin-u-boot.dtsi │ │ ├── rk3399-gru-kevin.dts │ │ ├── rk3399-gru-u-boot.dtsi │ │ ├── rk3399-gru.dtsi │ │ ├── rk3399-khadas-edge-captain-u-boot.dtsi │ │ ├── rk3399-khadas-edge-captain.dts │ │ ├── rk3399-khadas-edge-u-boot.dtsi │ │ ├── rk3399-khadas-edge-v-u-boot.dtsi │ │ ├── rk3399-khadas-edge-v.dts │ │ ├── rk3399-khadas-edge.dts │ │ ├── rk3399-khadas-edge.dtsi │ │ ├── rk3399-leez-p710-u-boot.dtsi │ │ ├── rk3399-leez-p710.dts │ │ ├── rk3399-nanopc-t4-u-boot.dtsi │ │ ├── rk3399-nanopc-t4.dts │ │ ├── rk3399-nanopi-m4-2gb-u-boot.dtsi │ │ ├── rk3399-nanopi-m4-2gb.dts │ │ ├── rk3399-nanopi-m4-u-boot.dtsi │ │ ├── rk3399-nanopi-m4.dts │ │ ├── rk3399-nanopi-m4b-u-boot.dtsi │ │ ├── rk3399-nanopi-m4b.dts │ │ ├── rk3399-nanopi-neo4-u-boot.dtsi │ │ ├── rk3399-nanopi-neo4.dts │ │ ├── rk3399-nanopi-r4s-u-boot.dtsi │ │ ├── rk3399-nanopi-r4s.dts │ │ ├── rk3399-nanopi4-u-boot.dtsi │ │ ├── rk3399-nanopi4.dtsi │ │ ├── rk3399-op1-opp.dtsi │ │ ├── rk3399-opp.dtsi │ │ ├── rk3399-orangepi-u-boot.dtsi │ │ ├── rk3399-orangepi.dts │ │ ├── rk3399-pinebook-pro-u-boot.dtsi │ │ ├── rk3399-pinebook-pro.dts │ │ ├── rk3399-pinephone-pro-u-boot.dtsi │ │ ├── rk3399-pinephone-pro.dts │ │ ├── rk3399-puma-haikou-u-boot.dtsi │ │ ├── rk3399-puma-haikou.dts │ │ ├── rk3399-puma.dtsi │ │ ├── rk3399-roc-pc-mezzanine-u-boot.dtsi │ │ ├── rk3399-roc-pc-mezzanine.dts │ │ ├── rk3399-roc-pc-u-boot.dtsi │ │ ├── rk3399-roc-pc.dts │ │ ├── rk3399-roc-pc.dtsi │ │ ├── rk3399-rock-4c-plus-u-boot.dtsi │ │ ├── rk3399-rock-4c-plus.dts │ │ ├── rk3399-rock-4se-u-boot.dtsi │ │ ├── rk3399-rock-4se.dts │ │ ├── rk3399-rock-pi-4-u-boot.dtsi │ │ ├── rk3399-rock-pi-4.dtsi │ │ ├── rk3399-rock-pi-4a-u-boot.dtsi │ │ ├── rk3399-rock-pi-4a.dts │ │ ├── rk3399-rock-pi-4c-u-boot.dtsi │ │ ├── rk3399-rock-pi-4c.dts │ │ ├── rk3399-rock960-u-boot.dtsi │ │ ├── rk3399-rock960.dts │ │ ├── rk3399-rock960.dtsi │ │ ├── rk3399-rockpro64-u-boot.dtsi │ │ ├── rk3399-rockpro64.dts │ │ ├── rk3399-rockpro64.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-t-opp.dtsi │ │ ├── rk3399-u-boot.dtsi │ │ ├── rk3399.dtsi │ │ ├── rk3399pro-rock-pi-n10-u-boot.dtsi │ │ ├── rk3399pro-rock-pi-n10.dts │ │ ├── rk3399pro-u-boot.dtsi │ │ ├── rk3399pro-vmarc-som.dtsi │ │ ├── rk3399pro.dtsi │ │ ├── rk3566-anbernic-rgxx3-u-boot.dtsi │ │ ├── rk3566-anbernic-rgxx3.dts │ │ ├── rk3566-anbernic-rgxx3.dtsi │ │ ├── rk3566-quartz64-a-u-boot.dtsi │ │ ├── rk3566-quartz64-a.dts │ │ ├── rk3566-quartz64-b-u-boot.dtsi │ │ ├── rk3566-quartz64-b.dts │ │ ├── rk3566-radxa-cm3-io-u-boot.dtsi │ │ ├── rk3566-radxa-cm3-io.dts │ │ ├── rk3566-radxa-cm3.dtsi │ │ ├── rk3566-soquartz-blade-u-boot.dtsi │ │ ├── rk3566-soquartz-blade.dts │ │ ├── rk3566-soquartz-cm4-u-boot.dtsi │ │ ├── rk3566-soquartz-cm4.dts │ │ ├── rk3566-soquartz-model-a-u-boot.dtsi │ │ ├── rk3566-soquartz-model-a.dts │ │ ├── rk3566-soquartz-u-boot.dtsi │ │ ├── rk3566-soquartz.dtsi │ │ ├── rk3566.dtsi │ │ ├── rk3568-bpi-r2-pro-u-boot.dtsi │ │ ├── rk3568-bpi-r2-pro.dts │ │ ├── rk3568-evb-u-boot.dtsi │ │ ├── rk3568-evb.dts │ │ ├── rk3568-generic-u-boot.dtsi │ │ ├── rk3568-generic.dts │ │ ├── rk3568-lubancat-2-u-boot.dtsi │ │ ├── rk3568-lubancat-2.dts │ │ ├── rk3568-nanopi-r5c-u-boot.dtsi │ │ ├── rk3568-nanopi-r5c.dts │ │ ├── rk3568-nanopi-r5s-u-boot.dtsi │ │ ├── rk3568-nanopi-r5s.dts │ │ ├── rk3568-nanopi-r5s.dtsi │ │ ├── rk3568-odroid-m1-u-boot.dtsi │ │ ├── rk3568-odroid-m1.dts │ │ ├── rk3568-pinctrl.dtsi │ │ ├── rk3568-radxa-cm3i.dtsi │ │ ├── rk3568-radxa-e25-u-boot.dtsi │ │ ├── rk3568-radxa-e25.dts │ │ ├── rk3568-rock-3a-u-boot.dtsi │ │ ├── rk3568-rock-3a.dts │ │ ├── rk3568.dtsi │ │ ├── rk356x-u-boot.dtsi │ │ ├── rk356x.dtsi │ │ ├── rk3588-edgeble-neu6a-io-u-boot.dtsi │ │ ├── rk3588-edgeble-neu6a-io.dts │ │ ├── rk3588-edgeble-neu6a.dtsi │ │ ├── rk3588-edgeble-neu6b-io-u-boot.dtsi │ │ ├── rk3588-edgeble-neu6b-io.dts │ │ ├── rk3588-edgeble-neu6b.dtsi │ │ ├── rk3588-evb1-v10-u-boot.dtsi │ │ ├── rk3588-evb1-v10.dts │ │ ├── rk3588-nanopc-t6-u-boot.dtsi │ │ ├── rk3588-nanopc-t6.dts │ │ ├── rk3588-orangepi-5-plus-u-boot.dtsi │ │ ├── rk3588-orangepi-5-plus.dts │ │ ├── rk3588-pinctrl.dtsi │ │ ├── rk3588-quartzpro64-u-boot.dtsi │ │ ├── rk3588-quartzpro64.dts │ │ ├── rk3588-rock-5b-u-boot.dtsi │ │ ├── rk3588-rock-5b.dts │ │ ├── rk3588-u-boot.dtsi │ │ ├── rk3588.dtsi │ │ ├── rk3588j-u-boot.dtsi │ │ ├── rk3588j.dtsi │ │ ├── rk3588s-orangepi-5-u-boot.dtsi │ │ ├── rk3588s-orangepi-5.dts │ │ ├── rk3588s-pinctrl.dtsi │ │ ├── rk3588s-rock-5a-u-boot.dtsi │ │ ├── rk3588s-rock-5a.dts │ │ ├── rk3588s-u-boot.dtsi │ │ ├── rk3588s.dtsi │ │ ├── rk3xxx-u-boot.dtsi │ │ ├── rk3xxx.dtsi │ │ ├── rockchip-pinconf.dtsi │ │ ├── rockchip-radxa-dalang-carrier.dtsi │ │ ├── rockchip-u-boot.dtsi │ │ ├── rtsm_ve-motherboard-rs2.dtsi │ │ ├── rtsm_ve-motherboard.dtsi │ │ ├── rv1108-elgin-r1.dts │ │ ├── rv1108-evb.dts │ │ ├── rv1108-u-boot.dtsi │ │ ├── rv1108.dtsi │ │ ├── rv1126-edgeble-neu2-io-u-boot.dtsi │ │ ├── rv1126-edgeble-neu2-io.dts │ │ ├── rv1126-edgeble-neu2.dtsi │ │ ├── rv1126-pinctrl.dtsi │ │ ├── rv1126-u-boot.dtsi │ │ ├── rv1126.dtsi │ │ ├── rz-g2-beacon-u-boot.dtsi │ │ ├── rz-smarc-common.dtsi │ │ ├── rzg2l-smarc-pinfunction.dtsi │ │ ├── rzg2l-smarc-som.dtsi │ │ ├── rzg2l-smarc.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 │ │ ├── salvator-common.dtsi │ │ ├── salvator-x.dtsi │ │ ├── salvator-xs.dtsi │ │ ├── sam9x60.dtsi │ │ ├── sam9x60ek-u-boot.dtsi │ │ ├── sam9x60ek.dts │ │ ├── sama5d2-pinfunc.h │ │ ├── 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-pinfunc.h │ │ ├── sama7g5.dtsi │ │ ├── sdm845.dtsi │ │ ├── skeleton.dtsi │ │ ├── skeleton64.dtsi │ │ ├── socfpga-common-u-boot.dtsi │ │ ├── socfpga.dtsi │ │ ├── socfpga_agilex-u-boot.dtsi │ │ ├── socfpga_agilex.dtsi │ │ ├── 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 │ │ ├── st-pincfg.h │ │ ├── starqltechn-uboot.dtsi │ │ ├── starqltechn.dts │ │ ├── ste-ab8500.dtsi │ │ ├── ste-ab8505.dtsi │ │ ├── ste-dbx5x0-u-boot.dtsi │ │ ├── ste-dbx5x0.dtsi │ │ ├── ste-ux500-samsung-stemmy.dts │ │ ├── stih407-clock.dtsi │ │ ├── stih407-family.dtsi │ │ ├── stih407-pinctrl.dtsi │ │ ├── stih410-b2260-u-boot.dtsi │ │ ├── stih410-b2260.dts │ │ ├── stih410-clock.dtsi │ │ ├── stih410-pinctrl.dtsi │ │ ├── stih410.dtsi │ │ ├── stm32429i-eval-u-boot.dtsi │ │ ├── stm32429i-eval.dts │ │ ├── stm32746g-eval-u-boot.dtsi │ │ ├── stm32746g-eval.dts │ │ ├── stm32f4-pinctrl.dtsi │ │ ├── stm32f429-disco-u-boot.dtsi │ │ ├── stm32f429-disco.dts │ │ ├── stm32f429-pinctrl.dtsi │ │ ├── stm32f429.dtsi │ │ ├── stm32f469-disco-u-boot.dtsi │ │ ├── stm32f469-disco.dts │ │ ├── stm32f469-pinctrl.dtsi │ │ ├── stm32f469.dtsi │ │ ├── stm32f7-pinctrl.dtsi │ │ ├── stm32f7-u-boot.dtsi │ │ ├── stm32f746-disco-u-boot.dtsi │ │ ├── stm32f746-disco.dts │ │ ├── stm32f746-pinctrl.dtsi │ │ ├── stm32f746.dtsi │ │ ├── stm32f769-disco-u-boot.dtsi │ │ ├── stm32f769-disco.dts │ │ ├── stm32f769-pinctrl.dtsi │ │ ├── stm32h7-pinctrl.dtsi │ │ ├── stm32h7-u-boot.dtsi │ │ ├── stm32h743.dtsi │ │ ├── stm32h743i-disco-u-boot.dtsi │ │ ├── stm32h743i-disco.dts │ │ ├── stm32h743i-eval-u-boot.dtsi │ │ ├── stm32h743i-eval.dts │ │ ├── stm32h750.dtsi │ │ ├── stm32h750i-art-pi-u-boot.dtsi │ │ ├── stm32h750i-art-pi.dts │ │ ├── stm32mp13-pinctrl.dtsi │ │ ├── stm32mp13-u-boot.dtsi │ │ ├── stm32mp131.dtsi │ │ ├── stm32mp133.dtsi │ │ ├── stm32mp135.dtsi │ │ ├── stm32mp135f-dk-u-boot.dtsi │ │ ├── stm32mp135f-dk.dts │ │ ├── stm32mp13xc.dtsi │ │ ├── stm32mp13xf.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-pinctrl.dtsi │ │ ├── stm32mp15-scmi-u-boot.dtsi │ │ ├── stm32mp15-scmi.dtsi │ │ ├── stm32mp15-u-boot.dtsi │ │ ├── stm32mp151.dtsi │ │ ├── stm32mp153.dtsi │ │ ├── stm32mp153c-dhcor-drc-compact.dts │ │ ├── stm32mp157.dtsi │ │ ├── stm32mp157a-dhcor-avenger96.dts │ │ ├── stm32mp157a-dk1-scmi-u-boot.dtsi │ │ ├── stm32mp157a-dk1-scmi.dts │ │ ├── stm32mp157a-dk1-u-boot.dtsi │ │ ├── stm32mp157a-dk1.dts │ │ ├── stm32mp157a-icore-stm32mp1-ctouch2-u-boot.dtsi │ │ ├── stm32mp157a-icore-stm32mp1-ctouch2.dts │ │ ├── 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-of7.dts │ │ ├── stm32mp157a-microgea-stm32mp1-microdev2.0-u-boot.dtsi │ │ ├── stm32mp157a-microgea-stm32mp1-microdev2.0.dts │ │ ├── stm32mp157a-microgea-stm32mp1-u-boot.dtsi │ │ ├── stm32mp157a-microgea-stm32mp1.dtsi │ │ ├── stm32mp157c-dk2-scmi-u-boot.dtsi │ │ ├── stm32mp157c-dk2-scmi.dts │ │ ├── stm32mp157c-dk2-u-boot.dtsi │ │ ├── stm32mp157c-dk2.dts │ │ ├── stm32mp157c-ed1-scmi-u-boot.dtsi │ │ ├── stm32mp157c-ed1-scmi.dts │ │ ├── stm32mp157c-ed1-u-boot.dtsi │ │ ├── stm32mp157c-ed1.dts │ │ ├── stm32mp157c-ev1-scmi-u-boot.dtsi │ │ ├── stm32mp157c-ev1-scmi.dts │ │ ├── stm32mp157c-ev1-u-boot.dtsi │ │ ├── stm32mp157c-ev1.dts │ │ ├── stm32mp157c-odyssey-som-u-boot.dtsi │ │ ├── stm32mp157c-odyssey-som.dtsi │ │ ├── stm32mp157c-odyssey-u-boot.dtsi │ │ ├── stm32mp157c-odyssey.dts │ │ ├── stm32mp15xc.dtsi │ │ ├── stm32mp15xx-dhcom-drc02-u-boot.dtsi │ │ ├── stm32mp15xx-dhcom-drc02.dts │ │ ├── stm32mp15xx-dhcom-drc02.dtsi │ │ ├── stm32mp15xx-dhcom-pdk2-u-boot.dtsi │ │ ├── stm32mp15xx-dhcom-pdk2.dts │ │ ├── stm32mp15xx-dhcom-pdk2.dtsi │ │ ├── stm32mp15xx-dhcom-picoitx-u-boot.dtsi │ │ ├── stm32mp15xx-dhcom-picoitx.dts │ │ ├── stm32mp15xx-dhcom-picoitx.dtsi │ │ ├── stm32mp15xx-dhcom-som.dtsi │ │ ├── stm32mp15xx-dhcom-u-boot.dtsi │ │ ├── stm32mp15xx-dhcor-avenger96-u-boot.dtsi │ │ ├── stm32mp15xx-dhcor-avenger96.dts │ │ ├── stm32mp15xx-dhcor-avenger96.dtsi │ │ ├── stm32mp15xx-dhcor-drc-compact-u-boot.dtsi │ │ ├── stm32mp15xx-dhcor-drc-compact.dts │ │ ├── stm32mp15xx-dhcor-drc-compact.dtsi │ │ ├── stm32mp15xx-dhcor-io1v8.dtsi │ │ ├── stm32mp15xx-dhcor-som.dtsi │ │ ├── stm32mp15xx-dhcor-testbench-u-boot.dtsi │ │ ├── stm32mp15xx-dhcor-testbench.dts │ │ ├── stm32mp15xx-dhcor-u-boot.dtsi │ │ ├── stm32mp15xx-dkx.dtsi │ │ ├── stm32mp15xxaa-pinctrl.dtsi │ │ ├── stm32mp15xxab-pinctrl.dtsi │ │ ├── stm32mp15xxac-pinctrl.dtsi │ │ ├── stm32mp15xxad-pinctrl.dtsi │ │ ├── stv0991.dts │ │ ├── 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-inet-3f.dts │ │ ├── sun4i-a10-inet-3w.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 │ │ ├── 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-h616-orangepi-zero.dtsi │ │ ├── sun50i-h616-orangepi-zero2.dts │ │ ├── sun50i-h616-x96-mate.dts │ │ ├── sun50i-h616.dtsi │ │ ├── sun50i-h618-orangepi-zero3.dts │ │ ├── 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-ampe-a76.dts │ │ ├── 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-86vs.dts │ │ ├── sun5i-a13-inet-98v-rev2.dts │ │ ├── sun5i-a13-licheepi-one.dts │ │ ├── sun5i-a13-olinuxino-micro.dts │ │ ├── sun5i-a13-olinuxino.dts │ │ ├── sun5i-a13-pocketbook-touch-lux-3.dts │ │ ├── sun5i-a13-q8-tablet.dts │ │ ├── sun5i-a13-utoo-p66.dts │ │ ├── sun5i-a13.dtsi │ │ ├── sun5i-gr8-chip-pro.dts │ │ ├── sun5i-gr8-evb.dts │ │ ├── sun5i-gr8.dtsi │ │ ├── sun5i-r8-chip.dts │ │ ├── sun5i-r8.dtsi │ │ ├── sun5i-reference-design-tablet.dtsi │ │ ├── sun5i.dtsi │ │ ├── sun6i-a31-app4-evb1.dts │ │ ├── sun6i-a31-colombus.dts │ │ ├── sun6i-a31-hummingbird.dts │ │ ├── sun6i-a31-i7.dts │ │ ├── sun6i-a31-m9.dts │ │ ├── sun6i-a31-mele-a1000g-quad.dts │ │ ├── sun6i-a31-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-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 │ │ ├── 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 │ │ ├── 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-dalmore.dts │ │ ├── tegra114-u-boot.dtsi │ │ ├── tegra114.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.dtsi │ │ ├── tegra186-p2771-0000-000.dts │ │ ├── tegra186-p2771-0000-500.dts │ │ ├── tegra186-p2771-0000.dtsi │ │ ├── tegra186-u-boot.dtsi │ │ ├── tegra186.dtsi │ │ ├── tegra20-colibri.dts │ │ ├── tegra20-harmony.dts │ │ ├── tegra20-medcom-wide.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.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.dts │ │ ├── tegra30-htc-endeavoru.dts │ │ ├── tegra30-lg-p880.dts │ │ ├── tegra30-lg-p895.dts │ │ ├── tegra30-lg-x3.dtsi │ │ ├── tegra30-tamonten.dtsi │ │ ├── tegra30-tec-ng.dts │ │ ├── tegra30-u-boot.dtsi │ │ ├── tegra30.dtsi │ │ ├── thunderx-88xx.dts │ │ ├── thunderx-88xx.dtsi │ │ ├── total_compute.dts │ │ ├── tps6507x.dtsi │ │ ├── tps65217.dtsi │ │ ├── tps65910.dtsi │ │ ├── twl4030.dtsi │ │ ├── twl4030_omap3.dtsi │ │ ├── twl6030.dtsi │ │ ├── twl6030_omap4.dtsi │ │ ├── ulcb-audio-graph-card.dtsi │ │ ├── ulcb-audio-graph-card2.dtsi │ │ ├── ulcb.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-clk.dtsi │ │ ├── versal-emb-plus-ve2302-revA.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-clk-ccf.dtsi │ │ ├── versal-net-clk.dtsi │ │ ├── versal-net-emu-rev1.9.dts │ │ ├── versal-net-ipp-rev1.9-ospi.dts │ │ ├── versal-net-ipp-rev1.9.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 │ │ ├── versal-net-vn-p-b2197-00-revA-pl.dts │ │ ├── versal-net-vn-p-b2197-00-revA.dts │ │ ├── versal-net-vn-x-b2197-00-revA.dts │ │ ├── versal-net.dtsi │ │ ├── versal-v350-revA.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-01-revA-ospi.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-01-revA.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-02-revA.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-03-revA.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-04-revA-ospi.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-04-revA.dts │ │ ├── versal-vc-p-a2197-00-revA-x-prc-05-revA.dts │ │ ├── versal-vc-p-a2197-00-revA.dts │ │ ├── versal-vck190-rev1.1-x-ebm-01-revA.dts │ │ ├── versal-vck190-rev1.1-x-ebm-02-revA.dts │ │ ├── versal-vck190-rev1.1-x-ebm-03-revA.dts │ │ ├── versal-vck190-rev1.1.dts │ │ ├── versal-vck190-revA-x-ebm-01-revA.dts │ │ ├── versal-vck190-revA-x-ebm-02-revA.dts │ │ ├── versal-vck190-revA-x-ebm-03-revA.dts │ │ ├── versal-vck190-revA.dts │ │ ├── versal-vck5000-revA.dts │ │ ├── versal-vek280-revA.dts │ │ ├── versal-vek280-revB.dts │ │ ├── versal-vhk158-revA.dts │ │ ├── versal-vmk180-rev1.1-x-ebm-01-revA.dts │ │ ├── versal-vmk180-rev1.1-x-ebm-02-revA.dts │ │ ├── versal-vmk180-rev1.1-x-ebm-03-revA.dts │ │ ├── versal-vmk180-rev1.1.dts │ │ ├── versal-vmk180-revA-x-ebm-01-revA.dts │ │ ├── versal-vmk180-revA-x-ebm-02-revA.dts │ │ ├── versal-vmk180-revA-x-ebm-03-revA.dts │ │ ├── versal-vmk180-revA.dts │ │ ├── versal-vp-x-a2785-00-revA.dts │ │ ├── versal-vpk120-revA.dts │ │ ├── versal-vpk120-revB.dts │ │ ├── versal-vpk180-revA.dts │ │ ├── versal-x-ebm-01-revA.dtsi │ │ ├── versal-x-ebm-01-revA.dtso │ │ ├── versal-x-ebm-02-revA.dtsi │ │ ├── versal-x-ebm-02-revA.dtso │ │ ├── versal-x-ebm-03-revA.dtsi │ │ ├── versal-x-ebm-03-revA.dtso │ │ ├── versal.dtsi │ │ ├── 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-pinfunc.h │ │ ├── vf610-twr.dts │ │ ├── vf610.dtsi │ │ ├── vfxxx.dtsi │ │ ├── x-prc-07-i3c-revA.dtso │ │ ├── x-prc-07-revA.dtso │ │ ├── x-prc-08-revA.dtso │ │ ├── x-prc-09-i3c-revA.dtso │ │ ├── x-prc-09-revA.dtso │ │ ├── xenguest-arm64.dts │ │ ├── xilinx-versal-net-virt.dts │ │ ├── xilinx-versal-virt.dts │ │ ├── zynq-7000.dtsi │ │ ├── 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-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-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-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 │ │ │ │ ├── imx93_pins.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 │ │ │ │ ├── usb-gx.h │ │ │ │ └── usb.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 │ │ │ │ ├── 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-omap4 │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── ehci.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mux_omap4.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-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 │ │ │ │ ├── cru_rk3308.h │ │ │ │ ├── gpio.h │ │ │ │ └── grf_rk3308.h │ │ │ ├── arch-rk3328 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3368 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3399 │ │ │ │ ├── boot0.h │ │ │ │ └── gpio.h │ │ │ ├── arch-rk3568 │ │ │ │ ├── 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_rk3328.h │ │ │ │ ├── cru_rk3368.h │ │ │ │ ├── cru_rk3399.h │ │ │ │ ├── cru_rk3568.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_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 │ │ │ │ ├── misc.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-stv0991 │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── stv0991_cgu.h │ │ │ │ ├── stv0991_creg.h │ │ │ │ ├── stv0991_defs.h │ │ │ │ ├── stv0991_gpt.h │ │ │ │ ├── stv0991_periph.h │ │ │ │ └── stv0991_wdru.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_sun4i.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 │ │ │ │ ├── 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 │ │ │ │ ├── display.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 │ │ │ │ ├── display.h │ │ │ │ ├── dsi.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 │ │ ├── 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-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 │ │ └── zimage.c │ ├── mach-apple │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── lowlevel_init.S │ │ ├── rtkit.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 │ │ │ ├── eflash.c │ │ │ ├── lowlevel_init.S │ │ │ ├── reset.c │ │ │ ├── sam9x60_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_dbu.h │ │ │ │ ├── at91_eefc.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 │ │ │ │ ├── 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 │ │ ├── include │ │ │ └── mach │ │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── imx_bootaux.c │ │ │ ├── lowlevel_init.S │ │ │ ├── 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 │ │ │ ├── snvs.c │ │ │ └── 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 │ │ ├── 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 │ │ ├── clock-ipq4019.c │ │ ├── include │ │ │ └── mach │ │ │ │ └── gpio.h │ │ ├── pinctrl-ipq4019.c │ │ ├── pinctrl-snapdragon.c │ │ └── pinctrl-snapdragon.h │ ├── mach-k3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am625_fdt.c │ │ ├── am625_init.c │ │ ├── am62a7_init.c │ │ ├── am62ax │ │ │ ├── Makefile │ │ │ ├── am62a_qos_data.c │ │ │ ├── clk-data.c │ │ │ └── dev-data.c │ │ ├── am62x │ │ │ ├── Makefile │ │ │ ├── clk-data.c │ │ │ └── dev-data.c │ │ ├── am642_init.c │ │ ├── am654_fdt.c │ │ ├── am654_init.c │ │ ├── arm64-mmu.c │ │ ├── cache.S │ │ ├── common.c │ │ ├── common.h │ │ ├── common_fdt.c │ │ ├── common_fdt.h │ │ ├── include │ │ │ └── mach │ │ │ │ ├── am62_hardware.h │ │ │ │ ├── am62_spl.h │ │ │ │ ├── am62a_hardware.h │ │ │ │ ├── am62a_qos.h │ │ │ │ ├── am62a_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 │ │ │ │ └── spl.h │ │ ├── j7200 │ │ │ ├── Makefile │ │ │ ├── clk-data.c │ │ │ └── dev-data.c │ │ ├── j721e │ │ │ ├── Makefile │ │ │ ├── clk-data.c │ │ │ └── dev-data.c │ │ ├── j721e_fdt.c │ │ ├── j721e_init.c │ │ ├── j721s2 │ │ │ ├── Makefile │ │ │ ├── clk-data.c │ │ │ └── dev-data.c │ │ ├── j721s2_fdt.c │ │ ├── j721s2_init.c │ │ ├── lowlevel_init.S │ │ ├── r5_mpu.c │ │ ├── security.c │ │ ├── sysfw-loader.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 │ │ ├── mt7988 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt8183 │ │ │ ├── Makefile │ │ │ └── init.c │ │ ├── mt8512 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ ├── mt8516 │ │ │ ├── Makefile │ │ │ └── init.c │ │ ├── mt8518 │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel_init.S │ │ └── spl.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-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 │ │ ├── omap4 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── boot.c │ │ │ ├── emif.c │ │ │ ├── hw_data.c │ │ │ ├── hwinit.c │ │ │ ├── prcm-regs.c │ │ │ └── sdram_elpida.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 │ │ ├── pipe3-phy.c │ │ ├── pipe3-phy.h │ │ ├── reset.c │ │ ├── sata.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-rmobile │ │ ├── Kconfig │ │ ├── Kconfig.32 │ │ ├── Kconfig.64 │ │ ├── Kconfig.rcar3 │ │ ├── Kconfig.rcar4 │ │ ├── Kconfig.rza1 │ │ ├── Kconfig.rzg2l │ │ ├── Kconfig.rzn1 │ │ ├── Makefile │ │ ├── board.c │ │ ├── cpu_info-r8a7740.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 │ │ │ │ ├── mmc.h │ │ │ │ ├── r8a7740-gpio.h │ │ │ │ ├── r8a7740.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 │ │ │ │ ├── rmobile.h │ │ │ │ ├── rzg2l.h │ │ │ │ ├── sh_sdhi.h │ │ │ │ └── sys_proto.h │ │ ├── lowlevel_init.S │ │ ├── lowlevel_init_ca15.S │ │ ├── lowlevel_init_gen3.S │ │ ├── memmap-gen3.c │ │ ├── memmap-rzg2l.c │ │ ├── pfc-r8a7740.c │ │ ├── pfc-r8a7790.h │ │ └── psci-r8a779a0.c │ ├── mach-rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── boot_mode.c │ │ ├── bootrom.c │ │ ├── cpu-info.c │ │ ├── misc.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 │ │ │ ├── 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 │ │ ├── rk3568 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3568.c │ │ │ ├── rk3568.c │ │ │ └── syscon_rk3568.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 │ │ ├── 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-snapdragon │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock-apq8016.c │ │ ├── clock-apq8096.c │ │ ├── clock-qcs404.c │ │ ├── clock-sdm845.c │ │ ├── clock-snapdragon.c │ │ ├── clock-snapdragon.h │ │ ├── dram.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── boot0.h │ │ │ │ ├── dram.h │ │ │ │ ├── gpio.h │ │ │ │ ├── misc.h │ │ │ │ ├── sysmap-apq8016.h │ │ │ │ ├── sysmap-apq8096.h │ │ │ │ ├── sysmap-qcs404.h │ │ │ │ └── sysmap-sdm845.h │ │ ├── init_sdm845.c │ │ ├── misc.c │ │ ├── pinctrl-apq8016.c │ │ ├── pinctrl-apq8096.c │ │ ├── pinctrl-qcs404.c │ │ ├── pinctrl-sdm845.c │ │ ├── pinctrl-snapdragon.c │ │ ├── pinctrl-snapdragon.h │ │ ├── sysmap-apq8016.c │ │ ├── sysmap-apq8096.c │ │ ├── sysmap-qcs404.c │ │ └── sysmap-sdm845.c │ ├── mach-socfpga │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── clock_manager.c │ │ ├── clock_manager_agilex.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 │ │ │ │ ├── base_addr_a10.h │ │ │ │ ├── base_addr_ac5.h │ │ │ │ ├── base_addr_soc64.h │ │ │ │ ├── boot0.h │ │ │ │ ├── clock_manager.h │ │ │ │ ├── clock_manager_agilex.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_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 │ │ ├── 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 │ │ ├── cpu.c │ │ ├── dram_init.c │ │ ├── ecdsa_romapi.c │ │ ├── fdt.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── bsec.h │ │ │ │ ├── ddr.h │ │ │ │ ├── stm32.h │ │ │ │ ├── stm32mp1_smc.h │ │ │ │ ├── stm32prog.h │ │ │ │ ├── sys_proto.h │ │ │ │ └── tzc.h │ │ ├── psci.c │ │ ├── pwr_regulator.c │ │ ├── spl.c │ │ ├── stm32mp13x.c │ │ ├── stm32mp15x.c │ │ ├── syscon.c │ │ └── tzc400.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_helpers.c │ │ ├── dram_sun4i.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 │ │ │ ├── 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 │ │ ├── pinmux-common.c │ │ ├── pmc.c │ │ ├── powergate.c │ │ ├── psci.S │ │ ├── spl.c │ │ ├── sys_info.c │ │ ├── tegra114 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── funcmux.c │ │ │ └── pinmux.c │ │ ├── tegra124 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── funcmux.c │ │ │ ├── pinmux.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 │ │ │ ├── funcmux.c │ │ │ ├── pinmux.c │ │ │ ├── pmu.c │ │ │ ├── warmboot.c │ │ │ ├── warmboot_avp.c │ │ │ └── warmboot_avp.h │ │ ├── tegra210 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── funcmux.c │ │ │ └── xusb-padctl.c │ │ ├── tegra30 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bct.c │ │ │ ├── bct.h │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── funcmux.c │ │ │ └── pinmux.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-versatile │ │ ├── Makefile │ │ ├── reset.S │ │ └── timer.c │ ├── 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 │ ├── 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 │ │ ├── mkimage_fit_atf.sh │ │ ├── mp.c │ │ ├── psu_spl_init.c │ │ └── spl.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 │ │ ├── astro_mcf5373l.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 │ │ │ ├── fsl_mcdmafec.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 │ │ ├── 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 │ │ ├── img,boston.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 │ │ │ ├── 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 │ ├── 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 │ │ └── 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 │ │ ├── ppccache.S │ │ ├── ppcstring.S │ │ ├── reloc.S │ │ ├── spl.c │ │ ├── stack.c │ │ ├── ticks.S │ │ ├── time.c │ │ └── traps.c ├── riscv │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── andesv5 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ └── spl.c │ │ ├── cpu.c │ │ ├── fu540 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── fu740 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── generic │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── dram.c │ │ ├── jh7110 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ └── spl.c │ │ ├── mtrap.S │ │ ├── start.S │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── Makefile │ │ ├── ae350-u-boot.dtsi │ │ ├── ae350_32.dts │ │ ├── ae350_64.dts │ │ ├── binman.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-starfive-visionfive-2-u-boot.dtsi │ │ ├── jh7110-starfive-visionfive-2.dts │ │ ├── jh7110-starfive-visionfive-2.dtsi │ │ ├── jh7110-u-boot.dtsi │ │ ├── jh7110.dtsi │ │ ├── k210-maix-bit.dts │ │ ├── k210.dtsi │ │ ├── mpfs-icicle-kit-fabric.dtsi │ │ ├── mpfs-icicle-kit-u-boot.dtsi │ │ ├── mpfs-icicle-kit.dts │ │ ├── mpfs.dtsi │ │ ├── openpiton-riscv64.dts │ │ ├── qemu-virt32.dts │ │ ├── qemu-virt64.dts │ │ ├── sunxi-d1-t113.dtsi │ │ ├── sunxi-d1s-t113.dtsi │ │ ├── th1520-lichee-module-4a.dtsi │ │ ├── th1520-lichee-pi-4a.dts │ │ ├── th1520.dtsi │ │ └── xilinx-mbv32.dts │ ├── include │ │ └── asm │ │ │ ├── acpi_table.h │ │ │ ├── arch-andes │ │ │ └── csr.h │ │ │ ├── arch-fu540 │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── reset.h │ │ │ └── spl.h │ │ │ ├── arch-fu740 │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── reset.h │ │ │ └── spl.h │ │ │ ├── arch-generic │ │ │ ├── clk.h │ │ │ └── gpio.h │ │ │ ├── arch-jh7110 │ │ │ ├── eeprom.h │ │ │ ├── gpio.h │ │ │ ├── regs.h │ │ │ └── spl.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── barrier.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── csr.h │ │ │ ├── dma-mapping.h │ │ │ ├── encoding.h │ │ │ ├── global_data.h │ │ │ ├── gpio.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 │ │ ├── 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 ├── sandbox │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── eth-raw-os.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_pmic.dtsi │ │ ├── sandbox_vpl.dtsi │ │ └── test.dts │ ├── include │ │ └── asm │ │ │ ├── acpi_table.h │ │ │ ├── axi.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 │ │ ├── bootm.c │ │ ├── crt0_sandbox_efi.S │ │ ├── fdt_fixup.c │ │ ├── interrupts.c │ │ ├── pci_io.c │ │ ├── reloc_sandbox_efi.c │ │ └── sections.c ├── sh │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── sh4 │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ └── watchdog.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_gnvs.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 │ ├── 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 │ │ ├── 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 ├── AndesTech │ └── ae350 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ae350.c ├── 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 │ │ ├── br_resetc.c │ │ ├── br_resetc.h │ │ ├── bur_common.h │ │ └── common.c ├── BuS │ └── eb_cpu5282 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── eb_cpu5282.c ├── CZ.NIC │ ├── turris_atsha_otp.c │ ├── turris_atsha_otp.h │ ├── turris_mox │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mox_sp.c │ │ ├── mox_sp.h │ │ └── turris_mox.c │ └── turris_omnia │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── 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.h │ └── sheevaplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── sheevaplug.c ├── 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 ├── 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 ├── 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 │ └── 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 ├── 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 ├── 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 │ │ └── total_compute.c │ ├── vexpress │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vexpress_common.c │ └── vexpress64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── pcie.c │ │ ├── pcie.h │ │ └── vexpress64.c ├── aspeed │ ├── evb_ast2500 │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── evb_ast2600 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── astro │ └── mcf5373l │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── astro.h │ │ ├── fpga.c │ │ └── mcf5373l.c ├── asus │ ├── grouper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ │ ├── grouper_E1565.config │ │ │ ├── grouper_PM269.config │ │ │ └── tilapia.config │ │ ├── grouper-spl-max.c │ │ ├── grouper-spl-ti.c │ │ ├── grouper.c │ │ └── pinmux-config-grouper.h │ └── transformer-t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ ├── p1801-t.config │ │ ├── tf201.config │ │ ├── tf300t.config │ │ ├── tf300tg.config │ │ ├── tf300tl.config │ │ ├── tf600t.config │ │ └── tf700t.config │ │ ├── pinmux-config-transformer.h │ │ ├── transformer-t30-spl.c │ │ └── transformer-t30.c ├── 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 │ ├── 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 │ └── 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 ├── 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 │ │ ├── imx6ulz_smm_m2.c │ │ └── spl.c │ └── 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 ├── 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 │ │ ├── Makefile │ │ └── paz00.c ├── 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 ├── 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 ├── coreboot │ ├── Kconfig │ └── coreboot │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── coreboot.c │ │ └── coreboot.env ├── 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 │ │ ├── common.c │ │ └── common.h │ └── mcr3000 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mcr3000.c │ │ ├── mcr3000.env │ │ ├── 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 │ │ ├── u-boot-dhcom.its │ │ └── u-boot-dhcor.its ├── 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 ├── egnite │ └── ethernut5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ethernut5.c │ │ ├── ethernut5_pwrman.c │ │ └── ethernut5_pwrman.h ├── elgin │ └── elgin_rv1108 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── elgin_rv1108.c ├── embest │ └── mx6boards │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6boards.c ├── emulation │ ├── Kconfig │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── qemu_dfu.c │ │ └── qemu_mtdparts.c │ ├── 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-x86 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── qemu-x86.env ├── 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 │ │ ├── Makefile │ │ └── firefly-rk3288.c │ ├── firefly-rk3308 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── roc_cc_rk3308.c │ └── roc-pc-rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── roc-pc-rk3399.c ├── 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 │ │ ├── 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 │ │ ├── imximage-8mn-ddr4.cfg │ │ ├── lpddr4_timing.c │ │ ├── lpddr4_timing_ld.c │ │ └── spl.c │ ├── imx8mp_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mp_evk.c │ │ ├── imximage-8mp-lpddr4.cfg │ │ ├── lpddr4_timing.c │ │ └── spl.c │ ├── imx8mq_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx8mq_evk.c │ │ ├── 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 │ ├── imx93_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx93_evk.c │ │ ├── lpddr4x_timing.c │ │ ├── lpddr4x_timing_ld.c │ │ └── spl.c │ ├── imxrt1020-evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── imxrt1020-evk.c │ ├── imxrt1050-evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── imxrt1050-evk.c │ ├── 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 │ └── nanopc-t6-rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── nanopc-t6-rk3588.c ├── gardena │ ├── smart-gateway-at91sam │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── spl.c │ └── smart-gateway-mt7688 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c ├── gateworks │ ├── 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 ├── 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 │ │ └── pinmux-config-endeavoru.h ├── huawei │ └── hg556a │ │ ├── Kconfig │ │ └── MAINTAINERS ├── imgtec │ ├── boston │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── boston-lcd.h │ │ ├── boston-regs.h │ │ ├── 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 ├── intel │ ├── Kconfig │ ├── agilex-socdk │ │ └── MAINTAINERS │ ├── 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 ├── 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 ├── kobol │ └── helios4 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── helios4.c ├── 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 ├── lg │ ├── sniper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sniper.c │ │ └── sniper.h │ └── x3-t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── configs │ │ ├── p880.config │ │ └── p895.config │ │ ├── pinmux-config-x3.h │ │ ├── x3-t30-spl.c │ │ └── x3-t30.c ├── liebherr │ ├── 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 │ │ ├── spl_xea.c │ │ └── xea.c ├── logicpd │ ├── am3517evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am3517evm.c │ │ └── am3517evm.h │ ├── imx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── imx6logic.c │ └── omap3som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── omap3logic.c │ │ └── omap3logic.h ├── maxbcm │ ├── MAINTAINERS │ ├── Makefile │ └── maxbcm.c ├── mediatek │ ├── mt7620 │ │ └── MAINTAINERS │ ├── mt7621 │ │ └── MAINTAINERS │ ├── mt7622 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7622_rfb.c │ ├── mt7623 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7623_rfb.c │ ├── mt7628 │ │ └── MAINTAINERS │ ├── mt7629 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7629_rfb.c │ ├── mt7981 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7981_rfb.c │ ├── mt7986 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7986_rfb.c │ ├── mt7988 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt7988_rfb.c │ ├── mt8183 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mt8183_pumpkin.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 ├── 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 ├── 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 │ └── 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 │ │ └── 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 │ ├── p3450-0000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p3450-0000.c │ ├── seaboard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── seaboard.c │ ├── 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 ├── phytec │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── imx8m_som_detection.c │ │ ├── imx8m_som_detection.h │ │ ├── phytec_som_detection.c │ │ └── phytec_som_detection.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_imx8mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage-8mm-sd.cfg │ │ ├── lpddr4_timing.c │ │ ├── phycore-imx8mm.c │ │ └── spl.c │ ├── phycore_imx8mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage-8mp-sd.cfg │ │ ├── lpddr4_timing.c │ │ ├── phycore-imx8mp.c │ │ └── spl.c │ └── phycore_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── phycore-rk3288.c │ │ └── som.h ├── phytium │ ├── durian │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpu.h │ │ └── durian.c │ └── pomelo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpu.h │ │ ├── ddr.c │ │ ├── pcie.c │ │ ├── pll.c │ │ ├── pomelo.c │ │ └── sec.c ├── pine64 │ ├── pinebook-pro-rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pinebook-pro-rk3399.c │ ├── pinephone-pro-rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pinephone-pro-rk3399.c │ ├── quartz64_rk3566 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── quartzpro64-rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── quartzpro64-rk3588.c │ └── rockpro64_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rockpro64-rk3399.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 ├── qualcomm │ ├── dragonboard410c │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dragonboard410c.c │ │ ├── dragonboard410c.env │ │ └── readme.txt │ ├── dragonboard820c │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dragonboard820c.c │ │ ├── head.S │ │ ├── readme.txt │ │ └── u-boot.lds │ ├── dragonboard845c │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── db845c.its │ └── qcs404-evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qcs404-evb.c │ │ └── qcs404-evb.its ├── radxa │ ├── rock │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock2 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── rock5a-rk3588s │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rock5a-rk3588s.c │ └── rock5b-rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rock5b-rk3588.c ├── raidsonic │ └── ib62x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ib62x0.c │ │ ├── ib62x0.h │ │ └── kwbimage.cfg ├── raspberrypi │ └── rpi │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── rpi.c │ │ └── rpi.env ├── renesas │ ├── alt │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── alt.c │ │ ├── alt_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── blanche │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── blanche.c │ │ ├── qos.c │ │ └── qos.h │ ├── condor │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── draak │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── draak.c │ ├── eagle │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── ebisu │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── falcon │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── falcon.c │ ├── gose │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gose.c │ │ ├── gose_spl.c │ │ ├── qos.c │ │ └── qos.h │ ├── grpeach │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── grpeach.c │ │ └── lowlevel_init.S │ ├── 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 │ ├── rcar-common │ │ ├── common.c │ │ ├── gen3-spl.c │ │ └── v3-common.c │ ├── rzg2l │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rzg2l.c │ ├── salvator-x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── salvator-x.c │ ├── silk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qos.c │ │ ├── qos.h │ │ ├── silk.c │ │ └── silk_spl.c │ ├── spider │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── spider.c │ ├── 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 │ │ ├── Makefile │ │ └── whitehawk.c ├── 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 │ │ └── README │ ├── evb_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── evb-rk3399.c │ ├── evb_rk3568 │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── evb_rk3588 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── evb-rk3588.c │ ├── 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 ├── 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 │ ├── 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_esl_good.esl │ ├── capsule_pub_key_bad.crt │ ├── capsule_pub_key_good.crt │ ├── sandbox.c │ └── sandbox.env ├── schneider │ └── 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 ├── siemens │ ├── capricorn │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── imximage.cfg │ │ ├── spl.c │ │ └── uboot-container.cfg │ ├── common │ │ ├── Kconfig │ │ ├── board.c │ │ ├── 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 │ │ ├── board.h │ │ ├── mux.c │ │ └── pmic.h │ ├── rut │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── 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 ├── 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 ├── 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 │ ├── 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 │ └── stv0991 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stv0991.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 ├── theadorable │ ├── MAINTAINERS │ ├── Makefile │ ├── fpga.c │ ├── theadorable.c │ └── theadorable.h ├── thecus │ └── n2350 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── n2350.c ├── theobroma-systems │ ├── lion_rk3368 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── README │ ├── puma_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── puma-rk3399.c │ └── ringneck_px30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── ringneck-px30.c ├── ti │ ├── am335x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ ├── mux.c │ │ └── u-boot.lds │ ├── 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 │ ├── am62x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am62x.env │ │ ├── beagleplay.env │ │ ├── beagleplay_a53.config │ │ ├── beagleplay_r5.config │ │ ├── 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 │ ├── beagle │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── beagle.c │ │ ├── beagle.h │ │ └── led.c │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board_detect.c │ │ ├── board_detect.h │ │ ├── cape_detect.c │ │ ├── cape_detect.h │ │ └── schema.yaml │ ├── dra7xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── evm.c │ │ └── mux_data.h │ ├── j721e │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── board-cfg_j7200.yaml │ │ ├── evm.c │ │ ├── j721e.env │ │ ├── pm-cfg.yaml │ │ ├── pm-cfg_j7200.yaml │ │ ├── rm-cfg.yaml │ │ ├── rm-cfg_j7200.yaml │ │ ├── sec-cfg.yaml │ │ └── sec-cfg_j7200.yaml │ ├── j721s2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── evm.c │ │ ├── j721s2.env │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ └── sec-cfg.yaml │ ├── keys │ │ ├── custMpk.crt │ │ ├── custMpk.key │ │ ├── custMpk.pem │ │ └── ti-degenerate-key.pem │ ├── 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 │ ├── panda │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── panda.c │ │ └── panda_mux_data.h │ └── sdp4430 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_bat.c │ │ ├── sdp.c │ │ └── sdp4430_mux_data.h ├── timll │ ├── devkit3250 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── devkit3250.c │ │ └── devkit3250_spl.c │ └── 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 │ │ ├── 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 │ │ └── 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_t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_t30-spl.c │ │ ├── colibri_t30.c │ │ └── 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 │ ├── verdin-am62 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board-cfg.yaml │ │ ├── pm-cfg.yaml │ │ ├── rm-cfg.yaml │ │ ├── sec-cfg.yaml │ │ └── verdin-am62.c │ ├── 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 ├── udoo │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── neo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── neo.c │ ├── udoo.c │ └── udoo_spl.c ├── vamrs │ └── rock960_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── rock960-rk3399.c ├── variscite │ ├── 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 ├── vocore │ └── vocore2 │ │ ├── Kconfig │ │ └── MAINTAINERS ├── vscom │ └── baltos │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ ├── mux.c │ │ └── u-boot.lds ├── wandboard │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── spl.c │ └── wandboard.c ├── warp7 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── imximage.cfg │ └── warp7.c ├── 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 ├── 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 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── cmds.c │ ├── versal │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── cmds.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 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── avnet-ultra96-rev1 │ │ ├── cmds.c │ │ ├── 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 └── 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_cros.c ├── bootmeth_cros.h ├── bootmeth_efi.c ├── bootmeth_efi_mgr.c ├── bootmeth_extlinux.c ├── bootmeth_pxe.c ├── bootmeth_qfw.c ├── bootmeth_sandbox.c ├── bootmeth_script.c ├── bootretry.c ├── bootstd-uclass.c ├── cedit.c ├── common_fit.c ├── expo.c ├── expo_build.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 ├── pxe_utils.c ├── scene.c ├── scene_internal.h ├── scene_menu.c ├── scene_textline.c ├── vbe.c ├── vbe_request.c ├── vbe_simple.c ├── vbe_simple.h ├── vbe_simple_fw.c └── vbe_simple_os.c ├── cmd ├── .gitignore ├── 2048.c ├── Kconfig ├── Makefile ├── ab_select.c ├── 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 ├── 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 ├── 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 ├── lzmadec.c ├── mbr.c ├── md5sum.c ├── mdio.c ├── mem.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.c ├── net.c ├── nvedit.c ├── nvedit_efi.c ├── nvme.c ├── onenand.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 ├── reiser.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 ├── scp03.c ├── scsi.c ├── seama.c ├── setexpr.c ├── sf.c ├── sha1sum.c ├── sleep.c ├── smccc.c ├── sound.c ├── source.c ├── spi.c ├── spl.c ├── sqfs.c ├── stackprot_test.c ├── strings.c ├── sysboot.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 ├── tsi148.c ├── ubi.c ├── ubifs.c ├── ufs.c ├── universe.c ├── unlz4.c ├── unzip.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 │ ├── cbsysinfo.c │ ├── exception.c │ ├── fsp.c │ ├── hob.c │ └── mtrr.c ├── ximg.c ├── xxd.c ├── yaffs2.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 ├── cli.c ├── cli_getch.c ├── cli_hush.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 ├── memsize.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_sata.c │ ├── spl_sdp.c │ ├── spl_semihosting.c │ ├── spl_spi.c │ ├── spl_ubi.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 └── 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_boneblack_vboot_defconfig ├── am335x_evm_defconfig ├── am335x_evm_spiboot_defconfig ├── am335x_guardian_defconfig ├── am335x_hs_evm_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 ├── am62x_evm_a53_defconfig ├── am62x_evm_r5_defconfig ├── 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 ├── amarula_a64_relic_defconfig ├── amcore_defconfig ├── anbernic-rgxx3-rk3566_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 ├── astro_mcf5373l_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-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 ├── brppt1_mmc_defconfig ├── brppt2_defconfig ├── brsmarc1_defconfig ├── brxre1_defconfig ├── bubblegum_96_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 ├── 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 ├── coreboot64_defconfig ├── coreboot_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 ├── deneb_defconfig ├── devkit3250_defconfig ├── devkit8000_defconfig ├── dfi-bt700-q7x-151_defconfig ├── dh_imx6_defconfig ├── 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_defconfig ├── dragonboard410c_defconfig ├── dragonboard820c_defconfig ├── dragonboard845c_defconfig ├── dreamplug_defconfig ├── ds109_defconfig ├── ds116_defconfig ├── ds414_defconfig ├── dserve_dsrv9703c_defconfig ├── durian_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 ├── etamin_defconfig ├── ethernut5_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-rk3568_defconfig ├── giedi_defconfig ├── goflexhome_defconfig ├── gose_defconfig ├── grouper_common_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 ├── 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 ├── icnova-a20-adb4006_defconfig ├── icnova-a20-swac_defconfig ├── iconnect_defconfig ├── igep00x0_defconfig ├── imgtec_xilfpga_defconfig ├── imx28_xea_defconfig ├── imx28_xea_sb_defconfig ├── imx6dl_icore_nand_defconfig ├── imx6dl_mamoj_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 ├── imx7_cm_defconfig ├── 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_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_dhcom_pdk2_defconfig ├── imx8mp_dhcom_pdk3_defconfig ├── imx8mp_evk_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_mek_defconfig ├── imx8ulp_evk_defconfig ├── imx93_11x11_evk_defconfig ├── imx93_11x11_evk_ld_defconfig ├── imxrt1020-evk_defconfig ├── imxrt1050-evk_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_evm_a72_defconfig ├── j721e_evm_r5_defconfig ├── j721s2_evm_a72_defconfig ├── j721s2_evm_r5_defconfig ├── jesurun_q5_defconfig ├── jethub_j100_defconfig ├── jethub_j80_defconfig ├── jetson-tk1_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 ├── khadas-edge-captain-rk3399_defconfig ├── khadas-edge-rk3399_defconfig ├── khadas-edge-v-rk3399_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 ├── 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 ├── lion-rk3368_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 ├── 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 ├── minnowmax_defconfig ├── miqi-rk3288_defconfig ├── mixtile_loftq_defconfig ├── mk802_a10s_defconfig ├── mk802_defconfig ├── mk802ii_defconfig ├── mk808_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_nand_rfb_defconfig ├── mt7621_rfb_defconfig ├── mt7622_rfb_defconfig ├── mt7623a_unielec_u7623_02_defconfig ├── mt7623n_bpir2_defconfig ├── mt7628_rfb_defconfig ├── mt7629_rfb_defconfig ├── mt7981_emmc_rfb_defconfig ├── mt7981_rfb_defconfig ├── mt7981_sd_rfb_defconfig ├── mt7986_rfb_defconfig ├── mt7986a_bpir3_emmc_defconfig ├── mt7986a_bpir3_sd_defconfig ├── mt7988_rfb_defconfig ├── mt7988_sd_rfb_defconfig ├── mt8183_pumpkin_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_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 ├── mx6slevk_spinor_defconfig ├── mx6slevk_spl_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-rk3328_defconfig ├── nanopi-r2s-rk3328_defconfig ├── nanopi-r4s-rk3399_defconfig ├── nanopi-r5c-rk3568_defconfig ├── nanopi-r5s-rk3568_defconfig ├── nanopi_a64_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 ├── 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-n2_defconfig ├── odroid-n2l_defconfig ├── odroid-xu3_defconfig ├── odroid_defconfig ├── omap35_logic_defconfig ├── omap35_logic_somlv_defconfig ├── omap3_beagle_defconfig ├── omap3_evm_defconfig ├── omap3_logic_defconfig ├── omap3_logic_somlv_defconfig ├── omap4_panda_defconfig ├── omap4_sdp4430_defconfig ├── omapl138_lcdk_defconfig ├── openpiton_riscv64_defconfig ├── openpiton_riscv64_spl_defconfig ├── openrd_base_defconfig ├── openrd_client_defconfig ├── openrd_ultimate_defconfig ├── opos6uldev_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_zero3_defconfig ├── orangepi_zero_defconfig ├── orangepi_zero_plus2_defconfig ├── orangepi_zero_plus2_h3_defconfig ├── orangepi_zero_plus_defconfig ├── origen_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 ├── 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_pcl063_defconfig ├── phycore_pcl063_ull_defconfig ├── pic32mzdask_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 ├── 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 ├── 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 ├── qcs404evb_defconfig ├── qemu-ppce500_defconfig ├── qemu-riscv32_defconfig ├── qemu-riscv32_smode_defconfig ├── qemu-riscv32_spl_defconfig ├── qemu-riscv64_defconfig ├── qemu-riscv64_smode_defconfig ├── qemu-riscv64_spl_defconfig ├── qemu-x86_64_defconfig ├── qemu-x86_defconfig ├── qemu_arm64_defconfig ├── qemu_arm_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 ├── r8a779g0_whitehawk_defconfig ├── radxa-cm3-io-rk3566_defconfig ├── radxa-e25-rk3568_defconfig ├── radxa-zero2_defconfig ├── radxa-zero_defconfig ├── rastaban_defconfig ├── rcar3_salvator-x_defconfig ├── rcar3_ulcb_defconfig ├── 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 ├── rock-3a-rk3568_defconfig ├── rock-4c-plus-rk3399_defconfig ├── rock-4se-rk3399_defconfig ├── rock-pi-4-rk3399_defconfig ├── rock-pi-4c-rk3399_defconfig ├── rock-pi-e-rk3328_defconfig ├── rock-pi-n10-rk3399pro_defconfig ├── rock-pi-n8-rk3288_defconfig ├── rock-pi-s-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_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 ├── 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 ├── sama7g5ek_mmc1_defconfig ├── sama7g5ek_mmc_defconfig ├── sandbox64_defconfig ├── sandbox_defconfig ├── sandbox_flattree_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 ├── silinux_ek874_defconfig ├── silk_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_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 ├── sopine_baseboard_defconfig ├── soquartz-blade-rk3566_defconfig ├── soquartz-cm4-rk3566_defconfig ├── soquartz-model-a-rk3566_defconfig ├── spring_defconfig ├── starfive_visionfive2_defconfig ├── starqltechn_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 ├── stm32h750-art-pi_defconfig ├── stm32mp13_defconfig ├── stm32mp15-icore-stm32mp1-ctouch2_defconfig ├── stm32mp15-icore-stm32mp1-edimm2.2_defconfig ├── stm32mp15-microgea-stm32mp1-microdev2-of7_defconfig ├── stm32mp15-microgea-stm32mp1-microdev2_defconfig ├── stm32mp15_basic_defconfig ├── stm32mp15_defconfig ├── stm32mp15_dhcom_basic_defconfig ├── stm32mp15_dhcor_basic_defconfig ├── stm32mp15_trusted_defconfig ├── stmark2_defconfig ├── stout_defconfig ├── stv0991_defconfig ├── sun8i_a23_evb_defconfig ├── sunxi_Gemei_G9_defconfig ├── synquacer_developerbox_defconfig ├── syzygy_hub_defconfig ├── tanix_tx6_defconfig ├── taurus_defconfig ├── tb100_defconfig ├── tbs2910_defconfig ├── tbs_a711_defconfig ├── tec-ng_defconfig ├── tec_defconfig ├── ten64_tfa_defconfig ├── teres_i_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 ├── thuban_defconfig ├── thunderx_88xx_defconfig ├── tinker-rk3288_defconfig ├── tinker-s-rk3288_defconfig ├── tools-only_defconfig ├── topic_miami_defconfig ├── topic_miamilite_defconfig ├── topic_miamiplus_defconfig ├── total_compute_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_t30_defconfig ├── trats2_defconfig ├── trats_defconfig ├── trimslice_defconfig ├── tuge1_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-imx8mm_defconfig ├── verdin-imx8mp_defconfig ├── vexpress_aemv8a_juno_defconfig ├── vexpress_aemv8a_semi_defconfig ├── vexpress_aemv8r_defconfig ├── vexpress_ca9x4_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 ├── x3_t30_defconfig ├── x530_defconfig ├── x96_mate_defconfig ├── xenguest_arm64_defconfig ├── xenguest_arm64_virtio_defconfig ├── xilinx_mbv32_defconfig ├── xilinx_mbv32_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 ├── 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.SNTP ├── README.TPL ├── 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.bitbangMII ├── README.bootcount ├── 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.fuse ├── README.generic-board ├── README.generic_usb_ohci ├── README.gpio ├── README.gpt ├── README.hwconfig ├── README.i2c ├── README.iomux ├── README.kconfig ├── 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.omap-ulpi-viewport ├── 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 │ ├── clk.rst │ ├── dfu.rst │ ├── dm.rst │ ├── efi.rst │ ├── event.rst │ ├── getopt.rst │ ├── index.rst │ ├── interrupt.rst │ ├── linker_lists.rst │ ├── lmb.rst │ ├── logging.rst │ ├── nvmem.rst │ ├── part.rst │ ├── pinctrl.rst │ ├── rng.rst │ ├── sandbox.rst │ ├── serial.rst │ ├── sysreset.rst │ ├── timer.rst │ └── unicode.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 │ ├── AndesTech │ │ ├── adp-ag101p.rst │ │ ├── ae350.rst │ │ └── index.rst │ ├── actions │ │ ├── cubieboard7.rst │ │ └── index.rst │ ├── advantech │ │ ├── imx8qm-dmsse20-a1.rst │ │ ├── imx8qm-rom7720-a1.rst │ │ └── index.rst │ ├── allwinner │ │ ├── index.rst │ │ └── sunxi.rst │ ├── amlogic │ │ ├── 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 │ ├── apple │ │ ├── index.rst │ │ └── m1.rst │ ├── armltd │ │ ├── index.rst │ │ ├── juno.rst │ │ └── vexpress64.rst │ ├── asus │ │ ├── grouper_common.rst │ │ ├── index.rst │ │ └── transformer_t30.rst │ ├── atmel │ │ ├── at91ek.rst │ │ └── index.rst │ ├── beacon │ │ ├── beacon-imx8mm.rst │ │ ├── beacon-imx8mn.rst │ │ ├── beacon-imx8mp.rst │ │ └── index.rst │ ├── broadcom │ │ ├── bcm7xxx.rst │ │ ├── index.rst │ │ ├── northstar.rst │ │ └── raspberrypi.rst │ ├── bsh │ │ ├── imx8mn_bsh_smm_s2.rst │ │ └── index.rst │ ├── cloos │ │ ├── imx8mm_phg.rst │ │ └── index.rst │ ├── congatec │ │ ├── cgtqmx8.rst │ │ └── index.rst │ ├── coreboot │ │ ├── coreboot.rst │ │ └── index.rst │ ├── emulation │ │ ├── blkdev.rst │ │ ├── index.rst │ │ ├── qemu-arm.rst │ │ ├── qemu-mips.rst │ │ ├── qemu-ppce500.rst │ │ ├── qemu-riscv.rst │ │ └── qemu-x86.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 │ ├── lg │ │ ├── index.rst │ │ └── x3_t30.rst │ ├── mediatek │ │ ├── index.rst │ │ └── mt7621.rst │ ├── microchip │ │ ├── index.rst │ │ └── mpfs_icicle.rst │ ├── nxp │ │ ├── imx8mm_evk.rst │ │ ├── imx8mn_evk.rst │ │ ├── imx8mp_evk.rst │ │ ├── imx8mq_evk.rst │ │ ├── imx8qxp_mek.rst │ │ ├── imxrt1020-evk.rst │ │ ├── imxrt1050-evk.rst │ │ ├── index.rst │ │ ├── ls1046ardb.rst │ │ ├── mx6sabreauto.rst │ │ ├── mx6sabresd.rst │ │ ├── mx6ul_14x14_evk.rst │ │ ├── mx6ullevk.rst │ │ └── psb.rst │ ├── openpiton │ │ ├── index.rst │ │ └── riscv64.rst │ ├── phytec │ │ ├── index.rst │ │ ├── phycore-imx8mm.rst │ │ └── phycore-imx8mp.rst │ ├── purism │ │ ├── index.rst │ │ └── librem5.rst │ ├── qualcomm │ │ ├── dragonboard410c.rst │ │ ├── index.rst │ │ ├── qcs404.rst │ │ └── sdm845.rst │ ├── renesas │ │ ├── index.rst │ │ ├── renesas.rst │ │ └── rzn1.rst │ ├── rockchip │ │ ├── index.rst │ │ ├── rkmtd.rst │ │ └── rockchip.rst │ ├── samsung │ │ ├── axy17lte.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 │ ├── st │ │ ├── index.rst │ │ ├── st-dt.rst │ │ ├── stm32_MCU.rst │ │ └── stm32mp1.rst │ ├── starfive │ │ ├── index.rst │ │ └── visionfive2.rst │ ├── ste │ │ ├── index.rst │ │ └── stemmy.rst │ ├── tbs │ │ ├── index.rst │ │ └── tbs2910.rst │ ├── thead │ │ ├── index.rst │ │ └── lpi4a.rst │ ├── ti │ │ ├── am335x_evm.rst │ │ ├── am43xx_evm.rst │ │ ├── am62x_beagleplay.rst │ │ ├── am62x_sk.rst │ │ ├── am64x_evm.rst │ │ ├── am65x_evm.rst │ │ ├── dra7xx_evm.rst │ │ ├── img │ │ │ ├── beagleplay_emmc.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.svg │ │ │ └── sysfw.itb.svg │ │ ├── index.rst │ │ ├── j7200_evm.rst │ │ ├── j721e_evm.rst │ │ ├── j721s2_evm.rst │ │ ├── k3.rst │ │ └── ks2_evm.rst │ ├── toradex │ │ ├── apalis-imx8.rst │ │ ├── colibri-imx8x.rst │ │ ├── colibri_imx7.rst │ │ ├── index.rst │ │ ├── verdin-am62.rst │ │ ├── verdin-imx8mm.rst │ │ └── verdin-imx8mp.rst │ ├── variscite │ │ ├── imx8mn_var_som.rst │ │ └── index.rst │ ├── xen │ │ ├── index.rst │ │ └── xenguest_arm64.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 │ ├── bloblist.rst │ ├── board_best_practices.rst │ ├── bootstd.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 │ ├── global_data.rst │ ├── ide_integration.rst │ ├── index.rst │ ├── logging.rst │ ├── makefiles.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 │ ├── printf.rst │ ├── process.rst │ ├── py_testing.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 │ ├── 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 │ │ ├── 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 │ │ ├── fixed-factor-clock.txt │ │ ├── fsl,mpc83xx-clk.txt │ │ ├── microchip,pic32-clock.txt │ │ ├── nvidia,tegra20-car.txt │ │ ├── rockchip,rk3188-cru.txt │ │ ├── rockchip,rk3288-cru.txt │ │ ├── rockchip,rk3288-dmc.txt │ │ ├── rockchip,rk3368-dmc.txt │ │ ├── rockchip,rk3399-dmc.txt │ │ ├── rockchip.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 │ │ ├── pm8916_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 │ │ ├── common.txt │ │ ├── leds-bcm6328.txt │ │ ├── leds-bcm6358.txt │ │ ├── leds-bcm6858.txt │ │ ├── leds-gpio.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-k3.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 │ ├── mmc │ │ ├── msm_sdhci.txt │ │ ├── sandbox,mmc.txt │ │ └── snps,dw-mmc.txt │ ├── mtd │ │ ├── altera_qspi.txt │ │ ├── mtd-physmap.txt │ │ ├── spi-nand.txt │ │ ├── spi │ │ │ └── spi-flash.txt │ │ ├── ti,elm.yaml │ │ └── ti,gpmc-nand.yaml │ ├── nand │ │ └── nvidia,tegra20-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 │ │ ├── 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 │ │ └── rockchip,pinctrl.txt │ ├── pmic │ │ ├── max77663.txt │ │ ├── max77686.txt │ │ ├── qcom,spmi-pmic.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 │ │ ├── msm-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 │ ├── 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-msm.txt │ │ └── spmi-sandbox.txt │ ├── sysinfo │ │ ├── gdsys,sysinfo_gazerbeam.txt │ │ ├── google,coral.txt │ │ ├── gpio-sysinfo.txt │ │ ├── smbios.txt │ │ └── sysinfo.txt │ ├── sysreset │ │ └── ti,sci-sysreset.txt │ ├── thermal │ │ ├── rockchip-thermal.txt │ │ └── ti_soc_thermal.txt │ ├── timer │ │ ├── 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 │ │ ├── ehci-msm.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 │ │ ├── rockchip-lvds.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 ├── 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 │ │ │ └── mx8m │ │ │ │ ├── csf.sh │ │ │ │ ├── csf_fit.txt │ │ │ │ └── csf_spl.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 │ ├── 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 │ ├── bootflow.rst │ ├── booti.rst │ ├── bootm.rst │ ├── bootmenu.rst │ ├── bootmeth.rst │ ├── bootz.rst │ ├── button.rst │ ├── cat.rst │ ├── cbsysinfo.rst │ ├── cedit.rst │ ├── cls.rst │ ├── cmp.rst │ ├── coninfo.rst │ ├── conitrace.rst │ ├── cp.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 │ ├── fwu_mdata.rst │ ├── gpio.rst │ ├── gpt.rst │ ├── history.rst │ ├── host.rst │ ├── imxtract.rst │ ├── load.rst │ ├── loadb.rst │ ├── loadm.rst │ ├── loads.rst │ ├── loadx.rst │ ├── loady.rst │ ├── mbr.rst │ ├── md.rst │ ├── mmc.rst │ ├── mtest.rst │ ├── mtrr.rst │ ├── panic.rst │ ├── part.rst │ ├── pause.rst │ ├── pinmux.rst │ ├── printenv.rst │ ├── pstore.rst │ ├── qfw.rst │ ├── read.rst │ ├── reset.rst │ ├── rng.rst │ ├── saves.rst │ ├── sbi.rst │ ├── scp03.rst │ ├── seama.rst │ ├── setexpr.rst │ ├── sf.rst │ ├── size.rst │ ├── sleep.rst │ ├── sm.rst │ ├── sound.rst │ ├── source.rst │ ├── temperature.rst │ ├── tftpput.rst │ ├── trace.rst │ ├── true.rst │ ├── ums.rst │ ├── unbind.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 ├── 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_mvebu.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_sandbox.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 │ ├── 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_ext.c │ ├── bootcount_nvmem.c │ ├── bootcount_ram.c │ ├── bootcount_syscon.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-uclass.c ├── cache │ ├── Kconfig │ ├── Makefile │ ├── cache-l2x0.c │ ├── cache-ncore.c │ ├── cache-sifive-ccache.c │ ├── cache-uclass.c │ ├── cache-v5l2.c │ └── sandbox_cache.c ├── clk │ ├── Kconfig │ ├── Makefile │ ├── altera │ │ ├── Makefile │ │ ├── clk-agilex.c │ │ ├── clk-agilex.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 │ │ ├── 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-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-pll.c │ │ └── clk-pll.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-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-mt7988.c │ │ ├── clk-mt8183.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_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 │ ├── 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 │ │ ├── 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_rk3568.c │ │ ├── clk_rk3588.c │ │ ├── clk_rv1108.c │ │ └── clk_rv1126.c │ ├── sifive │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fu540-prci.c │ │ ├── fu540-prci.h │ │ ├── fu740-prci.c │ │ ├── fu740-prci.h │ │ ├── sifive-prci.c │ │ └── sifive-prci.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 │ │ └── stm32mp13_rcc.h │ ├── sunxi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk_a10.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 │ ├── 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 │ ├── 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 │ ├── at91_cpu.c │ ├── bmips_cpu.c │ ├── cpu-uclass.c │ ├── cpu_sandbox.c │ ├── imx8_cpu.c │ ├── imx9_cpu.c │ ├── microblaze_cpu.c │ ├── mpc83xx_cpu.c │ ├── mpc83xx_cpu.h │ ├── mtk_cpu.c │ └── riscv_cpu.c ├── crypto │ ├── Kconfig │ ├── Makefile │ ├── ace_sha.c │ ├── ace_sha.h │ ├── aspeed │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── aspeed_acry.c │ │ └── aspeed_hace.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 │ │ ├── sdram_agilex.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_csr.c │ │ │ ├── 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 │ │ │ ├── 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_sf.c │ └── dfu_virt.c ├── dma │ ├── Kconfig │ ├── MCD_dmaApi.c │ ├── MCD_tasks.c │ ├── MCD_tasksInit.c │ ├── Makefile │ ├── apbh_dma.c │ ├── bcm6348-iudma.c │ ├── dma-uclass.c │ ├── fsl_dma.c │ ├── keystone_nav.c │ ├── keystone_nav_cfg.c │ ├── lpc32xx_dma.c │ ├── sandbox-dma-test.c │ ├── ti-edma3.c │ ├── ti │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── k3-psil-am62.c │ │ ├── k3-psil-am64.c │ │ ├── k3-psil-am654.c │ │ ├── k3-psil-j721e.c │ │ ├── k3-psil-j721s2.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 │ ├── 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-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 │ ├── 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 │ ├── nx_gpio.c │ ├── octeon_gpio.c │ ├── omap_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 │ ├── tca642x.c │ ├── tegra186_gpio.c │ ├── tegra186_gpio_priv.h │ ├── tegra_gpio.c │ ├── turris_omnia_mcu.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ └── 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_pwm.c ├── mailbox │ ├── Kconfig │ ├── Makefile │ ├── apple-mbox.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.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 │ ├── 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 │ ├── qcom-geni-se.c │ ├── qfw.c │ ├── qfw_mmio.c │ ├── qfw_pio.c │ ├── qfw_sandbox.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 │ ├── 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 │ ├── twl4030_led.c │ ├── usb2244.c │ ├── usb251xb.c │ ├── usb5744.c │ ├── vexpress_config.c │ └── winbond_w83627.c ├── mmc │ ├── Kconfig │ ├── Makefile │ ├── 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 │ ├── 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.c │ ├── sh_mmcif.c │ ├── sh_mmcif.h │ ├── snps_dw_mmc.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 │ ├── mtdconcat.c │ ├── mtdcore.c │ ├── mtdcore.h │ ├── mtdpart.c │ ├── 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 │ │ │ │ ├── bcm63158_nand.c │ │ │ │ ├── bcm6368_nand.c │ │ │ │ ├── bcm6753_nand.c │ │ │ │ ├── bcm68360_nand.c │ │ │ │ ├── bcm6838_nand.c │ │ │ │ ├── bcm6858_nand.c │ │ │ │ ├── brcmnand.c │ │ │ │ ├── brcmnand.h │ │ │ │ ├── brcmnand_compat.c │ │ │ │ ├── brcmnand_compat.h │ │ │ │ └── iproc_nand.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── gigadevice.c │ │ │ ├── macronix.c │ │ │ ├── micron.c │ │ │ ├── paragon.c │ │ │ ├── toshiba.c │ │ │ └── winbond.c │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── 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_imx.c │ ├── dwc_eth_qos_qcom.c │ ├── dwc_eth_qos_rockchip.c │ ├── dwc_eth_qos_starfive.c │ ├── dwmac_meson8b.c │ ├── dwmac_s700.c │ ├── dwmac_socfpga.c │ ├── e1000.c │ ├── e1000.h │ ├── e1000_spi.c │ ├── eepro100.c │ ├── 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_ls_mdio.c │ ├── fsl_mcdmafec.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_mux_i2creg.c │ ├── mdio_mux_meson_g12a.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.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 │ │ ├── aquantia.c │ │ ├── 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 │ │ ├── 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 │ │ └── 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-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_dw_common.c │ ├── pcie_dw_common.h │ ├── pcie_dw_meson.c │ ├── pcie_dw_mvebu.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_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 │ └── 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-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-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-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 │ ├── 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 │ ├── 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-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.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-scu.c │ │ └── pinctrl-vf610.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-uclass.c │ ├── pinctrl-zynqmp.c │ ├── pinctrl_pic32.c │ ├── pinctrl_stm32.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.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-rk3568.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 │ └── 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 │ ├── axp305.c │ ├── axp313.c │ ├── axp809.c │ ├── axp818.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 │ │ ├── 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 │ │ ├── da9063.c │ │ ├── fan53555.c │ │ ├── i2c_pmic_emul.c │ │ ├── lp873x.c │ │ ├── lp87565.c │ │ ├── max77663.c │ │ ├── max77686.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 │ │ ├── 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_regulator.c │ │ ├── axp_usb_power.c │ │ ├── bd71837.c │ │ ├── da9063.c │ │ ├── fan53555.c │ │ ├── fixed.c │ │ ├── gpio-regulator.c │ │ ├── lp873x_regulator.c │ │ ├── lp87565_regulator.c │ │ ├── max77663_regulator.c │ │ ├── max77686.c │ │ ├── npcm8xx_regulator.c │ │ ├── palmas_regulator.c │ │ ├── pbias_regulator.c │ │ ├── pca9450.c │ │ ├── pfuze100.c │ │ ├── pwm_regulator.c │ │ ├── regulator-uclass.c │ │ ├── regulator_common.c │ │ ├── regulator_common.h │ │ ├── rk8xx.c │ │ ├── s2mps11_regulator.c │ │ ├── s5m8767.c │ │ ├── sandbox.c │ │ ├── scmi_regulator.c │ │ ├── stm32-vrefbuf.c │ │ ├── stpmic1.c │ │ ├── tps62360_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 │ └── twl6030.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-ti-ehrpwm.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 │ │ ├── sdram_ast2500.c │ │ └── sdram_ast2600.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 │ │ ├── Makefile │ │ └── 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-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_rk3568.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 ├── reboot-mode │ ├── Kconfig │ ├── Makefile │ ├── reboot-mode-gpio.c │ ├── reboot-mode-nvmem.c │ ├── reboot-mode-rtc.c │ └── reboot-mode-uclass.c ├── remoteproc │ ├── Kconfig │ ├── Makefile │ ├── ipu_rproc.c │ ├── k3_system_controller.c │ ├── pru_rproc.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_r5f_rproc.c │ ├── ti_power_proc.c │ └── ti_sci_proc.h ├── reset │ ├── Kconfig │ ├── Makefile │ ├── 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-qcom.c │ ├── reset-raspberrypi.c │ ├── reset-rockchip.c │ ├── reset-scmi.c │ ├── reset-sifive.c │ ├── reset-socfpga.c │ ├── reset-sunxi.c │ ├── reset-syscon.c │ ├── reset-ti-sci.c │ ├── reset-uclass.c │ ├── reset-uniphier.c │ ├── reset-zynqmp.c │ ├── rst-rk3588.c │ ├── sandbox-reset-test.c │ ├── sandbox-reset.c │ ├── sti-reset.c │ ├── stm32-reset.c │ ├── tegra-car-reset.c │ └── tegra186-reset.c ├── rng │ ├── Kconfig │ ├── Makefile │ ├── arm_rndr.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 ├── rtc │ ├── Kconfig │ ├── Makefile │ ├── abx80x.c │ ├── armada38x.c │ ├── davinci.c │ ├── ds1307.c │ ├── ds1337.c │ ├── ds1374.c │ ├── ds3231.c │ ├── ds3232.c │ ├── emul_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_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_xuartlite.c │ ├── serial_zynq.c │ ├── usbtty.c │ └── usbtty.h ├── 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 │ ├── soc-uclass.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 │ ├── altera_spi.c │ ├── apple_spi.c │ ├── atcspi200_spi.c │ ├── ath79_spi.c │ ├── atmel-quadspi.c │ ├── atmel_spi.c │ ├── atmel_spi.h │ ├── 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 │ ├── 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 │ ├── 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_gpio.c │ ├── sysreset_max77663.c │ ├── sysreset_microblaze.c │ ├── sysreset_mpc83xx.c │ ├── sysreset_mpc83xx.h │ ├── sysreset_octeon.c │ ├── sysreset_palmas.c │ ├── sysreset_psci.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 ├── timer │ ├── Kconfig │ ├── Makefile │ ├── altera_timer.c │ ├── andes_plmt_timer.c │ ├── arc_timer.c │ ├── arm_global_timer.c │ ├── arm_twd_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-renesas.c │ ├── ufs-uclass.c │ ├── ufs.c │ ├── ufs.h │ └── unipro.h ├── usb │ ├── Kconfig │ ├── cdns3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── 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 │ │ ├── fsl-dt-fixup.c │ │ ├── fsl-errata.c │ │ └── usb_urb.c │ ├── dwc3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── core.h │ │ ├── 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 │ │ ├── core.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.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 │ │ ├── gadget_chips.h │ │ ├── max3420_udc.c │ │ ├── ndis.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 │ │ ├── dwc3-sti-glue.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-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 │ │ ├── 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 │ └── ulpi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── omap-ulpi-viewport.c │ │ ├── ulpi-viewport.c │ │ └── ulpi.c ├── video │ ├── Kconfig │ ├── Makefile │ ├── 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 │ │ ├── ps862x.c │ │ ├── ptn3460.c │ │ ├── ssd2825.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_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 │ │ ├── mxc_ipuv3_fb.c │ │ └── mxcfb.h │ ├── ivybridge_igd.c │ ├── lm3533_backlight.c │ ├── logicore_dp_dpcd.h │ ├── logicore_dp_tx.c │ ├── logicore_dp_tx.h │ ├── logicore_dp_tx_regif.h │ ├── 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 │ ├── 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 │ ├── 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 │ │ ├── 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 │ ├── sandbox_dsi_host.c │ ├── sandbox_osd.c │ ├── sandbox_osd.h │ ├── sandbox_sdl.c │ ├── seps525.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 │ ├── tegra124 │ │ ├── Makefile │ │ ├── display.c │ │ ├── displayport.h │ │ ├── dp.c │ │ ├── sor.c │ │ └── sor.h │ ├── tegra20 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mipi-phy.c │ │ ├── mipi-phy.h │ │ ├── tegra-dc.c │ │ ├── tegra-dsi.c │ │ └── tegra-pwm-backlight.c │ ├── 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 │ ├── apple_wdt.c │ ├── arm_smc_wdt.c │ ├── armada-37xx-wdt.c │ ├── ast2600_wdt.c │ ├── ast_wdt.c │ ├── at91sam9_wdt.c │ ├── bcm2835_wdt.c │ ├── bcm6345_wdt.c │ ├── booke_wdt.c │ ├── cdns_wdt.c │ ├── cortina_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 │ ├── rti_wdt.c │ ├── s5p_wdt.c │ ├── sandbox_alarm-wdt.c │ ├── sandbox_wdt.c │ ├── sbsa_gwdt.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 ├── 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 ├── nand.c ├── nowhere.c ├── nvram.c ├── onenand.c ├── remote.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 ├── 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 ├── 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_lzo.c │ ├── compr_rtime.c │ ├── compr_rubin.c │ ├── compr_zlib.c │ ├── jffs2_1pass.c │ ├── jffs2_private.h │ ├── mergesort.c │ ├── mini_inflate.c │ └── summary.h ├── reiserfs │ ├── Kconfig │ ├── Makefile │ ├── dev.c │ ├── mode_string.c │ ├── reiserfs.c │ └── reiserfs_private.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 ├── yaffs2 │ ├── Kconfig │ ├── Makefile │ ├── yaffs_allocator.c │ ├── yaffs_allocator.h │ ├── yaffs_attribs.c │ ├── yaffs_attribs.h │ ├── yaffs_bitmap.c │ ├── yaffs_bitmap.h │ ├── yaffs_checkptrw.c │ ├── yaffs_checkptrw.h │ ├── yaffs_ecc.c │ ├── yaffs_ecc.h │ ├── yaffs_error.c │ ├── yaffs_flashif.h │ ├── yaffs_flashif2.h │ ├── yaffs_getblockinfo.h │ ├── yaffs_guts.c │ ├── yaffs_guts.h │ ├── yaffs_mtdif.c │ ├── yaffs_mtdif.h │ ├── yaffs_mtdif2.c │ ├── yaffs_mtdif2.h │ ├── yaffs_nameval.c │ ├── yaffs_nameval.h │ ├── yaffs_nand.c │ ├── yaffs_nand.h │ ├── yaffs_nandemul2k.h │ ├── yaffs_nandif.c │ ├── yaffs_nandif.h │ ├── yaffs_osglue.h │ ├── yaffs_packedtags1.c │ ├── yaffs_packedtags1.h │ ├── yaffs_packedtags2.c │ ├── yaffs_packedtags2.h │ ├── yaffs_qsort.c │ ├── yaffs_summary.c │ ├── yaffs_summary.h │ ├── yaffs_tagscompat.c │ ├── yaffs_tagscompat.h │ ├── yaffs_trace.h │ ├── yaffs_uboot_glue.c │ ├── yaffs_verify.c │ ├── yaffs_verify.h │ ├── yaffs_yaffs1.c │ ├── yaffs_yaffs1.h │ ├── yaffs_yaffs2.c │ ├── yaffs_yaffs2.h │ ├── yaffscfg.h │ ├── yaffsfs.c │ ├── yaffsfs.h │ ├── ydirectenv.h │ └── yportenv.h └── zfs │ ├── Makefile │ ├── dev.c │ ├── zfs.c │ ├── zfs_fletcher.c │ ├── zfs_lzjb.c │ └── zfs_sha256.c ├── include ├── ACEX1K.h ├── MCD_dma.h ├── MCD_progCheck.h ├── MCD_tasksInit.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 ├── 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 ├── 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 ├── 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.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 │ ├── am62x_evm.h │ ├── am64x_evm.h │ ├── am65x_evm.h │ ├── amcore.h │ ├── anbernic-rgxx3-rk3566.h │ ├── ap121.h │ ├── ap143.h │ ├── ap152.h │ ├── apalis-imx8.h │ ├── apalis-tk1.h │ ├── apalis_imx6.h │ ├── apalis_t30.h │ ├── apple.h │ ├── arbel.h │ ├── aristainetos2.h │ ├── arndale.h │ ├── aspeed-common.h │ ├── astro_mcf5373l.h │ ├── at91-sama5_common.h │ ├── at91sam9260ek.h │ ├── at91sam9261ek.h │ ├── at91sam9263ek.h │ ├── at91sam9m10g45ek.h │ ├── at91sam9n12ek.h │ ├── at91sam9rlek.h │ ├── at91sam9x5ek.h │ ├── axs10x.h │ ├── baltos.h │ ├── bayleybay.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 │ ├── beaver.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 │ ├── bur_am335x_common.h │ ├── bur_cfg_common.h │ ├── capricorn-common.h │ ├── cardhu.h │ ├── cei-tk1-som.h │ ├── cgtqmx8.h │ ├── cherryhill.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_t20.h │ ├── colibri_t30.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 │ ├── coreboot.h │ ├── corstone1000.h │ ├── corvus.h │ ├── cougarcanyon2.h │ ├── crownbay.h │ ├── crs3xx-98dx3236.h │ ├── da850evm.h │ ├── dalmore.h │ ├── dart_6ul.h │ ├── db-88f6720.h │ ├── db-88f6820-amc.h │ ├── db-88f6820-gp.h │ ├── db-mv784mp-gp.h │ ├── db-xc3-24g4xg.h │ ├── deneb.h │ ├── devkit3250.h │ ├── devkit8000.h │ ├── dfi-bt700.h │ ├── dh_imx6.h │ ├── display5.h │ ├── dns325.h │ ├── dockstar.h │ ├── dra7xx_evm.h │ ├── draak.h │ ├── draco.h │ ├── dragonboard410c.h │ ├── dragonboard820c.h │ ├── dragonboard845c.h │ ├── dreamplug.h │ ├── ds109.h │ ├── ds116.h │ ├── ds414.h │ ├── durian.h │ ├── ea-lpc3250devkitv2.h │ ├── eb_cpu5282.h │ ├── ebisu.h │ ├── edison.h │ ├── efi-x86_app.h │ ├── efi-x86_payload.h │ ├── el6x_common.h │ ├── elgin_rv1108.h │ ├── embestmx6boards.h │ ├── emsdp.h │ ├── endeavoru.h │ ├── espresso7420.h │ ├── etamin.h │ ├── ethernut5.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 │ ├── galileo.h │ ├── gardena-smart-gateway-at91sam.h │ ├── gardena-smart-gateway-mt7688.h │ ├── gazerbeam.h │ ├── ge_b1x5v2.h │ ├── ge_bx50v3.h │ ├── geekbox.h │ ├── giedi.h │ ├── goflexhome.h │ ├── gose.h │ ├── grouper.h │ ├── grpeach.h │ ├── gru.h │ ├── guruplug.h │ ├── gw_ventana.h │ ├── gxp.h │ ├── harmony.h │ ├── hc2910-2aghd05.h │ ├── helios4.h │ ├── highbank.h │ ├── hihope-rzg2.h │ ├── hikey.h │ ├── hikey960.h │ ├── hsdk-4xd.h │ ├── hsdk.h │ ├── huawei_hg556a.h │ ├── ib62x0.h │ ├── iconnect.h │ ├── imgtec_xilfpga.h │ ├── imx6-engicam.h │ ├── imx6_logic.h │ ├── imx6dl-mamoj.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_dhcom_pdk2.h │ ├── imx8mp_evk.h │ ├── imx8mp_icore_mx8mp.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 │ ├── imx93_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 │ ├── jethub.h │ ├── jetson-tk1.h │ ├── k2e_evm.h │ ├── k2g_evm.h │ ├── k2hk_evm.h │ ├── k2l_evm.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 │ ├── linkit-smart-7688.h │ ├── lion_rk3368.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 │ ├── m53menlo.h │ ├── malta.h │ ├── maxbcm.h │ ├── mccmon6.h │ ├── mcr3000.h │ ├── medcom-wide.h │ ├── meerkat96.h │ ├── meesc.h │ ├── meson64.h │ ├── meson64_android.h │ ├── microblaze-generic.h │ ├── microchip_mpfs_icicle.h │ ├── minnowmax.h │ ├── miqi_rk3288.h │ ├── mk808.h │ ├── msc_sm2s_imx8mp.h │ ├── mt7620.h │ ├── mt7621.h │ ├── mt7622.h │ ├── mt7623.h │ ├── mt7628.h │ ├── mt7629.h │ ├── mt7981.h │ ├── mt7986.h │ ├── mt7988.h │ ├── mt8183.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 │ ├── nas220.h │ ├── netgear_cg3100d.h │ ├── netgear_dgnd3700v2.h │ ├── neural-compute-module-2.h │ ├── neural-compute-module-6.h │ ├── nitrogen6x.h │ ├── novena.h │ ├── npi_imx6ull.h │ ├── nsa310s.h │ ├── nsa325.h │ ├── nsim.h │ ├── nyan-big.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_xu3.h │ ├── omap3_beagle.h │ ├── omap3_evm.h │ ├── omap3_igep00x0.h │ ├── omap3_logic.h │ ├── omap4_panda.h │ ├── omap4_sdp4430.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 │ ├── p2371-0000.h │ ├── p2371-2180.h │ ├── p2571.h │ ├── p2771-0000.h │ ├── p3450-0000.h │ ├── paz00.h │ ├── pcl063.h │ ├── pcl063_ull.h │ ├── pcm052.h │ ├── pcm058.h │ ├── pdu001.h │ ├── peach-pi.h │ ├── peach-pit.h │ ├── pg-wcom-expu1.h │ ├── pg-wcom-seli8.h │ ├── phycore_am335x_r2.h │ ├── phycore_imx8mm.h │ ├── phycore_imx8mp.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 │ ├── plutux.h │ ├── pm9261.h │ ├── pm9263.h │ ├── pm9g45.h │ ├── pogo_e02.h │ ├── pogo_v4.h │ ├── poleg.h │ ├── pomelo.h │ ├── poplar.h │ ├── popmetal_rk3288.h │ ├── porter.h │ ├── presidio_asic.h │ ├── puma_rk3399.h │ ├── px30_common.h │ ├── px30_core.h │ ├── pxm2.h │ ├── qcs404-evb.h │ ├── qemu-arm.h │ ├── qemu-ppce500.h │ ├── qemu-riscv.h │ ├── qemu-x86.h │ ├── quartz64_rk3566.h │ ├── quartzpro64-rk3588.h │ ├── r2dplus.h │ ├── rastaban.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 │ ├── rk3568_common.h │ ├── rk3588_common.h │ ├── roc-pc-rk3399.h │ ├── rock.h │ ├── rock2.h │ ├── rock5a-rk3588s.h │ ├── rock5b-rk3588.h │ ├── rock960_rk3399.h │ ├── rockchip-common.h │ ├── rockpro64_rk3399.h │ ├── rpi.h │ ├── rut.h │ ├── rv1108_common.h │ ├── rv1126_common.h │ ├── rzg2l-smarc.h │ ├── rzn1-snarc.h │ ├── s5p4418_nanopi2.h │ ├── s5p_goni.h │ ├── s5pc210_universal.h │ ├── sagem_f@st1704.h │ ├── salvator-x.h │ ├── sam9x60_curiosity.h │ ├── sam9x60ek.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 │ ├── sama7g5ek.h │ ├── sandbox.h │ ├── sandbox_spl.h │ ├── sdm845.h │ ├── seaboard.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 │ ├── silinux-ek874.h │ ├── silk.h │ ├── sipeed-maix.h │ ├── slimbootloader.h │ ├── smartweb.h │ ├── smdk5250.h │ ├── smdk5420.h │ ├── smdkc100.h │ ├── smdkv310.h │ ├── smegw01.h │ ├── snapper9g45.h │ ├── sniper.h │ ├── snow.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 │ ├── 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 │ ├── stm32h750-art-pi.h │ ├── stm32mp13_common.h │ ├── stm32mp13_st_common.h │ ├── stm32mp15_common.h │ ├── stm32mp15_dh_dhsom.h │ ├── stm32mp15_st_common.h │ ├── stmark2.h │ ├── stout.h │ ├── stv0991.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 │ ├── tec-ng.h │ ├── tec.h │ ├── tegra-common-post.h │ ├── tegra-common.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 │ ├── thuban.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 │ ├── tinker_rk3288.h │ ├── topic_miami.h │ ├── total_compute.h │ ├── tplink_wdr4300.h │ ├── tqma6.h │ ├── tqma6_mba6.h │ ├── tqma6_wru4.h │ ├── transformer-common.h │ ├── transformer-t30.h │ ├── trats.h │ ├── trats2.h │ ├── trimslice.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 │ ├── venice2.h │ ├── ventana.h │ ├── verdin-am62.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 │ ├── x3-t30.h │ ├── x530.h │ ├── x86-chromebook.h │ ├── x86-common.h │ ├── xea.h │ ├── xenguest_arm64.h │ ├── xilinx_mbv.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 ├── 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 │ ├── 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 │ ├── arm │ │ └── ux500_pm_domains.h │ ├── ata │ │ └── ahci.h │ ├── bus │ │ ├── moxtet.h │ │ └── ti-sysc.h │ ├── clk │ │ ├── at91.h │ │ ├── mpc83xx-clk.h │ │ └── ti-dra7-atl.h │ ├── clock │ │ ├── actions,s700-cmu.h │ │ ├── actions,s900-cmu.h │ │ ├── agilex-clock.h │ │ ├── am3.h │ │ ├── amlogic,a1-peripherals-clkc.h │ │ ├── amlogic,a1-pll-clkc.h │ │ ├── aspeed-clock.h │ │ ├── ast2600-clock.h │ │ ├── at91.h │ │ ├── axg-aoclkc.h │ │ ├── axg-audio-clkc.h │ │ ├── axg-clkc.h │ │ ├── bcm-nsp.h │ │ ├── bcm2835-aux.h │ │ ├── bcm2835.h │ │ ├── bcm3380-clock.h │ │ ├── bcm6318-clock.h │ │ ├── bcm63268-clock.h │ │ ├── bcm6328-clock.h │ │ ├── bcm6338-clock.h │ │ ├── bcm6348-clock.h │ │ ├── bcm6358-clock.h │ │ ├── bcm6362-clock.h │ │ ├── bcm6368-clock.h │ │ ├── boston-clock.h │ │ ├── exynos7420-clk.h │ │ ├── fsl,qoriq-clockgen.h │ │ ├── g12a-aoclkc.h │ │ ├── g12a-clkc.h │ │ ├── gxbb-aoclkc.h │ │ ├── gxbb-clkc.h │ │ ├── hi3660-clock.h │ │ ├── hi6220-clock.h │ │ ├── histb-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 │ │ ├── imx8mm-clock.h │ │ ├── imx8mn-clock.h │ │ ├── imx8mp-clock.h │ │ ├── imx8mq-clock.h │ │ ├── imx8qm-clock.h │ │ ├── imx8qxp-clock.h │ │ ├── imx8ulp-clock.h │ │ ├── imx93-clock.h │ │ ├── imxrt1020-clock.h │ │ ├── imxrt1050-clock.h │ │ ├── imxrt1170-clock.h │ │ ├── intel-clock.h │ │ ├── jz4780-cgu.h │ │ ├── k210-sysctl.h │ │ ├── lpc32xx-clock.h │ │ ├── maxim,max77802.h │ │ ├── microchip,clock.h │ │ ├── microchip-mpfs-clock.h │ │ ├── mt7620-clk.h │ │ ├── mt7621-clk.h │ │ ├── mt7622-clk.h │ │ ├── mt7623-clk.h │ │ ├── mt7628-clk.h │ │ ├── mt7629-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 │ │ ├── omap4.h │ │ ├── omap5.h │ │ ├── px30-cru.h │ │ ├── qcom,gcc-qcs404.h │ │ ├── qcom,gcc-sdm845.h │ │ ├── qcom,ipq4019-gcc.h │ │ ├── r7s72100-clock.h │ │ ├── r8a774a1-cpg-mssr.h │ │ ├── r8a774b1-cpg-mssr.h │ │ ├── r8a774c0-cpg-mssr.h │ │ ├── r8a774e1-cpg-mssr.h │ │ ├── r8a7790-clock.h │ │ ├── r8a7790-cpg-mssr.h │ │ ├── r8a7791-clock.h │ │ ├── r8a7791-cpg-mssr.h │ │ ├── r8a7792-clock.h │ │ ├── r8a7792-cpg-mssr.h │ │ ├── r8a7793-clock.h │ │ ├── r8a7793-cpg-mssr.h │ │ ├── r8a7794-clock.h │ │ ├── r8a7794-cpg-mssr.h │ │ ├── r8a7795-cpg-mssr.h │ │ ├── r8a7796-cpg-mssr.h │ │ ├── r8a77961-cpg-mssr.h │ │ ├── r8a77965-cpg-mssr.h │ │ ├── r8a77970-cpg-mssr.h │ │ ├── r8a77980-cpg-mssr.h │ │ ├── r8a77990-cpg-mssr.h │ │ ├── r8a77995-cpg-mssr.h │ │ ├── r8a779a0-cpg-mssr.h │ │ ├── r8a779f0-cpg-mssr.h │ │ ├── r8a779g0-cpg-mssr.h │ │ ├── r9a06g032-sysctrl.h │ │ ├── r9a07g044-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 │ │ ├── rk3568-cru.h │ │ ├── rockchip,rk3588-cru.h │ │ ├── rockchip,rk808.h │ │ ├── rockchip,rv1126-cru.h │ │ ├── rv1108-cru.h │ │ ├── sifive-fu540-prci.h │ │ ├── sifive-fu740-prci.h │ │ ├── snps,hsdk-cgu.h │ │ ├── starfive,jh7110-crg.h │ │ ├── ste-ab8500.h │ │ ├── stih407-clks.h │ │ ├── stih410-clks.h │ │ ├── stm32fx-clock.h │ │ ├── stm32h7-clks.h │ │ ├── stm32mp1-clks.h │ │ ├── stm32mp1-clksrc.h │ │ ├── stm32mp13-clks.h │ │ ├── sun20i-d1-ccu.h │ │ ├── sun20i-d1-r-ccu.h │ │ ├── sun4i-a10-ccu.h │ │ ├── sun4i-a10-pll2.h │ │ ├── sun50i-a64-ccu.h │ │ ├── sun50i-h6-ccu.h │ │ ├── sun50i-h6-r-ccu.h │ │ ├── sun50i-h616-ccu.h │ │ ├── sun5i-ccu.h │ │ ├── sun6i-a31-ccu.h │ │ ├── sun6i-rtc.h │ │ ├── sun7i-a20-ccu.h │ │ ├── sun8i-a23-a33-ccu.h │ │ ├── sun8i-a83t-ccu.h │ │ ├── sun8i-de2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── sun8i-r-ccu.h │ │ ├── sun8i-r40-ccu.h │ │ ├── sun8i-tcon-top.h │ │ ├── sun8i-v3s-ccu.h │ │ ├── sun9i-a80-ccu.h │ │ ├── sun9i-a80-de.h │ │ ├── sun9i-a80-usb.h │ │ ├── suniv-ccu-f1c100s.h │ │ ├── tegra114-car.h │ │ ├── tegra124-car-common.h │ │ ├── tegra124-car.h │ │ ├── tegra186-clock.h │ │ ├── tegra20-car.h │ │ ├── tegra210-car.h │ │ ├── tegra30-car.h │ │ ├── versaclock.h │ │ ├── vf610-clock.h │ │ ├── xlnx-versal-clk.h │ │ ├── xlnx-versal-net-clk.h │ │ └── xlnx-zynqmp-clk.h │ ├── comphy │ │ └── comphy_data.h │ ├── display │ │ └── tda998x.h │ ├── dma │ │ ├── at91.h │ │ ├── bcm6318-dma.h │ │ ├── bcm63268-dma.h │ │ ├── bcm6328-dma.h │ │ ├── bcm6338-dma.h │ │ ├── bcm6348-dma.h │ │ ├── bcm6358-dma.h │ │ ├── bcm6362-dma.h │ │ ├── bcm6368-dma.h │ │ ├── sun4i-a10.h │ │ └── xlnx-zynqmp-dpdma.h │ ├── gpio │ │ ├── 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 │ │ ├── sandbox-gpio.h │ │ ├── tegra-gpio.h │ │ ├── tegra186-gpio.h │ │ ├── uniphier-gpio.h │ │ └── x86-gpio.h │ ├── input │ │ ├── gpio-keys.h │ │ ├── input.h │ │ └── linux-event-codes.h │ ├── interconnect │ │ ├── fsl,imx8mp.h │ │ ├── imx8mm.h │ │ ├── imx8mn.h │ │ └── imx8mq.h │ ├── interrupt-controller │ │ ├── apple-aic.h │ │ ├── arm-gic.h │ │ ├── irq-st.h │ │ ├── irq.h │ │ ├── irqc-rzg2l.h │ │ ├── mips-gic.h │ │ └── x86-irq.h │ ├── interrupt-router │ │ └── intel-irq.h │ ├── leds │ │ ├── common.h │ │ ├── leds-netxbig.h │ │ ├── leds-ns2.h │ │ └── leds-pca9532.h │ ├── mailbox │ │ └── tegra186-hsp.h │ ├── media │ │ ├── omap3-isp.h │ │ ├── tda1997x.h │ │ └── video-interfaces.h │ ├── memory │ │ ├── bcm-ns3-mc.h │ │ ├── imxrt-sdram.h │ │ ├── mpc83xx-sdram.h │ │ ├── rk3368-dmc.h │ │ ├── stm32-sdram.h │ │ ├── tegra114-mc.h │ │ ├── tegra124-mc.h │ │ ├── tegra210-mc.h │ │ └── tegra30-mc.h │ ├── mfd │ │ ├── at91-usart.h │ │ ├── atmel-flexcom.h │ │ ├── dbx500-prcmu.h │ │ ├── k210-sysctl.h │ │ ├── st,stpmic1.h │ │ ├── st-lpc.h │ │ ├── stm32f4-rcc.h │ │ ├── stm32f7-rcc.h │ │ └── stm32h7-rcc.h │ ├── mrc │ │ └── quark.h │ ├── mscc │ │ ├── jr2_data.h │ │ ├── luton_data.h │ │ ├── ocelot_data.h │ │ └── serval_data.h │ ├── mux │ │ ├── mux.h │ │ └── ti-serdes.h │ ├── net │ │ ├── microchip-lan78xx.h │ │ ├── mscc-phy-vsc8531.h │ │ ├── qca-ar803x.h │ │ ├── ti-dp83867.h │ │ └── ti-dp83869.h │ ├── pci │ │ └── pci.h │ ├── phy │ │ ├── phy-am654-serdes.h │ │ ├── phy-cadence.h │ │ ├── phy-imx8-pcie.h │ │ ├── phy-ti.h │ │ └── phy.h │ ├── pinctrl │ │ ├── am33xx.h │ │ ├── am43xx.h │ │ ├── apple.h │ │ ├── at91.h │ │ ├── bcm2835.h │ │ ├── brcm,pinctrl-ns3.h │ │ ├── dra.h │ │ ├── hisi.h │ │ ├── k210-pinctrl.h │ │ ├── k3.h │ │ ├── mt65xx.h │ │ ├── omap.h │ │ ├── pads-imx8qm.h │ │ ├── pads-imx8qxp.h │ │ ├── pinctrl-starfive-jh7110.h │ │ ├── pinctrl-tegra-xusb.h │ │ ├── pinctrl-tegra.h │ │ ├── pinctrl-zynqmp.h │ │ ├── pins-imx8mq.h │ │ ├── r7s72100-pinctrl.h │ │ ├── rockchip.h │ │ ├── rzg2l-pinctrl.h │ │ ├── rzn1-pinctrl.h │ │ ├── sandbox-pinmux.h │ │ ├── stm32-pinfunc.h │ │ └── sun4i-a10.h │ ├── pmic │ │ └── sandbox_pmic.h │ ├── power-domain │ │ ├── bcm6318-power-domain.h │ │ ├── bcm63268-power-domain.h │ │ ├── bcm6328-power-domain.h │ │ └── bcm6362-power-domain.h │ ├── power │ │ ├── fsl,imx93-power.h │ │ ├── imx7-power.h │ │ ├── imx8mm-power.h │ │ ├── imx8mn-power.h │ │ ├── imx8mp-power.h │ │ ├── imx8mq-power.h │ │ ├── imx8ulp-power.h │ │ ├── meson-a1-power.h │ │ ├── meson-axg-power.h │ │ ├── meson-g12a-power.h │ │ ├── meson-gxbb-power.h │ │ ├── meson-sm1-power.h │ │ ├── mt7623-power.h │ │ ├── mt7629-power.h │ │ ├── owl-s700-powergate.h │ │ ├── px30-power.h │ │ ├── r8a774a1-sysc.h │ │ ├── r8a774b1-sysc.h │ │ ├── r8a774c0-sysc.h │ │ ├── r8a774e1-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 │ │ ├── rk3066-power.h │ │ ├── rk3188-power.h │ │ ├── rk3228-power.h │ │ ├── rk3288-power.h │ │ ├── rk3328-power.h │ │ ├── rk3399-power.h │ │ ├── rk3568-power.h │ │ ├── rk3588-power.h │ │ ├── rockchip,rv1126-power.h │ │ ├── tegra186-powergate.h │ │ ├── xlnx-versal-net-power.h │ │ ├── xlnx-versal-power.h │ │ ├── xlnx-versal-regnode.h │ │ └── xlnx-zynqmp-power.h │ ├── pwm │ │ └── pwm.h │ ├── regulator │ │ ├── dlg,da9063-regulator.h │ │ ├── maxim,max77802.h │ │ └── st,stm32mp13-regulator.h │ ├── reset │ │ ├── actions,s700-reset.h │ │ ├── actions,s900-reset.h │ │ ├── altr,rst-mgr-a10.h │ │ ├── altr,rst-mgr-s10.h │ │ ├── altr,rst-mgr.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 │ │ ├── ast2500-reset.h │ │ ├── ast2600-reset.h │ │ ├── axg-aoclkc.h │ │ ├── bcm3380-reset.h │ │ ├── bcm6318-reset.h │ │ ├── bcm63268-reset.h │ │ ├── bcm6328-reset.h │ │ ├── bcm6338-reset.h │ │ ├── bcm6348-reset.h │ │ ├── bcm6358-reset.h │ │ ├── bcm6362-reset.h │ │ ├── bcm6368-reset.h │ │ ├── g12a-aoclkc.h │ │ ├── gxbb-aoclkc.h │ │ ├── imx7-reset.h │ │ ├── imx8mp-reset.h │ │ ├── imx8mq-reset.h │ │ ├── imx8ulp-pcc-reset.h │ │ ├── k210-sysctl.h │ │ ├── mt7620-reset.h │ │ ├── mt7621-reset.h │ │ ├── mt7623-reset.h │ │ ├── mt7628-reset.h │ │ ├── mt7629-reset.h │ │ ├── mt7988-reset.h │ │ ├── nuvoton,npcm7xx-reset.h │ │ ├── nuvoton,npcm8xx-reset.h │ │ ├── qcom,ipq4019-reset.h │ │ ├── raspberrypi,firmware-reset.h │ │ ├── rockchip,rk3588-cru.h │ │ ├── sama7g5-reset.h │ │ ├── sifive-fu540-prci.h │ │ ├── sifive-fu740-prci.h │ │ ├── snps,hsdk-reset.h │ │ ├── starfive,jh7110-crg.h │ │ ├── stih407-resets.h │ │ ├── stm32mp1-resets.h │ │ ├── stm32mp13-resets.h │ │ ├── sun20i-d1-ccu.h │ │ ├── sun20i-d1-r-ccu.h │ │ ├── sun4i-a10-ccu.h │ │ ├── sun50i-a64-ccu.h │ │ ├── sun50i-h6-ccu.h │ │ ├── sun50i-h6-r-ccu.h │ │ ├── sun50i-h616-ccu.h │ │ ├── sun5i-ccu.h │ │ ├── sun6i-a31-ccu.h │ │ ├── sun8i-a23-a33-ccu.h │ │ ├── sun8i-a83t-ccu.h │ │ ├── sun8i-de2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── sun8i-r-ccu.h │ │ ├── sun8i-r40-ccu.h │ │ ├── sun8i-v3s-ccu.h │ │ ├── sun9i-a80-ccu.h │ │ ├── sun9i-a80-de.h │ │ ├── sun9i-a80-usb.h │ │ ├── suniv-ccu-f1c100s.h │ │ ├── tegra124-car.h │ │ ├── tegra186-reset.h │ │ ├── ti-syscon.h │ │ ├── xlnx-versal-net-resets.h │ │ ├── xlnx-versal-resets.h │ │ └── xlnx-zynqmp-resets.h │ ├── soc │ │ ├── bcm2835-pm.h │ │ ├── imx8_pd.h │ │ ├── imx_rsrc.h │ │ ├── rockchip,boot-mode.h │ │ ├── rockchip,vop2.h │ │ └── ti,sci_pm_domain.h │ ├── sound │ │ ├── azalia.h │ │ ├── fsl-imx-audmux.h │ │ ├── meson-aiu.h │ │ ├── meson-g12a-toacodec.h │ │ ├── meson-g12a-tohdmitx.h │ │ ├── microchip,pdmc.h │ │ ├── nhlt.h │ │ ├── tlv320aic31xx-micbias.h │ │ └── tlv320aic31xx.h │ ├── spmi │ │ └── spmi.h │ ├── thermal │ │ ├── tegra124-soctherm.h │ │ └── thermal.h │ ├── usb │ │ └── pd.h │ └── video │ │ └── rk3288.h ├── dt-structs.h ├── dt_table.h ├── dw_hdmi.h ├── dwc3-omap-uboot.h ├── dwc3-sti-glue.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_default_filename.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 │ ├── distro │ │ └── sf.h │ ├── pg-wcom │ │ ├── common.env │ │ ├── ls102xa.env │ │ └── powerpc.env │ ├── ti │ │ ├── default_findfdt.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 ├── 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 ├── 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 ├── 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 │ │ ├── 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 ├── media_bus_format.h ├── memalign.h ├── membuff.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.h ├── net │ ├── dsa.h │ ├── fastboot_tcp.h │ ├── fastboot_udp.h │ ├── ldpaa_eth.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 ├── 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 │ ├── 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 │ ├── 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 ├── reiserfs.h ├── relocate.h ├── remoteproc.h ├── renesas │ ├── ddr_ctrl.h │ ├── is43tr16256a_125k_CTL.h │ ├── jedec_ddr3_2g_x16_1333h_500_cl8.h │ └── rzg2l-pfc.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 ├── sh_pfc.h ├── signatures.h ├── sl28cpld.h ├── slre.h ├── sm-uclass.h ├── sm.h ├── smbios.h ├── smem.h ├── smsc_lpc47m.h ├── smsc_sio1007.h ├── soc.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 ├── splash.h ├── spmi │ └── spmi.h ├── squashfs.h ├── status_led.h ├── stdint.h ├── stdio.h ├── stdio_dev.h ├── stdlib.h ├── stm32_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 ├── tca642x.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 │ ├── common.h │ ├── compression.h │ ├── env.h │ ├── export.h │ ├── fuzz.h │ ├── lib.h │ ├── log.h │ ├── optee.h │ ├── overlay.h │ ├── spl.h │ ├── suites.h │ ├── test.h │ └── ut.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 ├── tps6586x.h ├── trace.h ├── tsec.h ├── tsi148.h ├── twl4030.h ├── twl6030.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 │ ├── sha1.h │ ├── sha256.h │ ├── sha512.h │ ├── u-boot.lds.h │ ├── variadic-macro.h │ └── zlib.h ├── ubi_uboot.h ├── ubifs_uboot.h ├── ubispl.h ├── uboot_aes.h ├── ufs.h ├── universe.h ├── usb.h ├── usb │ ├── ci_udc.h │ ├── dwc2_udc.h │ ├── ehci-ci.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 ├── uuid.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 ├── 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 ├── 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_parser.c │ ├── pkcs7_verify.c │ ├── public_key.c │ ├── rsa_helper.c │ ├── rsapubkey.asn1 │ ├── x509.asn1 │ ├── x509_akid.asn1 │ ├── x509_cert_parser.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_info.c │ └── efi_stub.c ├── efi_driver │ ├── Makefile │ ├── efi_block_device.c │ └── efi_uclass.c ├── efi_loader │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ ├── boothart.c │ ├── capsule_esl.dtsi.in │ ├── dtbdump.c │ ├── efi_acpi.c │ ├── efi_bootmgr.c │ ├── efi_boottime.c │ ├── efi_capsule.c │ ├── efi_conformance.c │ ├── efi_console.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_file.c │ ├── efi_firmware.c │ ├── efi_freestanding.c │ ├── efi_gop.c │ ├── efi_helper.c │ ├── efi_hii.c │ ├── efi_hii_config.c │ ├── efi_image_loader.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 │ ├── helloworld.c │ └── initrddump.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_devicepath.c │ ├── efi_selftest_devicepath_util.c │ ├── efi_selftest_disk_image.h │ ├── efi_selftest_ecpt.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_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_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 ├── getopt.c ├── gunzip.c ├── gzip.c ├── hang.c ├── hash-checksum.c ├── hashtable.c ├── hexdump.c ├── image-sparse.c ├── initcall.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 ├── 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 ├── md5.c ├── membuff.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 ├── 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 ├── trace.c ├── uuid.c ├── vsprintf.c ├── xxhash.c ├── 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 ├── mdio-mux-uclass.c ├── mdio-uclass.c ├── ndisc.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.host ├── Makefile.lib ├── Makefile.spl ├── 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 ├── bloblist.c ├── boot │ ├── Makefile │ ├── bootdev.c │ ├── bootflow.c │ ├── bootmeth.c │ ├── bootstd_common.c │ ├── bootstd_common.h │ ├── cedit.c │ ├── expo.c │ ├── files │ │ ├── expo_ids.h │ │ └── expo_layout.dts │ ├── image.c │ ├── measurement.c │ ├── vbe_fixup.c │ └── vbe_simple.c ├── bootm.c ├── cmd │ ├── Makefile │ ├── addrmap.c │ ├── armffa.c │ ├── bdinfo.c │ ├── exit.c │ ├── fdt.c │ ├── font.c │ ├── history.c │ ├── loadm.c │ ├── mbr.c │ ├── mem.c │ ├── mem_search.c │ ├── pci_mps.c │ ├── pinmux.c │ ├── pwm.c │ ├── rw.c │ ├── seama.c │ ├── setexpr.c │ ├── temperature.c │ ├── test_echo.c │ ├── test_pause.c │ └── wget.c ├── cmd_ut.c ├── command_ut.c ├── common.sh ├── common │ ├── Makefile │ ├── cmd_ut_common.c │ ├── cread.c │ ├── cyclic.c │ ├── event.c │ └── test_autoboot.c ├── compression.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 │ ├── 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-dm.c │ ├── test-driver.c │ ├── test-fdt.c │ ├── test-uclass.c │ ├── timer.c │ ├── tpm.c │ ├── usb.c │ ├── video.c │ ├── virtio.c │ ├── virtio_device.c │ ├── virtio_rng.c │ └── wdt.c ├── env │ ├── Kconfig │ ├── Makefile │ ├── attr.c │ ├── cmd_ut_env.c │ ├── fdt.c │ └── hashtable.c ├── fs │ ├── fat-noncontig-test.sh │ └── fs-test.sh ├── fuzz │ ├── Makefile │ ├── cmd_fuzz.c │ └── virtio.c ├── image │ ├── Kconfig │ ├── Makefile │ ├── spl_load.c │ ├── spl_load_fs.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 │ ├── asn1.c │ ├── cmd_ut_lib.c │ ├── efi_device_path.c │ ├── efi_image_region.c │ ├── getopt.c │ ├── hexdump.c │ ├── kconfig.c │ ├── kconfig_spl.c │ ├── lmb.c │ ├── longjmp.c │ ├── rsa.c │ ├── sscanf.c │ ├── string.c │ ├── strlcat.c │ ├── test_aes.c │ ├── test_crc8.c │ ├── test_crypt.c │ ├── test_errno_str.c │ ├── test_print.c │ └── uuid.c ├── log │ ├── Makefile │ ├── cont_test.c │ ├── log_filter.c │ ├── log_test.c │ ├── log_ut.c │ ├── nolog_ndebug.c │ ├── nolog_test.c │ ├── pr_cont_test.c │ ├── syslog_test.c │ ├── syslog_test.h │ └── syslog_test_ndebug.c ├── optee │ ├── Kconfig │ ├── Makefile │ ├── cmd_ut_optee.c │ ├── test-optee-base.dts │ ├── test-optee-no-optee.dts │ └── test-optee-optee.dts ├── overlay │ ├── Kconfig │ ├── Makefile │ ├── cmd_ut_overlay.c │ ├── test-fdt-base.dts │ ├── test-fdt-overlay-stacked.dts │ └── test-fdt-overlay.dts ├── print_ut.c ├── py │ ├── .gitignore │ ├── conftest.py │ ├── multiplexed_log.css │ ├── multiplexed_log.py │ ├── pytest.ini │ ├── requirements.txt │ ├── test.py │ ├── tests │ │ ├── bootstd │ │ │ ├── armbian.bmp.xz │ │ │ ├── mmc1.img.xz │ │ │ └── mmc4.img.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 │ │ │ ├── conftest.py │ │ │ └── test_cat.py │ │ ├── test_cleanup_build.py │ │ ├── test_dfu.py │ │ ├── test_dm.py │ │ ├── test_efi_bootmgr │ │ │ ├── conftest.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.dts │ │ ├── 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 │ │ │ ├── conftest.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_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_mkdir.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_hush_if_test.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_nand.py │ │ ├── test_net.py │ │ ├── test_net_boot.py │ │ ├── test_of_migrate.py │ │ ├── test_ofplatdata.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_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_source.py │ │ ├── test_spi.py │ │ ├── test_spl.py │ │ ├── test_stackprotector.py │ │ ├── test_tpm2.py │ │ ├── test_trace.py │ │ ├── test_ums.py │ │ ├── test_unknown_cmd.py │ │ ├── test_usb.py │ │ ├── test_ut.py │ │ ├── test_vbe.py │ │ ├── test_vbe_vpl.py │ │ ├── test_vboot.py │ │ ├── test_vpl.py │ │ ├── test_xxd │ │ │ ├── conftest.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 │ ├── u_boot_console_base.py │ ├── u_boot_console_exec_attach.py │ ├── u_boot_console_sandbox.py │ ├── u_boot_spawn.py │ └── u_boot_utils.py ├── run ├── stdint │ ├── int-types.c │ └── test-includes.sh ├── str_ut.c ├── test-main.c ├── time_ut.c ├── trace │ └── test-trace.sh ├── unicode_ut.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 │ ├── fdt_add_pubkey.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 │ ├── 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 │ ├── opensbi.py │ ├── powerpc_mpc85xx_bootpg_resetvec.py │ ├── pre_load.py │ ├── rockchip_tpl.py │ ├── scp.py │ ├── section.py │ ├── tee_os.py │ ├── text.py │ ├── ti_board_config.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 ├── 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 │ ├── 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 │ ├── Makefile │ ├── 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 │ ├── 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 ├── imx_cntr_image.sh ├── imximage.c ├── iot2050-sign-fw.sh ├── jtagconsole ├── kermit ├── README ├── dot.kermrc ├── flash_param ├── send_cmd └── send_image ├── 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 ├── 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 ├── func_test.py ├── get_maintainer.py ├── gitutil.py ├── patchstream.py ├── patman ├── patman.rst ├── project.py ├── pyproject.toml ├── pytest.ini ├── 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_settings.py ├── pbl_crc32.c ├── pbl_crc32.h ├── pblimage.c ├── pblimage.h ├── prelink-riscv.c ├── prelink-riscv.inc ├── 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 ├── pyproject.toml ├── terminal.py ├── test_util.py ├── tools.py ├── tout.py └── u_boot_pylib ├── ublimage.c ├── ublimage.h ├── 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/Digilent/u-boot-digilent/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.get_maintainer.ignore: -------------------------------------------------------------------------------- 1 | "Pali Rohár" 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Kconfig -------------------------------------------------------------------------------- /Licenses/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Licenses/OFL.txt -------------------------------------------------------------------------------- /Licenses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Licenses/README -------------------------------------------------------------------------------- /Licenses/isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Licenses/isc.txt -------------------------------------------------------------------------------- /Licenses/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Licenses/mit.txt -------------------------------------------------------------------------------- /Licenses/x11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Licenses/x11.txt -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/README -------------------------------------------------------------------------------- /api/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/api/Kconfig -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/api/README -------------------------------------------------------------------------------- /api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/api/api.c -------------------------------------------------------------------------------- /api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/api/api_net.c -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/arch/Kconfig -------------------------------------------------------------------------------- /arch/Kconfig.nxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/arch/Kconfig.nxp -------------------------------------------------------------------------------- /arch/arc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/arch/arc/Kconfig -------------------------------------------------------------------------------- /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/Digilent/u-boot-digilent/HEAD/arch/arm/Kconfig -------------------------------------------------------------------------------- /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/imx6dl-wandboard-revd1-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl-wandboard-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-wandboard-revd1-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl-wandboard-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6qp-wandboard-revd1-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl-wandboard-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /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-m2-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | k3-am6528-iot2050-basic-pg2-u-boot.dtsi -------------------------------------------------------------------------------- /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/include/asm/acpi_table.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-mvebu/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /arch/arm/mach-npcm/npcm8xx/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += cpu.o reset.o 2 | -------------------------------------------------------------------------------- /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/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /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/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/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/Digilent/u-boot-digilent/HEAD/arch/sh/Kconfig -------------------------------------------------------------------------------- /arch/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/arch/sh/Makefile -------------------------------------------------------------------------------- /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/Digilent/u-boot-digilent/HEAD/arch/x86/Kconfig -------------------------------------------------------------------------------- /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/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /board/hpe/gxp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += gxp_board.o 2 | -------------------------------------------------------------------------------- /board/imgtec/ci20/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := ci20.o 4 | -------------------------------------------------------------------------------- /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/poleg_evb/Makefile: -------------------------------------------------------------------------------- 1 | obj-y := poleg_evb.o 2 | -------------------------------------------------------------------------------- /board/pine64/pinebook-pro-rk3399/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += pinebook-pro-rk3399.o 2 | -------------------------------------------------------------------------------- /board/pine64/pinephone-pro-rk3399/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += pinephone-pro-rk3399.o 2 | -------------------------------------------------------------------------------- /board/qca/ap121/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap121.o 4 | -------------------------------------------------------------------------------- /board/qca/ap143/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap143.o 4 | -------------------------------------------------------------------------------- /board/qca/ap152/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap152.o 4 | -------------------------------------------------------------------------------- /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/siemens/common/Kconfig: -------------------------------------------------------------------------------- 1 | config FACTORYSET 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/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/Digilent/u-boot-digilent/HEAD/boot/Kconfig -------------------------------------------------------------------------------- /boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/Makefile -------------------------------------------------------------------------------- /boot/boot_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/boot_fit.c -------------------------------------------------------------------------------- /boot/bootflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/bootflow.c -------------------------------------------------------------------------------- /boot/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/bootm.c -------------------------------------------------------------------------------- /boot/bootm_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/bootm_os.c -------------------------------------------------------------------------------- /boot/bootretry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/bootretry.c -------------------------------------------------------------------------------- /boot/cedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/cedit.c -------------------------------------------------------------------------------- /boot/expo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/expo.c -------------------------------------------------------------------------------- /boot/image-fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/image-fdt.c -------------------------------------------------------------------------------- /boot/image-fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/image-fit.c -------------------------------------------------------------------------------- /boot/image-sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/image-sig.c -------------------------------------------------------------------------------- /boot/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/image.c -------------------------------------------------------------------------------- /boot/pxe_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/pxe_utils.c -------------------------------------------------------------------------------- /boot/scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/scene.c -------------------------------------------------------------------------------- /boot/vbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/boot/vbe.c -------------------------------------------------------------------------------- /cmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/.gitignore -------------------------------------------------------------------------------- /cmd/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/2048.c -------------------------------------------------------------------------------- /cmd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/Kconfig -------------------------------------------------------------------------------- /cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/Makefile -------------------------------------------------------------------------------- /cmd/ab_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ab_select.c -------------------------------------------------------------------------------- /cmd/abootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/abootimg.c -------------------------------------------------------------------------------- /cmd/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/acpi.c -------------------------------------------------------------------------------- /cmd/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/adc.c -------------------------------------------------------------------------------- /cmd/addrmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/addrmap.c -------------------------------------------------------------------------------- /cmd/adtimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/adtimg.c -------------------------------------------------------------------------------- /cmd/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/aes.c -------------------------------------------------------------------------------- /cmd/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/arm/Makefile -------------------------------------------------------------------------------- /cmd/armffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/armffa.c -------------------------------------------------------------------------------- /cmd/armflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/armflash.c -------------------------------------------------------------------------------- /cmd/avb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/avb.c -------------------------------------------------------------------------------- /cmd/axi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/axi.c -------------------------------------------------------------------------------- /cmd/bcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bcb.c -------------------------------------------------------------------------------- /cmd/bdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bdinfo.c -------------------------------------------------------------------------------- /cmd/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bind.c -------------------------------------------------------------------------------- /cmd/binop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/binop.c -------------------------------------------------------------------------------- /cmd/blk_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/blk_common.c -------------------------------------------------------------------------------- /cmd/blkcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/blkcache.c -------------------------------------------------------------------------------- /cmd/blkmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/blkmap.c -------------------------------------------------------------------------------- /cmd/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/blob.c -------------------------------------------------------------------------------- /cmd/bloblist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bloblist.c -------------------------------------------------------------------------------- /cmd/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bmp.c -------------------------------------------------------------------------------- /cmd/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/boot.c -------------------------------------------------------------------------------- /cmd/bootcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootcount.c -------------------------------------------------------------------------------- /cmd/bootdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootdev.c -------------------------------------------------------------------------------- /cmd/bootefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootefi.c -------------------------------------------------------------------------------- /cmd/bootflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootflow.c -------------------------------------------------------------------------------- /cmd/booti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/booti.c -------------------------------------------------------------------------------- /cmd/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootm.c -------------------------------------------------------------------------------- /cmd/bootmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootmenu.c -------------------------------------------------------------------------------- /cmd/bootmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootmeth.c -------------------------------------------------------------------------------- /cmd/bootstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootstage.c -------------------------------------------------------------------------------- /cmd/bootz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/bootz.c -------------------------------------------------------------------------------- /cmd/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/btrfs.c -------------------------------------------------------------------------------- /cmd/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/button.c -------------------------------------------------------------------------------- /cmd/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cache.c -------------------------------------------------------------------------------- /cmd/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cat.c -------------------------------------------------------------------------------- /cmd/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cbfs.c -------------------------------------------------------------------------------- /cmd/cedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cedit.c -------------------------------------------------------------------------------- /cmd/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/clk.c -------------------------------------------------------------------------------- /cmd/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/clone.c -------------------------------------------------------------------------------- /cmd/cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cls.c -------------------------------------------------------------------------------- /cmd/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/config.c -------------------------------------------------------------------------------- /cmd/conitrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/conitrace.c -------------------------------------------------------------------------------- /cmd/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/console.c -------------------------------------------------------------------------------- /cmd/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cpu.c -------------------------------------------------------------------------------- /cmd/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cramfs.c -------------------------------------------------------------------------------- /cmd/cros_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cros_ec.c -------------------------------------------------------------------------------- /cmd/cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/cyclic.c -------------------------------------------------------------------------------- /cmd/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/date.c -------------------------------------------------------------------------------- /cmd/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/demo.c -------------------------------------------------------------------------------- /cmd/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/dfu.c -------------------------------------------------------------------------------- /cmd/diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/diag.c -------------------------------------------------------------------------------- /cmd/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/disk.c -------------------------------------------------------------------------------- /cmd/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/dm.c -------------------------------------------------------------------------------- /cmd/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/echo.c -------------------------------------------------------------------------------- /cmd/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/eeprom.c -------------------------------------------------------------------------------- /cmd/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/efi.c -------------------------------------------------------------------------------- /cmd/efi_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/efi_common.c -------------------------------------------------------------------------------- /cmd/eficonfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/eficonfig.c -------------------------------------------------------------------------------- /cmd/efidebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/efidebug.c -------------------------------------------------------------------------------- /cmd/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/elf.c -------------------------------------------------------------------------------- /cmd/erofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/erofs.c -------------------------------------------------------------------------------- /cmd/ethsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ethsw.c -------------------------------------------------------------------------------- /cmd/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/event.c -------------------------------------------------------------------------------- /cmd/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/exit.c -------------------------------------------------------------------------------- /cmd/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ext2.c -------------------------------------------------------------------------------- /cmd/ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ext4.c -------------------------------------------------------------------------------- /cmd/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fastboot.c -------------------------------------------------------------------------------- /cmd/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fat.c -------------------------------------------------------------------------------- /cmd/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fdt.c -------------------------------------------------------------------------------- /cmd/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/flash.c -------------------------------------------------------------------------------- /cmd/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/font.c -------------------------------------------------------------------------------- /cmd/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fpga.c -------------------------------------------------------------------------------- /cmd/fpgad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fpgad.c -------------------------------------------------------------------------------- /cmd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fs.c -------------------------------------------------------------------------------- /cmd/fs_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fs_uuid.c -------------------------------------------------------------------------------- /cmd/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fuse.c -------------------------------------------------------------------------------- /cmd/fwu_mdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/fwu_mdata.c -------------------------------------------------------------------------------- /cmd/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/gettime.c -------------------------------------------------------------------------------- /cmd/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/gpio.c -------------------------------------------------------------------------------- /cmd/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/gpt.c -------------------------------------------------------------------------------- /cmd/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/hash.c -------------------------------------------------------------------------------- /cmd/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/help.c -------------------------------------------------------------------------------- /cmd/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/history.c -------------------------------------------------------------------------------- /cmd/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/host.c -------------------------------------------------------------------------------- /cmd/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/i2c.c -------------------------------------------------------------------------------- /cmd/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ide.c -------------------------------------------------------------------------------- /cmd/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ini.c -------------------------------------------------------------------------------- /cmd/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/io.c -------------------------------------------------------------------------------- /cmd/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/iotrace.c -------------------------------------------------------------------------------- /cmd/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/irq.c -------------------------------------------------------------------------------- /cmd/itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/itest.c -------------------------------------------------------------------------------- /cmd/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/jffs2.c -------------------------------------------------------------------------------- /cmd/kaslrseed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/kaslrseed.c -------------------------------------------------------------------------------- /cmd/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/led.c -------------------------------------------------------------------------------- /cmd/legacy_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/legacy_led.c -------------------------------------------------------------------------------- /cmd/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/license.c -------------------------------------------------------------------------------- /cmd/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/load.c -------------------------------------------------------------------------------- /cmd/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/log.c -------------------------------------------------------------------------------- /cmd/lsblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/lsblk.c -------------------------------------------------------------------------------- /cmd/lzmadec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/lzmadec.c -------------------------------------------------------------------------------- /cmd/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mbr.c -------------------------------------------------------------------------------- /cmd/md5sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/md5sum.c -------------------------------------------------------------------------------- /cmd/mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mdio.c -------------------------------------------------------------------------------- /cmd/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mem.c -------------------------------------------------------------------------------- /cmd/meson/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/meson/sm.c -------------------------------------------------------------------------------- /cmd/mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mii.c -------------------------------------------------------------------------------- /cmd/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/misc.c -------------------------------------------------------------------------------- /cmd/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mmc.c -------------------------------------------------------------------------------- /cmd/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mp.c -------------------------------------------------------------------------------- /cmd/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mtd.c -------------------------------------------------------------------------------- /cmd/mtdparts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mtdparts.c -------------------------------------------------------------------------------- /cmd/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mux.c -------------------------------------------------------------------------------- /cmd/mvebu/bubt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/mvebu/bubt.c -------------------------------------------------------------------------------- /cmd/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/nand.c -------------------------------------------------------------------------------- /cmd/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/net.c -------------------------------------------------------------------------------- /cmd/nvedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/nvedit.c -------------------------------------------------------------------------------- /cmd/nvedit_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/nvedit_efi.c -------------------------------------------------------------------------------- /cmd/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/nvme.c -------------------------------------------------------------------------------- /cmd/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/onenand.c -------------------------------------------------------------------------------- /cmd/optee_rpmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/optee_rpmb.c -------------------------------------------------------------------------------- /cmd/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/osd.c -------------------------------------------------------------------------------- /cmd/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/panic.c -------------------------------------------------------------------------------- /cmd/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/part.c -------------------------------------------------------------------------------- /cmd/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pause.c -------------------------------------------------------------------------------- /cmd/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pcap.c -------------------------------------------------------------------------------- /cmd/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pci.c -------------------------------------------------------------------------------- /cmd/pci_mps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pci_mps.c -------------------------------------------------------------------------------- /cmd/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pinmux.c -------------------------------------------------------------------------------- /cmd/pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pmc.c -------------------------------------------------------------------------------- /cmd/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pmic.c -------------------------------------------------------------------------------- /cmd/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/printf.c -------------------------------------------------------------------------------- /cmd/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/printf.h -------------------------------------------------------------------------------- /cmd/pstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pstore.c -------------------------------------------------------------------------------- /cmd/pvblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pvblock.c -------------------------------------------------------------------------------- /cmd/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pwm.c -------------------------------------------------------------------------------- /cmd/pxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/pxe.c -------------------------------------------------------------------------------- /cmd/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/qfw.c -------------------------------------------------------------------------------- /cmd/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/read.c -------------------------------------------------------------------------------- /cmd/reginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/reginfo.c -------------------------------------------------------------------------------- /cmd/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/regulator.c -------------------------------------------------------------------------------- /cmd/reiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/reiser.c -------------------------------------------------------------------------------- /cmd/remoteproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/remoteproc.c -------------------------------------------------------------------------------- /cmd/riscv/sbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/riscv/sbi.c -------------------------------------------------------------------------------- /cmd/rkmtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/rkmtd.c -------------------------------------------------------------------------------- /cmd/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/rng.c -------------------------------------------------------------------------------- /cmd/rockusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/rockusb.c -------------------------------------------------------------------------------- /cmd/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/rtc.c -------------------------------------------------------------------------------- /cmd/sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sata.c -------------------------------------------------------------------------------- /cmd/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sb.c -------------------------------------------------------------------------------- /cmd/scp03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/scp03.c -------------------------------------------------------------------------------- /cmd/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/scsi.c -------------------------------------------------------------------------------- /cmd/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/seama.c -------------------------------------------------------------------------------- /cmd/setexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/setexpr.c -------------------------------------------------------------------------------- /cmd/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sf.c -------------------------------------------------------------------------------- /cmd/sha1sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sha1sum.c -------------------------------------------------------------------------------- /cmd/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sleep.c -------------------------------------------------------------------------------- /cmd/smccc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/smccc.c -------------------------------------------------------------------------------- /cmd/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sound.c -------------------------------------------------------------------------------- /cmd/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/source.c -------------------------------------------------------------------------------- /cmd/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/spi.c -------------------------------------------------------------------------------- /cmd/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/spl.c -------------------------------------------------------------------------------- /cmd/sqfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sqfs.c -------------------------------------------------------------------------------- /cmd/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/strings.c -------------------------------------------------------------------------------- /cmd/sysboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/sysboot.c -------------------------------------------------------------------------------- /cmd/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/terminal.c -------------------------------------------------------------------------------- /cmd/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/test.c -------------------------------------------------------------------------------- /cmd/thordown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/thordown.c -------------------------------------------------------------------------------- /cmd/ti/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ti/Kconfig -------------------------------------------------------------------------------- /cmd/ti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ti/Makefile -------------------------------------------------------------------------------- /cmd/ti/ddr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ti/ddr3.c -------------------------------------------------------------------------------- /cmd/ti/pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ti/pd.c -------------------------------------------------------------------------------- /cmd/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/time.c -------------------------------------------------------------------------------- /cmd/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/timer.c -------------------------------------------------------------------------------- /cmd/tlv_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/tlv_eeprom.c -------------------------------------------------------------------------------- /cmd/tpm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/tpm-common.c -------------------------------------------------------------------------------- /cmd/tpm-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/tpm-v1.c -------------------------------------------------------------------------------- /cmd/tpm-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/tpm-v2.c -------------------------------------------------------------------------------- /cmd/tpm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/tpm_test.c -------------------------------------------------------------------------------- /cmd/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/trace.c -------------------------------------------------------------------------------- /cmd/tsi148.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/tsi148.c -------------------------------------------------------------------------------- /cmd/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ubi.c -------------------------------------------------------------------------------- /cmd/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ubifs.c -------------------------------------------------------------------------------- /cmd/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ufs.c -------------------------------------------------------------------------------- /cmd/universe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/universe.c -------------------------------------------------------------------------------- /cmd/unlz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/unlz4.c -------------------------------------------------------------------------------- /cmd/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/unzip.c -------------------------------------------------------------------------------- /cmd/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/usb.c -------------------------------------------------------------------------------- /cmd/vbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/vbe.c -------------------------------------------------------------------------------- /cmd/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/version.c -------------------------------------------------------------------------------- /cmd/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/video.c -------------------------------------------------------------------------------- /cmd/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/virtio.c -------------------------------------------------------------------------------- /cmd/w1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/w1.c -------------------------------------------------------------------------------- /cmd/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/wdt.c -------------------------------------------------------------------------------- /cmd/wol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/wol.c -------------------------------------------------------------------------------- /cmd/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/x86/Makefile -------------------------------------------------------------------------------- /cmd/x86/fsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/x86/fsp.c -------------------------------------------------------------------------------- /cmd/x86/hob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/x86/hob.c -------------------------------------------------------------------------------- /cmd/x86/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/x86/mtrr.c -------------------------------------------------------------------------------- /cmd/ximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/ximg.c -------------------------------------------------------------------------------- /cmd/xxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/xxd.c -------------------------------------------------------------------------------- /cmd/yaffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/yaffs2.c -------------------------------------------------------------------------------- /cmd/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/zfs.c -------------------------------------------------------------------------------- /cmd/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/cmd/zip.c -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/board_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/board_f.c -------------------------------------------------------------------------------- /common/board_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/board_r.c -------------------------------------------------------------------------------- /common/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/cli.c -------------------------------------------------------------------------------- /common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/command.c -------------------------------------------------------------------------------- /common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/console.c -------------------------------------------------------------------------------- /common/cros_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/cros_ec.c -------------------------------------------------------------------------------- /common/cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/cyclic.c -------------------------------------------------------------------------------- /common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/ddr_spd.c -------------------------------------------------------------------------------- /common/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/dfu.c -------------------------------------------------------------------------------- /common/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/edid.c -------------------------------------------------------------------------------- /common/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/event.c -------------------------------------------------------------------------------- /common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/exports.c -------------------------------------------------------------------------------- /common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/flash.c -------------------------------------------------------------------------------- /common/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/hash.c -------------------------------------------------------------------------------- /common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/iomux.c -------------------------------------------------------------------------------- /common/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/iotrace.c -------------------------------------------------------------------------------- /common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/kgdb.c -------------------------------------------------------------------------------- /common/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/log.c -------------------------------------------------------------------------------- /common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/main.c -------------------------------------------------------------------------------- /common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/memsize.c -------------------------------------------------------------------------------- /common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/menu.c -------------------------------------------------------------------------------- /common/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/qfw.c -------------------------------------------------------------------------------- /common/scp03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/scp03.c -------------------------------------------------------------------------------- /common/spl/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/spl/spl.c -------------------------------------------------------------------------------- /common/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/splash.c -------------------------------------------------------------------------------- /common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/stdio.c -------------------------------------------------------------------------------- /common/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/update.c -------------------------------------------------------------------------------- /common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/usb.c -------------------------------------------------------------------------------- /common/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/usb_hub.c -------------------------------------------------------------------------------- /common/usb_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/common/usb_kbd.c -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/config.mk -------------------------------------------------------------------------------- /disk/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/Kconfig -------------------------------------------------------------------------------- /disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/Makefile -------------------------------------------------------------------------------- /disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part.c -------------------------------------------------------------------------------- /disk/part_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_dos.c -------------------------------------------------------------------------------- /disk/part_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_dos.h -------------------------------------------------------------------------------- /disk/part_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_efi.c -------------------------------------------------------------------------------- /disk/part_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_iso.c -------------------------------------------------------------------------------- /disk/part_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_iso.h -------------------------------------------------------------------------------- /disk/part_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_mac.c -------------------------------------------------------------------------------- /disk/part_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/disk/part_mac.h -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.LED -------------------------------------------------------------------------------- /doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.OFT -------------------------------------------------------------------------------- /doc/README.POST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.POST -------------------------------------------------------------------------------- /doc/README.SNTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.SNTP -------------------------------------------------------------------------------- /doc/README.TPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.TPL -------------------------------------------------------------------------------- /doc/README.VLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.VLAN -------------------------------------------------------------------------------- /doc/README.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.asn1 -------------------------------------------------------------------------------- /doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.cfi -------------------------------------------------------------------------------- /doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.dns -------------------------------------------------------------------------------- /doc/README.ext4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.ext4 -------------------------------------------------------------------------------- /doc/README.fuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.fuse -------------------------------------------------------------------------------- /doc/README.gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.gpio -------------------------------------------------------------------------------- /doc/README.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.gpt -------------------------------------------------------------------------------- /doc/README.i2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.i2c -------------------------------------------------------------------------------- /doc/README.iomux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.iomux -------------------------------------------------------------------------------- /doc/README.malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.malta -------------------------------------------------------------------------------- /doc/README.nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.nand -------------------------------------------------------------------------------- /doc/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.omap3 -------------------------------------------------------------------------------- /doc/README.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.pcap -------------------------------------------------------------------------------- /doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.pxe -------------------------------------------------------------------------------- /doc/README.sata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.sata -------------------------------------------------------------------------------- /doc/README.sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.sched -------------------------------------------------------------------------------- /doc/README.tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.tee -------------------------------------------------------------------------------- /doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.ubi -------------------------------------------------------------------------------- /doc/README.udp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.udp -------------------------------------------------------------------------------- /doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.usb -------------------------------------------------------------------------------- /doc/README.vf610: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.vf610 -------------------------------------------------------------------------------- /doc/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.video -------------------------------------------------------------------------------- /doc/README.zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/README.zfs -------------------------------------------------------------------------------- /doc/api/clk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/clk.rst -------------------------------------------------------------------------------- /doc/api/dfu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/dfu.rst -------------------------------------------------------------------------------- /doc/api/dm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/dm.rst -------------------------------------------------------------------------------- /doc/api/efi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/efi.rst -------------------------------------------------------------------------------- /doc/api/lmb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/lmb.rst -------------------------------------------------------------------------------- /doc/api/part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/part.rst -------------------------------------------------------------------------------- /doc/api/rng.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/api/rng.rst -------------------------------------------------------------------------------- /doc/arch/arc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/arch/arc.rst -------------------------------------------------------------------------------- /doc/arch/sh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/arch/sh.rst -------------------------------------------------------------------------------- /doc/bounces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/bounces -------------------------------------------------------------------------------- /doc/build/buildman.rst: -------------------------------------------------------------------------------- 1 | ../../tools/buildman/buildman.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/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/dumpimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/dumpimage.1 -------------------------------------------------------------------------------- /doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/git-mailrc -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/kwboot.1 -------------------------------------------------------------------------------- /doc/media/linker_lists.h.rst.exceptions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/mkfwumdata.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/mkfwumdata.1 -------------------------------------------------------------------------------- /doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/doc/mkimage.1 -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/mfd/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_MFD_ATMEL_SMC) += atmel-smc.o 2 | -------------------------------------------------------------------------------- /drivers/mtd/ubispl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubispl.o ../ubi/crc32.o 2 | -------------------------------------------------------------------------------- /drivers/phy/ti/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(SPL_)PHY_J721E_WIZ) += phy-j721e-wiz.o 2 | -------------------------------------------------------------------------------- /drivers/qe/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/drivers/qe/fdt.c -------------------------------------------------------------------------------- /drivers/qe/qe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/drivers/qe/qe.c -------------------------------------------------------------------------------- /drivers/ram/cadence/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_CADENCE_DDR_CTRL) += ddr_ctrl.o 2 | -------------------------------------------------------------------------------- /drivers/video/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | *.S 2 | -------------------------------------------------------------------------------- /dts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/dts/Kconfig -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/dts/Makefile -------------------------------------------------------------------------------- /env/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/Kconfig -------------------------------------------------------------------------------- /env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/Makefile -------------------------------------------------------------------------------- /env/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/attr.c -------------------------------------------------------------------------------- /env/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/callback.c -------------------------------------------------------------------------------- /env/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/common.c -------------------------------------------------------------------------------- /env/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/eeprom.c -------------------------------------------------------------------------------- /env/embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/embedded.c -------------------------------------------------------------------------------- /env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/env.c -------------------------------------------------------------------------------- /env/ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/ext4.c -------------------------------------------------------------------------------- /env/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/fat.c -------------------------------------------------------------------------------- /env/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/flags.c -------------------------------------------------------------------------------- /env/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/flash.c -------------------------------------------------------------------------------- /env/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/mmc.c -------------------------------------------------------------------------------- /env/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/nand.c -------------------------------------------------------------------------------- /env/nowhere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/nowhere.c -------------------------------------------------------------------------------- /env/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/nvram.c -------------------------------------------------------------------------------- /env/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/onenand.c -------------------------------------------------------------------------------- /env/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/remote.c -------------------------------------------------------------------------------- /env/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/sf.c -------------------------------------------------------------------------------- /env/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/env/ubi.c -------------------------------------------------------------------------------- /examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /fs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/Kconfig -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/Makefile -------------------------------------------------------------------------------- /fs/btrfs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/Kconfig -------------------------------------------------------------------------------- /fs/btrfs/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/btrfs.c -------------------------------------------------------------------------------- /fs/btrfs/btrfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/btrfs.h -------------------------------------------------------------------------------- /fs/btrfs/ctree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/ctree.c -------------------------------------------------------------------------------- /fs/btrfs/ctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/ctree.h -------------------------------------------------------------------------------- /fs/btrfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/dev.c -------------------------------------------------------------------------------- /fs/btrfs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/btrfs/inode.c -------------------------------------------------------------------------------- /fs/cbfs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/cbfs/Kconfig -------------------------------------------------------------------------------- /fs/cbfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/cbfs/Makefile -------------------------------------------------------------------------------- /fs/cbfs/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/cbfs/cbfs.c -------------------------------------------------------------------------------- /fs/erofs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/erofs/Kconfig -------------------------------------------------------------------------------- /fs/erofs/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/erofs/data.c -------------------------------------------------------------------------------- /fs/erofs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/erofs/fs.c -------------------------------------------------------------------------------- /fs/erofs/namei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/erofs/namei.c -------------------------------------------------------------------------------- /fs/erofs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/erofs/super.c -------------------------------------------------------------------------------- /fs/erofs/zmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/erofs/zmap.c -------------------------------------------------------------------------------- /fs/ext4/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ext4/Kconfig -------------------------------------------------------------------------------- /fs/ext4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ext4/Makefile -------------------------------------------------------------------------------- /fs/ext4/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ext4/dev.c -------------------------------------------------------------------------------- /fs/ext4/ext4fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ext4/ext4fs.c -------------------------------------------------------------------------------- /fs/fat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/fat/Kconfig -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/fat/Makefile -------------------------------------------------------------------------------- /fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/fat/fat.c -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/fs.c -------------------------------------------------------------------------------- /fs/fs_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/fs_internal.c -------------------------------------------------------------------------------- /fs/jffs2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/jffs2/Kconfig -------------------------------------------------------------------------------- /fs/jffs2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/jffs2/LICENCE -------------------------------------------------------------------------------- /fs/reiserfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/sandbox/Kconfig: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | -------------------------------------------------------------------------------- /fs/ubifs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/Kconfig -------------------------------------------------------------------------------- /fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/debug.c -------------------------------------------------------------------------------- /fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/debug.h -------------------------------------------------------------------------------- /fs/ubifs/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/gc.c -------------------------------------------------------------------------------- /fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/io.c -------------------------------------------------------------------------------- /fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/key.h -------------------------------------------------------------------------------- /fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/log.c -------------------------------------------------------------------------------- /fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/misc.h -------------------------------------------------------------------------------- /fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/sb.c -------------------------------------------------------------------------------- /fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/scan.c -------------------------------------------------------------------------------- /fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/super.c -------------------------------------------------------------------------------- /fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /fs/zfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/zfs/Makefile -------------------------------------------------------------------------------- /fs/zfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/zfs/dev.c -------------------------------------------------------------------------------- /fs/zfs/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/fs/zfs/zfs.c -------------------------------------------------------------------------------- /include/ACEX1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ACEX1K.h -------------------------------------------------------------------------------- /include/abuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/abuf.h -------------------------------------------------------------------------------- /include/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/adc.h -------------------------------------------------------------------------------- /include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ahci.h -------------------------------------------------------------------------------- /include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/altera.h -------------------------------------------------------------------------------- /include/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ansi.h -------------------------------------------------------------------------------- /include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/api.h -------------------------------------------------------------------------------- /include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ata.h -------------------------------------------------------------------------------- /include/axi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axi.h -------------------------------------------------------------------------------- /include/axp152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axp152.h -------------------------------------------------------------------------------- /include/axp209.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axp209.h -------------------------------------------------------------------------------- /include/axp221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axp221.h -------------------------------------------------------------------------------- /include/axp305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axp305.h -------------------------------------------------------------------------------- /include/axp809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axp809.h -------------------------------------------------------------------------------- /include/axp818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/axp818.h -------------------------------------------------------------------------------- /include/bcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/bcb.h -------------------------------------------------------------------------------- /include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/bcd.h -------------------------------------------------------------------------------- /include/binman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/binman.h -------------------------------------------------------------------------------- /include/blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/blk.h -------------------------------------------------------------------------------- /include/blkmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/blkmap.h -------------------------------------------------------------------------------- /include/bootm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/bootm.h -------------------------------------------------------------------------------- /include/btrfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/btrfs.h -------------------------------------------------------------------------------- /include/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/button.h -------------------------------------------------------------------------------- /include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/bzlib.h -------------------------------------------------------------------------------- /include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cache.h -------------------------------------------------------------------------------- /include/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cbfs.h -------------------------------------------------------------------------------- /include/cedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cedit.h -------------------------------------------------------------------------------- /include/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cli.h -------------------------------------------------------------------------------- /include/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/clk.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/common.h -------------------------------------------------------------------------------- /include/cp1250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cp1250.h -------------------------------------------------------------------------------- /include/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cp437.h -------------------------------------------------------------------------------- /include/cpsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cpsw.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/crypt.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- 1 | linux/ctype.h -------------------------------------------------------------------------------- /include/cyclic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/cyclic.h -------------------------------------------------------------------------------- /include/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dfu.h -------------------------------------------------------------------------------- /include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/div64.h -------------------------------------------------------------------------------- /include/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dm.h -------------------------------------------------------------------------------- /include/dm/of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dm/of.h -------------------------------------------------------------------------------- /include/dm/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dm/pci.h -------------------------------------------------------------------------------- /include/dm/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dm/tag.h -------------------------------------------------------------------------------- /include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dma.h -------------------------------------------------------------------------------- /include/dwmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/dwmmc.h -------------------------------------------------------------------------------- /include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/e500.h -------------------------------------------------------------------------------- /include/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/edid.h -------------------------------------------------------------------------------- /include/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/eeprom.h -------------------------------------------------------------------------------- /include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/efi.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/env.h -------------------------------------------------------------------------------- /include/erofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/erofs.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/ethsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ethsw.h -------------------------------------------------------------------------------- /include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/event.h -------------------------------------------------------------------------------- /include/expo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/expo.h -------------------------------------------------------------------------------- /include/ext4fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ext4fs.h -------------------------------------------------------------------------------- /include/extcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/extcon.h -------------------------------------------------------------------------------- /include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fat.h -------------------------------------------------------------------------------- /include/fb_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fb_mmc.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- 1 | #include "../scripts/dtc/libfdt/fdt.h" 2 | -------------------------------------------------------------------------------- /include/fdtdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fdtdec.h -------------------------------------------------------------------------------- /include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fis.h -------------------------------------------------------------------------------- /include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/flash.h -------------------------------------------------------------------------------- /include/fm_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fm_eth.h -------------------------------------------------------------------------------- /include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fpga.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/fsl_qe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fsl_qe.h -------------------------------------------------------------------------------- /include/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fuse.h -------------------------------------------------------------------------------- /include/fwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/fwu.h -------------------------------------------------------------------------------- /include/g_dnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/g_dnl.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/gsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/gsc.h -------------------------------------------------------------------------------- /include/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/gzip.h -------------------------------------------------------------------------------- /include/hang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/hang.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/hw_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/hw_sha.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/i2s.h -------------------------------------------------------------------------------- /include/i8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/i8042.h -------------------------------------------------------------------------------- /include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ide.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/image.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/init.h -------------------------------------------------------------------------------- /include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/input.h -------------------------------------------------------------------------------- /include/iommu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/iommu.h -------------------------------------------------------------------------------- /include/iomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/iomux.h -------------------------------------------------------------------------------- /include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/irq.h -------------------------------------------------------------------------------- /include/k3-avs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/k3-avs.h -------------------------------------------------------------------------------- /include/k3-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/k3-clk.h -------------------------------------------------------------------------------- /include/k3-dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/k3-dev.h -------------------------------------------------------------------------------- /include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/kgdb.h -------------------------------------------------------------------------------- /include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/led.h -------------------------------------------------------------------------------- /include/libata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/libata.h -------------------------------------------------------------------------------- /include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/lmb.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/log.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/mapmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/mapmem.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/micrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/micrel.h -------------------------------------------------------------------------------- /include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/miiphy.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/mmc.h -------------------------------------------------------------------------------- /include/mpc8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/mpc8xx.h -------------------------------------------------------------------------------- /include/msc01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/msc01.h -------------------------------------------------------------------------------- /include/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/mtd.h -------------------------------------------------------------------------------- /include/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/mux.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/ndisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ndisc.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/net.h -------------------------------------------------------------------------------- /include/net6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/net6.h -------------------------------------------------------------------------------- /include/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/netdev.h -------------------------------------------------------------------------------- /include/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/nvme.h -------------------------------------------------------------------------------- /include/nvmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/nvmem.h -------------------------------------------------------------------------------- /include/nvmxip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/nvmxip.h -------------------------------------------------------------------------------- /include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/os.h -------------------------------------------------------------------------------- /include/p2sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/p2sb.h -------------------------------------------------------------------------------- /include/palmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/palmas.h -------------------------------------------------------------------------------- /include/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/panel.h -------------------------------------------------------------------------------- /include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/part.h -------------------------------------------------------------------------------- /include/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/pch.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pci_ep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/pci_ep.h -------------------------------------------------------------------------------- /include/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/pe.h -------------------------------------------------------------------------------- /include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/phy.h -------------------------------------------------------------------------------- /include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/post.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/pwrseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/pwrseq.h -------------------------------------------------------------------------------- /include/qfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/qfw.h -------------------------------------------------------------------------------- /include/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ram.h -------------------------------------------------------------------------------- /include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/rand.h -------------------------------------------------------------------------------- /include/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/rc4.h -------------------------------------------------------------------------------- /include/regmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/regmap.h -------------------------------------------------------------------------------- /include/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/reset.h -------------------------------------------------------------------------------- /include/rkmtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/rkmtd.h -------------------------------------------------------------------------------- /include/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/rng.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sata.h -------------------------------------------------------------------------------- /include/scp03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/scp03.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sdhci.h -------------------------------------------------------------------------------- /include/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sdp.h -------------------------------------------------------------------------------- /include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/search.h -------------------------------------------------------------------------------- /include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/serial.h -------------------------------------------------------------------------------- /include/sh_pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sh_pfc.h -------------------------------------------------------------------------------- /include/slre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/slre.h -------------------------------------------------------------------------------- /include/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sm.h -------------------------------------------------------------------------------- /include/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/smbios.h -------------------------------------------------------------------------------- /include/smem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/smem.h -------------------------------------------------------------------------------- /include/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/soc.h -------------------------------------------------------------------------------- /include/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sort.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/spd.h -------------------------------------------------------------------------------- /include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/spi.h -------------------------------------------------------------------------------- /include/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/spl.h -------------------------------------------------------------------------------- /include/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/splash.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/syscon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/syscon.h -------------------------------------------------------------------------------- /include/tee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/tee.h -------------------------------------------------------------------------------- /include/thor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/thor.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/time.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/tmu.h -------------------------------------------------------------------------------- /include/tpm-v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/tpm-v1.h -------------------------------------------------------------------------------- /include/tpm-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/tpm-v2.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/tsec.h -------------------------------------------------------------------------------- /include/tsi148.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/tsi148.h -------------------------------------------------------------------------------- /include/ubispl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ubispl.h -------------------------------------------------------------------------------- /include/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/ufs.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/usb.h -------------------------------------------------------------------------------- /include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/uuid.h -------------------------------------------------------------------------------- /include/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/vbe.h -------------------------------------------------------------------------------- /include/vesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/vesa.h -------------------------------------------------------------------------------- /include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/video.h -------------------------------------------------------------------------------- /include/virtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/virtio.h -------------------------------------------------------------------------------- /include/w1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/w1.h -------------------------------------------------------------------------------- /include/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/wdt.h -------------------------------------------------------------------------------- /include/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/xen.h -------------------------------------------------------------------------------- /include/xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/xilinx.h -------------------------------------------------------------------------------- /include/zynqpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/include/zynqpl.h -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | oid_registry_data.c 2 | -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/abuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/abuf.c -------------------------------------------------------------------------------- /lib/acpi/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/acpi.c -------------------------------------------------------------------------------- /lib/acpi/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/base.c -------------------------------------------------------------------------------- /lib/acpi/csrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/csrt.c -------------------------------------------------------------------------------- /lib/acpi/dsdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/dsdt.c -------------------------------------------------------------------------------- /lib/acpi/facs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/facs.c -------------------------------------------------------------------------------- /lib/acpi/mcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/mcfg.c -------------------------------------------------------------------------------- /lib/acpi/ssdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/acpi/ssdt.c -------------------------------------------------------------------------------- /lib/addr_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/addr_map.c -------------------------------------------------------------------------------- /lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/aes.c -------------------------------------------------------------------------------- /lib/at91/at91.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/at91/at91.c -------------------------------------------------------------------------------- /lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/bch.c -------------------------------------------------------------------------------- /lib/binman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/binman.c -------------------------------------------------------------------------------- /lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/bitrev.c -------------------------------------------------------------------------------- /lib/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/charset.c -------------------------------------------------------------------------------- /lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/circbuf.c -------------------------------------------------------------------------------- /lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/crc16.c -------------------------------------------------------------------------------- /lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/crc32.c -------------------------------------------------------------------------------- /lib/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/crc32c.c -------------------------------------------------------------------------------- /lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/crc7.c -------------------------------------------------------------------------------- /lib/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/crc8.c -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/date.c -------------------------------------------------------------------------------- /lib/dhry/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/dhry/Kconfig -------------------------------------------------------------------------------- /lib/dhry/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/dhry/dhry.h -------------------------------------------------------------------------------- /lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/div64.c -------------------------------------------------------------------------------- /lib/ecdsa/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(SPL_)ECDSA_VERIFY) += ecdsa-verify.o 2 | -------------------------------------------------------------------------------- /lib/efi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/efi/Kconfig -------------------------------------------------------------------------------- /lib/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/efi/Makefile -------------------------------------------------------------------------------- /lib/efi/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/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/Digilent/u-boot-digilent/HEAD/lib/elf.c -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/errno.c -------------------------------------------------------------------------------- /lib/errno_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/errno_str.c -------------------------------------------------------------------------------- /lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/fdtdec.c -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/gunzip.c -------------------------------------------------------------------------------- /lib/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/gzip.c -------------------------------------------------------------------------------- /lib/hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/hang.c -------------------------------------------------------------------------------- /lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/hashtable.c -------------------------------------------------------------------------------- /lib/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/hexdump.c -------------------------------------------------------------------------------- /lib/initcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/initcall.c -------------------------------------------------------------------------------- /lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/ldiv.c -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /lib/list_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/list_sort.c -------------------------------------------------------------------------------- /lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/lmb.c -------------------------------------------------------------------------------- /lib/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/lz4.c -------------------------------------------------------------------------------- /lib/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/lzma/Types.h -------------------------------------------------------------------------------- /lib/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/lzo/Makefile -------------------------------------------------------------------------------- /lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/md5.c -------------------------------------------------------------------------------- /lib/membuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/membuff.c -------------------------------------------------------------------------------- /lib/net_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/net_utils.c -------------------------------------------------------------------------------- /lib/of_live.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/of_live.c -------------------------------------------------------------------------------- /lib/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/panic.c -------------------------------------------------------------------------------- /lib/physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/physmem.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rational.c -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rc4.c -------------------------------------------------------------------------------- /lib/rsa/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rsa/Kconfig -------------------------------------------------------------------------------- /lib/rsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rsa/Makefile -------------------------------------------------------------------------------- /lib/rtc-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/rtc-lib.c -------------------------------------------------------------------------------- /lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/sha1.c -------------------------------------------------------------------------------- /lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/sha256.c -------------------------------------------------------------------------------- /lib/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/sha512.c -------------------------------------------------------------------------------- /lib/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/slre.c -------------------------------------------------------------------------------- /lib/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/smbios.c -------------------------------------------------------------------------------- /lib/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/sscanf.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/strto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/strto.c -------------------------------------------------------------------------------- /lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/time.c -------------------------------------------------------------------------------- /lib/tpm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/tpm-common.c -------------------------------------------------------------------------------- /lib/tpm-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/tpm-utils.h -------------------------------------------------------------------------------- /lib/tpm-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/tpm-v1.c -------------------------------------------------------------------------------- /lib/tpm-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/tpm-v2.c -------------------------------------------------------------------------------- /lib/tpm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/tpm_api.c -------------------------------------------------------------------------------- /lib/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/trace.c -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/xxhash.c -------------------------------------------------------------------------------- /lib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zlib/trees.c -------------------------------------------------------------------------------- /lib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zlib/trees.h -------------------------------------------------------------------------------- /lib/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zlib/zlib.c -------------------------------------------------------------------------------- /lib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zlib/zlib.h -------------------------------------------------------------------------------- /lib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zlib/zutil.c -------------------------------------------------------------------------------- /lib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zlib/zutil.h -------------------------------------------------------------------------------- /lib/zstd/zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/lib/zstd/zstd.c -------------------------------------------------------------------------------- /net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/Kconfig -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/Makefile -------------------------------------------------------------------------------- /net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/arp.c -------------------------------------------------------------------------------- /net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/arp.h -------------------------------------------------------------------------------- /net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/bootp.c -------------------------------------------------------------------------------- /net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/bootp.h -------------------------------------------------------------------------------- /net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/cdp.c -------------------------------------------------------------------------------- /net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/cdp.h -------------------------------------------------------------------------------- /net/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/dhcpv6.c -------------------------------------------------------------------------------- /net/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/dhcpv6.h -------------------------------------------------------------------------------- /net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/dns.c -------------------------------------------------------------------------------- /net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/dns.h -------------------------------------------------------------------------------- /net/dsa-uclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/dsa-uclass.c -------------------------------------------------------------------------------- /net/eth-uclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/eth-uclass.c -------------------------------------------------------------------------------- /net/eth_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/eth_common.c -------------------------------------------------------------------------------- /net/link_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/link_local.c -------------------------------------------------------------------------------- /net/link_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/link_local.h -------------------------------------------------------------------------------- /net/ndisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/ndisc.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/net.c -------------------------------------------------------------------------------- /net/net6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/net6.c -------------------------------------------------------------------------------- /net/net_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/net_rand.h -------------------------------------------------------------------------------- /net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/nfs.c -------------------------------------------------------------------------------- /net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/nfs.h -------------------------------------------------------------------------------- /net/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/pcap.c -------------------------------------------------------------------------------- /net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/ping.c -------------------------------------------------------------------------------- /net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/ping.h -------------------------------------------------------------------------------- /net/ping6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/ping6.c -------------------------------------------------------------------------------- /net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/rarp.c -------------------------------------------------------------------------------- /net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/rarp.h -------------------------------------------------------------------------------- /net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/sntp.c -------------------------------------------------------------------------------- /net/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/tcp.c -------------------------------------------------------------------------------- /net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/tftp.c -------------------------------------------------------------------------------- /net/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/udp.c -------------------------------------------------------------------------------- /net/wget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/wget.c -------------------------------------------------------------------------------- /net/wol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/wol.c -------------------------------------------------------------------------------- /net/wol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/net/wol.h -------------------------------------------------------------------------------- /post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/post/Makefile -------------------------------------------------------------------------------- /post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/post/post.c -------------------------------------------------------------------------------- /post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/post/tests.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | bin2c 5 | -------------------------------------------------------------------------------- /scripts/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/scripts/Lindent -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /scripts/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/scripts/bin2c.c -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/scripts/config -------------------------------------------------------------------------------- /scripts/const_structs.checkpatch: -------------------------------------------------------------------------------- 1 | # Put structs here that should be constant 2 | __dummy__ 3 | -------------------------------------------------------------------------------- /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.inc2: -------------------------------------------------------------------------------- 1 | 2 | 3 | source "Kconfig.inc3" 4 | -------------------------------------------------------------------------------- /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/Digilent/u-boot-digilent/HEAD/test/Kconfig -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/bootm.c -------------------------------------------------------------------------------- /test/cmd/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/cmd/fdt.c -------------------------------------------------------------------------------- /test/cmd/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/cmd/mbr.c -------------------------------------------------------------------------------- /test/cmd/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/cmd/mem.c -------------------------------------------------------------------------------- /test/cmd/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/cmd/pwm.c -------------------------------------------------------------------------------- /test/cmd/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/cmd/rw.c -------------------------------------------------------------------------------- /test/cmd_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/cmd_ut.c -------------------------------------------------------------------------------- /test/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/common.sh -------------------------------------------------------------------------------- /test/dm/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/acpi.c -------------------------------------------------------------------------------- /test/dm/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/acpi.h -------------------------------------------------------------------------------- /test/dm/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/adc.c -------------------------------------------------------------------------------- /test/dm/axi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/axi.c -------------------------------------------------------------------------------- /test/dm/blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/blk.c -------------------------------------------------------------------------------- /test/dm/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/bus.c -------------------------------------------------------------------------------- /test/dm/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/clk.c -------------------------------------------------------------------------------- /test/dm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/core.c -------------------------------------------------------------------------------- /test/dm/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/cpu.c -------------------------------------------------------------------------------- /test/dm/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/dma.c -------------------------------------------------------------------------------- /test/dm/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/dsa.c -------------------------------------------------------------------------------- /test/dm/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/eth.c -------------------------------------------------------------------------------- /test/dm/ffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/ffa.c -------------------------------------------------------------------------------- /test/dm/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/fpga.c -------------------------------------------------------------------------------- /test/dm/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/gpio.c -------------------------------------------------------------------------------- /test/dm/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/host.c -------------------------------------------------------------------------------- /test/dm/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/i2c.c -------------------------------------------------------------------------------- /test/dm/i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/i2s.c -------------------------------------------------------------------------------- /test/dm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/irq.c -------------------------------------------------------------------------------- /test/dm/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/led.c -------------------------------------------------------------------------------- /test/dm/mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/mdio.c -------------------------------------------------------------------------------- /test/dm/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/misc.c -------------------------------------------------------------------------------- /test/dm/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/mmc.c -------------------------------------------------------------------------------- /test/dm/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/nop.c -------------------------------------------------------------------------------- /test/dm/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/osd.c -------------------------------------------------------------------------------- /test/dm/p2sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/p2sb.c -------------------------------------------------------------------------------- /test/dm/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/part.c -------------------------------------------------------------------------------- /test/dm/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/pch.c -------------------------------------------------------------------------------- /test/dm/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/pci.c -------------------------------------------------------------------------------- /test/dm/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/phy.c -------------------------------------------------------------------------------- /test/dm/pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/pmc.c -------------------------------------------------------------------------------- /test/dm/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/pmic.c -------------------------------------------------------------------------------- /test/dm/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/pwm.c -------------------------------------------------------------------------------- /test/dm/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/qfw.c -------------------------------------------------------------------------------- /test/dm/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/ram.c -------------------------------------------------------------------------------- /test/dm/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/read.c -------------------------------------------------------------------------------- /test/dm/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/rng.c -------------------------------------------------------------------------------- /test/dm/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/rtc.c -------------------------------------------------------------------------------- /test/dm/scmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/scmi.c -------------------------------------------------------------------------------- /test/dm/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/scsi.c -------------------------------------------------------------------------------- /test/dm/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/sf.c -------------------------------------------------------------------------------- /test/dm/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/sm.c -------------------------------------------------------------------------------- /test/dm/smem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/smem.c -------------------------------------------------------------------------------- /test/dm/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/soc.c -------------------------------------------------------------------------------- /test/dm/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/spi.c -------------------------------------------------------------------------------- /test/dm/spmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/spmi.c -------------------------------------------------------------------------------- /test/dm/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/tag.c -------------------------------------------------------------------------------- /test/dm/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/tee.c -------------------------------------------------------------------------------- /test/dm/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/tpm.c -------------------------------------------------------------------------------- /test/dm/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/usb.c -------------------------------------------------------------------------------- /test/dm/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/dm/wdt.c -------------------------------------------------------------------------------- /test/env/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/env/fdt.c -------------------------------------------------------------------------------- /test/lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/lib/lmb.c -------------------------------------------------------------------------------- /test/lib/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/lib/rsa.c -------------------------------------------------------------------------------- /test/py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/run -------------------------------------------------------------------------------- /test/str_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/str_ut.c -------------------------------------------------------------------------------- /test/time_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/time_ut.c -------------------------------------------------------------------------------- /test/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/test/ut.c -------------------------------------------------------------------------------- /tools/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/tools/Kconfig -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/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/files/1.dat: -------------------------------------------------------------------------------- 1 | sorry I'm late 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/2.dat: -------------------------------------------------------------------------------- 1 | Oh, don't bother apologising, I'm sorry you're alive 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 | jsonschema==4.17.3 2 | pyyaml==6.0 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/Digilent/u-boot-digilent/HEAD/tools/envcrc.c -------------------------------------------------------------------------------- /tools/expo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/tools/expo.py -------------------------------------------------------------------------------- /tools/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/tools/kwboot.c -------------------------------------------------------------------------------- /tools/microcode-tool: -------------------------------------------------------------------------------- 1 | microcode-tool.py -------------------------------------------------------------------------------- /tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/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/Digilent/u-boot-digilent/HEAD/tools/rkmux.py -------------------------------------------------------------------------------- /tools/rksd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/tools/rksd.c -------------------------------------------------------------------------------- /tools/rkspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/tools/rkspi.c -------------------------------------------------------------------------------- /tools/sfspl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digilent/u-boot-digilent/HEAD/tools/sfspl.c -------------------------------------------------------------------------------- /tools/u_boot_pylib/u_boot_pylib: -------------------------------------------------------------------------------- 1 | __main__.py --------------------------------------------------------------------------------