├── .checkpatch.conf ├── .gitignore ├── .mailmap ├── CREDITS ├── Kbuild ├── Kconfig ├── Licenses ├── Exceptions ├── 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 ├── MAINTAINERS ├── MAKEALL ├── Makefile ├── README ├── UserManual ├── api ├── Makefile ├── README ├── api.c ├── api_display.c ├── api_net.c ├── api_platform-arm.c ├── api_platform-powerpc.c ├── api_private.h └── api_storage.c ├── arch ├── .gitignore ├── Kconfig ├── arc │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ └── arc700 │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── reset.c │ │ │ ├── start.S │ │ │ ├── timer.c │ │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── arcregs.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── errno.h │ │ │ ├── global_data.h │ │ │ ├── io.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── string.h │ │ │ ├── types.h │ │ │ ├── u-boot-arc.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ ├── memcmp.S │ │ ├── memcpy-700.S │ │ ├── memset.S │ │ ├── relocate.c │ │ ├── sections.c │ │ ├── strchr-700.S │ │ ├── strcmp.S │ │ ├── strcpy-700.S │ │ └── strlen.S ├── arm │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── arm1136 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── mx31 │ │ │ │ ├── Makefile │ │ │ │ ├── devices.c │ │ │ │ ├── generic.c │ │ │ │ └── timer.c │ │ │ ├── mx35 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── mx35_sdram.c │ │ │ │ └── timer.c │ │ │ ├── start.S │ │ │ └── u-boot-spl.lds │ │ ├── arm1176 │ │ │ ├── Makefile │ │ │ ├── bcm2835 │ │ │ │ ├── Makefile │ │ │ │ ├── init.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mbox.c │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── start.S │ │ │ └── tnetv107x │ │ │ │ ├── Makefile │ │ │ │ ├── aemif.c │ │ │ │ ├── clock.c │ │ │ │ ├── init.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mux.c │ │ │ │ └── timer.c │ │ ├── arm720t │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── start.S │ │ │ ├── tegra-common │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ └── spl.c │ │ │ ├── tegra114 │ │ │ │ ├── Makefile │ │ │ │ └── cpu.c │ │ │ ├── tegra124 │ │ │ │ ├── Makefile │ │ │ │ └── cpu.c │ │ │ ├── tegra20 │ │ │ │ ├── Makefile │ │ │ │ └── cpu.c │ │ │ └── tegra30 │ │ │ │ ├── Makefile │ │ │ │ └── cpu.c │ │ ├── arm920t │ │ │ ├── Makefile │ │ │ ├── a320 │ │ │ │ ├── Makefile │ │ │ │ ├── reset.S │ │ │ │ └── timer.c │ │ │ ├── at91 │ │ │ │ ├── Makefile │ │ │ │ ├── at91rm9200_devices.c │ │ │ │ ├── clock.c │ │ │ │ ├── cpu.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── config.mk │ │ │ ├── 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 │ │ │ ├── ks8695 │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── timer.c │ │ │ ├── s3c24x0 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu_info.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── speed.c │ │ │ │ └── timer.c │ │ │ └── start.S │ │ ├── arm926ejs │ │ │ ├── Makefile │ │ │ ├── armada100 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ └── timer.c │ │ │ ├── at91 │ │ │ │ ├── Makefile │ │ │ │ ├── at91cap9_devices.c │ │ │ │ ├── at91sam9260_devices.c │ │ │ │ ├── at91sam9261_devices.c │ │ │ │ ├── at91sam9263_devices.c │ │ │ │ ├── at91sam9m10g45_devices.c │ │ │ │ ├── at91sam9n12_devices.c │ │ │ │ ├── at91sam9rl_devices.c │ │ │ │ ├── at91sam9x5_devices.c │ │ │ │ ├── clock.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── eflash.c │ │ │ │ ├── led.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── cache.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── 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 │ │ │ │ ├── ksz8873.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── lxt972.c │ │ │ │ ├── misc.c │ │ │ │ ├── pinmux.c │ │ │ │ ├── psc.c │ │ │ │ ├── reset.c │ │ │ │ ├── spl.c │ │ │ │ └── timer.c │ │ │ ├── kirkwood │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ ├── mpp.c │ │ │ │ └── timer.c │ │ │ ├── lpc32xx │ │ │ │ ├── Makefile │ │ │ │ ├── clk.c │ │ │ │ ├── cpu.c │ │ │ │ ├── devices.c │ │ │ │ └── timer.c │ │ │ ├── mb86r0x │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── mx25 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── mx27 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ ├── 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 │ │ │ ├── nomadik │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── gpio.c │ │ │ │ ├── reset.S │ │ │ │ └── timer.c │ │ │ ├── omap │ │ │ │ ├── Makefile │ │ │ │ ├── cpuinfo.c │ │ │ │ ├── reset.S │ │ │ │ └── timer.c │ │ │ ├── orion5x │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── timer.c │ │ │ ├── pantheon │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ └── timer.c │ │ │ ├── spear │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── reset.c │ │ │ │ ├── spear600.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_boot.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 │ │ │ └── versatile │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── reset.S │ │ │ │ └── timer.c │ │ ├── arm946es │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ └── start.S │ │ ├── arm_intcm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ └── start.S │ │ ├── armv7 │ │ │ ├── Makefile │ │ │ ├── am33xx │ │ │ │ ├── Makefile │ │ │ │ ├── board.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 │ │ │ ├── at91 │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── reset.c │ │ │ │ ├── sama5d3_devices.c │ │ │ │ └── timer.c │ │ │ ├── bcm281xx │ │ │ │ ├── Makefile │ │ │ │ ├── clk-bcm281xx.c │ │ │ │ ├── clk-bsc.c │ │ │ │ ├── clk-core.c │ │ │ │ ├── clk-core.h │ │ │ │ ├── clk-eth.c │ │ │ │ ├── clk-sdio.c │ │ │ │ └── reset.c │ │ │ ├── bcmcygnus │ │ │ │ ├── Makefile │ │ │ │ └── reset.c │ │ │ ├── bcmnsp │ │ │ │ ├── Makefile │ │ │ │ └── reset.c │ │ │ ├── cache_v7.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── 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 │ │ │ │ ├── lowlevel_init.c │ │ │ │ ├── pinmux.c │ │ │ │ ├── power.c │ │ │ │ ├── soc.c │ │ │ │ ├── spl_boot.c │ │ │ │ ├── system.c │ │ │ │ └── tzpc.c │ │ │ ├── highbank │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── timer.c │ │ │ ├── iproc-common │ │ │ │ ├── Makefile │ │ │ │ ├── armpll.c │ │ │ │ ├── hwinit-common.c │ │ │ │ └── timer.c │ │ │ ├── keystone │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock-k2e.c │ │ │ │ ├── clock-k2hk.c │ │ │ │ ├── clock.c │ │ │ │ ├── cmd_clock.c │ │ │ │ ├── cmd_mon.c │ │ │ │ ├── ddr3.c │ │ │ │ ├── init.c │ │ │ │ ├── keystone.c │ │ │ │ ├── keystone_nav.c │ │ │ │ ├── msmc.c │ │ │ │ ├── psc.c │ │ │ │ └── spl.c │ │ │ ├── kona-common │ │ │ │ ├── Makefile │ │ │ │ ├── clk-stubs.c │ │ │ │ ├── hwinit-common.c │ │ │ │ └── s_init.c │ │ │ ├── lowlevel_init.S │ │ │ ├── ls102xa │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── cpu.c │ │ │ │ ├── fdt.c │ │ │ │ ├── fsl_ls1_serdes.c │ │ │ │ ├── fsl_ls1_serdes.h │ │ │ │ ├── ls102xa_serdes.c │ │ │ │ └── timer.c │ │ │ ├── mx5 │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── soc.c │ │ │ ├── mx6 │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── ddr.c │ │ │ │ ├── hab.c │ │ │ │ ├── mp.c │ │ │ │ └── soc.c │ │ │ ├── nonsec_virt.S │ │ │ ├── omap-common │ │ │ │ ├── Makefile │ │ │ │ ├── abb.c │ │ │ │ ├── boot-common.c │ │ │ │ ├── clocks-common.c │ │ │ │ ├── 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 │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ ├── utils.c │ │ │ │ └── vc.c │ │ │ ├── omap3 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── am35x_musb.c │ │ │ │ ├── board.c │ │ │ │ ├── clock.c │ │ │ │ ├── config.mk │ │ │ │ ├── emac.c │ │ │ │ ├── emif4.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── sdrc.c │ │ │ │ ├── spl_id_nand.c │ │ │ │ └── sys_info.c │ │ │ ├── omap4 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── emif.c │ │ │ │ ├── hw_data.c │ │ │ │ ├── hwinit.c │ │ │ │ ├── prcm-regs.c │ │ │ │ └── sdram_elpida.c │ │ │ ├── omap5 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── abb.c │ │ │ │ ├── config.mk │ │ │ │ ├── emif.c │ │ │ │ ├── hw_data.c │ │ │ │ ├── hwinit.c │ │ │ │ ├── prcm-regs.c │ │ │ │ └── sdram.c │ │ │ ├── psci.S │ │ │ ├── rk32xx │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock-rk3036.c │ │ │ │ ├── clock-rk312X.c │ │ │ │ ├── clock-rk3288.c │ │ │ │ ├── clock.c │ │ │ │ ├── cpu.c │ │ │ │ ├── ddr.c │ │ │ │ ├── dma.c │ │ │ │ ├── iomux-rk3036.c │ │ │ │ ├── iomux-rk312X.c │ │ │ │ ├── iomux-rk3288.c │ │ │ │ ├── iomux.c │ │ │ │ ├── irqs-gic.c │ │ │ │ ├── irqs-gpio.c │ │ │ │ ├── irqs.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── pl330.c │ │ │ │ ├── pm.c │ │ │ │ ├── pwm.c │ │ │ │ ├── reset.c │ │ │ │ └── timer.c │ │ │ ├── rmobile │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── cpu_info-r8a7740.c │ │ │ │ ├── cpu_info-rcar.c │ │ │ │ ├── cpu_info-sh73a0.c │ │ │ │ ├── cpu_info.c │ │ │ │ ├── emac.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── lowlevel_init_ca15.S │ │ │ │ ├── pfc-r8a7740.c │ │ │ │ ├── pfc-r8a7790.c │ │ │ │ ├── pfc-r8a7790.h │ │ │ │ ├── pfc-r8a7791.c │ │ │ │ ├── pfc-r8a7794.c │ │ │ │ ├── pfc-sh73a0.c │ │ │ │ └── timer.c │ │ │ ├── s5p-common │ │ │ │ ├── Makefile │ │ │ │ ├── cpu_info.c │ │ │ │ ├── pwm.c │ │ │ │ ├── sromc.c │ │ │ │ └── timer.c │ │ │ ├── s5pc1xx │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── clock.c │ │ │ │ └── reset.S │ │ │ ├── socfpga │ │ │ │ ├── Makefile │ │ │ │ ├── clock_manager.c │ │ │ │ ├── config.mk │ │ │ │ ├── fpga_manager.c │ │ │ │ ├── freeze_controller.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── misc.c │ │ │ │ ├── reset_manager.c │ │ │ │ ├── scan_manager.c │ │ │ │ ├── spl.c │ │ │ │ ├── system_manager.c │ │ │ │ ├── timer.c │ │ │ │ └── u-boot-spl.lds │ │ │ ├── start.S │ │ │ ├── sunxi │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── clock.c │ │ │ │ ├── clock_sun4i.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu_info.c │ │ │ │ ├── dram.c │ │ │ │ ├── pinmux.c │ │ │ │ ├── psci.S │ │ │ │ ├── start.c │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl-fel.lds │ │ │ │ └── u-boot-spl.lds │ │ │ ├── syslib.c │ │ │ ├── tegra-common │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── cmd_enterrcm.c │ │ │ ├── tegra114 │ │ │ │ ├── Kconfig │ │ │ │ └── Makefile │ │ │ ├── tegra124 │ │ │ │ ├── Kconfig │ │ │ │ └── Makefile │ │ │ ├── tegra20 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── display.c │ │ │ │ └── pwm.c │ │ │ ├── tegra30 │ │ │ │ ├── Kconfig │ │ │ │ └── Makefile │ │ │ ├── u8500 │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── cpu.c │ │ │ │ ├── lowlevel.S │ │ │ │ ├── prcmu.c │ │ │ │ └── timer.c │ │ │ ├── uniphier │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board_common.c │ │ │ │ ├── board_late_init.c │ │ │ │ ├── cache_uniphier.c │ │ │ │ ├── cmd_pinmon.c │ │ │ │ ├── cpu_info.c │ │ │ │ ├── dram_init.c │ │ │ │ ├── init_page_table.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── ph1-ld4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bcu_init.c │ │ │ │ │ ├── board_info.c │ │ │ │ │ ├── board_postclk_init.c │ │ │ │ │ ├── boot-mode.c │ │ │ │ │ ├── clkrst_init.c │ │ │ │ │ ├── pinctrl.c │ │ │ │ │ ├── pll_init.c │ │ │ │ │ ├── pll_spectrum.c │ │ │ │ │ ├── sbc_init.c │ │ │ │ │ ├── sg_init.c │ │ │ │ │ └── umc_init.c │ │ │ │ ├── ph1-pro4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board_info.c │ │ │ │ │ ├── board_postclk_init.c │ │ │ │ │ ├── boot-mode.c │ │ │ │ │ ├── clkrst_init.c │ │ │ │ │ ├── pinctrl.c │ │ │ │ │ ├── pll_init.c │ │ │ │ │ ├── pll_spectrum.c │ │ │ │ │ ├── sbc_init.c │ │ │ │ │ ├── sg_init.c │ │ │ │ │ └── umc_init.c │ │ │ │ ├── ph1-sld8 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bcu_init.c │ │ │ │ │ ├── board_info.c │ │ │ │ │ ├── board_postclk_init.c │ │ │ │ │ ├── boot-mode.c │ │ │ │ │ ├── clkrst_init.c │ │ │ │ │ ├── pinctrl.c │ │ │ │ │ ├── pll_init.c │ │ │ │ │ ├── pll_spectrum.c │ │ │ │ │ ├── sbc_init.c │ │ │ │ │ ├── sg_init.c │ │ │ │ │ └── umc_init.c │ │ │ │ ├── reset.c │ │ │ │ ├── smp.S │ │ │ │ ├── spl.c │ │ │ │ ├── support_card.c │ │ │ │ └── timer.c │ │ │ ├── vf610 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.c │ │ │ │ └── timer.c │ │ │ ├── virt-dt.c │ │ │ ├── virt-v7.c │ │ │ └── zynq │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clk.c │ │ │ │ ├── cpu.c │ │ │ │ ├── ddrc.c │ │ │ │ ├── slcr.c │ │ │ │ ├── spl.c │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── u-boot.lds │ │ ├── armv8 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.S │ │ │ ├── cache_v8.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── exceptions.S │ │ │ ├── fsl-lsch3 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ ├── fdt.c │ │ │ │ ├── lowlevel.S │ │ │ │ ├── mp.c │ │ │ │ ├── mp.h │ │ │ │ ├── speed.c │ │ │ │ └── speed.h │ │ │ ├── generic_timer.c │ │ │ ├── start.S │ │ │ ├── tlb.S │ │ │ ├── transition.S │ │ │ └── u-boot.lds │ │ ├── at91-common │ │ │ ├── Makefile │ │ │ ├── mpddrc.c │ │ │ ├── phy.c │ │ │ ├── spl.c │ │ │ └── u-boot-spl.lds │ │ ├── pxa │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpuinfo.c │ │ │ ├── pxa2xx.c │ │ │ ├── start.S │ │ │ ├── timer.c │ │ │ └── usb.c │ │ ├── sa1100 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── start.S │ │ │ └── timer.c │ │ ├── tegra-common │ │ │ ├── Makefile │ │ │ ├── ap.c │ │ │ ├── board.c │ │ │ ├── cache.c │ │ │ ├── clock.c │ │ │ ├── lowlevel_init.S │ │ │ ├── pinmux-common.c │ │ │ ├── sys_info.c │ │ │ └── vpr.c │ │ ├── tegra114-common │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── funcmux.c │ │ │ └── pinmux.c │ │ ├── tegra124-common │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── funcmux.c │ │ │ └── pinmux.c │ │ ├── tegra20-common │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── crypto.c │ │ │ ├── crypto.h │ │ │ ├── emc.c │ │ │ ├── funcmux.c │ │ │ ├── pinmux.c │ │ │ ├── pmu.c │ │ │ ├── warmboot.c │ │ │ ├── warmboot_avp.c │ │ │ └── warmboot_avp.h │ │ ├── tegra30-common │ │ │ ├── Makefile │ │ │ ├── clock.c │ │ │ ├── funcmux.c │ │ │ └── pinmux.c │ │ ├── u-boot-spl.lds │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── am335x-bone-common.dtsi │ │ ├── am335x-boneblack.dts │ │ ├── am33xx.dtsi │ │ ├── dt-bindings │ │ │ ├── gpio │ │ │ │ └── gpio.h │ │ │ └── pinctrl │ │ │ │ ├── am33xx.h │ │ │ │ └── omap.h │ │ ├── exynos4.dtsi │ │ ├── exynos4210-origen.dts │ │ ├── exynos4210-smdkv310.dts │ │ ├── exynos4210-trats.dts │ │ ├── exynos4210-universal_c210.dts │ │ ├── exynos4412-odroid.dts │ │ ├── exynos4412-trats2.dts │ │ ├── exynos5.dtsi │ │ ├── exynos5250-arndale.dts │ │ ├── exynos5250-smdk5250.dts │ │ ├── exynos5250-snow.dts │ │ ├── exynos5250.dtsi │ │ ├── exynos5420-peach-pit.dts │ │ ├── exynos5420-smdk5420.dts │ │ ├── exynos54xx.dtsi │ │ ├── include │ │ │ └── dt-bindings │ │ ├── s5pc1xx-goni.dts │ │ ├── s5pc1xx-smdkc100.dts │ │ ├── skeleton.dtsi │ │ ├── tegra114-dalmore.dts │ │ ├── tegra114.dtsi │ │ ├── tegra124-jetson-tk1.dts │ │ ├── tegra124-venice2.dts │ │ ├── tegra124.dtsi │ │ ├── tegra20-colibri_t20_iris.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 │ │ ├── tegra30-beaver.dts │ │ ├── tegra30-cardhu.dts │ │ ├── tegra30-colibri.dts │ │ ├── tegra30-tamonten.dtsi │ │ ├── tegra30-tec-ng.dts │ │ ├── tegra30.dtsi │ │ ├── tps65217.dtsi │ │ ├── zynq-7000.dtsi │ │ ├── zynq-microzed.dts │ │ ├── zynq-zc702.dts │ │ ├── zynq-zc706.dts │ │ ├── zynq-zc770-xm010.dts │ │ ├── zynq-zc770-xm012.dts │ │ ├── zynq-zc770-xm013.dts │ │ └── zynq-zed.dts │ ├── imx-common │ │ ├── Makefile │ │ ├── cmd_bmode.c │ │ ├── cmd_hdmidet.c │ │ ├── cpu.c │ │ ├── i2c-mxv7.c │ │ ├── iomux-v3.c │ │ ├── misc.c │ │ ├── sata.c │ │ ├── speed.c │ │ ├── spl.c │ │ ├── timer.c │ │ └── video.c │ ├── include │ │ └── asm │ │ │ ├── arch-a320 │ │ │ └── a320.h │ │ │ ├── arch-am33xx │ │ │ ├── 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-arm720t │ │ │ └── hardware.h │ │ │ ├── arch-armada100 │ │ │ ├── armada100.h │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── mfp.h │ │ │ ├── spi.h │ │ │ └── utmi-armada100.h │ │ │ ├── arch-armv7 │ │ │ ├── globaltimer.h │ │ │ ├── sysctrl.h │ │ │ ├── systimer.h │ │ │ └── wdt.h │ │ │ ├── arch-at91 │ │ │ ├── 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_rtt.h │ │ │ ├── at91_shdwn.h │ │ │ ├── at91_spi.h │ │ │ ├── at91_st.h │ │ │ ├── at91_tc.h │ │ │ ├── at91_wdt.h │ │ │ ├── at91cap9.h │ │ │ ├── at91cap9_matrix.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_usba_udc.h │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── sama5d3.h │ │ │ └── sama5d3_smc.h │ │ │ ├── arch-bcm281xx │ │ │ ├── gpio.h │ │ │ └── sysmap.h │ │ │ ├── arch-bcm2835 │ │ │ ├── gpio.h │ │ │ ├── mbox.h │ │ │ ├── sdhci.h │ │ │ ├── timer.h │ │ │ └── wdog.h │ │ │ ├── arch-bcmcygnus │ │ │ └── configs.h │ │ │ ├── arch-bcmnsp │ │ │ └── configs.h │ │ │ ├── arch-davinci │ │ │ ├── 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 │ │ │ ├── arch-ep93xx │ │ │ └── ep93xx.h │ │ │ ├── arch-exynos │ │ │ ├── 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 │ │ │ ├── arch-fsl-lsch3 │ │ │ ├── clock.h │ │ │ ├── config.h │ │ │ ├── gpio.h │ │ │ ├── immap_lsch3.h │ │ │ └── imx-regs.h │ │ │ ├── arch-imx │ │ │ ├── cpu.h │ │ │ └── imx-regs.h │ │ │ ├── arch-keystone │ │ │ ├── clock-k2e.h │ │ │ ├── clock-k2hk.h │ │ │ ├── clock.h │ │ │ ├── clock_defs.h │ │ │ ├── ddr3.h │ │ │ ├── emac_defs.h │ │ │ ├── hardware-k2e.h │ │ │ ├── hardware-k2hk.h │ │ │ ├── hardware.h │ │ │ ├── i2c_defs.h │ │ │ ├── keystone_nav.h │ │ │ ├── mon.h │ │ │ ├── msmc.h │ │ │ ├── psc_defs.h │ │ │ └── spl.h │ │ │ ├── arch-kirkwood │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── kirkwood.h │ │ │ ├── kw88f6192.h │ │ │ ├── kw88f6281.h │ │ │ ├── mpp.h │ │ │ └── spi.h │ │ │ ├── arch-ks8695 │ │ │ └── platform.h │ │ │ ├── arch-lpc32xx │ │ │ ├── clk.h │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── emc.h │ │ │ ├── sys_proto.h │ │ │ ├── timer.h │ │ │ ├── uart.h │ │ │ └── wdt.h │ │ │ ├── arch-ls102xa │ │ │ ├── clock.h │ │ │ ├── config.h │ │ │ ├── fsl_serdes.h │ │ │ ├── immap_ls102xa.h │ │ │ └── imx-regs.h │ │ │ ├── arch-mb86r0x │ │ │ ├── hardware.h │ │ │ └── mb86r0x.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 │ │ │ ├── hab.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_pins.h │ │ │ ├── mx6sx-ddr.h │ │ │ ├── mx6sx_pins.h │ │ │ ├── mxc_hdmi.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-lcdif.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-nomadik │ │ │ ├── gpio.h │ │ │ └── mtu.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 │ │ │ ├── omap3-regs.h │ │ │ ├── omap3.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 │ │ │ ├── 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 │ │ │ ├── cpu.h │ │ │ ├── mv88f5182.h │ │ │ └── orion5x.h │ │ │ ├── arch-pantheon │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── mfp.h │ │ │ └── pantheon.h │ │ │ ├── arch-pxa │ │ │ ├── bitfield.h │ │ │ ├── hardware.h │ │ │ ├── pxa-regs.h │ │ │ ├── pxa.h │ │ │ ├── regs-mmc.h │ │ │ ├── regs-uart.h │ │ │ └── regs-usb.h │ │ │ ├── arch-rk32xx │ │ │ ├── clock.h │ │ │ ├── cpu.h │ │ │ ├── cru-rk3036.h │ │ │ ├── cru-rk312X.h │ │ │ ├── cru-rk3288.h │ │ │ ├── cru.h │ │ │ ├── dma.h │ │ │ ├── gpio-rk3036.h │ │ │ ├── gpio-rk312X.h │ │ │ ├── gpio-rk3288.h │ │ │ ├── gpio.h │ │ │ ├── grf-rk3036.h │ │ │ ├── grf-rk312X.h │ │ │ ├── grf-rk3288.h │ │ │ ├── grf.h │ │ │ ├── io-rk3036.h │ │ │ ├── io-rk312X.h │ │ │ ├── io-rk3288.h │ │ │ ├── io.h │ │ │ ├── iomux.h │ │ │ ├── irqs-rk3036.h │ │ │ ├── irqs-rk312X.h │ │ │ ├── irqs-rk3288.h │ │ │ ├── irqs.h │ │ │ ├── pl330.h │ │ │ ├── pm.h │ │ │ ├── pmu-rk312X.h │ │ │ ├── pmu-rk3288.h │ │ │ ├── pmu.h │ │ │ ├── pwm.h │ │ │ ├── rk_i2c.h │ │ │ ├── rkplat.h │ │ │ ├── typedef.h │ │ │ └── uart.h │ │ │ ├── arch-rmobile │ │ │ ├── ehci-rmobile.h │ │ │ ├── gpio.h │ │ │ ├── irqs.h │ │ │ ├── r8a7740-gpio.h │ │ │ ├── r8a7740.h │ │ │ ├── r8a7790-gpio.h │ │ │ ├── r8a7790.h │ │ │ ├── r8a7791-gpio.h │ │ │ ├── r8a7791.h │ │ │ ├── r8a7794-gpio.h │ │ │ ├── r8a7794.h │ │ │ ├── rcar-base.h │ │ │ ├── rmobile.h │ │ │ ├── sh73a0-gpio.h │ │ │ ├── sh73a0.h │ │ │ └── sys_proto.h │ │ │ ├── arch-s3c24x0 │ │ │ ├── gpio.h │ │ │ ├── iomux.h │ │ │ ├── memory.h │ │ │ ├── s3c2400.h │ │ │ ├── s3c2410.h │ │ │ ├── s3c2440.h │ │ │ ├── s3c24x0.h │ │ │ └── s3c24x0_cpu.h │ │ │ ├── arch-s5pc1xx │ │ │ ├── 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 │ │ │ ├── arch-sa1100 │ │ │ └── bitfield.h │ │ │ ├── arch-socfpga │ │ │ ├── clock_manager.h │ │ │ ├── dwmmc.h │ │ │ ├── fpga_manager.h │ │ │ ├── freeze_controller.h │ │ │ ├── nic301.h │ │ │ ├── reset_manager.h │ │ │ ├── scan_manager.h │ │ │ ├── scu.h │ │ │ ├── socfpga_base_addrs.h │ │ │ ├── spl.h │ │ │ ├── system_manager.h │ │ │ └── timer.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-sunxi │ │ │ ├── clock.h │ │ │ ├── clock_sun4i.h │ │ │ ├── cpu.h │ │ │ ├── dram.h │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── mmc.h │ │ │ ├── spl.h │ │ │ ├── sys_proto.h │ │ │ └── timer.h │ │ │ ├── arch-tegra │ │ │ ├── ap.h │ │ │ ├── apb_misc.h │ │ │ ├── board.h │ │ │ ├── clk_rst.h │ │ │ ├── clock.h │ │ │ ├── funcmux.h │ │ │ ├── fuse.h │ │ │ ├── gp_padctrl.h │ │ │ ├── gpio.h │ │ │ ├── mmc.h │ │ │ ├── pinmux.h │ │ │ ├── pmc.h │ │ │ ├── scu.h │ │ │ ├── sys_proto.h │ │ │ ├── tegra.h │ │ │ ├── tegra_i2c.h │ │ │ ├── tegra_mmc.h │ │ │ ├── timer.h │ │ │ ├── uart.h │ │ │ ├── usb.h │ │ │ └── warmboot.h │ │ │ ├── arch-tegra114 │ │ │ ├── clock-tables.h │ │ │ ├── clock.h │ │ │ ├── flow.h │ │ │ ├── funcmux.h │ │ │ ├── gp_padctrl.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── pinmux.h │ │ │ ├── pmu.h │ │ │ ├── sysctr.h │ │ │ ├── tegra.h │ │ │ └── tegra114_spi.h │ │ │ ├── arch-tegra124 │ │ │ ├── ahb.h │ │ │ ├── clock-tables.h │ │ │ ├── clock.h │ │ │ ├── flow.h │ │ │ ├── funcmux.h │ │ │ ├── gp_padctrl.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── mc.h │ │ │ ├── pinmux.h │ │ │ ├── pmu.h │ │ │ ├── sysctr.h │ │ │ └── tegra.h │ │ │ ├── arch-tegra20 │ │ │ ├── clock-tables.h │ │ │ ├── clock.h │ │ │ ├── dc.h │ │ │ ├── display.h │ │ │ ├── emc.h │ │ │ ├── flow.h │ │ │ ├── funcmux.h │ │ │ ├── gp_padctrl.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── pinmux.h │ │ │ ├── pmu.h │ │ │ ├── pwm.h │ │ │ ├── sdram_param.h │ │ │ ├── tegra.h │ │ │ ├── tegra20_sflash.h │ │ │ └── tegra20_slink.h │ │ │ ├── arch-tegra30 │ │ │ ├── clock-tables.h │ │ │ ├── clock.h │ │ │ ├── flow.h │ │ │ ├── funcmux.h │ │ │ ├── gp_padctrl.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── pinmux.h │ │ │ ├── pmu.h │ │ │ └── tegra.h │ │ │ ├── arch-tnetv107x │ │ │ ├── clock.h │ │ │ ├── hardware.h │ │ │ └── mux.h │ │ │ ├── arch-u8500 │ │ │ ├── clock.h │ │ │ ├── db8500_gpio.h │ │ │ ├── db8500_pincfg.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── prcmu.h │ │ │ ├── sys_proto.h │ │ │ └── u8500.h │ │ │ ├── arch-uniphier │ │ │ ├── arm-mpcore.h │ │ │ ├── bcu-regs.h │ │ │ ├── board.h │ │ │ ├── boot-device.h │ │ │ ├── led.h │ │ │ ├── sbc-regs.h │ │ │ ├── sc-regs.h │ │ │ ├── sg-regs.h │ │ │ ├── ssc-regs.h │ │ │ └── umc-regs.h │ │ │ ├── arch-vf610 │ │ │ ├── clock.h │ │ │ ├── crm_regs.h │ │ │ ├── imx-regs.h │ │ │ └── iomux-vf610.h │ │ │ ├── arch-zynq │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ └── sys_proto.h │ │ │ ├── armv7.h │ │ │ ├── armv8 │ │ │ └── mmu.h │ │ │ ├── assembler.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── bootm.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── davinci_rtc.h │ │ │ ├── dma-mapping.h │ │ │ ├── ehci-omap.h │ │ │ ├── emif.h │ │ │ ├── errno.h │ │ │ ├── gic.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── imx-common │ │ │ ├── boot_mode.h │ │ │ ├── dma.h │ │ │ ├── gpio.h │ │ │ ├── imximage.cfg │ │ │ ├── iomux-v3.h │ │ │ ├── mx5_video.h │ │ │ ├── mxc_i2c.h │ │ │ ├── regs-apbh.h │ │ │ ├── regs-bch.h │ │ │ ├── regs-common.h │ │ │ ├── regs-gpmi.h │ │ │ ├── sata.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_boot.h │ │ │ ├── omap_common.h │ │ │ ├── omap_gpio.h │ │ │ ├── omap_mmc.h │ │ │ ├── omap_musb.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 │ │ │ ├── semihosting.h │ │ │ ├── setup.h │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── ti-common │ │ │ ├── davinci_nand.h │ │ │ ├── sys_proto.h │ │ │ └── ti-aemif.h │ │ │ ├── types.h │ │ │ ├── u-boot-arm.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ └── utils.h │ └── lib │ │ ├── Makefile │ │ ├── _ashldi3.S │ │ ├── _ashrdi3.S │ │ ├── _divsi3.S │ │ ├── _lshrdi3.S │ │ ├── _modsi3.S │ │ ├── _udivsi3.S │ │ ├── _umodsi3.S │ │ ├── asm-offsets.c │ │ ├── board.c │ │ ├── bootm-fdt.c │ │ ├── bootm.c │ │ ├── cache-cp15.c │ │ ├── cache-pl310.c │ │ ├── cache.c │ │ ├── crt0.S │ │ ├── crt0_64.S │ │ ├── div0.c │ │ ├── eabi_compat.c │ │ ├── gic_64.S │ │ ├── interrupts.c │ │ ├── interrupts_64.c │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── relocate.S │ │ ├── relocate_64.S │ │ ├── reset.c │ │ ├── sections.c │ │ ├── semihosting.c │ │ ├── spl.c │ │ └── vectors.S ├── avr32 │ ├── Kconfig │ ├── 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 │ │ ├── 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 │ │ │ ├── errno.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 │ │ ├── board.c │ │ ├── bootm.c │ │ ├── interrupts.c │ │ └── memset.S ├── blackfin │ ├── Kconfig │ ├── 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 │ │ │ ├── errno.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 │ ├── config.mk │ ├── cpu │ │ ├── mcf5227x │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf523x │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf52x2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf532x │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ ├── mcf5445x │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── pci.c │ │ │ ├── speed.c │ │ │ └── start.S │ │ └── mcf547x_8x │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── pci.c │ │ │ ├── slicetimer.c │ │ │ ├── speed.c │ │ │ └── start.S │ ├── 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 │ │ │ ├── errno.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_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 │ │ │ ├── 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 │ │ ├── board.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── interrupts.c │ │ ├── time.c │ │ └── traps.c ├── microblaze │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cache.c │ │ ├── cpu.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 │ │ │ ├── errno.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 │ │ ├── board.c │ │ ├── bootm.c │ │ └── muldi3.c ├── mips │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── mips32 │ │ │ ├── Makefile │ │ │ ├── au1x00 │ │ │ │ ├── Makefile │ │ │ │ ├── au1x00_eth.c │ │ │ │ ├── au1x00_ide.c │ │ │ │ ├── au1x00_serial.c │ │ │ │ ├── au1x00_usb_ohci.c │ │ │ │ ├── au1x00_usb_ohci.h │ │ │ │ └── config.mk │ │ │ ├── cache.S │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── start.S │ │ │ └── time.c │ │ ├── mips64 │ │ │ ├── Makefile │ │ │ ├── cache.S │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── interrupts.c │ │ │ ├── start.S │ │ │ └── time.c │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── addrspace.h │ │ │ ├── asm.h │ │ │ ├── au1x00.h │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cachectl.h │ │ │ ├── cacheops.h │ │ │ ├── config.h │ │ │ ├── errno.h │ │ │ ├── global_data.h │ │ │ ├── io.h │ │ │ ├── isadep.h │ │ │ ├── jz4740.h │ │ │ ├── malta.h │ │ │ ├── mipsregs.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 │ │ ├── board.c │ │ ├── bootm.c │ │ ├── io.c │ │ ├── libgcc.h │ │ └── lshrdi3.c ├── nds32 │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ └── n1213 │ │ │ ├── Makefile │ │ │ ├── ag101 │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── lowlevel_init.S │ │ │ ├── timer.c │ │ │ └── watchdog.S │ │ │ ├── ag102 │ │ │ ├── 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 │ │ │ ├── errno.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 │ │ ├── board.c │ │ ├── bootm.c │ │ ├── cache.c │ │ └── interrupts.c ├── nios2 │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── exceptions.S │ │ ├── fdt.c │ │ ├── interrupts.c │ │ ├── start.S │ │ ├── sysid.c │ │ ├── traps.c │ │ └── u-boot.lds │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── bitops │ │ │ ├── atomic.h │ │ │ ├── ffs.h │ │ │ └── non-atomic.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── dma-mapping.h │ │ │ ├── errno.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── nios2.h │ │ │ ├── opcodes.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── psr.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── bootm.c │ │ ├── cache.S │ │ ├── libgcc.c │ │ ├── longlong.h │ │ └── time.c ├── openrisc │ ├── Kconfig │ ├── 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 │ │ │ ├── errno.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 │ │ ├── board.c │ │ ├── bootm.c │ │ └── timer.c ├── powerpc │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── 74xx_7xx │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cache.S │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── io.S │ │ │ ├── kgdb.S │ │ │ ├── speed.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ └── u-boot.lds │ │ ├── Makefile │ │ ├── mpc512x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── asm-offsets.h │ │ │ ├── cache.c │ │ │ ├── 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 │ │ │ ├── cache.c │ │ │ ├── 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 │ │ ├── mpc824x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── drivers │ │ │ │ ├── epic.h │ │ │ │ ├── epic │ │ │ │ │ ├── README │ │ │ │ │ ├── epic.h │ │ │ │ │ ├── epic1.c │ │ │ │ │ ├── epic2.S │ │ │ │ │ └── epicutil.S │ │ │ │ ├── errors.h │ │ │ │ └── i2c │ │ │ │ │ └── i2c.c │ │ │ ├── interrupts.c │ │ │ ├── pci.c │ │ │ ├── speed.c │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ └── u-boot.lds │ │ ├── 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 │ │ │ ├── cache.c │ │ │ ├── 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 │ │ │ ├── cache.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 │ │ │ ├── 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 │ │ │ ├── u-boot.lds │ │ │ ├── upatch.c │ │ │ └── video.c │ │ ├── mpc8xxx │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── fdt.c │ │ │ ├── fsl_lbc.c │ │ │ ├── law.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 │ ├── include │ │ └── asm │ │ │ ├── 4xx_pci.h │ │ │ ├── 4xx_pcie.h │ │ │ ├── 5xx_immap.h │ │ │ ├── 8xx_immap.h │ │ │ ├── arch-mpc83xx │ │ │ └── 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 │ │ │ ├── errno.h │ │ │ ├── fsl_dma.h │ │ │ ├── fsl_dtsec.h │ │ │ ├── fsl_errata.h │ │ │ ├── fsl_fman.h │ │ │ ├── fsl_i2c.h │ │ │ ├── fsl_law.h │ │ │ ├── fsl_lbc.h │ │ │ ├── fsl_liodn.h │ │ │ ├── fsl_memac.h │ │ │ ├── fsl_mpc83xx_serdes.h │ │ │ ├── fsl_pci.h │ │ │ ├── fsl_portals.h │ │ │ ├── fsl_secure_boot.h │ │ │ ├── fsl_serdes.h │ │ │ ├── fsl_srio.h │ │ │ ├── fsl_tgec.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 │ │ │ ├── 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 │ │ ├── board.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 │ │ ├── ticks.S │ │ └── time.c ├── sandbox │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── os.c │ │ ├── sdl.c │ │ ├── start.c │ │ ├── state.c │ │ └── u-boot.lds │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── include │ │ │ └── dt-bindings │ │ └── sandbox.dts │ ├── include │ │ └── asm │ │ │ ├── bitops.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── errno.h │ │ │ ├── getopt.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── io.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── sdl.h │ │ │ ├── sections.h │ │ │ ├── sound.h │ │ │ ├── spi.h │ │ │ ├── state.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ ├── u-boot-sandbox.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ └── interrupts.c ├── sh │ ├── Kconfig │ ├── 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 │ │ │ ├── errno.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 │ │ ├── ashiftlt.S │ │ ├── ashiftrt.S │ │ ├── ashldi3.c │ │ ├── ashrsi3.S │ │ ├── board.c │ │ ├── bootm.c │ │ ├── libgcc.h │ │ ├── lshiftrt.S │ │ ├── lshrdi3.c │ │ ├── movmem.S │ │ ├── time.c │ │ ├── time_sh2.c │ │ └── zimageboot.c ├── sparc │ ├── Kconfig │ ├── config.mk │ ├── cpu │ │ ├── leon2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── prom.c │ │ │ ├── serial.c │ │ │ └── start.S │ │ ├── leon3 │ │ │ ├── Makefile │ │ │ ├── ambapp.c │ │ │ ├── config.mk │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── interrupts.c │ │ │ ├── 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 │ │ │ ├── errno.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 │ │ ├── board.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── interrupts.c │ │ └── time.c └── x86 │ ├── Kconfig │ ├── config.mk │ ├── cpu │ ├── Makefile │ ├── config.mk │ ├── coreboot │ │ ├── Makefile │ │ ├── car.S │ │ ├── coreboot.c │ │ ├── ipchecksum.c │ │ ├── pci.c │ │ ├── sdram.c │ │ ├── tables.c │ │ └── timestamp.c │ ├── cpu.c │ ├── interrupts.c │ ├── resetvec.S │ ├── start.S │ ├── start16.S │ └── u-boot.lds │ ├── dts │ ├── .gitignore │ ├── Makefile │ ├── alex.dts │ ├── coreboot.dtsi │ ├── include │ │ └── dt-bindings │ ├── link.dts │ └── skeleton.dtsi │ ├── include │ └── asm │ │ ├── arch-coreboot │ │ ├── ipchecksum.h │ │ ├── sysinfo.h │ │ ├── tables.h │ │ └── timestamp.h │ │ ├── bitops.h │ │ ├── bootparam.h │ │ ├── byteorder.h │ │ ├── cache.h │ │ ├── config.h │ │ ├── control_regs.h │ │ ├── e820.h │ │ ├── errno.h │ │ ├── global_data.h │ │ ├── gpio.h │ │ ├── i8254.h │ │ ├── i8259.h │ │ ├── ibmpc.h │ │ ├── init_helpers.h │ │ ├── interrupt.h │ │ ├── io.h │ │ ├── ioctl.h │ │ ├── ist.h │ │ ├── msr-index.h │ │ ├── msr.h │ │ ├── pci.h │ │ ├── posix_types.h │ │ ├── processor-flags.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── relocate.h │ │ ├── sections.h │ │ ├── string.h │ │ ├── types.h │ │ ├── u-boot-x86.h │ │ ├── u-boot.h │ │ ├── unaligned.h │ │ ├── video │ │ └── edid.h │ │ └── zimage.h │ └── lib │ ├── Makefile │ ├── asm-offsets.c │ ├── bootm.c │ ├── cmd_boot.c │ ├── gcc.c │ ├── init_helpers.c │ ├── interrupts.c │ ├── pcat_interrupts.c │ ├── pcat_timer.c │ ├── pci_type1.c │ ├── physmem.c │ ├── relocate.c │ ├── string.c │ ├── tsc_timer.c │ ├── video.c │ └── zimage.c ├── board ├── 8dtech │ └── eco5pk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eco5pk.c │ │ └── eco5pk.h ├── AndesTech │ ├── adp-ag101 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── adp-ag101.c │ ├── adp-ag101p │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── adp-ag101p.c │ └── adp-ag102 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── adp-ag102.c ├── Barix │ └── ipam390 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.ipam390 │ │ ├── ipam390-ais-uart.cfg │ │ ├── ipam390.c │ │ └── u-boot-spl-ipam390.lds ├── BuR │ ├── common │ │ ├── bur_common.h │ │ └── common.c │ ├── kwb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux.c │ └── tseries │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ └── mux.c ├── BuS │ ├── eb_cpu5282 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eb_cpu5282.c │ │ └── u-boot.lds │ ├── eb_cpux9k2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── cpux9k2.c │ └── vl_ma2sc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vl_ma2sc.c ├── CarMediaLab │ └── flea3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flea3.c │ │ └── lowlevel_init.S ├── LEOX │ └── elpt860 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.LEOX │ │ ├── elpt860.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug ├── LaCie │ ├── common │ │ ├── common.c │ │ ├── common.h │ │ ├── cpld-gpio-bus.c │ │ └── cpld-gpio-bus.h │ ├── edminiv2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── 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 │ └── wireless_space │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── wireless_space.c ├── Marvell │ ├── aspenite │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aspenite.c │ ├── common │ │ ├── bootseq.txt │ │ ├── flash.c │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── intel_flash.c │ │ ├── intel_flash.h │ │ ├── memory.c │ │ ├── misc.S │ │ ├── ns16550.c │ │ ├── ns16550.h │ │ └── serial.c │ ├── db64360 │ │ ├── 64360.h │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── db64360.c │ │ ├── eth.h │ │ ├── mpsc.c │ │ ├── mpsc.h │ │ ├── mv_eth.c │ │ ├── mv_eth.h │ │ ├── mv_regs.h │ │ ├── pci.c │ │ └── sdram_init.c │ ├── db64460 │ │ ├── 64460.h │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── db64460.c │ │ ├── eth.h │ │ ├── mpsc.c │ │ ├── mpsc.h │ │ ├── mv_eth.c │ │ ├── mv_eth.h │ │ ├── mv_regs.h │ │ ├── pci.c │ │ └── sdram_init.c │ ├── dkb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── dkb.c │ ├── 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 │ ├── include │ │ ├── core.h │ │ ├── memory.h │ │ ├── mv_gen_reg.h │ │ └── pci.h │ ├── mv88f6281gtw_ge │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── mv88f6281gtw_ge.c │ │ └── mv88f6281gtw_ge.h │ ├── openrd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── openrd.c │ │ └── openrd.h │ ├── rd6281a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── rd6281a.c │ │ └── rd6281a.h │ └── sheevaplug │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ ├── sheevaplug.c │ │ └── sheevaplug.h ├── RRvision │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── RRvision.c │ ├── flash.c │ ├── u-boot.lds │ └── video_ad7179.h ├── Seagate │ ├── dockstar │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dockstar.c │ │ ├── dockstar.h │ │ └── kwbimage.cfg │ └── goflexhome │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── goflexhome.c │ │ └── kwbimage.cfg ├── a3000 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── a3000.c │ └── flash.c ├── 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 ├── afeb9260 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── afeb9260.c │ ├── config.mk │ └── partition.c ├── ait │ └── cam_enc_4xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cam_enc_4xx.c │ │ ├── config.mk │ │ ├── u-boot-spl.lds │ │ └── ublimage.cfg ├── alphaproject │ └── ap_sh4a_4a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ap_sh4a_4a.c │ │ └── lowlevel_init.S ├── altera │ ├── common │ │ └── cfide.c │ ├── nios2-generic │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── custom_fpga.h │ │ └── nios2-generic.c │ └── socfpga │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── iocsr_config.c │ │ ├── iocsr_config.h │ │ ├── pinmux_config.c │ │ ├── pinmux_config.h │ │ ├── pll_config.h │ │ └── socfpga_cyclone5.c ├── 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 │ ├── common │ │ └── flash.c │ ├── ebony │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── ebony.c │ │ ├── flash.c │ │ └── init.S │ ├── 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 │ ├── ocotea │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.ocotea │ │ ├── README.ocotea-PIBS-to-U-Boot │ │ ├── config.mk │ │ ├── flash.c │ │ ├── init.S │ │ ├── ocotea.c │ │ └── ocotea.h │ ├── 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 │ ├── taihu │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── lcd.c │ │ ├── taihu.c │ │ └── update.c │ ├── taishan │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── lcd.c │ │ ├── showinfo.c │ │ ├── taishan.c │ │ └── update.c │ ├── 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 ├── aristainetos │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── aristainetos.c │ ├── aristainetos.cfg │ ├── clocks.cfg │ ├── ddr-setup.cfg │ └── mt41j128M.cfg ├── armadeus │ └── apf27 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apf27.c │ │ ├── apf27.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ └── lowlevel_init.S ├── armltd │ ├── integrator │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── arm-ebi.h │ │ ├── integrator-sc.h │ │ ├── integrator.c │ │ ├── lowlevel_init.S │ │ ├── pci.c │ │ ├── pci_v3.h │ │ └── timer.c │ ├── versatile │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── versatile.c │ ├── vexpress │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vexpress_common.c │ └── vexpress64 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── vexpress64.c ├── astro │ └── mcf5373l │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── astro.h │ │ ├── fpga.c │ │ ├── mcf5373l.c │ │ └── u-boot.lds ├── atc │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── atc.c │ ├── flash.c │ └── ti113x.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 │ ├── sama5d3_xplained │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d3_xplained.c │ └── sama5d3xek │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── sama5d3xek.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 ├── avnet │ ├── fx12mm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── fx12mm.c │ │ └── xparameters.h │ └── v5fx30teval │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── v5fx30teval.c │ │ └── xparameters.h ├── bachmann │ └── ot1200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mx6q_4x_mt41j128.cfg │ │ └── ot1200.c ├── balloon3 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── balloon3.c ├── barco │ └── titanium │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── titanium.c ├── bc3450 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bc3450.c │ ├── cmd_bc3450.c │ └── mt48lc16m16a2-75.h ├── 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 ├── blackstamp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── blackstamp.c ├── blackvme │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── blackvme.c ├── bluegiga │ └── apx4devkit │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apx4devkit.c │ │ └── spl_boot.c ├── bluewater │ └── snapper9260 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── snapper9260.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 │ ├── bcm28155_ap │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── bcm28155_ap.c │ ├── bcm28155_w1d │ │ └── MAINTAINERS │ ├── bcm958300k │ │ ├── Kconfig │ │ └── MAINTAINERS │ ├── bcm958622hr │ │ ├── Kconfig │ │ └── MAINTAINERS │ └── bcm_ep │ │ ├── Makefile │ │ └── board.c ├── buffalo │ └── lsxl │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage-lschl.cfg │ │ ├── kwbimage-lsxhl.cfg │ │ ├── lsxl.c │ │ └── lsxl.h ├── calao │ ├── sbc35_a9g20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── sbc35_a9g20.c │ │ └── spi.c │ ├── tny_a9260 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── spi.c │ │ └── tny_a9260.c │ └── usb_a9263 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── usb_a9263.c ├── canmb │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── canmb.c │ └── mt48lc16m32s2-75.h ├── chromebook-x86 │ └── coreboot │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── coreboot_start.S ├── 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 ├── cm4008 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm4008.c │ ├── config.mk │ └── flash.c ├── cm41xx │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm41xx.c │ ├── config.mk │ └── flash.c ├── cm5200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cm5200.c │ ├── cm5200.h │ ├── cmd_cm5200.c │ ├── fwupdate.c │ └── fwupdate.h ├── cmi │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── cmi.c │ └── flash.c ├── cobra5272 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── bdm │ │ ├── cobra5272_uboot.gdb │ │ ├── gdbinit.reset │ │ ├── load-cobra_uboot │ │ └── reset │ ├── cobra5272.c │ ├── config.mk │ ├── flash.c │ └── u-boot.lds ├── cogent │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── README.cma286 │ ├── dipsw.c │ ├── dipsw.h │ ├── flash.c │ ├── flash.h │ ├── kbm.c │ ├── lcd.c │ ├── lcd.h │ ├── mb.c │ ├── mb.h │ ├── par.c │ ├── par.h │ ├── pci.c │ ├── pci.h │ ├── rtc.c │ ├── rtc.h │ ├── serial.c │ ├── serial.h │ ├── u-boot.lds │ └── u-boot.lds.debug ├── comelit │ └── dig297 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dig297.c │ │ └── dig297.h ├── compal │ └── paz00 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── paz00.c ├── compulab │ ├── cm_fx6 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_fx6.c │ │ ├── common.c │ │ ├── common.h │ │ ├── imximage.cfg │ │ └── 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_t54 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cm_t54.c │ │ ├── mux.c │ │ └── spl.c │ ├── common │ │ ├── Makefile │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ └── omap3_display.c │ └── trimslice │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── trimslice.c ├── congatec │ └── cgtqmx6eval │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── cgtqmx6eval.c │ │ └── imximage.cfg ├── corscience │ └── tricorder │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ ├── tricorder-eeprom.c │ │ ├── tricorder-eeprom.h │ │ ├── tricorder.c │ │ └── tricorder.h ├── cpc45 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cpc45.c │ ├── flash.c │ ├── ide.c │ ├── pd67290.c │ └── plx9030.c ├── cpu86 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cpu86.c │ ├── cpu86.h │ └── flash.c ├── cpu87 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cpu87.c │ ├── cpu87.h │ └── flash.c ├── creative │ └── xfi3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── spl_boot.c │ │ └── xfi3.c ├── csb272 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── csb272.c │ └── init.S ├── csb472 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── csb472.c │ └── init.S ├── cu824 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── cu824.c │ └── flash.c ├── d-link │ └── dns325 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dns325.c │ │ ├── dns325.h │ │ └── kwbimage.cfg ├── dave │ ├── PPChameleonEVB │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── PPChameleonEVB.c │ │ ├── flash.c │ │ ├── nand.c │ │ └── u-boot.lds │ └── common │ │ └── flash.c ├── davedenx │ ├── aria │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── aria.c │ └── qong │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── fpga.c │ │ ├── lowlevel_init.S │ │ ├── qong.c │ │ └── qong_fpga.h ├── davinci │ ├── da8xxevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.da850 │ │ ├── README.hawkboard │ │ ├── da830evm.c │ │ ├── da850evm.c │ │ ├── hawkboard-ais-nand.cfg │ │ ├── hawkboard.c │ │ ├── u-boot-spl-da850evm.lds │ │ └── u-boot-spl-hawk.lds │ ├── dm355evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── dm355evm.c │ ├── dm355leopard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── dm355leopard.c │ ├── dm365evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── dm365evm.c │ ├── dm6467evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── dm6467evm.c │ ├── dvevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board_init.S │ │ ├── config.mk │ │ └── dvevm.c │ ├── ea20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ea20.c │ ├── schmoogie │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board_init.S │ │ ├── config.mk │ │ └── schmoogie.c │ ├── sffsdr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board_init.S │ │ ├── config.mk │ │ └── sffsdr.c │ └── sonata │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board_init.S │ │ ├── config.mk │ │ └── sonata.c ├── dbau1x00 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── config.mk │ ├── dbau1x00.c │ └── lowlevel_init.S ├── denx │ ├── m28evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── m28evk.c │ │ └── spl_boot.c │ └── m53evk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── m53evk.c ├── dnp5370 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ └── dnp5370.c ├── eXalion │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── eXalion.c │ ├── eXalion.h │ └── piix_pci.h ├── earthlcd │ └── favr-32-ezkit │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── favr-32-ezkit.c │ │ └── flash.c ├── egnite │ └── ethernut5 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ethernut5.c │ │ ├── ethernut5_pwrman.c │ │ └── ethernut5_pwrman.h ├── eltec │ ├── elppc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── asm_init.S │ │ ├── eepro100_srom.c │ │ ├── elppc.c │ │ ├── flash.c │ │ ├── misc.c │ │ ├── mpc107_i2c.c │ │ ├── pci.c │ │ └── srom.h │ └── mhpc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mhpc.c │ │ └── u-boot.lds.debug ├── embest │ └── mx6boards │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mx6boards.c ├── emk │ ├── common │ │ ├── am79c874.c │ │ ├── flash.c │ │ └── vpd.c │ ├── top5200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── top5200.c │ ├── top860 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── top860.c │ │ └── u-boot.lds.debug │ └── top9000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── spi.c │ │ └── top9000.c ├── enbw │ └── enbw_cmc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── enbw_cmc.c ├── ep8260 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── ep8260.c │ ├── ep8260.h │ ├── flash.c │ └── mii_phy.c ├── ep82xxm │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── ep82xxm.c ├── esd │ ├── apc405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── apc405.c │ │ ├── fpgadata.c │ │ └── logo_640_480_24bpp.c │ ├── ar405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ar405.c │ │ ├── ar405.h │ │ ├── flash.c │ │ ├── fpgadata.c │ │ └── fpgadata_xl30.c │ ├── ash405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ash405.c │ │ ├── flash.c │ │ └── fpgadata.c │ ├── cms700 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cms700.c │ │ └── flash.c │ ├── common │ │ ├── auto_update.c │ │ ├── auto_update.h │ │ ├── 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_cpci405.c │ │ ├── fpgadata_cpci4052.c │ │ └── fpgadata_cpci405ab.c │ ├── cpci5200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpci5200.c │ │ ├── mt46v16m16-75.h │ │ └── strataflash.c │ ├── cpci750 │ │ ├── 64360.h │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpci750.c │ │ ├── eth.h │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── ide.c │ │ ├── local.h │ │ ├── misc.S │ │ ├── mpsc.c │ │ ├── mpsc.h │ │ ├── mv_eth.c │ │ ├── mv_eth.h │ │ ├── mv_regs.h │ │ ├── pci.c │ │ ├── sdram_init.c │ │ └── serial.c │ ├── cpciiser4 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpciiser4.c │ │ ├── cpciiser4.h │ │ ├── flash.c │ │ └── fpgadata.c │ ├── dp405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dp405.c │ │ └── flash.c │ ├── du405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── du405.c │ │ ├── du405.h │ │ ├── flash.c │ │ └── fpgadata.c │ ├── du440 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── du440.c │ │ ├── du440.h │ │ └── init.S │ ├── hh405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ ├── hh405.c │ │ ├── logo_1024_768_8bpp.c │ │ ├── logo_320_240_4bpp.c │ │ ├── logo_320_240_8bpp.c │ │ └── logo_640_480_24bpp.c │ ├── hub405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── hub405.c │ ├── mecp5123 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mecp5123.c │ ├── mecp5200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mecp5200.c │ │ └── mt46v16m16-75.h │ ├── meesc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── meesc.c │ │ └── partition.c │ ├── ocrtc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_ocrtc.c │ │ ├── flash.c │ │ ├── ocrtc.c │ │ └── ocrtc.h │ ├── otc570 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── otc570.c │ │ └── partition.c │ ├── pci405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cmd_pci405.c │ │ ├── flash.c │ │ ├── fpgadata.c │ │ ├── pci405.c │ │ ├── pci405.h │ │ └── writeibm.S │ ├── pf5200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mt46v16m16-75.h │ │ └── pf5200.c │ ├── plu405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ └── plu405.c │ ├── pmc405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── pmc405.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 │ ├── tasreg │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── fpgadata.c │ │ ├── tasreg.c │ │ └── u-boot.lds │ ├── vme8349 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── caddy.c │ │ ├── caddy.h │ │ ├── pci.c │ │ ├── vme8349.c │ │ └── vme8349pin.h │ ├── voh405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ ├── logo_320_240_4bpp.c │ │ ├── logo_640_480_24bpp.c │ │ └── voh405.c │ ├── vom405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── vom405.c │ └── wuh405 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ └── wuh405.c ├── esg │ └── ima3-mx53 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ima3-mx53.c │ │ └── imximage.cfg ├── espt │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── espt.c │ └── lowlevel_init.S ├── esteem192e │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── esteem192e.c │ ├── flash.c │ └── u-boot.lds ├── eukrea │ ├── cpu9260 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cpu9260.c │ │ └── led.c │ └── cpuat91 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── cpuat91.c ├── evb64260 │ ├── 64260.h │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── README.EVB-64260-750CX │ ├── bootseq.txt │ ├── eth.c │ ├── eth.h │ ├── eth_addrtbl.c │ ├── eth_addrtbl.h │ ├── evb64260.c │ ├── flash.c │ ├── i2c.c │ ├── i2c.h │ ├── intel_flash.c │ ├── intel_flash.h │ ├── local.h │ ├── memory.c │ ├── misc.S │ ├── mpsc.c │ ├── mpsc.h │ ├── pci.c │ ├── sdram_init.c │ ├── serial.c │ ├── u-boot.lds │ ├── zuma_pbb.c │ ├── zuma_pbb.h │ ├── zuma_pbb_mbox.c │ └── zuma_pbb_mbox.h ├── exmeritus │ └── hww1u1a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── gpios.h │ │ ├── hww1u1a.c │ │ ├── law.c │ │ └── tlb.c ├── faraday │ └── a320evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── a320evb.c │ │ └── lowlevel_init.S ├── 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 │ │ ├── cadmus.c │ │ ├── cadmus.h │ │ ├── cds_pci_ft.c │ │ ├── cds_via.c │ │ ├── dcu_sii9022a.c │ │ ├── dcu_sii9022a.h │ │ ├── diu_ch7301.c │ │ ├── diu_ch7301.h │ │ ├── eeprom.h │ │ ├── fman.c │ │ ├── fman.h │ │ ├── ics307_clk.c │ │ ├── ics307_clk.h │ │ ├── idt8t49n222a_serdes_clk.c │ │ ├── idt8t49n222a_serdes_clk.h │ │ ├── ngpixis.c │ │ ├── ngpixis.h │ │ ├── p_corenet │ │ │ ├── Makefile │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ └── tlb.c │ │ ├── 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 │ │ ├── sys_eeprom.c │ │ ├── via.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 │ ├── ls1021aqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── ls1021aqds.c │ │ └── ls1021aqds_qixis.h │ ├── ls1021atwr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── dcu.c │ │ └── ls1021atwr.c │ ├── ls2085a │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── ddr.h │ │ └── ls2085a.c │ ├── m5208evbe │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m5208evbe.c │ │ └── u-boot.lds │ ├── m52277evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── m52277evb.c │ │ └── u-boot.lds │ ├── m5235evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── m5235evb.c │ │ └── u-boot.lds │ ├── m5249evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m5249evb.c │ │ └── u-boot.lds │ ├── m5253demo │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── m5253demo.c │ │ └── u-boot.lds │ ├── m5253evbe │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── m5253evbe.c │ │ └── u-boot.lds │ ├── m5272c3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m5272c3.c │ │ └── u-boot.lds │ ├── m5275evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m5275evb.c │ │ └── u-boot.lds │ ├── m5282evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m5282evb.c │ │ └── u-boot.lds │ ├── m53017evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── m53017evb.c │ │ └── u-boot.lds │ ├── m5329evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m5329evb.c │ │ ├── nand.c │ │ └── u-boot.lds │ ├── m5373evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── m5373evb.c │ │ ├── nand.c │ │ └── u-boot.lds │ ├── m54418twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m54418twr.c │ │ └── u-boot.lds │ ├── m54451evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── m54451evb.c │ │ └── u-boot.lds │ ├── m54455evb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── m54455evb.c │ │ └── u-boot.lds │ ├── m547xevb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── m547xevb.c │ │ └── u-boot.lds │ ├── m548xevb │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── m548xevb.c │ │ └── u-boot.lds │ ├── mpc5121ads │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── mpc5121ads.c │ ├── mpc7448hpc2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── asm_init.S │ │ ├── config.mk │ │ ├── mpc7448hpc2.c │ │ └── tsi108_init.c │ ├── mpc8266ads │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ └── mpc8266ads.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 │ ├── mpc8360emds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── mpc8360emds.c │ │ └── pci.c │ ├── mpc8360erdk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mpc8360erdk.c │ │ └── nand.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 │ │ ├── lowlevel_init.S │ │ └── 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 │ │ └── mx6qsabreauto.c │ ├── mx6sabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mx6dlsabresd.cfg │ │ ├── mx6q_4x_mt41j128.cfg │ │ └── mx6sabresd.c │ ├── mx6slevk │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6slevk.c │ ├── mx6sxsabresd │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── mx6sxsabresd.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 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1_p2_rdb.c │ │ ├── pci.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── p1_p2_rdb_pc │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1_p2_rdb_pc.c │ │ ├── spl.c │ │ ├── spl_minimal.c │ │ └── tlb.c │ ├── p1_twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p1_twr.c │ │ └── tlb.c │ ├── p2020come │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p2020come.c │ │ └── tlb.c │ ├── p2020ds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── p2020ds.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 │ ├── 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 │ │ ├── t1042_pi_rcw.cfg │ │ ├── t1042_rcw.cfg │ │ ├── t104x_pbi.cfg │ │ ├── t104xrdb.c │ │ ├── t104xrdb.h │ │ └── tlb.c │ ├── t208xqds │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── 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 │ │ ├── ddr.c │ │ ├── ddr.h │ │ ├── eth.c │ │ ├── law.c │ │ ├── pci.c │ │ ├── t4240rdb.c │ │ ├── t4_pbi.cfg │ │ ├── t4_rcw.cfg │ │ ├── t4rdb.h │ │ └── tlb.c │ └── vf610twr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage.cfg │ │ └── vf610twr.c ├── funkwerk │ └── vovpn-gw │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash.c │ │ ├── m88e6060.c │ │ ├── m88e6060.h │ │ └── vovpn-gw.c ├── g2000 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── g2000.c │ └── strataflash.c ├── gaisler │ ├── gr_cpci_ax2000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── gr_cpci_ax2000.c │ ├── gr_ep2s60 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── gr_ep2s60.c │ ├── gr_xc3s_1500 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── gr_xc3s_1500.c │ ├── grsim │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── grsim.c │ └── grsim_leon2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── grsim_leon2.c ├── galaxy5200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── galaxy5200.c ├── gateworks │ └── gw_ventana │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── clocks.cfg │ │ ├── eeprom.c │ │ ├── gsc.c │ │ ├── gsc.h │ │ ├── gw_ventana.c │ │ ├── gw_ventana.cfg │ │ ├── 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 │ │ ├── dp501.c │ │ ├── dp501.h │ │ ├── fpga.c │ │ ├── mclink.c │ │ ├── mclink.h │ │ ├── miiphybb.c │ │ ├── osd.c │ │ └── osd.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 │ └── p1022 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── controlcenterd-id.c │ │ ├── controlcenterd-id.h │ │ ├── controlcenterd.c │ │ ├── ddr.c │ │ ├── diu.c │ │ ├── law.c │ │ ├── sdhc_boot.c │ │ └── tlb.c ├── genesi │ └── mx51_efikamx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── efikamx-usb.c │ │ ├── efikamx.c │ │ ├── imximage_mx.cfg │ │ └── imximage_sb.cfg ├── gumstix │ ├── duovero │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── duovero.c │ │ └── duovero_mux_data.h │ └── pepper │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c ├── gw8260 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ └── gw8260.c ├── h2200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── h2200-header.S │ └── h2200.c ├── hale │ └── tt01 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── tt01.c ├── hermes │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── hermes.c │ ├── u-boot.lds │ └── u-boot.lds.debug ├── highbank │ ├── MAINTAINERS │ ├── Makefile │ └── highbank.c ├── htkw │ └── mcx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mcx.c │ │ └── mcx.h ├── hymod │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── bsp.c │ ├── config.mk │ ├── eeprom.c │ ├── env.c │ ├── fetch.c │ ├── flash.c │ ├── flash.h │ ├── global_env │ ├── hymod.c │ ├── hymod.h │ ├── input.c │ ├── u-boot.lds │ └── u-boot.lds.debug ├── ibf-dsp561 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ └── ibf-dsp561.c ├── icecube │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── README.Lite5200B_low_power │ ├── flash.c │ ├── icecube.c │ ├── mt46v16m16-75.h │ ├── mt46v32m16.h │ └── mt48lc16m16a2-75.h ├── icpdas │ └── lp8x4x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── lp8x4x.c ├── icu862 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── icu862.c │ ├── pcmcia.c │ ├── u-boot.lds │ └── u-boot.lds.debug ├── ids │ ├── ids8247 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ids8247.c │ └── ids8313 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ids8313.c ├── ifm │ ├── ac14xx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── ac14xx.c │ └── o2dnt2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── o2dnt2.c ├── imgtec │ └── malta │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── flash-malta-boot.tcl │ │ ├── lowlevel_init.S │ │ ├── malta.c │ │ ├── superio.c │ │ └── superio.h ├── 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 ├── 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 ├── iomega │ └── iconnect │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── iconnect.c │ │ ├── iconnect.h │ │ └── kwbimage.cfg ├── ip04 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ └── ip04.c ├── ip860 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── ip860.c │ └── u-boot.lds.debug ├── ipek01 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── ipek01.c ├── iphase4539 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── flash.c │ └── iphase4539.c ├── isee │ ├── igep0033 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── board.c │ │ ├── board.h │ │ └── mux.c │ └── igep00x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── igep00x0.c │ │ └── igep00x0.h ├── ivm │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── ivm.c │ └── u-boot.lds.debug ├── jornada │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── jornada.c │ └── setup.S ├── jse │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README.txt │ ├── flash.c │ ├── host_bridge.c │ ├── init.S │ ├── jse.c │ ├── jse_priv.h │ └── sdram.c ├── jupiter │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── jupiter.c ├── karo │ ├── tk71 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kwbimage.cfg │ │ └── tk71.c │ └── tx25 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── tx25.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 ├── korat │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── config.mk │ ├── init.S │ ├── korat.c │ └── u-boot-F7FC.lds ├── kup │ ├── common │ │ ├── flash.c │ │ ├── kup.c │ │ ├── kup.h │ │ ├── load_sernum_ethaddr.c │ │ └── pcmcia.c │ ├── kup4k │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kup4k.c │ │ └── u-boot.lds.debug │ └── kup4x │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── kup4x.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug ├── logicpd │ ├── am3517evm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── am3517evm.c │ │ └── am3517evm.h │ ├── imx27lite │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx27lite.c │ │ └── lowlevel_init.S │ ├── imx31_litekit │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imx31_litekit.c │ │ └── lowlevel_init.S │ ├── omap3som │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── omap3logic.c │ │ └── omap3logic.h │ └── zoom1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── zoom1.c │ │ └── zoom1.h ├── lwmon │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README.keybd │ ├── flash.c │ ├── lwmon.c │ ├── pcmcia.c │ └── u-boot.lds.debug ├── lwmon5 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ ├── init.S │ ├── kbd.c │ ├── lwmon5.c │ └── sdram.c ├── manroland │ ├── hmi1001 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── hmi1001.c │ ├── mucmc52 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mucmc52.c │ ├── uc100 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── pcmcia.c │ │ └── uc100.c │ └── uc101 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── uc101.c ├── matrix_vision │ ├── common │ │ ├── Makefile │ │ ├── mv_common.c │ │ └── mv_common.h │ └── mvblx │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── mvblx.c │ │ ├── mvblx.h │ │ └── sys_eeprom.c ├── mcc200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── auto_update.c │ ├── lcd.c │ ├── mcc200.c │ ├── mt46v16m16-75.h │ ├── mt48lc16m16a2-75.h │ ├── mt48lc16m32s2-75.h │ └── mt48lc8m32b2-6-7.h ├── micronas │ └── vct │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bcu.h │ │ ├── config.mk │ │ ├── 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 ├── mimc │ └── mimc200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── mimc200.c ├── miromico │ └── hammerhead │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── hammerhead.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 ├── muas3001 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── muas3001.c ├── munices │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── mt48lc16m16a2-75.h │ └── munices.c ├── musenki │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── flash.c │ └── musenki.c ├── mvblue │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── mvblue.c │ └── u-boot.lds ├── netvia │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── netvia.c │ └── u-boot.lds.debug ├── 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 │ ├── common │ │ ├── Makefile │ │ ├── board.c │ │ ├── common.mk │ │ ├── emc.c │ │ └── emc.h │ ├── dalmore │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── dalmore.c │ │ └── pinmux-config-dalmore.h │ ├── harmony │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── harmony.c │ ├── jetson-tk1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── jetson-tk1.c │ │ └── pinmux-config-jetson-tk1.h │ ├── 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 │ ├── overo.c │ └── overo.h ├── palmld │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── palmld.c ├── palmtc │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── palmtc.c ├── palmtreo680 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ └── palmtreo680.c ├── pandora │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── pandora.c │ └── pandora.h ├── pb1x00 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── config.mk │ ├── flash.c │ ├── lowlevel_init.S │ └── pb1x00.c ├── pcs440ep │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ ├── flash.c │ ├── init.S │ └── pcs440ep.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 ├── pm520 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── mt46v16m16-75.h │ ├── mt48lc16m16a2-75.h │ └── pm520.c ├── pm826 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ └── pm826.c ├── pm828 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ └── pm828.c ├── ppcag │ └── bg0900 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── bg0900.c │ │ └── spl_boot.c ├── ppmc7xx │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── init.S │ ├── pci.c │ └── ppmc7xx.c ├── ppmc8260 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── ppmc8260.c ├── pr1 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── pr1.c ├── prodrive │ ├── alpr │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── alpr.c │ │ ├── config.mk │ │ ├── fpga.c │ │ ├── init.S │ │ └── nand.c │ ├── p3mx │ │ ├── 64460.h │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── eth.h │ │ ├── misc.S │ │ ├── mpsc.c │ │ ├── mpsc.h │ │ ├── mv_eth.c │ │ ├── mv_eth.h │ │ ├── mv_regs.h │ │ ├── p3mx.c │ │ ├── p3mx.h │ │ ├── pci.c │ │ ├── sdram_init.c │ │ └── serial.c │ └── p3p440 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── p3p440.c │ │ └── p3p440.h ├── pxa255_idp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── idp_notes.txt │ ├── pxa_idp.c │ ├── pxa_reg_calcs.out │ └── pxa_reg_calcs.py ├── qemu-mips │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── lowlevel_init.S │ └── qemu-mips.c ├── r360mpi │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── pcmcia.c │ ├── r360mpi.c │ └── u-boot.lds ├── raidsonic │ └── ib62x0 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ib62x0.c │ │ ├── ib62x0.h │ │ └── kwbimage.cfg ├── raspberrypi │ └── rpi_b │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── rpi_b.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 │ ├── ecovec │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ecovec.c │ │ └── lowlevel_init.S │ ├── koelsch │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── koelsch.c │ │ ├── qos.c │ │ └── qos.h │ ├── lager │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lager.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 │ ├── 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 │ ├── 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 ├── rockchip │ ├── common │ │ ├── Makefile │ │ ├── SecureBoot │ │ │ ├── SecureBoot.c │ │ │ ├── SecureBoot.h │ │ │ ├── SecureVerify.c │ │ │ ├── SecureVerify.h │ │ │ ├── crypto.c │ │ │ ├── crypto.h │ │ │ ├── efuse.c │ │ │ └── efuse.h │ │ ├── config.h │ │ ├── emmc │ │ │ ├── hw_MMC.c │ │ │ ├── hw_MMC.h │ │ │ ├── hw_SD.c │ │ │ ├── hw_SD.h │ │ │ ├── hw_SDCommon.h │ │ │ ├── hw_SDConfig.h │ │ │ ├── hw_SDController.c │ │ │ ├── hw_SDController.h │ │ │ ├── hw_SDM.c │ │ │ ├── hw_SDM.h │ │ │ ├── hw_SDOsAdapt.c │ │ │ ├── hw_SDPlatAdapt.c │ │ │ ├── hw_SDPlatAdapt.h │ │ │ ├── hwapi_SDController.h │ │ │ ├── hwapi_SDM.h │ │ │ ├── hwapi_SDOsAdapt.h │ │ │ └── sdmmc_config.h │ │ ├── mediaboot │ │ │ ├── nandflash_boot.c │ │ │ ├── nandflash_boot.h │ │ │ ├── sdmmcBoot.c │ │ │ └── sdmmcBoot.h │ │ ├── platform │ │ │ ├── chipDepend.c │ │ │ ├── chipDepend.h │ │ │ ├── crc.c │ │ │ ├── ftl_std.c │ │ │ ├── ftl_std.h │ │ │ ├── rc4_enc.c │ │ │ ├── rsa.c │ │ │ ├── rsa.h │ │ │ ├── sha.c │ │ │ └── sha.h │ │ ├── rkboot │ │ │ └── fastboot.c │ │ ├── rkloader │ │ │ ├── idblock.c │ │ │ ├── idblock.h │ │ │ ├── key.c │ │ │ ├── key.h │ │ │ ├── parameter.c │ │ │ ├── parameter.h │ │ │ ├── pwm_remotectl.c │ │ │ ├── rkimage.c │ │ │ ├── rkimage.h │ │ │ ├── rkloader.c │ │ │ └── rkloader.h │ │ └── storage │ │ │ ├── storage.c │ │ │ └── storage.h │ └── rk32xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── board_test.c │ │ ├── config.mk │ │ ├── io_tool.c │ │ └── rk32xx.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 ├── sacsng │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── clkinit.c │ ├── clkinit.h │ ├── flash.c │ ├── ioconfig.h │ └── sacsng.c ├── samsung │ ├── arndale │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── arndale.c │ │ └── arndale_spl.c │ ├── common │ │ ├── Makefile │ │ ├── board.c │ │ ├── dfu_sample_env.txt │ │ ├── exynos-uboot-spl.lds │ │ ├── gadget.c │ │ ├── misc.c │ │ └── multi_i2c.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 │ │ ├── exynos5-dt.c │ │ └── smdk5250_spl.c │ ├── smdk5420 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── smdk5420.c │ │ └── 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 ├── sandbox │ ├── MAINTAINERS │ ├── Makefile │ ├── README.sandbox │ └── sandbox.c ├── sandisk │ └── sansa_fuze_plus │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sfp.c │ │ └── spl_boot.c ├── sandpoint │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── dinkdl │ ├── flash.c │ ├── sandpoint.c │ └── u-boot.lds ├── sbc405 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── sbc405.c │ └── strataflash.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 ├── sc3 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── init.S │ ├── sc3.c │ ├── sc3.h │ └── sc3nand.c ├── scb9328 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── intel.h │ ├── lowlevel_init.S │ └── scb9328.c ├── schulercontrol │ └── sc_sps_1 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── sc_sps_1.c │ │ └── spl_boot.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 │ └── 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 │ ├── hummingboard │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── hummingboard.c │ │ └── solo.cfg │ └── mx6-microsom │ │ ├── 800mhz_2x128mx16.cfg │ │ ├── clocks.cfg │ │ └── ddr-800mhz-32bit-setup.cfg ├── spd8xx │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ ├── spd8xx.c │ ├── u-boot.lds │ └── u-boot.lds.debug ├── 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 ├── st-ericsson │ ├── snowball │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── db8500_pins.h │ │ └── snowball.c │ └── u8500 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── gpio.c │ │ └── u8500_href.c ├── st │ └── nhk8815 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.nhk8815 │ │ └── nhk8815.c ├── stx │ ├── stxgp3 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── flash.c │ │ ├── law.c │ │ ├── stxgp3.c │ │ └── tlb.c │ └── stxssa │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── stxssa.c │ │ └── tlb.c ├── sunxi │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── ahci.c │ ├── board.c │ ├── dram_a10_olinuxino_l.c │ ├── dram_a10s_olinuxino_m.c │ ├── dram_a13_oli_micro.c │ ├── dram_a13_olinuxino.c │ ├── dram_a20_olinuxino_l.c │ ├── dram_bananapi.c │ ├── dram_cubieboard.c │ ├── dram_cubieboard2.c │ ├── dram_cubietruck.c │ ├── dram_linksprite_pcduino3.c │ ├── dram_r7dongle.c │ ├── dram_sun4i_360_1024_iow16.c │ ├── dram_sun4i_360_1024_iow8.c │ ├── dram_sun4i_360_512.c │ ├── dram_sun4i_384_1024_iow8.c │ ├── dram_sun7i_384_1024_iow16.c │ ├── dram_sun7i_384_512_busw16_iow16.c │ └── gmac.c ├── synopsys │ ├── Kconfig │ ├── MAINTAINERS │ └── axs101 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── axs101.c │ │ └── nand.c ├── syteco │ ├── jadecpu │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── jadecpu.c │ │ └── lowlevel_init.S │ └── zmx25 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── zmx25.c ├── t3corp │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── chip_config.c │ ├── config.mk │ ├── init.S │ └── t3corp.c ├── taskit │ └── stamp9g20 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── led.c │ │ └── stamp9g20.c ├── tcm-bf518 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── tcm-bf518.c ├── tcm-bf537 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── config.mk │ ├── gpio_cfi_flash.c │ └── tcm-bf537.c ├── technexion │ ├── tao3530 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── tao3530.c │ │ └── tao3530.h │ └── twister │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── twister.c │ │ └── twister.h ├── teejet │ └── mt_ventoux │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── mt_ventoux.c │ │ └── mt_ventoux.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 │ ├── beagle │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── beagle.c │ │ ├── beagle.h │ │ └── led.c │ ├── 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_k2hk.c │ │ ├── ddr3_cfg.c │ │ ├── ddr3_cfg.h │ │ ├── ddr3_k2e.c │ │ └── ddr3_k2hk.c │ ├── omap5_uevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── evm.c │ │ └── mux_data.h │ ├── panda │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── panda.c │ │ └── panda_mux_data.h │ ├── sdp3430 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ ├── sdp.c │ │ └── sdp.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 │ └── tnetv107xevm │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── config.mk │ │ └── sdb_board.c ├── timll │ ├── devkit3250 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── devkit3250.c │ └── devkit8000 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ ├── devkit8000.c │ │ └── devkit8000.h ├── toradex │ ├── colibri_pxa270 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── colibri_pxa270.c │ ├── colibri_t20-common │ │ ├── colibri_t20-common.c │ │ └── colibri_t20-common.h │ ├── colibri_t20_iris │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ └── colibri_t20_iris.c │ └── colibri_t30 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── colibri_t30.c │ │ └── pinmux-config-colibri_t30.h ├── total5200 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── mt48lc16m16a2-75.h │ ├── mt48lc32m16a2-75.h │ ├── sdram.c │ ├── sdram.h │ └── total5200.c ├── tqc │ ├── tqm5200 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── cam5200_flash.c │ │ ├── cmd_stk52xx.c │ │ ├── cmd_tb5200.c │ │ ├── mt48lc16m16a2-75.h │ │ └── tqm5200.c │ ├── tqm8260 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README │ │ └── tqm8260.c │ ├── tqm8272 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── nand.c │ │ ├── tqm8272.c │ │ └── tqm8272.h │ ├── 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 │ │ ├── tqma6q.cfg │ │ └── tqma6s.cfg ├── trizepsiv │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── conxs.c │ └── eeprom.c ├── ttcontrol │ └── vision2 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── imximage_hynix.cfg │ │ └── vision2.c ├── udoo │ ├── 1066mhz_4x256mx16.cfg │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── clocks.cfg │ ├── ddr-setup.cfg │ ├── udoo.c │ └── udoo.cfg ├── utx8245 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ └── utx8245.c ├── v38b │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── ethaddr.c │ └── v38b.c ├── ve8313 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── ve8313.c ├── vpac270 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── onenand.c │ ├── u-boot-spl.lds │ └── vpac270.c ├── w7o │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── cmd_vpd.c │ ├── errors.h │ ├── flash.c │ ├── fpga.c │ ├── fsboot.c │ ├── init.S │ ├── post1.S │ ├── post2.c │ ├── u-boot.lds.debug │ ├── vpd.c │ ├── vpd.h │ ├── w7o.c │ ├── w7o.h │ └── watchdog.c ├── wandboard │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ └── wandboard.c ├── woodburn │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── imximage.cfg │ ├── lowlevel_init.S │ └── woodburn.c ├── xaeniax │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── flash.c │ └── xaeniax.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 │ ├── ml507 │ │ ├── Kconfig │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── ml507.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 ├── zeus │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── update.c │ └── zeus.c └── zipitz2 │ ├── Kconfig │ ├── MAINTAINERS │ ├── Makefile │ └── zipitz2.c ├── common ├── Kconfig ├── Makefile ├── aboot.c ├── autoboot.c ├── bedbug.c ├── board_f.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 ├── cmd_aes.c ├── cmd_ambapp.c ├── cmd_bdinfo.c ├── cmd_bedbug.c ├── cmd_bmp.c ├── cmd_boot.c ├── cmd_bootldr.c ├── cmd_bootm.c ├── cmd_bootmenu.c ├── cmd_bootrk.c ├── cmd_bootstage.c ├── cmd_cache.c ├── cmd_cbfs.c ├── cmd_charge.c ├── cmd_clk.c ├── cmd_console.c ├── cmd_cplbinfo.c ├── cmd_cramfs.c ├── cmd_dataflash_mmc_mux.c ├── cmd_date.c ├── cmd_dcr.c ├── cmd_demo.c ├── cmd_dfu.c ├── cmd_diag.c ├── cmd_disk.c ├── cmd_display.c ├── cmd_dtt.c ├── cmd_echo.c ├── cmd_eeprom.c ├── cmd_elf.c ├── cmd_exit.c ├── cmd_ext2.c ├── cmd_ext4.c ├── cmd_fastboot.c ├── cmd_fat.c ├── cmd_fdc.c ├── cmd_fdt.c ├── cmd_fitupd.c ├── cmd_flash.c ├── cmd_fpga.c ├── cmd_fpgad.c ├── cmd_fs.c ├── cmd_fuse.c ├── cmd_gettime.c ├── cmd_gpio.c ├── cmd_gpt.c ├── cmd_hash.c ├── cmd_help.c ├── cmd_i2c.c ├── cmd_ide.c ├── cmd_immap.c ├── cmd_ini.c ├── cmd_io.c ├── cmd_iotrace.c ├── cmd_irq.c ├── cmd_itest.c ├── cmd_jffs2.c ├── cmd_ldrinfo.c ├── cmd_led.c ├── cmd_license.c ├── cmd_load.c ├── cmd_log.c ├── cmd_lzmadec.c ├── cmd_mac.c ├── cmd_md5sum.c ├── cmd_mdio.c ├── cmd_mem.c ├── cmd_mfsl.c ├── cmd_mii.c ├── cmd_misc.c ├── cmd_mmc.c ├── cmd_mmc_spi.c ├── cmd_mp.c ├── cmd_mtdparts.c ├── cmd_nand.c ├── cmd_net.c ├── cmd_nvedit.c ├── cmd_onenand.c ├── cmd_otp.c ├── cmd_part.c ├── cmd_pci.c ├── cmd_pcmcia.c ├── cmd_portio.c ├── cmd_pxe.c ├── cmd_read.c ├── cmd_reginfo.c ├── cmd_reiser.c ├── cmd_rockusb.c ├── cmd_sandbox.c ├── cmd_sata.c ├── cmd_scsi.c ├── cmd_setexpr.c ├── cmd_sf.c ├── cmd_sha1sum.c ├── cmd_softswitch.c ├── cmd_sound.c ├── cmd_source.c ├── cmd_spi.c ├── cmd_spibootldr.c ├── cmd_spl.c ├── cmd_strings.c ├── cmd_terminal.c ├── cmd_test.c ├── cmd_thordown.c ├── cmd_time.c ├── cmd_tpm.c ├── cmd_trace.c ├── cmd_tsi148.c ├── cmd_ubi.c ├── cmd_ubifs.c ├── cmd_universe.c ├── cmd_unzip.c ├── cmd_usb.c ├── cmd_usb_mass_storage.c ├── cmd_version.c ├── cmd_ximg.c ├── cmd_yaffs2.c ├── cmd_zfs.c ├── cmd_zip.c ├── command.c ├── console.c ├── cros_ec.c ├── ddr_spd.c ├── dlmalloc.c ├── dlmalloc.src ├── edid.c ├── env_attr.c ├── env_callback.c ├── env_common.c ├── env_dataflash.c ├── env_eeprom.c ├── env_embedded.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_rk.c ├── env_sf.c ├── env_ubi.c ├── exports.c ├── fb_mmc.c ├── fdt_support.c ├── flash.c ├── hash.c ├── hwconfig.c ├── image-android.c ├── image-fdt.c ├── image-fit.c ├── image-sig.c ├── image.c ├── iomux.c ├── iotrace.c ├── kallsyms.c ├── kgdb.c ├── kgdb_stubs.c ├── lcd.c ├── lynxkdi.c ├── main.c ├── memsize.c ├── menu.c ├── miiphyutil.c ├── modem.c ├── resource.c ├── s_record.c ├── spl │ ├── Makefile │ ├── spl.c │ ├── spl_fat.c │ ├── spl_mmc.c │ ├── spl_nand.c │ ├── spl_net.c │ ├── spl_nor.c │ ├── spl_onenand.c │ ├── spl_sata.c │ ├── spl_usb.c │ └── spl_ymodem.c ├── splash.c ├── stdio.c ├── system_map.c ├── update.c ├── usb.c ├── usb_hub.c ├── usb_kbd.c ├── usb_storage.c └── xyzModem.c ├── config.mk ├── configs ├── A10-OLinuXino-Lime_defconfig ├── A10s-OLinuXino-M_defconfig ├── A13-OLinuXinoM_defconfig ├── A13-OLinuXino_defconfig ├── A20-OLinuXino-Lime_defconfig ├── A20-OLinuXino_MICRO_defconfig ├── A3000_defconfig ├── APC405_defconfig ├── AR405_defconfig ├── ASH405_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 ├── BC3450_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 ├── C29XPCIE_NAND_defconfig ├── C29XPCIE_SPIFLASH_defconfig ├── C29XPCIE_defconfig ├── CATcenter_25_defconfig ├── CATcenter_33_defconfig ├── CATcenter_defconfig ├── CMS700_defconfig ├── CPC45_ROMBOOT_defconfig ├── CPC45_defconfig ├── CPCI2DP_defconfig ├── CPCI4052_defconfig ├── CPCI405AB_defconfig ├── CPCI405DT_defconfig ├── CPCI405_defconfig ├── CPCI750_defconfig ├── CPCIISER4_defconfig ├── CPU86_ROMBOOT_defconfig ├── CPU86_defconfig ├── CPU87_ROMBOOT_defconfig ├── CPU87_defconfig ├── CU824_defconfig ├── Cubieboard2_FEL_defconfig ├── Cubieboard2_defconfig ├── Cubieboard_defconfig ├── Cubietruck_FEL_defconfig ├── Cubietruck_defconfig ├── DB64360_defconfig ├── DB64460_defconfig ├── DP405_defconfig ├── DU405_defconfig ├── DU440_defconfig ├── ELPPC_defconfig ├── ELPT860_defconfig ├── ESTEEM192E_defconfig ├── EVAL5200_defconfig ├── FPS850L_defconfig ├── FPS860L_defconfig ├── G2000_defconfig ├── HH405_defconfig ├── HUB405_defconfig ├── HWW1U1A_defconfig ├── ICU862_100MHz_defconfig ├── ICU862_defconfig ├── IDS8247_defconfig ├── IP860_defconfig ├── IPHASE4539_defconfig ├── IVML24_128_defconfig ├── IVML24_256_defconfig ├── IVML24_defconfig ├── IVMS8_128_defconfig ├── IVMS8_256_defconfig ├── IVMS8_defconfig ├── JSE_defconfig ├── KUP4K_defconfig ├── KUP4X_defconfig ├── Linksprite_pcDuino3_defconfig ├── Lite5200_LOWBOOT08_defconfig ├── Lite5200_LOWBOOT_defconfig ├── Lite5200_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 ├── MHPC_defconfig ├── MINI5200_defconfig ├── MIP405T_defconfig ├── MIP405_defconfig ├── MPC8266ADS_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 ├── MPC8360EMDS_33_ATM_defconfig ├── MPC8360EMDS_33_HOST_33_defconfig ├── MPC8360EMDS_33_HOST_66_defconfig ├── MPC8360EMDS_33_SLAVE_defconfig ├── MPC8360EMDS_33_defconfig ├── MPC8360EMDS_66_ATM_defconfig ├── MPC8360EMDS_66_HOST_33_defconfig ├── MPC8360EMDS_66_HOST_66_defconfig ├── MPC8360EMDS_66_SLAVE_defconfig ├── MPC8360EMDS_66_defconfig ├── MPC8360ERDK_33_defconfig ├── MPC8360ERDK_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 ├── MUSENKI_defconfig ├── MVBLUE_defconfig ├── Mele_A1000G_defconfig ├── Mele_A1000_defconfig ├── MigoR_defconfig ├── Mini-X-1Gb_defconfig ├── Mini-X_defconfig ├── MiniFAP_defconfig ├── NETVIA_V2_defconfig ├── NETVIA_defconfig ├── NSCU_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 ├── OCRTC_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 ├── P1011RDB_36BIT_SDCARD_defconfig ├── P1011RDB_36BIT_SPIFLASH_defconfig ├── P1011RDB_36BIT_defconfig ├── P1011RDB_NAND_defconfig ├── P1011RDB_SDCARD_defconfig ├── P1011RDB_SPIFLASH_defconfig ├── P1011RDB_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 ├── P1020RDB_36BIT_SDCARD_defconfig ├── P1020RDB_36BIT_SPIFLASH_defconfig ├── P1020RDB_36BIT_defconfig ├── P1020RDB_NAND_defconfig ├── P1020RDB_SDCARD_defconfig ├── P1020RDB_SPIFLASH_defconfig ├── P1020RDB_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 ├── P2010RDB_36BIT_SDCARD_defconfig ├── P2010RDB_36BIT_SPIFLASH_defconfig ├── P2010RDB_36BIT_defconfig ├── P2010RDB_NAND_defconfig ├── P2010RDB_SDCARD_defconfig ├── P2010RDB_SPIFLASH_defconfig ├── P2010RDB_defconfig ├── P2020COME_SDCARD_defconfig ├── P2020COME_SPIFLASH_defconfig ├── P2020DS_36BIT_defconfig ├── P2020DS_DDR2_defconfig ├── P2020DS_SDCARD_defconfig ├── P2020DS_SPIFLASH_defconfig ├── P2020DS_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 ├── P2020RDB_36BIT_SDCARD_defconfig ├── P2020RDB_36BIT_SPIFLASH_defconfig ├── P2020RDB_36BIT_defconfig ├── P2020RDB_NAND_defconfig ├── P2020RDB_SDCARD_defconfig ├── P2020RDB_SPIFLASH_defconfig ├── P2020RDB_defconfig ├── P2041RDB_NAND_defconfig ├── P2041RDB_SDCARD_defconfig ├── P2041RDB_SECURE_BOOT_defconfig ├── P2041RDB_SPIFLASH_defconfig ├── P2041RDB_SRIO_PCIE_BOOT_defconfig ├── P2041RDB_defconfig ├── P3041DS_NAND_defconfig ├── P3041DS_SDCARD_defconfig ├── P3041DS_SECURE_BOOT_defconfig ├── P3041DS_SPIFLASH_defconfig ├── P3041DS_SRIO_PCIE_BOOT_defconfig ├── P3041DS_defconfig ├── P3G4_defconfig ├── P4080DS_SDCARD_defconfig ├── P4080DS_SECURE_BOOT_defconfig ├── P4080DS_SPIFLASH_defconfig ├── P4080DS_SRIO_PCIE_BOOT_defconfig ├── P4080DS_defconfig ├── P5020DS_NAND_defconfig ├── P5020DS_SDCARD_defconfig ├── P5020DS_SECURE_BOOT_defconfig ├── P5020DS_SPIFLASH_defconfig ├── P5020DS_SRIO_PCIE_BOOT_defconfig ├── P5020DS_defconfig ├── P5040DS_NAND_defconfig ├── P5040DS_SDCARD_defconfig ├── P5040DS_SPIFLASH_defconfig ├── P5040DS_defconfig ├── PATI_defconfig ├── PCI405_defconfig ├── PIP405_defconfig ├── PLU405_defconfig ├── PM520_DDR_defconfig ├── PM520_ROMBOOT_DDR_defconfig ├── PM520_ROMBOOT_defconfig ├── PM520_defconfig ├── PM825_BIGFLASH_defconfig ├── PM825_ROMBOOT_BIGFLASH_defconfig ├── PM825_ROMBOOT_defconfig ├── PM825_defconfig ├── PM826_BIGFLASH_defconfig ├── PM826_ROMBOOT_BIGFLASH_defconfig ├── PM826_ROMBOOT_defconfig ├── PM826_defconfig ├── PM828_PCI_defconfig ├── PM828_ROMBOOT_PCI_defconfig ├── PM828_ROMBOOT_defconfig ├── PM828_defconfig ├── PMC405DE_defconfig ├── PMC405_defconfig ├── PMC440_defconfig ├── PPChameleonEVB_BA_25_defconfig ├── PPChameleonEVB_BA_33_defconfig ├── PPChameleonEVB_HI_25_defconfig ├── PPChameleonEVB_HI_33_defconfig ├── PPChameleonEVB_ME_25_defconfig ├── PPChameleonEVB_ME_33_defconfig ├── PPChameleonEVB_defconfig ├── R360MPI_defconfig ├── RRvision_LCD_defconfig ├── RRvision_defconfig ├── SM850_defconfig ├── SPD823TS_defconfig ├── Sandpoint8240_defconfig ├── Sandpoint8245_defconfig ├── T1040QDS_D4_defconfig ├── T1040QDS_SECURE_BOOT_defconfig ├── T1040QDS_defconfig ├── T1040RDB_NAND_defconfig ├── T1040RDB_SDCARD_defconfig ├── T1040RDB_SECURE_BOOT_defconfig ├── T1040RDB_SPIFLASH_defconfig ├── T1040RDB_defconfig ├── T1042RDB_PI_NAND_defconfig ├── T1042RDB_PI_SDCARD_defconfig ├── T1042RDB_PI_SPIFLASH_defconfig ├── T1042RDB_PI_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_SPIFLASH_defconfig ├── T4160QDS_defconfig ├── T4160RDB_defconfig ├── T4240EMU_defconfig ├── T4240QDS_NAND_defconfig ├── T4240QDS_SDCARD_defconfig ├── T4240QDS_SECURE_BOOT_defconfig ├── T4240QDS_SPIFLASH_defconfig ├── T4240QDS_SRIO_PCIE_BOOT_defconfig ├── T4240QDS_defconfig ├── T4240RDB_defconfig ├── TASREG_defconfig ├── TB5200_B_defconfig ├── TB5200_defconfig ├── TK885D_defconfig ├── TOP5200_defconfig ├── TOP860_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 ├── TQM8255_AA_defconfig ├── TQM8260_AA_defconfig ├── TQM8260_AB_defconfig ├── TQM8260_AC_defconfig ├── TQM8260_AD_defconfig ├── TQM8260_AE_defconfig ├── TQM8260_AF_defconfig ├── TQM8260_AG_defconfig ├── TQM8260_AH_defconfig ├── TQM8260_AI_defconfig ├── TQM8265_AA_defconfig ├── TQM8272_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 ├── Total5200_Rev2_defconfig ├── Total5200_Rev2_lowboot_defconfig ├── Total5200_defconfig ├── Total5200_lowboot_defconfig ├── VCMA9_defconfig ├── VOH405_defconfig ├── VOM405_defconfig ├── VoVPN-GW_66MHz_defconfig ├── W7OLMC_defconfig ├── W7OLMG_defconfig ├── WUH405_defconfig ├── ZUMA_defconfig ├── a320evb_defconfig ├── a3m071_defconfig ├── a4m072_defconfig ├── a4m2k_defconfig ├── ac14xx_defconfig ├── acadia_defconfig ├── adp-ag101_defconfig ├── adp-ag101p_defconfig ├── adp-ag102_defconfig ├── aev_defconfig ├── afeb9260_defconfig ├── alpr_defconfig ├── alt_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 ├── am3517_crane_defconfig ├── am3517_evm_defconfig ├── am43xx_evm_defconfig ├── am43xx_evm_qspiboot_defconfig ├── ap325rxa_defconfig ├── ap_sh4a_4a_defconfig ├── apf27_defconfig ├── apx4devkit_defconfig ├── arcangel4-be_defconfig ├── arcangel4_defconfig ├── arches_defconfig ├── aria_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_nandflash_defconfig ├── at91sam9g20ek_dataflash_cs0_defconfig ├── at91sam9g20ek_dataflash_cs1_defconfig ├── at91sam9g20ek_mmc_defconfig ├── at91sam9g20ek_nandflash_defconfig ├── at91sam9m10g45ek_mmc_defconfig ├── at91sam9m10g45ek_nandflash_defconfig ├── at91sam9n12ek_mmc_defconfig ├── at91sam9n12ek_nandflash_defconfig ├── at91sam9n12ek_spiflash_defconfig ├── at91sam9rlek_dataflash_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 ├── atc_defconfig ├── atngw100_defconfig ├── atngw100mkii_defconfig ├── atstk1002_defconfig ├── atstk1003_defconfig ├── atstk1004_defconfig ├── atstk1006_defconfig ├── axm_defconfig ├── axs101_defconfig ├── ba10_tv_box_defconfig ├── balloon3_defconfig ├── bamboo_defconfig ├── bcm28155_ap_defconfig ├── bcm28155_w1d_defconfig ├── bcm958300k_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 ├── blackstamp_defconfig ├── blackvme_defconfig ├── br4_defconfig ├── bubinga_defconfig ├── caddy2_defconfig ├── calimain_defconfig ├── cam5200_defconfig ├── cam5200_niosflash_defconfig ├── cam_enc_4xx_defconfig ├── canmb_defconfig ├── canyonlands_defconfig ├── cardhu_defconfig ├── cgtqmx6qeval_defconfig ├── charon_defconfig ├── cm-bf527_defconfig ├── cm-bf533_defconfig ├── cm-bf537e_defconfig ├── cm-bf537u_defconfig ├── cm-bf548_defconfig ├── cm-bf561_defconfig ├── cm4008_defconfig ├── cm41xx_defconfig ├── cm5200_defconfig ├── cm_fx6_defconfig ├── cm_t335_defconfig ├── cm_t35_defconfig ├── cm_t54_defconfig ├── cmi_mpc5xx_defconfig ├── cobra5272_defconfig ├── cogent_mpc8260_defconfig ├── cogent_mpc8xx_defconfig ├── colibri_pxa270_defconfig ├── colibri_t20_iris_defconfig ├── colibri_t30_defconfig ├── controlcenterd_36BIT_SDCARD_DEVELOP_defconfig ├── controlcenterd_36BIT_SDCARD_defconfig ├── controlcenterd_TRAILBLAZER_DEVELOP_defconfig ├── controlcenterd_TRAILBLAZER_defconfig ├── coreboot-x86_defconfig ├── corvus_defconfig ├── cpci5200_defconfig ├── cpu9260_128M_defconfig ├── cpu9260_defconfig ├── cpu9260_nand_128M_defconfig ├── cpu9260_nand_defconfig ├── cpu9G20_128M_defconfig ├── cpu9G20_defconfig ├── cpu9G20_nand_128M_defconfig ├── cpu9G20_nand_defconfig ├── cpuat91_defconfig ├── cpuat91_ram_defconfig ├── csb272_defconfig ├── csb472_defconfig ├── d2net_v2_defconfig ├── da830evm_defconfig ├── da850_am18xxevm_defconfig ├── da850evm_defconfig ├── da850evm_direct_nor_defconfig ├── dalmore_defconfig ├── davinci_dm355evm_defconfig ├── davinci_dm355leopard_defconfig ├── davinci_dm365evm_defconfig ├── davinci_dm6467Tevm_defconfig ├── davinci_dm6467evm_defconfig ├── davinci_dvevm_defconfig ├── davinci_schmoogie_defconfig ├── davinci_sffsdr_defconfig ├── davinci_sonata_defconfig ├── dbau1000_defconfig ├── dbau1100_defconfig ├── dbau1500_defconfig ├── dbau1550_defconfig ├── dbau1550_el_defconfig ├── devconcenter_defconfig ├── devkit3250_defconfig ├── devkit8000_defconfig ├── dig297_defconfig ├── digsy_mtc_RAMBOOT_defconfig ├── digsy_mtc_defconfig ├── digsy_mtc_rev5_RAMBOOT_defconfig ├── digsy_mtc_rev5_defconfig ├── dkb_defconfig ├── dlvision-10g_defconfig ├── dlvision_defconfig ├── dnp5370_defconfig ├── dns325_defconfig ├── dockstar_defconfig ├── dra7xx_evm_defconfig ├── dra7xx_evm_qspiboot_defconfig ├── dra7xx_evm_uart3_defconfig ├── draco_defconfig ├── dreamplug_defconfig ├── duovero_defconfig ├── dxr2_defconfig ├── eXalion_defconfig ├── ea20_defconfig ├── eb_cpu5282_defconfig ├── eb_cpu5282_internal_defconfig ├── eb_cpux9k2_defconfig ├── eb_cpux9k2_ram_defconfig ├── ebony_defconfig ├── eco5pk_defconfig ├── ecovec_defconfig ├── edb9315a_defconfig ├── edminiv2_defconfig ├── enbw_cmc_defconfig ├── ep8260_defconfig ├── ep82xxm_defconfig ├── espt_defconfig ├── ethernut5_defconfig ├── favr-32-ezkit_defconfig ├── flea3_defconfig ├── fo300_defconfig ├── fx12mm_defconfig ├── fx12mm_flash_defconfig ├── galaxy5200_LOWBOOT_defconfig ├── galaxy5200_defconfig ├── gdppc440etx_defconfig ├── glacier_defconfig ├── goflexhome_defconfig ├── gplugd_defconfig ├── gr_cpci_ax2000_defconfig ├── gr_ep2s60_defconfig ├── gr_xc3s_1500_defconfig ├── grasshopper_defconfig ├── grsim_defconfig ├── grsim_leon2_defconfig ├── guruplug_defconfig ├── gw8260_defconfig ├── gwventana_defconfig ├── h2200_defconfig ├── haleakala_defconfig ├── hammerhead_defconfig ├── harmony_defconfig ├── hawkboard_defconfig ├── hawkboard_uart_defconfig ├── hermes_defconfig ├── highbank_defconfig ├── hmi1001_defconfig ├── hummingboard_solo_defconfig ├── hymod_defconfig ├── i12-tvbox_defconfig ├── ib62x0_defconfig ├── ibf-dsp561_defconfig ├── icecube_5200_DDR_LOWBOOT08_defconfig ├── icecube_5200_DDR_LOWBOOT_defconfig ├── icecube_5200_DDR_defconfig ├── icecube_5200_LOWBOOT08_defconfig ├── icecube_5200_LOWBOOT_defconfig ├── icecube_5200_defconfig ├── icon_defconfig ├── iconnect_defconfig ├── ids8313_defconfig ├── igep0020_defconfig ├── igep0020_nand_defconfig ├── igep0030_defconfig ├── igep0030_nand_defconfig ├── igep0032_defconfig ├── ima3-mx53_defconfig ├── imx27lite_defconfig ├── imx31_litekit_defconfig ├── imx31_phycore_defconfig ├── imx31_phycore_eet_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 ├── jadecpu_defconfig ├── jetson-tk1_defconfig ├── jornada_defconfig ├── jupiter_defconfig ├── k2e_evm_defconfig ├── k2hk_evm_defconfig ├── katmai_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 ├── kmvect1_defconfig ├── koelsch_defconfig ├── korat_defconfig ├── korat_perm_defconfig ├── kwb_defconfig ├── kzm9g_defconfig ├── lager_defconfig ├── lcd4_lwmon5_defconfig ├── lite5200b_LOWBOOT_defconfig ├── lite5200b_PM_defconfig ├── lite5200b_defconfig ├── lp8x4x_defconfig ├── ls1021aqds_ddr4_nor_defconfig ├── ls1021aqds_nor_defconfig ├── ls1021atwr_nor_defconfig ├── ls2085a_emu_D4_defconfig ├── ls2085a_emu_defconfig ├── ls2085a_simu_defconfig ├── lschlv2_defconfig ├── lsxhl_defconfig ├── luan_defconfig ├── lwmon5_defconfig ├── lwmon_defconfig ├── m28evk_defconfig ├── m53evk_defconfig ├── magnesium_defconfig ├── makalu_defconfig ├── malta_defconfig ├── maltael_defconfig ├── marsboard_defconfig ├── mcc200_COM12_SDRAM_defconfig ├── mcc200_COM12_defconfig ├── mcc200_COM12_highboot_SDRAM_defconfig ├── mcc200_COM12_highboot_defconfig ├── mcc200_SDRAM_defconfig ├── mcc200_defconfig ├── mcc200_highboot_SDRAM_defconfig ├── mcc200_highboot_defconfig ├── mcx_defconfig ├── mecp5123_defconfig ├── mecp5200_defconfig ├── medcom-wide_defconfig ├── meesc_dataflash_defconfig ├── meesc_defconfig ├── mgcoge3ne_defconfig ├── mgcoge3un_defconfig ├── mgcoge_defconfig ├── microblaze-generic_defconfig ├── mimc200_defconfig ├── ml507_defconfig ├── ml507_flash_defconfig ├── motionpro_defconfig ├── mpc5121ads_defconfig ├── mpc5121ads_rev2_defconfig ├── mpc7448hpc2_defconfig ├── mpc8308_p1m_defconfig ├── mpr2_defconfig ├── ms7720se_defconfig ├── ms7722se_defconfig ├── ms7750se_defconfig ├── mt_ventoux_defconfig ├── muas3001_defconfig ├── muas3001_dev_defconfig ├── mucmc52_defconfig ├── munices_defconfig ├── mv88f6281gtw_ge_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 ├── mx51_efikamx_defconfig ├── mx51_efikasb_defconfig ├── mx51evk_defconfig ├── mx53ard_defconfig ├── mx53evk_defconfig ├── mx53loco_defconfig ├── mx53smd_defconfig ├── mx6dlarm2_defconfig ├── mx6dlarm2_lpddr2_defconfig ├── mx6dlsabreauto_defconfig ├── mx6dlsabresd_defconfig ├── mx6qarm2_defconfig ├── mx6qarm2_lpddr2_defconfig ├── mx6qsabreauto_defconfig ├── mx6qsabrelite_defconfig ├── mx6qsabresd_defconfig ├── mx6slevk_defconfig ├── mx6sxsabresd_defconfig ├── neo_defconfig ├── net2big_v2_defconfig ├── netspace_lite_v2_defconfig ├── netspace_max_v2_defconfig ├── netspace_mini_v2_defconfig ├── netspace_v2_defconfig ├── nhk8815_defconfig ├── nhk8815_onenand_defconfig ├── nios2-generic_defconfig ├── nitrogen6dl2g_defconfig ├── nitrogen6dl_defconfig ├── nitrogen6q2g_defconfig ├── nitrogen6q_defconfig ├── nitrogen6s1g_defconfig ├── nitrogen6s_defconfig ├── nokia_rx51_defconfig ├── ocotea_defconfig ├── odroid_defconfig ├── omap3_beagle_defconfig ├── omap3_evm_defconfig ├── omap3_evm_quick_mmc_defconfig ├── omap3_evm_quick_nand_defconfig ├── omap3_ha_defconfig ├── omap3_logic_defconfig ├── omap3_mvblx_defconfig ├── omap3_overo_defconfig ├── omap3_pandora_defconfig ├── omap3_sdp3430_defconfig ├── omap3_zoom1_defconfig ├── omap4_panda_defconfig ├── omap4_sdp4430_defconfig ├── omap5_uevm_defconfig ├── openrd_base_defconfig ├── openrd_client_defconfig ├── openrd_ultimate_defconfig ├── openrisc-generic_defconfig ├── origen_defconfig ├── ot1200_defconfig ├── otc570_dataflash_defconfig ├── otc570_defconfig ├── p3m7448_defconfig ├── p3m750_defconfig ├── p3p440_defconfig ├── palmld_defconfig ├── palmtc_defconfig ├── palmtreo680_defconfig ├── paz00_defconfig ├── pb1000_defconfig ├── pcm030_LOWBOOT_defconfig ├── pcm030_defconfig ├── pcm051_rev1_defconfig ├── pcm051_rev3_defconfig ├── pcs440ep_defconfig ├── pdm360ng_defconfig ├── peach-pit_defconfig ├── pengwyn_defconfig ├── pepper_defconfig ├── pf5200_defconfig ├── ph1_ld4_defconfig ├── ph1_pro4_defconfig ├── ph1_sld8_defconfig ├── plutux_defconfig ├── pm9261_defconfig ├── pm9263_defconfig ├── pm9g45_defconfig ├── pogo_e02_defconfig ├── polaris_defconfig ├── portl2_defconfig ├── portuxg20_defconfig ├── ppmc7xx_defconfig ├── ppmc8260_defconfig ├── pr1_defconfig ├── prs200_DDR_defconfig ├── prs200_defconfig ├── prs200_highboot_DDR_defconfig ├── prs200_highboot_defconfig ├── pxa255_idp_defconfig ├── pxm2_defconfig ├── qemu-ppce500_defconfig ├── qemu_mips64_defconfig ├── qemu_mips64el_defconfig ├── qemu_mips_defconfig ├── qemu_mipsel_defconfig ├── qong_defconfig ├── qt840a_defconfig ├── r0p7734_defconfig ├── r2dplus_defconfig ├── r7-tv-dongle_defconfig ├── r7780mp_defconfig ├── rainier_defconfig ├── rainier_ramboot_defconfig ├── rd6281a_defconfig ├── redwood_defconfig ├── riotboard_defconfig ├── rk3036_defconfig ├── rk3126_defconfig ├── rk3128_defconfig ├── rk3288_defconfig ├── rpi_b_defconfig ├── rsk7203_defconfig ├── rsk7264_defconfig ├── rsk7269_defconfig ├── rut_defconfig ├── s5p_goni_defconfig ├── s5pc210_universal_defconfig ├── sacsng_defconfig ├── sama5d3_xplained_mmc_defconfig ├── sama5d3_xplained_nandflash_defconfig ├── sama5d3xek_mmc_defconfig ├── sama5d3xek_nandflash_defconfig ├── sama5d3xek_spiflash_defconfig ├── sandbox_defconfig ├── sansa_fuze_plus_defconfig ├── sbc35_a9g20_eeprom_defconfig ├── sbc35_a9g20_nandflash_defconfig ├── sbc405_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 ├── sc3_defconfig ├── sc_sps_1_defconfig ├── scb9328_defconfig ├── seaboard_defconfig ├── sequoia_defconfig ├── sequoia_ramboot_defconfig ├── sh7752evb_defconfig ├── sh7753evb_defconfig ├── sh7757lcr_defconfig ├── sh7763rdp_defconfig ├── sh7785lcr_32bit_defconfig ├── sh7785lcr_defconfig ├── sheevaplug_defconfig ├── shmin_defconfig ├── smdk2410_defconfig ├── smdk5250_defconfig ├── smdk5420_defconfig ├── smdkc100_defconfig ├── smdkv310_defconfig ├── snapper9260_defconfig ├── snapper9g20_defconfig ├── snow_defconfig ├── snowball_defconfig ├── socfpga_cyclone5_defconfig ├── socrates_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 ├── stamp9g20_defconfig ├── stxgp3_defconfig ├── stxssa_4M_defconfig ├── stxssa_defconfig ├── suvd3_defconfig ├── sycamore_defconfig ├── t3corp_defconfig ├── taihu_defconfig ├── taishan_defconfig ├── tao3530_defconfig ├── taurus_defconfig ├── tb100_defconfig ├── tcm-bf518_defconfig ├── tcm-bf537_defconfig ├── tec-ng_defconfig ├── tec_defconfig ├── ti814x_evm_defconfig ├── ti816x_evm_defconfig ├── titanium_defconfig ├── tk71_defconfig ├── tnetv107x_evm_defconfig ├── tny_a9260_eeprom_defconfig ├── tny_a9260_nandflash_defconfig ├── tny_a9g20_eeprom_defconfig ├── tny_a9g20_nandflash_defconfig ├── top9000eval_xe_defconfig ├── top9000su_xe_defconfig ├── tqma6q_mba6_mmc_defconfig ├── tqma6q_mba6_spi_defconfig ├── tqma6s_mba6_mmc_defconfig ├── tqma6s_mba6_spi_defconfig ├── trats2_defconfig ├── trats_defconfig ├── tricorder_defconfig ├── tricorder_flash_defconfig ├── trimslice_defconfig ├── trizepsiv_defconfig ├── tseries_mmc_defconfig ├── tseries_nand_defconfig ├── tseries_spi_defconfig ├── tt01_defconfig ├── tuge1_defconfig ├── tuxx1_defconfig ├── twister_defconfig ├── tx25_defconfig ├── u8500_href_defconfig ├── uc100_defconfig ├── uc101_defconfig ├── udoo_quad_defconfig ├── usb_a9263_dataflash_defconfig ├── utx8245_defconfig ├── v38b_defconfig ├── v5fx30teval_defconfig ├── v5fx30teval_flash_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 ├── versatileab_defconfig ├── versatilepb_defconfig ├── versatileqemu_defconfig ├── vexpress_aemv8a_defconfig ├── vexpress_aemv8a_semi_defconfig ├── vexpress_ca15_tc2_defconfig ├── vexpress_ca5x2_defconfig ├── vexpress_ca9x4_defconfig ├── vf610twr_defconfig ├── vf610twr_nand_defconfig ├── virtlab2_defconfig ├── vision2_defconfig ├── vl_ma2sc_defconfig ├── vl_ma2sc_ram_defconfig ├── vme8349_defconfig ├── vpac270_nor_128_defconfig ├── vpac270_nor_256_defconfig ├── vpac270_ond_256_defconfig ├── walnut_defconfig ├── wandboard_dl_defconfig ├── wandboard_quad_defconfig ├── wandboard_solo_defconfig ├── whistler_defconfig ├── wireless_space_defconfig ├── woodburn_defconfig ├── woodburn_sd_defconfig ├── wtk_defconfig ├── x600_defconfig ├── xaeniax_defconfig ├── xfi3_defconfig ├── xilinx-ppc405-generic_defconfig ├── xilinx-ppc405-generic_flash_defconfig ├── xilinx-ppc440-generic_defconfig ├── xilinx-ppc440-generic_flash_defconfig ├── xpedite1000_defconfig ├── xpedite517x_defconfig ├── xpedite520x_defconfig ├── xpedite537x_defconfig ├── xpedite550x_defconfig ├── yellowstone_defconfig ├── yosemite_defconfig ├── yucca_defconfig ├── zeus_defconfig ├── zipitz2_defconfig ├── zmx25_defconfig ├── zynq_microzed_defconfig ├── zynq_zc70x_defconfig ├── zynq_zc770_xm010_defconfig ├── zynq_zc770_xm012_defconfig ├── zynq_zc770_xm013_defconfig └── zynq_zed_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.JFFS2 ├── README.JFFS2_NAND ├── README.LED ├── README.LED_display ├── README.MPC866 ├── README.Modem ├── README.N1213 ├── README.NDS32 ├── README.NetConsole ├── README.OFT ├── README.POST ├── README.SNTP ├── README.SPL ├── README.TPL ├── README.VLAN ├── README.VSC3316-3308 ├── README.ag102 ├── README.android-fastboot ├── README.android-fastboot-protocol ├── README.arm-caches ├── README.arm-relocation ├── README.arm64 ├── README.at91 ├── README.at91-soc ├── README.atmel_mci ├── README.atmel_pmecc ├── README.autoboot ├── README.b4860qds ├── README.bedbug ├── README.bitbangMII ├── README.blackfin ├── README.bootmenu ├── README.bus_vcxk ├── README.cfi ├── README.clang ├── README.commands ├── README.commands.itest ├── README.commands.spl ├── README.console ├── README.davinci ├── README.davinci.nand_spl ├── README.displaying-bmps ├── README.dns ├── README.drivers.eth ├── README.enetaddr ├── README.ext4 ├── README.falcon ├── README.fdt-control ├── README.fec_mxc ├── README.fsl-ddr ├── README.fsl-esdhc ├── README.fsl-hwconfig ├── README.fsl_iim ├── README.fuse ├── README.generic-board ├── README.generic_usb_ohci ├── README.gpt ├── README.hwconfig ├── README.idma2intr ├── README.imx25 ├── README.imx27 ├── README.imx31 ├── 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.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.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.switch_config ├── README.trace ├── README.ubi ├── README.ublimage ├── README.unaligned-memory-access.txt ├── README.update ├── README.usb ├── README.vf610 ├── README.video ├── README.vxworks ├── README.watchdog ├── README.zfs ├── README.zynq ├── 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 ├── device-tree-bindings │ ├── README │ ├── clock │ │ └── nvidia,tegra20-car.txt │ ├── exynos │ │ ├── dwmmc.txt │ │ ├── isp-spi.txt │ │ ├── sound.txt │ │ └── tmu.txt │ ├── i2c │ │ └── tegra20-i2c.txt │ ├── input │ │ └── cros-ec-keyb.txt │ ├── misc │ │ └── cros-ec.txt │ ├── nand │ │ └── nvidia,tegra20-nand.txt │ ├── power │ │ └── tps65090.txt │ ├── pwm │ │ └── tegra20-pwm.txt │ ├── regulator │ │ └── tps65090.txt │ ├── serial │ │ ├── ns16550.txt │ │ └── sandbox-serial.txt │ ├── spi │ │ └── spi-bus.txt │ ├── usb │ │ └── tegra-usb.txt │ └── video │ │ ├── displaymode.txt │ │ ├── exynos-dp.txt │ │ ├── exynos-fb.txt │ │ ├── exynos_mipi_dsi.txt │ │ ├── sandbox-fb.txt │ │ ├── simple-framebuffer.txt │ │ └── tegra20-dc.txt ├── driver-model │ └── README.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.its │ ├── sign-configs.its │ ├── sign-images.its │ ├── signature.txt │ ├── source_file_format.txt │ ├── update3.its │ ├── update_uboot.its │ └── verified-boot.txt ├── drivers ├── Kconfig ├── Makefile ├── 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.c │ ├── ata_piix.c │ ├── ata_piix.h │ ├── 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 │ ├── sata_dwc.c │ ├── sata_dwc.h │ ├── 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 ├── core │ ├── Kconfig │ ├── Makefile │ ├── device.c │ ├── lists.c │ ├── root.c │ ├── uclass.c │ └── util.c ├── crypto │ ├── Kconfig │ ├── Makefile │ ├── ace_sha.c │ └── ace_sha.h ├── ddr │ └── 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 │ │ ├── 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 ├── demo │ ├── 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 ├── dma │ ├── Kconfig │ ├── MCD_dmaApi.c │ ├── MCD_tasks.c │ ├── MCD_tasksInit.c │ ├── Makefile │ ├── apbh_dma.c │ └── fsl_dma.c ├── fpga │ ├── ACEX1K.c │ ├── Makefile │ ├── altera.c │ ├── cyclon2.c │ ├── fpga.c │ ├── ivm_core.c │ ├── lattice.c │ ├── socfpga.c │ ├── spartan2.c │ ├── spartan3.c │ ├── stratixII.c │ ├── virtex2.c │ ├── xilinx.c │ └── zynqpl.c ├── gpio │ ├── Kconfig │ ├── Makefile │ ├── adi_gpio2.c │ ├── altera_pio.c │ ├── at91_gpio.c │ ├── bcm2835_gpio.c │ ├── da8xx_gpio.c │ ├── db8500_gpio.c │ ├── gpio-uclass.c │ ├── intel_ich6_gpio.c │ ├── kona_gpio.c │ ├── kw_gpio.c │ ├── mpc83xx_gpio.c │ ├── mvgpio.c │ ├── mvgpio.h │ ├── mvmfp.c │ ├── mxc_gpio.c │ ├── mxs_gpio.c │ ├── omap_gpio.c │ ├── pca953x.c │ ├── pca9698.c │ ├── rk_gpio.c │ ├── s3c2440_gpio.c │ ├── s5p_gpio.c │ ├── sandbox.c │ ├── sh_pfc.c │ ├── spear_gpio.c │ ├── sunxi_gpio.c │ ├── sx151x.c │ ├── tca642x.c │ ├── tegra_gpio.c │ └── xilinx_gpio.c ├── hwmon │ ├── Kconfig │ ├── Makefile │ ├── adm1021.c │ ├── adt7460.c │ ├── ds1621.c │ ├── ds1722.c │ ├── ds1775.c │ ├── lm63.c │ ├── lm73.c │ ├── lm75.c │ └── lm81.c ├── i2c │ ├── Kconfig │ ├── Makefile │ ├── bfin-twi_i2c.c │ ├── davinci_i2c.c │ ├── davinci_i2c.h │ ├── designware_i2c.c │ ├── designware_i2c.h │ ├── fsl_i2c.c │ ├── fti2c010.c │ ├── fti2c010.h │ ├── i2c_core.c │ ├── ihs_i2c.c │ ├── kona_i2c.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 │ ├── sh_i2c.c │ ├── sh_sh7734_i2c.c │ ├── soft_i2c.c │ ├── tegra_i2c.c │ ├── tsi108_i2c.c │ ├── u8500_i2c.c │ ├── u8500_i2c.h │ └── zynq_i2c.c ├── input │ ├── Kconfig │ ├── Makefile │ ├── cros_ec_keyb.c │ ├── i8042.c │ ├── input.c │ ├── key_matrix.c │ ├── keyboard.c │ ├── pc_keyb.c │ ├── ps2mult.c │ ├── ps2ser.c │ └── tegra-kbc.c ├── memory │ ├── Makefile │ └── ti-aemif.c ├── misc │ ├── Kconfig │ ├── Makefile │ ├── ali512x.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_ifc.c │ ├── fsl_iim.c │ ├── gpio_led.c │ ├── mc9sdz60.c │ ├── mxc_ocotp.c │ ├── mxs_ocotp.c │ ├── ns87308.c │ ├── pdsp188x.c │ ├── status_led.c │ └── twl4030_led.c ├── mmc │ ├── Kconfig │ ├── Makefile │ ├── arm_pl180_mmci.c │ ├── arm_pl180_mmci.h │ ├── 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 │ ├── kona_sdhci.c │ ├── mmc.c │ ├── mmc_private.h │ ├── mmc_spi.c │ ├── mmc_write.c │ ├── mv_sdhci.c │ ├── mvebu_mmc.c │ ├── mxcmmc.c │ ├── mxsmmc.c │ ├── omap_hsmmc.c │ ├── pxa_mmc_gen.c │ ├── rpmb.c │ ├── s3c_sdi.c │ ├── s5p_sdhci.c │ ├── sdhci.c │ ├── sh_mmcif.c │ ├── sh_mmcif.h │ ├── socfpga_dw_mmc.c │ ├── spear_sdhci.c │ ├── sunxi_mmc.c │ ├── tegra_mmc.c │ └── zynq_sdhci.c ├── mtd │ ├── Kconfig │ ├── Makefile │ ├── at45.c │ ├── cfi_flash.c │ ├── cfi_mtd.c │ ├── dataflash.c │ ├── ftsmc020.c │ ├── jedec_flash.c │ ├── mtdconcat.c │ ├── mtdcore.c │ ├── mtdcore.h │ ├── mtdpart.c │ ├── mw_eeprom.c │ ├── nand │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am335x_spl_bch.c │ │ ├── atmel_nand.c │ │ ├── atmel_nand_ecc.h │ │ ├── bfin_nand.c │ │ ├── davinci_nand.c │ │ ├── denali.c │ │ ├── denali.h │ │ ├── denali_spl.c │ │ ├── docg4.c │ │ ├── docg4_spl.c │ │ ├── fsl_elbc_nand.c │ │ ├── fsl_elbc_spl.c │ │ ├── fsl_ifc_nand.c │ │ ├── fsl_ifc_spl.c │ │ ├── fsl_upm.c │ │ ├── fsmc_nand.c │ │ ├── jz4740_nand.c │ │ ├── kb9202_nand.c │ │ ├── kirkwood_nand.c │ │ ├── kmeter1_nand.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_util.c │ │ ├── ndfc.c │ │ ├── nomadik.c │ │ ├── omap_elm.c │ │ ├── omap_gpmc.c │ │ ├── s3c2410_nand.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 │ ├── spi │ │ ├── Makefile │ │ ├── eeprom_m95xxx.c │ │ ├── fsl_espi_spl.c │ │ ├── ramtron.c │ │ ├── sandbox.c │ │ ├── sf.c │ │ ├── sf_internal.h │ │ ├── sf_ops.c │ │ ├── sf_params.c │ │ ├── sf_probe.c │ │ └── spi_spl_load.c │ ├── st_smi.c │ └── ubi │ │ ├── Makefile │ │ ├── attach.c │ │ ├── build.c │ │ ├── crc32.c │ │ ├── crc32defs.h │ │ ├── crc32table.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── eba.c │ │ ├── fastmap.c │ │ ├── io.c │ │ ├── kapi.c │ │ ├── misc.c │ │ ├── ubi-media.h │ │ ├── ubi.h │ │ ├── upd.c │ │ ├── vmt.c │ │ ├── vtbl.c │ │ └── wl.c ├── net │ ├── 4xx_enet.c │ ├── 8390.h │ ├── Kconfig │ ├── Makefile │ ├── 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.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 │ │ ├── fm.c │ │ ├── fm.h │ │ ├── init.c │ │ ├── memac.c │ │ ├── memac_phy.c │ │ ├── p1023.c │ │ ├── p4080.c │ │ ├── p5020.c │ │ ├── p5040.c │ │ ├── t1040.c │ │ ├── t2080.c │ │ ├── t4240.c │ │ ├── tgec.c │ │ └── tgec_phy.c │ ├── fsl_mc │ │ ├── Makefile │ │ └── mc.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 │ ├── ks8695eth.c │ ├── ks8851_mll.c │ ├── ks8851_mll.h │ ├── lan91c96.c │ ├── lan91c96.h │ ├── macb.c │ ├── macb.h │ ├── mcffec.c │ ├── mcfmii.c │ ├── mpc512x_fec.c │ ├── mpc512x_fec.h │ ├── mpc5xxx_fec.c │ ├── mpc5xxx_fec.h │ ├── mvgbe.c │ ├── mvgbe.h │ ├── natsemi.c │ ├── ne2000.c │ ├── ne2000.h │ ├── ne2000_base.c │ ├── ne2000_base.h │ ├── netconsole.c │ ├── ns8382x.c │ ├── pcnet.c │ ├── phy │ │ ├── Makefile │ │ ├── atheros.c │ │ ├── broadcom.c │ │ ├── davicom.c │ │ ├── et1011c.c │ │ ├── generic_10g.c │ │ ├── lxt.c │ │ ├── marvell.c │ │ ├── micrel.c │ │ ├── miiphybb.c │ │ ├── mv88e61xx.c │ │ ├── mv88e61xx.h │ │ ├── mv88e6352.c │ │ ├── natsemi.c │ │ ├── phy.c │ │ ├── realtek.c │ │ ├── smsc.c │ │ ├── teranetics.c │ │ └── vitesse.c │ ├── rtl8139.c │ ├── rtl8169.c │ ├── sh_eth.c │ ├── sh_eth.h │ ├── smc91111.c │ ├── smc91111.h │ ├── smc911x.c │ ├── smc911x.h │ ├── sunxi_emac.c │ ├── tsec.c │ ├── tsi108_eth.c │ ├── uli526x.c │ ├── vsc7385.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 ├── pci │ ├── Kconfig │ ├── Makefile │ ├── fsl_pci_init.c │ ├── pci.c │ ├── pci_auto.c │ ├── pci_ftpci100.c │ ├── pci_gt64120.c │ ├── pci_indirect.c │ ├── pci_msc01.c │ ├── pci_sh4.c │ ├── pci_sh7751.c │ ├── pci_sh7780.c │ ├── pcie_imx.c │ ├── tsi108_pci.c │ └── w83c553f.c ├── pcmcia │ ├── Kconfig │ ├── Makefile │ ├── i82365.c │ ├── marubun_pcmcia.c │ ├── mpc8xx_pcmcia.c │ ├── ti_pci1410a.c │ └── tqm8xx_pcmcia.c ├── power │ ├── Kconfig │ ├── Makefile │ ├── axp152.c │ ├── axp209.c │ ├── battery │ │ ├── Makefile │ │ ├── bat_bq27541.c │ │ ├── bat_rk_sample.c │ │ ├── bat_trats.c │ │ └── bat_trats2.c │ ├── exynos-tmu.c │ ├── ftpmu010.c │ ├── fuel_gauge │ │ ├── Makefile │ │ ├── fg_adc.c │ │ ├── fg_cw201x.c │ │ ├── fg_max17042.c │ │ ├── fg_ricoh619.c │ │ ├── fg_rk818.c │ │ ├── fg_rt5025.c │ │ └── fg_rt5036.c │ ├── mfd │ │ ├── Makefile │ │ ├── fg_max77693.c │ │ ├── muic_max77693.c │ │ └── pmic_max77693.c │ ├── palmas.c │ ├── pmic │ │ ├── Makefile │ │ ├── muic_max8997.c │ │ ├── pmic_act8846.c │ │ ├── pmic_act8931.c │ │ ├── pmic_ltc3676.c │ │ ├── pmic_max77686.c │ │ ├── pmic_max8997.c │ │ ├── pmic_max8998.c │ │ ├── pmic_pfuze100.c │ │ ├── pmic_ricoh619.c │ │ ├── pmic_rk808.c │ │ ├── pmic_rk818.c │ │ ├── pmic_rk_sample.c │ │ ├── pmic_rt5025.c │ │ ├── pmic_rt5036.c │ │ ├── pmic_tps65090.c │ │ ├── pmic_tps65090_ec.c │ │ ├── pmic_tps65217.c │ │ ├── pmic_tps65218.c │ │ └── pmic_tps65910.c │ ├── power_core.c │ ├── power_dialog.c │ ├── power_fdt.c │ ├── power_fsl.c │ ├── power_i2c.c │ ├── power_rockchip.c │ ├── power_spi.c │ ├── tps6586x.c │ ├── twl4030.c │ └── twl6030.c ├── pwm │ ├── Makefile │ ├── pwm-imx-util.c │ ├── pwm-imx-util.h │ └── pwm-imx.c ├── qe │ ├── Makefile │ ├── fdt.c │ ├── qe.c │ ├── qe.h │ ├── uccf.c │ ├── uccf.h │ ├── uec.c │ ├── uec.h │ ├── uec_phy.c │ └── uec_phy.h ├── rtc │ ├── Kconfig │ ├── Makefile │ ├── at91sam9_rtt.c │ ├── bfin_rtc.c │ ├── date.c │ ├── davinci.c │ ├── ds12887.c │ ├── ds1302.c │ ├── ds1306.c │ ├── ds1307.c │ ├── ds1337.c │ ├── ds1374.c │ ├── ds1556.c │ ├── ds164x.c │ ├── ds174x.c │ ├── ds3231.c │ ├── ftrtc010.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 │ ├── rtc4543.c │ ├── rv3029.c │ ├── rx8025.c │ ├── s3c24x0_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 │ ├── mxs_auart.c │ ├── ns16550.c │ ├── opencores_yanu.c │ ├── sandbox.c │ ├── serial-uclass.c │ ├── serial.c │ ├── serial_arc.c │ ├── serial_bfin.c │ ├── serial_imx.c │ ├── serial_ks8695.c │ ├── serial_lpuart.c │ ├── serial_max3100.c │ ├── serial_mxc.c │ ├── serial_ns16550.c │ ├── serial_pl01x.c │ ├── serial_pl01x.h │ ├── serial_pxa.c │ ├── serial_rk.c │ ├── serial_s3c24x0.c │ ├── serial_s5p.c │ ├── serial_sa1100.c │ ├── serial_sh.c │ ├── serial_sh.h │ ├── serial_tegra.c │ ├── serial_uniphier.c │ ├── serial_xuartlite.c │ ├── serial_zynq.c │ ├── usbtty.c │ └── usbtty.h ├── 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 │ ├── andes_spi.c │ ├── andes_spi.h │ ├── armada100_spi.c │ ├── atmel_dataflash_spi.c │ ├── atmel_spi.c │ ├── atmel_spi.h │ ├── bfin_spi.c │ ├── bfin_spi6xx.c │ ├── cf_qspi.c │ ├── cf_spi.c │ ├── davinci_spi.c │ ├── davinci_spi.h │ ├── ep93xx_spi.c │ ├── exynos_spi.c │ ├── fdt_spi.c │ ├── fsl_espi.c │ ├── fsl_qspi.c │ ├── fsl_qspi.h │ ├── ftssp010_spi.c │ ├── ich.c │ ├── ich.h │ ├── kirkwood_spi.c │ ├── mpc52xx_spi.c │ ├── mpc8xxx_spi.c │ ├── mxc_spi.c │ ├── mxs_spi.c │ ├── oc_tiny_spi.c │ ├── omap3_spi.c │ ├── omap3_spi.h │ ├── rk_spi.c │ ├── rk_spi.h │ ├── sandbox_spi.c │ ├── sh_qspi.c │ ├── sh_spi.c │ ├── sh_spi.h │ ├── soft_spi.c │ ├── spi.c │ ├── tegra114_spi.c │ ├── tegra20_sflash.c │ ├── tegra20_slink.c │ ├── ti_qspi.c │ ├── xilinx_spi.c │ ├── xilinx_spi.h │ └── zynq_spi.c ├── tpm │ ├── Kconfig │ ├── Makefile │ ├── tpm.c │ ├── tpm_atmel_twi.c │ ├── tpm_private.h │ ├── tpm_tis_i2c.c │ ├── tpm_tis_lpc.c │ └── tpm_tis_sandbox.c ├── twserial │ ├── Makefile │ └── soft_tws.c ├── usb │ ├── Kconfig │ ├── eth │ │ ├── Makefile │ │ ├── asix.c │ │ ├── mcs7830.c │ │ ├── smsc95xx.c │ │ └── usb_ether.c │ ├── gadget │ │ ├── Makefile │ │ ├── atmel_usba_udc.c │ │ ├── atmel_usba_udc.h │ │ ├── ci_udc.c │ │ ├── ci_udc.h │ │ ├── composite.c │ │ ├── config.c │ │ ├── core.c │ │ ├── designware_udc.c │ │ ├── dwc_otg_regs.h │ │ ├── dwc_otg_udc.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 │ │ ├── regs-otg.h │ │ ├── rndis.c │ │ ├── rndis.h │ │ ├── s3c_udc_otg.c │ │ ├── s3c_udc_otg_xfer_dma.c │ │ ├── storage_common.c │ │ └── usbstring.c │ ├── host │ │ ├── Makefile │ │ ├── dwc_hcd.c │ │ ├── ehci-armada100.c │ │ ├── ehci-atmel.c │ │ ├── ehci-exynos.c │ │ ├── ehci-faraday.c │ │ ├── ehci-fsl.c │ │ ├── ehci-hcd.c │ │ ├── ehci-marvell.c │ │ ├── ehci-mpc512x.c │ │ ├── ehci-mx5.c │ │ ├── ehci-mx6.c │ │ ├── ehci-mxc.c │ │ ├── ehci-mxs.c │ │ ├── ehci-omap.c │ │ ├── ehci-pci.c │ │ ├── ehci-ppc4xx.c │ │ ├── ehci-rk.c │ │ ├── ehci-rmobile.c │ │ ├── ehci-spear.c │ │ ├── ehci-sunxi.c │ │ ├── ehci-tegra.c │ │ ├── ehci-vct.c │ │ ├── ehci-zynq.c │ │ ├── ehci.h │ │ ├── isp116x-hcd.c │ │ ├── isp116x.h │ │ ├── ohci-at91.c │ │ ├── ohci-da8xx.c │ │ ├── ohci-ep93xx.c │ │ ├── ohci-hcd.c │ │ ├── ohci-s3c24xx.c │ │ ├── ohci-s3c24xx.h │ │ ├── ohci.h │ │ ├── r8a66597-hcd.c │ │ ├── r8a66597.h │ │ ├── sl811-hcd.c │ │ ├── sl811.h │ │ ├── utmi-armada100.c │ │ ├── xhci-exynos5.c │ │ ├── xhci-mem.c │ │ ├── xhci-omap.c │ │ ├── xhci-ring.c │ │ ├── xhci.c │ │ └── xhci.h │ ├── musb-new │ │ ├── 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 │ │ ├── omap2430.c │ │ ├── omap2430.h │ │ └── 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 │ │ └── twl4030.c │ └── ulpi │ │ ├── Makefile │ │ ├── omap-ulpi-viewport.c │ │ ├── ulpi-viewport.c │ │ └── ulpi.c ├── video │ ├── Kconfig │ ├── Makefile │ ├── am335x-fb.c │ ├── am335x-fb.h │ ├── ati_ids.h │ ├── ati_radeon_fb.c │ ├── ati_radeon_fb.h │ ├── atmel_hlcdfb.c │ ├── atmel_lcdfb.c │ ├── bcm2835.c │ ├── bus_vcxk.c │ ├── cfb_console.c │ ├── coreboot_fb.c │ ├── ct69000.c │ ├── da8xx-fb.c │ ├── da8xx-fb.h │ ├── dpcd_edid.h │ ├── edid.h │ ├── exynos_dp.c │ ├── exynos_dp_lowlevel.c │ ├── exynos_dp_lowlevel.h │ ├── exynos_fb.c │ ├── exynos_fb.h │ ├── exynos_fimd.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 │ ├── formike.c │ ├── fsl_dcu_fb.c │ ├── fsl_diu_fb.c │ ├── imx25lcdc.c │ ├── ipu.h │ ├── ipu_common.c │ ├── ipu_disp.c │ ├── ipu_regs.h │ ├── l5f31188.c │ ├── ld9040.c │ ├── mb862xx.c │ ├── mb86r0xgdc.c │ ├── mpc8xx_lcd.c │ ├── mx3fb.c │ ├── mxc_ipuv3_fb.c │ ├── mxcfb.h │ ├── mxsfb.c │ ├── omap3_dss.c │ ├── parade.c │ ├── pxa_lcd.c │ ├── rk3036_hdmi.c │ ├── rk3036_hdmi.h │ ├── rk3036_lcdc.c │ ├── rk3036_tve.c │ ├── rk3036_tve.h │ ├── rk32_dp.c │ ├── rk32_dp.h │ ├── rk32_dp_reg.c │ ├── rk32_hdmi.c │ ├── rk32_hdmi.h │ ├── rk32_lcdc.c │ ├── rk_hdmi.c │ ├── rk_hdmi.h │ ├── rockchip_fb.c │ ├── rockchip_fb.h │ ├── s6e63d6.c │ ├── s6e8ax0.c │ ├── sandbox_sdl.c │ ├── scf0403_lcd.c │ ├── screen │ │ ├── Makefile │ │ └── lcd_mipi.c │ ├── sed13806.c │ ├── sed156x.c │ ├── sm501.c │ ├── smiLynxEM.c │ ├── tegra.c │ ├── transmitter │ │ ├── Makefile │ │ ├── mipi_dsi.c │ │ ├── mipi_dsi.h │ │ ├── rk32_mipi_dsi.c │ │ └── rk32_mipi_dsi.h │ ├── 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 │ ├── tnetv107x_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 │ ├── 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 │ ├── 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 ├── 74xx_7xx.h ├── ACEX1K.h ├── MCD_dma.h ├── MCD_progCheck.h ├── MCD_tasksInit.h ├── SA-1100.h ├── _exports.h ├── aboot.h ├── addr_map.h ├── aes.h ├── ahci.h ├── ali512x.h ├── altera.h ├── ambapp.h ├── andestech │ └── andes_pcu.h ├── android_image.h ├── ansi.h ├── api_public.h ├── armcoremodule.h ├── asm-generic │ ├── errno.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_lcdc.h ├── atmel_mci.h ├── autoboot.h ├── axp152.h ├── axp209.h ├── bcd.h ├── bedbug │ ├── bedbug.h │ ├── ppc.h │ ├── regs.h │ ├── tables.h │ └── type.h ├── bitfield.h ├── bmp_layout.h ├── bootcount.h ├── bootm.h ├── bootretry.h ├── bootstage.h ├── bouncebuf.h ├── bus_vcxk.h ├── bzlib.h ├── cbfs.h ├── circbuf.h ├── cli.h ├── cli_hush.h ├── clk.h ├── cmd_rockusb.h ├── cmd_spl.h ├── command.h ├── common.h ├── common_timing_params.h ├── commproc.h ├── compiler.h ├── config_cmd_all.h ├── config_cmd_default.h ├── config_defaults.h ├── config_distro_bootcmd.h ├── config_distro_defaults.h ├── config_fallbacks.h ├── config_phylib_all_drivers.h ├── config_uncmd_spl.h ├── configs │ ├── A3000.h │ ├── APC405.h │ ├── AR405.h │ ├── ASH405.h │ ├── B4860QDS.h │ ├── BC3450.h │ ├── BSC9131RDB.h │ ├── BSC9132QDS.h │ ├── C29XPCIE.h │ ├── CATcenter.h │ ├── CMS700.h │ ├── CPC45.h │ ├── CPCI2DP.h │ ├── CPCI405.h │ ├── CPCI4052.h │ ├── CPCI405AB.h │ ├── CPCI405DT.h │ ├── CPCI750.h │ ├── CPCIISER4.h │ ├── CPU86.h │ ├── CPU87.h │ ├── CU824.h │ ├── DB64360.h │ ├── DB64460.h │ ├── DP405.h │ ├── DU405.h │ ├── DU440.h │ ├── ELPPC.h │ ├── ELPT860.h │ ├── ESTEEM192E.h │ ├── FPS850L.h │ ├── FPS860L.h │ ├── G2000.h │ ├── HH405.h │ ├── HUB405.h │ ├── HWW1U1A.h │ ├── ICU862.h │ ├── IDS8247.h │ ├── IP860.h │ ├── IPHASE4539.h │ ├── IVML24.h │ ├── IVMS8.h │ ├── IceCube.h │ ├── JSE.h │ ├── KUP4K.h │ ├── KUP4X.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 │ ├── MHPC.h │ ├── MIP405.h │ ├── MPC8266ADS.h │ ├── MPC8308RDB.h │ ├── MPC8313ERDB.h │ ├── MPC8315ERDB.h │ ├── MPC8323ERDB.h │ ├── MPC832XEMDS.h │ ├── MPC8349EMDS.h │ ├── MPC8349ITX.h │ ├── MPC8360EMDS.h │ ├── MPC8360ERDK.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 │ ├── MUSENKI.h │ ├── MVBLUE.h │ ├── MigoR.h │ ├── NETVIA.h │ ├── NSCU.h │ ├── OCRTC.h │ ├── P1010RDB.h │ ├── P1022DS.h │ ├── P1023RDB.h │ ├── P1_P2_RDB.h │ ├── P2020COME.h │ ├── P2020DS.h │ ├── P2041RDB.h │ ├── P3041DS.h │ ├── P3G4.h │ ├── P4080DS.h │ ├── P5020DS.h │ ├── P5040DS.h │ ├── PATI.h │ ├── PCI405.h │ ├── PIP405.h │ ├── PLU405.h │ ├── PM520.h │ ├── PM826.h │ ├── PM828.h │ ├── PMC405.h │ ├── PMC405DE.h │ ├── PMC440.h │ ├── PPChameleonEVB.h │ ├── R360MPI.h │ ├── RRvision.h │ ├── SM850.h │ ├── SPD823TS.h │ ├── Sandpoint8240.h │ ├── Sandpoint8245.h │ ├── T1040QDS.h │ ├── T104xRDB.h │ ├── T208xQDS.h │ ├── T208xRDB.h │ ├── T4240EMU.h │ ├── T4240QDS.h │ ├── T4240RDB.h │ ├── TASREG.h │ ├── TB5200.h │ ├── TK885D.h │ ├── TOP5200.h │ ├── TOP860.h │ ├── TQM5200.h │ ├── TQM823L.h │ ├── TQM823M.h │ ├── TQM8260.h │ ├── TQM8272.h │ ├── TQM834x.h │ ├── TQM850L.h │ ├── TQM850M.h │ ├── TQM855L.h │ ├── TQM855M.h │ ├── TQM860L.h │ ├── TQM860M.h │ ├── TQM862L.h │ ├── TQM862M.h │ ├── TQM866M.h │ ├── TQM885D.h │ ├── Total5200.h │ ├── VCMA9.h │ ├── VOH405.h │ ├── VOM405.h │ ├── VoVPN-GW.h │ ├── W7OLMC.h │ ├── W7OLMG.h │ ├── WUH405.h │ ├── ZUMA.h │ ├── a320evb.h │ ├── a3m071.h │ ├── a4m072.h │ ├── ac14xx.h │ ├── acadia.h │ ├── adp-ag101.h │ ├── adp-ag101p.h │ ├── adp-ag102.h │ ├── aev.h │ ├── afeb9260.h │ ├── alpr.h │ ├── alt.h │ ├── am335x_evm.h │ ├── am335x_igep0033.h │ ├── am3517_crane.h │ ├── am3517_evm.h │ ├── am43xx_evm.h │ ├── amcc-common.h │ ├── ap325rxa.h │ ├── ap_sh4a_4a.h │ ├── apf27.h │ ├── apx4devkit.h │ ├── arcangel4-be.h │ ├── arcangel4.h │ ├── aria.h │ ├── aristainetos.h │ ├── armadillo-800eva.h │ ├── arndale.h │ ├── aspenite.h │ ├── astro_mcf5373l.h │ ├── at91rm9200ek.h │ ├── at91sam9260ek.h │ ├── at91sam9261ek.h │ ├── at91sam9263ek.h │ ├── at91sam9m10g45ek.h │ ├── at91sam9n12ek.h │ ├── at91sam9rlek.h │ ├── at91sam9x5ek.h │ ├── atc.h │ ├── atngw100.h │ ├── atngw100mkii.h │ ├── atstk1002.h │ ├── atstk1003.h │ ├── atstk1004.h │ ├── atstk1006.h │ ├── axs101.h │ ├── balloon3.h │ ├── bamboo.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 │ ├── blackstamp.h │ ├── blackvme.h │ ├── br4.h │ ├── bubinga.h │ ├── bur_am335x_common.h │ ├── calimain.h │ ├── cam_enc_4xx.h │ ├── canmb.h │ ├── canyonlands.h │ ├── cardhu.h │ ├── cgtqmx6eval.h │ ├── charon.h │ ├── cm-bf527.h │ ├── cm-bf533.h │ ├── cm-bf537e.h │ ├── cm-bf537u.h │ ├── cm-bf548.h │ ├── cm-bf561.h │ ├── cm4008.h │ ├── cm41xx.h │ ├── cm5200.h │ ├── cm_fx6.h │ ├── cm_t335.h │ ├── cm_t35.h │ ├── cm_t54.h │ ├── cmi_mpc5xx.h │ ├── cobra5272.h │ ├── cogent_common.h │ ├── cogent_mpc8260.h │ ├── cogent_mpc8xx.h │ ├── colibri_pxa270.h │ ├── colibri_t20_iris.h │ ├── colibri_t30.h │ ├── controlcenterd.h │ ├── coreboot.h │ ├── corenet_ds.h │ ├── corvus.h │ ├── cpci5200.h │ ├── cpu9260.h │ ├── cpuat91.h │ ├── csb272.h │ ├── csb472.h │ ├── da830evm.h │ ├── da850evm.h │ ├── dalmore.h │ ├── davinci_dm355evm.h │ ├── davinci_dm355leopard.h │ ├── davinci_dm365evm.h │ ├── davinci_dm6467evm.h │ ├── davinci_dvevm.h │ ├── davinci_schmoogie.h │ ├── davinci_sffsdr.h │ ├── davinci_sonata.h │ ├── dbau1x00.h │ ├── devkit3250.h │ ├── devkit8000.h │ ├── dig297.h │ ├── digsy_mtc.h │ ├── dkb.h │ ├── dlvision-10g.h │ ├── dlvision.h │ ├── dnp5370.h │ ├── dns325.h │ ├── dockstar.h │ ├── dra7xx_evm.h │ ├── draco.h │ ├── dreamplug.h │ ├── duovero.h │ ├── dxr2.h │ ├── eXalion.h │ ├── ea20.h │ ├── eb_cpu5282.h │ ├── eb_cpux9k2.h │ ├── ebony.h │ ├── eco5pk.h │ ├── ecovec.h │ ├── edb93xx.h │ ├── edminiv2.h │ ├── embestmx6boards.h │ ├── enbw_cmc.h │ ├── ep8260.h │ ├── ep82xxm.h │ ├── espt.h │ ├── ethernut5.h │ ├── exynos-common.h │ ├── exynos4-common.h │ ├── exynos5-common.h │ ├── exynos5-dt-common.h │ ├── exynos5250-common.h │ ├── exynos5420-common.h │ ├── favr-32-ezkit.h │ ├── flea3.h │ ├── fx12mm.h │ ├── galaxy5200.h │ ├── gdppc440etx.h │ ├── goflexhome.h │ ├── gplugd.h │ ├── gr_cpci_ax2000.h │ ├── gr_ep2s60.h │ ├── gr_xc3s_1500.h │ ├── grasshopper.h │ ├── grsim.h │ ├── grsim_leon2.h │ ├── guruplug.h │ ├── gw8260.h │ ├── gw_ventana.h │ ├── h2200.h │ ├── hammerhead.h │ ├── harmony.h │ ├── hawkboard.h │ ├── hermes.h │ ├── highbank.h │ ├── hmi1001.h │ ├── hummingboard.h │ ├── hymod.h │ ├── ib62x0.h │ ├── ibf-dsp561.h │ ├── icon.h │ ├── iconnect.h │ ├── ids8313.h │ ├── ima3-mx53.h │ ├── imx27lite-common.h │ ├── imx27lite.h │ ├── imx31_litekit.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 │ ├── jadecpu.h │ ├── jetson-tk1.h │ ├── jornada.h │ ├── jupiter.h │ ├── k2e_evm.h │ ├── k2hk_evm.h │ ├── katmai.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 │ ├── korat.h │ ├── ks2_evm.h │ ├── kwb.h │ ├── kzm9g.h │ ├── lacie_kw.h │ ├── lager.h │ ├── lp8x4x.h │ ├── ls1021aqds.h │ ├── ls1021atwr.h │ ├── ls2085a_common.h │ ├── ls2085a_emu.h │ ├── ls2085a_simu.h │ ├── lsxl.h │ ├── luan.h │ ├── lwmon.h │ ├── lwmon5.h │ ├── m28evk.h │ ├── m53evk.h │ ├── magnesium.h │ ├── makalu.h │ ├── malta.h │ ├── manroland │ │ ├── common.h │ │ └── mpc5200-common.h │ ├── mcc200.h │ ├── mcx.h │ ├── mecp5123.h │ ├── mecp5200.h │ ├── medcom-wide.h │ ├── meesc.h │ ├── microblaze-generic.h │ ├── mimc200.h │ ├── ml507.h │ ├── motionpro.h │ ├── mpc5121-common.h │ ├── mpc5121ads.h │ ├── mpc7448hpc2.h │ ├── mpc8308_p1m.h │ ├── mpr2.h │ ├── ms7720se.h │ ├── ms7722se.h │ ├── ms7750se.h │ ├── mt_ventoux.h │ ├── muas3001.h │ ├── mucmc52.h │ ├── munices.h │ ├── mv-common.h │ ├── mv88f6281gtw_ge.h │ ├── mx23_olinuxino.h │ ├── mx23evk.h │ ├── mx25pdk.h │ ├── mx28evk.h │ ├── mx31ads.h │ ├── mx31pdk.h │ ├── mx35pdk.h │ ├── mx51_efikamx.h │ ├── mx51evk.h │ ├── mx53ard.h │ ├── mx53evk.h │ ├── mx53loco.h │ ├── mx53smd.h │ ├── mx6_common.h │ ├── mx6qarm2.h │ ├── mx6qsabreauto.h │ ├── mx6sabre_common.h │ ├── mx6sabresd.h │ ├── mx6slevk.h │ ├── mx6sxsabresd.h │ ├── mxs.h │ ├── neo.h │ ├── nhk8815.h │ ├── nios2-generic.h │ ├── nitrogen6x.h │ ├── nokia_rx51.h │ ├── o2d.h │ ├── o2d300.h │ ├── o2dnt-common.h │ ├── o2dnt2.h │ ├── o2i.h │ ├── o2mnt.h │ ├── o3dnt.h │ ├── ocotea.h │ ├── odroid.h │ ├── omap3_beagle.h │ ├── omap3_evm.h │ ├── omap3_evm_common.h │ ├── omap3_evm_quick_mmc.h │ ├── omap3_evm_quick_nand.h │ ├── omap3_igep00x0.h │ ├── omap3_logic.h │ ├── omap3_mvblx.h │ ├── omap3_overo.h │ ├── omap3_pandora.h │ ├── omap3_sdp3430.h │ ├── omap3_zoom1.h │ ├── omap4_panda.h │ ├── omap4_sdp4430.h │ ├── omap5_uevm.h │ ├── openrd.h │ ├── openrisc-generic.h │ ├── origen.h │ ├── ot1200.h │ ├── otc570.h │ ├── p1_p2_rdb_pc.h │ ├── p1_twr.h │ ├── p3mx.h │ ├── p3p440.h │ ├── palmld.h │ ├── palmtc.h │ ├── palmtreo680.h │ ├── paz00.h │ ├── pb1x00.h │ ├── pcm030.h │ ├── pcm051.h │ ├── pcs440ep.h │ ├── pdm360ng.h │ ├── peach-pit.h │ ├── pengwyn.h │ ├── pepper.h │ ├── pf5200.h │ ├── ph1_ld4.h │ ├── ph1_pro4.h │ ├── ph1_sld8.h │ ├── plutux.h │ ├── pm9261.h │ ├── pm9263.h │ ├── pm9g45.h │ ├── pogo_e02.h │ ├── ppmc7xx.h │ ├── ppmc8260.h │ ├── pr1.h │ ├── pxa-common.h │ ├── pxa255_idp.h │ ├── pxm2.h │ ├── qemu-mips.h │ ├── qemu-mips64.h │ ├── qemu-ppce500.h │ ├── qong.h │ ├── r0p7734.h │ ├── r2dplus.h │ ├── r7780mp.h │ ├── rd6281a.h │ ├── redwood.h │ ├── rk30plat.h │ ├── rk32plat.h │ ├── rk_default_config.h │ ├── rpi_b.h │ ├── rsk7203.h │ ├── rsk7264.h │ ├── rsk7269.h │ ├── rut.h │ ├── s5p_goni.h │ ├── s5pc210_universal.h │ ├── sacsng.h │ ├── sama5d3_xplained.h │ ├── sama5d3xek.h │ ├── sandbox.h │ ├── sansa_fuze_plus.h │ ├── sbc35_a9g20.h │ ├── sbc405.h │ ├── sbc8349.h │ ├── sbc8548.h │ ├── sbc8641d.h │ ├── sc3.h │ ├── sc_sps_1.h │ ├── scb9328.h │ ├── seaboard.h │ ├── sequoia.h │ ├── sh7752evb.h │ ├── sh7753evb.h │ ├── sh7757lcr.h │ ├── sh7763rdp.h │ ├── sh7785lcr.h │ ├── sheevaplug.h │ ├── shmin.h │ ├── siemens-am33x-common.h │ ├── smdk2410.h │ ├── smdk5250.h │ ├── smdk5420.h │ ├── smdkc100.h │ ├── smdkv310.h │ ├── snapper9260.h │ ├── snow.h │ ├── snowball.h │ ├── socfpga_common.h │ ├── socfpga_cyclone5.h │ ├── socrates.h │ ├── spear-common.h │ ├── spear3xx_evb.h │ ├── spear6xx_evb.h │ ├── stamp9g20.h │ ├── stxgp3.h │ ├── stxssa.h │ ├── sun4i.h │ ├── sun5i.h │ ├── sun7i.h │ ├── sunxi-common.h │ ├── suvd3.h │ ├── t3corp.h │ ├── t4qds.h │ ├── taihu.h │ ├── taishan.h │ ├── tam3517-common.h │ ├── tao3530.h │ ├── taurus.h │ ├── tb100.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 │ ├── tegra20-common.h │ ├── tegra30-common.h │ ├── ti814x_evm.h │ ├── ti816x_evm.h │ ├── ti_am335x_common.h │ ├── ti_armv7_common.h │ ├── ti_omap3_common.h │ ├── ti_omap4_common.h │ ├── ti_omap5_common.h │ ├── titanium.h │ ├── tk71.h │ ├── tnetv107x_evm.h │ ├── tny_a9260.h │ ├── top9000.h │ ├── tqma6.h │ ├── trats.h │ ├── trats2.h │ ├── tricorder.h │ ├── trimslice.h │ ├── trizepsiv.h │ ├── tseries.h │ ├── tt01.h │ ├── tuxx1.h │ ├── twister.h │ ├── tx25.h │ ├── u8500_href.h │ ├── uc100.h │ ├── uc101.h │ ├── udoo.h │ ├── uniphier-common.h │ ├── usb_a9263.h │ ├── utx8245.h │ ├── v38b.h │ ├── v5fx30teval.h │ ├── vct.h │ ├── ve8313.h │ ├── venice2.h │ ├── ventana.h │ ├── versatile.h │ ├── vexpress_aemv8a.h │ ├── vexpress_ca15_tc2.h │ ├── vexpress_ca5x2.h │ ├── vexpress_ca9x4.h │ ├── vexpress_common.h │ ├── vf610twr.h │ ├── virtlab2.h │ ├── vision2.h │ ├── vl_ma2sc.h │ ├── vme8349.h │ ├── vpac270.h │ ├── walnut.h │ ├── wandboard.h │ ├── whistler.h │ ├── wireless_space.h │ ├── woodburn.h │ ├── woodburn_common.h │ ├── woodburn_sd.h │ ├── x600.h │ ├── xaeniax.h │ ├── xfi3.h │ ├── xilinx-ppc.h │ ├── xilinx-ppc405-generic.h │ ├── xilinx-ppc405.h │ ├── xilinx-ppc440-generic.h │ ├── xilinx-ppc440.h │ ├── xpedite1000.h │ ├── xpedite517x.h │ ├── xpedite520x.h │ ├── xpedite537x.h │ ├── xpedite550x.h │ ├── yosemite.h │ ├── yucca.h │ ├── zeus.h │ ├── zipitz2.h │ ├── zmx25.h │ ├── zynq-common.h │ ├── zynq_microzed.h │ ├── zynq_zc70x.h │ ├── zynq_zc770.h │ └── zynq_zed.h ├── cpsw.h ├── cramfs │ └── cramfs_fs.h ├── crc.h ├── cros_ec.h ├── cros_ec_message.h ├── dataflash.h ├── ddr_spd.h ├── dfu.h ├── dialog_pmic.h ├── div64.h ├── dm-demo.h ├── dm.h ├── dm │ ├── device-internal.h │ ├── device.h │ ├── lists.h │ ├── platdata.h │ ├── root.h │ ├── test.h │ ├── uclass-id.h │ ├── uclass-internal.h │ ├── uclass.h │ ├── ut.h │ └── util.h ├── dm9000.h ├── dp83848.h ├── ds1722.h ├── ds4510.h ├── dt-bindings │ ├── clock │ │ ├── tegra114-car.h │ │ ├── tegra124-car.h │ │ ├── tegra20-car.h │ │ └── tegra30-car.h │ ├── gpio │ │ ├── gpio.h │ │ └── tegra-gpio.h │ └── interrupt-controller │ │ ├── arm-gic.h │ │ └── irq.h ├── dtt.h ├── dwmmc.h ├── e500.h ├── ec_commands.h ├── edid.h ├── elf.h ├── env_attr.h ├── env_callback.h ├── env_default.h ├── env_flags.h ├── environment.h ├── errno.h ├── exports.h ├── ext4fs.h ├── ext_common.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 ├── fdt.h ├── fdt_support.h ├── fdtdec.h ├── fis.h ├── flash.h ├── fm_eth.h ├── fpga.h ├── fs.h ├── fsl_dcu_fb.h ├── fsl_ddr.h ├── fsl_ddr_dimm_params.h ├── fsl_ddr_sdram.h ├── fsl_ddrc_version.h ├── fsl_diu_fb.h ├── fsl_esdhc.h ├── fsl_ifc.h ├── fsl_immap.h ├── fsl_mc.h ├── fsl_mdio.h ├── fsl_pmic.h ├── fsl_usb.h ├── fuse.h ├── g_dnl.h ├── galileo │ ├── core.h │ ├── gt64260R.h │ ├── memory.h │ └── pci.h ├── gdsys_fpga.h ├── gt64120.h ├── hash.h ├── hw_sha.h ├── hwconfig.h ├── i2c.h ├── i2s.h ├── i8042.h ├── ide.h ├── image.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 ├── lcdvideo.h ├── ld9040.h ├── led-display.h ├── libata.h ├── libfdt.h ├── libfdt_env.h ├── libtizen.h ├── linker_lists.h ├── linux │ ├── apm_bios.h │ ├── bch.h │ ├── bitops.h │ ├── bitrev.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── compat.h │ ├── compiler-clang.h │ ├── compiler-gcc.h │ ├── compiler-gcc3.h │ ├── compiler-gcc4.h │ ├── compiler-intel.h │ ├── compiler.h │ ├── crc32.h │ ├── crc7.h │ ├── crc8.h │ ├── ctype.h │ ├── edd.h │ ├── err.h │ ├── ethtool.h │ ├── fb.h │ ├── immap_qe.h │ ├── input.h │ ├── ioctl.h │ ├── ioport.h │ ├── kbuild.h │ ├── kconfig.h │ ├── linkage.h │ ├── linux_string.h │ ├── list.h │ ├── list_sort.h │ ├── lzo.h │ ├── math64.h │ ├── mc146818rtc.h │ ├── mdio.h │ ├── mii.h │ ├── mtd │ │ ├── bbm.h │ │ ├── concat.h │ │ ├── doc2000.h │ │ ├── docg4.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 │ ├── rbtree.h │ ├── rbtree_augmented.h │ ├── rk_screen.h │ ├── screen_info.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 │ │ ├── atmel_usba_udc.h │ │ ├── cdc.h │ │ ├── ch9.h │ │ ├── composite.h │ │ ├── dwc3.h │ │ ├── gadget.h │ │ ├── musb.h │ │ └── xhci-omap.h ├── linux_logo.h ├── lmb.h ├── logbuff.h ├── lxt971a.h ├── lynxkdi.h ├── lzma │ ├── LzmaDec.h │ ├── LzmaTools.h │ └── LzmaTypes.h ├── malloc.h ├── mb862xx.h ├── mc13783.h ├── mc13892.h ├── mc34704.h ├── mc9sdz60.h ├── menu.h ├── micrel.h ├── mii_phy.h ├── miiphy.h ├── mk48t59.h ├── mmc.h ├── mpc106.h ├── mpc5xx.h ├── mpc5xxx.h ├── mpc5xxx_sdma.h ├── mpc824x.h ├── mpc8260.h ├── mpc8260_irq.h ├── mpc83xx.h ├── mpc85xx.h ├── mpc86xx.h ├── mpc8xx.h ├── mpc8xx_irq.h ├── msc01.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 ├── netdev.h ├── nomadik.h ├── ns16550.h ├── ns87308.h ├── onenand_uboot.h ├── os.h ├── palmas.h ├── part.h ├── part_efi.h ├── pc_keyb.h ├── pca953x.h ├── pca9564.h ├── pca9698.h ├── pci.h ├── pci_gt64120.h ├── pci_ids.h ├── pci_msc01.h ├── pcmcia.h ├── pcmcia │ ├── cirrus.h │ ├── i82365.h │ ├── ss.h │ ├── ti113x.h │ └── yenta.h ├── phy.h ├── physmem.h ├── post.h ├── power │ ├── act8846_pmic.h │ ├── act8931_pmic.h │ ├── battery.h │ ├── fg_battery_cell_params.h │ ├── ltc3676_pmic.h │ ├── max17042_fg.h │ ├── max77686_pmic.h │ ├── max77693_fg.h │ ├── max77693_muic.h │ ├── max77693_pmic.h │ ├── max8997_muic.h │ ├── max8997_pmic.h │ ├── max8998_pmic.h │ ├── pfuze100_pmic.h │ ├── pmic.h │ ├── power_chrg.h │ ├── ricoh619_pmic.h │ ├── rk808_pmic.h │ ├── rk818_pmic.h │ ├── rockchip_power.h │ ├── rt5025_pmic.h │ ├── rt5036_pmic.h │ ├── tps65090_pmic.h │ ├── tps65217.h │ ├── tps65218.h │ └── tps65910.h ├── ppc_asm.tmpl ├── ppc_defs.h ├── ps2mult.h ├── pwm.h ├── radeon.h ├── reiserfs.h ├── resource.h ├── rtc.h ├── s6e63d6.h ├── s_record.h ├── samsung │ └── misc.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 ├── sha.h ├── sja1000.h ├── slre.h ├── sm501.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 ├── status_led.h ├── stdio_dev.h ├── stdlib.h ├── stratixII.h ├── sx151x.h ├── sym53c8xx.h ├── synopsys │ └── dwcddr21mctl.h ├── systemace.h ├── tca642x.h ├── tegra-kbc.h ├── thor.h ├── timestamp.h ├── tis.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.h │ ├── sha1.h │ ├── sha256.h │ ├── u-boot.lds.h │ └── zlib.h ├── ubi_uboot.h ├── universe.h ├── usb.h ├── usb │ ├── ci_udc.h │ ├── designware_udc.h │ ├── dwc_otg_udc.h │ ├── ehci-fsl.h │ ├── fotg210.h │ ├── fusbh200.h │ ├── lin_gadget_compat.h │ ├── mpc8xx_udc.h │ ├── omap1510_udc.h │ ├── pxa27x_udc.h │ ├── s3c_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 ├── version.h ├── video.h ├── video_ad7176.h ├── video_ad7177.h ├── video_ad7179.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 ├── vsprintf.h ├── vxworks.h ├── w83c553f.h ├── watchdog.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 └── zynqpl.h ├── lib ├── Kconfig ├── Makefile ├── addr_map.c ├── aes.c ├── asm-offsets.c ├── bch.c ├── bitrev.c ├── bzlib.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 ├── display_options.c ├── div64.c ├── errno.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_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ └── libfdt_internal.h ├── linux_compat.c ├── linux_string.c ├── list_sort.c ├── lmb.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 ├── net_utils.c ├── physmem.c ├── qsort.c ├── rand.c ├── rbtree.c ├── rsa │ ├── Makefile │ ├── rsa-checksum.c │ ├── rsa-sign.c │ └── rsa-verify.c ├── sha.c ├── sha1.c ├── sha256.c ├── slre.c ├── string.c ├── strmhz.c ├── time.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 ├── mkresimg.sh ├── net ├── Kconfig ├── Makefile ├── arp.c ├── arp.h ├── bootp.c ├── bootp.h ├── cdp.c ├── cdp.h ├── dns.c ├── dns.h ├── eth.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 └── tftp.h ├── post ├── Makefile ├── board │ ├── lwmon │ │ ├── Makefile │ │ └── sysmon.c │ ├── lwmon5 │ │ ├── Makefile │ │ ├── dsp.c │ │ ├── dspic.c │ │ ├── fpga.c │ │ ├── gdc.c │ │ ├── sysmon.c │ │ └── watchdog.c │ ├── netta │ │ ├── Makefile │ │ ├── codec.c │ │ └── dsp.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 ├── basic │ ├── .gitignore │ ├── Makefile │ └── fixdep.c ├── binutils-version.sh ├── checkpatch.pl ├── checkstack.pl ├── cleanpatch ├── docproc.c ├── dtc-version.sh ├── gcc-stack-usage.sh ├── gcc-version.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 ├── multiconfig.sh ├── objdiff ├── setlocalversion └── show-gnu-make ├── snapshot.commit ├── test ├── Makefile ├── cmd_repeat.sh ├── command_ut.c ├── common.sh ├── compression.c ├── dfu │ ├── README │ ├── dfu_gadget_test.sh │ └── dfu_gadget_test_init.sh ├── dm │ ├── .gitignore │ ├── Makefile │ ├── bus.c │ ├── cmd_dm.c │ ├── core.c │ ├── gpio.c │ ├── test-dm.sh │ ├── test-driver.c │ ├── test-fdt.c │ ├── test-main.c │ ├── test-uclass.c │ ├── test.dts │ └── ut.c ├── image │ ├── test-fit.py │ └── test-imagetools.sh ├── trace │ └── test-trace.sh ├── ums │ ├── README │ └── ums_gadget_test.sh └── vboot │ ├── .gitignore │ ├── sandbox-kernel.dts │ ├── sandbox-u-boot.dts │ ├── sign-configs-sha1.its │ ├── sign-configs-sha256.its │ ├── sign-images-sha1.its │ ├── sign-images-sha256.its │ └── vboot_test.sh └── tools ├── .gitignore ├── Makefile ├── aisimage.c ├── aisimage.h ├── atmel_pmecc_params.c ├── atmelimage.c ├── bddb ├── README ├── badsubmit.php ├── bddb.css ├── brlog.php ├── browse.php ├── config.php ├── create_tables.sql ├── defs.php ├── dodelete.php ├── dodellog.php ├── doedit.php ├── doedlog.php ├── donew.php ├── donewlog.php ├── edit.php ├── edlog.php ├── execute.php ├── index.php ├── new.php └── newlog.php ├── bin2header.c ├── bmp_logo.c ├── boot_merger.c ├── boot_merger.h ├── 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 ├── checksum.c ├── default_image.c ├── 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 ├── 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 ├── 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 ├── loaderimage.c ├── logos ├── atmel.bmp ├── denx.bmp ├── esd.bmp ├── freescale.bmp ├── intercontrol.bmp ├── linux_logo_ttcontrol.bmp ├── linux_logo_ttcontrol_palfin.bmp ├── rockchip.bmp ├── ronetix.bmp ├── siemens.bmp ├── syteco.bmp └── wandboard.bmp ├── mingw_support.c ├── mingw_support.h ├── mkenvimage.c ├── mkexynosspl.c ├── mkimage.c ├── mkimage.h ├── mksunxiboot.c ├── mpc86x_clk.c ├── 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 ├── palmtreo680 └── flash_u-boot.c ├── patman ├── .gitignore ├── README ├── 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 ├── terminal.py └── test.py ├── pbl_crc32.c ├── pbl_crc32.h ├── pblimage.c ├── pblimage.h ├── proftool.c ├── relocate-rela.c ├── resource_tool ├── .gitignore ├── Makefile ├── common.c ├── common.h ├── pack_resource.sh ├── resource_tool ├── resource_tool.c ├── resource_tool.h ├── resources │ ├── charge_anim_desc.txt │ └── images │ │ ├── battery_0.bmp │ │ ├── battery_1.bmp │ │ ├── battery_2.bmp │ │ ├── battery_3.bmp │ │ ├── battery_4.bmp │ │ ├── battery_5.bmp │ │ └── battery_fail.bmp ├── tests.c └── tests.h ├── rk_tools ├── .gitignore ├── 30_LPDDR2_300MHz_DDR3_300MHz_20130517.bin ├── 3168_LPDDR2_300MHz_DDR3_300MHz_20130517.bin ├── 3188_LPDDR2_300MHz_DDR3_300MHz_20130830.bin ├── 32_LPDDR2_200MHz_LPDDR3_200MHz_DDR3_200MHz_20141007.bin ├── 32_LPDDR2_300MHz_LPDDR3_300MHz_DDR3_300MHz_20140630.bin ├── Language │ ├── Chinese.ini │ └── English.ini ├── RK3036_DDR3_DDR400M_V1.06.bin ├── RK312x_DDR3_DDR400M_V1.07.bin ├── RKBOOT.ini ├── RKBOOT │ ├── RK30.ini │ ├── RK302A.ini │ ├── RK302AMINI.ini │ ├── RK302AMINIALL.ini │ ├── RK3036.ini │ ├── RK3036MINIALL.ini │ ├── RK30B.ini │ ├── RK30BMINI.ini │ ├── RK30BMINIALL.ini │ ├── RK30MINI.ini │ ├── RK30MINIALL.ini │ ├── RK310B.ini │ ├── RK310BMINI.ini │ ├── RK310BMINIALL.ini │ ├── RK312X.ini │ ├── RK312XMINIALL.ini │ ├── RK3288.ini │ ├── RK3288MINIALL.ini │ ├── RKCAYMAN.ini │ ├── RKCROWN.ini │ ├── RKNANO.ini │ ├── RKPANDA.ini │ ├── RKSMART.ini │ └── SDBOOT.ini ├── rk303xminiloaderall.bin ├── rk303xusbplug.bin ├── rk30usbplug.bin ├── rk312xminiloaderall.bin ├── rk312xusbplug.bin ├── rk32xxminiloaderall.bin ├── rk32xxusbplug.bin ├── rkMiniLoader.bin └── rkMiniLoaderAll.bin ├── scripts └── define2mk.sed ├── sha.c ├── socfpgaimage.c ├── ublimage.c ├── ublimage.h ├── ubsha1.c └── xway-swap-bytes.c /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/.mailmap -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/CREDITS -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Kconfig -------------------------------------------------------------------------------- /Licenses/Exceptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/Exceptions -------------------------------------------------------------------------------- /Licenses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/README -------------------------------------------------------------------------------- /Licenses/eCos-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/eCos-2.0.txt -------------------------------------------------------------------------------- /Licenses/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/gpl-2.0.txt -------------------------------------------------------------------------------- /Licenses/ibm-pibs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/ibm-pibs.txt -------------------------------------------------------------------------------- /Licenses/isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/isc.txt -------------------------------------------------------------------------------- /Licenses/lgpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Licenses/lgpl-2.0.txt -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/MAKEALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/README -------------------------------------------------------------------------------- /UserManual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/UserManual -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/README -------------------------------------------------------------------------------- /api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/api.c -------------------------------------------------------------------------------- /api/api_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/api_display.c -------------------------------------------------------------------------------- /api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/api_net.c -------------------------------------------------------------------------------- /api/api_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/api_private.h -------------------------------------------------------------------------------- /api/api_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/api/api_storage.c -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/Kconfig -------------------------------------------------------------------------------- /arch/arc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/arc/Kconfig -------------------------------------------------------------------------------- /arch/arc/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/arc/config.mk -------------------------------------------------------------------------------- /arch/arc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/arm/Kconfig -------------------------------------------------------------------------------- /arch/arm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/arm/config.mk -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/uniphier/ph1-ld4/boot-mode.c: -------------------------------------------------------------------------------- 1 | #include "../ph1-pro4/boot-mode.c" 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/uniphier/ph1-ld4/pll_spectrum.c: -------------------------------------------------------------------------------- 1 | #include "../ph1-pro4/pll_spectrum.c" 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/uniphier/ph1-sld8/bcu_init.c: -------------------------------------------------------------------------------- 1 | #include "../ph1-ld4/bcu_init.c" 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/uniphier/ph1-sld8/boot-mode.c: -------------------------------------------------------------------------------- 1 | #include "../ph1-pro4/boot-mode.c" 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/uniphier/ph1-sld8/pll_spectrum.c: -------------------------------------------------------------------------------- 1 | #include "../ph1-ld4/pll_spectrum.c" 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/uniphier/ph1-sld8/sg_init.c: -------------------------------------------------------------------------------- 1 | #include "../ph1-ld4/sg_init.c" 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv8/Kconfig: -------------------------------------------------------------------------------- 1 | if ARM64 2 | 3 | config SYS_CPU 4 | default "armv8" 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /arch/arm/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/arm/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/lib/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/arm/lib/spl.c -------------------------------------------------------------------------------- /arch/avr32/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/avr32/Kconfig -------------------------------------------------------------------------------- /arch/avr32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/avr32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/errno.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/linux-rockchip/u-boot-rockchip/HEAD/arch/m68k/Kconfig -------------------------------------------------------------------------------- /arch/m68k/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/microblaze/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/microblaze/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/microblaze/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/mips/Kconfig -------------------------------------------------------------------------------- /arch/mips/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/lib/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/mips/lib/io.c -------------------------------------------------------------------------------- /arch/nds32/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/nds32/Kconfig -------------------------------------------------------------------------------- /arch/nds32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/nios2/Kconfig -------------------------------------------------------------------------------- /arch/nios2/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/errno.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/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/sandbox/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/sandbox/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/sandbox/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/sh/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/sh/Kconfig -------------------------------------------------------------------------------- /arch/sh/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/sh/config.mk -------------------------------------------------------------------------------- /arch/sh/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/sh/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/sh/lib/time.c -------------------------------------------------------------------------------- /arch/sparc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/sparc/Kconfig -------------------------------------------------------------------------------- /arch/sparc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/x86/Kconfig -------------------------------------------------------------------------------- /arch/x86/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/x86/config.mk -------------------------------------------------------------------------------- /arch/x86/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/x86/cpu/cpu.c -------------------------------------------------------------------------------- /arch/x86/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/x86/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/x86/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/lib/gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/arch/x86/lib/gcc.c -------------------------------------------------------------------------------- /board/a3000/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/a3000/README -------------------------------------------------------------------------------- /board/a3m071/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | # 4 | 5 | obj-y := a3m071.o 6 | -------------------------------------------------------------------------------- /board/atc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/atc/Kconfig -------------------------------------------------------------------------------- /board/atc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/atc/Makefile -------------------------------------------------------------------------------- /board/atc/atc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/atc/atc.c -------------------------------------------------------------------------------- /board/atc/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/atc/flash.c -------------------------------------------------------------------------------- /board/atc/ti113x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/atc/ti113x.c -------------------------------------------------------------------------------- /board/br4/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/br4/Kconfig -------------------------------------------------------------------------------- /board/br4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/br4/Makefile -------------------------------------------------------------------------------- /board/br4/br4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/br4/br4.c -------------------------------------------------------------------------------- /board/cmi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cmi/Kconfig -------------------------------------------------------------------------------- /board/cmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cmi/Makefile -------------------------------------------------------------------------------- /board/cmi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cmi/README -------------------------------------------------------------------------------- /board/cmi/cmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cmi/cmi.c -------------------------------------------------------------------------------- /board/cmi/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cmi/flash.c -------------------------------------------------------------------------------- /board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /board/cogent/kbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/kbm.c -------------------------------------------------------------------------------- /board/cogent/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/lcd.c -------------------------------------------------------------------------------- /board/cogent/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/lcd.h -------------------------------------------------------------------------------- /board/cogent/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/mb.c -------------------------------------------------------------------------------- /board/cogent/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/mb.h -------------------------------------------------------------------------------- /board/cogent/par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/par.c -------------------------------------------------------------------------------- /board/cogent/par.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/par.h -------------------------------------------------------------------------------- /board/cogent/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/pci.c -------------------------------------------------------------------------------- /board/cogent/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/pci.h -------------------------------------------------------------------------------- /board/cogent/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/rtc.c -------------------------------------------------------------------------------- /board/cogent/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cogent/rtc.h -------------------------------------------------------------------------------- /board/cpc45/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cpc45/ide.c -------------------------------------------------------------------------------- /board/cu824/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/cu824/README -------------------------------------------------------------------------------- /board/espt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/espt/Kconfig -------------------------------------------------------------------------------- /board/espt/espt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/espt/espt.c -------------------------------------------------------------------------------- /board/hymod/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/hymod/bsp.c -------------------------------------------------------------------------------- /board/hymod/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/hymod/env.c -------------------------------------------------------------------------------- /board/ip04/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ip04/Kconfig -------------------------------------------------------------------------------- /board/ip04/ip04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ip04/ip04.c -------------------------------------------------------------------------------- /board/ivm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ivm/Kconfig -------------------------------------------------------------------------------- /board/ivm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ivm/Makefile -------------------------------------------------------------------------------- /board/ivm/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ivm/flash.c -------------------------------------------------------------------------------- /board/ivm/ivm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ivm/ivm.c -------------------------------------------------------------------------------- /board/jse/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/jse/Kconfig -------------------------------------------------------------------------------- /board/jse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/jse/Makefile -------------------------------------------------------------------------------- /board/jse/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/jse/flash.c -------------------------------------------------------------------------------- /board/jse/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/jse/init.S -------------------------------------------------------------------------------- /board/jse/jse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/jse/jse.c -------------------------------------------------------------------------------- /board/jse/sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/jse/sdram.c -------------------------------------------------------------------------------- /board/korat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/korat/README -------------------------------------------------------------------------------- /board/korat/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/korat/init.S -------------------------------------------------------------------------------- /board/lwmon5/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/lwmon5/kbd.c -------------------------------------------------------------------------------- /board/mcc200/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/mcc200/lcd.c -------------------------------------------------------------------------------- /board/mpr2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/mpr2/Kconfig -------------------------------------------------------------------------------- /board/mpr2/mpr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/mpr2/mpr2.c -------------------------------------------------------------------------------- /board/pr1/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/pr1/Kconfig -------------------------------------------------------------------------------- /board/pr1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/pr1/Makefile -------------------------------------------------------------------------------- /board/pr1/pr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/pr1/pr1.c -------------------------------------------------------------------------------- /board/sandpoint/dinkdl: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | tr -d "\r" <$1 >/dev/tts/1 3 | -------------------------------------------------------------------------------- /board/sc3/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sc3/Kconfig -------------------------------------------------------------------------------- /board/sc3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sc3/Makefile -------------------------------------------------------------------------------- /board/sc3/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sc3/init.S -------------------------------------------------------------------------------- /board/sc3/sc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sc3/sc3.c -------------------------------------------------------------------------------- /board/sc3/sc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sc3/sc3.h -------------------------------------------------------------------------------- /board/sunxi/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sunxi/ahci.c -------------------------------------------------------------------------------- /board/sunxi/gmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/sunxi/gmac.c -------------------------------------------------------------------------------- /board/ti/evm/evm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ti/evm/evm.c -------------------------------------------------------------------------------- /board/ti/evm/evm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/ti/evm/evm.h -------------------------------------------------------------------------------- /board/udoo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/udoo/Kconfig -------------------------------------------------------------------------------- /board/udoo/udoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/udoo/udoo.c -------------------------------------------------------------------------------- /board/v38b/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/v38b/Kconfig -------------------------------------------------------------------------------- /board/v38b/v38b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/v38b/v38b.c -------------------------------------------------------------------------------- /board/w7o/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/Kconfig -------------------------------------------------------------------------------- /board/w7o/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/Makefile -------------------------------------------------------------------------------- /board/w7o/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/errors.h -------------------------------------------------------------------------------- /board/w7o/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/flash.c -------------------------------------------------------------------------------- /board/w7o/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/fpga.c -------------------------------------------------------------------------------- /board/w7o/fsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/fsboot.c -------------------------------------------------------------------------------- /board/w7o/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/init.S -------------------------------------------------------------------------------- /board/w7o/post1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/post1.S -------------------------------------------------------------------------------- /board/w7o/post2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/post2.c -------------------------------------------------------------------------------- /board/w7o/vpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/vpd.c -------------------------------------------------------------------------------- /board/w7o/vpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/vpd.h -------------------------------------------------------------------------------- /board/w7o/w7o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/w7o.c -------------------------------------------------------------------------------- /board/w7o/w7o.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/w7o/w7o.h -------------------------------------------------------------------------------- /board/xilinx/zynq/.gitignore: -------------------------------------------------------------------------------- 1 | ps7_init.[ch] 2 | -------------------------------------------------------------------------------- /board/zeus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/zeus/Kconfig -------------------------------------------------------------------------------- /board/zeus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/zeus/README -------------------------------------------------------------------------------- /board/zeus/zeus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/board/zeus/zeus.c -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/aboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/aboot.c -------------------------------------------------------------------------------- /common/autoboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/autoboot.c -------------------------------------------------------------------------------- /common/bedbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/bedbug.c -------------------------------------------------------------------------------- /common/board_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/board_f.c -------------------------------------------------------------------------------- /common/board_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/board_r.c -------------------------------------------------------------------------------- /common/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/bootm.c -------------------------------------------------------------------------------- /common/bootm_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/bootm_os.c -------------------------------------------------------------------------------- /common/bootretry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/bootretry.c -------------------------------------------------------------------------------- /common/bootstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/bootstage.c -------------------------------------------------------------------------------- /common/bouncebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/bouncebuf.c -------------------------------------------------------------------------------- /common/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cli.c -------------------------------------------------------------------------------- /common/cli_hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cli_hush.c -------------------------------------------------------------------------------- /common/cmd_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_aes.c -------------------------------------------------------------------------------- /common/cmd_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_bmp.c -------------------------------------------------------------------------------- /common/cmd_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_boot.c -------------------------------------------------------------------------------- /common/cmd_bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_bootm.c -------------------------------------------------------------------------------- /common/cmd_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_cache.c -------------------------------------------------------------------------------- /common/cmd_cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_cbfs.c -------------------------------------------------------------------------------- /common/cmd_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_clk.c -------------------------------------------------------------------------------- /common/cmd_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_date.c -------------------------------------------------------------------------------- /common/cmd_dcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_dcr.c -------------------------------------------------------------------------------- /common/cmd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_demo.c -------------------------------------------------------------------------------- /common/cmd_dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_dfu.c -------------------------------------------------------------------------------- /common/cmd_diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_diag.c -------------------------------------------------------------------------------- /common/cmd_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_disk.c -------------------------------------------------------------------------------- /common/cmd_dtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_dtt.c -------------------------------------------------------------------------------- /common/cmd_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_echo.c -------------------------------------------------------------------------------- /common/cmd_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_elf.c -------------------------------------------------------------------------------- /common/cmd_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_exit.c -------------------------------------------------------------------------------- /common/cmd_ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ext2.c -------------------------------------------------------------------------------- /common/cmd_ext4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ext4.c -------------------------------------------------------------------------------- /common/cmd_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fat.c -------------------------------------------------------------------------------- /common/cmd_fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fdc.c -------------------------------------------------------------------------------- /common/cmd_fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fdt.c -------------------------------------------------------------------------------- /common/cmd_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_flash.c -------------------------------------------------------------------------------- /common/cmd_fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fpga.c -------------------------------------------------------------------------------- /common/cmd_fpgad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fpgad.c -------------------------------------------------------------------------------- /common/cmd_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fs.c -------------------------------------------------------------------------------- /common/cmd_fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_fuse.c -------------------------------------------------------------------------------- /common/cmd_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_gpio.c -------------------------------------------------------------------------------- /common/cmd_gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_gpt.c -------------------------------------------------------------------------------- /common/cmd_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_hash.c -------------------------------------------------------------------------------- /common/cmd_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_help.c -------------------------------------------------------------------------------- /common/cmd_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_i2c.c -------------------------------------------------------------------------------- /common/cmd_ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ide.c -------------------------------------------------------------------------------- /common/cmd_immap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_immap.c -------------------------------------------------------------------------------- /common/cmd_ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ini.c -------------------------------------------------------------------------------- /common/cmd_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_io.c -------------------------------------------------------------------------------- /common/cmd_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_irq.c -------------------------------------------------------------------------------- /common/cmd_itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_itest.c -------------------------------------------------------------------------------- /common/cmd_jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_jffs2.c -------------------------------------------------------------------------------- /common/cmd_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_led.c -------------------------------------------------------------------------------- /common/cmd_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_load.c -------------------------------------------------------------------------------- /common/cmd_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_log.c -------------------------------------------------------------------------------- /common/cmd_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mac.c -------------------------------------------------------------------------------- /common/cmd_mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mdio.c -------------------------------------------------------------------------------- /common/cmd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mem.c -------------------------------------------------------------------------------- /common/cmd_mfsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mfsl.c -------------------------------------------------------------------------------- /common/cmd_mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mii.c -------------------------------------------------------------------------------- /common/cmd_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_misc.c -------------------------------------------------------------------------------- /common/cmd_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mmc.c -------------------------------------------------------------------------------- /common/cmd_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_mp.c -------------------------------------------------------------------------------- /common/cmd_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_nand.c -------------------------------------------------------------------------------- /common/cmd_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_net.c -------------------------------------------------------------------------------- /common/cmd_otp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_otp.c -------------------------------------------------------------------------------- /common/cmd_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_part.c -------------------------------------------------------------------------------- /common/cmd_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_pci.c -------------------------------------------------------------------------------- /common/cmd_pxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_pxe.c -------------------------------------------------------------------------------- /common/cmd_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_read.c -------------------------------------------------------------------------------- /common/cmd_sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_sata.c -------------------------------------------------------------------------------- /common/cmd_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_scsi.c -------------------------------------------------------------------------------- /common/cmd_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_sf.c -------------------------------------------------------------------------------- /common/cmd_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_sound.c -------------------------------------------------------------------------------- /common/cmd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_spi.c -------------------------------------------------------------------------------- /common/cmd_spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_spl.c -------------------------------------------------------------------------------- /common/cmd_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_test.c -------------------------------------------------------------------------------- /common/cmd_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_time.c -------------------------------------------------------------------------------- /common/cmd_tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_tpm.c -------------------------------------------------------------------------------- /common/cmd_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_trace.c -------------------------------------------------------------------------------- /common/cmd_ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ubi.c -------------------------------------------------------------------------------- /common/cmd_ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ubifs.c -------------------------------------------------------------------------------- /common/cmd_unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_unzip.c -------------------------------------------------------------------------------- /common/cmd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_usb.c -------------------------------------------------------------------------------- /common/cmd_ximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_ximg.c -------------------------------------------------------------------------------- /common/cmd_zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_zfs.c -------------------------------------------------------------------------------- /common/cmd_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cmd_zip.c -------------------------------------------------------------------------------- /common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/command.c -------------------------------------------------------------------------------- /common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/console.c -------------------------------------------------------------------------------- /common/cros_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/cros_ec.c -------------------------------------------------------------------------------- /common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/ddr_spd.c -------------------------------------------------------------------------------- /common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/dlmalloc.c -------------------------------------------------------------------------------- /common/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/edid.c -------------------------------------------------------------------------------- /common/env_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_attr.c -------------------------------------------------------------------------------- /common/env_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_fat.c -------------------------------------------------------------------------------- /common/env_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_flags.c -------------------------------------------------------------------------------- /common/env_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_flash.c -------------------------------------------------------------------------------- /common/env_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_mmc.c -------------------------------------------------------------------------------- /common/env_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_nand.c -------------------------------------------------------------------------------- /common/env_nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_nvram.c -------------------------------------------------------------------------------- /common/env_rk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_rk.c -------------------------------------------------------------------------------- /common/env_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_sf.c -------------------------------------------------------------------------------- /common/env_ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/env_ubi.c -------------------------------------------------------------------------------- /common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/exports.c -------------------------------------------------------------------------------- /common/fb_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/fb_mmc.c -------------------------------------------------------------------------------- /common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/flash.c -------------------------------------------------------------------------------- /common/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/hash.c -------------------------------------------------------------------------------- /common/hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/hwconfig.c -------------------------------------------------------------------------------- /common/image-fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/image-fdt.c -------------------------------------------------------------------------------- /common/image-fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/image-fit.c -------------------------------------------------------------------------------- /common/image-sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/image-sig.c -------------------------------------------------------------------------------- /common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/image.c -------------------------------------------------------------------------------- /common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/iomux.c -------------------------------------------------------------------------------- /common/iotrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/iotrace.c -------------------------------------------------------------------------------- /common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/kallsyms.c -------------------------------------------------------------------------------- /common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/kgdb.c -------------------------------------------------------------------------------- /common/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/lcd.c -------------------------------------------------------------------------------- /common/lynxkdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/lynxkdi.c -------------------------------------------------------------------------------- /common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/main.c -------------------------------------------------------------------------------- /common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/memsize.c -------------------------------------------------------------------------------- /common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/menu.c -------------------------------------------------------------------------------- /common/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/modem.c -------------------------------------------------------------------------------- /common/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/resource.c -------------------------------------------------------------------------------- /common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/s_record.c -------------------------------------------------------------------------------- /common/spl/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/spl/spl.c -------------------------------------------------------------------------------- /common/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/splash.c -------------------------------------------------------------------------------- /common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/stdio.c -------------------------------------------------------------------------------- /common/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/update.c -------------------------------------------------------------------------------- /common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/usb.c -------------------------------------------------------------------------------- /common/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/usb_hub.c -------------------------------------------------------------------------------- /common/usb_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/usb_kbd.c -------------------------------------------------------------------------------- /common/xyzModem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/common/xyzModem.c -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/config.mk -------------------------------------------------------------------------------- /disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/Makefile -------------------------------------------------------------------------------- /disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part.c -------------------------------------------------------------------------------- /disk/part_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_amiga.c -------------------------------------------------------------------------------- /disk/part_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_amiga.h -------------------------------------------------------------------------------- /disk/part_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_dos.c -------------------------------------------------------------------------------- /disk/part_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_dos.h -------------------------------------------------------------------------------- /disk/part_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_efi.c -------------------------------------------------------------------------------- /disk/part_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_iso.c -------------------------------------------------------------------------------- /disk/part_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_iso.h -------------------------------------------------------------------------------- /disk/part_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_mac.c -------------------------------------------------------------------------------- /disk/part_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/disk/part_mac.h -------------------------------------------------------------------------------- /doc/README.ARC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.ARC -------------------------------------------------------------------------------- /doc/README.AVR32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.AVR32 -------------------------------------------------------------------------------- /doc/README.JFFS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.JFFS2 -------------------------------------------------------------------------------- /doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.LED -------------------------------------------------------------------------------- /doc/README.MPC866: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.MPC866 -------------------------------------------------------------------------------- /doc/README.Modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.Modem -------------------------------------------------------------------------------- /doc/README.N1213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.N1213 -------------------------------------------------------------------------------- /doc/README.NDS32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.NDS32 -------------------------------------------------------------------------------- /doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.OFT -------------------------------------------------------------------------------- /doc/README.POST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.POST -------------------------------------------------------------------------------- /doc/README.SNTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.SNTP -------------------------------------------------------------------------------- /doc/README.SPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.SPL -------------------------------------------------------------------------------- /doc/README.TPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.TPL -------------------------------------------------------------------------------- /doc/README.VLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.VLAN -------------------------------------------------------------------------------- /doc/README.ag102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.ag102 -------------------------------------------------------------------------------- /doc/README.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.arm64 -------------------------------------------------------------------------------- /doc/README.at91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.at91 -------------------------------------------------------------------------------- /doc/README.bedbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.bedbug -------------------------------------------------------------------------------- /doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.cfi -------------------------------------------------------------------------------- /doc/README.clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.clang -------------------------------------------------------------------------------- /doc/README.console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.console -------------------------------------------------------------------------------- /doc/README.davinci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.davinci -------------------------------------------------------------------------------- /doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.dns -------------------------------------------------------------------------------- /doc/README.ext4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.ext4 -------------------------------------------------------------------------------- /doc/README.falcon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.falcon -------------------------------------------------------------------------------- /doc/README.fec_mxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.fec_mxc -------------------------------------------------------------------------------- /doc/README.fsl-ddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.fsl-ddr -------------------------------------------------------------------------------- /doc/README.fsl_iim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.fsl_iim -------------------------------------------------------------------------------- /doc/README.fuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.fuse -------------------------------------------------------------------------------- /doc/README.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.gpt -------------------------------------------------------------------------------- /doc/README.imx25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.imx25 -------------------------------------------------------------------------------- /doc/README.imx27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.imx27 -------------------------------------------------------------------------------- /doc/README.imx31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.imx31 -------------------------------------------------------------------------------- /doc/README.imx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.imx5 -------------------------------------------------------------------------------- /doc/README.imx6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.imx6 -------------------------------------------------------------------------------- /doc/README.iomux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.iomux -------------------------------------------------------------------------------- /doc/README.kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.kconfig -------------------------------------------------------------------------------- /doc/README.lynxkdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.lynxkdi -------------------------------------------------------------------------------- /doc/README.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.m68k -------------------------------------------------------------------------------- /doc/README.malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.malta -------------------------------------------------------------------------------- /doc/README.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.menu -------------------------------------------------------------------------------- /doc/README.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.mips -------------------------------------------------------------------------------- /doc/README.mpc5xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.mpc5xx -------------------------------------------------------------------------------- /doc/README.mpc74xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.mpc74xx -------------------------------------------------------------------------------- /doc/README.mpc85xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.mpc85xx -------------------------------------------------------------------------------- /doc/README.mxc_hab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.mxc_hab -------------------------------------------------------------------------------- /doc/README.mxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.mxs -------------------------------------------------------------------------------- /doc/README.nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.nand -------------------------------------------------------------------------------- /doc/README.ne2000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.ne2000 -------------------------------------------------------------------------------- /doc/README.odroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.odroid -------------------------------------------------------------------------------- /doc/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.omap3 -------------------------------------------------------------------------------- /doc/README.plan9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.plan9 -------------------------------------------------------------------------------- /doc/README.ppc440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.ppc440 -------------------------------------------------------------------------------- /doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.pxe -------------------------------------------------------------------------------- /doc/README.rmobile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.rmobile -------------------------------------------------------------------------------- /doc/README.s5pc1xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.s5pc1xx -------------------------------------------------------------------------------- /doc/README.sata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.sata -------------------------------------------------------------------------------- /doc/README.sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.sched -------------------------------------------------------------------------------- /doc/README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.sh -------------------------------------------------------------------------------- /doc/README.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.sha1 -------------------------------------------------------------------------------- /doc/README.silent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.silent -------------------------------------------------------------------------------- /doc/README.socfpga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.socfpga -------------------------------------------------------------------------------- /doc/README.spear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.spear -------------------------------------------------------------------------------- /doc/README.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.trace -------------------------------------------------------------------------------- /doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.ubi -------------------------------------------------------------------------------- /doc/README.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.update -------------------------------------------------------------------------------- /doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.usb -------------------------------------------------------------------------------- /doc/README.vf610: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.vf610 -------------------------------------------------------------------------------- /doc/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.video -------------------------------------------------------------------------------- /doc/README.vxworks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.vxworks -------------------------------------------------------------------------------- /doc/README.zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.zfs -------------------------------------------------------------------------------- /doc/README.zynq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/README.zynq -------------------------------------------------------------------------------- /doc/SPI/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/SPI/status.txt -------------------------------------------------------------------------------- /doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/git-mailrc -------------------------------------------------------------------------------- /doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/kwboot.1 -------------------------------------------------------------------------------- /doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/doc/mkimage.1 -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/block/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/core/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/crypto/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/dfu/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/dfu/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/dfu/dfu.c -------------------------------------------------------------------------------- /drivers/dma/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/gpio/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/hwmon/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/i2c/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/input/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/memory/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_TI_AEMIF) += ti-aemif.o 2 | -------------------------------------------------------------------------------- /drivers/misc/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/mmc/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/mmc/mmc.c -------------------------------------------------------------------------------- /drivers/mmc/rpmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/mmc/rpmb.c -------------------------------------------------------------------------------- /drivers/mtd/Kconfig: -------------------------------------------------------------------------------- 1 | source "drivers/mtd/nand/Kconfig" 2 | -------------------------------------------------------------------------------- /drivers/mtd/at45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/mtd/at45.c -------------------------------------------------------------------------------- /drivers/net/8390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/8390.h -------------------------------------------------------------------------------- /drivers/net/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/net/cpsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/cpsw.c -------------------------------------------------------------------------------- /drivers/net/dnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/dnet.c -------------------------------------------------------------------------------- /drivers/net/dnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/dnet.h -------------------------------------------------------------------------------- /drivers/net/macb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/macb.c -------------------------------------------------------------------------------- /drivers/net/macb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/macb.h -------------------------------------------------------------------------------- /drivers/net/tsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/net/tsec.c -------------------------------------------------------------------------------- /drivers/pci/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/pci/pci.c -------------------------------------------------------------------------------- /drivers/pcmcia/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/power/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/qe/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/fdt.c -------------------------------------------------------------------------------- /drivers/qe/qe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/qe.c -------------------------------------------------------------------------------- /drivers/qe/qe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/qe.h -------------------------------------------------------------------------------- /drivers/qe/uccf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/uccf.c -------------------------------------------------------------------------------- /drivers/qe/uccf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/uccf.h -------------------------------------------------------------------------------- /drivers/qe/uec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/uec.c -------------------------------------------------------------------------------- /drivers/qe/uec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/qe/uec.h -------------------------------------------------------------------------------- /drivers/rtc/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/rtc/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/rtc/date.c -------------------------------------------------------------------------------- /drivers/serial/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/sound/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/spi/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/spi/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/spi/ich.c -------------------------------------------------------------------------------- /drivers/spi/ich.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/spi/ich.h -------------------------------------------------------------------------------- /drivers/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/spi/spi.c -------------------------------------------------------------------------------- /drivers/tpm/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/tpm/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/drivers/tpm/tpm.c -------------------------------------------------------------------------------- /drivers/usb/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/video/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/watchdog/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/dts/.gitignore -------------------------------------------------------------------------------- /dts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/dts/Kconfig -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/dts/Makefile -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /fs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/Kconfig -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/Makefile -------------------------------------------------------------------------------- /fs/cbfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/cbfs/Makefile -------------------------------------------------------------------------------- /fs/cbfs/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/cbfs/cbfs.c -------------------------------------------------------------------------------- /fs/cramfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/cramfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/cramfs/Makefile -------------------------------------------------------------------------------- /fs/cramfs/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/cramfs/cramfs.c -------------------------------------------------------------------------------- /fs/ext4/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/ext4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ext4/Makefile -------------------------------------------------------------------------------- /fs/ext4/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ext4/crc16.c -------------------------------------------------------------------------------- /fs/ext4/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ext4/crc16.h -------------------------------------------------------------------------------- /fs/ext4/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ext4/dev.c -------------------------------------------------------------------------------- /fs/ext4/ext4fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ext4/ext4fs.c -------------------------------------------------------------------------------- /fs/fat/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/fat/Makefile -------------------------------------------------------------------------------- /fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/fat/fat.c -------------------------------------------------------------------------------- /fs/fat/fat_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/fat/fat_write.c -------------------------------------------------------------------------------- /fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/fat/file.c -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/fs.c -------------------------------------------------------------------------------- /fs/jffs2/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/jffs2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/jffs2/LICENCE -------------------------------------------------------------------------------- /fs/jffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/jffs2/Makefile -------------------------------------------------------------------------------- /fs/jffs2/summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/jffs2/summary.h -------------------------------------------------------------------------------- /fs/reiserfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/reiserfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/reiserfs/dev.c -------------------------------------------------------------------------------- /fs/ubifs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/Makefile -------------------------------------------------------------------------------- /fs/ubifs/budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/budget.c -------------------------------------------------------------------------------- /fs/ubifs/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/crc16.c -------------------------------------------------------------------------------- /fs/ubifs/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/crc16.h -------------------------------------------------------------------------------- /fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/debug.c -------------------------------------------------------------------------------- /fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/debug.h -------------------------------------------------------------------------------- /fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/io.c -------------------------------------------------------------------------------- /fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/key.h -------------------------------------------------------------------------------- /fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/log.c -------------------------------------------------------------------------------- /fs/ubifs/lprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/lprops.c -------------------------------------------------------------------------------- /fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/master.c -------------------------------------------------------------------------------- /fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/misc.h -------------------------------------------------------------------------------- /fs/ubifs/orphan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/orphan.c -------------------------------------------------------------------------------- /fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/replay.c -------------------------------------------------------------------------------- /fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/sb.c -------------------------------------------------------------------------------- /fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/scan.c -------------------------------------------------------------------------------- /fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/super.c -------------------------------------------------------------------------------- /fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /fs/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/yaffs2/Makefile -------------------------------------------------------------------------------- /fs/zfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/zfs/Makefile -------------------------------------------------------------------------------- /fs/zfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/zfs/dev.c -------------------------------------------------------------------------------- /fs/zfs/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/zfs/zfs.c -------------------------------------------------------------------------------- /fs/zfs/zfs_lzjb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/fs/zfs/zfs_lzjb.c -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/74xx_7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/74xx_7xx.h -------------------------------------------------------------------------------- /include/ACEX1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ACEX1K.h -------------------------------------------------------------------------------- /include/MCD_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/MCD_dma.h -------------------------------------------------------------------------------- /include/SA-1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/SA-1100.h -------------------------------------------------------------------------------- /include/_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/_exports.h -------------------------------------------------------------------------------- /include/aboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/aboot.h -------------------------------------------------------------------------------- /include/addr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/addr_map.h -------------------------------------------------------------------------------- /include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/aes.h -------------------------------------------------------------------------------- /include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ahci.h -------------------------------------------------------------------------------- /include/ali512x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ali512x.h -------------------------------------------------------------------------------- /include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/altera.h -------------------------------------------------------------------------------- /include/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ambapp.h -------------------------------------------------------------------------------- /include/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ansi.h -------------------------------------------------------------------------------- /include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ata.h -------------------------------------------------------------------------------- /include/autoboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/autoboot.h -------------------------------------------------------------------------------- /include/axp152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/axp152.h -------------------------------------------------------------------------------- /include/axp209.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/axp209.h -------------------------------------------------------------------------------- /include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/bcd.h -------------------------------------------------------------------------------- /include/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/bitfield.h -------------------------------------------------------------------------------- /include/bootm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/bootm.h -------------------------------------------------------------------------------- /include/bus_vcxk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/bus_vcxk.h -------------------------------------------------------------------------------- /include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/bzlib.h -------------------------------------------------------------------------------- /include/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/cbfs.h -------------------------------------------------------------------------------- /include/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/circbuf.h -------------------------------------------------------------------------------- /include/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/cli.h -------------------------------------------------------------------------------- /include/cli_hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/cli_hush.h -------------------------------------------------------------------------------- /include/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/clk.h -------------------------------------------------------------------------------- /include/cmd_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/cmd_spl.h -------------------------------------------------------------------------------- /include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/command.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/common.h -------------------------------------------------------------------------------- /include/commproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/commproc.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/cpsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/cpsw.h -------------------------------------------------------------------------------- /include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/crc.h -------------------------------------------------------------------------------- /include/cros_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/cros_ec.h -------------------------------------------------------------------------------- /include/ddr_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ddr_spd.h -------------------------------------------------------------------------------- /include/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dfu.h -------------------------------------------------------------------------------- /include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/div64.h -------------------------------------------------------------------------------- /include/dm-demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm-demo.h -------------------------------------------------------------------------------- /include/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm.h -------------------------------------------------------------------------------- /include/dm/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm/lists.h -------------------------------------------------------------------------------- /include/dm/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm/root.h -------------------------------------------------------------------------------- /include/dm/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm/test.h -------------------------------------------------------------------------------- /include/dm/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm/ut.h -------------------------------------------------------------------------------- /include/dm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm/util.h -------------------------------------------------------------------------------- /include/dm9000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dm9000.h -------------------------------------------------------------------------------- /include/dp83848.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dp83848.h -------------------------------------------------------------------------------- /include/ds1722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ds1722.h -------------------------------------------------------------------------------- /include/ds4510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ds4510.h -------------------------------------------------------------------------------- /include/dtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dtt.h -------------------------------------------------------------------------------- /include/dwmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/dwmmc.h -------------------------------------------------------------------------------- /include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/e500.h -------------------------------------------------------------------------------- /include/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/edid.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/env_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/env_attr.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/exports.h -------------------------------------------------------------------------------- /include/ext4fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ext4fs.h -------------------------------------------------------------------------------- /include/fastboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fastboot.h -------------------------------------------------------------------------------- /include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fat.h -------------------------------------------------------------------------------- /include/fb_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fb_mmc.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/fdtdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fdtdec.h -------------------------------------------------------------------------------- /include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fis.h -------------------------------------------------------------------------------- /include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/flash.h -------------------------------------------------------------------------------- /include/fm_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fm_eth.h -------------------------------------------------------------------------------- /include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fpga.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/fsl_ddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fsl_ddr.h -------------------------------------------------------------------------------- /include/fsl_ifc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fsl_ifc.h -------------------------------------------------------------------------------- /include/fsl_mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fsl_mc.h -------------------------------------------------------------------------------- /include/fsl_mdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fsl_mdio.h -------------------------------------------------------------------------------- /include/fsl_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fsl_pmic.h -------------------------------------------------------------------------------- /include/fsl_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fsl_usb.h -------------------------------------------------------------------------------- /include/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/fuse.h -------------------------------------------------------------------------------- /include/g_dnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/g_dnl.h -------------------------------------------------------------------------------- /include/gt64120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/gt64120.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/hw_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/hw_sha.h -------------------------------------------------------------------------------- /include/hwconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/hwconfig.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/i2s.h -------------------------------------------------------------------------------- /include/i8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/i8042.h -------------------------------------------------------------------------------- /include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ide.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/image.h -------------------------------------------------------------------------------- /include/initcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/initcall.h -------------------------------------------------------------------------------- /include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/input.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/iomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/iomux.h -------------------------------------------------------------------------------- /include/ioports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ioports.h -------------------------------------------------------------------------------- /include/iotrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/iotrace.h -------------------------------------------------------------------------------- /include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/keyboard.h -------------------------------------------------------------------------------- /include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/kgdb.h -------------------------------------------------------------------------------- /include/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/lattice.h -------------------------------------------------------------------------------- /include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/lcd.h -------------------------------------------------------------------------------- /include/lcdvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/lcdvideo.h -------------------------------------------------------------------------------- /include/ld9040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ld9040.h -------------------------------------------------------------------------------- /include/libata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/libata.h -------------------------------------------------------------------------------- /include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/libfdt.h -------------------------------------------------------------------------------- /include/libtizen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/libtizen.h -------------------------------------------------------------------------------- /include/linux/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/linux/fb.h -------------------------------------------------------------------------------- /include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/lmb.h -------------------------------------------------------------------------------- /include/logbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/logbuff.h -------------------------------------------------------------------------------- /include/lxt971a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/lxt971a.h -------------------------------------------------------------------------------- /include/lynxkdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/lynxkdi.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/mb862xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mb862xx.h -------------------------------------------------------------------------------- /include/mc13783.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mc13783.h -------------------------------------------------------------------------------- /include/mc13892.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mc13892.h -------------------------------------------------------------------------------- /include/mc34704.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mc34704.h -------------------------------------------------------------------------------- /include/mc9sdz60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mc9sdz60.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/micrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/micrel.h -------------------------------------------------------------------------------- /include/mii_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mii_phy.h -------------------------------------------------------------------------------- /include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/miiphy.h -------------------------------------------------------------------------------- /include/mk48t59.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mk48t59.h -------------------------------------------------------------------------------- /include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mmc.h -------------------------------------------------------------------------------- /include/mpc106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc106.h -------------------------------------------------------------------------------- /include/mpc5xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc5xx.h -------------------------------------------------------------------------------- /include/mpc5xxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc5xxx.h -------------------------------------------------------------------------------- /include/mpc824x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc824x.h -------------------------------------------------------------------------------- /include/mpc8260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc8260.h -------------------------------------------------------------------------------- /include/mpc83xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc83xx.h -------------------------------------------------------------------------------- /include/mpc85xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc85xx.h -------------------------------------------------------------------------------- /include/mpc86xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc86xx.h -------------------------------------------------------------------------------- /include/mpc8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mpc8xx.h -------------------------------------------------------------------------------- /include/msc01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/msc01.h -------------------------------------------------------------------------------- /include/mtd_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mtd_node.h -------------------------------------------------------------------------------- /include/mvmfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/mvmfp.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/net.h -------------------------------------------------------------------------------- /include/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/netdev.h -------------------------------------------------------------------------------- /include/nomadik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/nomadik.h -------------------------------------------------------------------------------- /include/ns16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ns16550.h -------------------------------------------------------------------------------- /include/ns87308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ns87308.h -------------------------------------------------------------------------------- /include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/os.h -------------------------------------------------------------------------------- /include/palmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/palmas.h -------------------------------------------------------------------------------- /include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/part.h -------------------------------------------------------------------------------- /include/part_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/part_efi.h -------------------------------------------------------------------------------- /include/pc_keyb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pc_keyb.h -------------------------------------------------------------------------------- /include/pca953x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pca953x.h -------------------------------------------------------------------------------- /include/pca9564.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pca9564.h -------------------------------------------------------------------------------- /include/pca9698.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pca9698.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pci_ids.h -------------------------------------------------------------------------------- /include/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pcmcia.h -------------------------------------------------------------------------------- /include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/phy.h -------------------------------------------------------------------------------- /include/physmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/physmem.h -------------------------------------------------------------------------------- /include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/post.h -------------------------------------------------------------------------------- /include/ppc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ppc_defs.h -------------------------------------------------------------------------------- /include/ps2mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/ps2mult.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/radeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/radeon.h -------------------------------------------------------------------------------- /include/reiserfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/reiserfs.h -------------------------------------------------------------------------------- /include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/resource.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/s6e63d6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/s6e63d6.h -------------------------------------------------------------------------------- /include/s_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/s_record.h -------------------------------------------------------------------------------- /include/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sata.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sdhci.h -------------------------------------------------------------------------------- /include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/search.h -------------------------------------------------------------------------------- /include/sed13806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sed13806.h -------------------------------------------------------------------------------- /include/sed156x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sed156x.h -------------------------------------------------------------------------------- /include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/serial.h -------------------------------------------------------------------------------- /include/sh_pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sh_pfc.h -------------------------------------------------------------------------------- /include/sh_tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sh_tmu.h -------------------------------------------------------------------------------- /include/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sha.h -------------------------------------------------------------------------------- /include/sja1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sja1000.h -------------------------------------------------------------------------------- /include/slre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/slre.h -------------------------------------------------------------------------------- /include/sm501.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sm501.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/spartan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/spartan2.h -------------------------------------------------------------------------------- /include/spartan3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/spartan3.h -------------------------------------------------------------------------------- /include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/spd.h -------------------------------------------------------------------------------- /include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/spi.h -------------------------------------------------------------------------------- /include/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/spl.h -------------------------------------------------------------------------------- /include/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/splash.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/sx151x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/sx151x.h -------------------------------------------------------------------------------- /include/tca642x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tca642x.h -------------------------------------------------------------------------------- /include/thor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/thor.h -------------------------------------------------------------------------------- /include/tis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tis.h -------------------------------------------------------------------------------- /include/tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tmu.h -------------------------------------------------------------------------------- /include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tpm.h -------------------------------------------------------------------------------- /include/tps6586x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tps6586x.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tsec.h -------------------------------------------------------------------------------- /include/tsi108.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tsi108.h -------------------------------------------------------------------------------- /include/tsi148.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tsi148.h -------------------------------------------------------------------------------- /include/twl4030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/twl4030.h -------------------------------------------------------------------------------- /include/twl6030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/twl6030.h -------------------------------------------------------------------------------- /include/tws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/tws.h -------------------------------------------------------------------------------- /include/universe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/universe.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/usb.h -------------------------------------------------------------------------------- /include/usb/udc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/usb/udc.h -------------------------------------------------------------------------------- /include/usb/ulpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/usb/ulpi.h -------------------------------------------------------------------------------- /include/usb_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/usb_defs.h -------------------------------------------------------------------------------- /include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/uuid.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/version.h -------------------------------------------------------------------------------- /include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/video.h -------------------------------------------------------------------------------- /include/video_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/video_fb.h -------------------------------------------------------------------------------- /include/virtex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/virtex2.h -------------------------------------------------------------------------------- /include/vsc7385.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/vsc7385.h -------------------------------------------------------------------------------- /include/vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/vsprintf.h -------------------------------------------------------------------------------- /include/vxworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/vxworks.h -------------------------------------------------------------------------------- /include/w83c553f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/w83c553f.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /include/xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/xilinx.h -------------------------------------------------------------------------------- /include/xyzModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/xyzModem.h -------------------------------------------------------------------------------- /include/zfs/dmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/zfs/dmu.h -------------------------------------------------------------------------------- /include/zfs/spa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/zfs/spa.h -------------------------------------------------------------------------------- /include/zfs/zfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/zfs/zfs.h -------------------------------------------------------------------------------- /include/zfs/zil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/zfs/zil.h -------------------------------------------------------------------------------- /include/zfs/zio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/zfs/zio.h -------------------------------------------------------------------------------- /include/zynqpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/include/zynqpl.h -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/addr_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/addr_map.c -------------------------------------------------------------------------------- /lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/aes.c -------------------------------------------------------------------------------- /lib/asm-offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/asm-offsets.c -------------------------------------------------------------------------------- /lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/bch.c -------------------------------------------------------------------------------- /lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/bitrev.c -------------------------------------------------------------------------------- /lib/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/bzlib.c -------------------------------------------------------------------------------- /lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/circbuf.c -------------------------------------------------------------------------------- /lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/crc16.c -------------------------------------------------------------------------------- /lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/crc32.c -------------------------------------------------------------------------------- /lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/crc7.c -------------------------------------------------------------------------------- /lib/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/crc8.c -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/div64.c -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/fdtdec.c -------------------------------------------------------------------------------- /lib/fdtdec_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/fdtdec_test.c -------------------------------------------------------------------------------- /lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/gunzip.c -------------------------------------------------------------------------------- /lib/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/gzip.c -------------------------------------------------------------------------------- /lib/hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/hang.c -------------------------------------------------------------------------------- /lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/hashtable.c -------------------------------------------------------------------------------- /lib/initcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/initcall.c -------------------------------------------------------------------------------- /lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/ldiv.c -------------------------------------------------------------------------------- /lib/libfdt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/libfdt/README -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /lib/linux_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/linux_compat.c -------------------------------------------------------------------------------- /lib/linux_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/linux_string.c -------------------------------------------------------------------------------- /lib/list_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/list_sort.c -------------------------------------------------------------------------------- /lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lmb.c -------------------------------------------------------------------------------- /lib/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzma/LzmaDec.c -------------------------------------------------------------------------------- /lib/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzma/LzmaDec.h -------------------------------------------------------------------------------- /lib/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzma/Makefile -------------------------------------------------------------------------------- /lib/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzma/Types.h -------------------------------------------------------------------------------- /lib/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzma/lzma.txt -------------------------------------------------------------------------------- /lib/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzo/Makefile -------------------------------------------------------------------------------- /lib/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/lzo/lzodefs.h -------------------------------------------------------------------------------- /lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/md5.c -------------------------------------------------------------------------------- /lib/net_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/net_utils.c -------------------------------------------------------------------------------- /lib/physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/physmem.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/rsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/rsa/Makefile -------------------------------------------------------------------------------- /lib/rsa/rsa-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/rsa/rsa-sign.c -------------------------------------------------------------------------------- /lib/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/sha.c -------------------------------------------------------------------------------- /lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/sha1.c -------------------------------------------------------------------------------- /lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/sha256.c -------------------------------------------------------------------------------- /lib/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/slre.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/strmhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/strmhz.c -------------------------------------------------------------------------------- /lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/time.c -------------------------------------------------------------------------------- /lib/tizen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/tizen/Makefile -------------------------------------------------------------------------------- /lib/tizen/tizen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/tizen/tizen.c -------------------------------------------------------------------------------- /lib/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/tpm.c -------------------------------------------------------------------------------- /lib/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/trace.c -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/Makefile -------------------------------------------------------------------------------- /lib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/adler32.c -------------------------------------------------------------------------------- /lib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/deflate.c -------------------------------------------------------------------------------- /lib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/deflate.h -------------------------------------------------------------------------------- /lib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/inffast.c -------------------------------------------------------------------------------- /lib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/inffast.h -------------------------------------------------------------------------------- /lib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/inflate.c -------------------------------------------------------------------------------- /lib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/inflate.h -------------------------------------------------------------------------------- /lib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/trees.c -------------------------------------------------------------------------------- /lib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/trees.h -------------------------------------------------------------------------------- /lib/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/zlib.c -------------------------------------------------------------------------------- /lib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/zlib.h -------------------------------------------------------------------------------- /lib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/zutil.c -------------------------------------------------------------------------------- /lib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/lib/zlib/zutil.h -------------------------------------------------------------------------------- /mkresimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/mkresimg.sh -------------------------------------------------------------------------------- /net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/Kconfig -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/Makefile -------------------------------------------------------------------------------- /net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/arp.c -------------------------------------------------------------------------------- /net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/arp.h -------------------------------------------------------------------------------- /net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/bootp.c -------------------------------------------------------------------------------- /net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/bootp.h -------------------------------------------------------------------------------- /net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/cdp.c -------------------------------------------------------------------------------- /net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/cdp.h -------------------------------------------------------------------------------- /net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/dns.c -------------------------------------------------------------------------------- /net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/dns.h -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/link_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/link_local.c -------------------------------------------------------------------------------- /net/link_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/link_local.h -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/net.c -------------------------------------------------------------------------------- /net/net_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/net_rand.h -------------------------------------------------------------------------------- /net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/nfs.c -------------------------------------------------------------------------------- /net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/nfs.h -------------------------------------------------------------------------------- /net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/ping.c -------------------------------------------------------------------------------- /net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/ping.h -------------------------------------------------------------------------------- /net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/rarp.c -------------------------------------------------------------------------------- /net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/rarp.h -------------------------------------------------------------------------------- /net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/sntp.c -------------------------------------------------------------------------------- /net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/sntp.h -------------------------------------------------------------------------------- /net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/tftp.c -------------------------------------------------------------------------------- /net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/net/tftp.h -------------------------------------------------------------------------------- /post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/post/Makefile -------------------------------------------------------------------------------- /post/drivers/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/post/drivers/i2c.c -------------------------------------------------------------------------------- /post/drivers/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/post/drivers/rtc.c -------------------------------------------------------------------------------- /post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/post/post.c -------------------------------------------------------------------------------- /post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/post/tests.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | docproc 5 | -------------------------------------------------------------------------------- /scripts/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/Lindent -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/docproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/docproc.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /scripts/kernel-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/kernel-doc -------------------------------------------------------------------------------- /scripts/mailmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/mailmapper -------------------------------------------------------------------------------- /scripts/mkmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/mkmakefile -------------------------------------------------------------------------------- /scripts/objdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/scripts/objdiff -------------------------------------------------------------------------------- /snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/cmd_repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/cmd_repeat.sh -------------------------------------------------------------------------------- /test/command_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/command_ut.c -------------------------------------------------------------------------------- /test/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/common.sh -------------------------------------------------------------------------------- /test/compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/compression.c -------------------------------------------------------------------------------- /test/dfu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dfu/README -------------------------------------------------------------------------------- /test/dm/.gitignore: -------------------------------------------------------------------------------- 1 | /test.dtb 2 | -------------------------------------------------------------------------------- /test/dm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/Makefile -------------------------------------------------------------------------------- /test/dm/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/bus.c -------------------------------------------------------------------------------- /test/dm/cmd_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/cmd_dm.c -------------------------------------------------------------------------------- /test/dm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/core.c -------------------------------------------------------------------------------- /test/dm/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/gpio.c -------------------------------------------------------------------------------- /test/dm/test-dm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/test-dm.sh -------------------------------------------------------------------------------- /test/dm/test-fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/test-fdt.c -------------------------------------------------------------------------------- /test/dm/test.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/test.dts -------------------------------------------------------------------------------- /test/dm/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/dm/ut.c -------------------------------------------------------------------------------- /test/ums/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/test/ums/README -------------------------------------------------------------------------------- /test/vboot/.gitignore: -------------------------------------------------------------------------------- 1 | /*.dtb 2 | /test.fit 3 | /dev-keys 4 | -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/aisimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/aisimage.c -------------------------------------------------------------------------------- /tools/aisimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/aisimage.h -------------------------------------------------------------------------------- /tools/atmelimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/atmelimage.c -------------------------------------------------------------------------------- /tools/bddb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/bddb/README -------------------------------------------------------------------------------- /tools/bddb/new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/bddb/new.php -------------------------------------------------------------------------------- /tools/bin2header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/bin2header.c -------------------------------------------------------------------------------- /tools/bmp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/bmp_logo.c -------------------------------------------------------------------------------- /tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | buildman.py -------------------------------------------------------------------------------- /tools/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/checksum.c -------------------------------------------------------------------------------- /tools/dumpimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/dumpimage.c -------------------------------------------------------------------------------- /tools/dumpimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/dumpimage.h -------------------------------------------------------------------------------- /tools/env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/env/Makefile -------------------------------------------------------------------------------- /tools/env/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/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/env/fw_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/env/fw_env.c -------------------------------------------------------------------------------- /tools/env/fw_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/env/fw_env.h -------------------------------------------------------------------------------- /tools/envcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/envcrc.c -------------------------------------------------------------------------------- /tools/fdt_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/fdt_host.h -------------------------------------------------------------------------------- /tools/fit_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/fit_common.c -------------------------------------------------------------------------------- /tools/fit_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/fit_common.h -------------------------------------------------------------------------------- /tools/fit_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/fit_image.c -------------------------------------------------------------------------------- /tools/fit_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/fit_info.c -------------------------------------------------------------------------------- /tools/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/Makefile -------------------------------------------------------------------------------- /tools/gdb/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/error.c -------------------------------------------------------------------------------- /tools/gdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/error.h -------------------------------------------------------------------------------- /tools/gdb/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/remote.c -------------------------------------------------------------------------------- /tools/gdb/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/remote.h -------------------------------------------------------------------------------- /tools/gdb/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/serial.c -------------------------------------------------------------------------------- /tools/gdb/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gdb/serial.h -------------------------------------------------------------------------------- /tools/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/getline.c -------------------------------------------------------------------------------- /tools/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/getline.h -------------------------------------------------------------------------------- /tools/gpheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gpheader.h -------------------------------------------------------------------------------- /tools/gpimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/gpimage.c -------------------------------------------------------------------------------- /tools/image-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/image-host.c -------------------------------------------------------------------------------- /tools/imagetool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/imagetool.c -------------------------------------------------------------------------------- /tools/imagetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/imagetool.h -------------------------------------------------------------------------------- /tools/img2brec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/img2brec.sh -------------------------------------------------------------------------------- /tools/img2srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/img2srec.c -------------------------------------------------------------------------------- /tools/imximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/imximage.c -------------------------------------------------------------------------------- /tools/imximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/imximage.h -------------------------------------------------------------------------------- /tools/jtagconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/jtagconsole -------------------------------------------------------------------------------- /tools/kwbimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/kwbimage.c -------------------------------------------------------------------------------- /tools/kwbimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/kwbimage.h -------------------------------------------------------------------------------- /tools/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/kwboot.c -------------------------------------------------------------------------------- /tools/mkenvimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mkenvimage.c -------------------------------------------------------------------------------- /tools/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mkimage.c -------------------------------------------------------------------------------- /tools/mkimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mkimage.h -------------------------------------------------------------------------------- /tools/mpc86x_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mpc86x_clk.c -------------------------------------------------------------------------------- /tools/mxsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mxsboot.c -------------------------------------------------------------------------------- /tools/mxsimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mxsimage.c -------------------------------------------------------------------------------- /tools/mxsimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/mxsimage.h -------------------------------------------------------------------------------- /tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/ncb.c -------------------------------------------------------------------------------- /tools/netconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/netconsole -------------------------------------------------------------------------------- /tools/omapimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/omapimage.c -------------------------------------------------------------------------------- /tools/omapimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/omapimage.h -------------------------------------------------------------------------------- /tools/os_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/os_support.c -------------------------------------------------------------------------------- /tools/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/os_support.h -------------------------------------------------------------------------------- /tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /tools/pbl_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/pbl_crc32.c -------------------------------------------------------------------------------- /tools/pbl_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/pbl_crc32.h -------------------------------------------------------------------------------- /tools/pblimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/pblimage.c -------------------------------------------------------------------------------- /tools/pblimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/pblimage.h -------------------------------------------------------------------------------- /tools/proftool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/proftool.c -------------------------------------------------------------------------------- /tools/rk_tools/.gitignore: -------------------------------------------------------------------------------- 1 | !*.bin -------------------------------------------------------------------------------- /tools/sha.c: -------------------------------------------------------------------------------- 1 | #include "../lib/sha.c" 2 | -------------------------------------------------------------------------------- /tools/ublimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/ublimage.c -------------------------------------------------------------------------------- /tools/ublimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/ublimage.h -------------------------------------------------------------------------------- /tools/ubsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-rockchip/u-boot-rockchip/HEAD/tools/ubsha1.c --------------------------------------------------------------------------------