├── .checkpatch.conf ├── .gitignore ├── .mailmap ├── .travis.yml ├── Kbuild ├── Kconfig ├── Licenses ├── Exceptions ├── OFL.txt ├── README ├── bsd-2-clause.txt ├── bsd-3-clause.txt ├── eCos-2.0.txt ├── gpl-2.0.txt ├── ibm-pibs.txt ├── isc.txt ├── lgpl-2.0.txt ├── lgpl-2.1.txt └── x11.txt ├── MAINTAINERS ├── Makefile ├── README ├── api ├── 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 ├── arc │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── arcv1 │ │ │ ├── Makefile │ │ │ └── ivt.S │ │ ├── arcv2 │ │ │ ├── Makefile │ │ │ └── ivt.S │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── abilis_tb100.dts │ │ ├── axs10x.dts │ │ ├── nsim.dts │ │ └── skeleton.dtsi │ ├── include │ │ └── asm │ │ │ ├── arcregs.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── global_data.h │ │ │ ├── init_helpers.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── relocate.h │ │ │ ├── sections.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 │ │ ├── memcmp.S │ │ ├── memcpy-700.S │ │ ├── memset.S │ │ ├── relocate.c │ │ ├── reset.c │ │ ├── start.S │ │ ├── strchr-700.S │ │ ├── strcmp.S │ │ ├── strcpy-700.S │ │ ├── strlen.S │ │ └── timer.c ├── arm │ ├── Kconfig │ ├── Kconfig.debug │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── arm11 │ │ │ ├── Makefile │ │ │ └── cpu.c │ │ ├── arm1136 │ │ │ ├── Makefile │ │ │ ├── mx31 │ │ │ │ ├── Makefile │ │ │ │ ├── devices.c │ │ │ │ ├── generic.c │ │ │ │ ├── relocate.S │ │ │ │ └── timer.c │ │ │ ├── mx35 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── mx35_sdram.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 │ │ │ ├── ep93xx │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── led.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── speed.c │ │ │ │ └── timer.c │ │ │ ├── imx │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── speed.c │ │ │ │ └── timer.c │ │ │ ├── interrupts.c │ │ │ ├── s3c24x0 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu_info.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── speed.c │ │ │ │ └── timer.c │ │ │ └── start.S │ │ ├── arm926ejs │ │ │ ├── Makefile │ │ │ ├── armada100 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ └── timer.c │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ ├── lpc32xx │ │ │ │ ├── Makefile │ │ │ │ ├── clk.c │ │ │ │ ├── cpu.c │ │ │ │ ├── devices.c │ │ │ │ ├── dram.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── timer.c │ │ │ ├── mx25 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── relocate.S │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── mx27 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── relocate.S │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── mxs │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── iomux.c │ │ │ │ ├── mxs.c │ │ │ │ ├── mxs_init.h │ │ │ │ ├── mxsimage-signed.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 │ │ │ ├── omap │ │ │ │ ├── Makefile │ │ │ │ ├── cpuinfo.c │ │ │ │ ├── reset.S │ │ │ │ └── timer.c │ │ │ ├── orion5x │ │ │ │ └── u-boot-spl.lds │ │ │ ├── spear │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── reset.c │ │ │ │ ├── spear600.c │ │ │ │ ├── spl.c │ │ │ │ ├── spr600_mt47h128m8_3_266_cl5_async.c │ │ │ │ ├── spr600_mt47h32m16_333_cl5_psync.c │ │ │ │ ├── spr600_mt47h32m16_37e_166_cl4_sync.c │ │ │ │ ├── spr600_mt47h64m16_3_333_cl5_psync.c │ │ │ │ ├── start.S │ │ │ │ ├── timer.c │ │ │ │ └── u-boot-spl.lds │ │ │ └── start.S │ │ ├── arm946es │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ └── start.S │ │ ├── armv7 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am33xx │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── clk_synthesizer.c │ │ │ │ ├── clock.c │ │ │ │ ├── clock_am33xx.c │ │ │ │ ├── clock_am43xx.c │ │ │ │ ├── clock_ti814x.c │ │ │ │ ├── clock_ti816x.c │ │ │ │ ├── config.mk │ │ │ │ ├── ddr.c │ │ │ │ ├── emif4.c │ │ │ │ ├── mux.c │ │ │ │ ├── sys_info.c │ │ │ │ └── u-boot-spl.lds │ │ │ ├── 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 │ │ │ ├── iproc-common │ │ │ │ ├── Makefile │ │ │ │ ├── armpll.c │ │ │ │ ├── hwinit-common.c │ │ │ │ └── timer.c │ │ │ ├── kona-common │ │ │ │ ├── Makefile │ │ │ │ ├── clk-stubs.c │ │ │ │ ├── hwinit-common.c │ │ │ │ ├── reset.S │ │ │ │ └── s_init.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_sata.c │ │ │ │ ├── ls102xa_serdes.c │ │ │ │ ├── psci.S │ │ │ │ ├── soc.c │ │ │ │ ├── spl.c │ │ │ │ └── timer.c │ │ │ ├── mx5 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── soc.c │ │ │ ├── mx6 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── ddr.c │ │ │ │ ├── mp.c │ │ │ │ └── soc.c │ │ │ ├── mx7 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── clock_slice.c │ │ │ │ ├── psci-mx7.c │ │ │ │ ├── psci.S │ │ │ │ └── soc.c │ │ │ ├── nonsec_virt.S │ │ │ ├── omap-common │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── abb.c │ │ │ │ ├── boot-common.c │ │ │ │ ├── clocks-common.c │ │ │ │ ├── config_secure.mk │ │ │ │ ├── emif-common.c │ │ │ │ ├── hwinit-common.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mem-common.c │ │ │ │ ├── omap-cache.c │ │ │ │ ├── pipe3-phy.c │ │ │ │ ├── pipe3-phy.h │ │ │ │ ├── reset.c │ │ │ │ ├── sata.c │ │ │ │ ├── sec-common.c │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ ├── utils.c │ │ │ │ └── vc.c │ │ │ ├── omap3 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── am35x_musb.c │ │ │ │ ├── board.c │ │ │ │ ├── boot.c │ │ │ │ ├── clock.c │ │ │ │ ├── config.mk │ │ │ │ ├── emac.c │ │ │ │ ├── emif4.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── sdrc.c │ │ │ │ ├── spl_id_nand.c │ │ │ │ └── sys_info.c │ │ │ ├── omap4 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── boot.c │ │ │ │ ├── config.mk │ │ │ │ ├── emif.c │ │ │ │ ├── hw_data.c │ │ │ │ ├── hwinit.c │ │ │ │ ├── prcm-regs.c │ │ │ │ └── sdram_elpida.c │ │ │ ├── omap5 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── abb.c │ │ │ │ ├── boot.c │ │ │ │ ├── config.mk │ │ │ │ ├── dra7xx_iodelay.c │ │ │ │ ├── emif.c │ │ │ │ ├── fdt.c │ │ │ │ ├── hw_data.c │ │ │ │ ├── hwinit.c │ │ │ │ ├── prcm-regs.c │ │ │ │ ├── sdram.c │ │ │ │ └── sec-fxns.c │ │ │ ├── psci-common.c │ │ │ ├── psci.S │ │ │ ├── s5p-common │ │ │ │ ├── Makefile │ │ │ │ ├── cpu_info.c │ │ │ │ ├── pwm.c │ │ │ │ ├── sromc.c │ │ │ │ └── timer.c │ │ │ ├── start.S │ │ │ ├── stv0991 │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── lowlevel.S │ │ │ │ ├── pinmux.c │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── sunxi │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── fel_utils.S │ │ │ │ ├── psci.c │ │ │ │ ├── start.c │ │ │ │ ├── timer.c │ │ │ │ ├── tzpc.c │ │ │ │ └── u-boot-spl.lds │ │ │ ├── syslib.c │ │ │ ├── vf610 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ └── timer.c │ │ │ ├── virt-dt.c │ │ │ └── virt-v7.c │ │ ├── armv7m │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ └── start.S │ │ ├── armv8 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.S │ │ │ ├── cache_v8.c │ │ │ ├── config.mk │ │ │ ├── cpu-dt.c │ │ │ ├── cpu.c │ │ │ ├── exceptions.S │ │ │ ├── fsl-layerscape │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ ├── doc │ │ │ │ │ ├── README.lsch2 │ │ │ │ │ ├── README.lsch3 │ │ │ │ │ └── README.soc │ │ │ │ ├── fdt.c │ │ │ │ ├── fsl_lsch2_serdes.c │ │ │ │ ├── fsl_lsch2_speed.c │ │ │ │ ├── fsl_lsch3_serdes.c │ │ │ │ ├── fsl_lsch3_speed.c │ │ │ │ ├── lowlevel.S │ │ │ │ ├── ls1012a_serdes.c │ │ │ │ ├── ls1043a_serdes.c │ │ │ │ ├── ls1046a_serdes.c │ │ │ │ ├── ls2080a_serdes.c │ │ │ │ ├── mp.c │ │ │ │ ├── ppa.c │ │ │ │ ├── soc.c │ │ │ │ └── spl.c │ │ │ ├── fwcall.c │ │ │ ├── generic_timer.c │ │ │ ├── hisilicon │ │ │ │ ├── Makefile │ │ │ │ └── pinmux.c │ │ │ ├── s32v234 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ └── generic.c │ │ │ ├── sec_firmware.c │ │ │ ├── sec_firmware_asm.S │ │ │ ├── spin_table.c │ │ │ ├── spin_table_v8.S │ │ │ ├── start.S │ │ │ ├── tlb.S │ │ │ ├── transition.S │ │ │ ├── u-boot-spl.lds │ │ │ ├── u-boot.lds │ │ │ └── zynqmp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clk.c │ │ │ │ ├── cpu.c │ │ │ │ ├── mp.c │ │ │ │ ├── slcr.c │ │ │ │ └── spl.c │ │ ├── pxa │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpuinfo.c │ │ │ ├── pxa2xx.c │ │ │ ├── relocate.S │ │ │ ├── start.S │ │ │ ├── timer.c │ │ │ └── usb.c │ │ ├── sa1100 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── start.S │ │ │ └── timer.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── am335x-bone-common.dtsi │ │ ├── am335x-bone.dts │ │ ├── am335x-boneblack.dts │ │ ├── am335x-bonegreen.dts │ │ ├── am335x-draco.dts │ │ ├── am335x-draco.dtsi │ │ ├── am335x-evm.dts │ │ ├── am335x-evmsk.dts │ │ ├── am335x-icev2.dts │ │ ├── am335x-pxm2.dtsi │ │ ├── am335x-pxm50.dts │ │ ├── am335x-rut.dts │ │ ├── am33xx-clocks.dtsi │ │ ├── am33xx.dtsi │ │ ├── am4372.dtsi │ │ ├── am437x-gp-evm.dts │ │ ├── am437x-idk-evm.dts │ │ ├── am437x-sk-evm.dts │ │ ├── am43x-epos-evm.dts │ │ ├── am43xx-clocks.dtsi │ │ ├── am572x-idk.dts │ │ ├── am57xx-beagle-x15.dts │ │ ├── am57xx-idk-common.dtsi │ │ ├── armada-370-xp.dtsi │ │ ├── armada-371x.dtsi │ │ ├── armada-3720-db.dts │ │ ├── armada-372x.dtsi │ │ ├── armada-375-db.dts │ │ ├── armada-375.dtsi │ │ ├── armada-37xx.dtsi │ │ ├── armada-380.dtsi │ │ ├── armada-385-amc.dts │ │ ├── armada-385.dtsi │ │ ├── armada-388-clearfog.dts │ │ ├── armada-388-gp.dts │ │ ├── armada-388.dtsi │ │ ├── armada-38x.dtsi │ │ ├── armada-7040-db.dts │ │ ├── armada-7040.dtsi │ │ ├── armada-ap806-quad.dtsi │ │ ├── armada-ap806.dtsi │ │ ├── armada-cp110-master.dtsi │ │ ├── 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.dts │ │ ├── armada-xp.dtsi │ │ ├── at91-sama5d2_xplained.dts │ │ ├── at91sam9260-smartweb.dts │ │ ├── at91sam9260.dtsi │ │ ├── at91sam9261.dtsi │ │ ├── at91sam9263.dtsi │ │ ├── at91sam9g20-taurus.dts │ │ ├── at91sam9g20.dtsi │ │ ├── at91sam9g45-corvus.dts │ │ ├── at91sam9g45-gurnard.dts │ │ ├── at91sam9g45.dtsi │ │ ├── axp152.dtsi │ │ ├── axp209.dtsi │ │ ├── axp22x.dtsi │ │ ├── axp809.dtsi │ │ ├── bk4r1.dts │ │ ├── cros-ec-keyboard.dtsi │ │ ├── cros-ec-sbs.dtsi │ │ ├── dra7-evm.dts │ │ ├── dra7.dtsi │ │ ├── dra72-evm-common.dtsi │ │ ├── dra72-evm-revc.dts │ │ ├── dra72-evm.dts │ │ ├── dra72x.dtsi │ │ ├── dra74x.dtsi │ │ ├── dra7xx-clocks.dtsi │ │ ├── dragonboard410c-uboot.dtsi │ │ ├── dragonboard410c.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 │ │ ├── fsl-ls1012a-frdm.dts │ │ ├── fsl-ls1012a-frdm.dtsi │ │ ├── fsl-ls1012a-qds.dts │ │ ├── fsl-ls1012a-qds.dtsi │ │ ├── fsl-ls1012a-rdb.dts │ │ ├── fsl-ls1012a-rdb.dtsi │ │ ├── fsl-ls1012a.dtsi │ │ ├── fsl-ls1043a-qds-duart.dts │ │ ├── fsl-ls1043a-qds-lpuart.dts │ │ ├── fsl-ls1043a-qds.dtsi │ │ ├── fsl-ls1043a-rdb.dts │ │ ├── fsl-ls1043a.dtsi │ │ ├── fsl-ls1046a-qds-duart.dts │ │ ├── fsl-ls1046a-qds.dtsi │ │ ├── fsl-ls1046a-rdb.dts │ │ ├── fsl-ls1046a.dtsi │ │ ├── fsl-ls2080a-qds.dts │ │ ├── fsl-ls2080a-rdb.dts │ │ ├── fsl-ls2080a.dtsi │ │ ├── hi6220-hikey.dts │ │ ├── hi6220.dtsi │ │ ├── imx6ul-pinfunc.h │ │ ├── imx6ull-14x14-evk.dts │ │ ├── imx6ull-pinfunc-snvs.h │ │ ├── imx6ull-pinfunc.h │ │ ├── imx6ull.dtsi │ │ ├── imx7-colibri.dts │ │ ├── imx7.dtsi │ │ ├── imx7d-pinfunc.h │ │ ├── include │ │ │ └── dt-bindings │ │ ├── k2e-clocks.dtsi │ │ ├── k2e-evm.dts │ │ ├── k2e-netcp.dtsi │ │ ├── k2e.dtsi │ │ ├── k2g-evm.dts │ │ ├── k2g-netcp.dtsi │ │ ├── k2g.dtsi │ │ ├── k2hk-clocks.dtsi │ │ ├── k2hk-evm.dts │ │ ├── k2hk-netcp.dtsi │ │ ├── k2hk.dtsi │ │ ├── k2l-clocks.dtsi │ │ ├── k2l-evm.dts │ │ ├── k2l-netcp.dtsi │ │ ├── k2l.dtsi │ │ ├── keystone-clocks.dtsi │ │ ├── keystone.dtsi │ │ ├── ls1021a-qds-duart.dts │ │ ├── ls1021a-qds-lpuart.dts │ │ ├── ls1021a-qds.dtsi │ │ ├── ls1021a-twr-duart.dts │ │ ├── ls1021a-twr-lpuart.dts │ │ ├── ls1021a-twr.dtsi │ │ ├── ls1021a.dtsi │ │ ├── meson-gxbb-odroidc2.dts │ │ ├── meson-gxbb.dtsi │ │ ├── omap4-cpu-thermal.dtsi │ │ ├── omap5-core-thermal.dtsi │ │ ├── omap5-gpu-thermal.dtsi │ │ ├── pcm052.dts │ │ ├── rk3036-sdk.dts │ │ ├── rk3036.dtsi │ │ ├── rk3288-evb.dts │ │ ├── rk3288-evb.dtsi │ │ ├── rk3288-fennec.dts │ │ ├── rk3288-fennec.dtsi │ │ ├── rk3288-firefly.dts │ │ ├── rk3288-firefly.dtsi │ │ ├── rk3288-jerry.dts │ │ ├── rk3288-miniarm.dts │ │ ├── rk3288-miniarm.dtsi │ │ ├── rk3288-popmetal.dts │ │ ├── rk3288-popmetal.dtsi │ │ ├── rk3288-rock2-som.dtsi │ │ ├── rk3288-rock2-square.dts │ │ ├── rk3288-thermal.dtsi │ │ ├── rk3288-veyron-chromebook.dtsi │ │ ├── rk3288-veyron.dtsi │ │ ├── rk3288.dtsi │ │ ├── rk3399-evb.dts │ │ ├── rk3399.dtsi │ │ ├── s5pc100-pinctrl.dtsi │ │ ├── s5pc110-pinctrl.dtsi │ │ ├── s5pc1xx-goni.dts │ │ ├── s5pc1xx-smdkc100.dts │ │ ├── sama5d2-pinfunc.h │ │ ├── sama5d2.dtsi │ │ ├── skeleton.dtsi │ │ ├── skeleton64.dtsi │ │ ├── socfpga.dtsi │ │ ├── socfpga_arria5.dtsi │ │ ├── socfpga_arria5_socdk.dts │ │ ├── socfpga_cyclone5.dtsi │ │ ├── socfpga_cyclone5_de0_nano_soc.dts │ │ ├── socfpga_cyclone5_is1.dts │ │ ├── socfpga_cyclone5_mcvevk.dts │ │ ├── socfpga_cyclone5_socdk.dts │ │ ├── socfpga_cyclone5_sockit.dts │ │ ├── socfpga_cyclone5_socrates.dts │ │ ├── socfpga_cyclone5_sr1500.dts │ │ ├── socfpga_cyclone5_vining_fpga.dts │ │ ├── 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.dtsi │ │ ├── sun50i-a64-pine64-common.dtsi │ │ ├── sun50i-a64-pine64-plus.dts │ │ ├── sun50i-a64-pine64.dts │ │ ├── sun50i-a64.dtsi │ │ ├── sun5i-a10s-auxtek-t003.dts │ │ ├── sun5i-a10s-auxtek-t004.dts │ │ ├── sun5i-a10s-mk802.dts │ │ ├── sun5i-a10s-olinuxino-micro.dts │ │ ├── sun5i-a10s-r7-tv-dongle.dts │ │ ├── sun5i-a10s-wobo-i5.dts │ │ ├── sun5i-a10s.dtsi │ │ ├── sun5i-a13-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-olinuxino-micro.dts │ │ ├── sun5i-a13-olinuxino.dts │ │ ├── sun5i-a13-q8-tablet.dts │ │ ├── sun5i-a13-utoo-p66.dts │ │ ├── sun5i-a13.dtsi │ │ ├── sun5i-q8-common.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-hummingbird.dts │ │ ├── sun7i-a20-i12-tvbox.dts │ │ ├── sun7i-a20-icnova-swac.dts │ │ ├── sun7i-a20-itead-ibox.dts │ │ ├── sun7i-a20-lamobo-r1.dts │ │ ├── sun7i-a20-m3.dts │ │ ├── sun7i-a20-m5.dts │ │ ├── sun7i-a20-mk808c.dts │ │ ├── sun7i-a20-olimex-som-evb.dts │ │ ├── sun7i-a20-olinuxino-lime.dts │ │ ├── sun7i-a20-olinuxino-lime2-emmc.dts │ │ ├── sun7i-a20-olinuxino-lime2.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.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-polaroid-mid2407pxe03.dts │ │ ├── sun8i-a23-polaroid-mid2809pxe04.dts │ │ ├── sun8i-a23-q8-tablet.dts │ │ ├── sun8i-a23.dtsi │ │ ├── sun8i-a33-ga10h-v1.1.dts │ │ ├── sun8i-a33-inet-d978-rev2.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-cubietruck-plus.dts │ │ ├── sun8i-a83t-sinovoip-bpi-m3.dts │ │ ├── sun8i-a83t.dtsi │ │ ├── sun8i-h3-bananapi-m2-plus.dts │ │ ├── sun8i-h3-nanopi-neo.dts │ │ ├── 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.dtsi │ │ ├── sun8i-q8-common.dtsi │ │ ├── sun8i-r16-parrot.dts │ │ ├── sun8i-reference-design-tablet.dtsi │ │ ├── sun9i-a80-cubieboard4.dts │ │ ├── sun9i-a80-optimus.dts │ │ ├── sun9i-a80.dtsi │ │ ├── sunxi-common-regulators.dtsi │ │ ├── sunxi-itead-core-common.dtsi │ │ ├── sunxi-q8-common.dtsi │ │ ├── sunxi-reference-design-tablet.dtsi │ │ ├── tegra114-dalmore.dts │ │ ├── tegra114.dtsi │ │ ├── tegra124-cei-tk1-som.dts │ │ ├── tegra124-jetson-tk1.dts │ │ ├── tegra124-nyan-big.dts │ │ ├── tegra124-nyan.dtsi │ │ ├── tegra124-venice2.dts │ │ ├── tegra124.dtsi │ │ ├── tegra186-p2771-0000-000.dts │ │ ├── tegra186-p2771-0000-500.dts │ │ ├── tegra186-p2771-0000.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-ventana.dts │ │ ├── tegra20-whistler.dts │ │ ├── tegra20.dtsi │ │ ├── tegra210-e2220-1170.dts │ │ ├── tegra210-p2371-0000.dts │ │ ├── tegra210-p2371-2180.dts │ │ ├── tegra210-p2571.dts │ │ ├── tegra210.dtsi │ │ ├── tegra30-apalis.dts │ │ ├── tegra30-beaver.dts │ │ ├── tegra30-cardhu.dts │ │ ├── tegra30-colibri.dts │ │ ├── tegra30-tamonten.dtsi │ │ ├── tegra30-tec-ng.dts │ │ ├── tegra30.dtsi │ │ ├── thunderx-88xx.dts │ │ ├── thunderx-88xx.dtsi │ │ ├── tps65217.dtsi │ │ ├── tps65910.dtsi │ │ ├── uniphier-common32.dtsi │ │ ├── uniphier-ph1-ld11-ref.dts │ │ ├── uniphier-ph1-ld11.dtsi │ │ ├── uniphier-ph1-ld20-ref.dts │ │ ├── uniphier-ph1-ld20.dtsi │ │ ├── uniphier-ph1-ld4-ref.dts │ │ ├── uniphier-ph1-ld4.dtsi │ │ ├── uniphier-ph1-ld6b-ref.dts │ │ ├── uniphier-ph1-ld6b.dtsi │ │ ├── uniphier-ph1-pro4-ace.dts │ │ ├── uniphier-ph1-pro4-ref.dts │ │ ├── uniphier-ph1-pro4-sanji.dts │ │ ├── uniphier-ph1-pro4.dtsi │ │ ├── uniphier-ph1-pro5-4kbox.dts │ │ ├── uniphier-ph1-pro5.dtsi │ │ ├── uniphier-ph1-sld3-ref.dts │ │ ├── uniphier-ph1-sld3.dtsi │ │ ├── uniphier-ph1-sld8-ref.dts │ │ ├── uniphier-ph1-sld8.dtsi │ │ ├── uniphier-pinctrl.dtsi │ │ ├── uniphier-proxstream2-gentil.dts │ │ ├── uniphier-proxstream2-vodka.dts │ │ ├── uniphier-proxstream2.dtsi │ │ ├── uniphier-ref-daughter.dtsi │ │ ├── uniphier-support-card.dtsi │ │ ├── vf-colibri.dtsi │ │ ├── vf.dtsi │ │ ├── vf500-colibri.dts │ │ ├── vf610-colibri.dts │ │ ├── vf610-twr.dts │ │ ├── zynq-7000.dtsi │ │ ├── zynq-microzed.dts │ │ ├── zynq-picozed.dts │ │ ├── zynq-zc702.dts │ │ ├── zynq-zc706.dts │ │ ├── zynq-zc770-xm010.dts │ │ ├── zynq-zc770-xm011.dts │ │ ├── zynq-zc770-xm012.dts │ │ ├── zynq-zc770-xm013.dts │ │ ├── zynq-zed.dts │ │ ├── zynq-zybo.dts │ │ ├── zynqmp-clk.dtsi │ │ ├── zynqmp-ep108-clk.dtsi │ │ ├── zynqmp-ep108.dts │ │ ├── zynqmp-zc1751-xm015-dc1.dts │ │ ├── zynqmp-zc1751-xm016-dc2.dts │ │ ├── zynqmp-zc1751-xm018-dc4.dts │ │ ├── zynqmp-zc1751-xm019-dc5.dts │ │ ├── zynqmp-zcu102-revB.dts │ │ ├── zynqmp-zcu102.dts │ │ └── zynqmp.dtsi │ ├── imx-common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cmd_bmode.c │ │ ├── cmd_dek.c │ │ ├── cmd_hdmidet.c │ │ ├── cpu.c │ │ ├── ddrmc-vf610.c │ │ ├── hab.c │ │ ├── i2c-mxv7.c │ │ ├── imx_bootaux.c │ │ ├── init.c │ │ ├── iomux-v3.c │ │ ├── misc.c │ │ ├── rdc-sema.c │ │ ├── sata.c │ │ ├── speed.c │ │ ├── spl.c │ │ ├── spl_sd.cfg │ │ ├── syscounter.c │ │ ├── timer.c │ │ └── video.c │ ├── include │ │ ├── asm │ │ │ ├── arch-am33xx │ │ │ │ ├── clk_synthesizer.h │ │ │ │ ├── clock.h │ │ │ │ ├── clock_ti81xx.h │ │ │ │ ├── clocks_am33xx.h │ │ │ │ ├── cpu.h │ │ │ │ ├── ddr_defs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hardware_am33xx.h │ │ │ │ ├── hardware_am43xx.h │ │ │ │ ├── hardware_ti814x.h │ │ │ │ ├── hardware_ti816x.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mux.h │ │ │ │ ├── mux_am33xx.h │ │ │ │ ├── mux_am43xx.h │ │ │ │ ├── mux_ti814x.h │ │ │ │ ├── mux_ti816x.h │ │ │ │ ├── omap.h │ │ │ │ ├── spl.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-armada100 │ │ │ │ ├── armada100.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mfp.h │ │ │ │ ├── spi.h │ │ │ │ └── utmi-armada100.h │ │ │ ├── arch-armv7 │ │ │ │ ├── generictimer.h │ │ │ │ ├── globaltimer.h │ │ │ │ ├── sysctrl.h │ │ │ │ ├── systimer.h │ │ │ │ └── wdt.h │ │ │ ├── arch-bcm235xx │ │ │ │ ├── boot0.h │ │ │ │ ├── gpio.h │ │ │ │ └── sysmap.h │ │ │ ├── arch-bcm281xx │ │ │ │ ├── boot0.h │ │ │ │ ├── gpio.h │ │ │ │ └── sysmap.h │ │ │ ├── arch-bcmcygnus │ │ │ │ └── configs.h │ │ │ ├── arch-bcmnsp │ │ │ │ └── configs.h │ │ │ ├── arch-ep93xx │ │ │ │ └── ep93xx.h │ │ │ ├── arch-fsl-layerscape │ │ │ │ ├── clock.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── fdt.h │ │ │ │ ├── fsl_serdes.h │ │ │ │ ├── immap_lsch2.h │ │ │ │ ├── immap_lsch3.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── ls2080a_stream_id.h │ │ │ │ ├── mmu.h │ │ │ │ ├── mp.h │ │ │ │ ├── ns_access.h │ │ │ │ ├── ppa.h │ │ │ │ ├── soc.h │ │ │ │ └── speed.h │ │ │ ├── arch-hi6220 │ │ │ │ ├── dwmmc.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hi6220.h │ │ │ │ ├── hi6220_regs_alwayson.h │ │ │ │ ├── periph.h │ │ │ │ └── pinmux.h │ │ │ ├── arch-imx │ │ │ │ ├── cpu.h │ │ │ │ └── imx-regs.h │ │ │ ├── arch-lpc32xx │ │ │ │ ├── clk.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dma.h │ │ │ │ ├── emc.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gpio_grp.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_sata.h │ │ │ │ ├── ls102xa_soc.h │ │ │ │ ├── ls102xa_stream_id.h │ │ │ │ ├── ns_access.h │ │ │ │ └── spl.h │ │ │ ├── arch-meson │ │ │ │ ├── gxbb.h │ │ │ │ └── sm.h │ │ │ ├── arch-mvebu │ │ │ │ └── spi.h │ │ │ ├── arch-mx25 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-mx25.h │ │ │ │ └── macro.h │ │ │ ├── arch-mx27 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── mxcmmc.h │ │ │ │ └── regs-rtc.h │ │ │ ├── arch-mx31 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-mx35 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-mx35.h │ │ │ │ ├── lowlevel_macro.S │ │ │ │ ├── mmc_host_def.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 │ │ │ │ ├── mx6-ddr.h │ │ │ │ ├── mx6-pins.h │ │ │ │ ├── mx6dl-ddr.h │ │ │ │ ├── mx6dl_pins.h │ │ │ │ ├── mx6q-ddr.h │ │ │ │ ├── mx6q_pins.h │ │ │ │ ├── mx6sl-ddr.h │ │ │ │ ├── mx6sl_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-pins.h │ │ │ │ ├── mx7d_pins.h │ │ │ │ ├── mx7d_rdc.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-uartapp.h │ │ │ │ ├── regs-usb.h │ │ │ │ ├── regs-usbphy.h │ │ │ │ └── sys_proto.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 │ │ │ │ ├── omap3-regs.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 │ │ │ │ ├── mux_omap5.h │ │ │ │ ├── omap.h │ │ │ │ ├── sata.h │ │ │ │ ├── spl.h │ │ │ │ └── sys_proto.h │ │ │ ├── arch-orion5x │ │ │ │ └── spl.h │ │ │ ├── arch-pxa │ │ │ │ ├── bitfield.h │ │ │ │ ├── config.h │ │ │ │ ├── hardware.h │ │ │ │ ├── pxa-regs.h │ │ │ │ ├── pxa.h │ │ │ │ ├── regs-mmc.h │ │ │ │ ├── regs-uart.h │ │ │ │ └── regs-usb.h │ │ │ ├── arch-rockchip │ │ │ │ ├── boot_mode.h │ │ │ │ ├── clock.h │ │ │ │ ├── cru_rk3036.h │ │ │ │ ├── cru_rk3288.h │ │ │ │ ├── cru_rk3399.h │ │ │ │ ├── ddr_rk3288.h │ │ │ │ ├── edp_rk3288.h │ │ │ │ ├── gpio.h │ │ │ │ ├── grf_rk3036.h │ │ │ │ ├── grf_rk3288.h │ │ │ │ ├── grf_rk3399.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hdmi_rk3288.h │ │ │ │ ├── i2c.h │ │ │ │ ├── lvds_rk3288.h │ │ │ │ ├── periph.h │ │ │ │ ├── pmu_rk3288.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sdram.h │ │ │ │ ├── sdram_rk3036.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart.h │ │ │ │ └── vop_rk3288.h │ │ │ ├── arch-s32v234 │ │ │ │ ├── clock.h │ │ │ │ ├── ddr.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── lpddr2.h │ │ │ │ ├── mc_cgm_regs.h │ │ │ │ ├── mc_me_regs.h │ │ │ │ ├── mc_rgm_regs.h │ │ │ │ ├── mmdc.h │ │ │ │ └── siul.h │ │ │ ├── arch-s3c24x0 │ │ │ │ ├── gpio.h │ │ │ │ ├── iomux.h │ │ │ │ ├── memory.h │ │ │ │ ├── s3c2400.h │ │ │ │ ├── s3c2410.h │ │ │ │ ├── s3c2440.h │ │ │ │ ├── s3c24x0.h │ │ │ │ └── s3c24x0_cpu.h │ │ │ ├── arch-sa1100 │ │ │ │ └── bitfield.h │ │ │ ├── arch-spear │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── spr_defs.h │ │ │ │ ├── spr_emi.h │ │ │ │ ├── spr_gpt.h │ │ │ │ ├── spr_misc.h │ │ │ │ ├── spr_ssp.h │ │ │ │ └── spr_syscntl.h │ │ │ ├── arch-stm32f1 │ │ │ │ ├── gpio.h │ │ │ │ └── stm32.h │ │ │ ├── arch-stm32f4 │ │ │ │ ├── fmc.h │ │ │ │ ├── gpio.h │ │ │ │ ├── stm32.h │ │ │ │ ├── stm32_defs.h │ │ │ │ └── stm32_periph.h │ │ │ ├── arch-stm32f7 │ │ │ │ ├── fmc.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gpt.h │ │ │ │ ├── rcc.h │ │ │ │ ├── stm32.h │ │ │ │ ├── stm32_defs.h │ │ │ │ └── stm32_periph.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_sun6i.h │ │ │ │ ├── clock_sun8i_a83t.h │ │ │ │ ├── clock_sun9i.h │ │ │ │ ├── cpu.h │ │ │ │ ├── cpu_sun4i.h │ │ │ │ ├── cpu_sun9i.h │ │ │ │ ├── cpucfg.h │ │ │ │ ├── display.h │ │ │ │ ├── dma.h │ │ │ │ ├── dma_sun4i.h │ │ │ │ ├── dram.h │ │ │ │ ├── dram_sun4i.h │ │ │ │ ├── dram_sun6i.h │ │ │ │ ├── dram_sun8i_a23.h │ │ │ │ ├── dram_sun8i_a33.h │ │ │ │ ├── dram_sun8i_a83t.h │ │ │ │ ├── dram_sun8i_h3.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mmc.h │ │ │ │ ├── p2wi.h │ │ │ │ ├── pmic_bus.h │ │ │ │ ├── prcm.h │ │ │ │ ├── pwm.h │ │ │ │ ├── rsb.h │ │ │ │ ├── spl.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timer.h │ │ │ │ ├── tzpc.h │ │ │ │ ├── usb_phy.h │ │ │ │ └── watchdog.h │ │ │ ├── arch-tegra │ │ │ │ ├── ap.h │ │ │ │ ├── apb_misc.h │ │ │ │ ├── board.h │ │ │ │ ├── bpmp_abi.h │ │ │ │ ├── clk_rst.h │ │ │ │ ├── clock.h │ │ │ │ ├── dc.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── fuse.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gpu.h │ │ │ │ ├── ivc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmc.h │ │ │ │ ├── powergate.h │ │ │ │ ├── pwm.h │ │ │ │ ├── scu.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── tegra.h │ │ │ │ ├── tegra_i2c.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 │ │ │ │ ├── pmu.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 │ │ │ │ ├── pmu.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 │ │ │ │ ├── pmu.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 │ │ │ │ ├── pmu.h │ │ │ │ ├── powergate.h │ │ │ │ ├── sysctr.h │ │ │ │ └── tegra.h │ │ │ ├── arch-tegra30 │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmu.h │ │ │ │ ├── powergate.h │ │ │ │ └── tegra.h │ │ │ ├── arch-vf610 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── ddrmc-vf610.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── iomux-vf610.h │ │ │ ├── arch-zynqmp │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ └── sys_proto.h │ │ │ ├── armv7.h │ │ │ ├── armv7m.h │ │ │ ├── armv8 │ │ │ │ ├── mmu.h │ │ │ │ └── sec_firmware.h │ │ │ ├── assembler.h │ │ │ ├── atomic.h │ │ │ ├── barriers.h │ │ │ ├── bitops.h │ │ │ ├── bootm.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── davinci_rtc.h │ │ │ ├── dma-mapping.h │ │ │ ├── ehci-omap.h │ │ │ ├── emif.h │ │ │ ├── fsl_secure_boot.h │ │ │ ├── gic.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── imx-common │ │ │ │ ├── boot_mode.h │ │ │ │ ├── dma.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hab.h │ │ │ │ ├── imximage.cfg │ │ │ │ ├── iomux-v3.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 │ │ │ ├── io.h │ │ │ ├── iproc-common │ │ │ │ ├── armpll.h │ │ │ │ ├── configs.h │ │ │ │ ├── sysmap.h │ │ │ │ └── timer.h │ │ │ ├── kona-common │ │ │ │ ├── clk.h │ │ │ │ └── kona_sdhci.h │ │ │ ├── linkage.h │ │ │ ├── mach-types.h │ │ │ ├── macro.h │ │ │ ├── memory.h │ │ │ ├── omap_common.h │ │ │ ├── omap_gpio.h │ │ │ ├── omap_mmc.h │ │ │ ├── omap_musb.h │ │ │ ├── omap_sec_common.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 │ │ │ │ ├── sys_proto.h │ │ │ │ ├── ti-aemif.h │ │ │ │ └── ti-edma3.h │ │ │ ├── types.h │ │ │ ├── u-boot-arm.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ ├── unified.h │ │ │ └── utils.h │ │ └── debug │ │ │ └── 8250.S │ ├── lib │ │ ├── Makefile │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── asm-offsets.c │ │ ├── bootm-fdt.c │ │ ├── bootm.c │ │ ├── cache-cp15.c │ │ ├── cache-pl310.c │ │ ├── cache.c │ │ ├── ccn504.S │ │ ├── cmd_boot.c │ │ ├── crt0.S │ │ ├── crt0_64.S │ │ ├── debug.S │ │ ├── div0.c │ │ ├── div64.S │ │ ├── eabi_compat.c │ │ ├── gic_64.S │ │ ├── interrupts.c │ │ ├── interrupts_64.c │ │ ├── interrupts_m.c │ │ ├── lib1funcs.S │ │ ├── lshrdi3.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── muldi3.S │ │ ├── psci-dt.c │ │ ├── relocate.S │ │ ├── relocate_64.S │ │ ├── reset.c │ │ ├── sections.c │ │ ├── semihosting.c │ │ ├── spl.c │ │ ├── stack.c │ │ ├── uldivmod.S │ │ ├── vectors.S │ │ ├── vectors_m.S │ │ └── zimage.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 │ │ │ ├── led.c │ │ │ ├── lowlevel_init.S │ │ │ ├── reset.c │ │ │ ├── timer.c │ │ │ └── u-boot-spl.lds │ │ ├── armv7 │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── reset.c │ │ │ ├── sama5d2_devices.c │ │ │ ├── sama5d3_devices.c │ │ │ ├── sama5d4_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_rtt.h │ │ │ │ ├── at91_sck.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 │ │ │ │ ├── sama5_boot.h │ │ │ │ ├── sama5_matrix.h │ │ │ │ ├── sama5_sfr.h │ │ │ │ ├── sama5d2.h │ │ │ │ ├── sama5d3.h │ │ │ │ ├── sama5d3_smc.h │ │ │ │ └── sama5d4.h │ │ ├── matrix.c │ │ ├── mpddrc.c │ │ ├── phy.c │ │ ├── sdram.c │ │ ├── spl.c │ │ ├── spl_at91.c │ │ └── spl_atmel.c │ ├── mach-bcm283x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── gpio.h │ │ │ │ ├── mbox.h │ │ │ │ ├── sdhci.h │ │ │ │ ├── timer.h │ │ │ │ └── wdog.h │ │ ├── init.c │ │ ├── lowlevel_init.S │ │ ├── mbox.c │ │ ├── phys2bus.c │ │ └── reset.c │ ├── mach-davinci │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── config.mk │ │ ├── cpu.c │ │ ├── da830_pinmux.c │ │ ├── da850_lowlevel.c │ │ ├── da850_pinmux.c │ │ ├── dm355.c │ │ ├── dm365.c │ │ ├── dm365_lowlevel.c │ │ ├── dm644x.c │ │ ├── dm646x.c │ │ ├── dp83848.c │ │ ├── et1011c.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── aintc_defs.h │ │ │ │ ├── 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 │ │ │ │ ├── syscfg_defs.h │ │ │ │ └── timer_defs.h │ │ ├── ksz8873.c │ │ ├── lowlevel_init.S │ │ ├── lxt972.c │ │ ├── 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 │ │ │ │ ├── pwm_backlight.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-integrator │ │ └── Kconfig │ ├── mach-keystone │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── cmd_clock.c │ │ ├── cmd_ddr3.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 │ │ │ │ └── xhci-keystone.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 │ │ └── mpp.c │ ├── mach-meson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ └── sm.c │ ├── mach-mvebu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arm64-common.c │ │ ├── armada3700 │ │ │ ├── Makefile │ │ │ └── cpu.c │ │ ├── armada8k │ │ │ ├── Makefile │ │ │ └── cpu.c │ │ ├── cpu.c │ │ ├── dram.c │ │ ├── gpio.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ └── soc.h │ │ ├── lowlevel_spl.S │ │ ├── mbus.c │ │ ├── sata.c │ │ ├── serdes │ │ │ ├── a38x │ │ │ │ ├── Makefile │ │ │ │ ├── ctrl_pex.c │ │ │ │ ├── ctrl_pex.h │ │ │ │ ├── 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 │ │ └── timer.c │ ├── mach-orion5x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── dram.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── cpu.h │ │ │ │ ├── mv88f5182.h │ │ │ │ └── orion5x.h │ │ ├── lowlevel_init.S │ │ └── timer.c │ ├── mach-rmobile │ │ ├── Kconfig │ │ ├── Kconfig.32 │ │ ├── Kconfig.64 │ │ ├── Makefile │ │ ├── board.c │ │ ├── cpu_info-r8a7740.c │ │ ├── cpu_info-rcar.c │ │ ├── cpu_info-sh73a0.c │ │ ├── cpu_info.c │ │ ├── emac.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── ehci-rmobile.h │ │ │ │ ├── gpio.h │ │ │ │ ├── irqs.h │ │ │ │ ├── mmc.h │ │ │ │ ├── r8a7740-gpio.h │ │ │ │ ├── r8a7740.h │ │ │ │ ├── r8a7790-gpio.h │ │ │ │ ├── r8a7790.h │ │ │ │ ├── r8a7791-gpio.h │ │ │ │ ├── r8a7791.h │ │ │ │ ├── r8a7792-gpio.h │ │ │ │ ├── r8a7792.h │ │ │ │ ├── r8a7793-gpio.h │ │ │ │ ├── r8a7793.h │ │ │ │ ├── r8a7794-gpio.h │ │ │ │ ├── r8a7794.h │ │ │ │ ├── r8a7795-gpio.h │ │ │ │ ├── r8a7795.h │ │ │ │ ├── rcar-base.h │ │ │ │ ├── rcar-gen3-base.h │ │ │ │ ├── rcar-mstp.h │ │ │ │ ├── rmobile.h │ │ │ │ ├── sh73a0-gpio.h │ │ │ │ ├── sh73a0.h │ │ │ │ ├── sh_sdhi.h │ │ │ │ └── sys_proto.h │ │ ├── lowlevel_init.S │ │ ├── lowlevel_init_ca15.S │ │ ├── lowlevel_init_gen3.S │ │ ├── memmap-r8a7795.c │ │ ├── pfc-r8a7740.c │ │ ├── pfc-r8a7790.c │ │ ├── pfc-r8a7790.h │ │ ├── pfc-r8a7791.c │ │ ├── pfc-r8a7792.c │ │ ├── pfc-r8a7793.c │ │ ├── pfc-r8a7794.c │ │ ├── pfc-r8a7795.c │ │ ├── pfc-sh73a0.c │ │ └── timer.c │ ├── mach-rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── rk3036-board-spl.c │ │ ├── rk3036-board.c │ │ ├── rk3036 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── sdram_rk3036.c │ │ │ └── syscon_rk3036.c │ │ ├── rk3288-board-spl.c │ │ ├── rk3288-board.c │ │ ├── rk3288 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clk_rk3288.c │ │ │ ├── rk3288.c │ │ │ ├── sdram_rk3288.c │ │ │ └── syscon_rk3288.c │ │ ├── rk3399 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── rk3399.c │ │ │ └── syscon_rk3399.c │ │ ├── rk_timer.c │ │ └── save_boot_param.S │ ├── 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 │ │ └── reset.S │ ├── mach-snapdragon │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock-apq8016.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── gpio.h │ │ │ │ └── sysmap-apq8016.h │ │ └── sysmap-apq8016.c │ ├── mach-socfpga │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board.c │ │ ├── clock_manager.c │ │ ├── fpga_manager.c │ │ ├── freeze_controller.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── base_addr_a10.h │ │ │ │ ├── base_addr_ac5.h │ │ │ │ ├── clock_manager.h │ │ │ │ ├── fpga_manager.h │ │ │ │ ├── freeze_controller.h │ │ │ │ ├── gpio.h │ │ │ │ ├── nic301.h │ │ │ │ ├── reset_manager.h │ │ │ │ ├── scan_manager.h │ │ │ │ ├── scu.h │ │ │ │ ├── sdram.h │ │ │ │ ├── system_manager.h │ │ │ │ └── timer.h │ │ ├── misc.c │ │ ├── qts-filter.sh │ │ ├── reset_manager.c │ │ ├── scan_manager.c │ │ ├── spl.c │ │ ├── system_manager.c │ │ ├── timer.c │ │ ├── wrap_iocsr_config.c │ │ ├── wrap_pinmux_config.c │ │ ├── wrap_pll_config.c │ │ └── wrap_sdram_config.c │ ├── mach-stm32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── stm32f1 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── flash.c │ │ │ ├── soc.c │ │ │ └── timer.c │ │ ├── stm32f4 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── soc.c │ │ │ └── timer.c │ │ └── stm32f7 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── soc.c │ │ │ └── timer.c │ ├── mach-sunxi │ │ ├── Makefile │ │ ├── board.c │ │ ├── clock.c │ │ ├── clock_sun4i.c │ │ ├── clock_sun6i.c │ │ ├── clock_sun8i_a83t.c │ │ ├── clock_sun9i.c │ │ ├── cpu_info.c │ │ ├── dram_helpers.c │ │ ├── dram_sun4i.c │ │ ├── dram_sun6i.c │ │ ├── dram_sun8i_a23.c │ │ ├── dram_sun8i_a33.c │ │ ├── dram_sun8i_a83t.c │ │ ├── dram_sun8i_h3.c │ │ ├── p2wi.c │ │ ├── pinmux.c │ │ ├── pmic_bus.c │ │ ├── prcm.c │ │ ├── rsb.c │ │ └── usb_phy.c │ ├── mach-tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ap.c │ │ ├── arm64-mmu.c │ │ ├── board.c │ │ ├── board186.c │ │ ├── board2.c │ │ ├── cache.c │ │ ├── clock.c │ │ ├── cmd_enterrcm.c │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── dt-setup.c │ │ ├── emc.c │ │ ├── emc.h │ │ ├── gpu.c │ │ ├── ivc.c │ │ ├── lowlevel_init.S │ │ ├── pinmux-common.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 │ │ │ ├── psci.c │ │ │ └── xusb-padctl.c │ │ ├── tegra186 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── nvtboot_ll.S │ │ │ └── nvtboot_mem.c │ │ ├── tegra20 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── crypto.c │ │ │ ├── crypto.h │ │ │ ├── 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 │ │ │ ├── pinmux.c │ │ │ └── xusb-padctl.c │ │ ├── tegra30 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── funcmux.c │ │ │ └── pinmux.c │ │ ├── xusb-padctl-common.c │ │ ├── xusb-padctl-common.h │ │ └── xusb-padctl-dummy.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 │ │ │ └── timer.c │ │ ├── arm64 │ │ │ ├── Makefile │ │ │ ├── arm-cci500.c │ │ │ ├── mem_map.c │ │ │ ├── smp.S │ │ │ ├── smp_kick_cpus.c │ │ │ └── timer.c │ │ ├── bcu │ │ │ ├── Makefile │ │ │ ├── bcu-ld4.c │ │ │ ├── bcu-regs.h │ │ │ └── bcu-sld3.c │ │ ├── board_init.c │ │ ├── board_late_init.c │ │ ├── boards.c │ │ ├── boot-mode │ │ │ ├── Makefile │ │ │ ├── boot-device.h │ │ │ ├── boot-mode-ld20.c │ │ │ ├── boot-mode-ld4.c │ │ │ ├── boot-mode-pro5.c │ │ │ ├── boot-mode-pxs2.c │ │ │ ├── boot-mode-sld3.c │ │ │ ├── boot-mode.c │ │ │ ├── cmd_pinmon.c │ │ │ └── spl_board.c │ │ ├── clk │ │ │ ├── Makefile │ │ │ ├── clk-ld11.c │ │ │ ├── clk-ld20.c │ │ │ ├── clk-ld4.c │ │ │ ├── clk-pro4.c │ │ │ ├── clk-pro5.c │ │ │ ├── clk-pxs2.c │ │ │ ├── dpll-ld11.c │ │ │ ├── dpll-ld20.c │ │ │ ├── dpll-ld4.c │ │ │ ├── dpll-pro4.c │ │ │ ├── dpll-sld3.c │ │ │ ├── dpll-sld8.c │ │ │ ├── dpll-tail.c │ │ │ ├── early-clk-ld11.c │ │ │ ├── early-clk-ld20.c │ │ │ ├── early-clk-ld4.c │ │ │ ├── early-clk-pro5.c │ │ │ ├── early-clk-pxs2.c │ │ │ ├── pll-base-ld20.c │ │ │ ├── pll-ld11.c │ │ │ ├── pll-ld20.c │ │ │ ├── pll-ld4.c │ │ │ ├── pll-pro4.c │ │ │ ├── pll-sld3.c │ │ │ └── pll.h │ │ ├── cpu_info.c │ │ ├── debug-uart │ │ │ ├── Makefile │ │ │ ├── debug-uart-ld20.c │ │ │ ├── debug-uart-ld4.c │ │ │ ├── debug-uart-ld6b.c │ │ │ ├── debug-uart-pro4.c │ │ │ ├── debug-uart-pro5.c │ │ │ ├── debug-uart-pxs2.c │ │ │ ├── debug-uart-sld3.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-ld20-regs.h │ │ │ ├── ddrphy-ld4.c │ │ │ ├── ddrphy-regs.h │ │ │ ├── ddrphy-training.c │ │ │ ├── umc-ld11.c │ │ │ ├── umc-ld20.c │ │ │ ├── umc-ld4.c │ │ │ ├── umc-pro4.c │ │ │ ├── umc-pxs2.c │ │ │ ├── umc-regs.h │ │ │ ├── umc-sld8.c │ │ │ └── umc64-regs.h │ │ ├── dram_init.c │ │ ├── init.h │ │ ├── init │ │ │ ├── Makefile │ │ │ ├── init-ld11.c │ │ │ ├── init-ld20.c │ │ │ ├── init-ld4.c │ │ │ ├── init-pro4.c │ │ │ ├── init-pro5.c │ │ │ ├── init-pxs2.c │ │ │ ├── init-sld3.c │ │ │ ├── init-sld8.c │ │ │ └── init.c │ │ ├── memconf │ │ │ ├── Makefile │ │ │ ├── memconf-pxs2.c │ │ │ ├── memconf-sld3.c │ │ │ └── memconf.c │ │ ├── micro-support-card.c │ │ ├── micro-support-card.h │ │ ├── pinctrl-glue.c │ │ ├── reset.c │ │ ├── sbc │ │ │ ├── Makefile │ │ │ ├── sbc-admulti.c │ │ │ ├── sbc-ld4.c │ │ │ ├── sbc-pxs2.c │ │ │ ├── sbc-regs.h │ │ │ └── sbc-savepin.c │ │ ├── sc-regs.h │ │ ├── sc64-regs.h │ │ ├── sg-regs.h │ │ ├── soc-info.h │ │ └── soc_info.c │ ├── mach-versatile │ │ ├── Makefile │ │ ├── reset.S │ │ └── timer.c │ ├── mach-zynq │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk.c │ │ ├── cpu.c │ │ ├── ddrc.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ └── sys_proto.h │ │ ├── lowlevel_init.S │ │ ├── slcr.c │ │ ├── spl.c │ │ ├── timer.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ └── thumb1 │ │ └── include │ │ └── asm │ │ └── proc-armv │ │ └── system.h ├── avr32 │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── at32ap700x │ │ │ ├── Makefile │ │ │ ├── clk.c │ │ │ ├── mmu.c │ │ │ ├── portmux.c │ │ │ └── sm.h │ │ ├── cache.c │ │ ├── config.mk │ │ ├── cpu.c │ │ ├── exception.c │ │ ├── hsdramc.c │ │ ├── hsdramc1.h │ │ ├── hsmc3.h │ │ ├── interrupts.c │ │ ├── mmc.c │ │ ├── portmux-gpio.c │ │ ├── portmux-pio.c │ │ ├── start.S │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── arch-at32ap700x │ │ │ ├── addrspace.h │ │ │ ├── cacheflush.h │ │ │ ├── chip-features.h │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── hmatrix.h │ │ │ ├── mmu.h │ │ │ └── portmux.h │ │ │ ├── arch-common │ │ │ └── portmux-pio.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── hmatrix-common.h │ │ │ ├── io.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sdram.h │ │ │ ├── sections.h │ │ │ ├── setup.h │ │ │ ├── string.h │ │ │ ├── sysreg.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ ├── dram_init.c │ │ ├── interrupts.c │ │ └── memset.S ├── blackfin │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── cache.S │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── gpio.c │ │ ├── init.S │ │ ├── init.lds.S │ │ ├── initcode.c │ │ ├── initcode.h │ │ ├── interrupt.S │ │ ├── interrupts.c │ │ ├── jtag-console.c │ │ ├── os_log.c │ │ ├── reset.c │ │ ├── start.S │ │ ├── traps.c │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── bfin_logo_230x230_gzip.h │ │ │ ├── bfin_logo_230x230_lzma.h │ │ │ ├── bfin_logo_rgb565_230x230_gzip.h │ │ │ ├── bfin_logo_rgb565_230x230_lzma.h │ │ │ ├── bitops.h │ │ │ ├── blackfin.h │ │ │ ├── blackfin_cdef.h │ │ │ ├── blackfin_def.h │ │ │ ├── blackfin_local.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── clock.h │ │ │ ├── config-pre.h │ │ │ ├── config.h │ │ │ ├── cplb.h │ │ │ ├── deferred.h │ │ │ ├── delay.h │ │ │ ├── dma.h │ │ │ ├── entry.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mach-bf506 │ │ │ ├── BF504_cdef.h │ │ │ ├── BF504_def.h │ │ │ ├── BF506_cdef.h │ │ │ ├── BF506_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf518 │ │ │ ├── BF512_cdef.h │ │ │ ├── BF512_def.h │ │ │ ├── BF514_cdef.h │ │ │ ├── BF514_def.h │ │ │ ├── BF516_cdef.h │ │ │ ├── BF516_def.h │ │ │ ├── BF518_cdef.h │ │ │ ├── BF518_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf527 │ │ │ ├── BF522_cdef.h │ │ │ ├── BF522_def.h │ │ │ ├── BF523_cdef.h │ │ │ ├── BF523_def.h │ │ │ ├── BF524_cdef.h │ │ │ ├── BF524_def.h │ │ │ ├── BF525_cdef.h │ │ │ ├── BF525_def.h │ │ │ ├── BF526_cdef.h │ │ │ ├── BF526_def.h │ │ │ ├── BF527_cdef.h │ │ │ ├── BF527_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── mem_map.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf533 │ │ │ ├── BF531_cdef.h │ │ │ ├── BF531_def.h │ │ │ ├── BF532_cdef.h │ │ │ ├── BF532_def.h │ │ │ ├── BF533_cdef.h │ │ │ ├── BF533_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf537 │ │ │ ├── BF534_cdef.h │ │ │ ├── BF534_def.h │ │ │ ├── BF536_cdef.h │ │ │ ├── BF536_def.h │ │ │ ├── BF537_cdef.h │ │ │ ├── BF537_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf538 │ │ │ ├── BF538_cdef.h │ │ │ ├── BF538_def.h │ │ │ ├── BF539_cdef.h │ │ │ ├── BF539_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf548 │ │ │ ├── ADSP-EDN-BF542-extended_cdef.h │ │ │ ├── ADSP-EDN-BF542-extended_def.h │ │ │ ├── ADSP-EDN-BF544-extended_cdef.h │ │ │ ├── ADSP-EDN-BF544-extended_def.h │ │ │ ├── ADSP-EDN-BF547-extended_cdef.h │ │ │ ├── ADSP-EDN-BF547-extended_def.h │ │ │ ├── ADSP-EDN-BF548-extended_cdef.h │ │ │ ├── ADSP-EDN-BF548-extended_def.h │ │ │ ├── ADSP-EDN-BF549-extended_cdef.h │ │ │ ├── ADSP-EDN-BF549-extended_def.h │ │ │ ├── BF542_cdef.h │ │ │ ├── BF542_def.h │ │ │ ├── BF544_cdef.h │ │ │ ├── BF544_def.h │ │ │ ├── BF547_cdef.h │ │ │ ├── BF547_def.h │ │ │ ├── BF548_cdef.h │ │ │ ├── BF548_def.h │ │ │ ├── BF549_cdef.h │ │ │ ├── BF549_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── mem_map.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf561 │ │ │ ├── BF561_cdef.h │ │ │ ├── BF561_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-bf609 │ │ │ ├── BF609_cdef.h │ │ │ ├── BF609_def.h │ │ │ ├── anomaly.h │ │ │ ├── def_local.h │ │ │ ├── gpio.h │ │ │ ├── portmux.h │ │ │ └── ports.h │ │ │ ├── mach-common │ │ │ ├── ADSP-EDN-core_cdef.h │ │ │ ├── ADSP-EDN-core_def.h │ │ │ └── bits │ │ │ │ ├── bootrom.h │ │ │ │ ├── cgu.h │ │ │ │ ├── core.h │ │ │ │ ├── dde.h │ │ │ │ ├── dma.h │ │ │ │ ├── ebiu.h │ │ │ │ ├── emac.h │ │ │ │ ├── eppi.h │ │ │ │ ├── mpu.h │ │ │ │ ├── otp.h │ │ │ │ ├── pata.h │ │ │ │ ├── pll.h │ │ │ │ ├── ports-a.h │ │ │ │ ├── ports-b.h │ │ │ │ ├── ports-c.h │ │ │ │ ├── ports-d.h │ │ │ │ ├── ports-e.h │ │ │ │ ├── ports-f.h │ │ │ │ ├── ports-g.h │ │ │ │ ├── ports-h.h │ │ │ │ ├── ports-i.h │ │ │ │ ├── ports-j.h │ │ │ │ ├── ppi.h │ │ │ │ ├── rtc.h │ │ │ │ ├── sdh.h │ │ │ │ ├── spi.h │ │ │ │ ├── spi6xx.h │ │ │ │ ├── timer.h │ │ │ │ ├── trace.h │ │ │ │ ├── twi.h │ │ │ │ ├── uart.h │ │ │ │ ├── uart4.h │ │ │ │ ├── usb.h │ │ │ │ └── watchdog.h │ │ │ ├── mem_map.h │ │ │ ├── portmux.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sdh.h │ │ │ ├── sections.h │ │ │ ├── serial.h │ │ │ ├── serial1.h │ │ │ ├── serial4.h │ │ │ ├── shared_resources.h │ │ │ ├── signal.h │ │ │ ├── soft_switch.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── traps.h │ │ │ ├── twi.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── __kgdb.S │ │ ├── boot.c │ │ ├── cache.c │ │ ├── clocks.c │ │ ├── cmd_cache_dump.c │ │ ├── ins.S │ │ ├── kgdb.c │ │ ├── kgdb.h │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── muldi3.c │ │ ├── outs.S │ │ ├── post.c │ │ ├── sections.c │ │ └── string.c ├── m68k │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── mcf5227x │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── 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 │ │ │ ├── interrupts.c │ │ │ ├── pci.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf547x_8x │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── pci.c │ │ │ ├── slicetimer.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ └── u-boot.lds │ ├── 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 │ │ │ ├── fec.h │ │ │ ├── fsl_i2c.h │ │ │ ├── fsl_mcdmafec.h │ │ │ ├── global_data.h │ │ │ ├── immap.h │ │ │ ├── immap_520x.h │ │ │ ├── immap_5227x.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 │ │ │ ├── immap_5445x.h │ │ │ ├── immap_547x_8x.h │ │ │ ├── io.h │ │ │ ├── m520x.h │ │ │ ├── m5227x.h │ │ │ ├── m5235.h │ │ │ ├── m5249.h │ │ │ ├── m5253.h │ │ │ ├── m5271.h │ │ │ ├── m5272.h │ │ │ ├── m5275.h │ │ │ ├── m5282.h │ │ │ ├── m5301x.h │ │ │ ├── m5307.h │ │ │ ├── m5329.h │ │ │ ├── m5441x.h │ │ │ ├── m5445x.h │ │ │ ├── m547x_8x.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── rtc.h │ │ │ ├── sections.h │ │ │ ├── string.h │ │ │ ├── timer.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ ├── uart.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── ashldi3.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── interrupts.c │ │ ├── lshrdi3.c │ │ ├── muldi3.c │ │ ├── time.c │ │ └── traps.c ├── microblaze │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cache.c │ │ ├── exception.c │ │ ├── interrupts.c │ │ ├── irq.S │ │ ├── spl.c │ │ ├── start.S │ │ ├── timer.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── include │ │ │ └── dt-bindings │ │ └── microblaze-generic.dts │ ├── include │ │ └── asm │ │ │ ├── asm.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── microblaze_intc.h │ │ │ ├── microblaze_timer.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 │ │ └── muldi3.c ├── mips │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cm_init.S │ │ ├── cpu.c │ │ ├── interrupts.c │ │ ├── mips32 │ │ │ └── config.mk │ │ ├── mips64 │ │ │ └── config.mk │ │ ├── start.S │ │ ├── time.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ap121.dts │ │ ├── ap143.dts │ │ ├── ar933x.dtsi │ │ ├── ar934x.dtsi │ │ ├── img,boston.dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── microAptiv.dtsi │ │ ├── mti,malta.dts │ │ ├── nexys4ddr.dts │ │ ├── pic32mzda.dtsi │ │ ├── pic32mzda_sk.dts │ │ ├── qca953x.dtsi │ │ ├── skeleton.dtsi │ │ └── tplink_wdr4300.dts │ ├── include │ │ └── asm │ │ │ ├── addrspace.h │ │ │ ├── asm.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cachectl.h │ │ │ ├── cacheops.h │ │ │ ├── cm.h │ │ │ ├── config.h │ │ │ ├── const.h │ │ │ ├── cpu-features.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── isadep.h │ │ │ ├── mach-generic │ │ │ ├── cpu-feature-overrides.h │ │ │ ├── ioremap.h │ │ │ ├── mangle-port.h │ │ │ └── spaces.h │ │ │ ├── malta.h │ │ │ ├── mipsregs.h │ │ │ ├── pgtable-bits.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── regdef.h │ │ │ ├── sections.h │ │ │ ├── sgidefs.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot-mips.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ ├── lib │ │ ├── Makefile │ │ ├── ashldi3.c │ │ ├── ashrdi3.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── cache_init.S │ │ ├── libgcc.h │ │ └── lshrdi3.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 │ │ └── reset.c │ ├── mach-au1x00 │ │ ├── Makefile │ │ ├── au1x00_eth.c │ │ ├── au1x00_ide.c │ │ ├── au1x00_serial.c │ │ ├── au1x00_usb_ohci.c │ │ ├── au1x00_usb_ohci.h │ │ └── include │ │ │ └── mach │ │ │ └── au1x00.h │ └── mach-pic32 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── include │ │ └── mach │ │ │ ├── ddr.h │ │ │ └── pic32.h │ │ ├── lowlevel_init.S │ │ └── reset.c ├── nds32 │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ └── n1213 │ │ │ ├── Makefile │ │ │ ├── ag101 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── lowlevel_init.S │ │ │ ├── timer.c │ │ │ └── watchdog.S │ │ │ ├── start.S │ │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── arch-ag101 │ │ │ └── ag101.h │ │ │ ├── arch-ag102 │ │ │ └── ag102.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── dma-mapping.h │ │ │ ├── global_data.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── mach-types.h │ │ │ ├── macro.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── setup.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot-nds32.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── bootm.c │ │ ├── cache.c │ │ └── interrupts.c ├── nios2 │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── exceptions.S │ │ ├── fdt.c │ │ ├── interrupts.c │ │ ├── start.S │ │ ├── traps.c │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── 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 │ │ │ ├── nios2.h │ │ │ ├── opcodes.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── libgcc.c │ │ └── longlong.h ├── openrisc │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── exceptions.c │ │ ├── interrupts.c │ │ ├── start.S │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── bitops │ │ │ ├── ffs.h │ │ │ └── fls.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── openrisc_exc.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── spr-defs.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ └── timer.c ├── powerpc │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── mpc512x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── asm-offsets.h │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── diu.c │ │ │ ├── fixed_sdram.c │ │ │ ├── i2c.c │ │ │ ├── ide.c │ │ │ ├── interrupts.c │ │ │ ├── iopin.c │ │ │ ├── pci.c │ │ │ ├── serial.c │ │ │ ├── speed.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ └── u-boot.lds │ │ ├── mpc5xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── serial.c │ │ │ ├── speed.c │ │ │ ├── spi.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ └── u-boot.lds │ │ ├── mpc5xxx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ │ ├── i2c.c │ │ │ ├── ide.c │ │ │ ├── interrupts.c │ │ │ ├── io.S │ │ │ ├── loadtask.c │ │ │ ├── pci_mpc5200.c │ │ │ ├── serial.c │ │ │ ├── speed.c │ │ │ ├── spl_boot.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ ├── u-boot-customlayout.lds │ │ │ ├── u-boot-spl.lds │ │ │ ├── u-boot.lds │ │ │ ├── usb.c │ │ │ ├── usb_ohci.c │ │ │ └── usb_ohci.h │ │ ├── mpc8260 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bedbug_603e.c │ │ │ ├── commproc.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── ether_fcc.c │ │ │ ├── ether_scc.c │ │ │ ├── i2c.c │ │ │ ├── interrupts.c │ │ │ ├── kgdb.S │ │ │ ├── pci.c │ │ │ ├── serial_scc.c │ │ │ ├── serial_smc.c │ │ │ ├── speed.c │ │ │ ├── spi.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ └── u-boot.lds │ │ ├── mpc83xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── ecc.c │ │ │ ├── fdt.c │ │ │ ├── interrupts.c │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── qe_io.c │ │ │ ├── serdes.c │ │ │ ├── spd_sdram.c │ │ │ ├── speed.c │ │ │ ├── spl_minimal.c │ │ │ ├── start.S │ │ │ ├── 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 │ │ │ ├── commproc.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── cpu_init_early.c │ │ │ ├── ether_fcc.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 │ │ │ ├── mpc8568_serdes.c │ │ │ ├── mpc8569_serdes.c │ │ │ ├── mpc8572_serdes.c │ │ │ ├── p1010_serdes.c │ │ │ ├── p1021_serdes.c │ │ │ ├── p1022_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 │ │ │ ├── p5020_ids.c │ │ │ ├── p5020_serdes.c │ │ │ ├── p5040_ids.c │ │ │ ├── p5040_serdes.c │ │ │ ├── pci.c │ │ │ ├── portals.c │ │ │ ├── qe_io.c │ │ │ ├── release.S │ │ │ ├── resetvec.S │ │ │ ├── serial_scc.c │ │ │ ├── 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-nand.lds │ │ │ ├── u-boot-nand_spl.lds │ │ │ ├── u-boot-spl.lds │ │ │ └── u-boot.lds │ │ ├── mpc86xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.S │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── fdt.c │ │ │ ├── interrupts.c │ │ │ ├── mp.c │ │ │ ├── mpc8610_serdes.c │ │ │ ├── mpc8641_serdes.c │ │ │ ├── release.S │ │ │ ├── speed.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ └── u-boot.lds │ │ ├── mpc8xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bedbug_860.c │ │ │ ├── commproc.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── fdt.c │ │ │ ├── fec.c │ │ │ ├── fec.h │ │ │ ├── i2c.c │ │ │ ├── interrupts.c │ │ │ ├── kgdb.S │ │ │ ├── plprcr_write.S │ │ │ ├── scc.c │ │ │ ├── serial.c │ │ │ ├── speed.c │ │ │ ├── spi.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ ├── upatch.c │ │ │ └── video.c │ │ ├── mpc8xxx │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── fdt.c │ │ │ ├── fsl_lbc.c │ │ │ ├── fsl_pamu.c │ │ │ ├── law.c │ │ │ ├── pamu_table.c │ │ │ └── srio.c │ │ └── ppc4xx │ │ │ ├── 40x_spd_sdram.c │ │ │ ├── 44x_spd_ddr.c │ │ │ ├── 44x_spd_ddr2.c │ │ │ ├── 4xx_ibm_ddr2_autocalib.c │ │ │ ├── 4xx_pci.c │ │ │ ├── 4xx_pcie.c │ │ │ ├── 4xx_uart.c │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bedbug_405.c │ │ │ ├── cache.S │ │ │ ├── cmd_chip_config.c │ │ │ ├── cmd_ecctest.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── dcr.S │ │ │ ├── denali_data_eye.c │ │ │ ├── denali_spd_ddr2.c │ │ │ ├── ecc.c │ │ │ ├── ecc.h │ │ │ ├── fdt.c │ │ │ ├── gpio.c │ │ │ ├── interrupts.c │ │ │ ├── kgdb.S │ │ │ ├── miiphy.c │ │ │ ├── reginfo.c │ │ │ ├── resetvec.S │ │ │ ├── sdram.c │ │ │ ├── sdram.h │ │ │ ├── speed.c │ │ │ ├── spl_boot.c │ │ │ ├── start.S │ │ │ ├── tlb.c │ │ │ ├── traps.c │ │ │ ├── u-boot-spl.lds │ │ │ ├── u-boot.lds │ │ │ ├── uic.c │ │ │ ├── usb.c │ │ │ ├── usb_ohci.c │ │ │ ├── usb_ohci.h │ │ │ └── xilinx_irq.c │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── arches.dts │ │ ├── canyonlands.dts │ │ ├── glacier.dts │ │ ├── xilinx-ppc405-generic.dts │ │ └── xilinx-ppc440-generic.dts │ ├── include │ │ └── asm │ │ │ ├── 4xx_pci.h │ │ │ ├── 4xx_pcie.h │ │ │ ├── 5xx_immap.h │ │ │ ├── 8xx_immap.h │ │ │ ├── arch-mpc83xx │ │ │ └── gpio.h │ │ │ ├── arch-mpc85xx │ │ │ └── gpio.h │ │ │ ├── arch-ppc4xx │ │ │ └── gpio.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── config_mpc85xx.h │ │ │ ├── config_mpc86xx.h │ │ │ ├── cpm_8260.h │ │ │ ├── cpm_85xx.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_512x.h │ │ │ ├── immap_8260.h │ │ │ ├── immap_83xx.h │ │ │ ├── immap_85xx.h │ │ │ ├── immap_86xx.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── iopin_8260.h │ │ │ ├── iopin_8xx.h │ │ │ ├── linkage.h │ │ │ ├── m8260_pci.h │ │ │ ├── mc146818rtc.h │ │ │ ├── mmu.h │ │ │ ├── mp.h │ │ │ ├── mpc512x.h │ │ │ ├── mpc8349_pci.h │ │ │ ├── mpc85xx_gpio.h │ │ │ ├── mpc8xxx_spi.h │ │ │ ├── pci_io.h │ │ │ ├── posix_types.h │ │ │ ├── ppc405.h │ │ │ ├── ppc405ep.h │ │ │ ├── ppc405ex.h │ │ │ ├── ppc405ez.h │ │ │ ├── ppc405gp.h │ │ │ ├── ppc440.h │ │ │ ├── ppc440ep_gr.h │ │ │ ├── ppc440epx_grx.h │ │ │ ├── ppc440gp.h │ │ │ ├── ppc440gx.h │ │ │ ├── ppc440sp.h │ │ │ ├── ppc440spe.h │ │ │ ├── ppc460ex_gt.h │ │ │ ├── ppc460sx.h │ │ │ ├── ppc4xx-ebc.h │ │ │ ├── ppc4xx-emac.h │ │ │ ├── ppc4xx-gpio.h │ │ │ ├── ppc4xx-i2c.h │ │ │ ├── ppc4xx-isram.h │ │ │ ├── ppc4xx-mal.h │ │ │ ├── ppc4xx-sdram.h │ │ │ ├── ppc4xx-uic.h │ │ │ ├── ppc4xx.h │ │ │ ├── ppc4xx_config.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── sigcontext.h │ │ │ ├── signal.h │ │ │ ├── spl.h │ │ │ ├── status_led.h │ │ │ ├── string.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ └── xilinx_irq.h │ └── lib │ │ ├── Makefile │ │ ├── _ashldi3.S │ │ ├── _ashrdi3.S │ │ ├── _lshrdi3.S │ │ ├── bat_rw.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── extable.c │ │ ├── ide.c │ │ ├── ide.h │ │ ├── interrupts.c │ │ ├── kgdb.c │ │ ├── memcpy_mpc5200.c │ │ ├── ppccache.S │ │ ├── ppcstring.S │ │ ├── reloc.S │ │ ├── spl.c │ │ ├── stack.c │ │ ├── ticks.S │ │ └── time.c ├── sandbox │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── eth-raw-os.c │ │ ├── os.c │ │ ├── sdl.c │ │ ├── spl.c │ │ ├── start.c │ │ ├── state.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── cros-ec-keyboard.dtsi │ │ ├── include │ │ │ └── dt-bindings │ │ ├── sandbox.dts │ │ ├── sandbox_pmic.dtsi │ │ └── test.dts │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── clk.h │ │ │ ├── config.h │ │ │ ├── eth-raw-os.h │ │ │ ├── eth.h │ │ │ ├── getopt.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── mbox.h │ │ │ ├── posix_types.h │ │ │ ├── power-domain.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── reset.h │ │ │ ├── rtc.h │ │ │ ├── sdl.h │ │ │ ├── sections.h │ │ │ ├── sound.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 │ │ ├── interrupts.c │ │ └── pci_io.c ├── sh │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── sh2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── start.S │ │ │ └── watchdog.c │ │ ├── sh3 │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── start.S │ │ │ └── watchdog.c │ │ ├── sh4 │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── start.S │ │ │ └── watchdog.c │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── cpu_sh2.h │ │ │ ├── cpu_sh3.h │ │ │ ├── cpu_sh4.h │ │ │ ├── cpu_sh7203.h │ │ │ ├── cpu_sh7264.h │ │ │ ├── cpu_sh7269.h │ │ │ ├── cpu_sh7706.h │ │ │ ├── cpu_sh7710.h │ │ │ ├── cpu_sh7720.h │ │ │ ├── cpu_sh7722.h │ │ │ ├── cpu_sh7723.h │ │ │ ├── cpu_sh7724.h │ │ │ ├── cpu_sh7734.h │ │ │ ├── cpu_sh7750.h │ │ │ ├── cpu_sh7752.h │ │ │ ├── cpu_sh7753.h │ │ │ ├── cpu_sh7757.h │ │ │ ├── cpu_sh7763.h │ │ │ ├── cpu_sh7780.h │ │ │ ├── cpu_sh7785.h │ │ │ ├── global_data.h │ │ │ ├── io.h │ │ │ ├── irqflags.h │ │ │ ├── macro.h │ │ │ ├── mmc.h │ │ │ ├── pci.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned-sh4a.h │ │ │ ├── unaligned.h │ │ │ └── zimage.h │ └── lib │ │ ├── Makefile │ │ ├── ashiftrt.S │ │ ├── ashldi3.c │ │ ├── ashlsi3.S │ │ ├── ashrdi3.c │ │ ├── ashrsi3.S │ │ ├── bootm.c │ │ ├── libgcc.h │ │ ├── lshrdi3.c │ │ ├── lshrsi3.S │ │ ├── movmem.S │ │ ├── time.c │ │ ├── time_sh2.c │ │ ├── udiv_qrnnd.S │ │ ├── udivsi3.S │ │ ├── udivsi3_i4i-Os.S │ │ ├── udivsi3_i4i.S │ │ └── zimageboot.c ├── sparc │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── leon2 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── prom.c │ │ │ ├── serial.c │ │ │ └── start.S │ │ ├── leon3 │ │ │ ├── Makefile │ │ │ ├── ambapp.c │ │ │ ├── ambapp_low.S │ │ │ ├── ambapp_low_c.S │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── memcfg.c │ │ │ ├── memcfg.h │ │ │ ├── memcfg_low.S │ │ │ ├── prom.c │ │ │ ├── serial.c │ │ │ ├── start.S │ │ │ ├── usb_uhci.c │ │ │ └── usb_uhci.h │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── arch-leon2 │ │ │ └── asi.h │ │ │ ├── arch-leon3 │ │ │ └── asi.h │ │ │ ├── asi.h │ │ │ ├── asmmacro.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── global_data.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── leon.h │ │ │ ├── leon2.h │ │ │ ├── leon3.h │ │ │ ├── machines.h │ │ │ ├── page.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── prom.h │ │ │ ├── psr.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── srmmu.h │ │ │ ├── stack.h │ │ │ ├── string.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ └── winmacro.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ ├── cache.c │ │ └── interrupts.c ├── x86 │ ├── Kconfig │ ├── Makefile │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── baytrail │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── cpu.c │ │ │ ├── early_uart.c │ │ │ ├── fsp_configs.c │ │ │ └── valleyview.c │ │ ├── broadwell │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cpu.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 │ │ ├── call64.S │ │ ├── config.mk │ │ ├── coreboot │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── car.S │ │ │ ├── coreboot.c │ │ │ ├── sdram.c │ │ │ ├── tables.c │ │ │ └── timestamp.c │ │ ├── cpu.c │ │ ├── cpu_x86.c │ │ ├── efi │ │ │ ├── Makefile │ │ │ ├── efi.c │ │ │ ├── elf_ia32_efi.lds │ │ │ ├── elf_x86_64_efi.lds │ │ │ └── sdram.c │ │ ├── intel_common │ │ │ ├── Makefile │ │ │ ├── car.S │ │ │ ├── cpu.c │ │ │ ├── lpc.c │ │ │ ├── me_status.c │ │ │ ├── microcode.c │ │ │ ├── mrc.c │ │ │ ├── pch.c │ │ │ └── report_platform.c │ │ ├── interrupts.c │ │ ├── ioapic.c │ │ ├── irq.c │ │ ├── ivybridge │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bd82x6x.c │ │ │ ├── cpu.c │ │ │ ├── early_me.c │ │ │ ├── fsp_configs.c │ │ │ ├── gma.c │ │ │ ├── gma.h │ │ │ ├── ivybridge.c │ │ │ ├── lpc.c │ │ │ ├── model_206ax.c │ │ │ ├── northbridge.c │ │ │ ├── sata.c │ │ │ └── sdram.c │ │ ├── lapic.c │ │ ├── mp_init.c │ │ ├── mtrr.c │ │ ├── pci.c │ │ ├── qemu │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── car.S │ │ │ ├── cpu.c │ │ │ ├── dram.c │ │ │ ├── e820.c │ │ │ └── qemu.c │ │ ├── quark │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── acpi.c │ │ │ ├── car.S │ │ │ ├── dram.c │ │ │ ├── hte.c │ │ │ ├── hte.h │ │ │ ├── irq.c │ │ │ ├── mrc.c │ │ │ ├── mrc_util.c │ │ │ ├── mrc_util.h │ │ │ ├── msg_port.c │ │ │ ├── quark.c │ │ │ ├── smc.c │ │ │ └── smc.h │ │ ├── queensbay │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── fsp_configs.c │ │ │ ├── irq.c │ │ │ ├── tnc.c │ │ │ └── topcliff.c │ │ ├── resetvec.S │ │ ├── sipi_vector.S │ │ ├── start.S │ │ ├── start16.S │ │ ├── turbo.c │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── bayleybay.dts │ │ ├── baytrail_som-db5800-som-6867.dts │ │ ├── broadwell_som-6896.dts │ │ ├── chromebook_link.dts │ │ ├── chromebook_samus.dts │ │ ├── chromebox_panther.dts │ │ ├── conga-qeval20-qa3-e3845.dts │ │ ├── cougarcanyon2.dts │ │ ├── crownbay.dts │ │ ├── dfi-bt700-q7x-151.dts │ │ ├── dfi-bt700.dtsi │ │ ├── efi.dts │ │ ├── galileo.dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── keyboard.dtsi │ │ ├── microcode │ │ │ ├── m0130673325.dtsi │ │ │ ├── m0130679907.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 │ │ ├── qemu-x86_i440fx.dts │ │ ├── qemu-x86_q35.dts │ │ ├── rtc.dtsi │ │ ├── serial.dtsi │ │ ├── skeleton.dtsi │ │ ├── theadorable-x86-dfi-bt700.dts │ │ └── tsc_timer.dtsi │ ├── include │ │ └── asm │ │ │ ├── acpi │ │ │ ├── debug.asl │ │ │ ├── global_nvs.h │ │ │ ├── globutil.asl │ │ │ ├── irq_helper.h │ │ │ ├── irqlinks.asl │ │ │ ├── irqroute.asl │ │ │ └── statdef.asl │ │ │ ├── acpi_table.h │ │ │ ├── arch-baytrail │ │ │ ├── acpi │ │ │ │ ├── global_nvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── irqroute.h │ │ │ │ ├── lpc.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── southcluster.asl │ │ │ │ ├── usb.asl │ │ │ │ └── xhci.asl │ │ │ ├── device.h │ │ │ ├── fsp │ │ │ │ ├── azalia.h │ │ │ │ ├── fsp_configs.h │ │ │ │ └── fsp_vpd.h │ │ │ ├── global_nvs.h │ │ │ ├── iomap.h │ │ │ └── irq.h │ │ │ ├── arch-broadwell │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ ├── lpc.h │ │ │ ├── me.h │ │ │ ├── pch.h │ │ │ ├── pei_data.h │ │ │ ├── pm.h │ │ │ ├── rcb.h │ │ │ └── spi.h │ │ │ ├── arch-coreboot │ │ │ ├── sysinfo.h │ │ │ └── timestamp.h │ │ │ ├── arch-ivybridge │ │ │ ├── bd82x6x.h │ │ │ ├── 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 │ │ │ │ ├── sleepstates.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 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── bootm.h │ │ │ ├── bootparam.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── control_regs.h │ │ │ ├── coreboot_tables.h │ │ │ ├── cpu.h │ │ │ ├── cpu_common.h │ │ │ ├── cpu_x86.h │ │ │ ├── e820.h │ │ │ ├── elf.h │ │ │ ├── fsp │ │ │ ├── fsp_api.h │ │ │ ├── fsp_bootmode.h │ │ │ ├── fsp_ffs.h │ │ │ ├── fsp_fv.h │ │ │ ├── fsp_hob.h │ │ │ ├── fsp_infoheader.h │ │ │ ├── fsp_support.h │ │ │ └── fsp_types.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── i8254.h │ │ │ ├── i8259.h │ │ │ ├── ibmpc.h │ │ │ ├── init_helpers.h │ │ │ ├── intel_regs.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── ioapic.h │ │ │ ├── ioctl.h │ │ │ ├── irq.h │ │ │ ├── ist.h │ │ │ ├── lapic.h │ │ │ ├── linkage.h │ │ │ ├── lpc_common.h │ │ │ ├── me_common.h │ │ │ ├── microcode.h │ │ │ ├── mp.h │ │ │ ├── mpspec.h │ │ │ ├── mrc_common.h │ │ │ ├── mrccache.h │ │ │ ├── msr-index.h │ │ │ ├── msr.h │ │ │ ├── mtrr.h │ │ │ ├── pch_common.h │ │ │ ├── pci.h │ │ │ ├── pirq_routing.h │ │ │ ├── pnp_def.h │ │ │ ├── posix_types.h │ │ │ ├── post.h │ │ │ ├── processor-flags.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── relocate.h │ │ │ ├── report_platform.h │ │ │ ├── sections.h │ │ │ ├── sfi.h │ │ │ ├── sipi.h │ │ │ ├── smbios.h │ │ │ ├── speedstep.h │ │ │ ├── string.h │ │ │ ├── tables.h │ │ │ ├── turbo.h │ │ │ ├── types.h │ │ │ ├── u-boot-x86.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ ├── video │ │ │ └── edid.h │ │ │ └── zimage.h │ └── lib │ │ ├── Makefile │ │ ├── acpi_table.c │ │ ├── asm-offsets.c │ │ ├── bios.c │ │ ├── bios.h │ │ ├── bios_asm.S │ │ ├── bios_interrupts.c │ │ ├── bootm.c │ │ ├── cmd_boot.c │ │ ├── cmd_mtrr.c │ │ ├── coreboot_table.c │ │ ├── e820.c │ │ ├── efi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── car.S │ │ ├── crt0-efi-ia32.S │ │ ├── crt0-efi-x86_64.S │ │ ├── efi.c │ │ ├── reloc_ia32.c │ │ └── reloc_x86_64.c │ │ ├── fsp │ │ ├── Makefile │ │ ├── cmd_fsp.c │ │ ├── fsp_car.S │ │ ├── fsp_common.c │ │ ├── fsp_dram.c │ │ └── fsp_support.c │ │ ├── gcc.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 │ │ ├── ramtest.c │ │ ├── relocate.c │ │ ├── sfi.c │ │ ├── smbios.c │ │ ├── string.c │ │ ├── tables.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 │ │ ├── global_data.h │ │ ├── io.h │ │ ├── ldscript.h │ │ ├── linkage.h │ │ ├── misc.h │ │ ├── posix_types.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── regs.h │ │ ├── relocate.h │ │ ├── sections.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 ├── 8dtech │ └── eco5pk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eco5pk.c │ │ └── eco5pk.h ├── AndesTech │ └── adp-ag101p │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── adp-ag101p.c ├── Arcturus │ └── ucp1020 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cmd_arc.c │ │ ├── ddr.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ ├── tlb.c │ │ ├── ucp1020.c │ │ └── ucp1020.h ├── Barix │ └── ipam390 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.ipam390 │ │ ├── ipam390-ais-uart.cfg │ │ ├── ipam390.c │ │ └── u-boot-spl-ipam390.lds ├── BuR │ ├── brppt1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux.c │ ├── brxre1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux.c │ └── common │ │ ├── bur_common.h │ │ └── common.c ├── BuS │ └── eb_cpu5282 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── eb_cpu5282.c ├── CarMediaLab │ └── flea3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flea3.c │ │ └── lowlevel_init.S ├── LaCie │ ├── common │ │ ├── common.c │ │ ├── common.h │ │ ├── cpld-gpio-bus.c │ │ └── cpld-gpio-bus.h │ ├── edminiv2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── edminiv2.c │ ├── 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 │ ├── aspenite │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aspenite.c │ ├── db-88f6720 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── db-88f6720.c │ │ └── kwbimage.cfg │ ├── db-88f6820-amc │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── db-88f6820-amc.c │ │ └── kwbimage.cfg │ ├── db-88f6820-gp │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── db-88f6820-gp.c │ │ └── kwbimage.cfg │ ├── db-mv784mp-gp │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── db-mv784mp-gp.c │ │ └── kwbimage.cfg │ ├── dreamplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dreamplug.c │ │ ├── dreamplug.h │ │ └── kwbimage.cfg │ ├── gplugd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── gplugd.c │ ├── guruplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── guruplug.c │ │ ├── guruplug.h │ │ └── kwbimage.cfg │ ├── mvebu_db-88f3720 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── mvebu_db-88f7040 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── openrd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── openrd.c │ │ └── openrd.h │ └── sheevaplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── sheevaplug.c │ │ └── sheevaplug.h ├── Seagate │ ├── dockstar │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dockstar.c │ │ ├── dockstar.h │ │ └── kwbimage.cfg │ ├── goflexhome │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── goflexhome.c │ │ └── kwbimage.cfg │ └── nas220 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── nas220.c ├── Synology │ └── ds414 │ │ ├── Makefile │ │ ├── cmd_syno.c │ │ ├── ds414.c │ │ └── kwbimage.cfg ├── a3m071 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── a3m071.c │ ├── is46r16320d.h │ └── mt46v16m16-75.h ├── a4m072 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── a4m072.c │ └── mt46v32m16.h ├── abilis │ └── tb100 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── tb100.c ├── advantech │ ├── Kconfig │ ├── dms-ba16 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── clocks.cfg │ │ ├── ddr-setup.cfg │ │ ├── dms-ba16.c │ │ ├── dms-ba16_1g.cfg │ │ ├── dms-ba16_2g.cfg │ │ ├── micron-1g.cfg │ │ └── samsung-2g.cfg │ └── som-db5800-som-6867 │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── dsdt.asl │ │ ├── som-db5800-som-6867.c │ │ └── start.S ├── alphaproject │ └── ap_sh4a_4a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ap_sh4a_4a.c │ │ └── lowlevel_init.S ├── altera │ ├── arria5-socdk │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ │ └── socfpga.c │ ├── cyclone5-socdk │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ │ └── socfpga.c │ └── nios2 │ │ └── MAINTAINERS ├── amazon │ └── kc1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kc1.c │ │ └── kc1.h ├── amcc │ ├── acadia │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acadia.c │ │ ├── cmd_acadia.c │ │ ├── config.mk │ │ ├── memory.c │ │ └── pll.c │ ├── bamboo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── bamboo.c │ │ ├── bamboo.h │ │ ├── config.mk │ │ ├── flash.c │ │ └── init.S │ ├── bubinga │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bubinga.c │ │ └── flash.c │ ├── canyonlands │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── canyonlands.c │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── init.S │ │ └── u-boot-ram.lds │ ├── common │ │ └── flash.c │ ├── katmai │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── init.S │ │ └── katmai.c │ ├── kilauea │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ └── kilauea.c │ ├── luan │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── epld.h │ │ ├── flash.c │ │ ├── init.S │ │ └── luan.c │ ├── makalu │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_pll.c │ │ ├── init.S │ │ └── makalu.c │ ├── redwood │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── redwood.c │ │ └── redwood.h │ ├── sequoia │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── init.S │ │ ├── sdram.c │ │ ├── sequoia.c │ │ └── u-boot-ram.lds │ ├── walnut │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── walnut.c │ ├── yosemite │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ └── yosemite.c │ └── yucca │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_yucca.c │ │ ├── config.mk │ │ ├── flash.c │ │ ├── init.S │ │ ├── yucca.c │ │ └── yucca.h ├── amlogic │ └── odroid-c2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── odroid-c2.c ├── aristainetos │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── aristainetos-v1.c │ ├── aristainetos-v2.c │ ├── aristainetos.c │ ├── aristainetos.cfg │ ├── aristainetos2.cfg │ ├── axi.cfg │ ├── clocks.cfg │ ├── clocks2.cfg │ ├── ddr-setup.cfg │ ├── ddr-setup2.cfg │ ├── mt41j128M.cfg │ └── nt5cc256m16cp.cfg ├── armadeus │ └── apf27 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apf27.c │ │ ├── apf27.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ └── lowlevel_init.S ├── armltd │ ├── integrator │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── arm-ebi.h │ │ ├── integrator-sc.h │ │ ├── integrator.c │ │ ├── lowlevel_init.S │ │ ├── pci.c │ │ ├── pci_v3.h │ │ └── timer.c │ ├── vexpress │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── vexpress_common.c │ │ └── vexpress_tc2.c │ └── vexpress64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── pcie.c │ │ ├── pcie.h │ │ └── vexpress64.c ├── astro │ └── mcf5373l │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── astro.h │ │ ├── fpga.c │ │ └── mcf5373l.c ├── atmark-techno │ └── armadillo-800eva │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── armadillo-800eva.c ├── atmel │ ├── at91rm9200ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── at91rm9200ek.c │ │ └── led.c │ ├── at91sam9260ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── at91sam9260ek.c │ │ ├── led.c │ │ └── partition.c │ ├── at91sam9261ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── at91sam9261ek.c │ │ ├── led.c │ │ └── partition.c │ ├── at91sam9263ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── at91sam9263ek.c │ │ ├── led.c │ │ └── partition.c │ ├── at91sam9m10g45ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── at91sam9m10g45ek.c │ │ └── led.c │ ├── at91sam9n12ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9n12ek.c │ ├── at91sam9rlek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── at91sam9rlek.c │ │ ├── led.c │ │ └── partition.c │ ├── at91sam9x5ek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── at91sam9x5ek.c │ ├── atngw100 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── atngw100.c │ ├── atngw100mkii │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── atngw100mkii.c │ ├── atstk1000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── atstk1000.c │ ├── sama5d2_ptc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d2_ptc.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 ├── 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 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile ├── bachmann │ └── ot1200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mx6q_4x_mt41j128.cfg │ │ ├── ot1200.c │ │ └── ot1200_spl.c ├── barco │ ├── platinum │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── platinum.c │ │ ├── platinum.h │ │ ├── platinum_picon.c │ │ ├── platinum_titanium.c │ │ ├── spl_picon.c │ │ └── spl_titanium.c │ └── titanium │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── titanium.c ├── bct-brettl2 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bct-brettl2.c │ ├── cled.c │ ├── gpio_cfi_flash.c │ ├── smsc9303.c │ └── smsc9303.h ├── bf506f-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── bf506f-ezkit.c ├── bf518f-ezbrd │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── bf518f-ezbrd.c ├── bf525-ucr2 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── bf525-ucr2.c ├── bf526-ezbrd │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── bf526-ezbrd.c ├── bf527-ad7160-eval │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── bf527-ad7160-eval.c ├── bf527-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf527-ezkit.c │ └── video.c ├── bf527-sdp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf527-sdp.c │ └── config.mk ├── bf533-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf533-ezkit.c │ ├── config.mk │ ├── flash-defines.h │ ├── flash.c │ └── psd4256.h ├── bf533-stamp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf533-stamp.c │ ├── config.mk │ ├── ide-cf.c │ ├── video.c │ └── video.h ├── bf537-minotaur │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf537-minotaur.c │ └── config.mk ├── bf537-pnav │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── bf537-pnav.c ├── bf537-srv1 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf537-srv1.c │ └── config.mk ├── bf537-stamp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf537-stamp.c │ ├── config.mk │ ├── ide-cf.c │ └── post-memory.c ├── bf538f-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf538f-ezkit.c │ └── config.mk ├── bf548-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf548-ezkit.c │ ├── config.mk │ └── video.c ├── bf561-acvilon │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf561-acvilon.c │ └── config.mk ├── bf561-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf561-ezkit.c │ └── config.mk ├── bf609-ezkit │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bf609-ezkit.c │ ├── soft_switch.c │ └── soft_switch.h ├── birdland │ └── bav335x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ ├── mux.c │ │ └── u-boot.lds ├── blackstamp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── blackstamp.c ├── blackvme │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── blackvme.c ├── bluegiga │ └── apx4devkit │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apx4devkit.c │ │ └── spl_boot.c ├── bluewater │ ├── gurnard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gurnard.c │ │ └── splash_logo.h │ └── snapper9260 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── snapper9260.c ├── bosch │ └── 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 ├── br4 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── br4.c ├── broadcom │ ├── bcm11130 │ │ └── MAINTAINERS │ ├── bcm11130_nand │ │ └── MAINTAINERS │ ├── bcm23550_w1d │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── bcm23550_w1d.c │ ├── bcm28155_ap │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── bcm28155_ap.c │ ├── bcm28155_w1d │ │ └── MAINTAINERS │ ├── bcm911360_entphn-ns │ │ └── MAINTAINERS │ ├── bcm911360_entphn │ │ └── MAINTAINERS │ ├── bcm911360k │ │ └── MAINTAINERS │ ├── bcm958300k-ns │ │ └── MAINTAINERS │ ├── bcm958300k │ │ └── MAINTAINERS │ ├── bcm958305k │ │ └── MAINTAINERS │ ├── bcm958622hr │ │ └── MAINTAINERS │ ├── bcm_ep │ │ ├── Makefile │ │ └── board.c │ ├── bcmcygnus │ │ └── Kconfig │ └── bcmnsp │ │ └── Kconfig ├── 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 ├── canmb │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── canmb.c │ └── mt48lc16m32s2-75.h ├── cavium │ └── thunderx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── atf.c │ │ └── thunderx.c ├── ccv │ └── xpress │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── spl.c │ │ └── xpress.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 ├── cirrus │ └── edb93xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── edb93xx.c │ │ └── u-boot.lds ├── cloudengines │ └── pogo_e02 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── pogo_e02.c │ │ └── pogo_e02.h ├── cm-bf527 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm-bf527.c │ └── gpio_cfi_flash.c ├── cm-bf533 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm-bf533.c │ └── config.mk ├── cm-bf537e │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm-bf537e.c │ ├── config.mk │ ├── gpio_cfi_flash.c │ └── gpio_cfi_flash.h ├── cm-bf537u │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm-bf537u.c │ ├── config.mk │ └── gpio_cfi_flash.c ├── cm-bf548 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm-bf548.c │ ├── config.mk │ └── video.c ├── cm-bf561 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm-bf561.c │ └── config.mk ├── cm5200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm5200.c │ ├── cm5200.h │ ├── cmd_cm5200.c │ ├── fwupdate.c │ └── fwupdate.h ├── 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 │ ├── cm_fx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_fx6.c │ │ ├── common.c │ │ ├── common.h │ │ └── spl.c │ ├── cm_t335 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_t335.c │ │ ├── mux.c │ │ ├── spl.c │ │ └── u-boot.lds │ ├── cm_t35 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── cm_t35.c │ ├── cm_t3517 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_t3517.c │ │ └── mux.c │ ├── cm_t43 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.h │ │ ├── cm_t43.c │ │ ├── mux.c │ │ └── spl.c │ ├── cm_t54 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_t54.c │ │ ├── mux.c │ │ └── spl.c │ ├── common │ │ ├── Makefile │ │ ├── common.c │ │ ├── common.h │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ ├── omap3_display.c │ │ └── omap3_smc911x.c │ └── trimslice │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── trimslice.c ├── congatec │ ├── Kconfig │ ├── cgtqmx6eval │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── cgtqmx6eval.c │ └── conga-qeval20-qa3-e3845 │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── conga-qeval20-qa3.c │ │ ├── dsdt.asl │ │ └── start.S ├── coreboot │ ├── Kconfig │ └── coreboot │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── coreboot.c │ │ └── coreboot_start.S ├── corscience │ └── tricorder │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ ├── tricorder-eeprom.c │ │ ├── tricorder-eeprom.h │ │ ├── tricorder.c │ │ └── tricorder.h ├── creative │ └── xfi3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── spl_boot.c │ │ └── xfi3.c ├── d-link │ └── dns325 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dns325.c │ │ ├── dns325.h │ │ └── kwbimage.cfg ├── davedenx │ └── aria │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aria.c ├── davinci │ ├── da8xxevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.da850 │ │ ├── README.omapl138-lcdk │ │ ├── da850evm.c │ │ ├── omapl138_lcdk.c │ │ └── u-boot-spl-da850evm.lds │ └── ea20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ea20.c ├── dbau1x00 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── dbau1x00.c │ └── lowlevel_init.S ├── denx │ ├── m28evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── m28evk.c │ │ └── spl_boot.c │ ├── m53evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── m53evk.c │ ├── ma5d4evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ma5d4evk.c │ └── mcvevk │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ │ └── socfpga.c ├── dfi │ ├── Kconfig │ └── dfi-bt700 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── dfi-bt700.c │ │ ├── dsdt.asl │ │ └── start.S ├── dnp5370 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ └── dnp5370.c ├── ebv │ └── socrates │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ │ └── socfpga.c ├── efi │ ├── Kconfig │ └── efi-x86 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── efi.c ├── egnite │ └── ethernut5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ethernut5.c │ │ ├── ethernut5_pwrman.c │ │ └── ethernut5_pwrman.h ├── el │ └── el6x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── el6x.c ├── embest │ └── mx6boards │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6boards.c ├── emulation │ ├── Kconfig │ └── qemu-x86 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── start.S ├── esd │ ├── common │ │ ├── cmd_loadpci.c │ │ ├── esd405ep_nand.c │ │ ├── flash.c │ │ ├── fpga.c │ │ ├── lcd.c │ │ ├── lcd.h │ │ ├── misc.c │ │ ├── pci.c │ │ ├── s1d13505_640_480_16bpp.h │ │ ├── s1d13704_320_240_4bpp.h │ │ ├── s1d13705_320_240_8bpp.h │ │ ├── s1d13806_1024_768_8bpp.h │ │ ├── s1d13806_320_240_4bpp.h │ │ ├── s1d13806_640_480_16bpp.h │ │ └── xilinx_jtag │ │ │ ├── lenval.c │ │ │ ├── lenval.h │ │ │ ├── micro.c │ │ │ ├── micro.h │ │ │ ├── ports.c │ │ │ └── ports.h │ ├── cpci2dp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpci2dp.c │ │ └── flash.c │ ├── cpci405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpci405.c │ │ ├── flash.c │ │ └── fpgadata_cpci4052.c │ ├── mecp5123 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mecp5123.c │ ├── meesc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── meesc.c │ │ └── partition.c │ ├── plu405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ └── plu405.c │ ├── pmc405de │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ └── pmc405de.c │ ├── pmc440 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_pmc440.c │ │ ├── config.mk │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── init.S │ │ ├── pmc440.c │ │ ├── pmc440.h │ │ └── sdram.c │ ├── vme8349 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── caddy.c │ │ ├── caddy.h │ │ ├── pci.c │ │ ├── vme8349.c │ │ └── vme8349pin.h │ └── vom405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── vom405.c ├── espt │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── espt.c │ └── lowlevel_init.S ├── firefly │ └── firefly-rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── firefly-rk3288.c ├── freescale │ ├── b4860qds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── b4860qds.c │ │ ├── b4860qds.h │ │ ├── b4860qds_crossbar_con.h │ │ ├── b4860qds_qixis.h │ │ ├── b4_pbi.cfg │ │ ├── b4_rcw.cfg │ │ ├── ddr.c │ │ ├── eth_b4860qds.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── spl.c │ │ └── tlb.c │ ├── bsc9131rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── bsc9131rdb.c │ │ ├── ddr.c │ │ ├── law.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── bsc9132qds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── bsc9132qds.c │ │ ├── ddr.c │ │ ├── law.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── c29xpcie │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── c29xpcie.c │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── law.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── common │ │ ├── Makefile │ │ ├── arm_sleep.c │ │ ├── cadmus.c │ │ ├── cadmus.h │ │ ├── cds_pci_ft.c │ │ ├── cds_via.c │ │ ├── cmd_esbc_validate.c │ │ ├── dcu_sii9022a.c │ │ ├── dcu_sii9022a.h │ │ ├── diu_ch7301.c │ │ ├── diu_ch7301.h │ │ ├── eeprom.h │ │ ├── fman.c │ │ ├── fman.h │ │ ├── fsl_chain_of_trust.c │ │ ├── fsl_validate.c │ │ ├── ics307_clk.c │ │ ├── ics307_clk.h │ │ ├── idt8t49n222a_serdes_clk.c │ │ ├── idt8t49n222a_serdes_clk.h │ │ ├── ls102xa_stream_id.c │ │ ├── mpc85xx_sleep.c │ │ ├── ngpixis.c │ │ ├── ngpixis.h │ │ ├── ns_access.c │ │ ├── p_corenet │ │ │ ├── Makefile │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ └── tlb.c │ │ ├── pfuze.c │ │ ├── pfuze.h │ │ ├── pixis.c │ │ ├── pixis.h │ │ ├── pq-mds-pib.c │ │ ├── pq-mds-pib.h │ │ ├── qixis.c │ │ ├── qixis.h │ │ ├── sdhc_boot.c │ │ ├── sgmii_riser.c │ │ ├── sgmii_riser.h │ │ ├── sleep.h │ │ ├── spl.h │ │ ├── sys_eeprom.c │ │ ├── via.h │ │ ├── vid.c │ │ ├── vid.h │ │ ├── vsc3316_3308.c │ │ ├── vsc3316_3308.h │ │ ├── zm7300.c │ │ └── zm7300.h │ ├── corenet_ds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── corenet_ds.c │ │ ├── corenet_ds.h │ │ ├── ddr.c │ │ ├── eth_hydra.c │ │ ├── eth_p4080.c │ │ ├── eth_superhydra.c │ │ ├── p3041ds_ddr.c │ │ ├── p4080ds_ddr.c │ │ ├── p5020ds_ddr.c │ │ ├── p5040ds_ddr.c │ │ ├── pbi.cfg │ │ ├── rcw_p2041rdb.cfg │ │ ├── rcw_p3041ds.cfg │ │ ├── rcw_p4080ds.cfg │ │ ├── rcw_p5020ds.cfg │ │ └── rcw_p5040ds.cfg │ ├── ls1012afrdm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── ls1012afrdm.c │ ├── ls1012aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ls1012aqds.c │ │ └── ls1012aqds_qixis.h │ ├── ls1012ardb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── ls1012ardb.c │ ├── ls1021aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── dcu.c │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1021aqds.c │ │ ├── ls1021aqds_qixis.h │ │ ├── ls102xa_pbi.cfg │ │ ├── ls102xa_rcw_nand.cfg │ │ ├── ls102xa_rcw_sd_ifc.cfg │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ └── psci.S │ ├── ls1021atwr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── dcu.c │ │ ├── ls1021atwr.c │ │ ├── ls102xa_pbi.cfg │ │ ├── ls102xa_rcw_sd_ifc.cfg │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ └── psci.S │ ├── 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 │ ├── 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 │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1046ardb.c │ │ ├── ls1046ardb_pbi.cfg │ │ ├── ls1046ardb_rcw_emmc.cfg │ │ └── ls1046ardb_rcw_sd.cfg │ ├── ls2080a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ └── ls2080a.c │ ├── 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 │ ├── m5208evbe │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5208evbe.c │ ├── m52277evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── m52277evb.c │ ├── m5235evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5235evb.c │ ├── m5249evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m5249evb.c │ ├── m5253demo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── m5253demo.c │ ├── m5253evbe │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── m5253evbe.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 │ ├── m54418twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m54418twr.c │ ├── m54451evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m54451evb.c │ ├── m54455evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── m54455evb.c │ ├── m547xevb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── m547xevb.c │ ├── m548xevb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── m548xevb.c │ ├── mpc5121ads │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mpc5121ads.c │ ├── mpc8308rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mpc8308rdb.c │ │ └── sdram.c │ ├── mpc8313erdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc8313erdb.c │ │ └── sdram.c │ ├── mpc8315erdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc8315erdb.c │ │ └── sdram.c │ ├── mpc8323erdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mpc8323erdb.c │ ├── mpc832xemds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc832xemds.c │ │ └── pci.c │ ├── mpc8349emds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── mpc8349emds.c │ │ └── pci.c │ ├── mpc8349itx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc8349itx.c │ │ └── pci.c │ ├── mpc837xemds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc837xemds.c │ │ ├── pci.c │ │ └── pci.h │ ├── mpc837xerdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc837xerdb.c │ │ └── pci.c │ ├── mpc8536ds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8536ds.c │ │ └── tlb.c │ ├── mpc8540ads │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8540ads.c │ │ └── tlb.c │ ├── mpc8541cds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8541cds.c │ │ └── tlb.c │ ├── mpc8544ds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8544ds.c │ │ └── tlb.c │ ├── mpc8548cds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8548cds.c │ │ └── tlb.c │ ├── mpc8555cds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8555cds.c │ │ └── tlb.c │ ├── mpc8560ads │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8560ads.c │ │ └── tlb.c │ ├── mpc8568mds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bcsr.c │ │ ├── bcsr.h │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8568mds.c │ │ └── tlb.c │ ├── mpc8569mds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── bcsr.c │ │ ├── bcsr.h │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8569mds.c │ │ └── tlb.c │ ├── mpc8572ds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8572ds.c │ │ └── tlb.c │ ├── mpc8610hpcd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── mpc8610hpcd.c │ │ └── mpc8610hpcd_diu.c │ ├── mpc8641hpcn │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ └── mpc8641hpcn.c │ ├── mx23evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx23evk.c │ │ └── spl_boot.c │ ├── mx25pdk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx25pdk.c │ ├── mx28evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── iomux.c │ │ └── mx28evk.c │ ├── mx31ads │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── mx31ads.c │ │ └── u-boot.lds │ ├── mx31pdk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── mx31pdk.c │ ├── mx35pdk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── lowlevel_init.S │ │ ├── mx35pdk.c │ │ └── mx35pdk.h │ ├── mx51evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx51evk.c │ │ └── mx51evk_video.c │ ├── mx53ard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage_dd3.cfg │ │ └── mx53ard.c │ ├── mx53evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx53evk.c │ ├── mx53loco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx53loco.c │ │ └── mx53loco_video.c │ ├── mx53smd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx53smd.c │ ├── mx6qarm2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── imximage_mx6dl.cfg │ │ └── mx6qarm2.c │ ├── mx6qsabreauto │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── mx6dl.cfg │ │ ├── mx6qp.cfg │ │ └── mx6qsabreauto.c │ ├── mx6sabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx6dlsabresd.cfg │ │ ├── mx6q_4x_mt41j128.cfg │ │ └── mx6sabresd.c │ ├── mx6slevk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6slevk.c │ ├── mx6sxsabreauto │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6sxsabreauto.c │ ├── mx6sxsabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6sxsabresd.c │ ├── mx6ul_14x14_evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mx6ul_14x14_evk.c │ ├── mx6ullevk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6ullevk.c │ ├── mx7dsabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx7dsabresd.c │ ├── p1010rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.P1010RDB-PA │ │ ├── README.P1010RDB-PB │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1010rdb.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── p1022ds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── diu.c │ │ ├── law.c │ │ ├── p1022ds.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── p1023rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1023rdb.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 │ ├── p1_twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1_twr.c │ │ └── tlb.c │ ├── p2041rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── eth.c │ │ └── p2041rdb.c │ ├── qemu-ppce500 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── qemu-ppce500.c │ ├── s32v234evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── clock.c │ │ ├── lpddr2.c │ │ ├── s32v234evb.c │ │ └── s32v234evb.cfg │ ├── t102xqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── eth_t102xqds.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t1024_pbi.cfg │ │ ├── t1024_rcw.cfg │ │ ├── t102xqds.c │ │ ├── t102xqds.h │ │ ├── t102xqds_qixis.h │ │ └── tlb.c │ ├── t102xrdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── eth_t102xrdb.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t1023_rcw.cfg │ │ ├── t1024_pbi.cfg │ │ ├── t1024_rcw.cfg │ │ ├── t102xrdb.c │ │ ├── t102xrdb.h │ │ └── tlb.c │ ├── t1040qds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── diu.c │ │ ├── eth.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── t1040_pbi.cfg │ │ ├── t1040_rcw.cfg │ │ ├── t1040qds.c │ │ ├── t1040qds.h │ │ ├── t1040qds_qixis.h │ │ └── tlb.c │ ├── t104xrdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── diu.c │ │ ├── eth.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t1040_rcw.cfg │ │ ├── t1040d4_rcw.cfg │ │ ├── t1042_pi_rcw.cfg │ │ ├── t1042_rcw.cfg │ │ ├── t1042d4_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 │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t2080_rcw.cfg │ │ ├── t2081_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 │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t2080_pbi.cfg │ │ ├── t2080_rcw.cfg │ │ ├── t208xrdb.c │ │ ├── t208xrdb.h │ │ └── tlb.c │ ├── t4qds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t4240emu.c │ │ ├── t4240qds.c │ │ ├── t4240qds_qixis.h │ │ ├── t4_pbi.cfg │ │ ├── t4_rcw.cfg │ │ ├── t4qds.h │ │ └── tlb.c │ ├── t4rdb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── spl.c │ │ ├── t4240rdb.c │ │ ├── t4_pbi.cfg │ │ ├── t4_rcw.cfg │ │ ├── t4rdb.h │ │ └── tlb.c │ └── vf610twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── vf610twr.c ├── gaisler │ ├── gr_cpci_ax2000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── gr_cpci_ax2000.c │ ├── gr_ep2s60 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── gr_ep2s60.c │ ├── gr_xc3s_1500 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── gr_xc3s_1500.c │ ├── grsim │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── grsim.c │ └── grsim_leon2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── grsim_leon2.c ├── gateworks │ └── gw_ventana │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── common.c │ │ ├── common.h │ │ ├── eeprom.c │ │ ├── gsc.c │ │ ├── gsc.h │ │ ├── gw_ventana.c │ │ ├── gw_ventana_spl.c │ │ └── ventana_eeprom.h ├── gdsys │ ├── 405ep │ │ ├── 405ep.c │ │ ├── 405ep.h │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dlvision-10g.c │ │ ├── io.c │ │ ├── iocon.c │ │ └── neo.c │ ├── 405ex │ │ ├── 405ex.c │ │ ├── 405ex.h │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ └── io64.c │ ├── common │ │ ├── Makefile │ │ ├── adv7611.c │ │ ├── adv7611.h │ │ ├── ch7301.c │ │ ├── ch7301.h │ │ ├── cmd_ioloop.c │ │ ├── dp501.c │ │ ├── dp501.h │ │ ├── fanctrl.c │ │ ├── fanctrl.h │ │ ├── fpga.c │ │ ├── ihs_mdio.c │ │ ├── ihs_mdio.h │ │ ├── ioep-fpga.c │ │ ├── ioep-fpga.h │ │ ├── mclink.c │ │ ├── mclink.h │ │ ├── miiphybb.c │ │ ├── osd.c │ │ ├── osd.h │ │ ├── phy.c │ │ └── phy.h │ ├── dlvision │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── dlvision.c │ ├── gdppc440etx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── gdppc440etx.c │ │ └── init.S │ ├── intip │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── init.S │ │ └── intip.c │ ├── mpc8308 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── hrcon.c │ │ ├── mpc8308.c │ │ ├── mpc8308.h │ │ ├── sdram.c │ │ └── strider.c │ └── p1022 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── controlcenterd-id.c │ │ ├── controlcenterd-id.h │ │ ├── controlcenterd.c │ │ ├── ddr.c │ │ ├── diu.c │ │ ├── law.c │ │ ├── sdhc_boot.c │ │ └── tlb.c ├── ge │ └── bx50v3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bx50v3.c │ │ └── bx50v3.cfg ├── google │ ├── Kconfig │ ├── chromebook_jerry │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── jerry.c │ ├── chromebook_link │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── link.c │ ├── chromebook_samus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── samus.c │ ├── chromebox_panther │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── panther.c │ └── common │ │ ├── Makefile │ │ └── early_init.S ├── gumstix │ ├── duovero │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── duovero.c │ │ └── duovero_mux_data.h │ └── pepper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── h2200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── h2200-header.S │ └── h2200.c ├── highbank │ ├── MAINTAINERS │ ├── Makefile │ ├── ahci.c │ └── highbank.c ├── hisilicon │ └── hikey │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── build-tf.mak │ │ └── hikey.c ├── htkw │ └── mcx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mcx.c │ │ └── mcx.h ├── ibf-dsp561 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ └── ibf-dsp561.c ├── ids │ └── ids8313 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ids8313.c ├── ifm │ ├── ac14xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ac14xx.c │ └── o2dnt2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── o2dnt2.c ├── imgtec │ ├── boston │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── boston-lcd.h │ │ ├── boston-regs.h │ │ ├── checkboard.c │ │ ├── ddr.c │ │ └── lowlevel_init.S │ ├── malta │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash-malta-boot.tcl │ │ ├── lowlevel_init.S │ │ ├── malta.c │ │ ├── superio.c │ │ └── superio.h │ └── xilfpga │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── xilfpga.c ├── imx31_phycore │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── imx31_phycore.c │ └── lowlevel_init.S ├── in-circuit │ └── grasshopper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── grasshopper.c ├── inka4x0 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── inka4x0.c │ ├── inkadiag.c │ ├── k4h511638c.h │ ├── mt46v16m16-75.h │ ├── mt46v32m16-75.h │ └── mt48lc16m16a2-75.h ├── intel │ ├── Kconfig │ ├── bayleybay │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ │ └── mainboard.asl │ │ ├── bayleybay.c │ │ ├── dsdt.asl │ │ └── start.S │ ├── cougarcanyon2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cougarcanyon2.c │ │ └── start.S │ ├── crownbay │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── crownbay.c │ │ └── start.S │ ├── galileo │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ │ └── mainboard.asl │ │ ├── dsdt.asl │ │ ├── galileo.c │ │ └── start.S │ └── minnowmax │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── acpi │ │ └── mainboard.asl │ │ ├── dsdt.asl │ │ ├── minnowmax.c │ │ └── start.S ├── intercontrol │ └── digsy_mtc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_disp.c │ │ ├── cmd_mtc.c │ │ ├── cmd_mtc.h │ │ ├── digsy_mtc.c │ │ ├── eeprom.h │ │ ├── is42s16800a-7t.h │ │ └── is45s16800a2.h ├── inversepath │ └── usbarmory │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── usbarmory.c ├── iomega │ └── iconnect │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── iconnect.c │ │ ├── iconnect.h │ │ └── kwbimage.cfg ├── ip04 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ └── ip04.c ├── ipek01 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── ipek01.c ├── is1 │ ├── MAINTAINERS │ ├── Makefile │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ └── socfpga.c ├── isee │ ├── igep0033 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ └── igep00x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── igep00x0.c │ │ └── igep00x0.h ├── jupiter │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── jupiter.c ├── keymile │ ├── common │ │ ├── common.c │ │ ├── common.h │ │ └── ivm.c │ ├── km82xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── km82xx.c │ ├── km83xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.kmeter1 │ │ ├── km83xx.c │ │ └── km83xx_i2c.c │ ├── km_arm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── fpga_config.c │ │ ├── km_arm.c │ │ ├── kwbimage-memphis.cfg │ │ ├── kwbimage.cfg │ │ ├── kwbimage_128M16_1.cfg │ │ └── kwbimage_256M8_1.cfg │ ├── kmp204x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── eth.c │ │ ├── kmp204x.c │ │ ├── kmp204x.h │ │ ├── law.c │ │ ├── pbi.cfg │ │ ├── pci.c │ │ ├── qrio.c │ │ ├── rcw_kmp204x.cfg │ │ └── tlb.c │ └── 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 ├── kmc │ └── kzm9g │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── kzm9g.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 ├── liebherr │ └── lwmon5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── kbd.c │ │ ├── lwmon5.c │ │ └── sdram.c ├── logicpd │ ├── am3517evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am3517evm.c │ │ └── am3517evm.h │ ├── omap3som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── omap3logic.c │ │ └── omap3logic.h │ └── zoom1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── zoom1.c │ │ └── zoom1.h ├── maxbcm │ ├── MAINTAINERS │ ├── Makefile │ ├── kwbimage.cfg │ └── maxbcm.c ├── microchip │ └── pic32mzda │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── pic32mzda.c ├── micronas │ └── vct │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bcu.h │ │ ├── dcgu.c │ │ ├── dcgu.h │ │ ├── ebi.c │ │ ├── ebi.h │ │ ├── ebi_nor_flash.c │ │ ├── ebi_onenand.c │ │ ├── ebi_smc911x.c │ │ ├── ehci.c │ │ ├── gpio.c │ │ ├── scc.c │ │ ├── scc.h │ │ ├── smc_eeprom.c │ │ ├── top.c │ │ ├── vct.c │ │ ├── vct.h │ │ ├── vcth │ │ ├── reg_dcgu.h │ │ ├── reg_ebi.h │ │ ├── reg_fwsram.h │ │ ├── reg_gpio.h │ │ ├── reg_scc.h │ │ ├── reg_usbh.h │ │ └── reg_wdt.h │ │ ├── vcth2 │ │ └── reg_ebi.h │ │ └── vctv │ │ ├── reg_dcgu.h │ │ ├── reg_ebi.h │ │ ├── reg_gpio.h │ │ └── reg_wdt.h ├── mini-box │ └── picosam9g45 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ └── picosam9g45.c ├── mosaixtech │ └── icon │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── icon.c │ │ └── init.S ├── motionpro │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── motionpro.c ├── mpc8308_p1m │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── mpc8308_p1m.c │ └── sdram.c ├── mpl │ ├── common │ │ ├── common_util.c │ │ ├── common_util.h │ │ ├── isa.c │ │ ├── isa.h │ │ ├── kbd.c │ │ ├── kbd.h │ │ ├── pci.c │ │ ├── pci_parts.h │ │ ├── piix4_pci.h │ │ ├── usb_uhci.c │ │ └── usb_uhci.h │ ├── mip405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_mip405.c │ │ ├── init.S │ │ ├── mip405.c │ │ └── mip405.h │ ├── pati │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_pati.c │ │ ├── pati.c │ │ ├── pati.h │ │ ├── pci_eeprom.h │ │ └── plx9056.h │ ├── pip405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cmd_pip405.c │ │ ├── init.S │ │ ├── pip405.c │ │ ├── pip405.h │ │ └── u-boot.lds.debug │ └── vcma9 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_vcma9.c │ │ ├── lowlevel_init.S │ │ ├── vcma9.c │ │ └── vcma9.h ├── mpr2 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── mpr2.c ├── ms7720se │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── ms7720se.c ├── ms7722se │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── ms7722se.c ├── ms7750se │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── ms7750se.c ├── munices │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── mt48lc16m16a2-75.h │ └── munices.c ├── nokia │ └── rx51 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── rx51.c │ │ ├── rx51.h │ │ └── tag_omap.h ├── nvidia │ ├── beaver │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── cardhu │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cardhu.c │ │ └── pinmux-config-cardhu.h │ ├── dalmore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dalmore.c │ │ └── pinmux-config-dalmore.h │ ├── e2220-1170 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── e2220-1170.c │ │ └── pinmux-config-e2220-1170.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 │ │ ├── nyan-big.c │ │ └── pinmux-config-nyan-big.h │ ├── p2371-0000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── p2371-0000.c │ │ └── pinmux-config-p2371-0000.h │ ├── p2371-2180 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── p2371-2180.c │ │ └── pinmux-config-p2371-2180.h │ ├── p2571 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── max77620_init.h │ │ ├── p2571.c │ │ └── pinmux-config-p2571.h │ ├── p2771-0000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── p2771-0000.c │ ├── seaboard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── seaboard.c │ ├── venice2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── as3722_init.c │ │ ├── as3722_init.h │ │ ├── pinmux-config-venice2.h │ │ └── venice2.c │ ├── ventana │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ └── Makefile │ └── whistler │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── whistler.c ├── olimex │ └── mx23_olinuxino │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx23_olinuxino.c │ │ └── spl_boot.c ├── omicron │ └── calimain │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── calimain.c ├── openrisc │ └── openrisc-generic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── openrisc-generic.c │ │ └── or1ksim.cfg ├── overo │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── common.c │ ├── overo.c │ ├── overo.h │ └── spl.c ├── pandora │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── pandora.c │ └── pandora.h ├── pb1x00 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── flash.c │ ├── lowlevel_init.S │ └── pb1x00.c ├── pdm360ng │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── pdm360ng.c ├── phytec │ ├── pcm030 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mt46v32m16-75.h │ │ └── pcm030.c │ ├── pcm051 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── pcm052 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── pcm052.c │ └── pcm058 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── pcm058.c ├── ppcag │ └── bg0900 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bg0900.c │ │ └── spl_boot.c ├── pr1 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── pr1.c ├── qca │ ├── ap121 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ap121.c │ └── ap143 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ap143.c ├── qemu-mips │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── qemu-mips.c ├── qualcomm │ └── dragonboard410c │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dragonboard410c.c │ │ ├── head.S │ │ ├── readme.txt │ │ └── u-boot.lds ├── quipos │ └── cairo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cairo.c │ │ └── cairo.h ├── radxa │ └── rock2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rock2.c ├── raidsonic │ └── ib62x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ib62x0.c │ │ ├── ib62x0.h │ │ └── kwbimage.cfg ├── raspberrypi │ └── rpi │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rpi.c ├── renesas │ ├── MigoR │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── migo_r.c │ ├── alt │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── alt.c │ │ ├── qos.c │ │ └── qos.h │ ├── ap325rxa │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ap325rxa.c │ │ ├── cpld-ap325rxa.c │ │ └── lowlevel_init.S │ ├── blanche │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── blanche.c │ │ ├── qos.c │ │ └── qos.h │ ├── ecovec │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ecovec.c │ │ └── lowlevel_init.S │ ├── gose │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gose.c │ │ ├── qos.c │ │ └── qos.h │ ├── koelsch │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── koelsch.c │ │ ├── qos.c │ │ └── qos.h │ ├── lager │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lager.c │ │ ├── qos.c │ │ └── qos.h │ ├── porter │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── porter.c │ │ ├── qos.c │ │ └── qos.h │ ├── r0p7734 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── r0p7734.c │ ├── r2dplus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── r2dplus.c │ ├── r7780mp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── r7780mp.c │ │ └── r7780mp.h │ ├── rcar-common │ │ └── common.c │ ├── rsk7203 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── rsk7203.c │ ├── rsk7264 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── rsk7264.c │ ├── rsk7269 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── rsk7269.c │ ├── salvator-x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── salvator-x.c │ ├── sh7752evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── sh7752evb.c │ │ ├── spi-boot.c │ │ └── u-boot.lds │ ├── sh7753evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── sh7753evb.c │ │ ├── spi-boot.c │ │ └── u-boot.lds │ ├── sh7757lcr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.sh7757lcr │ │ ├── lowlevel_init.S │ │ ├── sh7757lcr.c │ │ ├── spi-boot.c │ │ └── u-boot.lds │ ├── sh7763rdp │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── sh7763rdp.c │ ├── sh7785lcr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.sh7785lcr │ │ ├── lowlevel_init.S │ │ ├── rtl8169.h │ │ ├── rtl8169_mac.c │ │ ├── selfcheck.c │ │ └── sh7785lcr.c │ ├── silk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qos.c │ │ ├── qos.h │ │ └── silk.c │ └── stout │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpld.c │ │ ├── cpld.h │ │ ├── qos.c │ │ ├── qos.h │ │ └── stout.c ├── rockchip │ ├── evb_rk3036 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── evb_rk3036.c │ ├── evb_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── evb-rk3288.c │ ├── evb_rk3399 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── evb-rk3399.c │ ├── fennec_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── fennec-rk3288.c │ ├── kylin_rk3036 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── kylin_rk3036.c │ └── miniarm_rk3288 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── miniarm-rk3288.c ├── ronetix │ ├── pm9261 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ ├── partition.c │ │ └── pm9261.c │ ├── pm9263 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ ├── partition.c │ │ └── pm9263.c │ └── pm9g45 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pm9g45.c ├── samsung │ ├── arndale │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── arndale.c │ │ └── arndale_spl.c │ ├── common │ │ ├── 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 │ │ └── multi_i2c.c │ ├── espresso7420 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── espresso7420.c │ ├── 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 │ ├── smdk2410 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── smdk2410.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 │ ├── trats │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── setup.h │ │ └── trats.c │ ├── trats2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── trats2.c │ └── universal_c210 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── onenand.c │ │ └── universal.c ├── samtec │ └── vining_fpga │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ │ └── socfpga.c ├── sandbox │ ├── MAINTAINERS │ ├── Makefile │ ├── README.sandbox │ └── sandbox.c ├── sandisk │ └── sansa_fuze_plus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sfp.c │ │ └── spl_boot.c ├── sbc8349 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── pci.c │ └── sbc8349.c ├── sbc8548 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── ddr.c │ ├── law.c │ ├── sbc8548.c │ └── tlb.c ├── sbc8641d │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── ddr.c │ ├── law.c │ └── sbc8641d.c ├── schulercontrol │ └── sc_sps_1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sc_sps_1.c │ │ └── spl_boot.c ├── seco │ ├── Kconfig │ ├── common │ │ ├── Makefile │ │ ├── mx6.c │ │ └── mx6.h │ └── mx6quq7 │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx6quq7-2g.cfg │ │ └── mx6quq7.c ├── shmin │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── shmin.c ├── siemens │ ├── common │ │ ├── board.c │ │ ├── factoryset.c │ │ └── factoryset.h │ ├── corvus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── board.c │ ├── draco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── 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 ├── silica │ └── pengwyn │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── socrates │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── ddr.c │ ├── law.c │ ├── nand.c │ ├── sdram.c │ ├── socrates.c │ ├── tlb.c │ └── upm_table.h ├── solidrun │ ├── clearfog │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── clearfog.c │ │ └── kwbimage.cfg │ └── mx6cuboxi │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mx6cuboxi.c ├── spear │ ├── common │ │ ├── Makefile │ │ ├── spr_lowlevel_init.S │ │ └── spr_misc.c │ ├── spear300 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── spear300.c │ ├── spear310 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── spear310.c │ ├── spear320 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── spear320.c │ ├── spear600 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── spear600.c │ └── x600 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── fpga.c │ │ ├── fpga.h │ │ └── x600.c ├── sr1500 │ ├── MAINTAINERS │ ├── Makefile │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ └── socfpga.c ├── st │ ├── stm32f429-discovery │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ └── stm32f429-discovery.c │ ├── stm32f746-disco │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stm32f746-disco.c │ └── stv0991 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── stv0991.c ├── sunxi │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README.pine64 │ ├── ahci.c │ ├── board.c │ ├── dram_sun4i_auto.c │ ├── dram_sun5i_auto.c │ ├── dram_timings_sun4i.h │ └── gmac.c ├── synopsys │ ├── Kconfig │ ├── MAINTAINERS │ └── axs10x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── axs10x.c │ │ ├── axs10x.h │ │ └── nand.c ├── sysam │ └── amcore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── amcore.c ├── syteco │ └── zmx25 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── zmx25.c ├── t3corp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── chip_config.c │ ├── config.mk │ ├── init.S │ └── t3corp.c ├── tbs │ └── tbs2910 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── tbs2910.c ├── tcl │ └── sl50 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── tcm-bf518 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── tcm-bf518.c ├── tcm-bf537 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ ├── gpio_cfi_flash.c │ └── tcm-bf537.c ├── technexion │ ├── pico-imx6ul │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── imximage.cfg │ │ └── pico-imx6ul.c │ ├── tao3530 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── tao3530.c │ │ └── tao3530.h │ └── twister │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── twister.c │ │ └── twister.h ├── technologic │ └── ts4800 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ts4800.c │ │ └── ts4800.h ├── teejet │ └── mt_ventoux │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mt_ventoux.c │ │ └── mt_ventoux.h ├── terasic │ ├── de0-nano-soc │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ │ ├── iocsr_config.h │ │ │ ├── pinmux_config.h │ │ │ ├── pll_config.h │ │ │ └── sdram_config.h │ │ └── socfpga.c │ └── sockit │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── qts │ │ ├── iocsr_config.h │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── sdram_config.h │ │ └── socfpga.c ├── theadorable │ ├── MAINTAINERS │ ├── Makefile │ ├── fpga.c │ ├── kwbimage.cfg │ ├── theadorable.c │ └── theadorable.h ├── ti │ ├── am335x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ ├── mux.c │ │ └── u-boot.lds │ ├── am3517crane │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am3517crane.c │ │ └── am3517crane.h │ ├── am43xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ ├── am57xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux_data.h │ ├── beagle │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── beagle.c │ │ ├── beagle.h │ │ └── led.c │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board_detect.c │ │ └── board_detect.h │ ├── dra7xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── evm.c │ │ └── mux_data.h │ ├── evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── evm.c │ │ └── evm.h │ ├── ks2_evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── 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 │ │ └── mux-k2g.h │ ├── omap5_uevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── evm.c │ │ └── mux_data.h │ ├── panda │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── panda.c │ │ └── panda_mux_data.h │ ├── sdp4430 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_bat.c │ │ ├── sdp.c │ │ └── sdp4430_mux_data.h │ ├── ti814x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── evm.c │ │ ├── evm.h │ │ └── mux.c │ └── ti816x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── evm.c ├── timll │ ├── devkit3250 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── devkit3250.c │ │ └── devkit3250_spl.c │ └── devkit8000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── devkit8000.c │ │ └── devkit8000.h ├── toradex │ ├── apalis_t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apalis_t30.c │ │ └── pinmux-config-apalis_t30.h │ ├── colibri_imx7 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_imx7.c │ │ └── imximage.cfg │ ├── colibri_pxa270 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── colibri_pxa270.c │ ├── colibri_t20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── colibri_t20.c │ ├── colibri_t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_t30.c │ │ └── pinmux-config-colibri_t30.h │ └── colibri_vf │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_vf.c │ │ └── imximage.cfg ├── tplink │ └── wdr4300 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── wdr4300.c ├── tqc │ ├── tqm5200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cam5200_flash.c │ │ ├── cmd_stk52xx.c │ │ ├── mt48lc16m16a2-75.h │ │ └── tqm5200.c │ ├── tqm834x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── pci.c │ │ └── tqm834x.c │ ├── tqm8xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── load_sernum_ethaddr.c │ │ ├── tqm8xx.c │ │ └── u-boot.lds │ └── tqma6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── clocks.cfg │ │ ├── tqma6.c │ │ ├── tqma6_bb.h │ │ ├── tqma6_mba6.c │ │ ├── tqma6_wru4.c │ │ ├── tqma6q.cfg │ │ └── tqma6s.cfg ├── udoo │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── udoo.c │ └── udoo_spl.c ├── v38b │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── ethaddr.c │ └── v38b.c ├── varisys │ ├── common │ │ ├── Makefile │ │ ├── eeprom.h │ │ └── sys_eeprom.c │ └── cyrus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cyrus.c │ │ ├── cyrus.h │ │ ├── ddr.c │ │ ├── eth.c │ │ ├── law.c │ │ ├── pbi.cfg │ │ ├── pci.c │ │ ├── rcw_p5020_v2.cfg │ │ ├── rcw_p5040.cfg │ │ └── tlb.c ├── ve8313 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── ve8313.c ├── vscom │ └── baltos │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── board.c │ │ ├── board.h │ │ ├── mux.c │ │ └── u-boot.lds ├── wandboard │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── spl.c │ └── wandboard.c ├── warp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── imximage.cfg │ └── warp.c ├── warp7 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── imximage.cfg │ └── warp7.c ├── woodburn │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── imximage.cfg │ ├── lowlevel_init.S │ └── woodburn.c ├── work-microwave │ └── work_92105 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── work_92105.c │ │ ├── work_92105_display.c │ │ ├── work_92105_display.h │ │ └── work_92105_spl.c ├── xes │ ├── common │ │ ├── Makefile │ │ ├── actl_nand.c │ │ ├── board.c │ │ ├── fsl_8xxx_clk.c │ │ ├── fsl_8xxx_misc.c │ │ ├── fsl_8xxx_misc.h │ │ └── fsl_8xxx_pci.c │ ├── xpedite1000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── init.S │ │ ├── u-boot.lds.debug │ │ └── xpedite1000.c │ ├── xpedite517x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ └── xpedite517x.c │ ├── xpedite520x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── tlb.c │ │ └── xpedite520x.c │ ├── xpedite537x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── tlb.c │ │ └── xpedite537x.c │ └── xpedite550x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── tlb.c │ │ └── xpedite550x.c ├── xilinx │ ├── microblaze-generic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── microblaze-generic.c │ │ └── xparameters.h │ ├── ppc405-generic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── xilinx_ppc405_generic.c │ │ └── xparameters.h │ ├── ppc440-generic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── init.S │ │ ├── xilinx_ppc440_generic.c │ │ └── xparameters.h │ ├── zynq │ │ ├── .gitignore │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── xil_io.h │ │ ├── zynq-microzed │ │ │ ├── ps7_init_gpl.c │ │ │ └── ps7_init_gpl.h │ │ ├── zynq-zc702 │ │ │ ├── ps7_init_gpl.c │ │ │ └── ps7_init_gpl.h │ │ ├── zynq-zc706 │ │ │ ├── ps7_init_gpl.c │ │ │ └── ps7_init_gpl.h │ │ ├── zynq-zed │ │ │ ├── ps7_init_gpl.c │ │ │ └── ps7_init_gpl.h │ │ └── zynq-zybo │ │ │ ├── ps7_init_gpl.c │ │ │ └── ps7_init_gpl.h │ └── zynqmp │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── xil_io.h │ │ └── zynqmp.c ├── zipitz2 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── zipitz2.c └── zyxel │ └── nsa310s │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── kwbimage.cfg │ ├── nsa310s.c │ └── nsa310s.h ├── cmd ├── Kconfig ├── Makefile ├── aes.c ├── ambapp.c ├── armflash.c ├── bdinfo.c ├── bedbug.c ├── blkcache.c ├── blob.c ├── bmp.c ├── boot.c ├── bootefi.c ├── booti.c ├── bootldr.c ├── bootm.c ├── bootmenu.c ├── bootstage.c ├── bootz.c ├── cache.c ├── cbfs.c ├── clk.c ├── console.c ├── cplbinfo.c ├── cpu.c ├── cramfs.c ├── dataflash_mmc_mux.c ├── date.c ├── dcr.c ├── demo.c ├── dfu.c ├── diag.c ├── disk.c ├── display.c ├── dtt.c ├── echo.c ├── eeprom.c ├── efi.c ├── elf.c ├── ethsw.c ├── exit.c ├── ext2.c ├── ext4.c ├── fastboot.c ├── fastboot │ └── Kconfig ├── fat.c ├── fdc.c ├── fdt.c ├── fitupd.c ├── flash.c ├── fpga.c ├── fpgad.c ├── fs.c ├── fs_uuid.c ├── fuse.c ├── gettime.c ├── gpio.c ├── gpt.c ├── hash.c ├── help.c ├── host.c ├── i2c.c ├── ide.c ├── immap.c ├── ini.c ├── io.c ├── iotrace.c ├── irq.c ├── itest.c ├── jffs2.c ├── ldrinfo.c ├── led.c ├── license.c ├── load.c ├── log.c ├── lzmadec.c ├── mac.c ├── md5sum.c ├── mdio.c ├── mem.c ├── mfsl.c ├── mii.c ├── misc.c ├── mmc.c ├── mmc_spi.c ├── mp.c ├── mtdparts.c ├── nand.c ├── net.c ├── nvedit.c ├── onenand.c ├── otp.c ├── part.c ├── pci.c ├── pcmcia.c ├── pmic.c ├── portio.c ├── pxe.c ├── qfw.c ├── read.c ├── reginfo.c ├── regulator.c ├── reiser.c ├── remoteproc.c ├── sata.c ├── scsi.c ├── setexpr.c ├── sf.c ├── sha1sum.c ├── softswitch.c ├── sound.c ├── source.c ├── spi.c ├── spibootldr.c ├── spl.c ├── strings.c ├── terminal.c ├── test.c ├── thordown.c ├── time.c ├── tpm.c ├── tpm_test.c ├── trace.c ├── tsi148.c ├── ubi.c ├── ubifs.c ├── universe.c ├── unzip.c ├── usb.c ├── usb_mass_storage.c ├── version.c ├── ximg.c ├── yaffs2.c ├── zfs.c └── zip.c ├── common ├── Kconfig ├── Makefile ├── autoboot.c ├── bedbug.c ├── board_f.c ├── board_info.c ├── board_r.c ├── bootm.c ├── bootm_os.c ├── bootretry.c ├── bootstage.c ├── bouncebuf.c ├── cli.c ├── cli_hush.c ├── cli_readline.c ├── cli_simple.c ├── command.c ├── console.c ├── cros_ec.c ├── ddr_spd.c ├── dfu.c ├── dlmalloc.c ├── dlmalloc.src ├── edid.c ├── eeprom │ ├── eeprom_field.c │ └── eeprom_layout.c ├── env_attr.c ├── env_callback.c ├── env_common.c ├── env_dataflash.c ├── env_eeprom.c ├── env_embedded.c ├── env_ext4.c ├── env_fat.c ├── env_flags.c ├── env_flash.c ├── env_mmc.c ├── env_nand.c ├── env_nowhere.c ├── env_nvram.c ├── env_onenand.c ├── env_remote.c ├── env_sata.c ├── env_sf.c ├── env_ubi.c ├── exports.c ├── fb_mmc.c ├── fb_nand.c ├── fdt_support.c ├── flash.c ├── hash.c ├── hwconfig.c ├── ide.c ├── image-android.c ├── image-fdt.c ├── image-fit.c ├── image-sig.c ├── image-sparse.c ├── image.c ├── init │ ├── Makefile │ └── board_init.c ├── iomux.c ├── iotrace.c ├── kallsyms.c ├── kgdb.c ├── kgdb_stubs.c ├── lcd.c ├── lcd_console.c ├── lcd_console_rotation.c ├── lcd_simplefb.c ├── lynxkdi.c ├── main.c ├── malloc_simple.c ├── memsize.c ├── menu.c ├── miiphyutil.c ├── s_record.c ├── sata.c ├── scsi.c ├── spl │ ├── Kconfig │ ├── Makefile │ ├── spl.c │ ├── spl_dfu.c │ ├── spl_ext.c │ ├── spl_fat.c │ ├── spl_fit.c │ ├── spl_mmc.c │ ├── spl_nand.c │ ├── spl_net.c │ ├── spl_nor.c │ ├── spl_onenand.c │ ├── spl_sata.c │ ├── spl_spi.c │ ├── spl_ubi.c │ ├── spl_usb.c │ └── spl_ymodem.c ├── splash.c ├── splash_source.c ├── stdio.c ├── system_map.c ├── update.c ├── usb.c ├── usb_hub.c ├── usb_kbd.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_defconfig ├── A20-OLinuXino-Lime_defconfig ├── A20-OLinuXino_MICRO_defconfig ├── A20-Olimex-SOM-EVB_defconfig ├── A33-OLinuXino_defconfig ├── Ainol_AW1_defconfig ├── Ampe_A76_defconfig ├── Auxtek-T003_defconfig ├── Auxtek-T004_defconfig ├── B4420QDS_NAND_defconfig ├── B4420QDS_SPIFLASH_defconfig ├── B4420QDS_defconfig ├── B4860QDS_NAND_defconfig ├── B4860QDS_SECURE_BOOT_defconfig ├── B4860QDS_SPIFLASH_defconfig ├── B4860QDS_SRIO_PCIE_BOOT_defconfig ├── B4860QDS_defconfig ├── BSC9131RDB_NAND_SYSCLK100_defconfig ├── BSC9131RDB_NAND_defconfig ├── BSC9131RDB_SPIFLASH_SYSCLK100_defconfig ├── BSC9131RDB_SPIFLASH_defconfig ├── BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig ├── BSC9132QDS_NAND_DDRCLK100_defconfig ├── BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig ├── BSC9132QDS_NAND_DDRCLK133_defconfig ├── BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig ├── BSC9132QDS_NOR_DDRCLK100_defconfig ├── BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig ├── BSC9132QDS_NOR_DDRCLK133_defconfig ├── BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig ├── BSC9132QDS_SDCARD_DDRCLK100_defconfig ├── BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig ├── BSC9132QDS_SDCARD_DDRCLK133_defconfig ├── BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig ├── BSC9132QDS_SPIFLASH_DDRCLK100_defconfig ├── BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig ├── BSC9132QDS_SPIFLASH_DDRCLK133_defconfig ├── Bananapi_defconfig ├── Bananapro_defconfig ├── C29XPCIE_NAND_defconfig ├── C29XPCIE_NOR_SECBOOT_defconfig ├── C29XPCIE_SPIFLASH_SECBOOT_defconfig ├── C29XPCIE_SPIFLASH_defconfig ├── C29XPCIE_defconfig ├── CHIP_defconfig ├── CPCI2DP_defconfig ├── CPCI4052_defconfig ├── CSQ_CS908_defconfig ├── Chuwi_V7_CW0825_defconfig ├── Colombus_defconfig ├── Cubieboard2_defconfig ├── Cubieboard_defconfig ├── Cubietruck_defconfig ├── Cubietruck_plus_defconfig ├── Cyrus_P5020_defconfig ├── Cyrus_P5040_defconfig ├── Empire_electronix_d709_defconfig ├── Empire_electronix_m712_defconfig ├── Hummingbird_A31_defconfig ├── Hyundai_A7HD_defconfig ├── Itead_Ibox_A20_defconfig ├── Lamobo_R1_defconfig ├── Linksprite_pcDuino3_Nano_defconfig ├── Linksprite_pcDuino3_defconfig ├── Linksprite_pcDuino_defconfig ├── M5208EVBE_defconfig ├── M52277EVB_defconfig ├── M52277EVB_stmicro_defconfig ├── M5235EVB_Flash32_defconfig ├── M5235EVB_defconfig ├── M5249EVB_defconfig ├── M5253DEMO_defconfig ├── M5253EVBE_defconfig ├── M5272C3_defconfig ├── M5275EVB_defconfig ├── M5282EVB_defconfig ├── M53017EVB_defconfig ├── M5329AFEE_defconfig ├── M5329BFEE_defconfig ├── M5373EVB_defconfig ├── M54418TWR_defconfig ├── M54418TWR_nand_mii_defconfig ├── M54418TWR_nand_rmii_defconfig ├── M54418TWR_nand_rmii_lowfreq_defconfig ├── M54418TWR_serial_mii_defconfig ├── M54418TWR_serial_rmii_defconfig ├── M54451EVB_defconfig ├── M54451EVB_stmicro_defconfig ├── M54455EVB_a66_defconfig ├── M54455EVB_defconfig ├── M54455EVB_i66_defconfig ├── M54455EVB_intel_defconfig ├── M54455EVB_stm33_defconfig ├── M5475AFE_defconfig ├── M5475BFE_defconfig ├── M5475CFE_defconfig ├── M5475DFE_defconfig ├── M5475EFE_defconfig ├── M5475FFE_defconfig ├── M5475GFE_defconfig ├── M5485AFE_defconfig ├── M5485BFE_defconfig ├── M5485CFE_defconfig ├── M5485DFE_defconfig ├── M5485EFE_defconfig ├── M5485FFE_defconfig ├── M5485GFE_defconfig ├── M5485HFE_defconfig ├── MIP405T_defconfig ├── MIP405_defconfig ├── MK808C_defconfig ├── MPC8308RDB_defconfig ├── MPC8313ERDB_33_defconfig ├── MPC8313ERDB_66_defconfig ├── MPC8313ERDB_NAND_33_defconfig ├── MPC8313ERDB_NAND_66_defconfig ├── MPC8315ERDB_defconfig ├── MPC8323ERDB_defconfig ├── MPC832XEMDS_ATM_defconfig ├── MPC832XEMDS_HOST_33_defconfig ├── MPC832XEMDS_HOST_66_defconfig ├── MPC832XEMDS_SLAVE_defconfig ├── MPC832XEMDS_defconfig ├── MPC8349EMDS_defconfig ├── MPC8349ITXGP_defconfig ├── MPC8349ITX_LOWBOOT_defconfig ├── MPC8349ITX_defconfig ├── MPC837XEMDS_HOST_defconfig ├── MPC837XEMDS_defconfig ├── MPC837XERDB_defconfig ├── MPC8536DS_36BIT_defconfig ├── MPC8536DS_SDCARD_defconfig ├── MPC8536DS_SPIFLASH_defconfig ├── MPC8536DS_defconfig ├── MPC8540ADS_defconfig ├── MPC8541CDS_defconfig ├── MPC8541CDS_legacy_defconfig ├── MPC8544DS_defconfig ├── MPC8548CDS_36BIT_defconfig ├── MPC8548CDS_defconfig ├── MPC8548CDS_legacy_defconfig ├── MPC8555CDS_defconfig ├── MPC8555CDS_legacy_defconfig ├── MPC8560ADS_defconfig ├── MPC8568MDS_defconfig ├── MPC8569MDS_ATM_defconfig ├── MPC8569MDS_defconfig ├── MPC8572DS_36BIT_defconfig ├── MPC8572DS_defconfig ├── MPC8610HPCD_defconfig ├── MPC8641HPCN_36BIT_defconfig ├── MPC8641HPCN_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 ├── MigoR_defconfig ├── Mini-X_defconfig ├── MiniFAP_defconfig ├── O2D300_defconfig ├── O2DNT2_RAMBOOT_defconfig ├── O2DNT2_defconfig ├── O2D_defconfig ├── O2I_defconfig ├── O2MNT_O2M110_defconfig ├── O2MNT_O2M112_defconfig ├── O2MNT_O2M113_defconfig ├── O2MNT_defconfig ├── O3DNT_defconfig ├── Orangepi_defconfig ├── Orangepi_mini_defconfig ├── P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig ├── P1010RDB-PA_36BIT_NAND_defconfig ├── P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig ├── P1010RDB-PA_36BIT_NOR_defconfig ├── P1010RDB-PA_36BIT_SDCARD_defconfig ├── P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig ├── P1010RDB-PA_36BIT_SPIFLASH_defconfig ├── P1010RDB-PA_NAND_SECBOOT_defconfig ├── P1010RDB-PA_NAND_defconfig ├── P1010RDB-PA_NOR_SECBOOT_defconfig ├── P1010RDB-PA_NOR_defconfig ├── P1010RDB-PA_SDCARD_defconfig ├── P1010RDB-PA_SPIFLASH_SECBOOT_defconfig ├── P1010RDB-PA_SPIFLASH_defconfig ├── P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig ├── P1010RDB-PB_36BIT_NAND_defconfig ├── P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig ├── P1010RDB-PB_36BIT_NOR_defconfig ├── P1010RDB-PB_36BIT_SDCARD_defconfig ├── P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig ├── P1010RDB-PB_36BIT_SPIFLASH_defconfig ├── P1010RDB-PB_NAND_SECBOOT_defconfig ├── P1010RDB-PB_NAND_defconfig ├── P1010RDB-PB_NOR_SECBOOT_defconfig ├── P1010RDB-PB_NOR_defconfig ├── P1010RDB-PB_SDCARD_defconfig ├── P1010RDB-PB_SPIFLASH_SECBOOT_defconfig ├── P1010RDB-PB_SPIFLASH_defconfig ├── P1020MBG-PC_36BIT_SDCARD_defconfig ├── P1020MBG-PC_36BIT_defconfig ├── P1020MBG-PC_SDCARD_defconfig ├── P1020MBG-PC_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 ├── P1020UTM-PC_36BIT_SDCARD_defconfig ├── P1020UTM-PC_36BIT_defconfig ├── P1020UTM-PC_SDCARD_defconfig ├── P1020UTM-PC_defconfig ├── P1021RDB-PC_36BIT_NAND_defconfig ├── P1021RDB-PC_36BIT_SDCARD_defconfig ├── P1021RDB-PC_36BIT_SPIFLASH_defconfig ├── P1021RDB-PC_36BIT_defconfig ├── P1021RDB-PC_NAND_defconfig ├── P1021RDB-PC_SDCARD_defconfig ├── P1021RDB-PC_SPIFLASH_defconfig ├── P1021RDB-PC_defconfig ├── P1022DS_36BIT_NAND_defconfig ├── P1022DS_36BIT_SDCARD_defconfig ├── P1022DS_36BIT_SPIFLASH_defconfig ├── P1022DS_36BIT_defconfig ├── P1022DS_NAND_defconfig ├── P1022DS_SDCARD_defconfig ├── P1022DS_SPIFLASH_defconfig ├── P1022DS_defconfig ├── P1023RDB_defconfig ├── P1024RDB_36BIT_defconfig ├── P1024RDB_NAND_defconfig ├── P1024RDB_SDCARD_defconfig ├── P1024RDB_SPIFLASH_defconfig ├── P1024RDB_defconfig ├── P1025RDB_36BIT_defconfig ├── P1025RDB_NAND_defconfig ├── P1025RDB_SDCARD_defconfig ├── P1025RDB_SPIFLASH_defconfig ├── P1025RDB_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_SECURE_BOOT_defconfig ├── P2041RDB_SPIFLASH_defconfig ├── P2041RDB_SRIO_PCIE_BOOT_defconfig ├── P2041RDB_defconfig ├── P3041DS_NAND_SECURE_BOOT_defconfig ├── P3041DS_NAND_defconfig ├── P3041DS_SDCARD_defconfig ├── P3041DS_SECURE_BOOT_defconfig ├── P3041DS_SPIFLASH_defconfig ├── P3041DS_SRIO_PCIE_BOOT_defconfig ├── P3041DS_defconfig ├── P4080DS_SDCARD_defconfig ├── P4080DS_SECURE_BOOT_defconfig ├── P4080DS_SPIFLASH_defconfig ├── P4080DS_SRIO_PCIE_BOOT_defconfig ├── P4080DS_defconfig ├── P5020DS_NAND_SECURE_BOOT_defconfig ├── P5020DS_NAND_defconfig ├── P5020DS_SDCARD_defconfig ├── P5020DS_SECURE_BOOT_defconfig ├── P5020DS_SPIFLASH_defconfig ├── P5020DS_SRIO_PCIE_BOOT_defconfig ├── P5020DS_defconfig ├── P5040DS_NAND_SECURE_BOOT_defconfig ├── P5040DS_NAND_defconfig ├── P5040DS_SDCARD_defconfig ├── P5040DS_SECURE_BOOT_defconfig ├── P5040DS_SPIFLASH_defconfig ├── P5040DS_defconfig ├── PATI_defconfig ├── PIP405_defconfig ├── PLU405_defconfig ├── PMC405DE_defconfig ├── PMC440_defconfig ├── Sinlinx_SinA31s_defconfig ├── Sinlinx_SinA33_defconfig ├── Sinovoip_BPI_M2_defconfig ├── Sinovoip_BPI_M3_defconfig ├── T1023RDB_NAND_defconfig ├── T1023RDB_SDCARD_defconfig ├── T1023RDB_SECURE_BOOT_defconfig ├── T1023RDB_SPIFLASH_defconfig ├── T1023RDB_defconfig ├── T1024QDS_DDR4_SECURE_BOOT_defconfig ├── T1024QDS_DDR4_defconfig ├── T1024QDS_NAND_defconfig ├── T1024QDS_SDCARD_defconfig ├── T1024QDS_SECURE_BOOT_defconfig ├── T1024QDS_SPIFLASH_defconfig ├── T1024QDS_defconfig ├── T1024RDB_NAND_defconfig ├── T1024RDB_SDCARD_defconfig ├── T1024RDB_SECURE_BOOT_defconfig ├── T1024RDB_SPIFLASH_defconfig ├── T1024RDB_defconfig ├── T1040D4RDB_NAND_defconfig ├── T1040D4RDB_SDCARD_defconfig ├── T1040D4RDB_SECURE_BOOT_defconfig ├── T1040D4RDB_SPIFLASH_defconfig ├── T1040D4RDB_defconfig ├── T1040QDS_DDR4_defconfig ├── T1040QDS_SECURE_BOOT_defconfig ├── T1040QDS_defconfig ├── T1040RDB_NAND_defconfig ├── T1040RDB_SDCARD_defconfig ├── T1040RDB_SECURE_BOOT_defconfig ├── T1040RDB_SPIFLASH_defconfig ├── T1040RDB_defconfig ├── T1042D4RDB_NAND_defconfig ├── T1042D4RDB_SDCARD_defconfig ├── T1042D4RDB_SECURE_BOOT_defconfig ├── T1042D4RDB_SPIFLASH_defconfig ├── T1042D4RDB_defconfig ├── T1042RDB_PI_NAND_SECURE_BOOT_defconfig ├── T1042RDB_PI_NAND_defconfig ├── T1042RDB_PI_SDCARD_defconfig ├── T1042RDB_PI_SPIFLASH_defconfig ├── T1042RDB_PI_defconfig ├── T1042RDB_SECURE_BOOT_defconfig ├── T1042RDB_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_SECURE_BOOT_defconfig ├── T2080RDB_SPIFLASH_defconfig ├── T2080RDB_SRIO_PCIE_BOOT_defconfig ├── T2080RDB_defconfig ├── T2081QDS_NAND_defconfig ├── T2081QDS_SDCARD_defconfig ├── T2081QDS_SPIFLASH_defconfig ├── T2081QDS_SRIO_PCIE_BOOT_defconfig ├── T2081QDS_defconfig ├── T4160QDS_NAND_defconfig ├── T4160QDS_SDCARD_defconfig ├── T4160QDS_SECURE_BOOT_defconfig ├── T4160QDS_defconfig ├── T4160RDB_defconfig ├── T4240QDS_NAND_defconfig ├── T4240QDS_SDCARD_defconfig ├── T4240QDS_SECURE_BOOT_defconfig ├── T4240QDS_SRIO_PCIE_BOOT_defconfig ├── T4240QDS_defconfig ├── T4240RDB_SDCARD_defconfig ├── T4240RDB_defconfig ├── TQM5200S_HIGHBOOT_defconfig ├── TQM5200S_defconfig ├── TQM5200_B_HIGHBOOT_defconfig ├── TQM5200_B_defconfig ├── TQM5200_STK100_defconfig ├── TQM5200_defconfig ├── TQM823L_LCD_defconfig ├── TQM823L_defconfig ├── TQM823M_defconfig ├── TQM834x_defconfig ├── TQM850L_defconfig ├── TQM850M_defconfig ├── TQM855L_defconfig ├── TQM855M_defconfig ├── TQM860L_defconfig ├── TQM860M_defconfig ├── TQM862L_defconfig ├── TQM862M_defconfig ├── TQM866M_defconfig ├── TQM885D_defconfig ├── TTTech_defconfig ├── TWR-P1025_defconfig ├── UCP1020_SPIFLASH_defconfig ├── UCP1020_defconfig ├── UTOO_P66_defconfig ├── VCMA9_defconfig ├── VOM405_defconfig ├── Wexler_TAB7200_defconfig ├── Wits_Pro_A20_DKT_defconfig ├── Wobo_i5_defconfig ├── Yones_Toptech_BD1078_defconfig ├── Yones_Toptech_BS1078_V2_defconfig ├── a3m071_defconfig ├── a4m072_defconfig ├── a4m2k_defconfig ├── ac14xx_defconfig ├── acadia_defconfig ├── adp-ag101p_defconfig ├── alt_defconfig ├── am335x_baltos_defconfig ├── am335x_boneblack_defconfig ├── am335x_boneblack_vboot_defconfig ├── am335x_evm_defconfig ├── am335x_evm_nor_defconfig ├── am335x_evm_norboot_defconfig ├── am335x_evm_spiboot_defconfig ├── am335x_evm_usbspl_defconfig ├── am335x_igep0033_defconfig ├── am335x_shc_defconfig ├── am335x_shc_ict_defconfig ├── am335x_shc_netboot_defconfig ├── am335x_shc_prompt_defconfig ├── am335x_shc_sdboot_defconfig ├── am335x_shc_sdboot_prompt_defconfig ├── am335x_sl50_defconfig ├── am3517_crane_defconfig ├── am3517_evm_defconfig ├── am43xx_evm_defconfig ├── am43xx_evm_ethboot_defconfig ├── am43xx_evm_qspiboot_defconfig ├── am43xx_evm_usbhost_boot_defconfig ├── am43xx_hs_evm_defconfig ├── am57xx_evm_defconfig ├── am57xx_evm_nodt_defconfig ├── am57xx_hs_evm_defconfig ├── amcore_defconfig ├── ap121_defconfig ├── ap143_defconfig ├── ap325rxa_defconfig ├── ap_sh4a_4a_defconfig ├── apalis_t30_defconfig ├── apf27_defconfig ├── apx4devkit_defconfig ├── arches_defconfig ├── aria_defconfig ├── aristainetos2_defconfig ├── aristainetos2b_defconfig ├── aristainetos_defconfig ├── armadillo-800eva_defconfig ├── arndale_defconfig ├── aspenite_defconfig ├── astro_mcf5373l_defconfig ├── at91rm9200ek_defconfig ├── at91rm9200ek_ram_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 ├── atngw100_defconfig ├── atngw100mkii_defconfig ├── atstk1002_defconfig ├── axm_defconfig ├── axs101_defconfig ├── axs103_defconfig ├── ba10_tv_box_defconfig ├── bamboo_defconfig ├── bayleybay_defconfig ├── bcm11130_defconfig ├── bcm11130_nand_defconfig ├── bcm23550_w1d_defconfig ├── bcm28155_ap_defconfig ├── bcm28155_w1d_defconfig ├── bcm911360_entphn-ns_defconfig ├── bcm911360_entphn_defconfig ├── bcm911360k_defconfig ├── bcm958300k-ns_defconfig ├── bcm958300k_defconfig ├── bcm958305k_defconfig ├── bcm958622hr_defconfig ├── bct-brettl2_defconfig ├── beaver_defconfig ├── bf506f-ezkit_defconfig ├── bf518f-ezbrd_defconfig ├── bf525-ucr2_defconfig ├── bf526-ezbrd_defconfig ├── bf527-ad7160-eval_defconfig ├── bf527-ezkit-v2_defconfig ├── bf527-ezkit_defconfig ├── bf527-sdp_defconfig ├── bf533-ezkit_defconfig ├── bf533-stamp_defconfig ├── bf537-minotaur_defconfig ├── bf537-pnav_defconfig ├── bf537-srv1_defconfig ├── bf537-stamp_defconfig ├── bf538f-ezkit_defconfig ├── bf548-ezkit_defconfig ├── bf561-acvilon_defconfig ├── bf561-ezkit_defconfig ├── bf609-ezkit_defconfig ├── bg0900_defconfig ├── birdland_bav335a_defconfig ├── birdland_bav335b_defconfig ├── bk4r1_defconfig ├── blackstamp_defconfig ├── blackvme_defconfig ├── blanche_defconfig ├── boston32r2_defconfig ├── boston32r2el_defconfig ├── boston64r2_defconfig ├── boston64r2el_defconfig ├── br4_defconfig ├── brppt1_mmc_defconfig ├── brppt1_nand_defconfig ├── brppt1_spi_defconfig ├── brxre1_defconfig ├── bubinga_defconfig ├── caddy2_defconfig ├── cairo_defconfig ├── calimain_defconfig ├── cam5200_defconfig ├── cam5200_niosflash_defconfig ├── canmb_defconfig ├── canyonlands_defconfig ├── cardhu_defconfig ├── cei-tk1-som_defconfig ├── cgtqmx6eval_defconfig ├── charon_defconfig ├── chromebook_jerry_defconfig ├── chromebook_link_defconfig ├── chromebook_samus_defconfig ├── chromebox_panther_defconfig ├── clearfog_defconfig ├── cm-bf527_defconfig ├── cm-bf533_defconfig ├── cm-bf537e_defconfig ├── cm-bf537u_defconfig ├── cm-bf548_defconfig ├── cm-bf561_defconfig ├── cm5200_defconfig ├── cm_fx6_defconfig ├── cm_t335_defconfig ├── cm_t3517_defconfig ├── cm_t35_defconfig ├── cm_t43_defconfig ├── cm_t54_defconfig ├── cobra5272_defconfig ├── colibri_imx7_defconfig ├── colibri_pxa270_defconfig ├── colibri_t20_defconfig ├── colibri_t30_defconfig ├── colibri_vf_defconfig ├── colorfly_e708_q1_defconfig ├── conga-qeval20-qa3-e3845-internal-uart_defconfig ├── conga-qeval20-qa3-e3845_defconfig ├── controlcenterd_36BIT_SDCARD_DEVELOP_defconfig ├── controlcenterd_36BIT_SDCARD_defconfig ├── controlcenterd_TRAILBLAZER_DEVELOP_defconfig ├── controlcenterd_TRAILBLAZER_defconfig ├── coreboot-x86_defconfig ├── corvus_defconfig ├── cougarcanyon2_defconfig ├── crownbay_defconfig ├── d2net_v2_defconfig ├── da850_am18xxevm_defconfig ├── da850evm_defconfig ├── da850evm_direct_nor_defconfig ├── dalmore_defconfig ├── db-88f6720_defconfig ├── db-88f6820-amc_defconfig ├── db-88f6820-gp_defconfig ├── db-mv784mp-gp_defconfig ├── dbau1000_defconfig ├── dbau1100_defconfig ├── dbau1500_defconfig ├── dbau1550_defconfig ├── dbau1550_el_defconfig ├── devconcenter_defconfig ├── devkit3250_defconfig ├── devkit8000_defconfig ├── dfi-bt700-q7x-151_defconfig ├── difrnce_dit4350_defconfig ├── digsy_mtc_RAMBOOT_defconfig ├── digsy_mtc_defconfig ├── digsy_mtc_rev5_RAMBOOT_defconfig ├── digsy_mtc_rev5_defconfig ├── dlvision-10g_defconfig ├── dlvision_defconfig ├── dms-ba16-1g_defconfig ├── dms-ba16_defconfig ├── dnp5370_defconfig ├── dns325_defconfig ├── dockstar_defconfig ├── dra7xx_evm_defconfig ├── dra7xx_hs_evm_defconfig ├── draco_defconfig ├── dragonboard410c_defconfig ├── dreamplug_defconfig ├── ds414_defconfig ├── dserve_dsrv9703c_defconfig ├── duovero_defconfig ├── e2220-1170_defconfig ├── ea20_defconfig ├── eb_cpu5282_defconfig ├── eb_cpu5282_internal_defconfig ├── eco5pk_defconfig ├── ecovec_defconfig ├── edb9315a_defconfig ├── edminiv2_defconfig ├── efi-x86_defconfig ├── espresso7420_defconfig ├── espt_defconfig ├── etamin_defconfig ├── ethernut5_defconfig ├── evb-rk3036_defconfig ├── evb-rk3288_defconfig ├── evb-rk3399_defconfig ├── fennec-rk3288_defconfig ├── firefly-rk3288_defconfig ├── flea3_defconfig ├── fo300_defconfig ├── ga10h_v1_1_defconfig ├── galileo_defconfig ├── gdppc440etx_defconfig ├── ge_b450v3_defconfig ├── ge_b650v3_defconfig ├── ge_b850v3_defconfig ├── glacier_defconfig ├── glacier_ramboot_defconfig ├── goflexhome_defconfig ├── gose_defconfig ├── gplugd_defconfig ├── gr_cpci_ax2000_defconfig ├── gr_ep2s60_defconfig ├── gr_xc3s_1500_defconfig ├── grasshopper_defconfig ├── grsim_defconfig ├── grsim_leon2_defconfig ├── gt90h_v4_defconfig ├── gurnard_defconfig ├── guruplug_defconfig ├── gwventana_defconfig ├── h2200_defconfig ├── h8_homlet_v2_defconfig ├── haleakala_defconfig ├── harmony_defconfig ├── highbank_defconfig ├── hikey_defconfig ├── hrcon_defconfig ├── hrcon_dh_defconfig ├── i12-tvbox_defconfig ├── iNet_3F_defconfig ├── iNet_3W_defconfig ├── iNet_86VS_defconfig ├── iNet_D978_rev2_defconfig ├── ib62x0_defconfig ├── ibf-dsp561_defconfig ├── icnova-a20-swac_defconfig ├── icon_defconfig ├── iconnect_defconfig ├── ids8313_defconfig ├── igep0020_defconfig ├── igep0030_defconfig ├── igep0030_nand_defconfig ├── igep0032_defconfig ├── imgtec_xilfpga_defconfig ├── imx31_phycore_defconfig ├── imx31_phycore_eet_defconfig ├── inet1_defconfig ├── inet86dz_defconfig ├── inet97fv2_defconfig ├── inet98v_rev2_defconfig ├── inet9f_rev03_defconfig ├── inet_q972_defconfig ├── inetspace_v2_defconfig ├── inka4x0_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 ├── intip_defconfig ├── io64_defconfig ├── io_defconfig ├── iocon_defconfig ├── ip04_defconfig ├── ipam390_defconfig ├── ipek01_defconfig ├── jesurun_q5_defconfig ├── jetson-tk1_defconfig ├── jupiter_defconfig ├── k2e_evm_defconfig ├── k2g_evm_defconfig ├── k2hk_evm_defconfig ├── k2l_evm_defconfig ├── katmai_defconfig ├── kc1_defconfig ├── kilauea_defconfig ├── km_kirkwood_128m16_defconfig ├── km_kirkwood_defconfig ├── km_kirkwood_pci_defconfig ├── kmcoge4_defconfig ├── kmcoge5ne_defconfig ├── kmcoge5un_defconfig ├── kmeter1_defconfig ├── kmlion1_defconfig ├── kmnusa_defconfig ├── kmopti2_defconfig ├── kmsugp1_defconfig ├── kmsupx5_defconfig ├── kmsuv31_defconfig ├── kmtegr1_defconfig ├── kmtepr2_defconfig ├── kmvect1_defconfig ├── koelsch_defconfig ├── kylin-rk3036_defconfig ├── kzm9g_defconfig ├── lager_defconfig ├── legoev3_defconfig ├── ls1012afrdm_qspi_defconfig ├── ls1012aqds_qspi_defconfig ├── ls1012ardb_qspi_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 ├── 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 ├── ls1043aqds_defconfig ├── ls1043aqds_lpuart_defconfig ├── ls1043aqds_nand_defconfig ├── ls1043aqds_nor_ddr3_defconfig ├── ls1043aqds_qspi_defconfig ├── ls1043aqds_sdcard_ifc_defconfig ├── ls1043aqds_sdcard_qspi_defconfig ├── ls1043ardb_SECURE_BOOT_defconfig ├── ls1043ardb_defconfig ├── ls1043ardb_nand_defconfig ├── ls1043ardb_sdcard_defconfig ├── ls1046aqds_defconfig ├── ls1046aqds_nand_defconfig ├── ls1046aqds_qspi_defconfig ├── ls1046aqds_sdcard_ifc_defconfig ├── ls1046aqds_sdcard_qspi_defconfig ├── ls1046ardb_emmc_defconfig ├── ls1046ardb_qspi_defconfig ├── ls1046ardb_sdcard_defconfig ├── ls2080a_emu_defconfig ├── ls2080a_simu_defconfig ├── ls2080aqds_SECURE_BOOT_defconfig ├── ls2080aqds_defconfig ├── ls2080aqds_nand_defconfig ├── ls2080aqds_qspi_defconfig ├── ls2080ardb_SECURE_BOOT_defconfig ├── ls2080ardb_defconfig ├── ls2080ardb_nand_defconfig ├── lschlv2_defconfig ├── lsxhl_defconfig ├── luan_defconfig ├── lwmon5_defconfig ├── m28evk_defconfig ├── m53evk_defconfig ├── ma5d4evk_defconfig ├── makalu_defconfig ├── malta64_defconfig ├── malta64el_defconfig ├── malta_defconfig ├── maltael_defconfig ├── marsboard_defconfig ├── maxbcm_defconfig ├── mcx_defconfig ├── mecp5123_defconfig ├── medcom-wide_defconfig ├── meesc_dataflash_defconfig ├── meesc_defconfig ├── mgcoge3ne_defconfig ├── mgcoge3un_defconfig ├── mgcoge_defconfig ├── microblaze-generic_defconfig ├── miniarm-rk3288_defconfig ├── minnowmax_defconfig ├── mixtile_loftq_defconfig ├── mk802_a10s_defconfig ├── mk802_defconfig ├── mk802ii_defconfig ├── motionpro_defconfig ├── mpc5121ads_defconfig ├── mpc5121ads_rev2_defconfig ├── mpc8308_p1m_defconfig ├── mpr2_defconfig ├── ms7720se_defconfig ├── ms7722se_defconfig ├── ms7750se_defconfig ├── mt_ventoux_defconfig ├── munices_defconfig ├── mvebu_db-88f3720_defconfig ├── mvebu_db-88f7040_defconfig ├── mx23_olinuxino_defconfig ├── mx23evk_defconfig ├── mx25pdk_defconfig ├── mx28evk_auart_console_defconfig ├── mx28evk_defconfig ├── mx28evk_nand_defconfig ├── mx28evk_spi_defconfig ├── mx31ads_defconfig ├── mx31pdk_defconfig ├── mx35pdk_defconfig ├── mx51evk_defconfig ├── mx53ard_defconfig ├── mx53evk_defconfig ├── mx53loco_defconfig ├── mx53smd_defconfig ├── mx6cuboxi_defconfig ├── mx6dlarm2_defconfig ├── mx6dlarm2_lpddr2_defconfig ├── mx6dlsabreauto_defconfig ├── mx6dlsabresd_defconfig ├── mx6qarm2_defconfig ├── mx6qarm2_lpddr2_defconfig ├── mx6qpsabreauto_defconfig ├── mx6qsabreauto_defconfig ├── mx6qsabrelite_defconfig ├── mx6qsabresd_defconfig ├── mx6sabresd_spl_defconfig ├── mx6slevk_defconfig ├── mx6slevk_spinor_defconfig ├── mx6slevk_spl_defconfig ├── mx6sxsabreauto_defconfig ├── mx6sxsabresd_defconfig ├── mx6sxsabresd_spl_defconfig ├── mx6ul_14x14_evk_defconfig ├── mx6ul_9x9_evk_defconfig ├── mx6ull_14x14_evk_defconfig ├── mx7dsabresd_defconfig ├── mx7dsabresd_secure_defconfig ├── nanopi_neo_defconfig ├── nas220_defconfig ├── neo_defconfig ├── net2big_v2_defconfig ├── netspace_lite_v2_defconfig ├── netspace_max_v2_defconfig ├── netspace_mini_v2_defconfig ├── netspace_v2_defconfig ├── nitrogen6dl2g_defconfig ├── nitrogen6dl_defconfig ├── nitrogen6q2g_defconfig ├── nitrogen6q_defconfig ├── nitrogen6s1g_defconfig ├── nitrogen6s_defconfig ├── nokia_rx51_defconfig ├── novena_defconfig ├── nsa310s_defconfig ├── nsim_700_defconfig ├── nsim_700be_defconfig ├── nsim_hs38_defconfig ├── nsim_hs38be_defconfig ├── nyan-big_defconfig ├── odroid-c2_defconfig ├── odroid-xu3_defconfig ├── odroid_defconfig ├── omap3_beagle_defconfig ├── omap3_evm_defconfig ├── omap3_ha_defconfig ├── omap3_logic_defconfig ├── omap3_overo_defconfig ├── omap3_pandora_defconfig ├── omap3_zoom1_defconfig ├── omap4_panda_defconfig ├── omap4_sdp4430_defconfig ├── omap5_uevm_defconfig ├── omapl138_lcdk_defconfig ├── openrd_base_defconfig ├── openrd_client_defconfig ├── openrd_ultimate_defconfig ├── openrisc-generic_defconfig ├── orangepi_2_defconfig ├── orangepi_lite_defconfig ├── orangepi_one_defconfig ├── orangepi_pc_defconfig ├── orangepi_pc_plus_defconfig ├── orangepi_plus2e_defconfig ├── orangepi_plus_defconfig ├── origen_defconfig ├── ot1200_defconfig ├── ot1200_spl_defconfig ├── p2371-0000_defconfig ├── p2371-2180_defconfig ├── p2571_defconfig ├── p2771-0000-000_defconfig ├── p2771-0000-500_defconfig ├── parrot_r16_defconfig ├── paz00_defconfig ├── pb1000_defconfig ├── pcm030_LOWBOOT_defconfig ├── pcm030_defconfig ├── pcm051_rev1_defconfig ├── pcm051_rev3_defconfig ├── pcm052_defconfig ├── pcm058_defconfig ├── pdm360ng_defconfig ├── peach-pi_defconfig ├── peach-pit_defconfig ├── pengwyn_defconfig ├── pepper_defconfig ├── pic32mzdask_defconfig ├── pico-imx6ul_defconfig ├── picosam9g45_defconfig ├── pine64_plus_defconfig ├── platinum_picon_defconfig ├── platinum_titanium_defconfig ├── plutux_defconfig ├── pm9261_defconfig ├── pm9263_defconfig ├── pm9g45_defconfig ├── pogo_e02_defconfig ├── polaroid_mid2407pxe03_defconfig ├── polaroid_mid2809pxe04_defconfig ├── popmetal-rk3288_defconfig ├── porter_defconfig ├── portl2_defconfig ├── pov_protab2_ips9_defconfig ├── pr1_defconfig ├── pxm2_defconfig ├── q8_a13_tablet_defconfig ├── q8_a23_tablet_800x480_defconfig ├── q8_a33_tablet_1024x600_defconfig ├── q8_a33_tablet_800x480_defconfig ├── qemu-ppce500_defconfig ├── qemu-x86_defconfig ├── qemu-x86_efi_payload32_defconfig ├── qemu-x86_efi_payload64_defconfig ├── qemu_mips64_defconfig ├── qemu_mips64el_defconfig ├── qemu_mips_defconfig ├── qemu_mipsel_defconfig ├── r0p7734_defconfig ├── r2dplus_defconfig ├── r7-tv-dongle_defconfig ├── r7780mp_defconfig ├── rainier_defconfig ├── rainier_ramboot_defconfig ├── rastaban_defconfig ├── redwood_defconfig ├── riotboard_defconfig ├── rock2_defconfig ├── rpi_2_defconfig ├── rpi_3_32b_defconfig ├── rpi_3_defconfig ├── rpi_defconfig ├── rsk7203_defconfig ├── rsk7264_defconfig ├── rsk7269_defconfig ├── rut_defconfig ├── s32v234evb_defconfig ├── s5p_goni_defconfig ├── s5pc210_universal_defconfig ├── salvator-x_defconfig ├── sama5d2_ptc_nandflash_defconfig ├── sama5d2_ptc_spiflash_defconfig ├── sama5d2_xplained_mmc_defconfig ├── sama5d2_xplained_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 ├── sandbox_defconfig ├── sandbox_noblk_defconfig ├── sandbox_spl_defconfig ├── sansa_fuze_plus_defconfig ├── sbc8349_PCI_33_defconfig ├── sbc8349_PCI_66_defconfig ├── sbc8349_defconfig ├── sbc8548_PCI_33_PCIE_defconfig ├── sbc8548_PCI_33_defconfig ├── sbc8548_PCI_66_PCIE_defconfig ├── sbc8548_PCI_66_defconfig ├── sbc8548_defconfig ├── sbc8641d_defconfig ├── sc_sps_1_defconfig ├── seaboard_defconfig ├── secomx6quq7_defconfig ├── sequoia_defconfig ├── sequoia_ramboot_defconfig ├── sh7752evb_defconfig ├── sh7753evb_defconfig ├── sh7757lcr_defconfig ├── sh7763rdp_defconfig ├── sh7785lcr_32bit_defconfig ├── sh7785lcr_defconfig ├── sheevaplug_defconfig ├── shmin_defconfig ├── silk_defconfig ├── smartweb_defconfig ├── smdk2410_defconfig ├── smdk5250_defconfig ├── smdk5420_defconfig ├── smdkc100_defconfig ├── smdkv310_defconfig ├── snapper9260_defconfig ├── snapper9g20_defconfig ├── sniper_defconfig ├── snow_defconfig ├── socfpga_arria5_defconfig ├── socfpga_cyclone5_defconfig ├── socfpga_de0_nano_soc_defconfig ├── socfpga_is1_defconfig ├── socfpga_mcvevk_defconfig ├── socfpga_sockit_defconfig ├── socfpga_socrates_defconfig ├── socfpga_sr1500_defconfig ├── socfpga_vining_fpga_defconfig ├── socrates_defconfig ├── som-db5800-som-6867_defconfig ├── spear300_defconfig ├── spear300_nand_defconfig ├── spear300_usbtty_defconfig ├── spear300_usbtty_nand_defconfig ├── spear310_defconfig ├── spear310_nand_defconfig ├── spear310_pnor_defconfig ├── spear310_usbtty_defconfig ├── spear310_usbtty_nand_defconfig ├── spear310_usbtty_pnor_defconfig ├── spear320_defconfig ├── spear320_nand_defconfig ├── spear320_pnor_defconfig ├── spear320_usbtty_defconfig ├── spear320_usbtty_nand_defconfig ├── spear320_usbtty_pnor_defconfig ├── spear600_defconfig ├── spear600_nand_defconfig ├── spear600_usbtty_defconfig ├── spear600_usbtty_nand_defconfig ├── spring_defconfig ├── stm32f429-discovery_defconfig ├── stm32f746-disco_defconfig ├── stout_defconfig ├── strider_con_defconfig ├── strider_con_dp_defconfig ├── strider_cpu_defconfig ├── strider_cpu_dp_defconfig ├── stv0991_defconfig ├── sunxi_Gemei_G9_defconfig ├── suvd3_defconfig ├── sycamore_defconfig ├── t3corp_defconfig ├── tao3530_defconfig ├── taurus_defconfig ├── tb100_defconfig ├── tbs2910_defconfig ├── tcm-bf518_defconfig ├── tcm-bf537_defconfig ├── tec-ng_defconfig ├── tec_defconfig ├── theadorable-x86-dfi-bt700_defconfig ├── theadorable_debug_defconfig ├── theadorable_defconfig ├── thuban_defconfig ├── thunderx_88xx_defconfig ├── ti814x_evm_defconfig ├── ti816x_evm_defconfig ├── titanium_defconfig ├── tplink_wdr4300_defconfig ├── tqma6q_mba6_mmc_defconfig ├── tqma6q_mba6_spi_defconfig ├── tqma6s_mba6_mmc_defconfig ├── tqma6s_mba6_spi_defconfig ├── tqma6s_wru4_mmc_defconfig ├── trats2_defconfig ├── trats_defconfig ├── tricorder_defconfig ├── tricorder_flash_defconfig ├── trimslice_defconfig ├── ts4800_defconfig ├── tuge1_defconfig ├── tuxx1_defconfig ├── twister_defconfig ├── udoo_defconfig ├── uniphier_ld11_defconfig ├── uniphier_ld20_defconfig ├── uniphier_ld4_sld8_defconfig ├── uniphier_pro4_defconfig ├── uniphier_pxs2_ld6b_defconfig ├── uniphier_sld3_defconfig ├── usb_a9263_dataflash_defconfig ├── usbarmory_defconfig ├── v38b_defconfig ├── vct_platinum_defconfig ├── vct_platinum_onenand_defconfig ├── vct_platinum_onenand_small_defconfig ├── vct_platinum_small_defconfig ├── vct_platinumavc_defconfig ├── vct_platinumavc_onenand_defconfig ├── vct_platinumavc_onenand_small_defconfig ├── vct_platinumavc_small_defconfig ├── vct_premium_defconfig ├── vct_premium_onenand_defconfig ├── vct_premium_onenand_small_defconfig ├── vct_premium_small_defconfig ├── ve8313_defconfig ├── venice2_defconfig ├── ventana_defconfig ├── vexpress_aemv8a_dram_defconfig ├── vexpress_aemv8a_juno_defconfig ├── vexpress_aemv8a_semi_defconfig ├── vexpress_ca15_tc2_defconfig ├── vexpress_ca5x2_defconfig ├── vexpress_ca9x4_defconfig ├── vf610twr_defconfig ├── vf610twr_nand_defconfig ├── vinco_defconfig ├── vme8349_defconfig ├── walnut_defconfig ├── wandboard_defconfig ├── warp7_defconfig ├── warp7_secure_defconfig ├── warp_defconfig ├── whistler_defconfig ├── woodburn_defconfig ├── woodburn_sd_defconfig ├── work_92105_defconfig ├── wtk_defconfig ├── x600_defconfig ├── xfi3_defconfig ├── xilinx-ppc405-generic_defconfig ├── xilinx-ppc440-generic_defconfig ├── xilinx_zynqmp_ep_defconfig ├── xilinx_zynqmp_zc1751_xm015_dc1_defconfig ├── xilinx_zynqmp_zc1751_xm016_dc2_defconfig ├── xilinx_zynqmp_zc1751_xm018_dc4_defconfig ├── xilinx_zynqmp_zc1751_xm019_dc5_defconfig ├── xilinx_zynqmp_zcu102_defconfig ├── xilinx_zynqmp_zcu102_revB_defconfig ├── xpedite1000_defconfig ├── xpedite517x_defconfig ├── xpedite520x_defconfig ├── xpedite537x_defconfig ├── xpedite550x_defconfig ├── xpress_defconfig ├── xpress_spl_defconfig ├── xtfpga_defconfig ├── yellowstone_defconfig ├── yosemite_defconfig ├── yucca_defconfig ├── zc5202_defconfig ├── zc5601_defconfig ├── zipitz2_defconfig ├── zmx25_defconfig ├── zynq_microzed_defconfig ├── zynq_picozed_defconfig ├── zynq_zc702_defconfig ├── zynq_zc706_defconfig ├── zynq_zc770_xm010_defconfig ├── zynq_zc770_xm011_defconfig ├── zynq_zc770_xm012_defconfig ├── zynq_zc770_xm013_defconfig ├── zynq_zed_defconfig └── zynq_zybo_defconfig ├── disk ├── Makefile ├── 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 ├── DocBook │ ├── .gitignore │ ├── Makefile │ ├── docbook.css │ ├── linker_lists.tmpl │ ├── stdio.tmpl │ └── stylesheet.xsl ├── I2C_Edge_Conditions ├── README.440-DDR-performance ├── README.AMCC-eval-boards-cleanup ├── README.ARC ├── README.ARM-memory-map ├── README.AVR32 ├── README.AVR32-port-muxing ├── README.Heterogeneous-SoCs ├── README.JFFS2 ├── README.JFFS2_NAND ├── README.LED ├── README.LED_display ├── README.MPC866 ├── README.N1213 ├── README.NDS32 ├── README.NetConsole ├── README.OFT ├── README.POST ├── README.SNTP ├── README.SPL ├── README.TPL ├── README.VLAN ├── README.VSC3316-3308 ├── README.ag101p ├── README.android-fastboot ├── README.android-fastboot-protocol ├── README.arm-caches ├── README.arm-relocation ├── README.arm64 ├── README.at91 ├── README.atmel_mci ├── README.atmel_pmecc ├── README.autoboot ├── README.b4860qds ├── README.bedbug ├── README.bitbangMII ├── README.blackfin ├── README.bootmenu ├── README.boston ├── README.bus_vcxk ├── README.cfi ├── README.clang ├── README.commands ├── README.commands.itest ├── README.commands.spl ├── README.console ├── README.davinci ├── README.davinci.nand_spl ├── README.dfutftp ├── README.displaying-bmps ├── README.distro ├── README.dns ├── README.drivers.eth ├── README.efi ├── README.enetaddr ├── README.esbc_validate ├── README.ext4 ├── README.falcon ├── README.fdt-control ├── README.fec_mxc ├── README.fsl-clk ├── README.fsl-ddr ├── README.fsl-dpaa ├── README.fsl-esdhc ├── README.fsl-hwconfig ├── README.fsl-trustzone-components ├── README.fsl_iim ├── README.fuse ├── README.generic-board ├── README.generic_usb_ohci ├── README.gpt ├── README.hwconfig ├── README.i2c ├── README.idma2intr ├── README.imx25 ├── README.imx27 ├── README.imx5 ├── README.imx6 ├── README.imximage ├── README.iomux ├── README.kconfig ├── README.kwbimage ├── README.link-local ├── README.lynxkdi ├── README.m54418twr ├── README.m68k ├── README.malta ├── README.marubun-pcmcia ├── README.memory-test ├── README.menu ├── README.mips ├── README.mpc5xx ├── README.mpc74xx ├── README.mpc83xx.ddrecc ├── README.mpc83xxads ├── README.mpc85xx ├── README.mpc85xx-sd-spi-boot ├── README.mpc85xx-spin-table ├── README.mpc85xxads ├── README.mpc85xxcds ├── README.mxc_hab ├── README.mxc_ocotp ├── README.mxs ├── README.mxsimage ├── README.nand ├── README.nand-boot-ppc440 ├── README.ne2000 ├── README.nios2 ├── README.nokia_rx51 ├── README.odroid ├── README.omap-reset-time ├── README.omap-ulpi-viewport ├── README.omap3 ├── README.pblimage ├── README.plan9 ├── README.power-framework ├── README.ppc440 ├── README.pxe ├── README.qemu-mips ├── README.ramboot-ppc85xx ├── README.rmobile ├── README.rockchip ├── README.s5pc1xx ├── README.sata ├── README.sched ├── README.scrapyard ├── README.semihosting ├── README.serial_multi ├── README.sh ├── README.sh7752evb ├── README.sh7753evb ├── README.sha1 ├── README.silent ├── README.socfpga ├── README.spear ├── README.splashprepare ├── README.srio-pcie-boot-corenet ├── README.standalone ├── README.t1040-l2switch ├── README.ti-secure ├── README.trace ├── README.ubi ├── README.ubispl ├── README.ublimage ├── README.unaligned-memory-access.txt ├── README.uniphier ├── README.update ├── README.usb ├── README.vf610 ├── README.video ├── README.vxworks ├── README.watchdog ├── README.x86 ├── README.xtensa ├── README.zfs ├── README.zynq ├── SPI │ ├── README.altera_spi │ ├── README.dual-flash │ ├── README.ftssp010_spi_test │ ├── README.sandbox-spi │ ├── README.sh_qspi_test │ ├── README.ti_qspi_am43x_test │ ├── README.ti_qspi_dra_test │ ├── README.ti_qspi_flash │ └── status.txt ├── SPL │ ├── README.am335x-network │ ├── README.omap3 │ └── README.spl-secure-boot ├── device-tree-bindings │ ├── README │ ├── adc │ │ └── adc.txt │ ├── ata │ │ └── intel-sata.txt │ ├── chosen.txt │ ├── clock │ │ ├── microchip,pic32-clock.txt │ │ ├── nvidia,tegra20-car.txt │ │ ├── rockchip,rk3188-cru.txt │ │ ├── rockchip,rk3288-cru.txt │ │ ├── rockchip,rk3288-dmc.txt │ │ └── rockchip.txt │ ├── cpu │ │ └── nios2.txt │ ├── exynos │ │ ├── dwmmc.txt │ │ ├── emmc-reset.txt │ │ ├── isp-spi.txt │ │ ├── soc.txt │ │ ├── sound.txt │ │ └── tmu.txt │ ├── firmware │ │ └── nvidia,tegra186-bpmp.txt │ ├── gpio │ │ ├── altera_pio.txt │ │ ├── gpio-msm.txt │ │ ├── gpio-pcf857x.txt │ │ ├── gpio-samsung.txt │ │ ├── gpio.txt │ │ ├── intel,x86-broadwell-pinctrl.txt │ │ ├── intel,x86-pinctrl.txt │ │ ├── nvidia,tegra186-gpio.txt │ │ ├── nvidia,tegra20-gpio.txt │ │ └── pm8916_gpio.txt │ ├── gpu │ │ └── nvidia,tegra20-host1x.txt │ ├── i2c │ │ ├── i2c-at91.txt │ │ ├── i2c-cdns.txt │ │ ├── i2c-gpio.txt │ │ ├── i2c-mux.txt │ │ ├── i2c.txt │ │ ├── nvidia,tegra186-bpmp-i2c.txt │ │ └── tegra20-i2c.txt │ ├── input │ │ ├── cros-ec-keyb.txt │ │ └── i8042.txt │ ├── leds │ │ ├── common.txt │ │ └── leds-gpio.txt │ ├── mailbox │ │ ├── mailbox.txt │ │ └── nvidia,tegra186-hsp.txt │ ├── misc │ │ ├── altera_sysid.txt │ │ ├── cros-ec.txt │ │ ├── intel,baytrail-fsp.txt │ │ ├── intel,irq-router.txt │ │ └── intel-lpc.txt │ ├── mmc │ │ └── msm_sdhci.txt │ ├── mtd │ │ ├── altera_qspi.txt │ │ ├── mtd-physmap.txt │ │ └── spi │ │ │ └── spi-flash.txt │ ├── nand │ │ └── nvidia,tegra20-nand.txt │ ├── net │ │ ├── allwinner,sun4i-emac.txt │ │ ├── allwinner,sun4i-mdio.txt │ │ ├── allwinner,sun7i-a20-gmac.txt │ │ ├── altera_tse.txt │ │ ├── ethernet.txt │ │ ├── fsl-tsec-phy.txt │ │ ├── micrel-ksz90x1.txt │ │ ├── stmmac.txt │ │ └── ti,dp83867.txt │ ├── pinctrl │ │ ├── atmel,at91-pio4-pinctrl.txt │ │ ├── pinctrl-bindings.txt │ │ └── rockchip,pinctrl.txt │ ├── pmic │ │ ├── max77686.txt │ │ ├── pm8916.txt │ │ ├── rn5t567.txt │ │ ├── s2mps11.txt │ │ └── sandbox.txt │ ├── power │ │ └── tps65090.txt │ ├── pwm │ │ └── tegra20-pwm.txt │ ├── regulator │ │ ├── fixed.txt │ │ ├── max77686.txt │ │ ├── regulator.txt │ │ ├── sandbox.txt │ │ └── tps65090.txt │ ├── remoteproc │ │ └── remoteproc.txt │ ├── reset │ │ └── reset.txt │ ├── root.txt │ ├── serial │ │ ├── 8250.txt │ │ ├── altera_jtaguart.txt │ │ ├── altera_uart.txt │ │ ├── microchip,pic32-uart.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 │ ├── spi │ │ ├── soft-spi.txt │ │ ├── spi-ath79.txt │ │ ├── spi-bus.txt │ │ ├── spi-cadence.txt │ │ ├── spi-zynq-qspi.txt │ │ ├── spi-zynq.txt │ │ └── spi_altera.txt │ ├── spmi │ │ ├── spmi-msm.txt │ │ └── spmi-sandbox.txt │ ├── thermal │ │ └── rockchip-thermal.txt │ ├── timer │ │ ├── altera_timer.txt │ │ └── sandbox_timer.txt │ ├── usb │ │ ├── ehci-msm.txt │ │ └── tegra-usb.txt │ └── video │ │ ├── bridge │ │ └── ps8622.txt │ │ ├── display-timing.txt │ │ ├── displaymode.txt │ │ ├── exynos-dp.txt │ │ ├── exynos-fb.txt │ │ ├── exynos_mipi_dsi.txt │ │ ├── intel-gma.txt │ │ ├── rockchip-lvds.txt │ │ ├── sandbox-fb.txt │ │ ├── simple-framebuffer.txt │ │ └── tegra20-dc.txt ├── driver-model │ ├── README.txt │ ├── of-plat.txt │ ├── pci-info.txt │ ├── pmic-framework.txt │ ├── remoteproc-framework.txt │ ├── serial-howto.txt │ ├── spi-howto.txt │ └── usb-info.txt ├── feature-removal-schedule.txt ├── git-mailrc ├── kwboot.1 ├── mkimage.1 └── uImage.FIT │ ├── beaglebone_vboot.txt │ ├── command_syntax_extensions.txt │ ├── howto.txt │ ├── kernel.its │ ├── kernel_fdt.its │ ├── multi-with-fpga.its │ ├── multi-with-loadables.its │ ├── multi.its │ ├── sign-configs.its │ ├── sign-images.its │ ├── signature.txt │ ├── source_file_format.txt │ ├── update3.its │ ├── update_uboot.its │ ├── verified-boot.txt │ └── x86-fit-boot.txt ├── drivers ├── Kconfig ├── Makefile ├── adc │ ├── Kconfig │ ├── Makefile │ ├── adc-uclass.c │ ├── exynos-adc.c │ └── sandbox.c ├── bios_emulator │ ├── 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 │ ├── ahci-uclass.c │ ├── ahci.c │ ├── blk-uclass.c │ ├── blk_legacy.c │ ├── blkcache.c │ ├── dwc_ahsata.c │ ├── dwc_ahsata.h │ ├── fsl_sata.c │ ├── fsl_sata.h │ ├── ftide020.c │ ├── ftide020.h │ ├── libata.c │ ├── mvsata_ide.c │ ├── mxc_ata.c │ ├── pata_bfin.c │ ├── pata_bfin.h │ ├── sandbox.c │ ├── sandbox_scsi.c │ ├── sata_ceva.c │ ├── sata_dwc.c │ ├── sata_dwc.h │ ├── sata_mv.c │ ├── sata_sandbox.c │ ├── sata_sil.c │ ├── sata_sil.h │ ├── sata_sil3114.c │ ├── sata_sil3114.h │ ├── sil680.c │ ├── sym53c8xx.c │ └── systemace.c ├── bootcount │ ├── Makefile │ ├── bootcount.c │ ├── bootcount_at91.c │ ├── bootcount_blackfin.c │ ├── bootcount_davinci.c │ ├── bootcount_env.c │ ├── bootcount_i2c.c │ └── bootcount_ram.c ├── clk │ ├── Kconfig │ ├── Makefile │ ├── at91 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-generated.c │ │ ├── clk-h32mx.c │ │ ├── clk-main.c │ │ ├── clk-master.c │ │ ├── clk-peripheral.c │ │ ├── clk-plla.c │ │ ├── clk-slow.c │ │ ├── clk-system.c │ │ ├── clk-utmi.c │ │ ├── pmc.c │ │ ├── pmc.h │ │ └── sckc.c │ ├── clk-uclass.c │ ├── clk_boston.c │ ├── clk_fixed_rate.c │ ├── clk_pic32.c │ ├── clk_sandbox.c │ ├── clk_sandbox_test.c │ ├── exynos │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-exynos7420.c │ │ ├── clk-pll.c │ │ └── clk-pll.h │ ├── rockchip │ │ ├── Makefile │ │ ├── clk_rk3036.c │ │ ├── clk_rk3288.c │ │ └── clk_rk3399.c │ ├── tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── tegra-car-clk.c │ │ └── tegra186-clk.c │ └── uniphier │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-uniphier-core.c │ │ ├── clk-uniphier-mio.c │ │ └── clk-uniphier.h ├── core │ ├── Kconfig │ ├── Makefile │ ├── device-remove.c │ ├── device.c │ ├── devres.c │ ├── dump.c │ ├── lists.c │ ├── regmap.c │ ├── root.c │ ├── simple-bus.c │ ├── syscon-uclass.c │ ├── uclass.c │ └── util.c ├── cpu │ ├── Kconfig │ ├── Makefile │ └── cpu-uclass.c ├── crypto │ ├── Kconfig │ ├── Makefile │ ├── ace_sha.c │ ├── ace_sha.h │ ├── fsl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── desc.h │ │ ├── desc_constr.h │ │ ├── error.c │ │ ├── fsl_blob.c │ │ ├── fsl_hash.c │ │ ├── fsl_hash.h │ │ ├── fsl_rsa.c │ │ ├── jobdesc.c │ │ ├── jobdesc.h │ │ ├── jr.c │ │ ├── jr.h │ │ ├── rsa_caam.h │ │ └── sec.c │ └── rsa_mod_exp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mod_exp_sw.c │ │ └── mod_exp_uclass.c ├── ddr │ ├── altera │ │ ├── Makefile │ │ ├── sdram.c │ │ ├── sequencer.c │ │ └── sequencer.h │ ├── fsl │ │ ├── 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 │ │ ├── mpc86xx_ddr.c │ │ ├── options.c │ │ └── util.c │ ├── marvell │ │ ├── a38x │ │ │ ├── Makefile │ │ │ ├── ddr3_a38x.c │ │ │ ├── ddr3_a38x.h │ │ │ ├── ddr3_a38x_mc_static.h │ │ │ ├── ddr3_a38x_topology.h │ │ │ ├── ddr3_a38x_training.c │ │ │ ├── ddr3_debug.c │ │ │ ├── ddr3_hws_hw_training.c │ │ │ ├── ddr3_hws_hw_training.h │ │ │ ├── ddr3_hws_hw_training_def.h │ │ │ ├── ddr3_hws_sil_training.h │ │ │ ├── ddr3_init.c │ │ │ ├── ddr3_init.h │ │ │ ├── ddr3_logging_def.h │ │ │ ├── ddr3_patterns_64bit.h │ │ │ ├── ddr3_topology_def.h │ │ │ ├── ddr3_training.c │ │ │ ├── ddr3_training_bist.c │ │ │ ├── ddr3_training_centralization.c │ │ │ ├── ddr3_training_db.c │ │ │ ├── ddr3_training_hw_algo.c │ │ │ ├── ddr3_training_hw_algo.h │ │ │ ├── ddr3_training_ip.h │ │ │ ├── ddr3_training_ip_bist.h │ │ │ ├── ddr3_training_ip_centralization.h │ │ │ ├── ddr3_training_ip_db.h │ │ │ ├── ddr3_training_ip_def.h │ │ │ ├── ddr3_training_ip_engine.c │ │ │ ├── ddr3_training_ip_engine.h │ │ │ ├── ddr3_training_ip_flow.h │ │ │ ├── ddr3_training_ip_pbs.h │ │ │ ├── ddr3_training_ip_prv_if.h │ │ │ ├── ddr3_training_ip_static.h │ │ │ ├── ddr3_training_leveling.c │ │ │ ├── ddr3_training_leveling.h │ │ │ ├── ddr3_training_pbs.c │ │ │ ├── ddr3_training_static.c │ │ │ ├── ddr_topology_def.h │ │ │ ├── ddr_training_ip_db.h │ │ │ ├── silicon_if.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_mmc.c │ ├── dfu_nand.c │ ├── dfu_ram.c │ ├── dfu_sf.c │ └── dfu_tftp.c ├── dma │ ├── Kconfig │ ├── MCD_dmaApi.c │ ├── MCD_tasks.c │ ├── MCD_tasksInit.c │ ├── Makefile │ ├── apbh_dma.c │ ├── dma-uclass.c │ ├── fsl_dma.c │ ├── keystone_nav.c │ ├── keystone_nav_cfg.c │ ├── lpc32xx_dma.c │ └── ti-edma3.c ├── fpga │ ├── ACEX1K.c │ ├── Kconfig │ ├── Makefile │ ├── altera.c │ ├── cyclon2.c │ ├── fpga.c │ ├── ivm_core.c │ ├── lattice.c │ ├── socfpga.c │ ├── spartan2.c │ ├── spartan3.c │ ├── stratixII.c │ ├── stratixv.c │ ├── virtex2.c │ ├── xilinx.c │ ├── zynqmppl.c │ └── zynqpl.c ├── gpio │ ├── 74x164_gpio.c │ ├── Kconfig │ ├── Makefile │ ├── adi_gpio2.c │ ├── altera_pio.c │ ├── at91_gpio.c │ ├── atmel_pio4.c │ ├── axp_gpio.c │ ├── bcm2835_gpio.c │ ├── da8xx_gpio.c │ ├── db8500_gpio.c │ ├── dwapb_gpio.c │ ├── gpio-uclass.c │ ├── gpio-uniphier.c │ ├── hi6220_gpio.c │ ├── intel_broadwell_gpio.c │ ├── intel_ich6_gpio.c │ ├── kona_gpio.c │ ├── kw_gpio.c │ ├── lpc32xx_gpio.c │ ├── mpc83xx_gpio.c │ ├── mpc85xx_gpio.c │ ├── msm_gpio.c │ ├── mvebu_gpio.c │ ├── mvgpio.c │ ├── mvgpio.h │ ├── mvmfp.c │ ├── mxc_gpio.c │ ├── mxs_gpio.c │ ├── omap_gpio.c │ ├── pca953x.c │ ├── pca953x_gpio.c │ ├── pca9698.c │ ├── pcf8575_gpio.c │ ├── pic32_gpio.c │ ├── pm8916_gpio.c │ ├── rk_gpio.c │ ├── s3c2440_gpio.c │ ├── s5p_gpio.c │ ├── sandbox.c │ ├── sh_pfc.c │ ├── spear_gpio.c │ ├── stm32_gpio.c │ ├── sunxi_gpio.c │ ├── sx151x.c │ ├── tca642x.c │ ├── tegra186_gpio.c │ ├── tegra186_gpio_priv.h │ ├── tegra_gpio.c │ ├── vybrid_gpio.c │ ├── xilinx_gpio.c │ └── zynq_gpio.c ├── hwmon │ ├── Kconfig │ ├── Makefile │ ├── adm1021.c │ ├── adt7460.c │ ├── ds1621.c │ ├── ds1722.c │ ├── ds1775.c │ ├── ds620.c │ ├── lm63.c │ ├── lm73.c │ ├── lm75.c │ └── lm81.c ├── i2c │ ├── Kconfig │ ├── Makefile │ ├── adi_i2c.c │ ├── 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 │ ├── fsl_i2c.c │ ├── fti2c010.c │ ├── fti2c010.h │ ├── i2c-cdns.c │ ├── i2c-emul-uclass.c │ ├── i2c-gpio.c │ ├── i2c-uclass-compat.c │ ├── i2c-uclass.c │ ├── i2c-uniphier-f.c │ ├── i2c-uniphier.c │ ├── i2c_core.c │ ├── ihs_i2c.c │ ├── intel_i2c.c │ ├── kona_i2c.c │ ├── lpc32xx_i2c.c │ ├── muxes │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── i2c-arb-gpio-challenge.c │ │ ├── i2c-mux-uclass.c │ │ └── pca954x.c │ ├── mv_i2c.c │ ├── mv_i2c.h │ ├── mvtwsi.c │ ├── mxc_i2c.c │ ├── mxs_i2c.c │ ├── omap24xx_i2c.c │ ├── omap24xx_i2c.h │ ├── pca9564_i2c.c │ ├── ppc4xx_i2c.c │ ├── rcar_i2c.c │ ├── rk_i2c.c │ ├── s3c24x0_i2c.c │ ├── s3c24x0_i2c.h │ ├── sandbox_i2c.c │ ├── sh_i2c.c │ ├── sh_sh7734_i2c.c │ ├── soft_i2c.c │ ├── tegra186_bpmp_i2c.c │ ├── tegra_i2c.c │ ├── tsi108_i2c.c │ └── zynq_i2c.c ├── input │ ├── Kconfig │ ├── Makefile │ ├── cros_ec_keyb.c │ ├── i8042.c │ ├── input.c │ ├── key_matrix.c │ ├── keyboard-uclass.c │ ├── keyboard.c │ ├── pc_keyb.c │ ├── ps2mult.c │ ├── ps2ser.c │ ├── tegra-kbc.c │ ├── twl4030.c │ └── twl6030.c ├── led │ ├── Kconfig │ ├── Makefile │ ├── led-uclass.c │ └── led_gpio.c ├── mailbox │ ├── Kconfig │ ├── Makefile │ ├── mailbox-uclass.c │ ├── sandbox-mbox-test.c │ ├── sandbox-mbox.c │ └── tegra-hsp.c ├── memory │ ├── Kconfig │ ├── Makefile │ └── ti-aemif.c ├── misc │ ├── Kconfig │ ├── Makefile │ ├── ali512x.c │ ├── altera_sysid.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 │ ├── fsl_devdis.c │ ├── fsl_ifc.c │ ├── fsl_iim.c │ ├── fsl_sec_mon.c │ ├── gpio_led.c │ ├── i2c_eeprom.c │ ├── i2c_eeprom_emul.c │ ├── mc9sdz60.c │ ├── misc-uclass.c │ ├── mxc_ocotp.c │ ├── mxs_ocotp.c │ ├── ns87308.c │ ├── nuvoton_nct6102d.c │ ├── pca9551_led.c │ ├── pdsp188x.c │ ├── pwrseq-uclass.c │ ├── qfw.c │ ├── smsc_lpc47m.c │ ├── smsc_sio1007.c │ ├── spltest_sandbox.c │ ├── status_led.c │ ├── swap_case.c │ ├── syscon_sandbox.c │ ├── tegra186_bpmp.c │ ├── tegra_car.c │ ├── twl4030_led.c │ └── winbond_w83627.c ├── mmc │ ├── Kconfig │ ├── Makefile │ ├── arm_pl180_mmci.c │ ├── arm_pl180_mmci.h │ ├── atmel_sdhci.c │ ├── bcm2835_sdhci.c │ ├── bfin_sdh.c │ ├── davinci_mmc.c │ ├── dw_mmc.c │ ├── exynos_dw_mmc.c │ ├── fsl_esdhc.c │ ├── fsl_esdhc_spl.c │ ├── ftsdc010_mci.c │ ├── ftsdc021_sdhci.c │ ├── gen_atmel_mci.c │ ├── hi6220_dw_mmc.c │ ├── kona_sdhci.c │ ├── mmc-uclass.c │ ├── mmc.c │ ├── mmc_boot.c │ ├── mmc_legacy.c │ ├── mmc_private.h │ ├── mmc_spi.c │ ├── mmc_write.c │ ├── msm_sdhci.c │ ├── mv_sdhci.c │ ├── mvebu_mmc.c │ ├── mxcmmc.c │ ├── mxsmmc.c │ ├── omap_hsmmc.c │ ├── pci_mmc.c │ ├── pic32_sdhci.c │ ├── pxa_mmc_gen.c │ ├── rockchip_dw_mmc.c │ ├── rockchip_sdhci.c │ ├── rpmb.c │ ├── s3c_sdi.c │ ├── s5p_sdhci.c │ ├── sandbox_mmc.c │ ├── sdhci.c │ ├── sh_mmcif.c │ ├── sh_mmcif.h │ ├── sh_sdhi.c │ ├── socfpga_dw_mmc.c │ ├── spear_sdhci.c │ ├── sunxi_mmc.c │ ├── tegra_mmc.c │ ├── uniphier-sd.c │ └── zynq_sdhci.c ├── mtd │ ├── Kconfig │ ├── Makefile │ ├── altera_qspi.c │ ├── at45.c │ ├── cfi_flash.c │ ├── cfi_mtd.c │ ├── dataflash.c │ ├── ftsmc020.c │ ├── jedec_flash.c │ ├── mtd-uclass.c │ ├── mtd_uboot.c │ ├── mtdconcat.c │ ├── mtdcore.c │ ├── mtdcore.h │ ├── mtdpart.c │ ├── mw_eeprom.c │ ├── nand │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am335x_spl_bch.c │ │ ├── arasan_nfc.c │ │ ├── atmel_nand.c │ │ ├── atmel_nand_ecc.h │ │ ├── bfin_nand.c │ │ ├── davinci_nand.c │ │ ├── denali.c │ │ ├── denali.h │ │ ├── denali_spl.c │ │ ├── fsl_elbc_nand.c │ │ ├── fsl_elbc_spl.c │ │ ├── fsl_ifc_nand.c │ │ ├── fsl_ifc_spl.c │ │ ├── fsl_upm.c │ │ ├── fsmc_nand.c │ │ ├── kb9202_nand.c │ │ ├── kirkwood_nand.c │ │ ├── kmeter1_nand.c │ │ ├── lpc32xx_nand_mlc.c │ │ ├── lpc32xx_nand_slc.c │ │ ├── mpc5121_nfc.c │ │ ├── mxc_nand.c │ │ ├── mxc_nand.h │ │ ├── mxc_nand_spl.c │ │ ├── mxs_nand.c │ │ ├── mxs_nand_spl.c │ │ ├── nand.c │ │ ├── nand_base.c │ │ ├── nand_bbt.c │ │ ├── nand_bch.c │ │ ├── nand_ecc.c │ │ ├── nand_ids.c │ │ ├── nand_plat.c │ │ ├── nand_spl_load.c │ │ ├── nand_spl_simple.c │ │ ├── nand_timings.c │ │ ├── nand_util.c │ │ ├── ndfc.c │ │ ├── omap_elm.c │ │ ├── omap_gpmc.c │ │ ├── pxa3xx_nand.c │ │ ├── pxa3xx_nand.h │ │ ├── s3c2410_nand.c │ │ ├── sunxi_nand.c │ │ ├── sunxi_nand_spl.c │ │ ├── tegra_nand.c │ │ ├── tegra_nand.h │ │ └── vf610_nfc.c │ ├── onenand │ │ ├── Makefile │ │ ├── onenand_base.c │ │ ├── onenand_bbt.c │ │ ├── onenand_spl.c │ │ ├── onenand_uboot.c │ │ └── samsung.c │ ├── pic32_flash.c │ ├── spi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── fsl_espi_spl.c │ │ ├── sandbox.c │ │ ├── sf-uclass.c │ │ ├── sf.c │ │ ├── sf_dataflash.c │ │ ├── sf_internal.h │ │ ├── sf_mtd.c │ │ ├── sf_params.c │ │ ├── sf_probe.c │ │ ├── spi_flash.c │ │ └── sunxi_spi_spl.c │ ├── st_smi.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 ├── net │ ├── 4xx_enet.c │ ├── 8390.h │ ├── Kconfig │ ├── Makefile │ ├── ag7xxx.c │ ├── altera_tse.c │ ├── altera_tse.h │ ├── armada100_fec.c │ ├── armada100_fec.h │ ├── at91_emac.c │ ├── ax88180.c │ ├── ax88180.h │ ├── ax88796.c │ ├── ax88796.h │ ├── bcm-sf2-eth-gmac.c │ ├── bcm-sf2-eth-gmac.h │ ├── bcm-sf2-eth.c │ ├── bcm-sf2-eth.h │ ├── bfin_mac.c │ ├── bfin_mac.h │ ├── calxedaxgmac.c │ ├── cpsw-common.c │ ├── cpsw.c │ ├── cs8900.c │ ├── cs8900.h │ ├── davinci_emac.c │ ├── davinci_emac.h │ ├── dc2114x.c │ ├── designware.c │ ├── designware.h │ ├── dm9000x.c │ ├── dm9000x.h │ ├── dnet.c │ ├── dnet.h │ ├── e1000.c │ ├── e1000.h │ ├── e1000_spi.c │ ├── eepro100.c │ ├── enc28j60.c │ ├── enc28j60.h │ ├── ep93xx_eth.c │ ├── ep93xx_eth.h │ ├── ethoc.c │ ├── fec_mxc.c │ ├── fec_mxc.h │ ├── fm │ │ ├── Makefile │ │ ├── b4860.c │ │ ├── dtsec.c │ │ ├── eth.c │ │ ├── fdt.c │ │ ├── fm.c │ │ ├── fm.h │ │ ├── init.c │ │ ├── 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 │ │ ├── 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 │ │ ├── fsl_dpmng_cmd.h │ │ ├── mc.c │ │ └── mc_sys.c │ ├── fsl_mcdmafec.c │ ├── fsl_mdio.c │ ├── ftgmac100.c │ ├── ftgmac100.h │ ├── ftmac100.c │ ├── ftmac100.h │ ├── ftmac110.c │ ├── ftmac110.h │ ├── greth.c │ ├── greth.h │ ├── keystone_net.c │ ├── ks8851_mll.c │ ├── ks8851_mll.h │ ├── lan91c96.c │ ├── lan91c96.h │ ├── ldpaa_eth │ │ ├── Makefile │ │ ├── ldpaa_eth.c │ │ ├── ldpaa_eth.h │ │ ├── ldpaa_wriop.c │ │ └── ls2080a.c │ ├── lpc32xx_eth.c │ ├── macb.c │ ├── macb.h │ ├── mcffec.c │ ├── mcfmii.c │ ├── mpc512x_fec.c │ ├── mpc512x_fec.h │ ├── mpc5xxx_fec.c │ ├── mpc5xxx_fec.h │ ├── mvgbe.c │ ├── mvgbe.h │ ├── mvneta.c │ ├── mvpp2.c │ ├── natsemi.c │ ├── ne2000.c │ ├── ne2000.h │ ├── ne2000_base.c │ ├── ne2000_base.h │ ├── netconsole.c │ ├── ns8382x.c │ ├── pch_gbe.c │ ├── pch_gbe.h │ ├── pcnet.c │ ├── phy │ │ ├── Makefile │ │ ├── aquantia.c │ │ ├── atheros.c │ │ ├── broadcom.c │ │ ├── cortina.c │ │ ├── davicom.c │ │ ├── et1011c.c │ │ ├── generic_10g.c │ │ ├── lxt.c │ │ ├── marvell.c │ │ ├── micrel.c │ │ ├── miiphybb.c │ │ ├── mv88e61xx.c │ │ ├── mv88e6352.c │ │ ├── natsemi.c │ │ ├── phy.c │ │ ├── realtek.c │ │ ├── smsc.c │ │ ├── teranetics.c │ │ ├── ti.c │ │ ├── vitesse.c │ │ └── xilinx_phy.c │ ├── pic32_eth.c │ ├── pic32_eth.h │ ├── pic32_mdio.c │ ├── rtl8139.c │ ├── rtl8169.c │ ├── sandbox-raw.c │ ├── sandbox.c │ ├── sh_eth.c │ ├── sh_eth.h │ ├── smc91111.c │ ├── smc91111.h │ ├── smc911x.c │ ├── smc911x.h │ ├── sun8i_emac.c │ ├── sunxi_emac.c │ ├── tsec.c │ ├── tsi108_eth.c │ ├── uli526x.c │ ├── vsc7385.c │ ├── vsc9953.c │ ├── xilinx_axi_emac.c │ ├── xilinx_emaclite.c │ ├── xilinx_ll_temac.c │ ├── xilinx_ll_temac.h │ ├── xilinx_ll_temac_fifo.c │ ├── xilinx_ll_temac_fifo.h │ ├── xilinx_ll_temac_mdio.c │ ├── xilinx_ll_temac_mdio.h │ ├── xilinx_ll_temac_sdma.c │ ├── xilinx_ll_temac_sdma.h │ └── zynq_gem.c ├── pch │ ├── Makefile │ ├── pch-uclass.c │ ├── pch7.c │ └── pch9.c ├── pci │ ├── Kconfig │ ├── Makefile │ ├── fsl_pci_init.c │ ├── pci-emul-uclass.c │ ├── pci-uclass.c │ ├── pci.c │ ├── pci_auto.c │ ├── pci_auto_common.c │ ├── pci_auto_old.c │ ├── pci_common.c │ ├── pci_compat.c │ ├── pci_ftpci100.c │ ├── pci_gt64120.c │ ├── pci_indirect.c │ ├── pci_internal.h │ ├── pci_msc01.c │ ├── pci_mvebu.c │ ├── pci_rom.c │ ├── pci_sandbox.c │ ├── pci_sh4.c │ ├── pci_sh7751.c │ ├── pci_sh7780.c │ ├── pci_tegra.c │ ├── pci_x86.c │ ├── pcie_imx.c │ ├── pcie_layerscape.c │ ├── pcie_xilinx.c │ ├── tsi108_pci.c │ └── w83c553f.c ├── pcmcia │ ├── Kconfig │ ├── Makefile │ ├── marubun_pcmcia.c │ ├── mpc8xx_pcmcia.c │ ├── ti_pci1410a.c │ └── tqm8xx_pcmcia.c ├── phy │ └── marvell │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── comphy.h │ │ ├── comphy_a3700.c │ │ ├── comphy_a3700.h │ │ ├── comphy_core.c │ │ ├── comphy_cp110.c │ │ ├── comphy_hpipe.h │ │ ├── comphy_mux.c │ │ ├── sata.h │ │ └── utmi_phy.h ├── pinctrl │ ├── Kconfig │ ├── Makefile │ ├── ath79 │ │ ├── Makefile │ │ ├── pinctrl_ar933x.c │ │ └── pinctrl_qca953x.c │ ├── exynos │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-exynos.c │ │ ├── pinctrl-exynos.h │ │ └── pinctrl-exynos7420.c │ ├── meson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-meson-gxbb.c │ │ ├── pinctrl-meson.c │ │ └── pinctrl-meson.h │ ├── nxp │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── pinctrl-imx.c │ │ ├── pinctrl-imx.h │ │ ├── pinctrl-imx6.c │ │ └── pinctrl-imx7.c │ ├── pinctrl-at91-pio4.c │ ├── pinctrl-generic.c │ ├── pinctrl-sandbox.c │ ├── pinctrl-uclass.c │ ├── pinctrl_pic32.c │ ├── rockchip │ │ ├── Makefile │ │ ├── pinctrl_rk3036.c │ │ ├── pinctrl_rk3288.c │ │ └── pinctrl_rk3399.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-sld3.c │ │ ├── pinctrl-uniphier-sld8.c │ │ └── pinctrl-uniphier.h ├── power │ ├── Kconfig │ ├── Makefile │ ├── as3722.c │ ├── axp152.c │ ├── axp209.c │ ├── axp221.c │ ├── axp809.c │ ├── axp818.c │ ├── battery │ │ ├── Makefile │ │ ├── bat_trats.c │ │ └── bat_trats2.c │ ├── domain │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── power-domain-uclass.c │ │ ├── sandbox-power-domain-test.c │ │ ├── sandbox-power-domain.c │ │ └── tegra186-power-domain.c │ ├── exynos-tmu.c │ ├── ftpmu010.c │ ├── fuel_gauge │ │ ├── Makefile │ │ └── fg_max17042.c │ ├── mfd │ │ ├── Makefile │ │ ├── fg_max77693.c │ │ ├── muic_max77693.c │ │ └── pmic_max77693.c │ ├── palmas.c │ ├── pmic │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── act8846.c │ │ ├── i2c_pmic_emul.c │ │ ├── max77686.c │ │ ├── muic_max8997.c │ │ ├── pfuze100.c │ │ ├── pm8916.c │ │ ├── pmic-uclass.c │ │ ├── pmic_hi6553.c │ │ ├── pmic_ltc3676.c │ │ ├── pmic_max77686.c │ │ ├── pmic_max77696.c │ │ ├── pmic_max8997.c │ │ ├── pmic_max8998.c │ │ ├── pmic_pfuze100.c │ │ ├── pmic_pfuze3000.c │ │ ├── pmic_tps62362.c │ │ ├── pmic_tps65217.c │ │ ├── pmic_tps65218.c │ │ ├── pmic_tps65910.c │ │ ├── rk808.c │ │ ├── rn5t567.c │ │ ├── s2mps11.c │ │ ├── s5m8767.c │ │ ├── sandbox.c │ │ └── tps65090.c │ ├── power_core.c │ ├── power_dialog.c │ ├── power_fsl.c │ ├── power_i2c.c │ ├── power_spi.c │ ├── regulator │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── act8846.c │ │ ├── fixed.c │ │ ├── max77686.c │ │ ├── pfuze100.c │ │ ├── pwm_regulator.c │ │ ├── regulator-uclass.c │ │ ├── rk808.c │ │ ├── s5m8767.c │ │ ├── sandbox.c │ │ └── tps65090_regulator.c │ ├── sy8106a.c │ ├── tps6586x.c │ ├── twl4030.c │ └── twl6030.c ├── pwm │ ├── Kconfig │ ├── Makefile │ ├── exynos_pwm.c │ ├── pwm-imx-util.c │ ├── pwm-imx-util.h │ ├── pwm-imx.c │ ├── pwm-uclass.c │ ├── rk_pwm.c │ └── tegra_pwm.c ├── qe │ ├── Makefile │ ├── fdt.c │ ├── qe.c │ ├── uccf.c │ ├── uccf.h │ ├── uec.c │ ├── uec.h │ ├── uec_phy.c │ └── uec_phy.h ├── ram │ ├── Kconfig │ ├── Makefile │ ├── ram-uclass.c │ └── sandbox_ram.c ├── remoteproc │ ├── Kconfig │ ├── Makefile │ ├── rproc-uclass.c │ ├── sandbox_testproc.c │ └── ti_power_proc.c ├── reset │ ├── Kconfig │ ├── Makefile │ ├── reset-uclass.c │ ├── sandbox-reset-test.c │ ├── sandbox-reset.c │ ├── tegra-car-reset.c │ └── tegra186-reset.c ├── rtc │ ├── Kconfig │ ├── Makefile │ ├── at91sam9_rtt.c │ ├── bfin_rtc.c │ ├── date.c │ ├── davinci.c │ ├── ds1302.c │ ├── ds1306.c │ ├── ds1307.c │ ├── ds1337.c │ ├── ds1374.c │ ├── ds1556.c │ ├── ds164x.c │ ├── ds174x.c │ ├── ds3231.c │ ├── ftrtc010.c │ ├── i2c_rtc_emul.c │ ├── imxdi.c │ ├── isl1208.c │ ├── m41t11.c │ ├── m41t60.c │ ├── m41t62.c │ ├── m41t94.c │ ├── m48t35ax.c │ ├── max6900.c │ ├── mc13xxx-rtc.c │ ├── mc146818.c │ ├── mcfrtc.c │ ├── mk48t59.c │ ├── mpc5xxx.c │ ├── mpc8xx.c │ ├── mvrtc.c │ ├── mvrtc.h │ ├── mx27rtc.c │ ├── mxsrtc.c │ ├── pcf8563.c │ ├── pl031.c │ ├── pt7c4338.c │ ├── rs5c372.c │ ├── rtc-uclass.c │ ├── rtc4543.c │ ├── rv3029.c │ ├── rx8025.c │ ├── s3c24x0_rtc.c │ ├── sandbox_rtc.c │ └── x1205.c ├── serial │ ├── Kconfig │ ├── Makefile │ ├── altera_jtag_uart.c │ ├── altera_uart.c │ ├── arm_dcc.c │ ├── atmel_usart.c │ ├── atmel_usart.h │ ├── lpc32xx_hsuart.c │ ├── mcfuart.c │ ├── ns16550.c │ ├── sandbox.c │ ├── serial-uclass.c │ ├── serial.c │ ├── serial_ar933x.c │ ├── serial_arc.c │ ├── serial_bcm283x_mu.c │ ├── serial_bfin.c │ ├── serial_efi.c │ ├── serial_linflexuart.c │ ├── serial_lpuart.c │ ├── serial_meson.c │ ├── serial_msm.c │ ├── serial_mvebu_a3700.c │ ├── serial_mxc.c │ ├── serial_ns16550.c │ ├── serial_pic32.c │ ├── serial_pl01x.c │ ├── serial_pl01x_internal.h │ ├── serial_pxa.c │ ├── serial_rockchip.c │ ├── serial_s3c24x0.c │ ├── serial_s5p.c │ ├── serial_sh.c │ ├── serial_sh.h │ ├── serial_stm32.c │ ├── serial_stm32x7.c │ ├── serial_stm32x7.h │ ├── serial_uniphier.c │ ├── serial_xuartlite.c │ ├── serial_zynq.c │ ├── usbtty.c │ └── usbtty.h ├── soc │ ├── Makefile │ └── keystone │ │ ├── Makefile │ │ └── keystone_serdes.c ├── sound │ ├── Kconfig │ ├── Makefile │ ├── max98095.c │ ├── max98095.h │ ├── samsung-i2s.c │ ├── sandbox.c │ ├── sound-i2s.c │ ├── sound.c │ ├── wm8994.c │ ├── wm8994.h │ └── wm8994_registers.h ├── spi │ ├── Kconfig │ ├── Makefile │ ├── altera_spi.c │ ├── armada100_spi.c │ ├── ath79_spi.c │ ├── atmel_dataflash_spi.c │ ├── atmel_spi.c │ ├── atmel_spi.h │ ├── bfin_spi.c │ ├── bfin_spi6xx.c │ ├── cadence_qspi.c │ ├── cadence_qspi.h │ ├── cadence_qspi_apb.c │ ├── cf_qspi.c │ ├── cf_spi.c │ ├── davinci_spi.c │ ├── designware_spi.c │ ├── ep93xx_spi.c │ ├── exynos_spi.c │ ├── fsl_dspi.c │ ├── fsl_espi.c │ ├── fsl_qspi.c │ ├── fsl_qspi.h │ ├── ich.c │ ├── ich.h │ ├── kirkwood_spi.c │ ├── lpc32xx_ssp.c │ ├── mpc52xx_spi.c │ ├── mpc8xxx_spi.c │ ├── mvebu_a3700_spi.c │ ├── mxc_spi.c │ ├── mxs_spi.c │ ├── omap3_spi.c │ ├── pic32_spi.c │ ├── rk_spi.c │ ├── rk_spi.h │ ├── sandbox_spi.c │ ├── sh_qspi.c │ ├── sh_spi.c │ ├── sh_spi.h │ ├── soft_spi.c │ ├── soft_spi_legacy.c │ ├── spi-emul-uclass.c │ ├── spi-uclass.c │ ├── spi.c │ ├── tegra114_spi.c │ ├── tegra20_sflash.c │ ├── tegra20_slink.c │ ├── tegra210_qspi.c │ ├── tegra_spi.h │ ├── ti_qspi.c │ ├── xilinx_spi.c │ ├── zynq_qspi.c │ └── zynq_spi.c ├── spmi │ ├── Kconfig │ ├── Makefile │ ├── spmi-msm.c │ ├── spmi-sandbox.c │ └── spmi-uclass.c ├── sysreset │ ├── Kconfig │ ├── Makefile │ ├── sysreset-uclass.c │ ├── sysreset_rk3036.c │ ├── sysreset_rk3288.c │ ├── sysreset_rk3399.c │ ├── sysreset_sandbox.c │ ├── sysreset_snapdragon.c │ └── sysreset_xtfpga.c ├── thermal │ ├── Kconfig │ ├── Makefile │ ├── imx_thermal.c │ └── thermal-uclass.c ├── timer │ ├── Kconfig │ ├── Makefile │ ├── altera_timer.c │ ├── omap-timer.c │ ├── sandbox_timer.c │ ├── timer-uclass.c │ └── tsc_timer.c ├── tpm │ ├── Kconfig │ ├── Makefile │ ├── tpm-uclass.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 ├── twserial │ ├── Makefile │ └── soft_tws.c ├── usb │ ├── Kconfig │ ├── common │ │ ├── Makefile │ │ ├── common.c │ │ ├── fsl-dt-fixup.c │ │ └── fsl-errata.c │ ├── dwc3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── core.h │ │ ├── dwc3-omap.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 │ │ ├── Makefile │ │ ├── asix.c │ │ ├── asix88179.c │ │ ├── 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 │ │ ├── designware_udc.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_dfu.c │ │ ├── f_dfu.h │ │ ├── f_fastboot.c │ │ ├── f_mass_storage.c │ │ ├── f_thor.c │ │ ├── f_thor.h │ │ ├── fotg210.c │ │ ├── g_dnl.c │ │ ├── gadget_chips.h │ │ ├── mpc8xx_udc.c │ │ ├── ndis.h │ │ ├── pxa25x_udc.c │ │ ├── pxa25x_udc.h │ │ ├── pxa27x_udc.c │ │ ├── rndis.c │ │ ├── rndis.h │ │ ├── storage_common.c │ │ ├── udc │ │ │ ├── Makefile │ │ │ └── udc-core.c │ │ └── usbstring.c │ ├── host │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── dwc2.c │ │ ├── dwc2.h │ │ ├── ehci-armada100.c │ │ ├── ehci-atmel.c │ │ ├── ehci-exynos.c │ │ ├── ehci-faraday.c │ │ ├── ehci-fsl.c │ │ ├── ehci-generic.c │ │ ├── ehci-hcd.c │ │ ├── ehci-marvell.c │ │ ├── ehci-mpc512x.c │ │ ├── ehci-msm.c │ │ ├── ehci-mx5.c │ │ ├── ehci-mx6.c │ │ ├── ehci-mxc.c │ │ ├── ehci-mxs.c │ │ ├── ehci-omap.c │ │ ├── ehci-pci.c │ │ ├── ehci-ppc4xx.c │ │ ├── ehci-rmobile.c │ │ ├── ehci-spear.c │ │ ├── ehci-sunxi.c │ │ ├── ehci-tegra.c │ │ ├── ehci-vct.c │ │ ├── ehci-vf.c │ │ ├── ehci-zynq.c │ │ ├── ehci.h │ │ ├── isp116x-hcd.c │ │ ├── isp116x.h │ │ ├── ohci-at91.c │ │ ├── ohci-da8xx.c │ │ ├── ohci-ep93xx.c │ │ ├── ohci-generic.c │ │ ├── ohci-hcd.c │ │ ├── ohci-lpc32xx.c │ │ ├── ohci-s3c24xx.c │ │ ├── ohci-s3c24xx.h │ │ ├── ohci-sunxi.c │ │ ├── ohci.h │ │ ├── r8a66597-hcd.c │ │ ├── r8a66597.h │ │ ├── sl811-hcd.c │ │ ├── sl811.h │ │ ├── usb-sandbox.c │ │ ├── usb-uclass.c │ │ ├── utmi-armada100.c │ │ ├── xhci-dwc3.c │ │ ├── xhci-exynos5.c │ │ ├── xhci-fsl.c │ │ ├── xhci-keystone.c │ │ ├── xhci-mem.c │ │ ├── xhci-mvebu.c │ │ ├── xhci-omap.c │ │ ├── xhci-pci.c │ │ ├── xhci-ring.c │ │ ├── xhci-rockchip.c │ │ ├── xhci-zynqmp.c │ │ ├── xhci.c │ │ └── xhci.h │ ├── musb-new │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am35x.c │ │ ├── linux-compat.h │ │ ├── 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 │ │ └── usb-compat.h │ ├── musb │ │ ├── Makefile │ │ ├── am35x.c │ │ ├── am35x.h │ │ ├── blackfin_usb.c │ │ ├── blackfin_usb.h │ │ ├── da8xx.c │ │ ├── davinci.c │ │ ├── davinci.h │ │ ├── musb_core.c │ │ ├── musb_core.h │ │ ├── musb_debug.h │ │ ├── musb_hcd.c │ │ ├── musb_hcd.h │ │ ├── musb_udc.c │ │ ├── omap3.c │ │ └── omap3.h │ ├── phy │ │ ├── Makefile │ │ ├── omap_usb_phy.c │ │ ├── rockchip_usb2_phy.c │ │ └── twl4030.c │ └── ulpi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── omap-ulpi-viewport.c │ │ ├── ulpi-viewport.c │ │ └── ulpi.c ├── video │ ├── Kconfig │ ├── Makefile │ ├── am335x-fb.c │ ├── am335x-fb.h │ ├── anx9804.c │ ├── anx9804.h │ ├── ati_ids.h │ ├── ati_radeon_fb.c │ ├── ati_radeon_fb.h │ ├── atmel_hlcdfb.c │ ├── atmel_lcdfb.c │ ├── backlight-uclass.c │ ├── bcm2835.c │ ├── bridge │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ps862x.c │ │ ├── ptn3460.c │ │ └── video-bridge-uclass.c │ ├── broadwell_igd.c │ ├── bus_vcxk.c │ ├── cfb_console.c │ ├── console_normal.c │ ├── console_rotate.c │ ├── console_truetype.c │ ├── coreboot_fb.c │ ├── ct69000.c │ ├── da8xx-fb.c │ ├── da8xx-fb.h │ ├── display-uclass.c │ ├── exynos │ │ ├── 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 │ │ └── exynos_pwm_bl.c │ ├── fonts │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ankacoder_c75_r.ttf │ │ ├── cantoraone_regular.ttf │ │ ├── nimbus_sans_l_regular.ttf │ │ └── rufscript010.ttf │ ├── formike.c │ ├── fsl_dcu_fb.c │ ├── fsl_diu_fb.c │ ├── hitachi_tx18d42vm_lcd.c │ ├── hitachi_tx18d42vm_lcd.h │ ├── i915_reg.h │ ├── imx25lcdc.c │ ├── ipu.h │ ├── ipu_common.c │ ├── ipu_disp.c │ ├── ipu_regs.h │ ├── l5f31188.c │ ├── ld9040.c │ ├── lg4573.c │ ├── mb862xx.c │ ├── mpc8xx_lcd.c │ ├── mvebu_lcd.c │ ├── mx3fb.c │ ├── mxc_ipuv3_fb.c │ ├── mxcfb.h │ ├── mxsfb.c │ ├── omap3_dss.c │ ├── panel-uclass.c │ ├── pwm_backlight.c │ ├── pxa_lcd.c │ ├── rockchip │ │ ├── Makefile │ │ ├── rk_edp.c │ │ ├── rk_hdmi.c │ │ ├── rk_lvds.c │ │ └── rk_vop.c │ ├── s3c-fb.c │ ├── s6e63d6.c │ ├── s6e8ax0.c │ ├── sandbox_sdl.c │ ├── scf0403_lcd.c │ ├── sed13806.c │ ├── sed156x.c │ ├── simple_panel.c │ ├── sm501.c │ ├── smiLynxEM.c │ ├── ssd2828.c │ ├── ssd2828.h │ ├── stb_truetype.h │ ├── sunxi_display.c │ ├── tegra.c │ ├── tegra124 │ │ ├── Makefile │ │ ├── display.c │ │ ├── displayport.h │ │ ├── dp.c │ │ ├── sor.c │ │ └── sor.h │ ├── vesa_fb.c │ ├── vidconsole-uclass.c │ ├── video-uclass.c │ ├── video_bmp.c │ ├── videomodes.c │ └── videomodes.h └── watchdog │ ├── Kconfig │ ├── Makefile │ ├── at91sam9_wdt.c │ ├── bfin_wdt.c │ ├── designware_wdt.c │ ├── ftwdt010_wdt.c │ ├── imx_watchdog.c │ ├── omap_wdt.c │ ├── s5p_wdt.c │ └── xilinx_tb_wdt.c ├── dts ├── .gitignore ├── Kconfig └── Makefile ├── 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 │ ├── interrupt.c │ ├── mem_to_mem_idma2intr.c │ ├── mips.lds │ ├── mips64.lds │ ├── nds32.lds │ ├── ppc_longjmp.S │ ├── ppc_setjmp.S │ ├── sched.c │ ├── smc91111_eeprom.c │ ├── smc911x_eeprom.c │ ├── sparc.lds │ ├── stubs.c │ ├── test_burst.c │ ├── test_burst.h │ ├── test_burst_lib.S │ └── timer.c ├── fs ├── Kconfig ├── Makefile ├── cbfs │ ├── Makefile │ └── cbfs.c ├── cramfs │ ├── Kconfig │ ├── Makefile │ ├── cramfs.c │ └── uncompress.c ├── ext4 │ ├── Kconfig │ ├── Makefile │ ├── crc16.c │ ├── crc16.h │ ├── 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 │ └── file.c ├── fs.c ├── jffs2 │ ├── Kconfig │ ├── LICENCE │ ├── Makefile │ ├── compr_lzo.c │ ├── compr_rtime.c │ ├── compr_rubin.c │ ├── compr_zlib.c │ ├── jffs2_1pass.c │ ├── jffs2_nand_1pass.c │ ├── jffs2_nand_private.h │ ├── jffs2_private.h │ ├── mergesort.c │ ├── mini_inflate.c │ └── summary.h ├── reiserfs │ ├── Kconfig │ ├── Makefile │ ├── dev.c │ ├── mode_string.c │ ├── reiserfs.c │ └── reiserfs_private.h ├── sandbox │ ├── Makefile │ └── sandboxfs.c ├── ubifs │ ├── Kconfig │ ├── Makefile │ ├── budget.c │ ├── crc16.c │ ├── crc16.h │ ├── 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 │ ├── 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 ├── .gitignore ├── ACEX1K.h ├── MCD_dma.h ├── MCD_progCheck.h ├── MCD_tasksInit.h ├── SA-1100.h ├── _exports.h ├── adc.h ├── addr_map.h ├── aes.h ├── ahci.h ├── ali512x.h ├── altera.h ├── ambapp.h ├── ambapp_ids.h ├── andestech │ └── andes_pcu.h ├── android_image.h ├── ansi.h ├── api_public.h ├── armcoremodule.h ├── asm-generic │ ├── atomic-long.h │ ├── bitops │ │ ├── __ffs.h │ │ ├── __fls.h │ │ ├── fls.h │ │ └── fls64.h │ ├── bitsperlong.h │ ├── global_data.h │ ├── gpio.h │ ├── ioctl.h │ ├── sections.h │ ├── signal.h │ ├── u-boot.h │ └── unaligned.h ├── asm-offsets.h ├── ata.h ├── atmel_hlcdc.h ├── atmel_lcd.h ├── atmel_lcdc.h ├── atmel_mci.h ├── autoboot.h ├── axp152.h ├── axp209.h ├── axp221.h ├── axp809.h ├── axp818.h ├── axp_pmic.h ├── backlight.h ├── bcd.h ├── bedbug │ ├── bedbug.h │ ├── ppc.h │ ├── regs.h │ ├── tables.h │ └── type.h ├── bios_emul.h ├── bitfield.h ├── blk.h ├── bmp_layout.h ├── bootcount.h ├── bootm.h ├── bootretry.h ├── bootstage.h ├── bouncebuf.h ├── bus_vcxk.h ├── bzlib.h ├── cavium │ ├── atf.h │ ├── atf_part.h │ └── thunderx_svc.h ├── cbfs.h ├── circbuf.h ├── cli.h ├── cli_hush.h ├── clk-uclass.h ├── clk.h ├── cmd_spl.h ├── command.h ├── common.h ├── common_timing_params.h ├── commproc.h ├── compiler.h ├── config_cmd_all.h ├── config_defaults.h ├── config_distro_bootcmd.h ├── config_distro_defaults.h ├── config_fallbacks.h ├── config_fsl_chain_trust.h ├── config_phylib_all_drivers.h ├── config_uncmd_spl.h ├── configs │ ├── 10m50_devboard.h │ ├── 3c120_devboard.h │ ├── B4860QDS.h │ ├── BSC9131RDB.h │ ├── BSC9132QDS.h │ ├── C29XPCIE.h │ ├── CPCI2DP.h │ ├── CPCI4052.h │ ├── M5208EVBE.h │ ├── M52277EVB.h │ ├── M5235EVB.h │ ├── M5249EVB.h │ ├── M5253DEMO.h │ ├── M5253EVBE.h │ ├── M5272C3.h │ ├── M5275EVB.h │ ├── M5282EVB.h │ ├── M53017EVB.h │ ├── M5329EVB.h │ ├── M5373EVB.h │ ├── M54418TWR.h │ ├── M54451EVB.h │ ├── M54455EVB.h │ ├── M5475EVB.h │ ├── M5485EVB.h │ ├── MIP405.h │ ├── MPC8308RDB.h │ ├── MPC8313ERDB.h │ ├── MPC8315ERDB.h │ ├── MPC8323ERDB.h │ ├── MPC832XEMDS.h │ ├── MPC8349EMDS.h │ ├── MPC8349ITX.h │ ├── MPC837XEMDS.h │ ├── MPC837XERDB.h │ ├── MPC8536DS.h │ ├── MPC8540ADS.h │ ├── MPC8541CDS.h │ ├── MPC8544DS.h │ ├── MPC8548CDS.h │ ├── MPC8555CDS.h │ ├── MPC8560ADS.h │ ├── MPC8568MDS.h │ ├── MPC8569MDS.h │ ├── MPC8572DS.h │ ├── MPC8610HPCD.h │ ├── MPC8641HPCN.h │ ├── MigoR.h │ ├── P1010RDB.h │ ├── P1022DS.h │ ├── P1023RDB.h │ ├── P2041RDB.h │ ├── P3041DS.h │ ├── P4080DS.h │ ├── P5020DS.h │ ├── P5040DS.h │ ├── PATI.h │ ├── PIP405.h │ ├── PLU405.h │ ├── PMC405DE.h │ ├── PMC440.h │ ├── T102xQDS.h │ ├── T102xRDB.h │ ├── T1040QDS.h │ ├── T104xRDB.h │ ├── T208xQDS.h │ ├── T208xRDB.h │ ├── T4240QDS.h │ ├── T4240RDB.h │ ├── TQM5200.h │ ├── TQM823L.h │ ├── TQM823M.h │ ├── TQM834x.h │ ├── TQM850L.h │ ├── TQM850M.h │ ├── TQM855L.h │ ├── TQM855M.h │ ├── TQM860L.h │ ├── TQM860M.h │ ├── TQM862L.h │ ├── TQM862M.h │ ├── TQM866M.h │ ├── TQM885D.h │ ├── UCP1020.h │ ├── VCMA9.h │ ├── VOM405.h │ ├── a3m071.h │ ├── a4m072.h │ ├── ac14xx.h │ ├── acadia.h │ ├── adp-ag101p.h │ ├── advantech_dms-ba16.h │ ├── alt.h │ ├── am335x_evm.h │ ├── am335x_igep0033.h │ ├── am335x_shc.h │ ├── am335x_sl50.h │ ├── am3517_crane.h │ ├── am3517_evm.h │ ├── am43xx_evm.h │ ├── am57xx_evm.h │ ├── amcc-common.h │ ├── amcore.h │ ├── ap121.h │ ├── ap143.h │ ├── ap325rxa.h │ ├── ap_sh4a_4a.h │ ├── apalis_t30.h │ ├── apf27.h │ ├── apx4devkit.h │ ├── aria.h │ ├── aristainetos-common.h │ ├── aristainetos.h │ ├── aristainetos2.h │ ├── aristainetos2b.h │ ├── armadillo-800eva.h │ ├── arndale.h │ ├── aspenite.h │ ├── astro_mcf5373l.h │ ├── at91-sama5_common.h │ ├── at91rm9200ek.h │ ├── at91sam9260ek.h │ ├── at91sam9261ek.h │ ├── at91sam9263ek.h │ ├── at91sam9m10g45ek.h │ ├── at91sam9n12ek.h │ ├── at91sam9rlek.h │ ├── at91sam9x5ek.h │ ├── atngw100.h │ ├── atngw100mkii.h │ ├── atstk1002.h │ ├── axs10x.h │ ├── baltos.h │ ├── bamboo.h │ ├── bav335x.h │ ├── bayleybay.h │ ├── bcm23550_w1d.h │ ├── bcm28155_ap.h │ ├── bcm_ep_board.h │ ├── bct-brettl2.h │ ├── beaver.h │ ├── bf506f-ezkit.h │ ├── bf518f-ezbrd.h │ ├── bf525-ucr2.h │ ├── bf526-ezbrd.h │ ├── bf527-ad7160-eval.h │ ├── bf527-ezkit.h │ ├── bf527-sdp.h │ ├── bf533-ezkit.h │ ├── bf533-stamp.h │ ├── bf537-minotaur.h │ ├── bf537-pnav.h │ ├── bf537-srv1.h │ ├── bf537-stamp.h │ ├── bf538f-ezkit.h │ ├── bf548-ezkit.h │ ├── bf561-acvilon.h │ ├── bf561-ezkit.h │ ├── bf609-ezkit.h │ ├── bfin_adi_common.h │ ├── bg0900.h │ ├── bk4r1.h │ ├── blackstamp.h │ ├── blackvme.h │ ├── blanche.h │ ├── boston.h │ ├── br4.h │ ├── brppt1.h │ ├── brxre1.h │ ├── bubinga.h │ ├── bur_am335x_common.h │ ├── bur_cfg_common.h │ ├── calimain.h │ ├── canmb.h │ ├── canyonlands.h │ ├── cardhu.h │ ├── cei-tk1-som.h │ ├── cgtqmx6eval.h │ ├── charon.h │ ├── chromebook_jerry.h │ ├── chromebook_link.h │ ├── chromebook_samus.h │ ├── chromebox_panther.h │ ├── clearfog.h │ ├── cm-bf527.h │ ├── cm-bf533.h │ ├── cm-bf537e.h │ ├── cm-bf537u.h │ ├── cm-bf548.h │ ├── cm-bf561.h │ ├── cm5200.h │ ├── cm_fx6.h │ ├── cm_t335.h │ ├── cm_t35.h │ ├── cm_t3517.h │ ├── cm_t43.h │ ├── cm_t54.h │ ├── cobra5272.h │ ├── colibri_imx7.h │ ├── colibri_pxa270.h │ ├── colibri_t20.h │ ├── colibri_t30.h │ ├── colibri_vf.h │ ├── conga-qeval20-qa3-e3845.h │ ├── controlcenterd.h │ ├── corenet_ds.h │ ├── corvus.h │ ├── cougarcanyon2.h │ ├── crownbay.h │ ├── cyrus.h │ ├── da850evm.h │ ├── dalmore.h │ ├── db-88f6720.h │ ├── db-88f6820-amc.h │ ├── db-88f6820-gp.h │ ├── db-mv784mp-gp.h │ ├── dbau1x00.h │ ├── devkit3250.h │ ├── devkit8000.h │ ├── dfi-bt700.h │ ├── digsy_mtc.h │ ├── dlvision-10g.h │ ├── dlvision.h │ ├── dnp5370.h │ ├── dns325.h │ ├── dockstar.h │ ├── dra7xx_evm.h │ ├── draco.h │ ├── dragonboard410c.h │ ├── dreamplug.h │ ├── ds414.h │ ├── duovero.h │ ├── e2220-1170.h │ ├── ea20.h │ ├── eb_cpu5282.h │ ├── eco5pk.h │ ├── ecovec.h │ ├── edb93xx.h │ ├── edminiv2.h │ ├── efi-x86.h │ ├── el6x_common.h │ ├── embestmx6boards.h │ ├── espresso7420.h │ ├── espt.h │ ├── etamin.h │ ├── ethernut5.h │ ├── evb_rk3036.h │ ├── evb_rk3288.h │ ├── evb_rk3399.h │ ├── exynos-common.h │ ├── exynos4-common.h │ ├── exynos5-common.h │ ├── exynos5-dt-common.h │ ├── exynos5250-common.h │ ├── exynos5420-common.h │ ├── exynos7420-common.h │ ├── fennec_rk3288.h │ ├── firefly-rk3288.h │ ├── flea3.h │ ├── galileo.h │ ├── gdppc440etx.h │ ├── ge_bx50v3.h │ ├── goflexhome.h │ ├── gose.h │ ├── gplugd.h │ ├── gr_cpci_ax2000.h │ ├── gr_ep2s60.h │ ├── gr_xc3s_1500.h │ ├── grasshopper.h │ ├── grsim.h │ ├── grsim_leon2.h │ ├── guruplug.h │ ├── gw_ventana.h │ ├── h2200.h │ ├── harmony.h │ ├── highbank.h │ ├── hikey.h │ ├── hrcon.h │ ├── ib62x0.h │ ├── ibf-dsp561.h │ ├── icon.h │ ├── iconnect.h │ ├── ids8313.h │ ├── imgtec_xilfpga.h │ ├── imx27lite-common.h │ ├── imx31_phycore.h │ ├── imx6_spl.h │ ├── inka4x0.h │ ├── integrator-common.h │ ├── integratorap.h │ ├── integratorcp.h │ ├── intip.h │ ├── io.h │ ├── io64.h │ ├── iocon.h │ ├── ip04.h │ ├── ipam390.h │ ├── ipek01.h │ ├── jetson-tk1.h │ ├── jupiter.h │ ├── k2e_evm.h │ ├── k2g_evm.h │ ├── k2hk_evm.h │ ├── k2l_evm.h │ ├── katmai.h │ ├── kc1.h │ ├── kilauea.h │ ├── km │ │ ├── keymile-common.h │ │ ├── km-powerpc.h │ │ ├── km8309-common.h │ │ ├── km8321-common.h │ │ ├── km83xx-common.h │ │ ├── km_arm.h │ │ └── kmp204x-common.h │ ├── km82xx.h │ ├── km8360.h │ ├── km_kirkwood.h │ ├── kmp204x.h │ ├── koelsch.h │ ├── kylin_rk3036.h │ ├── kzm9g.h │ ├── lacie_kw.h │ ├── lager.h │ ├── legoev3.h │ ├── ls1012a_common.h │ ├── ls1012afrdm.h │ ├── ls1012aqds.h │ ├── ls1012ardb.h │ ├── ls1021aqds.h │ ├── ls1021atwr.h │ ├── ls1043a_common.h │ ├── ls1043aqds.h │ ├── ls1043ardb.h │ ├── ls1046a_common.h │ ├── ls1046aqds.h │ ├── ls1046ardb.h │ ├── ls2080a_common.h │ ├── ls2080a_emu.h │ ├── ls2080a_simu.h │ ├── ls2080aqds.h │ ├── ls2080ardb.h │ ├── lsxl.h │ ├── luan.h │ ├── lwmon5.h │ ├── m28evk.h │ ├── m53evk.h │ ├── ma5d4evk.h │ ├── makalu.h │ ├── malta.h │ ├── manroland │ │ ├── common.h │ │ └── mpc5200-common.h │ ├── maxbcm.h │ ├── mcx.h │ ├── mecp5123.h │ ├── medcom-wide.h │ ├── meesc.h │ ├── meson-gxbb-common.h │ ├── microblaze-generic.h │ ├── miniarm_rk3288.h │ ├── minnowmax.h │ ├── motionpro.h │ ├── mpc5121-common.h │ ├── mpc5121ads.h │ ├── mpc8308_p1m.h │ ├── mpr2.h │ ├── ms7720se.h │ ├── ms7722se.h │ ├── ms7750se.h │ ├── mt_ventoux.h │ ├── munices.h │ ├── mv-common.h │ ├── mv-plug-common.h │ ├── mvebu_db-88f3720.h │ ├── mvebu_db-88f7040.h │ ├── mx23_olinuxino.h │ ├── mx23evk.h │ ├── mx25pdk.h │ ├── mx28evk.h │ ├── mx31ads.h │ ├── mx31pdk.h │ ├── mx35pdk.h │ ├── mx51evk.h │ ├── mx53ard.h │ ├── mx53evk.h │ ├── mx53loco.h │ ├── mx53smd.h │ ├── mx6_common.h │ ├── mx6cuboxi.h │ ├── mx6qarm2.h │ ├── mx6qsabreauto.h │ ├── mx6sabre_common.h │ ├── mx6sabresd.h │ ├── mx6slevk.h │ ├── mx6sxsabreauto.h │ ├── mx6sxsabresd.h │ ├── mx6ul_14x14_evk.h │ ├── mx6ullevk.h │ ├── mx7_common.h │ ├── mx7dsabresd.h │ ├── mxs.h │ ├── nas220.h │ ├── neo.h │ ├── nitrogen6x.h │ ├── nokia_rx51.h │ ├── novena.h │ ├── nsa310s.h │ ├── nsim.h │ ├── nyan-big.h │ ├── o2d.h │ ├── o2d300.h │ ├── o2dnt-common.h │ ├── o2dnt2.h │ ├── o2i.h │ ├── o2mnt.h │ ├── o3dnt.h │ ├── odroid-c2.h │ ├── odroid.h │ ├── odroid_xu3.h │ ├── omap3_beagle.h │ ├── omap3_cairo.h │ ├── omap3_evm.h │ ├── omap3_igep00x0.h │ ├── omap3_logic.h │ ├── omap3_overo.h │ ├── omap3_pandora.h │ ├── omap3_zoom1.h │ ├── omap4_panda.h │ ├── omap4_sdp4430.h │ ├── omap5_uevm.h │ ├── omapl138_lcdk.h │ ├── openrd.h │ ├── openrisc-generic.h │ ├── origen.h │ ├── ot1200.h │ ├── p1_p2_rdb_pc.h │ ├── p1_twr.h │ ├── p2371-0000.h │ ├── p2371-2180.h │ ├── p2571.h │ ├── p2771-0000.h │ ├── paz00.h │ ├── pb1x00.h │ ├── pcm030.h │ ├── pcm051.h │ ├── pcm052.h │ ├── pcm058.h │ ├── pdm360ng.h │ ├── peach-pi.h │ ├── peach-pit.h │ ├── pengwyn.h │ ├── pepper.h │ ├── pic32mzdask.h │ ├── pico-imx6ul.h │ ├── picosam9g45.h │ ├── platinum.h │ ├── platinum_picon.h │ ├── platinum_titanium.h │ ├── plutux.h │ ├── pm9261.h │ ├── pm9263.h │ ├── pm9g45.h │ ├── pogo_e02.h │ ├── popmetal_rk3288.h │ ├── porter.h │ ├── pr1.h │ ├── pxa-common.h │ ├── pxm2.h │ ├── qemu-mips.h │ ├── qemu-mips64.h │ ├── qemu-ppce500.h │ ├── qemu-x86.h │ ├── r0p7734.h │ ├── r2dplus.h │ ├── r7780mp.h │ ├── rastaban.h │ ├── rcar-gen2-common.h │ ├── rcar-gen3-common.h │ ├── redwood.h │ ├── rk3036_common.h │ ├── rk3288_common.h │ ├── rk3399_common.h │ ├── rock2.h │ ├── rpi.h │ ├── rsk7203.h │ ├── rsk7264.h │ ├── rsk7269.h │ ├── rut.h │ ├── s32v234evb.h │ ├── s5p_goni.h │ ├── s5pc210_universal.h │ ├── salvator-x.h │ ├── sama5d2_ptc.h │ ├── sama5d2_xplained.h │ ├── sama5d3_xplained.h │ ├── sama5d3xek.h │ ├── sama5d4_xplained.h │ ├── sama5d4ek.h │ ├── sandbox.h │ ├── sandbox_spl.h │ ├── sansa_fuze_plus.h │ ├── sbc8349.h │ ├── sbc8548.h │ ├── sbc8641d.h │ ├── sc_sps_1.h │ ├── seaboard.h │ ├── secomx6quq7.h │ ├── sequoia.h │ ├── sh7752evb.h │ ├── sh7753evb.h │ ├── sh7757lcr.h │ ├── sh7763rdp.h │ ├── sh7785lcr.h │ ├── sheevaplug.h │ ├── shmin.h │ ├── siemens-am33x-common.h │ ├── silk.h │ ├── smartweb.h │ ├── smdk2410.h │ ├── smdk5250.h │ ├── smdk5420.h │ ├── smdkc100.h │ ├── smdkv310.h │ ├── snapper9260.h │ ├── snapper9g45.h │ ├── sniper.h │ ├── snow.h │ ├── socfpga_arria5_socdk.h │ ├── socfpga_common.h │ ├── socfpga_cyclone5_socdk.h │ ├── socfpga_de0_nano_soc.h │ ├── socfpga_is1.h │ ├── socfpga_mcvevk.h │ ├── socfpga_sockit.h │ ├── socfpga_socrates.h │ ├── socfpga_sr1500.h │ ├── socfpga_vining_fpga.h │ ├── socrates.h │ ├── som-6896.h │ ├── som-db5800-som-6867.h │ ├── spear-common.h │ ├── spear3xx_evb.h │ ├── spear6xx_evb.h │ ├── spring.h │ ├── stm32f429-discovery.h │ ├── stm32f746-disco.h │ ├── stout.h │ ├── strider.h │ ├── stv0991.h │ ├── sun4i.h │ ├── sun50i.h │ ├── sun5i.h │ ├── sun6i.h │ ├── sun7i.h │ ├── sun8i.h │ ├── sun9i.h │ ├── sunxi-common.h │ ├── suvd3.h │ ├── t3corp.h │ ├── t4qds.h │ ├── tam3517-common.h │ ├── tao3530.h │ ├── taurus.h │ ├── tb100.h │ ├── tbs2910.h │ ├── tcm-bf518.h │ ├── tcm-bf537.h │ ├── tec-ng.h │ ├── tec.h │ ├── tegra-common-post.h │ ├── tegra-common-usb-gadget.h │ ├── tegra-common.h │ ├── tegra114-common.h │ ├── tegra124-common.h │ ├── tegra186-common.h │ ├── tegra20-common.h │ ├── tegra210-common.h │ ├── tegra30-common.h │ ├── theadorable.h │ ├── thuban.h │ ├── thunderx_88xx.h │ ├── ti814x_evm.h │ ├── ti816x_evm.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 │ ├── titanium.h │ ├── tplink_wdr4300.h │ ├── tqma6.h │ ├── tqma6_mba6.h │ ├── tqma6_wru4.h │ ├── trats.h │ ├── trats2.h │ ├── tricorder.h │ ├── trimslice.h │ ├── ts4800.h │ ├── tuxx1.h │ ├── twister.h │ ├── udoo.h │ ├── uniphier.h │ ├── usb_a9263.h │ ├── usbarmory.h │ ├── v38b.h │ ├── vct.h │ ├── ve8313.h │ ├── venice2.h │ ├── ventana.h │ ├── vexpress_aemv8a.h │ ├── vexpress_ca15_tc2.h │ ├── vexpress_ca5x2.h │ ├── vexpress_ca9x4.h │ ├── vexpress_common.h │ ├── vf610twr.h │ ├── vinco.h │ ├── vme8349.h │ ├── walnut.h │ ├── wandboard.h │ ├── warp.h │ ├── warp7.h │ ├── whistler.h │ ├── woodburn.h │ ├── woodburn_common.h │ ├── woodburn_sd.h │ ├── work_92105.h │ ├── x600.h │ ├── x86-chromebook.h │ ├── x86-common.h │ ├── xfi3.h │ ├── xilinx-ppc.h │ ├── xilinx-ppc405-generic.h │ ├── xilinx-ppc440-generic.h │ ├── xilinx_zynqmp.h │ ├── xilinx_zynqmp_ep.h │ ├── xilinx_zynqmp_zc1751_xm015_dc1.h │ ├── xilinx_zynqmp_zc1751_xm016_dc2.h │ ├── xilinx_zynqmp_zc1751_xm019_dc5.h │ ├── xilinx_zynqmp_zcu102.h │ ├── xpedite1000.h │ ├── xpedite517x.h │ ├── xpedite520x.h │ ├── xpedite537x.h │ ├── xpedite550x.h │ ├── xpress.h │ ├── xtfpga.h │ ├── yosemite.h │ ├── yucca.h │ ├── zc5202.h │ ├── zc5601.h │ ├── zipitz2.h │ ├── zmx25.h │ ├── zynq-common.h │ ├── zynq_zc70x.h │ └── zynq_zybo.h ├── console.h ├── cortina.h ├── cpsw.h ├── cpu.h ├── cramfs │ └── cramfs_fs.h ├── crc.h ├── cros_ec.h ├── cros_ec_message.h ├── dataflash.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 │ ├── device-internal.h │ ├── device.h │ ├── lists.h │ ├── pinctrl.h │ ├── platdata.h │ ├── platform_data │ │ ├── lpc32xx_hsuart.h │ │ ├── net_ethoc.h │ │ ├── serial_bcm283x_mu.h │ │ ├── serial_coldfire.h │ │ ├── serial_mxc.h │ │ ├── serial_pl01x.h │ │ ├── serial_sh.h │ │ ├── serial_stm32.h │ │ └── serial_stm32x7.h │ ├── root.h │ ├── test.h │ ├── uclass-id.h │ ├── uclass-internal.h │ ├── uclass.h │ └── util.h ├── dm9000.h ├── dma.h ├── dp83848.h ├── ds1722.h ├── ds4510.h ├── dt-bindings │ ├── clock │ │ ├── at91.h │ │ ├── boston-clock.h │ │ ├── exynos7420-clk.h │ │ ├── hi6220-clock.h │ │ ├── imx6ul-clock.h │ │ ├── maxim,max77802.h │ │ ├── microchip,clock.h │ │ ├── rk3036-cru.h │ │ ├── rk3288-cru.h │ │ ├── rk3399-cru.h │ │ ├── rockchip,rk808.h │ │ ├── sun4i-a10-pll2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── tegra114-car.h │ │ ├── tegra124-car-common.h │ │ ├── tegra124-car.h │ │ ├── tegra186-clock.h │ │ ├── tegra20-car.h │ │ ├── tegra210-car.h │ │ └── tegra30-car.h │ ├── comphy │ │ └── comphy_data.h │ ├── dma │ │ ├── at91.h │ │ └── sun4i-a10.h │ ├── gpio │ │ ├── gpio.h │ │ ├── meson-gxbb-gpio.h │ │ ├── tegra-gpio.h │ │ ├── tegra186-gpio.h │ │ └── x86-gpio.h │ ├── input │ │ ├── input.h │ │ └── linux-event-codes.h │ ├── interrupt-controller │ │ ├── arm-gic.h │ │ ├── irq.h │ │ └── mips-gic.h │ ├── interrupt-router │ │ └── intel-irq.h │ ├── mailbox │ │ └── tegra186-hsp.h │ ├── memory │ │ ├── tegra114-mc.h │ │ ├── tegra124-mc.h │ │ ├── tegra210-mc.h │ │ └── tegra30-mc.h │ ├── mrc │ │ └── quark.h │ ├── net │ │ └── ti-dp83867.h │ ├── phy │ │ └── phy.h │ ├── pinctrl │ │ ├── am33xx.h │ │ ├── am43xx.h │ │ ├── at91.h │ │ ├── dra.h │ │ ├── omap.h │ │ ├── pinctrl-tegra-xusb.h │ │ ├── pinctrl-tegra.h │ │ ├── rockchip.h │ │ └── sun4i-a10.h │ ├── pmic │ │ └── sandbox_pmic.h │ ├── power-domain │ │ └── rk3288.h │ ├── power │ │ └── tegra186-powergate.h │ ├── pwm │ │ └── pwm.h │ ├── regulator │ │ └── maxim,max77802.h │ ├── reset │ │ ├── altr,rst-mgr.h │ │ ├── amlogic,meson-gxbb-reset.h │ │ ├── sun8i-h3-ccu.h │ │ ├── tegra124-car.h │ │ └── tegra186-reset.h │ ├── sound │ │ └── tlv320aic31xx-micbias.h │ ├── thermal │ │ ├── tegra124-soctherm.h │ │ └── thermal.h │ └── video │ │ └── rk3288.h ├── dt-structs.h ├── dtt.h ├── dwc3-omap-uboot.h ├── dwc3-uboot.h ├── dwmmc.h ├── e500.h ├── ec_commands.h ├── edid.h ├── eeprom_field.h ├── eeprom_layout.h ├── efi.h ├── efi_api.h ├── efi_loader.h ├── elf.h ├── env_attr.h ├── env_callback.h ├── env_default.h ├── env_flags.h ├── environment.h ├── errno.h ├── ethsw.h ├── exports.h ├── ext4fs.h ├── ext_common.h ├── exynos_lcd.h ├── faraday │ ├── ftahbc020s.h │ ├── ftpci100.h │ ├── ftpmu010.h │ ├── ftsdc010.h │ ├── ftsdmc020.h │ ├── ftsdmc021.h │ ├── ftsmc020.h │ ├── fttmr010.h │ └── ftwdt010_wdt.h ├── fastboot.h ├── fat.h ├── fb_mmc.h ├── fb_nand.h ├── fdt.h ├── fdt_simplefb.h ├── fdt_support.h ├── fdtdec.h ├── fis.h ├── flash.h ├── fm_eth.h ├── fpga.h ├── fs.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_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_dcu_fb.h ├── fsl_ddr.h ├── fsl_ddr_dimm_params.h ├── fsl_ddr_sdram.h ├── fsl_ddrc_version.h ├── fsl_devdis.h ├── fsl_diu_fb.h ├── fsl_dspi.h ├── fsl_dtsec.h ├── fsl_errata.h ├── fsl_esdhc.h ├── fsl_fman.h ├── fsl_ifc.h ├── fsl_immap.h ├── fsl_mdio.h ├── fsl_memac.h ├── fsl_mmdc.h ├── fsl_pmic.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 ├── g_dnl.h ├── gdsys_fpga.h ├── grlib │ ├── apbuart.h │ ├── gptimer.h │ ├── greth.h │ └── irqmp.h ├── gt64120.h ├── hash.h ├── hw_sha.h ├── hwconfig.h ├── i2c.h ├── i2c_eeprom.h ├── i2s.h ├── i8042.h ├── ide.h ├── image-sparse.h ├── image.h ├── imx_thermal.h ├── initcall.h ├── input.h ├── inttypes.h ├── iomux.h ├── ioports.h ├── iotrace.h ├── ipu_pixfmt.h ├── jffs2 │ ├── compr_rubin.h │ ├── jffs2.h │ ├── jffs2_1pass.h │ ├── load_kernel.h │ └── mini_inflate.h ├── key_matrix.h ├── keyboard.h ├── kgdb.h ├── lattice.h ├── lcd.h ├── lcd_console.h ├── lcdvideo.h ├── ld9040.h ├── led-display.h ├── led.h ├── libata.h ├── libfdt.h ├── libfdt_env.h ├── libtizen.h ├── linker_lists.h ├── linux │ ├── apm_bios.h │ ├── bch.h │ ├── bitops.h │ ├── bitrev.h │ ├── bug.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── compat.h │ ├── compiler-clang.h │ ├── compiler-gcc.h │ ├── compiler-intel.h │ ├── compiler.h │ ├── crc32.h │ ├── crc7.h │ ├── crc8.h │ ├── ctype.h │ ├── drm_dp_helper.h │ ├── edd.h │ ├── err.h │ ├── errno.h │ ├── ethtool.h │ ├── fb.h │ ├── immap_qe.h │ ├── input.h │ ├── io.h │ ├── ioctl.h │ ├── ioport.h │ ├── kbuild.h │ ├── kconfig.h │ ├── kernel.h │ ├── linkage.h │ ├── linux_string.h │ ├── list.h │ ├── list_sort.h │ ├── log2.h │ ├── lzo.h │ ├── math64.h │ ├── mbus.h │ ├── mc146818rtc.h │ ├── mdio.h │ ├── mii.h │ ├── mtd │ │ ├── bbm.h │ │ ├── concat.h │ │ ├── doc2000.h │ │ ├── flashchip.h │ │ ├── fsl_upm.h │ │ ├── fsmc_nand.h │ │ ├── mtd.h │ │ ├── nand.h │ │ ├── nand_bch.h │ │ ├── nand_ecc.h │ │ ├── ndfc.h │ │ ├── omap_elm.h │ │ ├── omap_gpmc.h │ │ ├── onenand.h │ │ ├── onenand_regs.h │ │ ├── partitions.h │ │ ├── samsung_onenand.h │ │ ├── st_smi.h │ │ └── ubi.h │ ├── netdevice.h │ ├── poison.h │ ├── posix_types.h │ ├── psci.h │ ├── rbtree.h │ ├── rbtree_augmented.h │ ├── screen_info.h │ ├── serial_reg.h │ ├── sizes.h │ ├── stat.h │ ├── stddef.h │ ├── string.h │ ├── stringify.h │ ├── time.h │ ├── types.h │ ├── unaligned │ │ ├── access_ok.h │ │ ├── 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 │ │ ├── xhci-fsl.h │ │ └── xhci-omap.h ├── linux_logo.h ├── lmb.h ├── logbuff.h ├── lxt971a.h ├── lynxkdi.h ├── lzma │ ├── LzmaDec.h │ ├── LzmaTools.h │ └── LzmaTypes.h ├── mailbox-uclass.h ├── mailbox.h ├── malloc.h ├── mapmem.h ├── mb862xx.h ├── mc13783.h ├── mc13892.h ├── mc34704.h ├── mc9sdz60.h ├── memalign.h ├── membuff.h ├── menu.h ├── micrel.h ├── mii_phy.h ├── miiphy.h ├── mipi_display.h ├── misc.h ├── mk48t59.h ├── mmc.h ├── mpc106.h ├── mpc5xx.h ├── mpc5xxx.h ├── mpc5xxx_sdma.h ├── mpc823_lcd.h ├── mpc8260.h ├── mpc8260_irq.h ├── mpc83xx.h ├── mpc85xx.h ├── mpc86xx.h ├── mpc8xx.h ├── mpc8xx_irq.h ├── msc01.h ├── mtd.h ├── mtd │ ├── cfi_flash.h │ ├── mtd-abi.h │ └── ubi-user.h ├── mtd_node.h ├── mv88e6352.h ├── mvebu_mmc.h ├── mvmfp.h ├── nand.h ├── net.h ├── net │ └── tftp.h ├── netdev.h ├── ns16550.h ├── ns87308.h ├── nuvoton_nct6102d.h ├── onenand_uboot.h ├── os.h ├── palmas.h ├── panel.h ├── part.h ├── part_efi.h ├── pc_keyb.h ├── pca953x.h ├── pca9564.h ├── pca9698.h ├── pch.h ├── pci.h ├── pci_gt64120.h ├── pci_ids.h ├── pci_msc01.h ├── pci_rom.h ├── pcmcia.h ├── pcmcia │ └── yenta.h ├── pe.h ├── phy.h ├── phys2bus.h ├── physmem.h ├── post.h ├── power-domain-uclass.h ├── power-domain.h ├── power │ ├── act8846_pmic.h │ ├── as3722.h │ ├── battery.h │ ├── fg_battery_cell_params.h │ ├── hi6553_pmic.h │ ├── ltc3676_pmic.h │ ├── max17042_fg.h │ ├── max77686_pmic.h │ ├── max77693_fg.h │ ├── max77693_muic.h │ ├── max77693_pmic.h │ ├── max77696_pmic.h │ ├── max8997_muic.h │ ├── max8997_pmic.h │ ├── max8998_pmic.h │ ├── pfuze100_pmic.h │ ├── pfuze3000_pmic.h │ ├── pmic.h │ ├── power_chrg.h │ ├── regulator.h │ ├── rk808_pmic.h │ ├── rn5t567_pmic.h │ ├── s2mps11.h │ ├── s5m8767.h │ ├── sandbox_pmic.h │ ├── tps62362.h │ ├── tps65090.h │ ├── tps65217.h │ ├── tps65218.h │ └── tps65910.h ├── ppc_asm.tmpl ├── ppc_defs.h ├── ps2mult.h ├── pwm.h ├── pwrseq.h ├── pxa_lcd.h ├── qfw.h ├── radeon.h ├── ram.h ├── rc4.h ├── regmap.h ├── reiserfs.h ├── remoteproc.h ├── reset-uclass.h ├── reset.h ├── rtc.h ├── rtc_def.h ├── s6e63d6.h ├── s_record.h ├── samsung-usb-phy-uboot.h ├── samsung │ ├── exynos5-dt-types.h │ └── misc.h ├── sandbox-adc.h ├── sandboxblockdev.h ├── sandboxfs.h ├── sata.h ├── scf0403_lcd.h ├── scsi.h ├── sdhci.h ├── search.h ├── sed13806.h ├── sed156x.h ├── serial.h ├── sh_pfc.h ├── sh_tmu.h ├── sja1000.h ├── slre.h ├── sm501.h ├── smsc_lpc47m.h ├── smsc_sio1007.h ├── sound.h ├── sparse_defs.h ├── sparse_format.h ├── spartan2.h ├── spartan3.h ├── spd.h ├── spd_sdram.h ├── spi.h ├── spi_flash.h ├── spl.h ├── splash.h ├── spmi │ └── spmi.h ├── status_led.h ├── stdio_dev.h ├── stdlib.h ├── stratixII.h ├── sx151x.h ├── sy8106a.h ├── sym53c8xx.h ├── synopsys │ └── dwcddr21mctl.h ├── syscon.h ├── sysreset.h ├── tca642x.h ├── tegra-kbc.h ├── test │ ├── env.h │ ├── overlay.h │ ├── suites.h │ ├── test.h │ └── ut.h ├── thermal.h ├── thor.h ├── ti-usb-phy-uboot.h ├── timer.h ├── timestamp.h ├── tmu.h ├── tpm.h ├── tps6586x.h ├── trace.h ├── tsec.h ├── tsi108.h ├── tsi148.h ├── twl4030.h ├── twl6030.h ├── tws.h ├── u-boot │ ├── crc.h │ ├── md5.h │ ├── rsa-checksum.h │ ├── rsa-mod-exp.h │ ├── rsa.h │ ├── sha1.h │ ├── sha256.h │ ├── u-boot.lds.h │ └── zlib.h ├── ubi_uboot.h ├── ubifs_uboot.h ├── ubispl.h ├── universe.h ├── usb.h ├── usb │ ├── ci_udc.h │ ├── designware_udc.h │ ├── dwc2_udc.h │ ├── ehci-ci.h │ ├── fotg210.h │ ├── fusbh200.h │ ├── lin_gadget_compat.h │ ├── mpc8xx_udc.h │ ├── pxa27x_udc.h │ ├── udc.h │ └── ulpi.h ├── usb_cdc_acm.h ├── usb_defs.h ├── usb_ether.h ├── usb_mass_storage.h ├── usbdescriptors.h ├── usbdevice.h ├── usbroothubdes.h ├── uuid.h ├── vbe.h ├── version.h ├── video.h ├── video_bridge.h ├── video_console.h ├── video_easylogo.h ├── video_fb.h ├── video_font.h ├── video_font_4x6.h ├── video_font_data.h ├── video_logo.h ├── virtex2.h ├── vsc7385.h ├── vsc9953.h ├── vsprintf.h ├── vxworks.h ├── w83c553f.h ├── wait_bit.h ├── watchdog.h ├── winbond_w83627.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 ├── zynqmppl.h └── zynqpl.h ├── lib ├── Kconfig ├── Makefile ├── addr_map.c ├── aes.c ├── asm-offsets.c ├── bch.c ├── bitrev.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 ├── circbuf.c ├── crc16.c ├── crc32.c ├── crc7.c ├── crc8.c ├── ctype.c ├── dhry │ ├── Kconfig │ ├── Makefile │ ├── cmd_dhry.c │ ├── dhry.h │ ├── dhry_1.c │ └── dhry_2.c ├── display_options.c ├── div64.c ├── efi │ ├── Kconfig │ ├── Makefile │ ├── efi.c │ ├── efi_app.c │ ├── efi_info.c │ └── efi_stub.c ├── efi_loader │ ├── Kconfig │ ├── Makefile │ ├── efi_boottime.c │ ├── efi_console.c │ ├── efi_disk.c │ ├── efi_gop.c │ ├── efi_image_loader.c │ ├── efi_memory.c │ ├── efi_net.c │ └── efi_runtime.c ├── errno.c ├── errno_str.c ├── fdtdec.c ├── fdtdec_common.c ├── fdtdec_test.c ├── gunzip.c ├── gzip.c ├── hang.c ├── hashtable.c ├── initcall.c ├── ldiv.c ├── libfdt │ ├── Makefile │ ├── README │ ├── fdt.c │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ ├── fdt_overlay.c │ ├── fdt_region.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.swig │ ├── libfdt_internal.h │ ├── setup.py │ └── 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 ├── panic.c ├── physmem.c ├── qsort.c ├── rand.c ├── rbtree.c ├── rc4.c ├── rsa │ ├── Kconfig │ ├── Makefile │ ├── rsa-checksum.c │ ├── rsa-mod-exp.c │ ├── rsa-sign.c │ └── rsa-verify.c ├── sha1.c ├── sha256.c ├── slre.c ├── string.c ├── strmhz.c ├── strto.c ├── time.c ├── tiny-printf.c ├── tizen │ ├── Makefile │ ├── tizen.c │ ├── tizen_logo_16bpp.h │ └── tizen_logo_16bpp_gzip.h ├── tpm.c ├── trace.c ├── uuid.c ├── vsprintf.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 │ ├── zlib.c │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── net ├── Kconfig ├── Makefile ├── arp.c ├── arp.h ├── bootp.c ├── bootp.h ├── cdp.c ├── cdp.h ├── checksum.c ├── dns.c ├── dns.h ├── eth-uclass.c ├── eth_common.c ├── eth_internal.h ├── eth_legacy.c ├── link_local.c ├── link_local.h ├── net.c ├── net_rand.h ├── nfs.c ├── nfs.h ├── ping.c ├── ping.h ├── rarp.c ├── rarp.h ├── sntp.c ├── sntp.h └── tftp.c ├── post ├── Makefile ├── board │ ├── lwmon5 │ │ ├── Makefile │ │ ├── dsp.c │ │ ├── dspic.c │ │ ├── fpga.c │ │ ├── gdc.c │ │ ├── sysmon.c │ │ └── watchdog.c │ └── pdm360ng │ │ ├── Makefile │ │ └── coproc_com.c ├── cpu │ ├── mpc83xx │ │ ├── Makefile │ │ └── ecc.c │ ├── mpc8xx │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cache_8xx.S │ │ ├── ether.c │ │ ├── spr.c │ │ ├── uart.c │ │ ├── usb.c │ │ └── watchdog.c │ └── ppc4xx │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cache_4xx.S │ │ ├── denali_ecc.c │ │ ├── ether.c │ │ ├── fpu.c │ │ ├── ocm.c │ │ ├── spr.c │ │ ├── uart.c │ │ └── watchdog.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 ├── Lindent ├── Makefile ├── Makefile.autoconf ├── Makefile.build ├── Makefile.clean ├── Makefile.extrawarn ├── Makefile.host ├── Makefile.lib ├── Makefile.spl ├── Makefile.uncmd_spl ├── basic │ ├── .gitignore │ ├── Makefile │ └── fixdep.c ├── binutils-version.sh ├── build-whitelist.sh ├── check-config.sh ├── checkpatch.pl ├── checkstack.pl ├── cleanpatch ├── coccinelle │ └── net │ │ └── mdio_register.cocci ├── config_whitelist.txt ├── coreboot.sed ├── docproc.c ├── dtc-version.sh ├── fill_scrapyard.py ├── gcc-stack-usage.sh ├── gcc-version.sh ├── get_default_envs.sh ├── get_maintainer.pl ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── POTFILES.in │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kxgettext.c │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── kernel-doc ├── ld-version.sh ├── mailmapper ├── mkmakefile ├── objdiff ├── setlocalversion └── show-gnu-make ├── snapshot.commit ├── test ├── Kconfig ├── Makefile ├── README ├── cmd_ut.c ├── command_ut.c ├── common.sh ├── compression.c ├── dm │ ├── Kconfig │ ├── Makefile │ ├── adc.c │ ├── blk.c │ ├── bus.c │ ├── clk.c │ ├── cmd_dm.c │ ├── core.c │ ├── eth.c │ ├── gpio.c │ ├── i2c.c │ ├── led.c │ ├── mailbox.c │ ├── mmc.c │ ├── pci.c │ ├── pmic.c │ ├── power-domain.c │ ├── ram.c │ ├── regmap.c │ ├── regulator.c │ ├── remoteproc.c │ ├── reset.c │ ├── rtc.c │ ├── sf.c │ ├── spi.c │ ├── spmi.c │ ├── syscon.c │ ├── sysreset.c │ ├── test-driver.c │ ├── test-fdt.c │ ├── test-main.c │ ├── test-uclass.c │ ├── timer.c │ ├── usb.c │ └── video.c ├── env │ ├── Kconfig │ ├── Makefile │ ├── attr.c │ └── cmd_ut_env.c ├── fs │ ├── fat-noncontig-test.sh │ └── fs-test.sh ├── image │ ├── test-fit.py │ └── test-imagetools.sh ├── overlay │ ├── Kconfig │ ├── Makefile │ ├── cmd_ut_overlay.c │ ├── test-fdt-base.dts │ └── test-fdt-overlay.dts ├── py │ ├── .gitignore │ ├── README.md │ ├── conftest.py │ ├── multiplexed_log.css │ ├── multiplexed_log.py │ ├── pytest.ini │ ├── test.py │ ├── tests │ │ ├── test_000_version.py │ │ ├── test_dfu.py │ │ ├── test_env.py │ │ ├── test_help.py │ │ ├── test_hush_if_test.py │ │ ├── test_md.py │ │ ├── test_net.py │ │ ├── test_ofplatdata.py │ │ ├── test_sandbox_exit.py │ │ ├── test_shell_basics.py │ │ ├── test_sleep.py │ │ ├── test_ums.py │ │ ├── test_unknown_cmd.py │ │ ├── test_ut.py │ │ ├── test_vboot.py │ │ └── vboot │ │ │ ├── sandbox-kernel.dts │ │ │ ├── sandbox-u-boot.dts │ │ │ ├── sign-configs-sha1.its │ │ │ ├── sign-configs-sha256.its │ │ │ ├── sign-images-sha1.its │ │ │ └── sign-images-sha256.its │ ├── 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 ├── time_ut.c ├── trace │ └── test-trace.sh └── ut.c └── tools ├── .gitignore ├── Makefile ├── aisimage.c ├── aisimage.h ├── atmel_pmecc_params.c ├── atmelimage.c ├── bin2header.c ├── bmp_logo.c ├── buildman ├── .gitignore ├── README ├── board.py ├── bsettings.py ├── builder.py ├── builderthread.py ├── buildman ├── buildman.py ├── cmdline.py ├── control.py ├── func_test.py ├── kconfiglib.py ├── test.py └── toolchain.py ├── default_image.c ├── dtoc ├── .gitignore ├── dtoc ├── dtoc.py ├── fdt.py ├── fdt_fallback.py ├── fdt_normal.py ├── fdt_select.py └── fdt_util.py ├── dumpimage.c ├── dumpimage.h ├── easylogo ├── Makefile ├── easylogo.c ├── linux_blackfin.tga ├── linux_logo.tga └── runme.sh ├── env ├── .gitignore ├── Makefile ├── README ├── aes.c ├── crc32.c ├── ctype.c ├── env_attr.c ├── env_flags.c ├── fw_env.c ├── fw_env.config ├── fw_env.h ├── fw_env_main.c └── linux_string.c ├── envcrc.c ├── fdt_host.h ├── fdtgrep.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 ├── genboardscfg.py ├── getline.c ├── getline.h ├── gpheader.h ├── gpimage-common.c ├── gpimage.c ├── ifdtool.c ├── ifdtool.h ├── image-host.c ├── imagetool.c ├── imagetool.h ├── img2brec.sh ├── img2srec.c ├── imximage.c ├── imximage.h ├── jtagconsole ├── kermit ├── README ├── dot.kermrc ├── flash_param ├── send_cmd └── send_image ├── kwbimage.c ├── kwbimage.h ├── kwboot.c ├── logos ├── atmel.bmp ├── compulab.bmp ├── denx-comp.bmp ├── denx.bmp ├── esd.bmp ├── freescale.bmp ├── gateworks.bmp ├── intercontrol.bmp ├── linux_logo_ttcontrol.bmp ├── linux_logo_ttcontrol_palfin.bmp ├── ronetix.bmp ├── siemens.bmp ├── solidrun.bmp ├── syteco.bmp ├── toradex.bmp └── wandboard.bmp ├── lpc32xximage.c ├── microcode-tool ├── microcode-tool.py ├── mingw_support.c ├── mingw_support.h ├── mkenvimage.c ├── mkexynosspl.c ├── mkimage.c ├── mkimage.h ├── mksunxiboot.c ├── moveconfig.py ├── 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 ├── .gitignore ├── README ├── __init__.py ├── checkpatch.py ├── command.py ├── commit.py ├── cros_subprocess.py ├── get_maintainer.py ├── gitutil.py ├── patchstream.py ├── patman ├── patman.py ├── project.py ├── series.py ├── settings.py ├── setup.py ├── terminal.py ├── test.py ├── tools.py └── tout.py ├── pbl_crc32.c ├── pbl_crc32.h ├── pblimage.c ├── pblimage.h ├── proftool.c ├── relocate-rela.c ├── rkcommon.c ├── rkcommon.h ├── rkimage.c ├── rkmux.py ├── rksd.c ├── rkspi.c ├── scripts └── define2mk.sed ├── socfpgaimage.c ├── tbot ├── README ├── README-ToDo ├── README.create_a_new_testcase └── README.install ├── ublimage.c ├── ublimage.h ├── ubsha1.c ├── vybridimage.c ├── xway-swap-bytes.c ├── zynqimage.c └── zynqmpimage.c /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Kconfig -------------------------------------------------------------------------------- /Licenses/Exceptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Licenses/Exceptions -------------------------------------------------------------------------------- /Licenses/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Licenses/OFL.txt -------------------------------------------------------------------------------- /Licenses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Licenses/README -------------------------------------------------------------------------------- /Licenses/isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Licenses/isc.txt -------------------------------------------------------------------------------- /Licenses/x11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Licenses/x11.txt -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/README -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/README -------------------------------------------------------------------------------- /api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/api.c -------------------------------------------------------------------------------- /api/api_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/api_display.c -------------------------------------------------------------------------------- /api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/api_net.c -------------------------------------------------------------------------------- /api/api_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/api_private.h -------------------------------------------------------------------------------- /api/api_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/api/api_storage.c -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/Kconfig -------------------------------------------------------------------------------- /arch/arc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arc/Kconfig -------------------------------------------------------------------------------- /arch/arc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arc/Makefile -------------------------------------------------------------------------------- /arch/arc/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arc/config.mk -------------------------------------------------------------------------------- /arch/arc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arc/lib/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arc/lib/cpu.c -------------------------------------------------------------------------------- /arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arm/Kconfig -------------------------------------------------------------------------------- /arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arm/Makefile -------------------------------------------------------------------------------- /arch/arm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arm/config.mk -------------------------------------------------------------------------------- /arch/arm/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/arm/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/arm/lib/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arm/lib/crt0.S -------------------------------------------------------------------------------- /arch/arm/lib/div0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arm/lib/div0.c -------------------------------------------------------------------------------- /arch/arm/lib/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/arm/lib/spl.c -------------------------------------------------------------------------------- /arch/arm/mach-stm32/stm32f1/Kconfig: -------------------------------------------------------------------------------- 1 | if STM32F1 2 | 3 | endif 4 | -------------------------------------------------------------------------------- /arch/avr32/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/avr32/Kconfig -------------------------------------------------------------------------------- /arch/avr32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/avr32/Makefile -------------------------------------------------------------------------------- /arch/avr32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf527/BF523_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF522_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf527/BF523_def.h: -------------------------------------------------------------------------------- 1 | #include "BF522_def.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf527/BF525_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF524_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf527/BF525_def.h: -------------------------------------------------------------------------------- 1 | #include "BF524_def.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf527/BF527_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF526_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf527/BF527_def.h: -------------------------------------------------------------------------------- 1 | #include "BF526_def.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf533/BF532_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF531_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf533/BF533_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF532_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf537/BF537_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF536_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf537/BF537_def.h: -------------------------------------------------------------------------------- 1 | #include "BF536_def.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf538/BF539_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF538_cdef.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/mach-bf538/BF539_def.h: -------------------------------------------------------------------------------- 1 | #include "BF538_def.h" 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/blackfin/lib/.gitignore: -------------------------------------------------------------------------------- 1 | u-boot.lds 2 | -------------------------------------------------------------------------------- /arch/m68k/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/m68k/Kconfig -------------------------------------------------------------------------------- /arch/m68k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/m68k/Makefile -------------------------------------------------------------------------------- /arch/m68k/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/m68k/config.mk -------------------------------------------------------------------------------- /arch/microblaze/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/microblaze/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/mips/Kconfig -------------------------------------------------------------------------------- /arch/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/mips/Makefile -------------------------------------------------------------------------------- /arch/mips/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/mips/config.mk -------------------------------------------------------------------------------- /arch/mips/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/mips/cpu/cpu.c -------------------------------------------------------------------------------- /arch/mips/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/mips/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/mips/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nds32/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/nds32/Kconfig -------------------------------------------------------------------------------- /arch/nds32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/nds32/Makefile -------------------------------------------------------------------------------- /arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/nios2/Kconfig -------------------------------------------------------------------------------- /arch/nios2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/nios2/Makefile -------------------------------------------------------------------------------- /arch/nios2/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/nios2/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/nios2/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /arch/powerpc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/sandbox/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/sandbox/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/sh/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sh/Kconfig -------------------------------------------------------------------------------- /arch/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sh/Makefile -------------------------------------------------------------------------------- /arch/sh/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sh/config.mk -------------------------------------------------------------------------------- /arch/sh/lib/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sh/lib/bootm.c -------------------------------------------------------------------------------- /arch/sh/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sh/lib/time.c -------------------------------------------------------------------------------- /arch/sparc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sparc/Kconfig -------------------------------------------------------------------------------- /arch/sparc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/sparc/Makefile -------------------------------------------------------------------------------- /arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/Kconfig -------------------------------------------------------------------------------- /arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/Makefile -------------------------------------------------------------------------------- /arch/x86/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/config.mk -------------------------------------------------------------------------------- /arch/x86/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/cpu/cpu.c -------------------------------------------------------------------------------- /arch/x86/cpu/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/cpu/irq.c -------------------------------------------------------------------------------- /arch/x86/cpu/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/cpu/mtrr.c -------------------------------------------------------------------------------- /arch/x86/cpu/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/cpu/pci.c -------------------------------------------------------------------------------- /arch/x86/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /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/x86/lib/bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/lib/bios.c -------------------------------------------------------------------------------- /arch/x86/lib/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/lib/bios.h -------------------------------------------------------------------------------- /arch/x86/lib/e820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/lib/e820.c -------------------------------------------------------------------------------- /arch/x86/lib/gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/lib/gcc.c -------------------------------------------------------------------------------- /arch/x86/lib/sfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/x86/lib/sfi.c -------------------------------------------------------------------------------- /arch/xtensa/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/arch/xtensa/Kconfig -------------------------------------------------------------------------------- /arch/xtensa/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /board/a3m071/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/a3m071/README -------------------------------------------------------------------------------- /board/br4/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/br4/Kconfig -------------------------------------------------------------------------------- /board/br4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/br4/Makefile -------------------------------------------------------------------------------- /board/br4/br4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/br4/br4.c -------------------------------------------------------------------------------- /board/canmb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/canmb/Kconfig -------------------------------------------------------------------------------- /board/canmb/canmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/canmb/canmb.c -------------------------------------------------------------------------------- /board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /board/dfi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/dfi/Kconfig -------------------------------------------------------------------------------- /board/efi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/efi/Kconfig -------------------------------------------------------------------------------- /board/espt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/espt/Kconfig -------------------------------------------------------------------------------- /board/espt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/espt/Makefile -------------------------------------------------------------------------------- /board/espt/espt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/espt/espt.c -------------------------------------------------------------------------------- /board/h2200/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/h2200/Kconfig -------------------------------------------------------------------------------- /board/h2200/h2200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/h2200/h2200.c -------------------------------------------------------------------------------- /board/intel/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/intel/Kconfig -------------------------------------------------------------------------------- /board/ip04/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/ip04/Kconfig -------------------------------------------------------------------------------- /board/ip04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/ip04/Makefile -------------------------------------------------------------------------------- /board/ip04/ip04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/ip04/ip04.c -------------------------------------------------------------------------------- /board/is1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/is1/Makefile -------------------------------------------------------------------------------- /board/is1/socfpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/is1/socfpga.c -------------------------------------------------------------------------------- /board/l+g/vinco/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += vinco.o 2 | -------------------------------------------------------------------------------- /board/mpr2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/mpr2/Kconfig -------------------------------------------------------------------------------- /board/mpr2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/mpr2/Makefile -------------------------------------------------------------------------------- /board/mpr2/mpr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/mpr2/mpr2.c -------------------------------------------------------------------------------- /board/overo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/overo/Kconfig -------------------------------------------------------------------------------- /board/overo/overo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/overo/overo.c -------------------------------------------------------------------------------- /board/overo/overo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/overo/overo.h -------------------------------------------------------------------------------- /board/overo/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/overo/spl.c -------------------------------------------------------------------------------- /board/pb1x00/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/pb1x00/README -------------------------------------------------------------------------------- /board/pr1/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/pr1/Kconfig -------------------------------------------------------------------------------- /board/pr1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/pr1/Makefile -------------------------------------------------------------------------------- /board/pr1/pr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/pr1/pr1.c -------------------------------------------------------------------------------- /board/sbc8349/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sbc8349/pci.c -------------------------------------------------------------------------------- /board/sbc8548/ddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sbc8548/ddr.c -------------------------------------------------------------------------------- /board/sbc8548/law.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sbc8548/law.c -------------------------------------------------------------------------------- /board/sbc8548/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sbc8548/tlb.c -------------------------------------------------------------------------------- /board/seco/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/seco/Kconfig -------------------------------------------------------------------------------- /board/shmin/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/shmin/Kconfig -------------------------------------------------------------------------------- /board/shmin/shmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/shmin/shmin.c -------------------------------------------------------------------------------- /board/sunxi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sunxi/Kconfig -------------------------------------------------------------------------------- /board/sunxi/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sunxi/ahci.c -------------------------------------------------------------------------------- /board/sunxi/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sunxi/board.c -------------------------------------------------------------------------------- /board/sunxi/gmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/sunxi/gmac.c -------------------------------------------------------------------------------- /board/t3corp/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/t3corp/init.S -------------------------------------------------------------------------------- /board/ti/evm/evm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/ti/evm/evm.c -------------------------------------------------------------------------------- /board/ti/evm/evm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/ti/evm/evm.h -------------------------------------------------------------------------------- /board/udoo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/udoo/Kconfig -------------------------------------------------------------------------------- /board/udoo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/udoo/Makefile -------------------------------------------------------------------------------- /board/udoo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/udoo/README -------------------------------------------------------------------------------- /board/udoo/udoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/udoo/udoo.c -------------------------------------------------------------------------------- /board/v38b/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/v38b/Kconfig -------------------------------------------------------------------------------- /board/v38b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/v38b/Makefile -------------------------------------------------------------------------------- /board/v38b/v38b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/v38b/v38b.c -------------------------------------------------------------------------------- /board/warp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp/Kconfig -------------------------------------------------------------------------------- /board/warp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp/Makefile -------------------------------------------------------------------------------- /board/warp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp/README -------------------------------------------------------------------------------- /board/warp/warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp/warp.c -------------------------------------------------------------------------------- /board/warp7/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp7/Kconfig -------------------------------------------------------------------------------- /board/warp7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp7/README -------------------------------------------------------------------------------- /board/warp7/warp7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/board/warp7/warp7.c -------------------------------------------------------------------------------- /board/xilinx/zynq/.gitignore: -------------------------------------------------------------------------------- 1 | /ps7_init_gpl.[ch] 2 | -------------------------------------------------------------------------------- /cmd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/Kconfig -------------------------------------------------------------------------------- /cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/Makefile -------------------------------------------------------------------------------- /cmd/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/aes.c -------------------------------------------------------------------------------- /cmd/ambapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ambapp.c -------------------------------------------------------------------------------- /cmd/armflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/armflash.c -------------------------------------------------------------------------------- /cmd/bdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bdinfo.c -------------------------------------------------------------------------------- /cmd/bedbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bedbug.c -------------------------------------------------------------------------------- /cmd/blkcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/blkcache.c -------------------------------------------------------------------------------- /cmd/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/blob.c -------------------------------------------------------------------------------- /cmd/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bmp.c -------------------------------------------------------------------------------- /cmd/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/boot.c -------------------------------------------------------------------------------- /cmd/bootefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bootefi.c -------------------------------------------------------------------------------- /cmd/booti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/booti.c -------------------------------------------------------------------------------- /cmd/bootldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bootldr.c -------------------------------------------------------------------------------- /cmd/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bootm.c -------------------------------------------------------------------------------- /cmd/bootmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bootmenu.c -------------------------------------------------------------------------------- /cmd/bootstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bootstage.c -------------------------------------------------------------------------------- /cmd/bootz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/bootz.c -------------------------------------------------------------------------------- /cmd/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/cache.c -------------------------------------------------------------------------------- /cmd/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/cbfs.c -------------------------------------------------------------------------------- /cmd/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/clk.c -------------------------------------------------------------------------------- /cmd/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/console.c -------------------------------------------------------------------------------- /cmd/cplbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/cplbinfo.c -------------------------------------------------------------------------------- /cmd/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/cpu.c -------------------------------------------------------------------------------- /cmd/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/cramfs.c -------------------------------------------------------------------------------- /cmd/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/date.c -------------------------------------------------------------------------------- /cmd/dcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/dcr.c -------------------------------------------------------------------------------- /cmd/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/demo.c -------------------------------------------------------------------------------- /cmd/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/dfu.c -------------------------------------------------------------------------------- /cmd/diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/diag.c -------------------------------------------------------------------------------- /cmd/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/disk.c -------------------------------------------------------------------------------- /cmd/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/display.c -------------------------------------------------------------------------------- /cmd/dtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/dtt.c -------------------------------------------------------------------------------- /cmd/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/echo.c -------------------------------------------------------------------------------- /cmd/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/eeprom.c -------------------------------------------------------------------------------- /cmd/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/efi.c -------------------------------------------------------------------------------- /cmd/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/elf.c -------------------------------------------------------------------------------- /cmd/ethsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ethsw.c -------------------------------------------------------------------------------- /cmd/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/exit.c -------------------------------------------------------------------------------- /cmd/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ext2.c -------------------------------------------------------------------------------- /cmd/ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ext4.c -------------------------------------------------------------------------------- /cmd/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fastboot.c -------------------------------------------------------------------------------- /cmd/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fat.c -------------------------------------------------------------------------------- /cmd/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fdc.c -------------------------------------------------------------------------------- /cmd/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fdt.c -------------------------------------------------------------------------------- /cmd/fitupd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fitupd.c -------------------------------------------------------------------------------- /cmd/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/flash.c -------------------------------------------------------------------------------- /cmd/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fpga.c -------------------------------------------------------------------------------- /cmd/fpgad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fpgad.c -------------------------------------------------------------------------------- /cmd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fs.c -------------------------------------------------------------------------------- /cmd/fs_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fs_uuid.c -------------------------------------------------------------------------------- /cmd/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/fuse.c -------------------------------------------------------------------------------- /cmd/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/gettime.c -------------------------------------------------------------------------------- /cmd/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/gpio.c -------------------------------------------------------------------------------- /cmd/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/gpt.c -------------------------------------------------------------------------------- /cmd/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/hash.c -------------------------------------------------------------------------------- /cmd/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/help.c -------------------------------------------------------------------------------- /cmd/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/host.c -------------------------------------------------------------------------------- /cmd/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/i2c.c -------------------------------------------------------------------------------- /cmd/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ide.c -------------------------------------------------------------------------------- /cmd/immap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/immap.c -------------------------------------------------------------------------------- /cmd/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ini.c -------------------------------------------------------------------------------- /cmd/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/io.c -------------------------------------------------------------------------------- /cmd/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/iotrace.c -------------------------------------------------------------------------------- /cmd/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/irq.c -------------------------------------------------------------------------------- /cmd/itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/itest.c -------------------------------------------------------------------------------- /cmd/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/jffs2.c -------------------------------------------------------------------------------- /cmd/ldrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ldrinfo.c -------------------------------------------------------------------------------- /cmd/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/led.c -------------------------------------------------------------------------------- /cmd/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/license.c -------------------------------------------------------------------------------- /cmd/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/load.c -------------------------------------------------------------------------------- /cmd/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/log.c -------------------------------------------------------------------------------- /cmd/lzmadec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/lzmadec.c -------------------------------------------------------------------------------- /cmd/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mac.c -------------------------------------------------------------------------------- /cmd/md5sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/md5sum.c -------------------------------------------------------------------------------- /cmd/mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mdio.c -------------------------------------------------------------------------------- /cmd/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mem.c -------------------------------------------------------------------------------- /cmd/mfsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mfsl.c -------------------------------------------------------------------------------- /cmd/mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mii.c -------------------------------------------------------------------------------- /cmd/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/misc.c -------------------------------------------------------------------------------- /cmd/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mmc.c -------------------------------------------------------------------------------- /cmd/mmc_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mmc_spi.c -------------------------------------------------------------------------------- /cmd/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mp.c -------------------------------------------------------------------------------- /cmd/mtdparts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/mtdparts.c -------------------------------------------------------------------------------- /cmd/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/nand.c -------------------------------------------------------------------------------- /cmd/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/net.c -------------------------------------------------------------------------------- /cmd/nvedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/nvedit.c -------------------------------------------------------------------------------- /cmd/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/onenand.c -------------------------------------------------------------------------------- /cmd/otp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/otp.c -------------------------------------------------------------------------------- /cmd/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/part.c -------------------------------------------------------------------------------- /cmd/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/pci.c -------------------------------------------------------------------------------- /cmd/pcmcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/pcmcia.c -------------------------------------------------------------------------------- /cmd/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/pmic.c -------------------------------------------------------------------------------- /cmd/portio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/portio.c -------------------------------------------------------------------------------- /cmd/pxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/pxe.c -------------------------------------------------------------------------------- /cmd/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/qfw.c -------------------------------------------------------------------------------- /cmd/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/read.c -------------------------------------------------------------------------------- /cmd/reginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/reginfo.c -------------------------------------------------------------------------------- /cmd/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/regulator.c -------------------------------------------------------------------------------- /cmd/reiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/reiser.c -------------------------------------------------------------------------------- /cmd/remoteproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/remoteproc.c -------------------------------------------------------------------------------- /cmd/sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/sata.c -------------------------------------------------------------------------------- /cmd/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/scsi.c -------------------------------------------------------------------------------- /cmd/setexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/setexpr.c -------------------------------------------------------------------------------- /cmd/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/sf.c -------------------------------------------------------------------------------- /cmd/sha1sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/sha1sum.c -------------------------------------------------------------------------------- /cmd/softswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/softswitch.c -------------------------------------------------------------------------------- /cmd/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/sound.c -------------------------------------------------------------------------------- /cmd/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/source.c -------------------------------------------------------------------------------- /cmd/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/spi.c -------------------------------------------------------------------------------- /cmd/spibootldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/spibootldr.c -------------------------------------------------------------------------------- /cmd/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/spl.c -------------------------------------------------------------------------------- /cmd/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/strings.c -------------------------------------------------------------------------------- /cmd/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/terminal.c -------------------------------------------------------------------------------- /cmd/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/test.c -------------------------------------------------------------------------------- /cmd/thordown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/thordown.c -------------------------------------------------------------------------------- /cmd/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/time.c -------------------------------------------------------------------------------- /cmd/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/tpm.c -------------------------------------------------------------------------------- /cmd/tpm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/tpm_test.c -------------------------------------------------------------------------------- /cmd/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/trace.c -------------------------------------------------------------------------------- /cmd/tsi148.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/tsi148.c -------------------------------------------------------------------------------- /cmd/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ubi.c -------------------------------------------------------------------------------- /cmd/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ubifs.c -------------------------------------------------------------------------------- /cmd/universe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/universe.c -------------------------------------------------------------------------------- /cmd/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/unzip.c -------------------------------------------------------------------------------- /cmd/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/usb.c -------------------------------------------------------------------------------- /cmd/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/version.c -------------------------------------------------------------------------------- /cmd/ximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/ximg.c -------------------------------------------------------------------------------- /cmd/yaffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/yaffs2.c -------------------------------------------------------------------------------- /cmd/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/zfs.c -------------------------------------------------------------------------------- /cmd/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/cmd/zip.c -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/autoboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/autoboot.c -------------------------------------------------------------------------------- /common/bedbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/bedbug.c -------------------------------------------------------------------------------- /common/board_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/board_f.c -------------------------------------------------------------------------------- /common/board_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/board_info.c -------------------------------------------------------------------------------- /common/board_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/board_r.c -------------------------------------------------------------------------------- /common/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/bootm.c -------------------------------------------------------------------------------- /common/bootm_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/bootm_os.c -------------------------------------------------------------------------------- /common/bootretry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/bootretry.c -------------------------------------------------------------------------------- /common/bootstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/bootstage.c -------------------------------------------------------------------------------- /common/bouncebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/bouncebuf.c -------------------------------------------------------------------------------- /common/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/cli.c -------------------------------------------------------------------------------- /common/cli_hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/cli_hush.c -------------------------------------------------------------------------------- /common/cli_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/cli_simple.c -------------------------------------------------------------------------------- /common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/command.c -------------------------------------------------------------------------------- /common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/console.c -------------------------------------------------------------------------------- /common/cros_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/cros_ec.c -------------------------------------------------------------------------------- /common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/ddr_spd.c -------------------------------------------------------------------------------- /common/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/dfu.c -------------------------------------------------------------------------------- /common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/dlmalloc.c -------------------------------------------------------------------------------- /common/dlmalloc.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/dlmalloc.src -------------------------------------------------------------------------------- /common/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/edid.c -------------------------------------------------------------------------------- /common/env_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_attr.c -------------------------------------------------------------------------------- /common/env_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_common.c -------------------------------------------------------------------------------- /common/env_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_eeprom.c -------------------------------------------------------------------------------- /common/env_ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_ext4.c -------------------------------------------------------------------------------- /common/env_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_fat.c -------------------------------------------------------------------------------- /common/env_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_flags.c -------------------------------------------------------------------------------- /common/env_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_flash.c -------------------------------------------------------------------------------- /common/env_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_mmc.c -------------------------------------------------------------------------------- /common/env_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_nand.c -------------------------------------------------------------------------------- /common/env_nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_nvram.c -------------------------------------------------------------------------------- /common/env_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_remote.c -------------------------------------------------------------------------------- /common/env_sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_sata.c -------------------------------------------------------------------------------- /common/env_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_sf.c -------------------------------------------------------------------------------- /common/env_ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/env_ubi.c -------------------------------------------------------------------------------- /common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/exports.c -------------------------------------------------------------------------------- /common/fb_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/fb_mmc.c -------------------------------------------------------------------------------- /common/fb_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/fb_nand.c -------------------------------------------------------------------------------- /common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/flash.c -------------------------------------------------------------------------------- /common/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/hash.c -------------------------------------------------------------------------------- /common/hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/hwconfig.c -------------------------------------------------------------------------------- /common/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/ide.c -------------------------------------------------------------------------------- /common/image-fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/image-fdt.c -------------------------------------------------------------------------------- /common/image-fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/image-fit.c -------------------------------------------------------------------------------- /common/image-sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/image-sig.c -------------------------------------------------------------------------------- /common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/image.c -------------------------------------------------------------------------------- /common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/iomux.c -------------------------------------------------------------------------------- /common/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/iotrace.c -------------------------------------------------------------------------------- /common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/kallsyms.c -------------------------------------------------------------------------------- /common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/kgdb.c -------------------------------------------------------------------------------- /common/kgdb_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/kgdb_stubs.c -------------------------------------------------------------------------------- /common/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/lcd.c -------------------------------------------------------------------------------- /common/lynxkdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/lynxkdi.c -------------------------------------------------------------------------------- /common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/main.c -------------------------------------------------------------------------------- /common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/memsize.c -------------------------------------------------------------------------------- /common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/menu.c -------------------------------------------------------------------------------- /common/miiphyutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/miiphyutil.c -------------------------------------------------------------------------------- /common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/s_record.c -------------------------------------------------------------------------------- /common/sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/sata.c -------------------------------------------------------------------------------- /common/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/scsi.c -------------------------------------------------------------------------------- /common/spl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/spl/Kconfig -------------------------------------------------------------------------------- /common/spl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/spl/Makefile -------------------------------------------------------------------------------- /common/spl/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/spl/spl.c -------------------------------------------------------------------------------- /common/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/splash.c -------------------------------------------------------------------------------- /common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/stdio.c -------------------------------------------------------------------------------- /common/system_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/system_map.c -------------------------------------------------------------------------------- /common/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/update.c -------------------------------------------------------------------------------- /common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/usb.c -------------------------------------------------------------------------------- /common/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/usb_hub.c -------------------------------------------------------------------------------- /common/usb_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/usb_kbd.c -------------------------------------------------------------------------------- /common/xyzModem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/common/xyzModem.c -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/config.mk -------------------------------------------------------------------------------- /disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/Makefile -------------------------------------------------------------------------------- /disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part.c -------------------------------------------------------------------------------- /disk/part_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_amiga.c -------------------------------------------------------------------------------- /disk/part_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_amiga.h -------------------------------------------------------------------------------- /disk/part_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_dos.c -------------------------------------------------------------------------------- /disk/part_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_dos.h -------------------------------------------------------------------------------- /disk/part_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_efi.c -------------------------------------------------------------------------------- /disk/part_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_iso.c -------------------------------------------------------------------------------- /disk/part_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_iso.h -------------------------------------------------------------------------------- /disk/part_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_mac.c -------------------------------------------------------------------------------- /disk/part_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/disk/part_mac.h -------------------------------------------------------------------------------- /doc/README.ARC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ARC -------------------------------------------------------------------------------- /doc/README.AVR32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.AVR32 -------------------------------------------------------------------------------- /doc/README.JFFS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.JFFS2 -------------------------------------------------------------------------------- /doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.LED -------------------------------------------------------------------------------- /doc/README.MPC866: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.MPC866 -------------------------------------------------------------------------------- /doc/README.N1213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.N1213 -------------------------------------------------------------------------------- /doc/README.NDS32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.NDS32 -------------------------------------------------------------------------------- /doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.OFT -------------------------------------------------------------------------------- /doc/README.POST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.POST -------------------------------------------------------------------------------- /doc/README.SNTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.SNTP -------------------------------------------------------------------------------- /doc/README.SPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.SPL -------------------------------------------------------------------------------- /doc/README.TPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.TPL -------------------------------------------------------------------------------- /doc/README.VLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.VLAN -------------------------------------------------------------------------------- /doc/README.ag101p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ag101p -------------------------------------------------------------------------------- /doc/README.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.arm64 -------------------------------------------------------------------------------- /doc/README.at91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.at91 -------------------------------------------------------------------------------- /doc/README.autoboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.autoboot -------------------------------------------------------------------------------- /doc/README.b4860qds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.b4860qds -------------------------------------------------------------------------------- /doc/README.bedbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.bedbug -------------------------------------------------------------------------------- /doc/README.blackfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.blackfin -------------------------------------------------------------------------------- /doc/README.bootmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.bootmenu -------------------------------------------------------------------------------- /doc/README.boston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.boston -------------------------------------------------------------------------------- /doc/README.bus_vcxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.bus_vcxk -------------------------------------------------------------------------------- /doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.cfi -------------------------------------------------------------------------------- /doc/README.clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.clang -------------------------------------------------------------------------------- /doc/README.commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.commands -------------------------------------------------------------------------------- /doc/README.console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.console -------------------------------------------------------------------------------- /doc/README.davinci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.davinci -------------------------------------------------------------------------------- /doc/README.dfutftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.dfutftp -------------------------------------------------------------------------------- /doc/README.distro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.distro -------------------------------------------------------------------------------- /doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.dns -------------------------------------------------------------------------------- /doc/README.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.efi -------------------------------------------------------------------------------- /doc/README.enetaddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.enetaddr -------------------------------------------------------------------------------- /doc/README.ext4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ext4 -------------------------------------------------------------------------------- /doc/README.falcon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.falcon -------------------------------------------------------------------------------- /doc/README.fec_mxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.fec_mxc -------------------------------------------------------------------------------- /doc/README.fsl-clk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.fsl-clk -------------------------------------------------------------------------------- /doc/README.fsl-ddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.fsl-ddr -------------------------------------------------------------------------------- /doc/README.fsl-dpaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.fsl-dpaa -------------------------------------------------------------------------------- /doc/README.fsl_iim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.fsl_iim -------------------------------------------------------------------------------- /doc/README.fuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.fuse -------------------------------------------------------------------------------- /doc/README.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.gpt -------------------------------------------------------------------------------- /doc/README.hwconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.hwconfig -------------------------------------------------------------------------------- /doc/README.i2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.i2c -------------------------------------------------------------------------------- /doc/README.imx25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.imx25 -------------------------------------------------------------------------------- /doc/README.imx27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.imx27 -------------------------------------------------------------------------------- /doc/README.imx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.imx5 -------------------------------------------------------------------------------- /doc/README.imx6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.imx6 -------------------------------------------------------------------------------- /doc/README.imximage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.imximage -------------------------------------------------------------------------------- /doc/README.iomux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.iomux -------------------------------------------------------------------------------- /doc/README.kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.kconfig -------------------------------------------------------------------------------- /doc/README.kwbimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.kwbimage -------------------------------------------------------------------------------- /doc/README.lynxkdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.lynxkdi -------------------------------------------------------------------------------- /doc/README.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.m68k -------------------------------------------------------------------------------- /doc/README.malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.malta -------------------------------------------------------------------------------- /doc/README.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.menu -------------------------------------------------------------------------------- /doc/README.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mips -------------------------------------------------------------------------------- /doc/README.mpc5xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mpc5xx -------------------------------------------------------------------------------- /doc/README.mpc74xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mpc74xx -------------------------------------------------------------------------------- /doc/README.mpc85xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mpc85xx -------------------------------------------------------------------------------- /doc/README.mxc_hab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mxc_hab -------------------------------------------------------------------------------- /doc/README.mxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mxs -------------------------------------------------------------------------------- /doc/README.mxsimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.mxsimage -------------------------------------------------------------------------------- /doc/README.nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.nand -------------------------------------------------------------------------------- /doc/README.ne2000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ne2000 -------------------------------------------------------------------------------- /doc/README.nios2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.nios2 -------------------------------------------------------------------------------- /doc/README.odroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.odroid -------------------------------------------------------------------------------- /doc/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.omap3 -------------------------------------------------------------------------------- /doc/README.pblimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.pblimage -------------------------------------------------------------------------------- /doc/README.plan9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.plan9 -------------------------------------------------------------------------------- /doc/README.ppc440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ppc440 -------------------------------------------------------------------------------- /doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.pxe -------------------------------------------------------------------------------- /doc/README.rmobile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.rmobile -------------------------------------------------------------------------------- /doc/README.rockchip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.rockchip -------------------------------------------------------------------------------- /doc/README.s5pc1xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.s5pc1xx -------------------------------------------------------------------------------- /doc/README.sata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.sata -------------------------------------------------------------------------------- /doc/README.sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.sched -------------------------------------------------------------------------------- /doc/README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.sh -------------------------------------------------------------------------------- /doc/README.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.sha1 -------------------------------------------------------------------------------- /doc/README.silent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.silent -------------------------------------------------------------------------------- /doc/README.socfpga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.socfpga -------------------------------------------------------------------------------- /doc/README.spear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.spear -------------------------------------------------------------------------------- /doc/README.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.trace -------------------------------------------------------------------------------- /doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ubi -------------------------------------------------------------------------------- /doc/README.ubispl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ubispl -------------------------------------------------------------------------------- /doc/README.ublimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.ublimage -------------------------------------------------------------------------------- /doc/README.uniphier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.uniphier -------------------------------------------------------------------------------- /doc/README.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.update -------------------------------------------------------------------------------- /doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.usb -------------------------------------------------------------------------------- /doc/README.vf610: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.vf610 -------------------------------------------------------------------------------- /doc/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.video -------------------------------------------------------------------------------- /doc/README.vxworks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.vxworks -------------------------------------------------------------------------------- /doc/README.watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.watchdog -------------------------------------------------------------------------------- /doc/README.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.x86 -------------------------------------------------------------------------------- /doc/README.xtensa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.xtensa -------------------------------------------------------------------------------- /doc/README.zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.zfs -------------------------------------------------------------------------------- /doc/README.zynq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/README.zynq -------------------------------------------------------------------------------- /doc/SPI/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/SPI/status.txt -------------------------------------------------------------------------------- /doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/git-mailrc -------------------------------------------------------------------------------- /doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/kwboot.1 -------------------------------------------------------------------------------- /doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/doc/mkimage.1 -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/adc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/adc/Kconfig -------------------------------------------------------------------------------- /drivers/clk/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/clk/Kconfig -------------------------------------------------------------------------------- /drivers/core/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/core/dump.c -------------------------------------------------------------------------------- /drivers/core/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/core/root.c -------------------------------------------------------------------------------- /drivers/core/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/core/util.c -------------------------------------------------------------------------------- /drivers/cpu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/cpu/Kconfig -------------------------------------------------------------------------------- /drivers/dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/dfu/Kconfig -------------------------------------------------------------------------------- /drivers/dfu/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/dfu/dfu.c -------------------------------------------------------------------------------- /drivers/dma/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/dma/Kconfig -------------------------------------------------------------------------------- /drivers/fpga/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/fpga/fpga.c -------------------------------------------------------------------------------- /drivers/hwmon/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/i2c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/i2c/Kconfig -------------------------------------------------------------------------------- /drivers/led/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/led/Kconfig -------------------------------------------------------------------------------- /drivers/misc/qfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/misc/qfw.c -------------------------------------------------------------------------------- /drivers/mmc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/mmc/Kconfig -------------------------------------------------------------------------------- /drivers/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/mmc/mmc.c -------------------------------------------------------------------------------- /drivers/mmc/rpmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/mmc/rpmb.c -------------------------------------------------------------------------------- /drivers/mmc/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/mmc/sdhci.c -------------------------------------------------------------------------------- /drivers/mtd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/mtd/Kconfig -------------------------------------------------------------------------------- /drivers/mtd/at45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/mtd/at45.c -------------------------------------------------------------------------------- /drivers/mtd/ubispl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubispl.o ../ubi/crc32.o 2 | -------------------------------------------------------------------------------- /drivers/net/8390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/8390.h -------------------------------------------------------------------------------- /drivers/net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/Kconfig -------------------------------------------------------------------------------- /drivers/net/cpsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/cpsw.c -------------------------------------------------------------------------------- /drivers/net/dnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/dnet.c -------------------------------------------------------------------------------- /drivers/net/dnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/dnet.h -------------------------------------------------------------------------------- /drivers/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/e1000.c -------------------------------------------------------------------------------- /drivers/net/e1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/e1000.h -------------------------------------------------------------------------------- /drivers/net/ethoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/ethoc.c -------------------------------------------------------------------------------- /drivers/net/fm/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/fm/fm.c -------------------------------------------------------------------------------- /drivers/net/fm/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/fm/fm.h -------------------------------------------------------------------------------- /drivers/net/greth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/greth.c -------------------------------------------------------------------------------- /drivers/net/greth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/greth.h -------------------------------------------------------------------------------- /drivers/net/macb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/macb.c -------------------------------------------------------------------------------- /drivers/net/macb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/macb.h -------------------------------------------------------------------------------- /drivers/net/mvgbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/mvgbe.c -------------------------------------------------------------------------------- /drivers/net/mvgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/mvgbe.h -------------------------------------------------------------------------------- /drivers/net/mvpp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/mvpp2.c -------------------------------------------------------------------------------- /drivers/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/pcnet.c -------------------------------------------------------------------------------- /drivers/net/tsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/net/tsec.c -------------------------------------------------------------------------------- /drivers/pch/pch7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/pch/pch7.c -------------------------------------------------------------------------------- /drivers/pch/pch9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/pch/pch9.c -------------------------------------------------------------------------------- /drivers/pci/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/pci/Kconfig -------------------------------------------------------------------------------- /drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/pci/pci.c -------------------------------------------------------------------------------- /drivers/pcmcia/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/pwm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/pwm/Kconfig -------------------------------------------------------------------------------- /drivers/qe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/Makefile -------------------------------------------------------------------------------- /drivers/qe/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/fdt.c -------------------------------------------------------------------------------- /drivers/qe/qe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/qe.c -------------------------------------------------------------------------------- /drivers/qe/uccf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/uccf.c -------------------------------------------------------------------------------- /drivers/qe/uccf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/uccf.h -------------------------------------------------------------------------------- /drivers/qe/uec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/uec.c -------------------------------------------------------------------------------- /drivers/qe/uec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/qe/uec.h -------------------------------------------------------------------------------- /drivers/ram/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/ram/Kconfig -------------------------------------------------------------------------------- /drivers/rtc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/Kconfig -------------------------------------------------------------------------------- /drivers/rtc/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/date.c -------------------------------------------------------------------------------- /drivers/rtc/imxdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/imxdi.c -------------------------------------------------------------------------------- /drivers/rtc/mvrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/mvrtc.c -------------------------------------------------------------------------------- /drivers/rtc/mvrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/mvrtc.h -------------------------------------------------------------------------------- /drivers/rtc/pl031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/pl031.c -------------------------------------------------------------------------------- /drivers/rtc/x1205.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/rtc/x1205.c -------------------------------------------------------------------------------- /drivers/spi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/spi/Kconfig -------------------------------------------------------------------------------- /drivers/spi/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/spi/ich.c -------------------------------------------------------------------------------- /drivers/spi/ich.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/spi/ich.h -------------------------------------------------------------------------------- /drivers/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/spi/spi.c -------------------------------------------------------------------------------- /drivers/tpm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/tpm/Kconfig -------------------------------------------------------------------------------- /drivers/usb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/usb/Kconfig -------------------------------------------------------------------------------- /drivers/video/ipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/drivers/video/ipu.h -------------------------------------------------------------------------------- /drivers/watchdog/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/dts/.gitignore -------------------------------------------------------------------------------- /dts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/dts/Kconfig -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/dts/Makefile -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /examples/api/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/examples/api/crt0.S -------------------------------------------------------------------------------- /examples/api/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/examples/api/demo.c -------------------------------------------------------------------------------- /examples/api/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/examples/api/glue.c -------------------------------------------------------------------------------- /examples/api/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/examples/api/glue.h -------------------------------------------------------------------------------- /fs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/Kconfig -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/Makefile -------------------------------------------------------------------------------- /fs/cbfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/cbfs/Makefile -------------------------------------------------------------------------------- /fs/cbfs/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/cbfs/cbfs.c -------------------------------------------------------------------------------- /fs/cramfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/cramfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/cramfs/Makefile -------------------------------------------------------------------------------- /fs/cramfs/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/cramfs/cramfs.c -------------------------------------------------------------------------------- /fs/ext4/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/ext4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ext4/Makefile -------------------------------------------------------------------------------- /fs/ext4/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ext4/crc16.c -------------------------------------------------------------------------------- /fs/ext4/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ext4/crc16.h -------------------------------------------------------------------------------- /fs/ext4/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ext4/dev.c -------------------------------------------------------------------------------- /fs/ext4/ext4fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ext4/ext4fs.c -------------------------------------------------------------------------------- /fs/fat/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/fat/Makefile -------------------------------------------------------------------------------- /fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/fat/fat.c -------------------------------------------------------------------------------- /fs/fat/fat_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/fat/fat_write.c -------------------------------------------------------------------------------- /fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/fat/file.c -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/fs.c -------------------------------------------------------------------------------- /fs/jffs2/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/jffs2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/jffs2/LICENCE -------------------------------------------------------------------------------- /fs/jffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/jffs2/Makefile -------------------------------------------------------------------------------- /fs/jffs2/summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/jffs2/summary.h -------------------------------------------------------------------------------- /fs/reiserfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/reiserfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/reiserfs/dev.c -------------------------------------------------------------------------------- /fs/sandbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/sandbox/Makefile -------------------------------------------------------------------------------- /fs/ubifs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/Makefile -------------------------------------------------------------------------------- /fs/ubifs/budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/budget.c -------------------------------------------------------------------------------- /fs/ubifs/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/crc16.c -------------------------------------------------------------------------------- /fs/ubifs/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/crc16.h -------------------------------------------------------------------------------- /fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/debug.c -------------------------------------------------------------------------------- /fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/debug.h -------------------------------------------------------------------------------- /fs/ubifs/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/gc.c -------------------------------------------------------------------------------- /fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/io.c -------------------------------------------------------------------------------- /fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/key.h -------------------------------------------------------------------------------- /fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/log.c -------------------------------------------------------------------------------- /fs/ubifs/lprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/lprops.c -------------------------------------------------------------------------------- /fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/master.c -------------------------------------------------------------------------------- /fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/misc.h -------------------------------------------------------------------------------- /fs/ubifs/orphan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/orphan.c -------------------------------------------------------------------------------- /fs/ubifs/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/recovery.c -------------------------------------------------------------------------------- /fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/replay.c -------------------------------------------------------------------------------- /fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/sb.c -------------------------------------------------------------------------------- /fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/scan.c -------------------------------------------------------------------------------- /fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/super.c -------------------------------------------------------------------------------- /fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /fs/ubifs/tnc_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/tnc_misc.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /fs/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/yaffs2/Makefile -------------------------------------------------------------------------------- /fs/yaffs2/yaffsfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/yaffs2/yaffsfs.c -------------------------------------------------------------------------------- /fs/yaffs2/yaffsfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/yaffs2/yaffsfs.h -------------------------------------------------------------------------------- /fs/zfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/zfs/Makefile -------------------------------------------------------------------------------- /fs/zfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/zfs/dev.c -------------------------------------------------------------------------------- /fs/zfs/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/zfs/zfs.c -------------------------------------------------------------------------------- /fs/zfs/zfs_lzjb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/zfs/zfs_lzjb.c -------------------------------------------------------------------------------- /fs/zfs/zfs_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/fs/zfs/zfs_sha256.c -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/ACEX1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ACEX1K.h -------------------------------------------------------------------------------- /include/MCD_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/MCD_dma.h -------------------------------------------------------------------------------- /include/SA-1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/SA-1100.h -------------------------------------------------------------------------------- /include/_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/_exports.h -------------------------------------------------------------------------------- /include/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/adc.h -------------------------------------------------------------------------------- /include/addr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/addr_map.h -------------------------------------------------------------------------------- /include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/aes.h -------------------------------------------------------------------------------- /include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ahci.h -------------------------------------------------------------------------------- /include/ali512x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ali512x.h -------------------------------------------------------------------------------- /include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/altera.h -------------------------------------------------------------------------------- /include/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ambapp.h -------------------------------------------------------------------------------- /include/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ansi.h -------------------------------------------------------------------------------- /include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ata.h -------------------------------------------------------------------------------- /include/atmel_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/atmel_lcd.h -------------------------------------------------------------------------------- /include/atmel_mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/atmel_mci.h -------------------------------------------------------------------------------- /include/autoboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/autoboot.h -------------------------------------------------------------------------------- /include/axp152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/axp152.h -------------------------------------------------------------------------------- /include/axp209.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/axp209.h -------------------------------------------------------------------------------- /include/axp221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/axp221.h -------------------------------------------------------------------------------- /include/axp809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/axp809.h -------------------------------------------------------------------------------- /include/axp818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/axp818.h -------------------------------------------------------------------------------- /include/axp_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/axp_pmic.h -------------------------------------------------------------------------------- /include/backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/backlight.h -------------------------------------------------------------------------------- /include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bcd.h -------------------------------------------------------------------------------- /include/bios_emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bios_emul.h -------------------------------------------------------------------------------- /include/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bitfield.h -------------------------------------------------------------------------------- /include/blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/blk.h -------------------------------------------------------------------------------- /include/bootcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bootcount.h -------------------------------------------------------------------------------- /include/bootm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bootm.h -------------------------------------------------------------------------------- /include/bootretry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bootretry.h -------------------------------------------------------------------------------- /include/bootstage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bootstage.h -------------------------------------------------------------------------------- /include/bouncebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bouncebuf.h -------------------------------------------------------------------------------- /include/bus_vcxk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bus_vcxk.h -------------------------------------------------------------------------------- /include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/bzlib.h -------------------------------------------------------------------------------- /include/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cbfs.h -------------------------------------------------------------------------------- /include/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/circbuf.h -------------------------------------------------------------------------------- /include/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cli.h -------------------------------------------------------------------------------- /include/cli_hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cli_hush.h -------------------------------------------------------------------------------- /include/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/clk.h -------------------------------------------------------------------------------- /include/cmd_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cmd_spl.h -------------------------------------------------------------------------------- /include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/command.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/common.h -------------------------------------------------------------------------------- /include/commproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/commproc.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/console.h -------------------------------------------------------------------------------- /include/cortina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cortina.h -------------------------------------------------------------------------------- /include/cpsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cpsw.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/crc.h -------------------------------------------------------------------------------- /include/cros_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/cros_ec.h -------------------------------------------------------------------------------- /include/dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dataflash.h -------------------------------------------------------------------------------- /include/ddr_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ddr_spd.h -------------------------------------------------------------------------------- /include/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dfu.h -------------------------------------------------------------------------------- /include/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/display.h -------------------------------------------------------------------------------- /include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/div64.h -------------------------------------------------------------------------------- /include/dm-demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm-demo.h -------------------------------------------------------------------------------- /include/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm.h -------------------------------------------------------------------------------- /include/dm/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm/device.h -------------------------------------------------------------------------------- /include/dm/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm/lists.h -------------------------------------------------------------------------------- /include/dm/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm/root.h -------------------------------------------------------------------------------- /include/dm/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm/test.h -------------------------------------------------------------------------------- /include/dm/uclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm/uclass.h -------------------------------------------------------------------------------- /include/dm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm/util.h -------------------------------------------------------------------------------- /include/dm9000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dm9000.h -------------------------------------------------------------------------------- /include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dma.h -------------------------------------------------------------------------------- /include/dp83848.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dp83848.h -------------------------------------------------------------------------------- /include/ds1722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ds1722.h -------------------------------------------------------------------------------- /include/ds4510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ds4510.h -------------------------------------------------------------------------------- /include/dtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dtt.h -------------------------------------------------------------------------------- /include/dwmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/dwmmc.h -------------------------------------------------------------------------------- /include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/e500.h -------------------------------------------------------------------------------- /include/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/edid.h -------------------------------------------------------------------------------- /include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/efi.h -------------------------------------------------------------------------------- /include/efi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/efi_api.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/env_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/env_attr.h -------------------------------------------------------------------------------- /include/env_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/env_flags.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/ethsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ethsw.h -------------------------------------------------------------------------------- /include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/exports.h -------------------------------------------------------------------------------- /include/ext4fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ext4fs.h -------------------------------------------------------------------------------- /include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fat.h -------------------------------------------------------------------------------- /include/fb_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fb_mmc.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/fdtdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fdtdec.h -------------------------------------------------------------------------------- /include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fis.h -------------------------------------------------------------------------------- /include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/flash.h -------------------------------------------------------------------------------- /include/fm_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fm_eth.h -------------------------------------------------------------------------------- /include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fpga.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/fsl_qe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fsl_qe.h -------------------------------------------------------------------------------- /include/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/fuse.h -------------------------------------------------------------------------------- /include/g_dnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/g_dnl.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/hw_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/hw_sha.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/i2s.h -------------------------------------------------------------------------------- /include/i8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/i8042.h -------------------------------------------------------------------------------- /include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ide.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/image.h -------------------------------------------------------------------------------- /include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/input.h -------------------------------------------------------------------------------- /include/iomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/iomux.h -------------------------------------------------------------------------------- /include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/kgdb.h -------------------------------------------------------------------------------- /include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/lcd.h -------------------------------------------------------------------------------- /include/ld9040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ld9040.h -------------------------------------------------------------------------------- /include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/led.h -------------------------------------------------------------------------------- /include/libata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/libata.h -------------------------------------------------------------------------------- /include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/libfdt.h -------------------------------------------------------------------------------- /include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/lmb.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/mapmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mapmem.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/micrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/micrel.h -------------------------------------------------------------------------------- /include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/miiphy.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mmc.h -------------------------------------------------------------------------------- /include/mpc106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mpc106.h -------------------------------------------------------------------------------- /include/mpc5xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mpc5xx.h -------------------------------------------------------------------------------- /include/mpc8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mpc8xx.h -------------------------------------------------------------------------------- /include/msc01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/msc01.h -------------------------------------------------------------------------------- /include/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mtd.h -------------------------------------------------------------------------------- /include/mvmfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/mvmfp.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/net.h -------------------------------------------------------------------------------- /include/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/netdev.h -------------------------------------------------------------------------------- /include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/os.h -------------------------------------------------------------------------------- /include/palmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/palmas.h -------------------------------------------------------------------------------- /include/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/panel.h -------------------------------------------------------------------------------- /include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/part.h -------------------------------------------------------------------------------- /include/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/pch.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/pcmcia.h -------------------------------------------------------------------------------- /include/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/pe.h -------------------------------------------------------------------------------- /include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/phy.h -------------------------------------------------------------------------------- /include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/post.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/pwrseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/pwrseq.h -------------------------------------------------------------------------------- /include/qfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/qfw.h -------------------------------------------------------------------------------- /include/radeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/radeon.h -------------------------------------------------------------------------------- /include/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ram.h -------------------------------------------------------------------------------- /include/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/rc4.h -------------------------------------------------------------------------------- /include/regmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/regmap.h -------------------------------------------------------------------------------- /include/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/reset.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sata.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sdhci.h -------------------------------------------------------------------------------- /include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/search.h -------------------------------------------------------------------------------- /include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/serial.h -------------------------------------------------------------------------------- /include/sh_pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sh_pfc.h -------------------------------------------------------------------------------- /include/sh_tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sh_tmu.h -------------------------------------------------------------------------------- /include/slre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/slre.h -------------------------------------------------------------------------------- /include/sm501.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sm501.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/spd.h -------------------------------------------------------------------------------- /include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/spi.h -------------------------------------------------------------------------------- /include/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/spl.h -------------------------------------------------------------------------------- /include/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/splash.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/sx151x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/sx151x.h -------------------------------------------------------------------------------- /include/syscon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/syscon.h -------------------------------------------------------------------------------- /include/thor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/thor.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/tmu.h -------------------------------------------------------------------------------- /include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/tpm.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/tsec.h -------------------------------------------------------------------------------- /include/tsi108.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/tsi108.h -------------------------------------------------------------------------------- /include/tsi148.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/tsi148.h -------------------------------------------------------------------------------- /include/tws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/tws.h -------------------------------------------------------------------------------- /include/ubispl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/ubispl.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/usb.h -------------------------------------------------------------------------------- /include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/uuid.h -------------------------------------------------------------------------------- /include/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/vbe.h -------------------------------------------------------------------------------- /include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/video.h -------------------------------------------------------------------------------- /include/xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/xilinx.h -------------------------------------------------------------------------------- /include/zynqpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/include/zynqpl.h -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/addr_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/addr_map.c -------------------------------------------------------------------------------- /lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/aes.c -------------------------------------------------------------------------------- /lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/bch.c -------------------------------------------------------------------------------- /lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/bitrev.c -------------------------------------------------------------------------------- /lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/circbuf.c -------------------------------------------------------------------------------- /lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/crc16.c -------------------------------------------------------------------------------- /lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/crc32.c -------------------------------------------------------------------------------- /lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/crc7.c -------------------------------------------------------------------------------- /lib/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/crc8.c -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/dhry/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/dhry/Kconfig -------------------------------------------------------------------------------- /lib/dhry/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/dhry/dhry.h -------------------------------------------------------------------------------- /lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/div64.c -------------------------------------------------------------------------------- /lib/efi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/efi/Kconfig -------------------------------------------------------------------------------- /lib/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/efi/Makefile -------------------------------------------------------------------------------- /lib/efi/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/efi/efi.c -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /lib/errno_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/errno_str.c -------------------------------------------------------------------------------- /lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/fdtdec.c -------------------------------------------------------------------------------- /lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/gunzip.c -------------------------------------------------------------------------------- /lib/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/gzip.c -------------------------------------------------------------------------------- /lib/hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/hang.c -------------------------------------------------------------------------------- /lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/hashtable.c -------------------------------------------------------------------------------- /lib/initcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/initcall.c -------------------------------------------------------------------------------- /lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/ldiv.c -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /lib/list_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/list_sort.c -------------------------------------------------------------------------------- /lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/lmb.c -------------------------------------------------------------------------------- /lib/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/lz4.c -------------------------------------------------------------------------------- /lib/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/lzma/Types.h -------------------------------------------------------------------------------- /lib/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/lzo/Makefile -------------------------------------------------------------------------------- /lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/md5.c -------------------------------------------------------------------------------- /lib/membuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/membuff.c -------------------------------------------------------------------------------- /lib/net_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/net_utils.c -------------------------------------------------------------------------------- /lib/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/panic.c -------------------------------------------------------------------------------- /lib/physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/physmem.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/rc4.c -------------------------------------------------------------------------------- /lib/rsa/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/rsa/Kconfig -------------------------------------------------------------------------------- /lib/rsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/rsa/Makefile -------------------------------------------------------------------------------- /lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/sha1.c -------------------------------------------------------------------------------- /lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/sha256.c -------------------------------------------------------------------------------- /lib/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/slre.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/strmhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/strmhz.c -------------------------------------------------------------------------------- /lib/strto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/strto.c -------------------------------------------------------------------------------- /lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/time.c -------------------------------------------------------------------------------- /lib/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/tpm.c -------------------------------------------------------------------------------- /lib/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/trace.c -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/zlib/trees.c -------------------------------------------------------------------------------- /lib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/zlib/trees.h -------------------------------------------------------------------------------- /lib/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/zlib/zlib.c -------------------------------------------------------------------------------- /lib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/zlib/zlib.h -------------------------------------------------------------------------------- /lib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/zlib/zutil.c -------------------------------------------------------------------------------- /lib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/lib/zlib/zutil.h -------------------------------------------------------------------------------- /net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/Kconfig -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/Makefile -------------------------------------------------------------------------------- /net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/arp.c -------------------------------------------------------------------------------- /net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/arp.h -------------------------------------------------------------------------------- /net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/bootp.c -------------------------------------------------------------------------------- /net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/bootp.h -------------------------------------------------------------------------------- /net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/cdp.c -------------------------------------------------------------------------------- /net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/cdp.h -------------------------------------------------------------------------------- /net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/checksum.c -------------------------------------------------------------------------------- /net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/dns.c -------------------------------------------------------------------------------- /net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/dns.h -------------------------------------------------------------------------------- /net/eth-uclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/eth-uclass.c -------------------------------------------------------------------------------- /net/eth_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/eth_common.c -------------------------------------------------------------------------------- /net/eth_legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/eth_legacy.c -------------------------------------------------------------------------------- /net/link_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/link_local.c -------------------------------------------------------------------------------- /net/link_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/link_local.h -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/net.c -------------------------------------------------------------------------------- /net/net_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/net_rand.h -------------------------------------------------------------------------------- /net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/nfs.c -------------------------------------------------------------------------------- /net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/nfs.h -------------------------------------------------------------------------------- /net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/ping.c -------------------------------------------------------------------------------- /net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/ping.h -------------------------------------------------------------------------------- /net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/rarp.c -------------------------------------------------------------------------------- /net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/rarp.h -------------------------------------------------------------------------------- /net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/sntp.c -------------------------------------------------------------------------------- /net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/sntp.h -------------------------------------------------------------------------------- /net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/net/tftp.c -------------------------------------------------------------------------------- /post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/post/Makefile -------------------------------------------------------------------------------- /post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/post/post.c -------------------------------------------------------------------------------- /post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/post/tests.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | docproc 5 | -------------------------------------------------------------------------------- /scripts/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/scripts/Lindent -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /scripts/objdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/scripts/objdiff -------------------------------------------------------------------------------- /snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /test/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/Kconfig -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/README -------------------------------------------------------------------------------- /test/cmd_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/cmd_ut.c -------------------------------------------------------------------------------- /test/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/common.sh -------------------------------------------------------------------------------- /test/dm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/Kconfig -------------------------------------------------------------------------------- /test/dm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/Makefile -------------------------------------------------------------------------------- /test/dm/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/adc.c -------------------------------------------------------------------------------- /test/dm/blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/blk.c -------------------------------------------------------------------------------- /test/dm/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/bus.c -------------------------------------------------------------------------------- /test/dm/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/clk.c -------------------------------------------------------------------------------- /test/dm/cmd_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/cmd_dm.c -------------------------------------------------------------------------------- /test/dm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/core.c -------------------------------------------------------------------------------- /test/dm/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/eth.c -------------------------------------------------------------------------------- /test/dm/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/gpio.c -------------------------------------------------------------------------------- /test/dm/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/i2c.c -------------------------------------------------------------------------------- /test/dm/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/led.c -------------------------------------------------------------------------------- /test/dm/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/mmc.c -------------------------------------------------------------------------------- /test/dm/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/pci.c -------------------------------------------------------------------------------- /test/dm/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/pmic.c -------------------------------------------------------------------------------- /test/dm/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/ram.c -------------------------------------------------------------------------------- /test/dm/regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/regmap.c -------------------------------------------------------------------------------- /test/dm/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/reset.c -------------------------------------------------------------------------------- /test/dm/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/rtc.c -------------------------------------------------------------------------------- /test/dm/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/sf.c -------------------------------------------------------------------------------- /test/dm/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/spi.c -------------------------------------------------------------------------------- /test/dm/spmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/spmi.c -------------------------------------------------------------------------------- /test/dm/syscon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/syscon.c -------------------------------------------------------------------------------- /test/dm/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/timer.c -------------------------------------------------------------------------------- /test/dm/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/usb.c -------------------------------------------------------------------------------- /test/dm/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/dm/video.c -------------------------------------------------------------------------------- /test/env/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/env/Kconfig -------------------------------------------------------------------------------- /test/env/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/env/attr.c -------------------------------------------------------------------------------- /test/py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/py/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/py/test.py -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/run -------------------------------------------------------------------------------- /test/time_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/time_ut.c -------------------------------------------------------------------------------- /test/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/test/ut.c -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/aisimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/aisimage.c -------------------------------------------------------------------------------- /tools/aisimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/aisimage.h -------------------------------------------------------------------------------- /tools/bmp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/bmp_logo.c -------------------------------------------------------------------------------- /tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | buildman.py -------------------------------------------------------------------------------- /tools/dtoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/dtoc/dtoc: -------------------------------------------------------------------------------- 1 | dtoc.py -------------------------------------------------------------------------------- /tools/env/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/env/README -------------------------------------------------------------------------------- /tools/env/aes.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/aes.c" 2 | -------------------------------------------------------------------------------- /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 "../../common/env_attr.c" 2 | -------------------------------------------------------------------------------- /tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_flags.c" 2 | -------------------------------------------------------------------------------- /tools/envcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/envcrc.c -------------------------------------------------------------------------------- /tools/fdt_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/fdt_host.h -------------------------------------------------------------------------------- /tools/fdtgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/fdtgrep.c -------------------------------------------------------------------------------- /tools/fit_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/fit_info.c -------------------------------------------------------------------------------- /tools/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/getline.c -------------------------------------------------------------------------------- /tools/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/getline.h -------------------------------------------------------------------------------- /tools/gpheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/gpheader.h -------------------------------------------------------------------------------- /tools/gpimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/gpimage.c -------------------------------------------------------------------------------- /tools/ifdtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/ifdtool.c -------------------------------------------------------------------------------- /tools/ifdtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/ifdtool.h -------------------------------------------------------------------------------- /tools/img2srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/img2srec.c -------------------------------------------------------------------------------- /tools/imximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/imximage.c -------------------------------------------------------------------------------- /tools/imximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/imximage.h -------------------------------------------------------------------------------- /tools/kwbimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/kwbimage.c -------------------------------------------------------------------------------- /tools/kwbimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/kwbimage.h -------------------------------------------------------------------------------- /tools/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/kwboot.c -------------------------------------------------------------------------------- /tools/microcode-tool: -------------------------------------------------------------------------------- 1 | microcode-tool.py -------------------------------------------------------------------------------- /tools/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/mkimage.c -------------------------------------------------------------------------------- /tools/mkimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/mkimage.h -------------------------------------------------------------------------------- /tools/mxsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/mxsboot.c -------------------------------------------------------------------------------- /tools/mxsimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/mxsimage.c -------------------------------------------------------------------------------- /tools/mxsimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/mxsimage.h -------------------------------------------------------------------------------- /tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/ncb.c -------------------------------------------------------------------------------- /tools/netconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/netconsole -------------------------------------------------------------------------------- /tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /tools/pblimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/pblimage.c -------------------------------------------------------------------------------- /tools/pblimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/pblimage.h -------------------------------------------------------------------------------- /tools/proftool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/proftool.c -------------------------------------------------------------------------------- /tools/rkcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/rkcommon.c -------------------------------------------------------------------------------- /tools/rkcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/rkcommon.h -------------------------------------------------------------------------------- /tools/rkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/rkimage.c -------------------------------------------------------------------------------- /tools/rkmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/rkmux.py -------------------------------------------------------------------------------- /tools/rksd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/rksd.c -------------------------------------------------------------------------------- /tools/rkspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/rkspi.c -------------------------------------------------------------------------------- /tools/ublimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/ublimage.c -------------------------------------------------------------------------------- /tools/ublimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/ublimage.h -------------------------------------------------------------------------------- /tools/ubsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icenowy/u-boot/HEAD/tools/ubsha1.c --------------------------------------------------------------------------------