├── .gitignore ├── BCM └── empty ├── IPQ ├── COPYING ├── CREDITS ├── MAINTAINERS ├── MAKEALL ├── Makefile ├── README.ASUS ├── README.ORI ├── 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 │ ├── arm │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── arm1136 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── mx31 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── devices.c │ │ │ │ │ ├── generic.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx35 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── generic.c │ │ │ │ │ ├── iomux.c │ │ │ │ │ └── timer.c │ │ │ │ ├── omap24xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── reset.S │ │ │ │ │ └── timer.c │ │ │ │ └── start.S │ │ │ ├── arm1176 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── s3c64xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu_init.S │ │ │ │ │ ├── reset.S │ │ │ │ │ ├── speed.c │ │ │ │ │ └── timer.c │ │ │ │ ├── start.S │ │ │ │ └── tnetv107x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aemif.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mux.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── wdt.c │ │ │ ├── arm720t │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── lpc2292 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── iap_entry.S │ │ │ │ │ ├── mmc.c │ │ │ │ │ ├── mmc_hw.c │ │ │ │ │ ├── mmc_hw.h │ │ │ │ │ └── spi.c │ │ │ │ ├── s3c4510b │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cache.c │ │ │ │ └── start.S │ │ │ ├── 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 │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── 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 │ │ │ │ │ ├── usb.c │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ └── usb_ohci.h │ │ │ │ └── start.S │ │ │ ├── arm925t │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── omap925.c │ │ │ │ ├── start.S │ │ │ │ └── timer.c │ │ │ ├── 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 │ │ │ │ │ ├── at91sam9rl_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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.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.S │ │ │ │ │ ├── spl.c │ │ │ │ │ └── timer.c │ │ │ │ ├── kirkwood │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── dram.c │ │ │ │ │ ├── mpp.c │ │ │ │ │ └── timer.c │ │ │ │ ├── lpc32xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── devices.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mb86r0x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx25 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── generic.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx27 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── generic.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx28 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── iomux.c │ │ │ │ │ ├── mx28.c │ │ │ │ │ ├── mx28_init.h │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ ├── spl_lradc_init.c │ │ │ │ │ ├── spl_mem_init.c │ │ │ │ │ ├── spl_power_init.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── timer.c │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ ├── nomadik │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── reset.S │ │ │ │ │ └── timer.c │ │ │ │ ├── omap │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ ├── reset.S │ │ │ │ │ └── timer.c │ │ │ │ ├── orion5x │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── emif4.c │ │ │ │ │ └── sys_info.c │ │ │ │ ├── cache_v7.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── exynos │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── pinmux.c │ │ │ │ │ ├── power.c │ │ │ │ │ ├── soc.c │ │ │ │ │ └── system.c │ │ │ │ ├── highbank │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bootcount.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── timer.c │ │ │ │ ├── imx-common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── timer.c │ │ │ │ ├── ipq │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cmd_bootipq.c │ │ │ │ │ ├── cmd_dumpipq_data.c │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── scm.c │ │ │ │ │ ├── smem.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── iomux.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── soc.c │ │ │ │ ├── mx6 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── iomux-v3.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── soc.c │ │ │ │ ├── omap-common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boot-common.c │ │ │ │ │ ├── clocks-common.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emif-common.c │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mem-common.c │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── spl_mmc.c │ │ │ │ │ ├── spl_nand.c │ │ │ │ │ ├── spl_ymodem.c │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ ├── utils.c │ │ │ │ │ └── vc.c │ │ │ │ ├── omap3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emac.c │ │ │ │ │ ├── emif4.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mem.c │ │ │ │ │ ├── sdrc.c │ │ │ │ │ ├── spl_id_nand.c │ │ │ │ │ └── sys_info.c │ │ │ │ ├── omap4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clocks.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emif.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ └── sdram_elpida.c │ │ │ │ ├── omap5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clocks.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emif.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── qca │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cmd_blowsecfuse.c │ │ │ │ │ ├── cmd_bootqca.c │ │ │ │ │ ├── cmd_dumpqca_data.c │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── scm.c │ │ │ │ │ ├── smem.c │ │ │ │ │ └── timer.c │ │ │ │ ├── s5p-common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ ├── pwm.c │ │ │ │ │ ├── sromc.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── wdt.c │ │ │ │ ├── s5pc1xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── clock.c │ │ │ │ │ └── reset.S │ │ │ │ ├── start.S │ │ │ │ ├── syslib.c │ │ │ │ ├── tegra2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ap20.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cmd_enterrcm.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── crypto.c │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── emc.c │ │ │ │ │ ├── funcmux.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── pinmux.c │ │ │ │ │ ├── pmu.c │ │ │ │ │ ├── sys_info.c │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── usb.c │ │ │ │ │ ├── warmboot.c │ │ │ │ │ ├── warmboot_avp.c │ │ │ │ │ └── warmboot_avp.h │ │ │ │ └── u8500 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── lowlevel.S │ │ │ │ │ └── timer.c │ │ │ ├── ixp │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── npe │ │ │ │ │ ├── IxEthAcc.c │ │ │ │ │ ├── IxEthAccCommon.c │ │ │ │ │ ├── IxEthAccControlInterface.c │ │ │ │ │ ├── IxEthAccDataPlane.c │ │ │ │ │ ├── IxEthAccMac.c │ │ │ │ │ ├── IxEthAccMii.c │ │ │ │ │ ├── IxEthDBAPI.c │ │ │ │ │ ├── IxEthDBAPISupport.c │ │ │ │ │ ├── IxEthDBCore.c │ │ │ │ │ ├── IxEthDBEvents.c │ │ │ │ │ ├── IxEthDBFeatures.c │ │ │ │ │ ├── IxEthDBFirewall.c │ │ │ │ │ ├── IxEthDBHashtable.c │ │ │ │ │ ├── IxEthDBLearning.c │ │ │ │ │ ├── IxEthDBMem.c │ │ │ │ │ ├── IxEthDBNPEAdaptor.c │ │ │ │ │ ├── IxEthDBPortUpdate.c │ │ │ │ │ ├── IxEthDBReports.c │ │ │ │ │ ├── IxEthDBSearch.c │ │ │ │ │ ├── IxEthDBSpanningTree.c │ │ │ │ │ ├── IxEthDBUtil.c │ │ │ │ │ ├── IxEthDBVlan.c │ │ │ │ │ ├── IxEthDBWiFi.c │ │ │ │ │ ├── IxEthMii.c │ │ │ │ │ ├── IxFeatureCtrl.c │ │ │ │ │ ├── IxNpeDl.c │ │ │ │ │ ├── IxNpeDlImageMgr.c │ │ │ │ │ ├── IxNpeDlNpeMgr.c │ │ │ │ │ ├── IxNpeDlNpeMgrUtils.c │ │ │ │ │ ├── IxNpeMh.c │ │ │ │ │ ├── IxNpeMhConfig.c │ │ │ │ │ ├── IxNpeMhReceive.c │ │ │ │ │ ├── IxNpeMhSend.c │ │ │ │ │ ├── IxNpeMhSolicitedCbMgr.c │ │ │ │ │ ├── IxNpeMhUnsolicitedCbMgr.c │ │ │ │ │ ├── IxOsalBufferMgt.c │ │ │ │ │ ├── IxOsalIoMem.c │ │ │ │ │ ├── IxOsalOsCacheMMU.c │ │ │ │ │ ├── IxOsalOsMsgQ.c │ │ │ │ │ ├── IxOsalOsSemaphore.c │ │ │ │ │ ├── IxOsalOsServices.c │ │ │ │ │ ├── IxOsalOsThread.c │ │ │ │ │ ├── IxQMgrAqmIf.c │ │ │ │ │ ├── IxQMgrDispatcher.c │ │ │ │ │ ├── IxQMgrInit.c │ │ │ │ │ ├── IxQMgrQAccess.c │ │ │ │ │ ├── IxQMgrQCfg.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── include │ │ │ │ │ │ ├── IxAssert.h │ │ │ │ │ │ ├── IxAtmSch.h │ │ │ │ │ │ ├── IxAtmTypes.h │ │ │ │ │ │ ├── IxAtmdAcc.h │ │ │ │ │ │ ├── IxAtmdAccCtrl.h │ │ │ │ │ │ ├── IxAtmm.h │ │ │ │ │ │ ├── IxDmaAcc.h │ │ │ │ │ │ ├── IxEthAcc.h │ │ │ │ │ │ ├── IxEthAccDataPlane_p.h │ │ │ │ │ │ ├── IxEthAccMac_p.h │ │ │ │ │ │ ├── IxEthAccMii_p.h │ │ │ │ │ │ ├── IxEthAccQueueAssign_p.h │ │ │ │ │ │ ├── IxEthAcc_p.h │ │ │ │ │ │ ├── IxEthDB.h │ │ │ │ │ │ ├── IxEthDBLocks_p.h │ │ │ │ │ │ ├── IxEthDBLog_p.h │ │ │ │ │ │ ├── IxEthDBMessages_p.h │ │ │ │ │ │ ├── IxEthDBPortDefs.h │ │ │ │ │ │ ├── IxEthDBQoS.h │ │ │ │ │ │ ├── IxEthDB_p.h │ │ │ │ │ │ ├── IxEthMii.h │ │ │ │ │ │ ├── IxEthMii_p.h │ │ │ │ │ │ ├── IxEthNpe.h │ │ │ │ │ │ ├── IxFeatureCtrl.h │ │ │ │ │ │ ├── IxHssAcc.h │ │ │ │ │ │ ├── IxI2cDrv.h │ │ │ │ │ │ ├── IxNpeA.h │ │ │ │ │ │ ├── IxNpeDl.h │ │ │ │ │ │ ├── IxNpeDlImageMgr_p.h │ │ │ │ │ │ ├── IxNpeDlMacros_p.h │ │ │ │ │ │ ├── IxNpeDlNpeMgrEcRegisters_p.h │ │ │ │ │ │ ├── IxNpeDlNpeMgrUtils_p.h │ │ │ │ │ │ ├── IxNpeDlNpeMgr_p.h │ │ │ │ │ │ ├── IxNpeMh.h │ │ │ │ │ │ ├── IxNpeMhConfig_p.h │ │ │ │ │ │ ├── IxNpeMhMacros_p.h │ │ │ │ │ │ ├── IxNpeMhReceive_p.h │ │ │ │ │ │ ├── IxNpeMhSend_p.h │ │ │ │ │ │ ├── IxNpeMhSolicitedCbMgr_p.h │ │ │ │ │ │ ├── IxNpeMhUnsolicitedCbMgr_p.h │ │ │ │ │ │ ├── IxNpeMicrocode.h │ │ │ │ │ │ ├── IxOsBufLib.h │ │ │ │ │ │ ├── IxOsBuffMgt.h │ │ │ │ │ │ ├── IxOsBuffPoolMgt.h │ │ │ │ │ │ ├── IxOsCacheMMU.h │ │ │ │ │ │ ├── IxOsPrintf.h │ │ │ │ │ │ ├── IxOsServices.h │ │ │ │ │ │ ├── IxOsServicesComponents.h │ │ │ │ │ │ ├── IxOsServicesEndianess.h │ │ │ │ │ │ ├── IxOsServicesMemAccess.h │ │ │ │ │ │ ├── IxOsServicesMemMap.h │ │ │ │ │ │ ├── IxOsal.h │ │ │ │ │ │ ├── IxOsalAssert.h │ │ │ │ │ │ ├── IxOsalBackward.h │ │ │ │ │ │ ├── IxOsalBackwardAssert.h │ │ │ │ │ │ ├── IxOsalBackwardBufferMgt.h │ │ │ │ │ │ ├── IxOsalBackwardCacheMMU.h │ │ │ │ │ │ ├── IxOsalBackwardMemMap.h │ │ │ │ │ │ ├── IxOsalBackwardOsServices.h │ │ │ │ │ │ ├── IxOsalBackwardOssl.h │ │ │ │ │ │ ├── IxOsalBufferMgt.h │ │ │ │ │ │ ├── IxOsalBufferMgtDefault.h │ │ │ │ │ │ ├── IxOsalConfig.h │ │ │ │ │ │ ├── IxOsalEndianess.h │ │ │ │ │ │ ├── IxOsalIoMem.h │ │ │ │ │ │ ├── IxOsalMemAccess.h │ │ │ │ │ │ ├── IxOsalOem.h │ │ │ │ │ │ ├── IxOsalOs.h │ │ │ │ │ │ ├── IxOsalOsAssert.h │ │ │ │ │ │ ├── IxOsalOsBufferMgt.h │ │ │ │ │ │ ├── IxOsalOsIxp400.h │ │ │ │ │ │ ├── IxOsalOsIxp400CustomizedMapping.h │ │ │ │ │ │ ├── IxOsalOsTypes.h │ │ │ │ │ │ ├── IxOsalOsUtilitySymbols.h │ │ │ │ │ │ ├── IxOsalTypes.h │ │ │ │ │ │ ├── IxOsalUtilitySymbols.h │ │ │ │ │ │ ├── IxParityENAcc.h │ │ │ │ │ │ ├── IxPerfProfAcc.h │ │ │ │ │ │ ├── IxQMgr.h │ │ │ │ │ │ ├── IxQMgrAqmIf_p.h │ │ │ │ │ │ ├── IxQMgrDefines_p.h │ │ │ │ │ │ ├── IxQMgrDispatcher_p.h │ │ │ │ │ │ ├── IxQMgrLog_p.h │ │ │ │ │ │ ├── IxQMgrQAccess_p.h │ │ │ │ │ │ ├── IxQMgrQCfg_p.h │ │ │ │ │ │ ├── IxQueueAssignments.h │ │ │ │ │ │ ├── IxSspAcc.h │ │ │ │ │ │ ├── IxTimeSyncAcc.h │ │ │ │ │ │ ├── IxTimerCtrl.h │ │ │ │ │ │ ├── IxTypes.h │ │ │ │ │ │ ├── IxUART.h │ │ │ │ │ │ ├── IxVersionId.h │ │ │ │ │ │ ├── ix_error.h │ │ │ │ │ │ ├── ix_macros.h │ │ │ │ │ │ ├── ix_os_type.h │ │ │ │ │ │ ├── ix_ossl.h │ │ │ │ │ │ ├── ix_symbols.h │ │ │ │ │ │ ├── ix_types.h │ │ │ │ │ │ ├── npe.h │ │ │ │ │ │ └── os_datatypes.h │ │ │ │ │ ├── miiphy.c │ │ │ │ │ └── npe.c │ │ │ │ ├── start.S │ │ │ │ ├── timer.c │ │ │ │ └── u-boot.lds │ │ │ ├── lh7a40x │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ └── timer.c │ │ │ ├── pxa │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpuinfo.c │ │ │ │ ├── pxa2xx.c │ │ │ │ ├── pxafb.c │ │ │ │ ├── start.S │ │ │ │ ├── timer.c │ │ │ │ └── usb.c │ │ │ ├── s3c44b0 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── start.S │ │ │ │ └── timer.c │ │ │ ├── sa1100 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── start.S │ │ │ │ └── timer.c │ │ │ └── u-boot.lds │ │ ├── dts │ │ │ ├── skeleton.dtsi │ │ │ └── tegra20.dtsi │ │ ├── include │ │ │ └── asm │ │ │ │ ├── arch │ │ │ │ ├── arch-a320 │ │ │ │ └── a320.h │ │ │ │ ├── arch-am33xx │ │ │ │ ├── clock.h │ │ │ │ ├── clocks_am33xx.h │ │ │ │ ├── common_def.h │ │ │ │ ├── cpu.h │ │ │ │ ├── ddr_defs.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── omap.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-arm720t │ │ │ │ ├── hardware.h │ │ │ │ ├── netarm_dma_module.h │ │ │ │ ├── netarm_eni_module.h │ │ │ │ ├── netarm_eth_module.h │ │ │ │ ├── netarm_gen_module.h │ │ │ │ ├── netarm_mem_module.h │ │ │ │ ├── netarm_registers.h │ │ │ │ └── netarm_ser_module.h │ │ │ │ ├── arch-armada100 │ │ │ │ ├── armada100.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mfp.h │ │ │ │ ├── spi.h │ │ │ │ └── utmi-armada100.h │ │ │ │ ├── arch-armv7 │ │ │ │ ├── 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 │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ └── hardware.h │ │ │ │ ├── arch-davinci │ │ │ │ ├── aintc_defs.h │ │ │ │ ├── da850_lowlevel.h │ │ │ │ ├── da8xx-fb.h │ │ │ │ ├── davinci_misc.h │ │ │ │ ├── ddr2_defs.h │ │ │ │ ├── dm365_lowlevel.h │ │ │ │ ├── emac_defs.h │ │ │ │ ├── emif_defs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c_defs.h │ │ │ │ ├── nand_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 │ │ │ │ ├── clk.h │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dmc.h │ │ │ │ ├── dsim.h │ │ │ │ ├── ehci.h │ │ │ │ ├── fb.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mipi_dsim.h │ │ │ │ ├── mmc.h │ │ │ │ ├── periph.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── power.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sromc.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── system.h │ │ │ │ ├── tzpc.h │ │ │ │ ├── uart.h │ │ │ │ ├── watchdog.h │ │ │ │ └── xhci-exynos.h │ │ │ │ ├── arch-imx │ │ │ │ └── imx-regs.h │ │ │ │ ├── arch-ipq40xx │ │ │ │ ├── ess │ │ │ │ │ └── ipq40xx_edma.h │ │ │ │ ├── iomap.h │ │ │ │ ├── scm.h │ │ │ │ ├── smem.h │ │ │ │ └── timer.h │ │ │ │ ├── arch-ipq806x │ │ │ │ ├── clock.h │ │ │ │ ├── iomap.h │ │ │ │ ├── nss │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── ipq_mdio.h │ │ │ │ │ ├── msm_ipq806x_gmac.h │ │ │ │ │ └── nss_reg.h │ │ │ │ ├── scm.h │ │ │ │ ├── smem.h │ │ │ │ └── timer.h │ │ │ │ ├── arch-ixp │ │ │ │ ├── ixp425.h │ │ │ │ └── ixp425pci.h │ │ │ │ ├── arch-kirkwood │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── kirkwood.h │ │ │ │ ├── kw88f6192.h │ │ │ │ ├── kw88f6281.h │ │ │ │ ├── mpp.h │ │ │ │ └── spi.h │ │ │ │ ├── arch-ks8695 │ │ │ │ └── platform.h │ │ │ │ ├── arch-lpc2292 │ │ │ │ ├── hardware.h │ │ │ │ ├── lpc2292_registers.h │ │ │ │ └── spi.h │ │ │ │ ├── arch-lpc32xx │ │ │ │ ├── clk.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.h │ │ │ │ ├── emc.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart.h │ │ │ │ └── wdt.h │ │ │ │ ├── arch-mb86r0x │ │ │ │ ├── hardware.h │ │ │ │ └── mb86r0x.h │ │ │ │ ├── arch-mx25 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── imx25-pinmux.h │ │ │ │ ├── macro.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-mx27 │ │ │ │ ├── clock.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── mxcmmc.h │ │ │ │ ├── arch-mx28 │ │ │ │ ├── clock.h │ │ │ │ ├── dma.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-mx28.h │ │ │ │ ├── iomux.h │ │ │ │ ├── regs-apbh.h │ │ │ │ ├── regs-base.h │ │ │ │ ├── regs-bch.h │ │ │ │ ├── regs-clkctrl.h │ │ │ │ ├── regs-common.h │ │ │ │ ├── regs-digctl.h │ │ │ │ ├── regs-gpmi.h │ │ │ │ ├── regs-i2c.h │ │ │ │ ├── regs-lcdif.h │ │ │ │ ├── regs-lradc.h │ │ │ │ ├── regs-ocotp.h │ │ │ │ ├── regs-pinctrl.h │ │ │ │ ├── regs-power.h │ │ │ │ ├── regs-rtc.h │ │ │ │ ├── regs-ssp.h │ │ │ │ ├── regs-timrot.h │ │ │ │ ├── regs-usb.h │ │ │ │ ├── regs-usbphy.h │ │ │ │ └── sys_proto.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.h │ │ │ │ ├── lowlevel_macro.S │ │ │ │ ├── mx35_pins.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-mx5 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux.h │ │ │ │ ├── mx5x_pins.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-mx6 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-v3.h │ │ │ │ ├── mx6x_pins.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-nomadik │ │ │ │ ├── gpio.h │ │ │ │ └── mtu.h │ │ │ │ ├── arch-omap24xx │ │ │ │ ├── bits.h │ │ │ │ ├── clocks.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mem.h │ │ │ │ ├── mux.h │ │ │ │ ├── omap2420.h │ │ │ │ ├── sys_info.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-omap3 │ │ │ │ ├── am35x_def.h │ │ │ │ ├── clocks.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 │ │ │ │ ├── mux.h │ │ │ │ ├── omap3-regs.h │ │ │ │ ├── omap3.h │ │ │ │ ├── omap_gpmc.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-omap4 │ │ │ │ ├── clocks.h │ │ │ │ ├── cpu.h │ │ │ │ ├── ehci.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mux_omap4.h │ │ │ │ ├── omap.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-omap5 │ │ │ │ ├── clocks.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── mmc_host_def.h │ │ │ │ ├── mux_omap5.h │ │ │ │ ├── omap.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 │ │ │ │ ├── arch-qcom-common │ │ │ │ ├── bam.h │ │ │ │ ├── clk.h │ │ │ │ ├── ebi2.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gsbi.h │ │ │ │ ├── nand.h │ │ │ │ ├── qpic_nand.h │ │ │ │ └── uart.h │ │ │ │ ├── arch-s3c24x0 │ │ │ │ ├── memory.h │ │ │ │ ├── s3c2400.h │ │ │ │ ├── s3c2410.h │ │ │ │ ├── s3c2440.h │ │ │ │ ├── s3c24x0.h │ │ │ │ └── s3c24x0_cpu.h │ │ │ │ ├── arch-s3c44b0 │ │ │ │ └── hardware.h │ │ │ │ ├── arch-s3c4510b │ │ │ │ └── hardware.h │ │ │ │ ├── arch-s3c64xx │ │ │ │ ├── hardware.h │ │ │ │ ├── s3c6400.h │ │ │ │ └── s3c64x0.h │ │ │ │ ├── arch-s5pc1xx │ │ │ │ ├── clk.h │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mmc.h │ │ │ │ ├── power.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sromc.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── uart.h │ │ │ │ └── watchdog.h │ │ │ │ ├── arch-sa1100 │ │ │ │ └── bitfield.h │ │ │ │ ├── arch-spear │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── spr_defs.h │ │ │ │ ├── spr_emi.h │ │ │ │ ├── spr_gpt.h │ │ │ │ ├── spr_misc.h │ │ │ │ ├── spr_ssp.h │ │ │ │ └── spr_syscntl.h │ │ │ │ ├── arch-tegra2 │ │ │ │ ├── ap20.h │ │ │ │ ├── apb_misc.h │ │ │ │ ├── board.h │ │ │ │ ├── clk_rst.h │ │ │ │ ├── clock.h │ │ │ │ ├── emc.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── fuse.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mmc.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmc.h │ │ │ │ ├── pmu.h │ │ │ │ ├── scu.h │ │ │ │ ├── sdram_param.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── tegra2.h │ │ │ │ ├── tegra_i2c.h │ │ │ │ ├── tegra_spi.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart-spi-switch.h │ │ │ │ ├── uart.h │ │ │ │ ├── usb.h │ │ │ │ └── warmboot.h │ │ │ │ ├── arch-tnetv107x │ │ │ │ ├── clock.h │ │ │ │ ├── emif_defs.h │ │ │ │ ├── hardware.h │ │ │ │ ├── mux.h │ │ │ │ └── nand_defs.h │ │ │ │ ├── arch-u8500 │ │ │ │ ├── clock.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── sys_proto.h │ │ │ │ └── u8500.h │ │ │ │ ├── armv7.h │ │ │ │ ├── assembler.h │ │ │ │ ├── atomic.h │ │ │ │ ├── bitops.h │ │ │ │ ├── bootm.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── config.h │ │ │ │ ├── dma-mapping.h │ │ │ │ ├── ehci-omap.h │ │ │ │ ├── emif.h │ │ │ │ ├── errno.h │ │ │ │ ├── global_data.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── io.h │ │ │ │ ├── linkage.h │ │ │ │ ├── mach-types.h │ │ │ │ ├── macro.h │ │ │ │ ├── memory.h │ │ │ │ ├── omap_common.h │ │ │ │ ├── omap_gpio.h │ │ │ │ ├── pl310.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── proc-armv │ │ │ │ ├── domain.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ └── system.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── setup.h │ │ │ │ ├── sizes.h │ │ │ │ ├── string.h │ │ │ │ ├── system.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 │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ ├── cache-cp15.c │ │ │ ├── cache-pl310.c │ │ │ ├── cache.c │ │ │ ├── div0.c │ │ │ ├── eabi_compat.c │ │ │ ├── interrupts.c │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ └── reset.c │ ├── avr32 │ │ ├── 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 │ │ │ ├── pio2.h │ │ │ ├── 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-impl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hmatrix.h │ │ │ │ ├── mmu.h │ │ │ │ └── portmux.h │ │ │ │ ├── arch-common │ │ │ │ ├── portmux-gpio.h │ │ │ │ └── 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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── bootcount.c │ │ │ ├── bootrom-asm-offsets.awk │ │ │ ├── bootrom-asm-offsets.c.in │ │ │ ├── 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 │ │ │ ├── serial.c │ │ │ ├── serial.h │ │ │ ├── start.S │ │ │ ├── traps.c │ │ │ ├── u-boot.lds │ │ │ └── watchdog.c │ │ ├── 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 │ │ │ │ ├── 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-common │ │ │ │ ├── ADSP-EDN-core_cdef.h │ │ │ │ ├── ADSP-EDN-core_def.h │ │ │ │ └── bits │ │ │ │ │ ├── bootrom.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── dma.h │ │ │ │ │ ├── ebiu.h │ │ │ │ │ ├── emac.h │ │ │ │ │ ├── eppi.h │ │ │ │ │ ├── lockbox.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 │ │ │ │ │ ├── sport.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── twi.h │ │ │ │ │ ├── uart.h │ │ │ │ │ ├── usb.h │ │ │ │ │ └── watchdog.h │ │ │ │ ├── mem_map.h │ │ │ │ ├── net.h │ │ │ │ ├── portmux.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── sdh.h │ │ │ │ ├── shared_resources.h │ │ │ │ ├── signal.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── traps.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── __kgdb.S │ │ │ ├── board.c │ │ │ ├── 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 │ │ │ └── string.c │ ├── m68k │ │ ├── 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_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 │ │ │ │ ├── m5445x.h │ │ │ │ ├── m547x_8x.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── rtc.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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ ├── exception.c │ │ │ ├── interrupts.c │ │ │ ├── irq.S │ │ │ ├── start.S │ │ │ └── timer.c │ │ ├── include │ │ │ └── asm │ │ │ │ ├── asm.h │ │ │ │ ├── bitops.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── config.h │ │ │ │ ├── errno.h │ │ │ │ ├── global_data.h │ │ │ │ ├── io.h │ │ │ │ ├── microblaze_intc.h │ │ │ │ ├── microblaze_timer.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ └── time.c │ ├── mips │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── mips32 │ │ │ │ ├── Makefile │ │ │ │ ├── au1x00 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── au1x00_eth.c │ │ │ │ │ ├── au1x00_serial.c │ │ │ │ │ ├── au1x00_usb_ohci.c │ │ │ │ │ ├── au1x00_usb_ohci.h │ │ │ │ │ └── config.mk │ │ │ │ ├── cache.S │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── incaip │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asc_serial.c │ │ │ │ │ ├── asc_serial.h │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── incaip_clock.c │ │ │ │ │ └── incaip_wdt.S │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ └── time.c │ │ │ └── xburst │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── jz4740.c │ │ │ │ ├── jz_serial.c │ │ │ │ ├── start.S │ │ │ │ └── timer.c │ │ ├── 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 │ │ │ │ ├── inca-ip.h │ │ │ │ ├── io.h │ │ │ │ ├── isadep.h │ │ │ │ ├── jz4740.h │ │ │ │ ├── mipsregs.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reboot.h │ │ │ │ ├── reg.h │ │ │ │ ├── regdef.h │ │ │ │ ├── sgidefs.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot-mips.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ └── bootm_qemu_mips.c │ ├── nds32 │ │ ├── config.mk │ │ ├── cpu │ │ │ └── n1213 │ │ │ │ ├── Makefile │ │ │ │ ├── ag101 │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── cpu.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── timer.c │ │ │ │ └── watchdog.S │ │ │ │ ├── ag102 │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── 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 │ │ │ │ ├── global_data.h │ │ │ │ ├── io.h │ │ │ │ ├── linkage.h │ │ │ │ ├── mach-types.h │ │ │ │ ├── macro.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot-nds32.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ ├── cache.c │ │ │ └── interrupts.c │ ├── nios2 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── epcs.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 │ │ │ │ ├── opcodes.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── psr.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── status_led.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ ├── cache.S │ │ │ ├── libgcc.c │ │ │ ├── longlong.h │ │ │ └── time.c │ ├── openrisc │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ ├── cpu.c │ │ │ ├── exceptions.c │ │ │ ├── interrupts.c │ │ │ └── start.S │ │ ├── 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 │ │ │ │ ├── spr-defs.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ └── timer.c │ ├── powerpc │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── 74xx_7xx │ │ │ │ ├── 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 │ │ │ ├── mpc512x │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.h │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── diu.c │ │ │ │ ├── fixed_sdram.c │ │ │ │ ├── i2c.c │ │ │ │ ├── ide.c │ │ │ │ ├── iim.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── iopin.c │ │ │ │ ├── pci.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── mpc5xx │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── spi.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── mpc5xxx │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ │ │ ├── i2c.c │ │ │ │ ├── ide.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── io.S │ │ │ │ ├── loadtask.c │ │ │ │ ├── pci_mpc5200.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ ├── u-boot-customlayout.lds │ │ │ │ ├── u-boot.lds │ │ │ │ ├── usb.c │ │ │ │ ├── usb_ohci.c │ │ │ │ └── usb_ohci.h │ │ │ ├── mpc8220 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── dma.h │ │ │ │ ├── dramSetup.c │ │ │ │ ├── dramSetup.h │ │ │ │ ├── fec.c │ │ │ │ ├── fec.h │ │ │ │ ├── fec_dma_tasks.S │ │ │ │ ├── i2c.c │ │ │ │ ├── i2cCore.c │ │ │ │ ├── i2cCore.h │ │ │ │ ├── interrupts.c │ │ │ │ ├── io.S │ │ │ │ ├── loadtask.c │ │ │ │ ├── pci.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── uart.c │ │ │ ├── mpc824x │ │ │ │ ├── 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 │ │ │ │ │ └── i2c_export.h │ │ │ │ ├── interrupts.c │ │ │ │ ├── pci.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── mpc8260 │ │ │ │ ├── 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 │ │ │ │ ├── speed.h │ │ │ │ ├── spi.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── mpc83xx │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── ecc.c │ │ │ │ ├── fdt.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── law.c │ │ │ │ ├── nand_init.c │ │ │ │ ├── pci.c │ │ │ │ ├── pcie.c │ │ │ │ ├── qe_io.c │ │ │ │ ├── serdes.c │ │ │ │ ├── spd_sdram.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── mpc85xx │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── cmd_errata.c │ │ │ │ ├── commproc.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── cpu_init_early.c │ │ │ │ ├── cpu_init_nand.c │ │ │ │ ├── ddr-gen1.c │ │ │ │ ├── ddr-gen2.c │ │ │ │ ├── ddr-gen3.c │ │ │ │ ├── ether_fcc.c │ │ │ │ ├── fdt.c │ │ │ │ ├── fixed_ivor.S │ │ │ │ ├── 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 │ │ │ │ ├── p3060_ids.c │ │ │ │ ├── p3060_serdes.c │ │ │ │ ├── p4080_ids.c │ │ │ │ ├── p4080_serdes.c │ │ │ │ ├── p5020_ids.c │ │ │ │ ├── p5020_serdes.c │ │ │ │ ├── pci.c │ │ │ │ ├── portals.c │ │ │ │ ├── qe_io.c │ │ │ │ ├── release.S │ │ │ │ ├── resetvec.S │ │ │ │ ├── serial_scc.c │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── tlb.c │ │ │ │ ├── traps.c │ │ │ │ ├── u-boot-nand.lds │ │ │ │ ├── u-boot-nand_spl.lds │ │ │ │ └── u-boot.lds │ │ │ ├── mpc86xx │ │ │ │ ├── Makefile │ │ │ │ ├── cache.S │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── ddr-8641.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 │ │ │ │ ├── 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 │ │ │ │ ├── lcd.c │ │ │ │ ├── plprcr_write.S │ │ │ │ ├── scc.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── spi.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ ├── upatch.c │ │ │ │ ├── video.c │ │ │ │ └── wlkbd.c │ │ │ ├── mpc8xxx │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── ddr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── common_timing_params.h │ │ │ │ │ ├── ctrl_regs.c │ │ │ │ │ ├── ddr.h │ │ │ │ │ ├── ddr1_dimm_params.c │ │ │ │ │ ├── ddr2_dimm_params.c │ │ │ │ │ ├── ddr3_dimm_params.c │ │ │ │ │ ├── interactive.c │ │ │ │ │ ├── lc_common_dimm_params.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── options.c │ │ │ │ │ └── util.c │ │ │ │ ├── fdt.c │ │ │ │ ├── fsl_ifc.c │ │ │ │ ├── fsl_lbc.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 │ │ │ │ ├── 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 │ │ │ │ ├── iop480_uart.c │ │ │ │ ├── kgdb.S │ │ │ │ ├── miiphy.c │ │ │ │ ├── reginfo.c │ │ │ │ ├── resetvec.S │ │ │ │ ├── sdram.c │ │ │ │ ├── sdram.h │ │ │ │ ├── speed.c │ │ │ │ ├── start.S │ │ │ │ ├── tlb.c │ │ │ │ ├── traps.c │ │ │ │ ├── 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 │ │ │ │ ├── apm821xx.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_ddr_dimm_params.h │ │ │ │ ├── fsl_ddr_sdram.h │ │ │ │ ├── fsl_dma.h │ │ │ │ ├── fsl_dtsec.h │ │ │ │ ├── fsl_enet.h │ │ │ │ ├── fsl_fman.h │ │ │ │ ├── fsl_i2c.h │ │ │ │ ├── fsl_ifc.h │ │ │ │ ├── fsl_law.h │ │ │ │ ├── fsl_lbc.h │ │ │ │ ├── fsl_liodn.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_8220.h │ │ │ │ ├── immap_8260.h │ │ │ │ ├── immap_83xx.h │ │ │ │ ├── immap_85xx.h │ │ │ │ ├── immap_86xx.h │ │ │ │ ├── immap_qe.h │ │ │ │ ├── interrupt.h │ │ │ │ ├── io.h │ │ │ │ ├── iopin_8260.h │ │ │ │ ├── iopin_85xx.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 │ │ │ │ ├── pnp.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── ppc405.h │ │ │ │ ├── ppc405cr.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 │ │ │ │ ├── residual.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── signal.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 │ │ │ ├── bootcount.c │ │ │ ├── bootm.c │ │ │ ├── cache.c │ │ │ ├── extable.c │ │ │ ├── interrupts.c │ │ │ ├── kgdb.c │ │ │ ├── memcpy_mpc5200.c │ │ │ ├── ppccache.S │ │ │ ├── ppcstring.S │ │ │ ├── reloc.S │ │ │ ├── ticks.S │ │ │ └── time.c │ ├── sandbox │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── os.c │ │ │ ├── start.c │ │ │ ├── state.c │ │ │ └── u-boot.lds │ │ ├── include │ │ │ └── asm │ │ │ │ ├── bitops.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── config.h │ │ │ │ ├── getopt.h │ │ │ │ ├── global_data.h │ │ │ │ ├── gpio.h │ │ │ │ ├── io.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── sections.h │ │ │ │ ├── state.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot-sandbox.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── interrupts.c │ ├── sh │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── sh2 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── u-boot.lds │ │ │ │ └── watchdog.c │ │ │ ├── sh3 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── u-boot.lds │ │ │ │ └── watchdog.c │ │ │ └── sh4 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── u-boot.lds │ │ │ │ └── watchdog.c │ │ ├── include │ │ │ └── asm │ │ │ │ ├── bitops.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── clk.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_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 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── config.mk │ │ ├── cpu │ │ ├── Makefile │ │ ├── config.mk │ │ ├── coreboot │ │ │ ├── Makefile │ │ │ ├── asm-offsets.c │ │ │ ├── coreboot_car.S │ │ │ ├── ipchecksum.c │ │ │ ├── sdram.c │ │ │ ├── sysinfo.c │ │ │ └── tables.c │ │ ├── cpu.c │ │ ├── interrupts.c │ │ ├── resetvec.S │ │ ├── sc520 │ │ │ ├── Makefile │ │ │ ├── asm-offsets.c │ │ │ ├── sc520.c │ │ │ ├── sc520_car.S │ │ │ ├── sc520_pci.c │ │ │ ├── sc520_reset.c │ │ │ ├── sc520_sdram.c │ │ │ ├── sc520_ssi.c │ │ │ └── sc520_timer.c │ │ ├── start.S │ │ ├── start16.S │ │ └── u-boot.lds │ │ ├── include │ │ └── asm │ │ │ ├── arch-coreboot │ │ │ ├── ipchecksum.h │ │ │ ├── sysinfo.h │ │ │ └── tables.h │ │ │ ├── arch-sc520 │ │ │ ├── pci.h │ │ │ ├── sc520.h │ │ │ └── ssi.h │ │ │ ├── bitops.h │ │ │ ├── bootparam.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── e820.h │ │ │ ├── errno.h │ │ │ ├── global_data.h │ │ │ ├── i8254.h │ │ │ ├── i8259.h │ │ │ ├── ibmpc.h │ │ │ ├── init_helpers.h │ │ │ ├── init_wrappers.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ist.h │ │ │ ├── pci.h │ │ │ ├── posix_types.h │ │ │ ├── processor-flags.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── realmode.h │ │ │ ├── relocate.h │ │ │ ├── string.h │ │ │ ├── types.h │ │ │ ├── u-boot-x86.h │ │ │ ├── u-boot.h │ │ │ ├── unaligned.h │ │ │ ├── video │ │ │ └── edid.h │ │ │ └── zimage.h │ │ └── lib │ │ ├── Makefile │ │ ├── bios.S │ │ ├── bios.h │ │ ├── bios_pci.S │ │ ├── bios_setup.c │ │ ├── board.c │ │ ├── bootm.c │ │ ├── cmd_boot.c │ │ ├── gcc.c │ │ ├── init_helpers.c │ │ ├── init_wrappers.c │ │ ├── interrupts.c │ │ ├── pcat_interrupts.c │ │ ├── pcat_timer.c │ │ ├── pci.c │ │ ├── pci_type1.c │ │ ├── realmode.c │ │ ├── realmode_switch.S │ │ ├── relocate.c │ │ ├── string.c │ │ ├── timer.c │ │ ├── video.c │ │ ├── video_bios.c │ │ └── zimage.c ├── board │ ├── AndesTech │ │ ├── adp-ag101 │ │ │ ├── Makefile │ │ │ └── adp-ag101.c │ │ ├── adp-ag101p │ │ │ ├── Makefile │ │ │ └── adp-ag101p.c │ │ └── adp-ag102 │ │ │ ├── Makefile │ │ │ └── adp-ag102.c │ ├── BuS │ │ ├── EB+MCF-EV123 │ │ │ ├── EB+MCF-EV123.c │ │ │ ├── Makefile │ │ │ ├── cfm_flash.c │ │ │ ├── cfm_flash.h │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ └── u-boot.lds │ │ ├── eb_cpux9k2 │ │ │ ├── Makefile │ │ │ └── cpux9k2.c │ │ └── vl_ma2sc │ │ │ ├── Makefile │ │ │ └── vl_ma2sc.c │ ├── CarMediaLab │ │ └── flea3 │ │ │ ├── Makefile │ │ │ ├── flea3.c │ │ │ └── lowlevel_init.S │ ├── LEOX │ │ └── elpt860 │ │ │ ├── Makefile │ │ │ ├── README.LEOX │ │ │ ├── elpt860.c │ │ │ ├── flash.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── LaCie │ │ ├── common │ │ │ ├── common.c │ │ │ └── common.h │ │ ├── edminiv2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── edminiv2.c │ │ ├── net2big_v2 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── net2big_v2.c │ │ │ └── net2big_v2.h │ │ └── netspace_v2 │ │ │ ├── Makefile │ │ │ ├── kwbimage-is2.cfg │ │ │ ├── kwbimage.cfg │ │ │ ├── netspace_v2.c │ │ │ └── netspace_v2.h │ ├── Marvell │ │ ├── aspenite │ │ │ ├── Makefile │ │ │ └── aspenite.c │ │ ├── common │ │ │ ├── bootseq.txt │ │ │ ├── ecctest.c │ │ │ ├── flash.c │ │ │ ├── i2c.c │ │ │ ├── i2c.h │ │ │ ├── intel_flash.c │ │ │ ├── intel_flash.h │ │ │ ├── memory.c │ │ │ ├── misc.S │ │ │ ├── ns16550.c │ │ │ ├── ns16550.h │ │ │ ├── serial.c │ │ │ └── serial.h │ │ ├── db64360 │ │ │ ├── 64360.h │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── db64460.c │ │ │ ├── eth.h │ │ │ ├── mpsc.c │ │ │ ├── mpsc.h │ │ │ ├── mv_eth.c │ │ │ ├── mv_eth.h │ │ │ ├── mv_regs.h │ │ │ ├── pci.c │ │ │ └── sdram_init.c │ │ ├── dkb │ │ │ ├── Makefile │ │ │ └── dkb.c │ │ ├── dreamplug │ │ │ ├── Makefile │ │ │ ├── dreamplug.c │ │ │ ├── dreamplug.h │ │ │ └── kwbimage.cfg │ │ ├── gplugd │ │ │ ├── Makefile │ │ │ └── gplugd.c │ │ ├── guruplug │ │ │ ├── Makefile │ │ │ ├── guruplug.c │ │ │ ├── guruplug.h │ │ │ └── kwbimage.cfg │ │ ├── include │ │ │ ├── core.h │ │ │ ├── memory.h │ │ │ ├── mv_gen_reg.h │ │ │ └── pci.h │ │ ├── mv88f6281gtw_ge │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── mv88f6281gtw_ge.c │ │ │ └── mv88f6281gtw_ge.h │ │ ├── openrd │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── openrd.c │ │ │ └── openrd.h │ │ ├── rd6281a │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── rd6281a.c │ │ │ └── rd6281a.h │ │ └── sheevaplug │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── sheevaplug.c │ │ │ └── sheevaplug.h │ ├── RPXClassic │ │ ├── Makefile │ │ ├── RPXClassic.c │ │ ├── eccx.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── RPXlite │ │ ├── Makefile │ │ ├── RPXlite.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── RPXlite_dw │ │ ├── Makefile │ │ ├── README │ │ ├── RPXlite_dw.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── RRvision │ │ ├── Makefile │ │ ├── RRvision.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── video_ad7179.h │ ├── Seagate │ │ └── dockstar │ │ │ ├── Makefile │ │ │ ├── dockstar.c │ │ │ ├── dockstar.h │ │ │ └── kwbimage.cfg │ ├── a3000 │ │ ├── Makefile │ │ ├── README │ │ ├── a3000.c │ │ └── flash.c │ ├── a4m072 │ │ ├── Makefile │ │ ├── a4m072.c │ │ └── mt46v32m16.h │ ├── actux1 │ │ ├── Makefile │ │ ├── actux1.c │ │ ├── actux1_hw.h │ │ └── u-boot.lds │ ├── actux2 │ │ ├── Makefile │ │ ├── actux2.c │ │ ├── actux2_hw.h │ │ └── u-boot.lds │ ├── actux3 │ │ ├── Makefile │ │ ├── actux3.c │ │ ├── actux3_hw.h │ │ └── u-boot.lds │ ├── actux4 │ │ ├── Makefile │ │ ├── actux4.c │ │ └── actux4_hw.h │ ├── adder │ │ ├── Makefile │ │ ├── adder.c │ │ └── u-boot.lds │ ├── afeb9260 │ │ ├── Makefile │ │ ├── afeb9260.c │ │ ├── config.mk │ │ └── partition.c │ ├── ait │ │ └── cam_enc_4xx │ │ │ ├── Makefile │ │ │ ├── cam_enc_4xx.c │ │ │ ├── config.mk │ │ │ ├── u-boot-spl.lds │ │ │ └── ublimage.cfg │ ├── alaska │ │ ├── Makefile │ │ ├── alaska.c │ │ └── flash.c │ ├── alphaproject │ │ └── ap_sh4a_4a │ │ │ ├── Makefile │ │ │ ├── ap_sh4a_4a.c │ │ │ └── lowlevel_init.S │ ├── altera │ │ ├── common │ │ │ ├── AMDLV065D.c │ │ │ ├── cfide.c │ │ │ ├── epled.c │ │ │ ├── flash.c │ │ │ ├── sevenseg.c │ │ │ └── sevenseg.h │ │ └── nios2-generic │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── custom_fpga.h │ │ │ ├── nios2-generic.c │ │ │ ├── text_base.S │ │ │ └── u-boot.lds │ ├── amcc │ │ ├── acadia │ │ │ ├── Makefile │ │ │ ├── acadia.c │ │ │ ├── cmd_acadia.c │ │ │ ├── config.mk │ │ │ ├── memory.c │ │ │ ├── pll.c │ │ │ └── u-boot-nand.lds │ │ ├── bamboo │ │ │ ├── Makefile │ │ │ ├── bamboo.c │ │ │ ├── bamboo.h │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ └── u-boot-nand.lds │ │ ├── bluestone │ │ │ ├── Makefile │ │ │ ├── bluestone.c │ │ │ ├── config.mk │ │ │ └── init.S │ │ ├── bubinga │ │ │ ├── Makefile │ │ │ ├── bubinga.c │ │ │ └── flash.c │ │ ├── canyonlands │ │ │ ├── Makefile │ │ │ ├── canyonlands.c │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── u-boot-nand.lds │ │ ├── common │ │ │ └── flash.c │ │ ├── ebony │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── ebony.c │ │ │ ├── flash.c │ │ │ └── init.S │ │ ├── katmai │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── katmai.c │ │ ├── kilauea │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── kilauea.c │ │ │ └── u-boot-nand.lds │ │ ├── luan │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── epld.h │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ └── luan.c │ │ ├── makalu │ │ │ ├── Makefile │ │ │ ├── cmd_pll.c │ │ │ ├── init.S │ │ │ └── makalu.c │ │ ├── ocotea │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── ocotea.c │ │ │ └── ocotea.h │ │ ├── redwood │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── redwood.c │ │ │ └── redwood.h │ │ ├── sequoia │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── sdram.c │ │ │ ├── sequoia.c │ │ │ ├── u-boot-nand.lds │ │ │ └── u-boot-ram.lds │ │ ├── taihu │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── lcd.c │ │ │ ├── taihu.c │ │ │ └── update.c │ │ ├── taishan │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── lcd.c │ │ │ ├── showinfo.c │ │ │ ├── taishan.c │ │ │ └── update.c │ │ ├── walnut │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── walnut.c │ │ ├── yosemite │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── yosemite.c │ │ └── yucca │ │ │ ├── Makefile │ │ │ ├── cmd_yucca.c │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── yucca.c │ │ │ └── yucca.h │ ├── amirix │ │ └── ap1000 │ │ │ ├── Makefile │ │ │ ├── ap1000.c │ │ │ ├── ap1000.h │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── pci.c │ │ │ ├── powerspan.c │ │ │ ├── powerspan.h │ │ │ ├── serial.c │ │ │ └── u-boot.lds │ ├── apollon │ │ ├── Makefile │ │ ├── apollon.c │ │ ├── config.mk │ │ ├── lowlevel_init.S │ │ ├── mem.c │ │ ├── mem.h │ │ └── sys_info.c │ ├── armltd │ │ ├── integrator │ │ │ ├── Makefile │ │ │ ├── arm-ebi.h │ │ │ ├── integrator-sc.h │ │ │ ├── integrator.c │ │ │ ├── lowlevel_init.S │ │ │ ├── pci.c │ │ │ ├── pci_v3.h │ │ │ └── timer.c │ │ ├── versatile │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── versatile.c │ │ └── vexpress │ │ │ ├── Makefile │ │ │ └── ca9x4_ct_vxp.c │ ├── astro │ │ └── mcf5373l │ │ │ ├── Makefile │ │ │ ├── astro.h │ │ │ ├── fpga.c │ │ │ ├── mcf5373l.c │ │ │ └── u-boot.lds │ ├── atc │ │ ├── Makefile │ │ ├── atc.c │ │ ├── flash.c │ │ └── ti113x.c │ ├── atmel │ │ ├── at91rm9200ek │ │ │ ├── Makefile │ │ │ ├── at91rm9200ek.c │ │ │ └── led.c │ │ ├── at91sam9260ek │ │ │ ├── Makefile │ │ │ ├── at91sam9260ek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9261ek │ │ │ ├── Makefile │ │ │ ├── at91sam9261ek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9263ek │ │ │ ├── Makefile │ │ │ ├── at91sam9263ek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9m10g45ek │ │ │ ├── Makefile │ │ │ ├── at91sam9m10g45ek.c │ │ │ ├── config.mk │ │ │ └── led.c │ │ ├── at91sam9rlek │ │ │ ├── Makefile │ │ │ ├── at91sam9rlek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── atngw100 │ │ │ ├── Makefile │ │ │ └── atngw100.c │ │ └── atstk1000 │ │ │ ├── Makefile │ │ │ └── atstk1000.c │ ├── avionic-design │ │ ├── common │ │ │ └── tamonten.c │ │ ├── dts │ │ │ ├── tegra2-medcom.dts │ │ │ ├── tegra2-plutux.dts │ │ │ └── tegra2-tec.dts │ │ ├── medcom │ │ │ └── Makefile │ │ ├── plutux │ │ │ └── Makefile │ │ └── tec │ │ │ └── Makefile │ ├── avnet │ │ ├── fx12mm │ │ │ ├── Makefile │ │ │ ├── fx12mm.c │ │ │ └── xparameters.h │ │ └── v5fx30teval │ │ │ ├── Makefile │ │ │ ├── v5fx30teval.c │ │ │ └── xparameters.h │ ├── balloon3 │ │ ├── Makefile │ │ └── balloon3.c │ ├── bc3450 │ │ ├── Makefile │ │ ├── bc3450.c │ │ ├── cmd_bc3450.c │ │ └── mt48lc16m16a2-75.h │ ├── bct-brettl2 │ │ ├── Makefile │ │ ├── bct-brettl2.c │ │ ├── cled.c │ │ ├── config.mk │ │ ├── gpio_cfi_flash.c │ │ ├── smsc9303.c │ │ └── smsc9303.h │ ├── bf506f-ezkit │ │ ├── Makefile │ │ └── bf506f-ezkit.c │ ├── bf518f-ezbrd │ │ ├── Makefile │ │ ├── bf518f-ezbrd.c │ │ └── config.mk │ ├── bf525-ucr2 │ │ ├── Makefile │ │ └── bf525-ucr2.c │ ├── bf526-ezbrd │ │ ├── Makefile │ │ ├── bf526-ezbrd.c │ │ └── config.mk │ ├── bf527-ad7160-eval │ │ ├── Makefile │ │ ├── bf527-ad7160-eval.c │ │ └── config.mk │ ├── bf527-ezkit │ │ ├── Makefile │ │ ├── bf527-ezkit.c │ │ ├── config.mk │ │ └── video.c │ ├── bf527-sdp │ │ ├── Makefile │ │ ├── bf527-sdp.c │ │ └── config.mk │ ├── bf533-ezkit │ │ ├── Makefile │ │ ├── bf533-ezkit.c │ │ ├── config.mk │ │ ├── flash-defines.h │ │ ├── flash.c │ │ └── psd4256.h │ ├── bf533-stamp │ │ ├── Makefile │ │ ├── bf533-stamp.c │ │ ├── config.mk │ │ ├── ide-cf.c │ │ ├── video.c │ │ └── video.h │ ├── bf537-minotaur │ │ ├── Makefile │ │ ├── bf537-minotaur.c │ │ └── config.mk │ ├── bf537-pnav │ │ ├── Makefile │ │ └── bf537-pnav.c │ ├── bf537-srv1 │ │ ├── Makefile │ │ ├── bf537-srv1.c │ │ └── config.mk │ ├── bf537-stamp │ │ ├── Makefile │ │ ├── bf537-stamp.c │ │ ├── config.mk │ │ ├── ide-cf.c │ │ └── post-memory.c │ ├── bf538f-ezkit │ │ ├── Makefile │ │ ├── bf538f-ezkit.c │ │ └── config.mk │ ├── bf548-ezkit │ │ ├── Makefile │ │ ├── bf548-ezkit.c │ │ ├── config.mk │ │ └── video.c │ ├── bf561-acvilon │ │ ├── Makefile │ │ ├── bf561-acvilon.c │ │ └── config.mk │ ├── bf561-ezkit │ │ ├── Makefile │ │ ├── bf561-ezkit.c │ │ └── config.mk │ ├── blackstamp │ │ ├── Makefile │ │ └── blackstamp.c │ ├── blackvme │ │ ├── Makefile │ │ └── blackvme.c │ ├── bluewater │ │ └── snapper9260 │ │ │ ├── Makefile │ │ │ └── snapper9260.c │ ├── bmw │ │ ├── Makefile │ │ ├── README │ │ ├── bmw.c │ │ ├── bmw.h │ │ ├── config.mk │ │ ├── early_init.S │ │ ├── flash.c │ │ ├── m48t59y.c │ │ ├── m48t59y.h │ │ ├── ns16550.c │ │ ├── ns16550.h │ │ └── serial.c │ ├── br4 │ │ ├── Makefile │ │ ├── br4.c │ │ └── config.mk │ ├── buffalo │ │ └── lsxl │ │ │ ├── Makefile │ │ │ ├── kwbimage-lschl.cfg │ │ │ ├── kwbimage-lsxhl.cfg │ │ │ ├── lsxl.c │ │ │ └── lsxl.h │ ├── c2mon │ │ ├── Makefile │ │ ├── c2mon.c │ │ ├── flash.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── calao │ │ ├── sbc35_a9g20 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── sbc35_a9g20.c │ │ │ └── spi.c │ │ └── tny_a9260 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── spi.c │ │ │ └── tny_a9260.c │ ├── canmb │ │ ├── Makefile │ │ ├── canmb.c │ │ └── mt48lc16m32s2-75.h │ ├── chromebook-x86 │ │ └── coreboot │ │ │ ├── Makefile │ │ │ ├── coreboot.c │ │ │ ├── coreboot_pci.c │ │ │ ├── coreboot_start.S │ │ │ └── coreboot_start16.S │ ├── cloudengines │ │ └── pogo_e02 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── pogo_e02.c │ │ │ └── pogo_e02.h │ ├── cm-bf527 │ │ ├── Makefile │ │ ├── cm-bf527.c │ │ ├── config.mk │ │ └── gpio_cfi_flash.c │ ├── cm-bf533 │ │ ├── Makefile │ │ ├── cm-bf533.c │ │ └── config.mk │ ├── cm-bf537e │ │ ├── Makefile │ │ ├── cm-bf537e.c │ │ ├── config.mk │ │ ├── gpio_cfi_flash.c │ │ └── gpio_cfi_flash.h │ ├── cm-bf537u │ │ ├── Makefile │ │ ├── cm-bf537u.c │ │ ├── config.mk │ │ └── gpio_cfi_flash.c │ ├── cm-bf548 │ │ ├── Makefile │ │ ├── cm-bf548.c │ │ ├── config.mk │ │ └── video.c │ ├── cm-bf561 │ │ ├── Makefile │ │ ├── cm-bf561.c │ │ └── config.mk │ ├── cm4008 │ │ ├── Makefile │ │ ├── cm4008.c │ │ ├── config.mk │ │ └── flash.c │ ├── cm41xx │ │ ├── Makefile │ │ ├── cm41xx.c │ │ ├── config.mk │ │ └── flash.c │ ├── cm5200 │ │ ├── Makefile │ │ ├── cm5200.c │ │ ├── cm5200.h │ │ ├── cmd_cm5200.c │ │ ├── fwupdate.c │ │ └── fwupdate.h │ ├── cm_t35 │ │ ├── Makefile │ │ ├── cm_t35.c │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ └── leds.c │ ├── cmi │ │ ├── Makefile │ │ ├── cmi.c │ │ └── flash.c │ ├── cobra5272 │ │ ├── Makefile │ │ ├── bdm │ │ │ ├── cobra5272_uboot.gdb │ │ │ ├── gdbinit.reset │ │ │ ├── load-cobra_uboot │ │ │ └── reset │ │ ├── cobra5272.c │ │ ├── config.mk │ │ ├── flash.c │ │ └── u-boot.lds │ ├── cogent │ │ ├── Makefile │ │ ├── README │ │ ├── README.cma286 │ │ ├── config.mk │ │ ├── dipsw.c │ │ ├── dipsw.h │ │ ├── flash.c │ │ ├── flash.h │ │ ├── kbm.c │ │ ├── kbm.h │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── dig297.c │ │ │ └── dig297.h │ ├── compal │ │ ├── dts │ │ │ └── tegra2-paz00.dts │ │ └── paz00 │ │ │ ├── Makefile │ │ │ └── paz00.c │ ├── compulab │ │ ├── dts │ │ │ └── tegra2-trimslice.dts │ │ └── trimslice │ │ │ ├── Makefile │ │ │ └── trimslice.c │ ├── corscience │ │ └── tricorder │ │ │ ├── Makefile │ │ │ ├── tricorder.c │ │ │ └── tricorder.h │ ├── cpc45 │ │ ├── Makefile │ │ ├── cpc45.c │ │ ├── flash.c │ │ ├── pd67290.c │ │ └── plx9030.c │ ├── cpu86 │ │ ├── Makefile │ │ ├── cpu86.c │ │ ├── cpu86.h │ │ └── flash.c │ ├── cpu87 │ │ ├── Makefile │ │ ├── cpu87.c │ │ ├── cpu87.h │ │ └── flash.c │ ├── cray │ │ └── L1 │ │ │ ├── L1.c │ │ │ ├── L1.h │ │ │ ├── Makefile │ │ │ ├── bootscript.hush │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── patchme │ │ │ ├── u-boot.lds.debug │ │ │ └── x2c.awk │ ├── csb272 │ │ ├── Makefile │ │ ├── csb272.c │ │ └── init.S │ ├── csb472 │ │ ├── Makefile │ │ ├── csb472.c │ │ └── init.S │ ├── cu824 │ │ ├── Makefile │ │ ├── README │ │ ├── cu824.c │ │ └── flash.c │ ├── d-link │ │ └── dns325 │ │ │ ├── Makefile │ │ │ ├── dns325.c │ │ │ ├── dns325.h │ │ │ └── kwbimage.cfg │ ├── dave │ │ ├── PPChameleonEVB │ │ │ ├── Makefile │ │ │ ├── PPChameleonEVB.c │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── nand.c │ │ │ └── u-boot.lds │ │ └── common │ │ │ ├── flash.c │ │ │ ├── fpga.c │ │ │ └── pci.c │ ├── davedenx │ │ ├── aria │ │ │ ├── Makefile │ │ │ └── aria.c │ │ └── qong │ │ │ ├── Makefile │ │ │ ├── fpga.c │ │ │ ├── lowlevel_init.S │ │ │ ├── qong.c │ │ │ └── qong_fpga.h │ ├── davinci │ │ ├── da8xxevm │ │ │ ├── Makefile │ │ │ ├── da830evm.c │ │ │ ├── da850evm.c │ │ │ ├── hawkboard.c │ │ │ ├── u-boot-spl-da850evm.lds │ │ │ └── u-boot-spl-hawk.lds │ │ ├── dm355evm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm355evm.c │ │ ├── dm355leopard │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm355leopard.c │ │ ├── dm365evm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm365evm.c │ │ ├── dm6467evm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm6467evm.c │ │ ├── dvevm │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── dvevm.c │ │ ├── ea20 │ │ │ ├── Makefile │ │ │ └── ea20.c │ │ ├── schmoogie │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── schmoogie.c │ │ ├── sffsdr │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── sffsdr.c │ │ └── sonata │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── sonata.c │ ├── dbau1x00 │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── dbau1x00.c │ │ ├── lowlevel_init.S │ │ └── u-boot.lds │ ├── denx │ │ └── m28evk │ │ │ ├── Makefile │ │ │ ├── m28evk.c │ │ │ ├── spl_boot.c │ │ │ └── u-boot.bd │ ├── dnp5370 │ │ ├── Makefile │ │ └── dnp5370.c │ ├── dvlhost │ │ ├── Makefile │ │ ├── dvlhost.c │ │ ├── dvlhost_hw.h │ │ ├── u-boot.lds │ │ └── watchdog.c │ ├── eNET │ │ ├── Makefile │ │ ├── eNET.c │ │ ├── eNET_pci.c │ │ ├── eNET_start.S │ │ ├── eNET_start16.S │ │ └── hardware.h │ ├── eXalion │ │ ├── Makefile │ │ ├── eXalion.c │ │ ├── eXalion.h │ │ └── piix_pci.h │ ├── earthlcd │ │ └── favr-32-ezkit │ │ │ ├── Makefile │ │ │ ├── favr-32-ezkit.c │ │ │ └── flash.c │ ├── efikamx │ │ ├── Makefile │ │ ├── efikamx-usb.c │ │ ├── efikamx.c │ │ ├── imximage_mx.cfg │ │ └── imximage_sb.cfg │ ├── egnite │ │ └── ethernut5 │ │ │ ├── Makefile │ │ │ ├── ethernut5.c │ │ │ ├── ethernut5_pwrman.c │ │ │ └── ethernut5_pwrman.h │ ├── eltec │ │ ├── elppc │ │ │ ├── Makefile │ │ │ ├── asm_init.S │ │ │ ├── eepro100_srom.c │ │ │ ├── elppc.c │ │ │ ├── flash.c │ │ │ ├── misc.c │ │ │ ├── mpc107_i2c.c │ │ │ ├── pci.c │ │ │ └── srom.h │ │ └── mhpc │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── mhpc.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── emk │ │ ├── common │ │ │ ├── am79c874.c │ │ │ ├── flash.c │ │ │ └── vpd.c │ │ ├── top5200 │ │ │ ├── Makefile │ │ │ └── top5200.c │ │ ├── top860 │ │ │ ├── Makefile │ │ │ ├── top860.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ │ └── top9000 │ │ │ ├── Makefile │ │ │ ├── spi.c │ │ │ └── top9000.c │ ├── enbw │ │ └── enbw_cmc │ │ │ ├── Makefile │ │ │ └── enbw_cmc.c │ ├── ep8248 │ │ ├── Makefile │ │ └── ep8248.c │ ├── ep8260 │ │ ├── Makefile │ │ ├── ep8260.c │ │ ├── ep8260.h │ │ ├── flash.c │ │ └── mii_phy.c │ ├── ep82xxm │ │ ├── Makefile │ │ └── ep82xxm.c │ ├── ep88x │ │ ├── Makefile │ │ ├── ep88x.c │ │ └── u-boot.lds │ ├── esd │ │ ├── adciop │ │ │ ├── Makefile │ │ │ ├── adciop.c │ │ │ ├── adciop.h │ │ │ └── flash.c │ │ ├── apc405 │ │ │ ├── Makefile │ │ │ ├── apc405.c │ │ │ ├── fpgadata.c │ │ │ └── logo_640_480_24bpp.c │ │ ├── ar405 │ │ │ ├── Makefile │ │ │ ├── ar405.c │ │ │ ├── ar405.h │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── fpgadata_xl30.c │ │ ├── ash405 │ │ │ ├── Makefile │ │ │ ├── ash405.c │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── canbt │ │ │ ├── Makefile │ │ │ ├── canbt.c │ │ │ ├── canbt.h │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── cms700 │ │ │ ├── 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 │ │ │ ├── s1d13806_640_480_8bpp.h │ │ │ └── xilinx_jtag │ │ │ │ ├── lenval.c │ │ │ │ ├── lenval.h │ │ │ │ ├── micro.c │ │ │ │ ├── micro.h │ │ │ │ ├── ports.c │ │ │ │ └── ports.h │ │ ├── cpci2dp │ │ │ ├── Makefile │ │ │ ├── cpci2dp.c │ │ │ └── flash.c │ │ ├── cpci405 │ │ │ ├── Makefile │ │ │ ├── cpci405.c │ │ │ ├── flash.c │ │ │ ├── fpgadata_cpci405.c │ │ │ ├── fpgadata_cpci4052.c │ │ │ └── fpgadata_cpci405ab.c │ │ ├── cpci5200 │ │ │ ├── Makefile │ │ │ ├── cpci5200.c │ │ │ ├── mt46v16m16-75.h │ │ │ └── strataflash.c │ │ ├── cpci750 │ │ │ ├── 64360.h │ │ │ ├── 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 │ │ │ └── serial.h │ │ ├── cpciiser4 │ │ │ ├── Makefile │ │ │ ├── cpciiser4.c │ │ │ ├── cpciiser4.h │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── dasa_sim │ │ │ ├── Makefile │ │ │ ├── cmd_dasa_sim.c │ │ │ ├── dasa_sim.c │ │ │ ├── dasa_sim.h │ │ │ ├── eeprom.c │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── u-boot.lds │ │ ├── dp405 │ │ │ ├── Makefile │ │ │ ├── dp405.c │ │ │ └── flash.c │ │ ├── du405 │ │ │ ├── Makefile │ │ │ ├── du405.c │ │ │ ├── du405.h │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── du440 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── du440.c │ │ │ ├── du440.h │ │ │ └── init.S │ │ ├── hh405 │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── hub405.c │ │ ├── mecp5123 │ │ │ ├── Makefile │ │ │ └── mecp5123.c │ │ ├── mecp5200 │ │ │ ├── Makefile │ │ │ ├── mecp5200.c │ │ │ └── mt46v16m16-75.h │ │ ├── meesc │ │ │ ├── Makefile │ │ │ ├── meesc.c │ │ │ └── partition.c │ │ ├── ocrtc │ │ │ ├── Makefile │ │ │ ├── cmd_ocrtc.c │ │ │ ├── flash.c │ │ │ ├── ocrtc.c │ │ │ └── ocrtc.h │ │ ├── otc570 │ │ │ ├── Makefile │ │ │ ├── otc570.c │ │ │ └── partition.c │ │ ├── pci405 │ │ │ ├── Makefile │ │ │ ├── cmd_pci405.c │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── pci405.c │ │ │ ├── pci405.h │ │ │ └── writeibm.S │ │ ├── pf5200 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── mt46v16m16-75.h │ │ │ └── pf5200.c │ │ ├── plu405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── plu405.c │ │ ├── pmc405 │ │ │ ├── Makefile │ │ │ └── pmc405.c │ │ ├── pmc405de │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ └── pmc405de.c │ │ ├── pmc440 │ │ │ ├── Makefile │ │ │ ├── cmd_pmc440.c │ │ │ ├── config.mk │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── init.S │ │ │ ├── pmc440.c │ │ │ ├── pmc440.h │ │ │ ├── sdram.c │ │ │ └── u-boot-nand.lds │ │ ├── tasreg │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── tasreg.c │ │ │ └── u-boot.lds │ │ ├── vme8349 │ │ │ ├── Makefile │ │ │ ├── caddy.c │ │ │ ├── caddy.h │ │ │ ├── pci.c │ │ │ ├── vme8349.c │ │ │ └── vme8349pin.h │ │ ├── voh405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── logo_320_240_4bpp.c │ │ │ ├── logo_640_480_24bpp.c │ │ │ └── voh405.c │ │ ├── vom405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── vom405.c │ │ └── wuh405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── wuh405.c │ ├── esg │ │ └── ima3-mx53 │ │ │ ├── Makefile │ │ │ ├── ima3-mx53.c │ │ │ └── imximage.cfg │ ├── espt │ │ ├── Makefile │ │ ├── espt.c │ │ └── lowlevel_init.S │ ├── esteem192e │ │ ├── Makefile │ │ ├── esteem192e.c │ │ ├── flash.c │ │ └── u-boot.lds │ ├── etin │ │ ├── debris │ │ │ ├── Makefile │ │ │ ├── debris.c │ │ │ ├── flash.c │ │ │ ├── phantom.c │ │ │ └── speed.h │ │ └── kvme080 │ │ │ ├── Makefile │ │ │ ├── kvme080.c │ │ │ ├── multiverse.c │ │ │ └── multiverse.h │ ├── etx094 │ │ ├── Makefile │ │ ├── etx094.c │ │ ├── flash.c │ │ └── u-boot.lds │ ├── eukrea │ │ ├── cpu9260 │ │ │ ├── Makefile │ │ │ ├── cpu9260.c │ │ │ └── led.c │ │ └── cpuat91 │ │ │ ├── Makefile │ │ │ └── cpuat91.c │ ├── evb64260 │ │ ├── 64260.h │ │ ├── Makefile │ │ ├── bootseq.txt │ │ ├── ecctest.c │ │ ├── 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 │ │ ├── serial.h │ │ ├── u-boot.lds │ │ ├── zuma_pbb.c │ │ ├── zuma_pbb.h │ │ ├── zuma_pbb_mbox.c │ │ └── zuma_pbb_mbox.h │ ├── exmeritus │ │ └── hww1u1a │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── gpios.h │ │ │ ├── hww1u1a.c │ │ │ ├── law.c │ │ │ └── tlb.c │ ├── fads │ │ ├── Makefile │ │ ├── fads.c │ │ ├── fads.h │ │ ├── flash.c │ │ ├── lamp.c │ │ ├── pcmcia.c │ │ └── u-boot.lds │ ├── faraday │ │ └── a320evb │ │ │ ├── Makefile │ │ │ ├── a320evb.c │ │ │ └── lowlevel_init.S │ ├── flagadm │ │ ├── Makefile │ │ ├── flagadm.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── freescale │ │ ├── bsc9131rdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bsc9131rdb.c │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ └── tlb.c │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── cadmus.c │ │ │ ├── cadmus.h │ │ │ ├── cds_pci_ft.c │ │ │ ├── cds_via.c │ │ │ ├── eeprom.h │ │ │ ├── fman.c │ │ │ ├── fman.h │ │ │ ├── ics307_clk.c │ │ │ ├── ics307_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 │ │ ├── corenet_ds │ │ │ ├── Makefile │ │ │ ├── corenet_ds.c │ │ │ ├── corenet_ds.h │ │ │ ├── ddr.c │ │ │ ├── eth_hydra.c │ │ │ ├── eth_p4080.c │ │ │ ├── p3041ds_ddr.c │ │ │ ├── p4080ds_ddr.c │ │ │ └── p5020ds_ddr.c │ │ ├── m5208evbe │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5208evbe.c │ │ │ └── u-boot.lds │ │ ├── m52277evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m52277evb.c │ │ │ └── u-boot.lds │ │ ├── m5235evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5235evb.c │ │ │ └── u-boot.lds │ │ ├── m5249evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5249evb.c │ │ │ └── u-boot.lds │ │ ├── m5253demo │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── m5253demo.c │ │ │ └── u-boot.lds │ │ ├── m5253evbe │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5253evbe.c │ │ │ └── u-boot.lds │ │ ├── m5271evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5271evb.c │ │ │ └── u-boot.lds │ │ ├── m5272c3 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5272c3.c │ │ │ └── u-boot.lds │ │ ├── m5275evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5275evb.c │ │ │ └── u-boot.lds │ │ ├── m5282evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5282evb.c │ │ │ └── u-boot.lds │ │ ├── m53017evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m53017evb.c │ │ │ └── u-boot.lds │ │ ├── m5329evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5329evb.c │ │ │ ├── nand.c │ │ │ └── u-boot.lds │ │ ├── m5373evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5373evb.c │ │ │ ├── nand.c │ │ │ └── u-boot.lds │ │ ├── m54451evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m54451evb.c │ │ │ └── u-boot.lds │ │ ├── m54455evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m54455evb.c │ │ │ └── u-boot.lds │ │ ├── m547xevb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m547xevb.c │ │ │ └── u-boot.lds │ │ ├── m548xevb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m548xevb.c │ │ │ └── u-boot.lds │ │ ├── mpc5121ads │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── mpc5121ads.c │ │ ├── mpc7448hpc2 │ │ │ ├── Makefile │ │ │ ├── asm_init.S │ │ │ ├── config.mk │ │ │ ├── mpc7448hpc2.c │ │ │ └── tsi108_init.c │ │ ├── mpc8260ads │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── mpc8260ads.c │ │ ├── mpc8266ads │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── mpc8266ads.c │ │ ├── mpc8308rdb │ │ │ ├── Makefile │ │ │ ├── mpc8308rdb.c │ │ │ └── sdram.c │ │ ├── mpc8313erdb │ │ │ ├── Makefile │ │ │ ├── mpc8313erdb.c │ │ │ └── sdram.c │ │ ├── mpc8315erdb │ │ │ ├── Makefile │ │ │ ├── mpc8315erdb.c │ │ │ └── sdram.c │ │ ├── mpc8323erdb │ │ │ ├── Makefile │ │ │ └── mpc8323erdb.c │ │ ├── mpc832xemds │ │ │ ├── Makefile │ │ │ ├── mpc832xemds.c │ │ │ └── pci.c │ │ ├── mpc8349emds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── mpc8349emds.c │ │ │ └── pci.c │ │ ├── mpc8349itx │ │ │ ├── Makefile │ │ │ ├── mpc8349itx.c │ │ │ └── pci.c │ │ ├── mpc8360emds │ │ │ ├── Makefile │ │ │ ├── mpc8360emds.c │ │ │ └── pci.c │ │ ├── mpc8360erdk │ │ │ ├── Makefile │ │ │ ├── mpc8360erdk.c │ │ │ └── nand.c │ │ ├── mpc837xemds │ │ │ ├── Makefile │ │ │ ├── mpc837xemds.c │ │ │ ├── pci.c │ │ │ └── pci.h │ │ ├── mpc837xerdb │ │ │ ├── Makefile │ │ │ ├── mpc837xerdb.c │ │ │ └── pci.c │ │ ├── mpc8536ds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8536ds.c │ │ │ └── tlb.c │ │ ├── mpc8540ads │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8540ads.c │ │ │ └── tlb.c │ │ ├── mpc8541cds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8541cds.c │ │ │ └── tlb.c │ │ ├── mpc8544ds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8544ds.c │ │ │ └── tlb.c │ │ ├── mpc8548cds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8548cds.c │ │ │ └── tlb.c │ │ ├── mpc8555cds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8555cds.c │ │ │ └── tlb.c │ │ ├── mpc8560ads │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8560ads.c │ │ │ └── tlb.c │ │ ├── mpc8568mds │ │ │ ├── Makefile │ │ │ ├── bcsr.c │ │ │ ├── bcsr.h │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8568mds.c │ │ │ └── tlb.c │ │ ├── mpc8569mds │ │ │ ├── Makefile │ │ │ ├── bcsr.c │ │ │ ├── bcsr.h │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8569mds.c │ │ │ └── tlb.c │ │ ├── mpc8572ds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8572ds.c │ │ │ └── tlb.c │ │ ├── mpc8610hpcd │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8610hpcd.c │ │ │ └── mpc8610hpcd_diu.c │ │ ├── mpc8641hpcn │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ └── mpc8641hpcn.c │ │ ├── mx25pdk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ ├── lowlevel_init.S │ │ │ └── mx25pdk.c │ │ ├── mx28evk │ │ │ ├── Makefile │ │ │ ├── iomux.c │ │ │ ├── mx28evk.c │ │ │ └── u-boot.bd │ │ ├── mx31ads │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── mx31ads.c │ │ │ └── u-boot.lds │ │ ├── mx31pdk │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ └── mx31pdk.c │ │ ├── mx35pdk │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── mx35pdk.c │ │ │ └── mx35pdk.h │ │ ├── mx51evk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx51evk.c │ │ ├── mx53ard │ │ │ ├── Makefile │ │ │ ├── imximage_dd3.cfg │ │ │ └── mx53ard.c │ │ ├── mx53evk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx53evk.c │ │ ├── mx53loco │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx53loco.c │ │ ├── mx53smd │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx53smd.c │ │ ├── mx6qarm2 │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx6qarm2.c │ │ ├── mx6qsabrelite │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx6qsabrelite.c │ │ ├── p1010rdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1010rdb.c │ │ │ └── tlb.c │ │ ├── p1022ds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── diu.c │ │ │ ├── law.c │ │ │ ├── p1022ds.c │ │ │ └── tlb.c │ │ ├── p1023rds │ │ │ ├── Makefile │ │ │ ├── bcsr.h │ │ │ ├── law.c │ │ │ ├── p1023rds.c │ │ │ └── tlb.c │ │ ├── p1_p2_rdb │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1_p2_rdb.c │ │ │ ├── pci.c │ │ │ └── tlb.c │ │ ├── p1_p2_rdb_pc │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1_p2_rdb_pc.c │ │ │ └── tlb.c │ │ ├── p2020come │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p2020come.c │ │ │ └── tlb.c │ │ ├── p2020ds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p2020ds.c │ │ │ └── tlb.c │ │ ├── p2041rdb │ │ │ ├── Makefile │ │ │ ├── cpld.c │ │ │ ├── cpld.h │ │ │ ├── ddr.c │ │ │ ├── eth.c │ │ │ └── p2041rdb.c │ │ └── p3060qds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── eth.c │ │ │ ├── fixed_ddr.c │ │ │ ├── p3060qds.c │ │ │ ├── p3060qds.h │ │ │ └── p3060qds_qixis.h │ ├── funkwerk │ │ └── vovpn-gw │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── m88e6060.c │ │ │ ├── m88e6060.h │ │ │ └── vovpn-gw.c │ ├── g2000 │ │ ├── Makefile │ │ ├── g2000.c │ │ └── strataflash.c │ ├── gaisler │ │ ├── gr_cpci_ax2000 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gr_cpci_ax2000.c │ │ │ └── u-boot.lds │ │ ├── gr_ep2s60 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gr_ep2s60.c │ │ │ └── u-boot.lds │ │ ├── gr_xc3s_1500 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gr_xc3s_1500.c │ │ │ └── u-boot.lds │ │ ├── grsim │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── grsim.c │ │ │ └── u-boot.lds │ │ └── grsim_leon2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── grsim_leon2.c │ │ │ └── u-boot.lds │ ├── galaxy5200 │ │ ├── Makefile │ │ └── galaxy5200.c │ ├── gdsys │ │ ├── 405ep │ │ │ ├── 405ep.c │ │ │ ├── 405ep.h │ │ │ ├── Makefile │ │ │ ├── dlvision-10g.c │ │ │ ├── io.c │ │ │ ├── iocon.c │ │ │ └── neo.c │ │ ├── 405ex │ │ │ ├── 405ex.c │ │ │ ├── 405ex.h │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ └── io64.c │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── miiphybb.c │ │ │ ├── osd.c │ │ │ └── osd.h │ │ ├── dlvision │ │ │ ├── Makefile │ │ │ └── dlvision.c │ │ ├── gdppc440etx │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gdppc440etx.c │ │ │ └── init.S │ │ └── intip │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── intip.c │ ├── gen860t │ │ ├── Makefile │ │ ├── README │ │ ├── beeper.c │ │ ├── beeper.h │ │ ├── flash.c │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── gen860t.c │ │ ├── ioport.c │ │ ├── ioport.h │ │ ├── u-boot-flashenv.lds │ │ └── u-boot.lds │ ├── genietv │ │ ├── Makefile │ │ ├── flash.c │ │ ├── genietv.c │ │ ├── genietv.h │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── gth2 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── ee_access.c │ │ ├── ee_access.h │ │ ├── ee_dev.h │ │ ├── flash.c │ │ ├── gth2.c │ │ ├── lowlevel_init.S │ │ └── u-boot.lds │ ├── gw8260 │ │ ├── Makefile │ │ ├── flash.c │ │ └── gw8260.c │ ├── hale │ │ └── tt01 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── tt01.c │ ├── hermes │ │ ├── Makefile │ │ ├── flash.c │ │ ├── hermes.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── hidden_dragon │ │ ├── Makefile │ │ ├── README │ │ ├── early_init.S │ │ ├── flash.c │ │ ├── hidden_dragon.c │ │ └── speed.h │ ├── highbank │ │ ├── Makefile │ │ └── highbank.c │ ├── htkw │ │ └── mcx │ │ │ ├── Makefile │ │ │ ├── mcx.c │ │ │ └── mcx.h │ ├── hymod │ │ ├── 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 │ │ ├── Makefile │ │ ├── config.mk │ │ └── ibf-dsp561.c │ ├── icecube │ │ ├── Makefile │ │ ├── flash.c │ │ ├── icecube.c │ │ ├── mt46v16m16-75.h │ │ ├── mt46v32m16.h │ │ └── mt48lc16m16a2-75.h │ ├── icu862 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── icu862.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── idmr │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── idmr.c │ │ └── u-boot.lds │ ├── ids8247 │ │ ├── Makefile │ │ └── ids8247.c │ ├── imx31_phycore │ │ ├── Makefile │ │ ├── imx31_phycore.c │ │ └── lowlevel_init.S │ ├── in-circuit │ │ └── grasshopper │ │ │ ├── Makefile │ │ │ └── grasshopper.c │ ├── incaip │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── incaip.c │ │ ├── lowlevel_init.S │ │ └── u-boot.lds │ ├── inka4x0 │ │ ├── Makefile │ │ ├── hyb25d512160bf-5.h │ │ ├── inka4x0.c │ │ ├── inkadiag.c │ │ ├── k4h511638c.h │ │ ├── mt46v16m16-75.h │ │ ├── mt46v32m16-75.h │ │ └── mt48lc16m16a2-75.h │ ├── intercontrol │ │ └── digsy_mtc │ │ │ ├── Makefile │ │ │ ├── cmd_disp.c │ │ │ ├── cmd_mtc.c │ │ │ ├── cmd_mtc.h │ │ │ ├── digsy_mtc.c │ │ │ ├── eeprom.h │ │ │ ├── is42s16800a-7t.h │ │ │ └── is45s16800a2.h │ ├── ip04 │ │ ├── Makefile │ │ ├── config.mk │ │ └── ip04.c │ ├── ip860 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── ip860.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── ipek01 │ │ ├── Makefile │ │ └── ipek01.c │ ├── iphase4539 │ │ ├── Makefile │ │ ├── flash.c │ │ └── iphase4539.c │ ├── isee │ │ ├── igep0020 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── igep0020.c │ │ │ └── igep0020.h │ │ └── igep0030 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── igep0030.c │ │ │ └── igep0030.h │ ├── ispan │ │ ├── Makefile │ │ └── ispan.c │ ├── ivm │ │ ├── Makefile │ │ ├── flash.c │ │ ├── ivm.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── jornada │ │ ├── Makefile │ │ ├── jornada.c │ │ └── setup.S │ ├── jse │ │ ├── Makefile │ │ ├── README.txt │ │ ├── flash.c │ │ ├── host_bridge.c │ │ ├── init.S │ │ ├── jse.c │ │ ├── jse_priv.h │ │ └── sdram.c │ ├── jupiter │ │ ├── Makefile │ │ └── jupiter.c │ ├── karo │ │ ├── tk71 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── tk71.c │ │ └── tx25 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ └── tx25.c │ ├── keymile │ │ ├── common │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ └── ivm.c │ │ ├── km82xx │ │ │ ├── Makefile │ │ │ └── km82xx.c │ │ ├── km83xx │ │ │ ├── Makefile │ │ │ ├── km83xx.c │ │ │ └── km83xx_i2c.c │ │ ├── km_arm │ │ │ ├── Makefile │ │ │ ├── fpga_config.c │ │ │ ├── km_arm.c │ │ │ ├── kwbimage-memphis.cfg │ │ │ ├── kwbimage.cfg │ │ │ ├── kwbimage_128M16_1.cfg │ │ │ └── kwbimage_256M8_1.cfg │ │ └── 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 │ ├── korat │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── korat.c │ │ └── u-boot-F7FC.lds │ ├── kup │ │ ├── Makefile │ │ ├── common │ │ │ ├── flash.c │ │ │ ├── kup.c │ │ │ ├── kup.h │ │ │ ├── load_sernum_ethaddr.c │ │ │ └── pcmcia.c │ │ ├── kup4k │ │ │ ├── Makefile │ │ │ ├── kup4k.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ │ └── kup4x │ │ │ ├── Makefile │ │ │ ├── kup4x.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── lantec │ │ ├── Makefile │ │ ├── flash.c │ │ ├── lantec.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── linkstation │ │ ├── Makefile │ │ ├── avr.c │ │ ├── hwctl.c │ │ ├── ide.c │ │ └── linkstation.c │ ├── logicpd │ │ ├── am3517evm │ │ │ ├── Makefile │ │ │ ├── am3517evm.c │ │ │ └── am3517evm.h │ │ ├── imx27lite │ │ │ ├── Makefile │ │ │ ├── imx27lite.c │ │ │ └── lowlevel_init.S │ │ ├── imx31_litekit │ │ │ ├── Makefile │ │ │ ├── imx31_litekit.c │ │ │ └── lowlevel_init.S │ │ ├── omap3som │ │ │ ├── Makefile │ │ │ ├── omap3logic.c │ │ │ └── omap3logic.h │ │ ├── zoom1 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── zoom1.c │ │ │ └── zoom1.h │ │ └── zoom2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── debug_board.c │ │ │ ├── led.c │ │ │ ├── zoom2.c │ │ │ ├── zoom2.h │ │ │ ├── zoom2_serial.c │ │ │ └── zoom2_serial.h │ ├── lubbock │ │ ├── Makefile │ │ ├── flash.c │ │ └── lubbock.c │ ├── lwmon │ │ ├── Makefile │ │ ├── README.keybd │ │ ├── flash.c │ │ ├── lwmon.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── lwmon5 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── kbd.c │ │ ├── lwmon5.c │ │ └── sdram.c │ ├── manroland │ │ ├── hmi1001 │ │ │ ├── Makefile │ │ │ └── hmi1001.c │ │ ├── mucmc52 │ │ │ ├── Makefile │ │ │ └── mucmc52.c │ │ ├── uc100 │ │ │ ├── Makefile │ │ │ ├── pcmcia.c │ │ │ ├── u-boot.lds │ │ │ └── uc100.c │ │ └── uc101 │ │ │ ├── Makefile │ │ │ └── uc101.c │ ├── matrix_vision │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── mv_common.c │ │ │ └── mv_common.h │ │ ├── mergerbox │ │ │ ├── Makefile │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mergerbox.c │ │ │ ├── mergerbox.h │ │ │ ├── pci.c │ │ │ └── sm107.c │ │ ├── mvbc_p │ │ │ ├── Makefile │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvbc_p.c │ │ │ ├── mvbc_p.h │ │ │ └── mvbc_p_autoscript │ │ ├── mvblm7 │ │ │ ├── Makefile │ │ │ ├── bootscript │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvblm7.c │ │ │ ├── mvblm7.h │ │ │ └── pci.c │ │ ├── mvblx │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvblx.c │ │ │ ├── mvblx.h │ │ │ └── sys_eeprom.c │ │ └── mvsmr │ │ │ ├── Makefile │ │ │ ├── bootscript │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvsmr.c │ │ │ ├── mvsmr.h │ │ │ └── u-boot.lds │ ├── mbx8xx │ │ ├── Makefile │ │ ├── csr.h │ │ ├── dimm.h │ │ ├── flash.c │ │ ├── mbx8xx.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ ├── u-boot.lds.debug │ │ ├── vpd.c │ │ └── vpd.h │ ├── mcc200 │ │ ├── Makefile │ │ ├── auto_update.c │ │ ├── lcd.c │ │ ├── mcc200.c │ │ ├── mt46v16m16-75.h │ │ ├── mt48lc16m16a2-75.h │ │ ├── mt48lc16m32s2-75.h │ │ └── mt48lc8m32b2-6-7.h │ ├── micronas │ │ └── vct │ │ │ ├── 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 │ │ │ ├── u-boot.lds │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ └── mimc200.c │ ├── miromico │ │ └── hammerhead │ │ │ ├── Makefile │ │ │ └── hammerhead.c │ ├── ml2 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── init.S │ │ ├── ml2.c │ │ ├── serial.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── mosaixtech │ │ └── icon │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── icon.c │ │ │ └── init.S │ ├── motionpro │ │ ├── Makefile │ │ └── motionpro.c │ ├── mousse │ │ ├── Makefile │ │ ├── README │ │ ├── flash.c │ │ ├── flash.h │ │ ├── m48t59y.c │ │ ├── m48t59y.h │ │ ├── mousse.c │ │ ├── mousse.h │ │ ├── pci.c │ │ ├── u-boot.lds │ │ ├── u-boot.lds.ram │ │ └── u-boot.lds.rom │ ├── mpc8308_p1m │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── cmd_mip405.c │ │ │ ├── init.S │ │ │ ├── mip405.c │ │ │ └── mip405.h │ │ ├── pati │ │ │ ├── Makefile │ │ │ ├── cmd_pati.c │ │ │ ├── pati.c │ │ │ ├── pati.h │ │ │ ├── pci_eeprom.h │ │ │ └── plx9056.h │ │ ├── pip405 │ │ │ ├── Makefile │ │ │ ├── cmd_pip405.c │ │ │ ├── init.S │ │ │ ├── pip405.c │ │ │ ├── pip405.h │ │ │ └── u-boot.lds.debug │ │ └── vcma9 │ │ │ ├── Makefile │ │ │ ├── cmd_vcma9.c │ │ │ ├── lowlevel_init.S │ │ │ ├── vcma9.c │ │ │ └── vcma9.h │ ├── mpr2 │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── mpr2.c │ ├── ms7720se │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── ms7720se.c │ ├── ms7722se │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── ms7722se.c │ ├── ms7750se │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── ms7750se.c │ ├── muas3001 │ │ ├── Makefile │ │ └── muas3001.c │ ├── munices │ │ ├── Makefile │ │ ├── mt48lc16m16a2-75.h │ │ └── munices.c │ ├── musenki │ │ ├── Makefile │ │ ├── README │ │ ├── flash.c │ │ └── musenki.c │ ├── mvblue │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mvblue.c │ │ └── u-boot.lds │ ├── mx1ads │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ ├── mx1ads.c │ │ └── syncflash.c │ ├── netphone │ │ ├── Makefile │ │ ├── flash.c │ │ ├── netphone.c │ │ ├── phone_console.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── netta │ │ ├── Makefile │ │ ├── codec.c │ │ ├── dsp.c │ │ ├── flash.c │ │ ├── netta.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── netta2 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── netta2.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── netvia │ │ ├── Makefile │ │ ├── flash.c │ │ ├── netvia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── ns9750dev │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── led.c │ │ ├── lowlevel_init.S │ │ └── ns9750dev.c │ ├── nvidia │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── emc.c │ │ │ ├── emc.h │ │ │ └── uart-spi-switch.c │ │ ├── dts │ │ │ ├── tegra2-harmony.dts │ │ │ ├── tegra2-seaboard.dts │ │ │ ├── tegra2-ventana.dts │ │ │ └── tegra2-whistler.dts │ │ ├── harmony │ │ │ ├── Makefile │ │ │ └── harmony.c │ │ ├── seaboard │ │ │ ├── Makefile │ │ │ └── seaboard.c │ │ ├── ventana │ │ │ └── Makefile │ │ └── whistler │ │ │ ├── Makefile │ │ │ └── whistler.c │ ├── nx823 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── nx823.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── o2dnt │ │ ├── Makefile │ │ ├── flash.c │ │ └── o2dnt.c │ ├── omicron │ │ └── calimain │ │ │ ├── Makefile │ │ │ └── calimain.c │ ├── openrisc │ │ └── openrisc-generic │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── openrisc-generic.c │ │ │ ├── or1ksim.cfg │ │ │ └── u-boot.lds │ ├── overo │ │ ├── Makefile │ │ ├── overo.c │ │ └── overo.h │ ├── palmld │ │ ├── Makefile │ │ └── palmld.c │ ├── palmtc │ │ ├── Makefile │ │ └── palmtc.c │ ├── pandora │ │ ├── Makefile │ │ ├── pandora.c │ │ └── pandora.h │ ├── pb1x00 │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── flash.c │ │ ├── lowlevel_init.S │ │ ├── pb1x00.c │ │ └── u-boot.lds │ ├── pcippc2 │ │ ├── Makefile │ │ ├── cpc710.h │ │ ├── cpc710_init_ram.c │ │ ├── cpc710_pci.c │ │ ├── cpc710_pci.h │ │ ├── flash.c │ │ ├── fpga_serial.c │ │ ├── fpga_serial.h │ │ ├── hardware.h │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── ns16550.h │ │ ├── pcippc2.c │ │ ├── pcippc2.h │ │ ├── pcippc2_fpga.c │ │ ├── pcippc2_fpga.h │ │ ├── sconsole.c │ │ └── sconsole.h │ ├── pcs440ep │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── init.S │ │ └── pcs440ep.c │ ├── pdm360ng │ │ ├── Makefile │ │ └── pdm360ng.c │ ├── phytec │ │ └── pcm030 │ │ │ ├── Makefile │ │ │ ├── mt46v32m16-75.h │ │ │ └── pcm030.c │ ├── pm520 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mt46v16m16-75.h │ │ ├── mt48lc16m16a2-75.h │ │ └── pm520.c │ ├── pm826 │ │ ├── Makefile │ │ ├── flash.c │ │ └── pm826.c │ ├── pm828 │ │ ├── Makefile │ │ ├── flash.c │ │ └── pm828.c │ ├── pn62 │ │ ├── Makefile │ │ ├── cmd_pn62.c │ │ ├── misc.c │ │ ├── pn62.c │ │ └── pn62.h │ ├── ppmc7xx │ │ ├── Makefile │ │ ├── flash.c │ │ ├── init.S │ │ ├── pci.c │ │ └── ppmc7xx.c │ ├── ppmc8260 │ │ ├── Makefile │ │ ├── ppmc8260.c │ │ └── strataflash.c │ ├── pr1 │ │ ├── Makefile │ │ ├── config.mk │ │ └── pr1.c │ ├── prodrive │ │ ├── alpr │ │ │ ├── Makefile │ │ │ ├── alpr.c │ │ │ ├── config.mk │ │ │ ├── fpga.c │ │ │ ├── init.S │ │ │ └── nand.c │ │ ├── common │ │ │ ├── flash.c │ │ │ └── fpga.c │ │ ├── p3mx │ │ │ ├── 64460.h │ │ │ ├── Makefile │ │ │ ├── eth.h │ │ │ ├── misc.S │ │ │ ├── mpsc.c │ │ │ ├── mpsc.h │ │ │ ├── mv_eth.c │ │ │ ├── mv_eth.h │ │ │ ├── mv_regs.h │ │ │ ├── p3mx.c │ │ │ ├── p3mx.h │ │ │ ├── pci.c │ │ │ ├── ppc_error_no.h │ │ │ ├── sdram_init.c │ │ │ ├── serial.c │ │ │ └── serial.h │ │ ├── p3p440 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── p3p440.c │ │ │ └── p3p440.h │ │ └── pdnb3 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── nand.c │ │ │ └── pdnb3.c │ ├── psyent │ │ ├── common │ │ │ └── AMDLV065D.c │ │ ├── pci5441 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── pci5441.c │ │ └── pk1c20 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── led.c │ │ │ └── pk1c20.c │ ├── pxa255_idp │ │ ├── Makefile │ │ ├── README │ │ ├── idp_notes.txt │ │ ├── pxa_idp.c │ │ ├── pxa_reg_calcs.out │ │ └── pxa_reg_calcs.py │ ├── qcom │ │ ├── common │ │ │ ├── athrs17_phy.c │ │ │ ├── athrs17_phy.h │ │ │ ├── ipq806x_phy.h │ │ │ ├── qca8511.c │ │ │ ├── qca8511.h │ │ │ └── qca_common.h │ │ ├── ipq40xx_cdp │ │ │ ├── Makefile │ │ │ ├── ipq40xx_board_param.h │ │ │ ├── ipq40xx_cdp.c │ │ │ └── ipq40xx_cdp.h │ │ └── ipq806x_cdp │ │ │ ├── Makefile │ │ │ ├── ipq806x_board_param.h │ │ │ ├── ipq806x_cdp.c │ │ │ └── ipq806x_cdp.h │ ├── qemu-mips │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── lowlevel_init.S │ │ ├── qemu-mips.c │ │ └── u-boot.lds │ ├── qi │ │ └── qi_lb60 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── qi_lb60.c │ │ │ └── u-boot.lds │ ├── quad100hd │ │ ├── Makefile │ │ ├── nand.c │ │ └── quad100hd.c │ ├── quantum │ │ ├── Makefile │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── quantum.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── r360mpi │ │ ├── Makefile │ │ ├── flash.c │ │ ├── pcmcia.c │ │ ├── r360mpi.c │ │ └── u-boot.lds │ ├── raidsonic │ │ └── ib62x0 │ │ │ ├── Makefile │ │ │ ├── ib62x0.c │ │ │ ├── ib62x0.h │ │ │ └── kwbimage.cfg │ ├── rattler │ │ ├── Makefile │ │ └── rattler.c │ ├── rbc823 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── kbd.c │ │ ├── rbc823.c │ │ └── u-boot.lds │ ├── renesas │ │ ├── MigoR │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── migo_r.c │ │ ├── ap325rxa │ │ │ ├── Makefile │ │ │ ├── ap325rxa.c │ │ │ ├── cpld-ap325rxa.c │ │ │ └── lowlevel_init.S │ │ ├── ecovec │ │ │ ├── Makefile │ │ │ ├── ecovec.c │ │ │ └── lowlevel_init.S │ │ ├── r0p7734 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── r0p7734.c │ │ ├── r2dplus │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── r2dplus.c │ │ ├── r7780mp │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── r7780mp.c │ │ │ └── r7780mp.h │ │ ├── rsk7203 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── rsk7203.c │ │ ├── rsk7264 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── rsk7264.c │ │ ├── rsk7269 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── rsk7269.c │ │ ├── sh7757lcr │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── sh7757lcr.c │ │ │ ├── spi-boot.c │ │ │ └── u-boot.lds │ │ ├── sh7763rdp │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── sh7763rdp.c │ │ └── sh7785lcr │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── rtl8169.h │ │ │ ├── rtl8169_mac.c │ │ │ ├── selfcheck.c │ │ │ └── sh7785lcr.c │ ├── ronetix │ │ ├── pm9261 │ │ │ ├── Makefile │ │ │ ├── led.c │ │ │ ├── partition.c │ │ │ └── pm9261.c │ │ ├── pm9263 │ │ │ ├── Makefile │ │ │ ├── led.c │ │ │ ├── partition.c │ │ │ └── pm9263.c │ │ └── pm9g45 │ │ │ ├── Makefile │ │ │ └── pm9g45.c │ ├── rpxsuper │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mii_phy.c │ │ ├── readme │ │ ├── rpxsuper.c │ │ └── rpxsuper.h │ ├── rsdproto │ │ ├── Makefile │ │ ├── flash.c │ │ ├── flash_asm.S │ │ ├── rsdproto.c │ │ └── u-boot.lds │ ├── sacsng │ │ ├── Makefile │ │ ├── clkinit.c │ │ ├── clkinit.h │ │ ├── flash.c │ │ ├── ioconfig.h │ │ └── sacsng.c │ ├── samsung │ │ ├── goni │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── goni.c │ │ │ ├── lowlevel_init.S │ │ │ ├── mem_setup.S │ │ │ └── onenand.c │ │ ├── origen │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── mem_setup.S │ │ │ ├── mmc_boot.c │ │ │ ├── origen.c │ │ │ ├── origen_setup.h │ │ │ └── tools │ │ │ │ └── mkv310_image.c │ │ ├── smdk2410 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── smdk2410.c │ │ ├── smdk5250 │ │ │ ├── Makefile │ │ │ ├── clock_init.c │ │ │ ├── dmc_init.c │ │ │ ├── lowlevel_init.S │ │ │ ├── mmc_boot.c │ │ │ ├── setup.h │ │ │ ├── smdk5250.c │ │ │ └── tzpc_init.c │ │ ├── smdk6400 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ ├── smdk6400.c │ │ │ ├── smdk6400_nand_spl.c │ │ │ └── u-boot-nand.lds │ │ ├── smdkc100 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ ├── mem_setup.S │ │ │ ├── onenand.c │ │ │ └── smdkc100.c │ │ ├── smdkv310 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── mem_setup.S │ │ │ ├── mmc_boot.c │ │ │ ├── smdkv310.c │ │ │ └── tools │ │ │ │ └── mkv310_image.c │ │ ├── trats │ │ │ ├── Makefile │ │ │ ├── setup.h │ │ │ └── trats.c │ │ └── universal_c210 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── onenand.c │ │ │ └── universal.c │ ├── sandbox │ │ └── sandbox │ │ │ ├── Makefile │ │ │ └── sandbox.c │ ├── sandburst │ │ ├── common │ │ │ ├── flash.c │ │ │ ├── ppc440gx_i2c.c │ │ │ ├── ppc440gx_i2c.h │ │ │ ├── sb_common.c │ │ │ └── sb_common.h │ │ ├── karef │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── hal_ka_of_auto.h │ │ │ ├── hal_ka_sc_auto.h │ │ │ ├── init.S │ │ │ ├── karef.c │ │ │ ├── karef.h │ │ │ ├── karef_version.h │ │ │ └── u-boot.lds.debug │ │ └── metrobox │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── hal_xc_auto.h │ │ │ ├── init.S │ │ │ ├── metrobox.c │ │ │ ├── metrobox.h │ │ │ ├── metrobox_version.h │ │ │ └── u-boot.lds.debug │ ├── sandpoint │ │ ├── Makefile │ │ ├── README │ │ ├── dinkdl │ │ ├── early_init.S │ │ ├── flash.c │ │ ├── sandpoint.c │ │ ├── speed.h │ │ └── u-boot.lds │ ├── sbc405 │ │ ├── Makefile │ │ ├── sbc405.c │ │ └── strataflash.c │ ├── sbc8349 │ │ ├── Makefile │ │ ├── pci.c │ │ └── sbc8349.c │ ├── sbc8548 │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── sbc8548.c │ │ └── tlb.c │ ├── sbc8560 │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── sbc8560.c │ │ └── tlb.c │ ├── sbc8641d │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ └── sbc8641d.c │ ├── sc3 │ │ ├── Makefile │ │ ├── init.S │ │ ├── sc3.c │ │ ├── sc3.h │ │ └── sc3nand.c │ ├── scb9328 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── intel.h │ │ ├── lowlevel_init.S │ │ └── scb9328.c │ ├── sheldon │ │ └── simpc8313 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── sdram.c │ │ │ └── simpc8313.c │ ├── shmin │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── shmin.c │ ├── siemens │ │ ├── IAD210 │ │ │ ├── IAD210.c │ │ │ ├── Makefile │ │ │ ├── atm.c │ │ │ ├── atm.h │ │ │ ├── flash.c │ │ │ └── u-boot.lds │ │ ├── SCM │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpga_scm.c │ │ │ ├── scm.c │ │ │ └── scm.h │ │ └── common │ │ │ ├── README │ │ │ ├── fpga.c │ │ │ └── fpga.h │ ├── sixnet │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ ├── sixnet.c │ │ ├── sixnet.h │ │ └── u-boot.lds │ ├── snmc │ │ ├── qs850 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── qs850.c │ │ │ └── u-boot.lds │ │ └── qs860t │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── qs860t.c │ │ │ └── u-boot.lds │ ├── socrates │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── nand.c │ │ ├── sdram.c │ │ ├── socrates.c │ │ ├── tlb.c │ │ └── upm_table.h │ ├── sorcery │ │ ├── Makefile │ │ └── sorcery.c │ ├── spc1920 │ │ ├── Makefile │ │ ├── hpi.c │ │ ├── hpi.h │ │ ├── pld.h │ │ ├── spc1920.c │ │ └── u-boot.lds │ ├── spd8xx │ │ ├── Makefile │ │ ├── flash.c │ │ ├── spd8xx.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── spear │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── spr_lowlevel_init.S │ │ │ └── spr_misc.c │ │ ├── spear300 │ │ │ ├── Makefile │ │ │ └── spear300.c │ │ ├── spear310 │ │ │ ├── Makefile │ │ │ └── spear310.c │ │ ├── spear320 │ │ │ ├── Makefile │ │ │ └── spear320.c │ │ └── spear600 │ │ │ ├── Makefile │ │ │ └── spear600.c │ ├── st-ericsson │ │ └── u8500 │ │ │ ├── Makefile │ │ │ ├── gpio.c │ │ │ ├── prcmu-fw.h │ │ │ ├── prcmu.c │ │ │ └── u8500_href.c │ ├── st │ │ └── nhk8815 │ │ │ ├── Makefile │ │ │ └── nhk8815.c │ ├── stx │ │ ├── stxgp3 │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── flash.c │ │ │ ├── law.c │ │ │ ├── stxgp3.c │ │ │ └── tlb.c │ │ ├── stxssa │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── stxssa.c │ │ │ └── tlb.c │ │ └── stxxtc │ │ │ ├── Makefile │ │ │ ├── stxxtc.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── svm_sc8xx │ │ ├── Makefile │ │ ├── flash.c │ │ ├── svm_sc8xx.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── sx1 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── lowlevel_init.S │ │ └── sx1.c │ ├── syteco │ │ ├── jadecpu │ │ │ ├── Makefile │ │ │ ├── jadecpu.c │ │ │ └── lowlevel_init.S │ │ └── zmx25 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── zmx25.c │ ├── t3corp │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── init.S │ │ └── t3corp.c │ ├── tcm-bf518 │ │ ├── Makefile │ │ ├── config.mk │ │ └── tcm-bf518.c │ ├── tcm-bf537 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── gpio_cfi_flash.c │ │ └── tcm-bf537.c │ ├── technexion │ │ └── twister │ │ │ ├── Makefile │ │ │ ├── twister.c │ │ │ └── twister.h │ ├── teejet │ │ └── mt_ventoux │ │ │ ├── Makefile │ │ │ ├── mt_ventoux.c │ │ │ └── mt_ventoux.h │ ├── ti │ │ ├── am335x │ │ │ ├── Makefile │ │ │ ├── evm.c │ │ │ └── mux.c │ │ ├── am3517crane │ │ │ ├── Makefile │ │ │ ├── am3517crane.c │ │ │ └── am3517crane.h │ │ ├── beagle │ │ │ ├── Makefile │ │ │ ├── beagle.c │ │ │ ├── beagle.h │ │ │ └── led.c │ │ ├── evm │ │ │ ├── Makefile │ │ │ ├── evm.c │ │ │ └── evm.h │ │ ├── omap1510inn │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ └── omap1510innovator.c │ │ ├── omap2420h4 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ ├── mem.c │ │ │ ├── omap2420h4.c │ │ │ └── sys_info.c │ │ ├── omap5912osk │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ └── omap5912osk.c │ │ ├── omap5_evm │ │ │ ├── Makefile │ │ │ ├── evm.c │ │ │ └── mux_data.h │ │ ├── omap730p2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── lowlevel_init.S │ │ │ └── omap730p2.c │ │ ├── panda │ │ │ ├── Makefile │ │ │ ├── panda.c │ │ │ └── panda_mux_data.h │ │ ├── sdp3430 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── sdp.c │ │ │ └── sdp.h │ │ ├── sdp4430 │ │ │ ├── Makefile │ │ │ ├── cmd_bat.c │ │ │ ├── sdp.c │ │ │ └── sdp4430_mux_data.h │ │ └── tnetv107xevm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── sdb_board.c │ ├── timll │ │ ├── devkit3250 │ │ │ ├── Makefile │ │ │ └── devkit3250.c │ │ └── devkit8000 │ │ │ ├── Makefile │ │ │ ├── devkit8000.c │ │ │ └── devkit8000.h │ ├── toradex │ │ └── colibri_pxa270 │ │ │ ├── Makefile │ │ │ └── colibri_pxa270.c │ ├── total5200 │ │ ├── Makefile │ │ ├── mt48lc16m16a2-75.h │ │ ├── mt48lc32m16a2-75.h │ │ ├── sdram.c │ │ ├── sdram.h │ │ └── total5200.c │ ├── tqc │ │ ├── tqm5200 │ │ │ ├── Makefile │ │ │ ├── cam5200_flash.c │ │ │ ├── cmd_stk52xx.c │ │ │ ├── cmd_tb5200.c │ │ │ ├── mt48lc16m16a2-75.h │ │ │ └── tqm5200.c │ │ ├── tqm8260 │ │ │ ├── Makefile │ │ │ └── tqm8260.c │ │ ├── tqm8272 │ │ │ ├── Makefile │ │ │ ├── nand.c │ │ │ ├── tqm8272.c │ │ │ └── tqm8272.h │ │ ├── tqm834x │ │ │ ├── Makefile │ │ │ ├── pci.c │ │ │ └── tqm834x.c │ │ ├── tqm85xx │ │ │ ├── Makefile │ │ │ ├── law.c │ │ │ ├── nand.c │ │ │ ├── sdram.c │ │ │ ├── tlb.c │ │ │ └── tqm85xx.c │ │ └── tqm8xx │ │ │ ├── Makefile │ │ │ ├── load_sernum_ethaddr.c │ │ │ ├── tqm8xx.c │ │ │ └── u-boot.lds │ ├── trizepsiv │ │ ├── Makefile │ │ ├── conxs.c │ │ └── eeprom.c │ ├── ttcontrol │ │ └── vision2 │ │ │ ├── Makefile │ │ │ ├── imximage_hynix.cfg │ │ │ └── vision2.c │ ├── utx8245 │ │ ├── Makefile │ │ ├── flash.c │ │ └── utx8245.c │ ├── v37 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── v37.c │ ├── v38b │ │ ├── Makefile │ │ ├── ethaddr.c │ │ └── v38b.c │ ├── ve8313 │ │ ├── Makefile │ │ └── ve8313.c │ ├── vpac270 │ │ ├── Makefile │ │ ├── onenand.c │ │ ├── u-boot-spl.lds │ │ └── vpac270.c │ ├── w7o │ │ ├── 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 │ ├── westel │ │ └── amx860 │ │ │ ├── Makefile │ │ │ ├── amx860.c │ │ │ ├── flash.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── xaeniax │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── u-boot.lds.debug │ │ │ └── xpedite1000.c │ │ ├── xpedite517x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ └── xpedite517x.c │ │ ├── xpedite520x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── tlb.c │ │ │ └── xpedite520x.c │ │ ├── xpedite537x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── tlb.c │ │ │ └── xpedite537x.c │ │ └── xpedite550x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── tlb.c │ │ │ └── xpedite550x.c │ ├── xilinx │ │ ├── common │ │ │ ├── xbasic_types.c │ │ │ ├── xbasic_types.h │ │ │ ├── xbuf_descriptor.h │ │ │ ├── xdma_channel.c │ │ │ ├── xdma_channel.h │ │ │ ├── xdma_channel_i.h │ │ │ ├── xdma_channel_sg.c │ │ │ ├── xio.h │ │ │ ├── xipif_v1_23_b.c │ │ │ ├── xipif_v1_23_b.h │ │ │ ├── xpacket_fifo_v1_00_b.c │ │ │ ├── xpacket_fifo_v1_00_b.h │ │ │ ├── xstatus.h │ │ │ ├── xversion.c │ │ │ └── xversion.h │ │ ├── microblaze-generic │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── microblaze-generic.c │ │ │ ├── u-boot.lds │ │ │ └── xparameters.h │ │ ├── ml507 │ │ │ ├── Makefile │ │ │ ├── ml507.c │ │ │ └── xparameters.h │ │ ├── ppc405-generic │ │ │ ├── Makefile │ │ │ ├── xilinx_ppc405_generic.c │ │ │ └── xparameters.h │ │ ├── ppc440-generic │ │ │ ├── Makefile │ │ │ ├── init.S │ │ │ ├── xilinx_ppc440_generic.c │ │ │ └── xparameters.h │ │ └── xilinx_iic │ │ │ ├── xiic_l.c │ │ │ └── xiic_l.h │ ├── zeus │ │ ├── Makefile │ │ ├── update.c │ │ └── zeus.c │ ├── zipitz2 │ │ ├── Makefile │ │ └── zipitz2.c │ └── zpc1900 │ │ ├── Makefile │ │ └── zpc1900.c ├── boards.cfg ├── common │ ├── Makefile │ ├── bedbug.c │ ├── bootstage.c │ ├── cmd_ambapp.c │ ├── cmd_bdinfo.c │ ├── cmd_bedbug.c │ ├── cmd_bmp.c │ ├── cmd_boot.c │ ├── cmd_bootldr.c │ ├── cmd_bootm.c │ ├── cmd_cache.c │ ├── cmd_console.c │ ├── cmd_cplbinfo.c │ ├── cmd_cramfs.c │ ├── cmd_dataflash_mmc_mux.c │ ├── cmd_date.c │ ├── cmd_dcr.c │ ├── cmd_df.c │ ├── cmd_diag.c │ ├── cmd_display.c │ ├── cmd_dtt.c │ ├── cmd_echo.c │ ├── cmd_eeprom.c │ ├── cmd_elf.c │ ├── cmd_exit.c │ ├── cmd_ext2.c │ ├── cmd_fat.c │ ├── cmd_fdc.c │ ├── cmd_fdos.c │ ├── cmd_fdt.c │ ├── cmd_fitupd.c │ ├── cmd_flash.c │ ├── cmd_fpga.c │ ├── cmd_gpio.c │ ├── cmd_help.c │ ├── cmd_i2c.c │ ├── cmd_ide.c │ ├── cmd_immap.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_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_pci.c │ ├── cmd_pcmcia.c │ ├── cmd_portio.c │ ├── cmd_pxe.c │ ├── cmd_reginfo.c │ ├── cmd_reiser.c │ ├── cmd_sata.c │ ├── cmd_scsi.c │ ├── cmd_setexpr.c │ ├── cmd_sf.c │ ├── cmd_sha1sum.c │ ├── cmd_source.c │ ├── cmd_spi.c │ ├── cmd_spibootldr.c │ ├── cmd_spl.c │ ├── cmd_strings.c │ ├── cmd_terminal.c │ ├── cmd_test.c │ ├── cmd_tftpServer.c │ ├── cmd_time.c │ ├── cmd_tpm.c │ ├── cmd_tsi148.c │ ├── cmd_ubi.c │ ├── cmd_ubifs.c │ ├── cmd_universe.c │ ├── cmd_unzip.c │ ├── cmd_usb.c │ ├── cmd_version.c │ ├── cmd_ximg.c │ ├── cmd_yaffs2.c │ ├── command.c │ ├── console.c │ ├── ddr_spd.c │ ├── dlmalloc.c │ ├── dlmalloc.src │ ├── env_common.c │ ├── env_dataflash.c │ ├── env_eeprom.c │ ├── env_embedded.c │ ├── env_fat.c │ ├── env_flash.c │ ├── env_mmc.c │ ├── env_nand.c │ ├── env_nowhere.c │ ├── env_nvram.c │ ├── env_onenand.c │ ├── env_remote.c │ ├── env_sf.c │ ├── exports.c │ ├── fdt_support.c │ ├── flash.c │ ├── gpio.c │ ├── hush.c │ ├── hwconfig.c │ ├── image.c │ ├── iomux.c │ ├── kallsyms.c │ ├── kgdb.c │ ├── kgdb_stubs.c │ ├── lcd.c │ ├── lynxkdi.c │ ├── main.c │ ├── memsize.c │ ├── menu.c │ ├── miiphyutil.c │ ├── modem.c │ ├── replace.c │ ├── s_record.c │ ├── serial.c │ ├── stdio.c │ ├── system_map.c │ ├── update.c │ ├── usb.c │ ├── usb_hub.c │ ├── usb_kbd.c │ ├── usb_storage.c │ └── xyzModem.c ├── config.mk ├── disk │ ├── Makefile │ ├── part.c │ ├── part_amiga.c │ ├── part_amiga.h │ ├── part_dos.c │ ├── part_dos.h │ ├── part_efi.c │ ├── part_efi.h │ ├── part_iso.c │ ├── part_iso.h │ ├── part_mac.c │ └── part_mac.h ├── doc │ ├── I2C_Edge_Conditions │ ├── README-integrator │ ├── README.440-DDR-performance │ ├── README.AMCC-eval-boards-cleanup │ ├── README.ARM-SoC │ ├── README.ARM-memory-map │ ├── README.AVR32 │ ├── README.AVR32-port-muxing │ ├── README.COBRA5272 │ ├── README.EVB-64260-750CX │ ├── README.INCA-IP │ ├── README.IPHASE4539 │ ├── README.IceCube │ ├── README.JFFS2 │ ├── README.JFFS2_NAND │ ├── README.LED │ ├── README.LED_display │ ├── README.Lite5200B_low_power │ ├── README.MBX │ ├── README.MPC866 │ ├── README.Modem │ ├── README.N1213 │ ├── README.NDS32 │ ├── README.NetConsole │ ├── README.OFT │ ├── README.OXC │ ├── README.PIP405 │ ├── README.POST │ ├── README.PlanetCore │ ├── README.RPXClassic │ ├── README.RPXlite │ ├── README.SBC8560 │ ├── README.SNTP │ ├── README.SPL │ ├── README.Sandpoint8240 │ ├── README.TQM8260 │ ├── README.VLAN │ ├── README.ag101 │ ├── README.ag102 │ ├── README.alaska8220 │ ├── README.amigaone │ ├── README.arm-caches │ ├── README.arm-relocation │ ├── README.at91 │ ├── README.at91-soc │ ├── README.atmel_mci │ ├── README.autoboot │ ├── README.bamboo │ ├── README.bedbug │ ├── README.bitbangMII │ ├── README.blackfin │ ├── README.bus_vcxk │ ├── README.cfi │ ├── README.cmi │ ├── README.commands │ ├── README.commands.itest │ ├── README.commands.spl │ ├── README.console │ ├── README.davinci │ ├── README.davinci.nand_spl │ ├── README.db64360 │ ├── README.db64460 │ ├── README.designware_eth │ ├── README.dnp5370 │ ├── README.dns │ ├── README.drivers.eth │ ├── README.ebony │ ├── README.enetaddr │ ├── README.evb64260 │ ├── README.fads │ ├── README.fdt-control │ ├── README.fsl-ddr │ ├── README.fsl-hwconfig │ ├── README.generic_usb_ohci │ ├── README.hawkboard │ ├── README.hwconfig │ ├── README.idma2intr │ ├── README.imx31 │ ├── README.imx5 │ ├── README.imximage │ ├── README.iomux │ ├── README.kmeter1 │ ├── README.korat │ ├── README.kwbimage │ ├── README.link-local │ ├── README.lynxkdi │ ├── README.m28 │ ├── README.m52277evb │ ├── README.m5253evbe │ ├── README.m53017evb │ ├── README.m5373evb │ ├── README.m54455evb │ ├── README.m5475evb │ ├── README.m68k │ ├── README.marubun-pcmcia │ ├── README.menu │ ├── README.mergerbox │ ├── README.mips │ ├── README.mpc5xx │ ├── README.mpc7448hpc2 │ ├── README.mpc74xx │ ├── README.mpc8313erdb │ ├── README.mpc8315erdb │ ├── README.mpc8323erdb │ ├── README.mpc832xemds │ ├── README.mpc8349itx │ ├── README.mpc8360emds │ ├── README.mpc837xemds │ ├── README.mpc837xerdb │ ├── README.mpc83xx.ddrecc │ ├── README.mpc83xxads │ ├── README.mpc8536ds │ ├── README.mpc8544ds │ ├── README.mpc8569mds │ ├── README.mpc8572ds │ ├── README.mpc85xx │ ├── README.mpc85xxads │ ├── README.mpc85xxcds │ ├── README.mpc8610hpcd │ ├── README.mpc8641hpcn │ ├── README.mvbc_p │ ├── README.mvblm7 │ ├── README.mvsmr │ ├── README.mx28_common │ ├── README.mx28evk │ ├── README.mx35pdk │ ├── README.mx6qsabrelite │ ├── README.nand │ ├── README.nand-boot-ppc440 │ ├── README.ne2000 │ ├── README.nhk8815 │ ├── README.ns9750dev │ ├── README.ocotea │ ├── README.ocotea-PIBS-to-U-Boot │ ├── README.omap-ulpi-viewport │ ├── README.omap3 │ ├── README.omap730p2 │ ├── README.p1022ds │ ├── README.p1023rds │ ├── README.p1_p2_rdb_pc │ ├── README.p2020rdb │ ├── README.p2041rdb │ ├── README.p3060qds │ ├── README.p4080ds │ ├── README.phytec.pcm030 │ ├── README.ppc440 │ ├── README.pxe │ ├── README.qemu_mips │ ├── README.s5pc1xx │ ├── README.sandbox │ ├── README.sata │ ├── README.sbc8349 │ ├── README.sbc8548 │ ├── README.sbc8641d │ ├── README.sched │ ├── README.scrapyard │ ├── README.serial_multi │ ├── README.sh │ ├── README.sh7757lcr │ ├── README.sh7785lcr │ ├── README.sha1 │ ├── README.silent │ ├── README.simpc8313 │ ├── README.spear │ ├── README.srio-boot-corenet │ ├── README.standalone │ ├── README.stxxtc │ ├── README.switch_config │ ├── README.timll │ ├── README.ubi │ ├── README.ublimage │ ├── README.update │ ├── README.usb │ ├── README.video │ ├── README.xpedite1k │ ├── README.zeus │ ├── SPL │ │ └── README.omap3 │ ├── device-tree-bindings │ │ ├── README │ │ ├── clock │ │ │ └── nvidia,tegra20-car.txt │ │ ├── i2c │ │ │ └── tegra20-i2c.txt │ │ └── usb │ │ │ └── tegra-usb.txt │ ├── feature-removal-schedule.txt │ ├── git-mailrc │ ├── kwboot.1 │ ├── mkimage.1 │ └── uImage.FIT │ │ ├── command_syntax_extensions.txt │ │ ├── howto.txt │ │ ├── kernel.its │ │ ├── kernel_fdt.its │ │ ├── multi.its │ │ ├── source_file_format.txt │ │ ├── update3.its │ │ └── update_uboot.its ├── drivers │ ├── 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_asm.h │ │ │ │ ├── prim_ops.h │ │ │ │ ├── regs.h │ │ │ │ └── x86emui.h │ │ └── x86emu │ │ │ ├── debug.c │ │ │ ├── decode.c │ │ │ ├── ops.c │ │ │ ├── ops2.c │ │ │ ├── prim_ops.c │ │ │ └── sys.c │ ├── block │ │ ├── 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 │ │ ├── sata_dwc.c │ │ ├── sata_dwc.h │ │ ├── sata_sil.c │ │ ├── sata_sil.h │ │ ├── sata_sil3114.c │ │ ├── sata_sil3114.h │ │ ├── sil680.c │ │ ├── sym53c8xx.c │ │ └── systemace.c │ ├── dma │ │ ├── MCD_dmaApi.c │ │ ├── MCD_tasks.c │ │ ├── MCD_tasksInit.c │ │ ├── Makefile │ │ ├── apbh_dma.c │ │ ├── bam.c │ │ ├── fsl_dma.c │ │ └── omap3_dma.c │ ├── fpga │ │ ├── ACEX1K.c │ │ ├── Makefile │ │ ├── altera.c │ │ ├── cyclon2.c │ │ ├── fpga.c │ │ ├── ivm_core.c │ │ ├── lattice.c │ │ ├── spartan2.c │ │ ├── spartan3.c │ │ ├── stratixII.c │ │ ├── virtex2.c │ │ └── xilinx.c │ ├── gpio │ │ ├── Makefile │ │ ├── altera_pio.c │ │ ├── at91_gpio.c │ │ ├── da8xx_gpio.c │ │ ├── kw_gpio.c │ │ ├── mpc83xx_gpio.c │ │ ├── mvgpio.c │ │ ├── mvgpio.h │ │ ├── mvmfp.c │ │ ├── mxc_gpio.c │ │ ├── mxs_gpio.c │ │ ├── pca953x.c │ │ ├── pca9698.c │ │ ├── s5p_gpio.c │ │ ├── sandbox.c │ │ ├── spear_gpio.c │ │ └── tegra_gpio.c │ ├── hwmon │ │ ├── Makefile │ │ ├── adm1021.c │ │ ├── adt7460.c │ │ ├── ds1621.c │ │ ├── ds1722.c │ │ ├── ds1775.c │ │ ├── lm63.c │ │ ├── lm73.c │ │ ├── lm75.c │ │ └── lm81.c │ ├── i2c │ │ ├── Makefile │ │ ├── bfin-twi_i2c.c │ │ ├── davinci_i2c.c │ │ ├── designware_i2c.c │ │ ├── designware_i2c.h │ │ ├── fsl_i2c.c │ │ ├── ipq40xx_i2c.c │ │ ├── ipq40xx_i2c.h │ │ ├── ipq_i2c.c │ │ ├── ipq_i2c.h │ │ ├── mv_i2c.c │ │ ├── mv_i2c.h │ │ ├── mvtwsi.c │ │ ├── mxc_i2c.c │ │ ├── mxs_i2c.c │ │ ├── omap1510_i2c.c │ │ ├── omap24xx_i2c.c │ │ ├── omap24xx_i2c.h │ │ ├── pca9564_i2c.c │ │ ├── ppc4xx_i2c.c │ │ ├── s3c24x0_i2c.c │ │ ├── s3c44b0_i2c.c │ │ ├── sh_i2c.c │ │ ├── sh_sh7734_i2c.c │ │ ├── soft_i2c.c │ │ ├── tegra_i2c.c │ │ ├── tsi108_i2c.c │ │ ├── u8500_i2c.c │ │ └── u8500_i2c.h │ ├── input │ │ ├── Makefile │ │ ├── i8042.c │ │ ├── input.c │ │ ├── key_matrix.c │ │ ├── keyboard.c │ │ ├── pc_keyb.c │ │ ├── ps2mult.c │ │ ├── ps2ser.c │ │ └── tegra-kbc.c │ ├── misc │ │ ├── Makefile │ │ ├── ali512x.c │ │ ├── ds4510.c │ │ ├── fsl_law.c │ │ ├── gpio_led.c │ │ ├── mc9sdz60.c │ │ ├── ns87308.c │ │ ├── pdsp188x.c │ │ ├── pmic_core.c │ │ ├── pmic_dialog.c │ │ ├── pmic_fsl.c │ │ ├── pmic_i2c.c │ │ ├── pmic_max8997.c │ │ ├── pmic_max8998.c │ │ ├── pmic_spi.c │ │ ├── status_led.c │ │ └── twl4030_led.c │ ├── mmc │ │ ├── Makefile │ │ ├── arm_pl180_mmci.c │ │ ├── arm_pl180_mmci.h │ │ ├── bfin_sdh.c │ │ ├── davinci_mmc.c │ │ ├── fsl_esdhc.c │ │ ├── ftsdc010_esdhc.c │ │ ├── gen_atmel_mci.c │ │ ├── mmc.c │ │ ├── mmc_spi.c │ │ ├── mv_sdhci.c │ │ ├── mxcmmc.c │ │ ├── mxsmmc.c │ │ ├── omap_hsmmc.c │ │ ├── pxa_mmc.c │ │ ├── pxa_mmc.h │ │ ├── pxa_mmc_gen.c │ │ ├── qca_mmc.c │ │ ├── qca_mmc.h │ │ ├── s5p_sdhci.c │ │ ├── sdhci.c │ │ ├── sh_mmcif.c │ │ ├── sh_mmcif.h │ │ ├── tegra_mmc.c │ │ └── tegra_mmc.h │ ├── mtd │ │ ├── Makefile │ │ ├── at45.c │ │ ├── cfi_flash.c │ │ ├── cfi_mtd.c │ │ ├── dataflash.c │ │ ├── flash_wrapper.c │ │ ├── ftsmc020.c │ │ ├── ipq_nand.c │ │ ├── ipq_spi_flash.c │ │ ├── jedec_flash.c │ │ ├── mtdconcat.c │ │ ├── mtdcore.c │ │ ├── mtdpart.c │ │ ├── mw_eeprom.c │ │ ├── nand │ │ │ ├── Makefile │ │ │ ├── atmel_nand.c │ │ │ ├── atmel_nand_ecc.h │ │ │ ├── bfin_nand.c │ │ │ ├── davinci_nand.c │ │ │ ├── diskonchip.c │ │ │ ├── fsl_elbc_nand.c │ │ │ ├── fsl_ifc_nand.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 │ │ │ ├── mxs_nand.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_gpmc.c │ │ │ ├── s3c2410_nand.c │ │ │ └── s3c64xx.c │ │ ├── onenand │ │ │ ├── Makefile │ │ │ ├── onenand_base.c │ │ │ ├── onenand_bbt.c │ │ │ ├── onenand_spl.c │ │ │ ├── onenand_uboot.c │ │ │ └── samsung.c │ │ ├── qpic_nand.c │ │ ├── spi │ │ │ ├── Makefile │ │ │ ├── atmel.c │ │ │ ├── eeprom_m95xxx.c │ │ │ ├── eon.c │ │ │ ├── giga.c │ │ │ ├── macronix.c │ │ │ ├── ramtron.c │ │ │ ├── spansion.c │ │ │ ├── spi_flash.c │ │ │ ├── spi_flash_internal.h │ │ │ ├── spi_nand.c │ │ │ ├── spi_nand_dev.h │ │ │ ├── spi_nor_generic.c │ │ │ ├── spi_spl_load.c │ │ │ ├── sst.c │ │ │ ├── stmicro.c │ │ │ └── winbond.c │ │ ├── st_smi.c │ │ └── ubi │ │ │ ├── Makefile │ │ │ ├── build.c │ │ │ ├── crc32.c │ │ │ ├── crc32defs.h │ │ │ ├── crc32table.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── eba.c │ │ │ ├── io.c │ │ │ ├── kapi.c │ │ │ ├── misc.c │ │ │ ├── scan.c │ │ │ ├── scan.h │ │ │ ├── ubi-media.h │ │ │ ├── ubi.h │ │ │ ├── upd.c │ │ │ ├── vmt.c │ │ │ ├── vtbl.c │ │ │ └── wl.c │ ├── net │ │ ├── 4xx_enet.c │ │ ├── 8390.h │ │ ├── Makefile │ │ ├── altera_tse.c │ │ ├── altera_tse.h │ │ ├── armada100_fec.c │ │ ├── armada100_fec.h │ │ ├── at91_emac.c │ │ ├── ax88180.c │ │ ├── ax88180.h │ │ ├── ax88796.c │ │ ├── ax88796.h │ │ ├── bfin_mac.c │ │ ├── bfin_mac.h │ │ ├── calxedaxgmac.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 │ │ │ ├── dtsec.c │ │ │ ├── eth.c │ │ │ ├── fm.c │ │ │ ├── fm.h │ │ │ ├── init.c │ │ │ ├── p1023.c │ │ │ ├── p3060.c │ │ │ ├── p4080.c │ │ │ ├── p5020.c │ │ │ ├── tgec.c │ │ │ └── tgec_phy.c │ │ ├── fsl_mcdmafec.c │ │ ├── fsl_mdio.c │ │ ├── ftgmac100.c │ │ ├── ftgmac100.h │ │ ├── ftmac100.c │ │ ├── ftmac100.h │ │ ├── greth.c │ │ ├── greth.h │ │ ├── inca-ip_sw.c │ │ ├── ipq │ │ │ ├── ipq_gmac.h │ │ │ ├── ipq_gmac_eth.c │ │ │ └── ipq_mdio.c │ │ ├── ipq40xx │ │ │ ├── ipq40xx_edma_eth.c │ │ │ ├── ipq40xx_edma_eth.h │ │ │ ├── ipq40xx_ess_sw.c │ │ │ ├── ipq40xx_ess_sw.h │ │ │ ├── ipq40xx_mdio.c │ │ │ ├── ipq40xx_mdio.h │ │ │ ├── ipq40xx_qca8033.c │ │ │ ├── ipq40xx_qca8033.h │ │ │ ├── ipq40xx_qca8075.c │ │ │ └── ipq40xx_qca8075.h │ │ ├── ks8695eth.c │ │ ├── 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 │ │ ├── netarm_eth.c │ │ ├── netarm_eth.h │ │ ├── netconsole.c │ │ ├── nicext.h │ │ ├── ns8382x.c │ │ ├── nss │ │ │ ├── mii_gpio.c │ │ │ ├── nss_gmac_clocks.h │ │ │ ├── synopGMAC_Dev.c │ │ │ ├── synopGMAC_Dev.h │ │ │ ├── synopGMAC_network_interface.c │ │ │ ├── synopGMAC_plat.h │ │ │ ├── synop_mdio_acc.c │ │ │ ├── uboot_skb.c │ │ │ └── uboot_skb.h │ │ ├── pcnet.c │ │ ├── phy │ │ │ ├── Makefile │ │ │ ├── atheros.c │ │ │ ├── broadcom.c │ │ │ ├── davicom.c │ │ │ ├── generic_10g.c │ │ │ ├── lxt.c │ │ │ ├── marvell.c │ │ │ ├── micrel.c │ │ │ ├── miiphybb.c │ │ │ ├── mv88e61xx.c │ │ │ ├── mv88e61xx.h │ │ │ ├── natsemi.c │ │ │ ├── phy.c │ │ │ ├── realtek.c │ │ │ ├── smsc.c │ │ │ ├── teranetics.c │ │ │ └── vitesse.c │ │ ├── plb2800_eth.c │ │ ├── rtl8139.c │ │ ├── rtl8169.c │ │ ├── sh_eth.c │ │ ├── sh_eth.h │ │ ├── smc91111.c │ │ ├── smc91111.h │ │ ├── smc911x.c │ │ ├── smc911x.h │ │ ├── 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 │ ├── pci │ │ ├── Makefile │ │ ├── fsl_pci_init.c │ │ ├── pci.c │ │ ├── pci_auto.c │ │ ├── pci_ftpci100.c │ │ ├── pci_ftpci100.h │ │ ├── pci_indirect.c │ │ ├── pci_ipq.c │ │ ├── pci_ipq40xx.c │ │ ├── pci_ixp.c │ │ ├── pci_sh4.c │ │ ├── pci_sh7751.c │ │ ├── pci_sh7780.c │ │ ├── tsi108_pci.c │ │ └── w83c553f.c │ ├── pcmcia │ │ ├── Makefile │ │ ├── i82365.c │ │ ├── marubun_pcmcia.c │ │ ├── mpc8xx_pcmcia.c │ │ ├── rpx_pcmcia.c │ │ ├── ti_pci1410a.c │ │ └── tqm8xx_pcmcia.c │ ├── power │ │ ├── Makefile │ │ ├── ftpmu010.c │ │ ├── tps6586x.c │ │ ├── twl4030.c │ │ ├── twl6030.c │ │ └── twl6035.c │ ├── qe │ │ ├── Makefile │ │ ├── fdt.c │ │ ├── qe.c │ │ ├── qe.h │ │ ├── uccf.c │ │ ├── uccf.h │ │ ├── uec.c │ │ ├── uec.h │ │ ├── uec_phy.c │ │ └── uec_phy.h │ ├── rtc │ │ ├── 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 │ │ ├── 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 │ │ ├── mxsrtc.c │ │ ├── pcf8563.c │ │ ├── pl031.c │ │ ├── pt7c4338.c │ │ ├── rs5c372.c │ │ ├── rtc4543.c │ │ ├── rv3029.c │ │ ├── rx8025.c │ │ ├── s3c24x0_rtc.c │ │ ├── s3c44b0_rtc.c │ │ └── x1205.c │ ├── serial │ │ ├── Makefile │ │ ├── altera_jtag_uart.c │ │ ├── altera_uart.c │ │ ├── arm_dcc.c │ │ ├── atmel_usart.c │ │ ├── atmel_usart.h │ │ ├── lpc32xx_hsuart.c │ │ ├── mcfuart.c │ │ ├── ns16550.c │ │ ├── ns9750_serial.c │ │ ├── opencores_yanu.c │ │ ├── qcom_uart.c │ │ ├── s3c4510b_uart.c │ │ ├── s3c4510b_uart.h │ │ ├── s3c64xx.c │ │ ├── sandbox.c │ │ ├── serial.c │ │ ├── serial_clps7111.c │ │ ├── serial_imx.c │ │ ├── serial_ixp.c │ │ ├── serial_ks8695.c │ │ ├── serial_lh7a40x.c │ │ ├── serial_lpc2292.c │ │ ├── serial_max3100.c │ │ ├── serial_mxc.c │ │ ├── serial_netarm.c │ │ ├── serial_pl01x.c │ │ ├── serial_pl01x.h │ │ ├── serial_pxa.c │ │ ├── serial_s3c24x0.c │ │ ├── serial_s3c44b0.c │ │ ├── serial_s5p.c │ │ ├── serial_sa1100.c │ │ ├── serial_sh.c │ │ ├── serial_sh.h │ │ ├── serial_xuartlite.c │ │ ├── usbtty.c │ │ └── usbtty.h │ ├── spi │ │ ├── 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 │ │ ├── cf_spi.c │ │ ├── davinci_spi.c │ │ ├── davinci_spi.h │ │ ├── fsl_espi.c │ │ ├── ipq_spi.c │ │ ├── ipq_spi.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 │ │ ├── qca_qup_spi.c │ │ ├── qca_qup_spi.h │ │ ├── qca_qup_spi_bam.c │ │ ├── qca_qup_spi_bam.h │ │ ├── sh_spi.c │ │ ├── sh_spi.h │ │ ├── soft_spi.c │ │ └── tegra_spi.c │ ├── tpm │ │ ├── Makefile │ │ └── generic_lpc_tpm.c │ ├── twserial │ │ ├── Makefile │ │ └── soft_tws.c │ ├── usb │ │ ├── eth │ │ │ ├── Makefile │ │ │ ├── asix.c │ │ │ ├── smsc95xx.c │ │ │ └── usb_ether.c │ │ ├── gadget │ │ │ ├── Makefile │ │ │ ├── composite.c │ │ │ ├── config.c │ │ │ ├── core.c │ │ │ ├── designware_udc.c │ │ │ ├── ep0.c │ │ │ ├── ep0.h │ │ │ ├── epautoconf.c │ │ │ ├── ether.c │ │ │ ├── gadget_chips.h │ │ │ ├── mpc8xx_udc.c │ │ │ ├── mv_udc.c │ │ │ ├── ndis.h │ │ │ ├── omap1510_udc.c │ │ │ ├── pxa27x_udc.c │ │ │ ├── regs-otg.h │ │ │ ├── rndis.c │ │ │ ├── rndis.h │ │ │ ├── s3c_udc_otg.c │ │ │ ├── s3c_udc_otg_xfer_dma.c │ │ │ └── usbstring.c │ │ ├── host │ │ │ ├── Makefile │ │ │ ├── ehci-armada100.c │ │ │ ├── ehci-atmel.c │ │ │ ├── ehci-core.h │ │ │ ├── ehci-exynos.c │ │ │ ├── ehci-fsl.c │ │ │ ├── ehci-hcd.c │ │ │ ├── ehci-ixp4xx.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-tegra.c │ │ │ ├── ehci-vct.c │ │ │ ├── ehci.h │ │ │ ├── isp116x-hcd.c │ │ │ ├── isp116x.h │ │ │ ├── ohci-at91.c │ │ │ ├── ohci-hcd.c │ │ │ ├── ohci.h │ │ │ ├── r8a66597-hcd.c │ │ │ ├── r8a66597.h │ │ │ ├── s3c64xx-hcd.c │ │ │ ├── sl811-hcd.c │ │ │ ├── sl811.h │ │ │ ├── utmi-armada100.c │ │ │ ├── xhci-exynos5.c │ │ │ ├── xhci-ipq.c │ │ │ ├── xhci-ipq40xx.c │ │ │ ├── xhci-mem.c │ │ │ ├── xhci-ring.c │ │ │ ├── xhci.c │ │ │ └── xhci.h │ │ ├── musb │ │ │ ├── Makefile │ │ │ ├── am35x.c │ │ │ ├── am35x.h │ │ │ ├── blackfin_usb.c │ │ │ ├── blackfin_usb.h │ │ │ ├── da8xx.c │ │ │ ├── da8xx.h │ │ │ ├── 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 │ │ │ └── twl4030.c │ │ └── ulpi │ │ │ ├── Makefile │ │ │ ├── omap-ulpi-viewport.c │ │ │ ├── ulpi-viewport.c │ │ │ └── ulpi.c │ ├── video │ │ ├── Makefile │ │ ├── amba.c │ │ ├── ati_ids.h │ │ ├── ati_radeon_fb.c │ │ ├── ati_radeon_fb.h │ │ ├── atmel_hlcdfb.c │ │ ├── atmel_lcdfb.c │ │ ├── bus_vcxk.c │ │ ├── cfb_console.c │ │ ├── ct69000.c │ │ ├── da8xx-fb.c │ │ ├── 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 │ │ ├── fsl_diu_fb.c │ │ ├── ipu.h │ │ ├── ipu_common.c │ │ ├── ipu_disp.c │ │ ├── ipu_regs.h │ │ ├── mb862xx.c │ │ ├── mb86r0xgdc.c │ │ ├── mx3fb.c │ │ ├── mxc_ipuv3_fb.c │ │ ├── mxcfb.h │ │ ├── omap3_dss.c │ │ ├── s6e63d6.c │ │ ├── s6e8ax0.c │ │ ├── sed13806.c │ │ ├── sed156x.c │ │ ├── sm501.c │ │ ├── smiLynxEM.c │ │ ├── videomodes.c │ │ └── videomodes.h │ └── watchdog │ │ ├── Makefile │ │ ├── at91sam9_wdt.c │ │ └── ftwdt010_wdt.c ├── dts │ └── Makefile ├── examples │ ├── api │ │ ├── Makefile │ │ ├── crt0.S │ │ ├── demo.c │ │ ├── glue.c │ │ ├── glue.h │ │ └── libgenwrap.c │ └── standalone │ │ ├── 82559_eeprom.c │ │ ├── Makefile │ │ ├── README.smc91111_eeprom │ │ ├── atmel_df_pow2.c │ │ ├── eepro100_eeprom.c │ │ ├── hello_world.c │ │ ├── interrupt.c │ │ ├── mem_to_mem_idma2intr.c │ │ ├── mips.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 │ │ └── x86-testapp.c ├── fs │ ├── Makefile │ ├── cramfs │ │ ├── Makefile │ │ ├── cramfs.c │ │ └── uncompress.c │ ├── ext2 │ │ ├── Makefile │ │ ├── dev.c │ │ └── ext2fs.c │ ├── fat │ │ ├── Makefile │ │ ├── fat.c │ │ ├── fat_write.c │ │ └── file.c │ ├── fdos │ │ ├── Makefile │ │ ├── dev.c │ │ ├── dos.h │ │ ├── fat.c │ │ ├── fdos.c │ │ ├── fdos.h │ │ ├── fs.c │ │ ├── subdir.c │ │ └── vfat.c │ ├── jffs2 │ │ ├── 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 │ │ ├── Makefile │ │ ├── dev.c │ │ ├── mode_string.c │ │ ├── reiserfs.c │ │ └── reiserfs_private.h │ ├── ubifs │ │ ├── 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 │ │ ├── README-linux │ │ ├── devextras.h │ │ ├── yaffs_checkptrw.c │ │ ├── yaffs_checkptrw.h │ │ ├── yaffs_ecc.c │ │ ├── yaffs_ecc.h │ │ ├── yaffs_flashif.h │ │ ├── yaffs_guts.c │ │ ├── yaffs_guts.h │ │ ├── yaffs_malloc.h │ │ ├── yaffs_mtdif.c │ │ ├── yaffs_mtdif.h │ │ ├── yaffs_mtdif2.c │ │ ├── yaffs_mtdif2.h │ │ ├── yaffs_nand.c │ │ ├── yaffs_nand.h │ │ ├── yaffs_nandemul2k.h │ │ ├── yaffs_packedtags1.c │ │ ├── yaffs_packedtags1.h │ │ ├── yaffs_packedtags2.c │ │ ├── yaffs_packedtags2.h │ │ ├── yaffs_qsort.c │ │ ├── yaffs_qsort.h │ │ ├── yaffs_ramdisk.h │ │ ├── yaffs_tagscompat.c │ │ ├── yaffs_tagscompat.h │ │ ├── yaffs_tagsvalidity.c │ │ ├── yaffs_tagsvalidity.h │ │ ├── yaffscfg.c │ │ ├── yaffscfg.h │ │ ├── yaffsfs.c │ │ ├── yaffsfs.h │ │ ├── yaffsinterface.h │ │ ├── ydirectenv.h │ │ └── yportenv.h ├── include │ ├── 74xx_7xx.h │ ├── ACEX1K.h │ ├── MCD_dma.h │ ├── MCD_progCheck.h │ ├── MCD_tasksInit.h │ ├── SA-1100.h │ ├── _exports.h │ ├── addr_map.h │ ├── aes.h │ ├── ahci.h │ ├── ali512x.h │ ├── altera.h │ ├── amba_clcd.h │ ├── ambapp.h │ ├── andestech │ │ └── andes_pcu.h │ ├── api_public.h │ ├── arm925t.h │ ├── armcoremodule.h │ ├── asm-generic │ │ ├── errno.h │ │ ├── gpio.h │ │ ├── ioctl.h │ │ ├── signal.h │ │ └── unaligned.h │ ├── asm-offsets.h │ ├── asm │ │ ├── arch │ │ ├── arch-a320 │ │ │ └── a320.h │ │ ├── arch-am33xx │ │ │ ├── clock.h │ │ │ ├── clocks_am33xx.h │ │ │ ├── common_def.h │ │ │ ├── cpu.h │ │ │ ├── ddr_defs.h │ │ │ ├── hardware.h │ │ │ ├── i2c.h │ │ │ ├── mmc_host_def.h │ │ │ ├── omap.h │ │ │ └── sys_proto.h │ │ ├── arch-arm720t │ │ │ ├── hardware.h │ │ │ ├── netarm_dma_module.h │ │ │ ├── netarm_eni_module.h │ │ │ ├── netarm_eth_module.h │ │ │ ├── netarm_gen_module.h │ │ │ ├── netarm_mem_module.h │ │ │ ├── netarm_registers.h │ │ │ └── netarm_ser_module.h │ │ ├── arch-armada100 │ │ │ ├── armada100.h │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── mfp.h │ │ │ ├── spi.h │ │ │ └── utmi-armada100.h │ │ ├── arch-armv7 │ │ │ ├── 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 │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ └── hardware.h │ │ ├── arch-davinci │ │ │ ├── aintc_defs.h │ │ │ ├── da850_lowlevel.h │ │ │ ├── da8xx-fb.h │ │ │ ├── davinci_misc.h │ │ │ ├── ddr2_defs.h │ │ │ ├── dm365_lowlevel.h │ │ │ ├── emac_defs.h │ │ │ ├── emif_defs.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── i2c_defs.h │ │ │ ├── nand_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 │ │ │ ├── clk.h │ │ │ ├── clock.h │ │ │ ├── cpu.h │ │ │ ├── dmc.h │ │ │ ├── dsim.h │ │ │ ├── ehci.h │ │ │ ├── fb.h │ │ │ ├── gpio.h │ │ │ ├── mipi_dsim.h │ │ │ ├── mmc.h │ │ │ ├── periph.h │ │ │ ├── pinmux.h │ │ │ ├── power.h │ │ │ ├── pwm.h │ │ │ ├── sromc.h │ │ │ ├── sys_proto.h │ │ │ ├── system.h │ │ │ ├── tzpc.h │ │ │ ├── uart.h │ │ │ ├── watchdog.h │ │ │ └── xhci-exynos.h │ │ ├── arch-imx │ │ │ └── imx-regs.h │ │ ├── arch-ipq40xx │ │ │ ├── ess │ │ │ │ └── ipq40xx_edma.h │ │ │ ├── iomap.h │ │ │ ├── scm.h │ │ │ ├── smem.h │ │ │ └── timer.h │ │ ├── arch-ipq806x │ │ │ ├── clock.h │ │ │ ├── iomap.h │ │ │ ├── nss │ │ │ │ ├── clock.h │ │ │ │ ├── ipq_mdio.h │ │ │ │ ├── msm_ipq806x_gmac.h │ │ │ │ └── nss_reg.h │ │ │ ├── scm.h │ │ │ ├── smem.h │ │ │ └── timer.h │ │ ├── arch-ixp │ │ │ ├── ixp425.h │ │ │ └── ixp425pci.h │ │ ├── arch-kirkwood │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── kirkwood.h │ │ │ ├── kw88f6192.h │ │ │ ├── kw88f6281.h │ │ │ ├── mpp.h │ │ │ └── spi.h │ │ ├── arch-ks8695 │ │ │ └── platform.h │ │ ├── arch-lpc2292 │ │ │ ├── hardware.h │ │ │ ├── lpc2292_registers.h │ │ │ └── spi.h │ │ ├── arch-lpc32xx │ │ │ ├── clk.h │ │ │ ├── config.h │ │ │ ├── cpu.h │ │ │ ├── emc.h │ │ │ ├── sys_proto.h │ │ │ ├── timer.h │ │ │ ├── uart.h │ │ │ └── wdt.h │ │ ├── arch-mb86r0x │ │ │ ├── hardware.h │ │ │ └── mb86r0x.h │ │ ├── arch-mx25 │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── imx-regs.h │ │ │ ├── imx25-pinmux.h │ │ │ ├── macro.h │ │ │ └── sys_proto.h │ │ ├── arch-mx27 │ │ │ ├── clock.h │ │ │ ├── imx-regs.h │ │ │ └── mxcmmc.h │ │ ├── arch-mx28 │ │ │ ├── clock.h │ │ │ ├── dma.h │ │ │ ├── gpio.h │ │ │ ├── imx-regs.h │ │ │ ├── iomux-mx28.h │ │ │ ├── iomux.h │ │ │ ├── regs-apbh.h │ │ │ ├── regs-base.h │ │ │ ├── regs-bch.h │ │ │ ├── regs-clkctrl.h │ │ │ ├── regs-common.h │ │ │ ├── regs-digctl.h │ │ │ ├── regs-gpmi.h │ │ │ ├── regs-i2c.h │ │ │ ├── regs-lcdif.h │ │ │ ├── regs-lradc.h │ │ │ ├── regs-ocotp.h │ │ │ ├── regs-pinctrl.h │ │ │ ├── regs-power.h │ │ │ ├── regs-rtc.h │ │ │ ├── regs-ssp.h │ │ │ ├── regs-timrot.h │ │ │ ├── regs-usb.h │ │ │ ├── regs-usbphy.h │ │ │ └── sys_proto.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.h │ │ │ ├── lowlevel_macro.S │ │ │ ├── mx35_pins.h │ │ │ └── sys_proto.h │ │ ├── arch-mx5 │ │ │ ├── clock.h │ │ │ ├── crm_regs.h │ │ │ ├── gpio.h │ │ │ ├── imx-regs.h │ │ │ ├── iomux.h │ │ │ ├── mx5x_pins.h │ │ │ └── sys_proto.h │ │ ├── arch-mx6 │ │ │ ├── clock.h │ │ │ ├── crm_regs.h │ │ │ ├── gpio.h │ │ │ ├── imx-regs.h │ │ │ ├── iomux-v3.h │ │ │ ├── mx6x_pins.h │ │ │ └── sys_proto.h │ │ ├── arch-nomadik │ │ │ ├── gpio.h │ │ │ └── mtu.h │ │ ├── arch-omap24xx │ │ │ ├── bits.h │ │ │ ├── clocks.h │ │ │ ├── i2c.h │ │ │ ├── mem.h │ │ │ ├── mux.h │ │ │ ├── omap2420.h │ │ │ ├── sys_info.h │ │ │ └── sys_proto.h │ │ ├── arch-omap3 │ │ │ ├── am35x_def.h │ │ │ ├── clocks.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 │ │ │ ├── mux.h │ │ │ ├── omap3-regs.h │ │ │ ├── omap3.h │ │ │ ├── omap_gpmc.h │ │ │ └── sys_proto.h │ │ ├── arch-omap4 │ │ │ ├── clocks.h │ │ │ ├── cpu.h │ │ │ ├── ehci.h │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── mmc_host_def.h │ │ │ ├── mux_omap4.h │ │ │ ├── omap.h │ │ │ └── sys_proto.h │ │ ├── arch-omap5 │ │ │ ├── clocks.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── mmc_host_def.h │ │ │ ├── mux_omap5.h │ │ │ ├── omap.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 │ │ ├── arch-qcom-common │ │ │ ├── bam.h │ │ │ ├── clk.h │ │ │ ├── ebi2.h │ │ │ ├── gpio.h │ │ │ ├── gsbi.h │ │ │ ├── nand.h │ │ │ ├── qpic_nand.h │ │ │ └── uart.h │ │ ├── arch-s3c24x0 │ │ │ ├── memory.h │ │ │ ├── s3c2400.h │ │ │ ├── s3c2410.h │ │ │ ├── s3c2440.h │ │ │ ├── s3c24x0.h │ │ │ └── s3c24x0_cpu.h │ │ ├── arch-s3c44b0 │ │ │ └── hardware.h │ │ ├── arch-s3c4510b │ │ │ └── hardware.h │ │ ├── arch-s3c64xx │ │ │ ├── hardware.h │ │ │ ├── s3c6400.h │ │ │ └── s3c64x0.h │ │ ├── arch-s5pc1xx │ │ │ ├── clk.h │ │ │ ├── clock.h │ │ │ ├── cpu.h │ │ │ ├── gpio.h │ │ │ ├── mmc.h │ │ │ ├── power.h │ │ │ ├── pwm.h │ │ │ ├── sromc.h │ │ │ ├── sys_proto.h │ │ │ ├── uart.h │ │ │ └── watchdog.h │ │ ├── arch-sa1100 │ │ │ └── bitfield.h │ │ ├── arch-spear │ │ │ ├── clk.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── spr_defs.h │ │ │ ├── spr_emi.h │ │ │ ├── spr_gpt.h │ │ │ ├── spr_misc.h │ │ │ ├── spr_ssp.h │ │ │ └── spr_syscntl.h │ │ ├── arch-tegra2 │ │ │ ├── ap20.h │ │ │ ├── apb_misc.h │ │ │ ├── board.h │ │ │ ├── clk_rst.h │ │ │ ├── clock.h │ │ │ ├── emc.h │ │ │ ├── flow.h │ │ │ ├── funcmux.h │ │ │ ├── fuse.h │ │ │ ├── gp_padctrl.h │ │ │ ├── gpio.h │ │ │ ├── mmc.h │ │ │ ├── pinmux.h │ │ │ ├── pmc.h │ │ │ ├── pmu.h │ │ │ ├── scu.h │ │ │ ├── sdram_param.h │ │ │ ├── sys_proto.h │ │ │ ├── tegra2.h │ │ │ ├── tegra_i2c.h │ │ │ ├── tegra_spi.h │ │ │ ├── timer.h │ │ │ ├── uart-spi-switch.h │ │ │ ├── uart.h │ │ │ ├── usb.h │ │ │ └── warmboot.h │ │ ├── arch-tnetv107x │ │ │ ├── clock.h │ │ │ ├── emif_defs.h │ │ │ ├── hardware.h │ │ │ ├── mux.h │ │ │ └── nand_defs.h │ │ ├── arch-u8500 │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── hardware.h │ │ │ ├── sys_proto.h │ │ │ └── u8500.h │ │ ├── armv7.h │ │ ├── assembler.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── bootm.h │ │ ├── byteorder.h │ │ ├── cache.h │ │ ├── config.h │ │ ├── dma-mapping.h │ │ ├── ehci-omap.h │ │ ├── emif.h │ │ ├── errno.h │ │ ├── global_data.h │ │ ├── gpio.h │ │ ├── hardware.h │ │ ├── io.h │ │ ├── linkage.h │ │ ├── mach-types.h │ │ ├── macro.h │ │ ├── memory.h │ │ ├── omap_common.h │ │ ├── omap_gpio.h │ │ ├── pl310.h │ │ ├── posix_types.h │ │ ├── proc-armv │ │ │ ├── domain.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ └── system.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── setup.h │ │ ├── sizes.h │ │ ├── string.h │ │ ├── system.h │ │ ├── types.h │ │ ├── u-boot-arm.h │ │ ├── u-boot.h │ │ ├── unaligned.h │ │ └── utils.h │ ├── at45.h │ ├── at91rm9200_i2c.h │ ├── at91rm9200_net.h │ ├── ata.h │ ├── atmel_hlcdc.h │ ├── atmel_lcdc.h │ ├── atmel_mci.h │ ├── autoconf.mk │ ├── autoconf.mk.dep │ ├── bcd.h │ ├── bcm5221.h │ ├── bedbug │ │ ├── bedbug.h │ │ ├── ppc.h │ │ ├── regs.h │ │ ├── tables.h │ │ └── type.h │ ├── bmp_layout.h │ ├── bootstage.h │ ├── bus_vcxk.h │ ├── bzlib.h │ ├── circbuf.h │ ├── clps7111.h │ ├── cmd_spl.h │ ├── cmd_tftpServer.h │ ├── command.h │ ├── common.h │ ├── commproc.h │ ├── compiler.h │ ├── config.h │ ├── config.mk │ ├── config_cmd_all.h │ ├── config_cmd_default.h │ ├── config_cmd_defaults.h │ ├── config_defaults.h │ ├── config_fallbacks.h │ ├── config_phylib_all_drivers.h │ ├── configs │ │ ├── 4g-ac53u.h │ │ ├── A3000.h │ │ ├── ADCIOP.h │ │ ├── ADS860.h │ │ ├── AMX860.h │ │ ├── AP1000.h │ │ ├── APC405.h │ │ ├── AR405.h │ │ ├── ASH405.h │ │ ├── Adder.h │ │ ├── AdderUSB.h │ │ ├── Alaska8220.h │ │ ├── BC3450.h │ │ ├── BMW.h │ │ ├── BSC9131RDB.h │ │ ├── CANBT.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 │ │ ├── CRAYL1.h │ │ ├── CU824.h │ │ ├── DASA_SIM.h │ │ ├── DB64360.h │ │ ├── DB64460.h │ │ ├── DP405.h │ │ ├── DU405.h │ │ ├── DU440.h │ │ ├── EB+MCF-EV123.h │ │ ├── ELPPC.h │ │ ├── ELPT860.h │ │ ├── EP88x.h │ │ ├── ESTEEM192E.h │ │ ├── ETX094.h │ │ ├── EVB64260.h │ │ ├── EXBITGEN.h │ │ ├── FADS823.h │ │ ├── FADS850SAR.h │ │ ├── FADS860T.h │ │ ├── FLAGADM.h │ │ ├── FPS850L.h │ │ ├── FPS860L.h │ │ ├── G2000.h │ │ ├── GEN860T.h │ │ ├── GENIETV.h │ │ ├── HH405.h │ │ ├── HIDDEN_DRAGON.h │ │ ├── HUB405.h │ │ ├── HWW1U1A.h │ │ ├── IAD210.h │ │ ├── ICU862.h │ │ ├── IDS8247.h │ │ ├── IP860.h │ │ ├── IPHASE4539.h │ │ ├── ISPAN.h │ │ ├── IVML24.h │ │ ├── IVMS8.h │ │ ├── IceCube.h │ │ ├── JSE.h │ │ ├── KAREF.h │ │ ├── KUP4K.h │ │ ├── KUP4X.h │ │ ├── LANTEC.h │ │ ├── M5208EVBE.h │ │ ├── M52277EVB.h │ │ ├── M5235EVB.h │ │ ├── M5249EVB.h │ │ ├── M5253DEMO.h │ │ ├── M5253EVBE.h │ │ ├── M5271EVB.h │ │ ├── M5272C3.h │ │ ├── M5275EVB.h │ │ ├── M5282EVB.h │ │ ├── M53017EVB.h │ │ ├── M5329EVB.h │ │ ├── M5373EVB.h │ │ ├── M54451EVB.h │ │ ├── M54455EVB.h │ │ ├── M5475EVB.h │ │ ├── M5485EVB.h │ │ ├── MBX.h │ │ ├── MBX860T.h │ │ ├── MERGERBOX.h │ │ ├── METROBOX.h │ │ ├── MHPC.h │ │ ├── MIP405.h │ │ ├── ML2.h │ │ ├── MOUSSE.h │ │ ├── MPC8260ADS.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 │ │ ├── MPC86xADS.h │ │ ├── MPC885ADS.h │ │ ├── MUSENKI.h │ │ ├── MVBC_P.h │ │ ├── MVBLM7.h │ │ ├── MVBLUE.h │ │ ├── MVS1.h │ │ ├── MVSMR.h │ │ ├── MigoR.h │ │ ├── NETPHONE.h │ │ ├── NETTA.h │ │ ├── NETTA2.h │ │ ├── NETVIA.h │ │ ├── NSCU.h │ │ ├── NX823.h │ │ ├── OCRTC.h │ │ ├── ORSG.h │ │ ├── P1010RDB.h │ │ ├── P1022DS.h │ │ ├── P1023RDS.h │ │ ├── P1_P2_RDB.h │ │ ├── P2020COME.h │ │ ├── P2020DS.h │ │ ├── P2041RDB.h │ │ ├── P3041DS.h │ │ ├── P3060QDS.h │ │ ├── P3G4.h │ │ ├── P4080DS.h │ │ ├── P5020DS.h │ │ ├── PATI.h │ │ ├── PCI405.h │ │ ├── PCI5441.h │ │ ├── PCIPPC2.h │ │ ├── PCIPPC6.h │ │ ├── PIP405.h │ │ ├── PK1C20.h │ │ ├── PLU405.h │ │ ├── PM520.h │ │ ├── PM826.h │ │ ├── PM828.h │ │ ├── PMC405.h │ │ ├── PMC405DE.h │ │ ├── PMC440.h │ │ ├── PN62.h │ │ ├── PPChameleonEVB.h │ │ ├── QS823.h │ │ ├── QS850.h │ │ ├── QS860T.h │ │ ├── R360MPI.h │ │ ├── RBC823.h │ │ ├── RPXClassic.h │ │ ├── RPXlite.h │ │ ├── RPXlite_DW.h │ │ ├── RPXsuper.h │ │ ├── RRvision.h │ │ ├── Rattler.h │ │ ├── SBC8540.h │ │ ├── SCM.h │ │ ├── SIMPC8313.h │ │ ├── SM850.h │ │ ├── SPD823TS.h │ │ ├── SX1.h │ │ ├── SXNI855T.h │ │ ├── Sandpoint8240.h │ │ ├── Sandpoint8245.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 │ │ ├── TQM85xx.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 │ │ ├── Yukon8220.h │ │ ├── ZPC1900.h │ │ ├── ZUMA.h │ │ ├── a320evb.h │ │ ├── a4m072.h │ │ ├── acadia.h │ │ ├── actux1.h │ │ ├── actux2.h │ │ ├── actux3.h │ │ ├── actux4.h │ │ ├── adp-ag101.h │ │ ├── adp-ag101p.h │ │ ├── adp-ag102.h │ │ ├── aev.h │ │ ├── afeb9260.h │ │ ├── alpr.h │ │ ├── am335x_evm.h │ │ ├── am3517_crane.h │ │ ├── am3517_evm.h │ │ ├── amcc-common.h │ │ ├── ap325rxa.h │ │ ├── ap_sh4a_4a.h │ │ ├── apollon.h │ │ ├── aria.h │ │ ├── aspenite.h │ │ ├── astro_mcf5373l.h │ │ ├── at91rm9200ek.h │ │ ├── at91sam9260ek.h │ │ ├── at91sam9261ek.h │ │ ├── at91sam9263ek.h │ │ ├── at91sam9m10g45ek.h │ │ ├── at91sam9rlek.h │ │ ├── atc.h │ │ ├── atngw100.h │ │ ├── atstk1002.h │ │ ├── atstk1003.h │ │ ├── atstk1004.h │ │ ├── atstk1006.h │ │ ├── balloon3.h │ │ ├── bamboo.h │ │ ├── bct-brettl2.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 │ │ ├── bfin_adi_common.h │ │ ├── blackstamp.h │ │ ├── blackvme.h │ │ ├── bluestone.h │ │ ├── br4.h │ │ ├── bubinga.h │ │ ├── c2mon.h │ │ ├── ca9x4_ct_vxp.h │ │ ├── calimain.h │ │ ├── cam_enc_4xx.h │ │ ├── canmb.h │ │ ├── canyonlands.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_t35.h │ │ ├── cmi_mpc5xx.h │ │ ├── cobra5272.h │ │ ├── cogent_common.h │ │ ├── cogent_mpc8260.h │ │ ├── cogent_mpc8xx.h │ │ ├── colibri_pxa270.h │ │ ├── coreboot.h │ │ ├── corenet_ds.h │ │ ├── cpci5200.h │ │ ├── cpu9260.h │ │ ├── cpuat91.h │ │ ├── csb272.h │ │ ├── csb472.h │ │ ├── da830evm.h │ │ ├── da850evm.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 │ │ ├── debris.h │ │ ├── devkit3250.h │ │ ├── devkit8000.h │ │ ├── dig297.h │ │ ├── digsy_mtc.h │ │ ├── dkb.h │ │ ├── dlvision-10g.h │ │ ├── dlvision.h │ │ ├── dnp5370.h │ │ ├── dns325.h │ │ ├── dockstar.h │ │ ├── dreamplug.h │ │ ├── dvlhost.h │ │ ├── eNET.h │ │ ├── eXalion.h │ │ ├── ea20.h │ │ ├── eb_cpux9k2.h │ │ ├── ebony.h │ │ ├── ecovec.h │ │ ├── edminiv2.h │ │ ├── efikamx.h │ │ ├── enbw_cmc.h │ │ ├── ep8248.h │ │ ├── ep8260.h │ │ ├── ep82xxm.h │ │ ├── espt.h │ │ ├── ethernut5.h │ │ ├── favr-32-ezkit.h │ │ ├── flea3.h │ │ ├── fx12mm.h │ │ ├── galaxy5200.h │ │ ├── gdppc440etx.h │ │ ├── gplugd.h │ │ ├── gr_cpci_ax2000.h │ │ ├── gr_ep2s60.h │ │ ├── gr_xc3s_1500.h │ │ ├── grasshopper.h │ │ ├── grsim.h │ │ ├── grsim_leon2.h │ │ ├── gth2.h │ │ ├── guruplug.h │ │ ├── gw8260.h │ │ ├── h2_p2_dbg_board.h │ │ ├── hammerhead.h │ │ ├── harmony.h │ │ ├── hawkboard.h │ │ ├── hermes.h │ │ ├── highbank.h │ │ ├── hmi1001.h │ │ ├── hymod.h │ │ ├── ib62x0.h │ │ ├── ibf-dsp561.h │ │ ├── icon.h │ │ ├── idmr.h │ │ ├── igep00x0.h │ │ ├── ima3-mx53.h │ │ ├── imx27lite-common.h │ │ ├── imx27lite.h │ │ ├── imx31_litekit.h │ │ ├── imx31_phycore.h │ │ ├── incaip.h │ │ ├── inka4x0.h │ │ ├── integratorap.h │ │ ├── integratorcp.h │ │ ├── intip.h │ │ ├── io.h │ │ ├── io64.h │ │ ├── iocon.h │ │ ├── ip04.h │ │ ├── ipek01.h │ │ ├── ipq40xx_cdp.h │ │ ├── ipq806x_cdp.h │ │ ├── jadecpu.h │ │ ├── jornada.h │ │ ├── jupiter.h │ │ ├── katmai.h │ │ ├── kilauea.h │ │ ├── km │ │ │ ├── keymile-common.h │ │ │ ├── km-powerpc.h │ │ │ ├── km82xx-common.h │ │ │ ├── km8321-common.h │ │ │ ├── km83xx-common.h │ │ │ └── km_arm.h │ │ ├── km8360.h │ │ ├── km_kirkwood.h │ │ ├── korat.h │ │ ├── kvme080.h │ │ ├── lacie_kw.h │ │ ├── linkstation.h │ │ ├── lsxl.h │ │ ├── luan.h │ │ ├── lubbock.h │ │ ├── lwmon.h │ │ ├── lwmon5.h │ │ ├── m28evk.h │ │ ├── magnesium.h │ │ ├── makalu.h │ │ ├── manroland │ │ │ ├── common.h │ │ │ └── mpc5200-common.h │ │ ├── mcc200.h │ │ ├── mcx.h │ │ ├── mecp5123.h │ │ ├── mecp5200.h │ │ ├── medcom.h │ │ ├── meesc.h │ │ ├── mgcoge.h │ │ ├── mgcoge3ne.h │ │ ├── microblaze-generic.h │ │ ├── mimc200.h │ │ ├── ml507.h │ │ ├── motionpro.h │ │ ├── mpc5121-common.h │ │ ├── mpc5121ads.h │ │ ├── mpc7448hpc2.h │ │ ├── mpc8308_p1m.h │ │ ├── mpq101.h │ │ ├── mpr2.h │ │ ├── ms7720se.h │ │ ├── ms7722se.h │ │ ├── ms7750se.h │ │ ├── mt_ventoux.h │ │ ├── muas3001.h │ │ ├── mucmc52.h │ │ ├── munices.h │ │ ├── mv-common.h │ │ ├── mv88f6281gtw_ge.h │ │ ├── mx1ads.h │ │ ├── mx25pdk.h │ │ ├── mx28evk.h │ │ ├── mx31ads.h │ │ ├── mx31pdk.h │ │ ├── mx35pdk.h │ │ ├── mx51evk.h │ │ ├── mx53ard.h │ │ ├── mx53evk.h │ │ ├── mx53loco.h │ │ ├── mx53smd.h │ │ ├── mx6qarm2.h │ │ ├── mx6qsabrelite.h │ │ ├── neo.h │ │ ├── nhk8815.h │ │ ├── nios2-generic.h │ │ ├── ns9750dev.h │ │ ├── o2dnt.h │ │ ├── ocotea.h │ │ ├── omap1510.h │ │ ├── omap1510inn.h │ │ ├── omap2420h4.h │ │ ├── omap3_beagle.h │ │ ├── omap3_evm.h │ │ ├── omap3_evm_common.h │ │ ├── omap3_evm_quick_mmc.h │ │ ├── omap3_evm_quick_nand.h │ │ ├── omap3_logic.h │ │ ├── omap3_mvblx.h │ │ ├── omap3_overo.h │ │ ├── omap3_pandora.h │ │ ├── omap3_sdp3430.h │ │ ├── omap3_zoom1.h │ │ ├── omap3_zoom2.h │ │ ├── omap4_common.h │ │ ├── omap4_panda.h │ │ ├── omap4_sdp4430.h │ │ ├── omap5912osk.h │ │ ├── omap5_evm.h │ │ ├── omap730.h │ │ ├── omap730p2.h │ │ ├── openrd.h │ │ ├── openrisc-generic.h │ │ ├── origen.h │ │ ├── otc570.h │ │ ├── p1_p2_rdb_pc.h │ │ ├── p3mx.h │ │ ├── p3p440.h │ │ ├── palmld.h │ │ ├── palmtc.h │ │ ├── paz00.h │ │ ├── pb1x00.h │ │ ├── pcm030.h │ │ ├── pcs440ep.h │ │ ├── pdm360ng.h │ │ ├── pdnb3.h │ │ ├── pf5200.h │ │ ├── plutux.h │ │ ├── pm9261.h │ │ ├── pm9263.h │ │ ├── pm9g45.h │ │ ├── pogo_e02.h │ │ ├── ppmc7xx.h │ │ ├── ppmc8260.h │ │ ├── pr1.h │ │ ├── pxa-common.h │ │ ├── pxa255_idp.h │ │ ├── qemu-mips.h │ │ ├── qi_lb60.h │ │ ├── qong.h │ │ ├── quad100hd.h │ │ ├── quantum.h │ │ ├── r0p7734.h │ │ ├── r2dplus.h │ │ ├── r7780mp.h │ │ ├── rd6281a.h │ │ ├── redwood.h │ │ ├── rsdproto.h │ │ ├── rsk7203.h │ │ ├── rsk7264.h │ │ ├── rsk7269.h │ │ ├── rt-ac58n.h │ │ ├── rt-ac58u.h │ │ ├── rt-ac58u_256MB.h │ │ ├── rt-ac58u_common.h │ │ ├── rt-ac82u.h │ │ ├── s5p_goni.h │ │ ├── s5pc210_universal.h │ │ ├── sacsng.h │ │ ├── sandbox.h │ │ ├── sbc35_a9g20.h │ │ ├── sbc405.h │ │ ├── sbc8349.h │ │ ├── sbc8548.h │ │ ├── sbc8560.h │ │ ├── sbc8641d.h │ │ ├── sc3.h │ │ ├── scb9328.h │ │ ├── seaboard.h │ │ ├── sequoia.h │ │ ├── sh7757lcr.h │ │ ├── sh7763rdp.h │ │ ├── sh7785lcr.h │ │ ├── sheevaplug.h │ │ ├── shmin.h │ │ ├── smdk2410.h │ │ ├── smdk5250.h │ │ ├── smdk6400.h │ │ ├── smdkc100.h │ │ ├── smdkv310.h │ │ ├── snapper9260.h │ │ ├── socrates.h │ │ ├── sorcery.h │ │ ├── spc1920.h │ │ ├── spear-common.h │ │ ├── spear3xx_evb.h │ │ ├── spear6xx_evb.h │ │ ├── spieval.h │ │ ├── stxgp3.h │ │ ├── stxssa.h │ │ ├── stxxtc.h │ │ ├── suvd3.h │ │ ├── svm_sc8xx.h │ │ ├── t3corp.h │ │ ├── taihu.h │ │ ├── taishan.h │ │ ├── tam3517-common.h │ │ ├── tb0229.h │ │ ├── tcm-bf518.h │ │ ├── tcm-bf537.h │ │ ├── tec.h │ │ ├── tegra2-common-post.h │ │ ├── tegra2-common.h │ │ ├── tk71.h │ │ ├── tnetv107x_evm.h │ │ ├── tny_a9260.h │ │ ├── top9000.h │ │ ├── trats.h │ │ ├── tricorder.h │ │ ├── trimslice.h │ │ ├── trizepsiv.h │ │ ├── tt01.h │ │ ├── tuxx1.h │ │ ├── twister.h │ │ ├── tx25.h │ │ ├── u8500_href.h │ │ ├── uc100.h │ │ ├── uc101.h │ │ ├── utx8245.h │ │ ├── v37.h │ │ ├── v38b.h │ │ ├── v5fx30teval.h │ │ ├── vct.h │ │ ├── ve8313.h │ │ ├── ventana.h │ │ ├── versatile.h │ │ ├── virtlab2.h │ │ ├── vision2.h │ │ ├── vl_ma2sc.h │ │ ├── vme8349.h │ │ ├── vpac270.h │ │ ├── walnut.h │ │ ├── whistler.h │ │ ├── xaeniax.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 │ ├── cramfs │ │ ├── cramfs_fs.h │ │ └── cramfs_fs_sb.h │ ├── crc.h │ ├── da9030.h │ ├── dataflash.h │ ├── ddr_spd.h │ ├── dialog_pmic.h │ ├── div64.h │ ├── dm9000.h │ ├── dm9161.h │ ├── dp83848.h │ ├── ds1722.h │ ├── ds4510.h │ ├── dtt.h │ ├── e500.h │ ├── elf.h │ ├── environment.h │ ├── errno.h │ ├── exports.h │ ├── ext2fs.h │ ├── faraday │ │ ├── ftahbc020s.h │ │ ├── ftpmu010.h │ │ ├── ftsdc010.h │ │ ├── ftsdmc020.h │ │ ├── ftsdmc021.h │ │ ├── ftsmc020.h │ │ ├── fttmr010.h │ │ └── ftwdt010_wdt.h │ ├── fat.h │ ├── fdc.h │ ├── fdt.h │ ├── fdt_support.h │ ├── fdtdec.h │ ├── fis.h │ ├── flash.h │ ├── flash_wrapper.h │ ├── fm_eth.h │ ├── fpga.h │ ├── fsl_diu_fb.h │ ├── fsl_esdhc.h │ ├── fsl_mdio.h │ ├── fsl_nfc.h │ ├── fsl_pmic.h │ ├── galileo │ │ ├── core.h │ │ ├── gt64260R.h │ │ ├── memory.h │ │ └── pci.h │ ├── gdsys_fpga.h │ ├── generated │ │ ├── cc_options.mk │ │ └── generic-asm-offsets.h │ ├── gpio.h │ ├── hush.h │ ├── hwconfig.h │ ├── i2c.h │ ├── i8042.h │ ├── ide.h │ ├── image.h │ ├── input.h │ ├── iomux.h │ ├── ioports.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 │ ├── ks8721.h │ ├── lattice.h │ ├── lcd.h │ ├── lcdvideo.h │ ├── led-display.h │ ├── lh7a400.h │ ├── lh7a404.h │ ├── lh7a40x.h │ ├── libata.h │ ├── libfdt.h │ ├── libfdt_env.h │ ├── libtizen.h │ ├── linux │ │ ├── apm_bios.h │ │ ├── bch.h │ │ ├── bitops.h │ │ ├── byteorder │ │ │ ├── big_endian.h │ │ │ ├── generic.h │ │ │ ├── little_endian.h │ │ │ └── swab.h │ │ ├── compat.h │ │ ├── compiler-gcc.h │ │ ├── compiler-gcc3.h │ │ ├── compiler-gcc4.h │ │ ├── compiler-gcc5.h │ │ ├── compiler.h │ │ ├── config.h │ │ ├── crc32.h │ │ ├── crc7.h │ │ ├── ctype.h │ │ ├── edd.h │ │ ├── err.h │ │ ├── ethtool.h │ │ ├── fb.h │ │ ├── input.h │ │ ├── ioctl.h │ │ ├── ioport.h │ │ ├── kbuild.h │ │ ├── linkage.h │ │ ├── list.h │ │ ├── lzo.h │ │ ├── math64.h │ │ ├── mc146818rtc.h │ │ ├── mdio.h │ │ ├── mii.h │ │ ├── mtd │ │ │ ├── bbm.h │ │ │ ├── blktrans.h │ │ │ ├── concat.h │ │ │ ├── doc2000.h │ │ │ ├── fsl_upm.h │ │ │ ├── fsmc_nand.h │ │ │ ├── inftl-user.h │ │ │ ├── ipq_nand.h │ │ │ ├── jffs2-user.h │ │ │ ├── mtd-abi.h │ │ │ ├── mtd.h │ │ │ ├── nand.h │ │ │ ├── nand_bch.h │ │ │ ├── nand_ecc.h │ │ │ ├── ndfc.h │ │ │ ├── nftl-user.h │ │ │ ├── nftl.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 │ │ ├── screen_info.h │ │ ├── stat.h │ │ ├── stddef.h │ │ ├── string.h │ │ ├── time.h │ │ ├── types.h │ │ ├── unaligned │ │ │ ├── access_ok.h │ │ │ ├── be_byteshift.h │ │ │ ├── generic.h │ │ │ └── le_byteshift.h │ │ └── usb │ │ │ ├── cdc.h │ │ │ ├── ch9.h │ │ │ ├── composite.h │ │ │ ├── dwc3.h │ │ │ ├── gadget.h │ │ │ └── msm_usb30.h │ ├── linux_logo.h │ ├── lmb.h │ ├── logbuff.h │ ├── lpd7a400_cpld.h │ ├── lxt971a.h │ ├── lynxkdi.h │ ├── lzma │ │ ├── LzmaDec.h │ │ ├── LzmaTools.h │ │ └── LzmaTypes.h │ ├── malloc.h │ ├── max8997_pmic.h │ ├── max8998_pmic.h │ ├── mb862xx.h │ ├── mc13783.h │ ├── mc13892.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 │ ├── mpc8220.h │ ├── mpc824x.h │ ├── mpc8260.h │ ├── mpc8260_irq.h │ ├── mpc83xx.h │ ├── mpc85xx.h │ ├── mpc86xx.h │ ├── mpc8xx.h │ ├── mpc8xx_irq.h │ ├── mtd │ │ ├── cfi_flash.h │ │ └── ubi-user.h │ ├── mtd_node.h │ ├── mvmfp.h │ ├── nand.h │ ├── net.h │ ├── netdev.h │ ├── nios2-epcs.h │ ├── nios2-io.h │ ├── nios2-yanu.h │ ├── nios2.h │ ├── nomadik.h │ ├── ns16550.h │ ├── ns87308.h │ ├── ns9750_bbus.h │ ├── ns9750_mem.h │ ├── ns9750_ser.h │ ├── ns9750_sys.h │ ├── onenand_uboot.h │ ├── os.h │ ├── part.h │ ├── pc_keyb.h │ ├── pca953x.h │ ├── pca9564.h │ ├── pca9698.h │ ├── pci.h │ ├── pci_ids.h │ ├── pcmcia.h │ ├── pcmcia │ │ ├── cirrus.h │ │ ├── i82365.h │ │ ├── ss.h │ │ ├── ti113x.h │ │ └── yenta.h │ ├── phy.h │ ├── pmic.h │ ├── post.h │ ├── ppc_asm.tmpl │ ├── ppc_defs.h │ ├── ps2mult.h │ ├── pwm.h │ ├── radeon.h │ ├── reiserfs.h │ ├── replace.h │ ├── rtc.h │ ├── s6e63d6.h │ ├── s_record.h │ ├── sata.h │ ├── scsi.h │ ├── sdhci.h │ ├── search.h │ ├── sed13806.h │ ├── sed156x.h │ ├── serial.h │ ├── sha256.h │ ├── sja1000.h │ ├── sm501.h │ ├── smiLynxEM.h │ ├── spartan2.h │ ├── spartan3.h │ ├── spd.h │ ├── spd_sdram.h │ ├── spi.h │ ├── spi_flash.h │ ├── status_led.h │ ├── stdio_dev.h │ ├── stratixII.h │ ├── sym53c8xx.h │ ├── synopsys │ │ └── dwcddr21mctl.h │ ├── systemace.h │ ├── tegra-kbc.h │ ├── timestamp.h │ ├── tpm.h │ ├── tps6586x.h │ ├── tsec.h │ ├── tsi108.h │ ├── tsi148.h │ ├── twl4030.h │ ├── twl6030.h │ ├── twl6035.h │ ├── tws.h │ ├── u-boot-sha1.h │ ├── u-boot │ │ ├── crc.h │ │ ├── md5.h │ │ ├── u-boot.lds.h │ │ └── zlib.h │ ├── ubi_uboot.h │ ├── universe.h │ ├── usb.h │ ├── usb │ │ ├── designware_udc.h │ │ ├── ehci-fsl.h │ │ ├── lin_gadget_compat.h │ │ ├── mpc8xx_udc.h │ │ ├── musb_udc.h │ │ ├── mv_udc.h │ │ ├── omap1510_udc.h │ │ ├── pxa27x_udc.h │ │ ├── s3c_udc.h │ │ └── ulpi.h │ ├── usb_cdc_acm.h │ ├── usb_defs.h │ ├── usb_ether.h │ ├── usbdescriptors.h │ ├── usbdevice.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_data.h │ ├── video_logo.h │ ├── virtex2.h │ ├── vsc7385.h │ ├── vsprintf.h │ ├── vxworks.h │ ├── w83c553f.h │ ├── watchdog.h │ ├── xilinx.h │ └── xyzModem.h ├── lib │ ├── Makefile │ ├── addr_map.c │ ├── aes.c │ ├── asm-offsets.c │ ├── bch.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 │ ├── ctype.c │ ├── display_options.c │ ├── div64.c │ ├── errno.c │ ├── fdtdec.c │ ├── fdtdec_test.c │ ├── gunzip.c │ ├── hashtable.c │ ├── ldiv.c │ ├── libfdt │ │ ├── Makefile │ │ ├── README │ │ ├── fdt.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ └── libfdt_internal.h │ ├── 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 │ ├── qsort.c │ ├── rand.c │ ├── rbtree.c │ ├── sha1.c │ ├── sha256.c │ ├── string.c │ ├── strmhz.c │ ├── time.c │ ├── tizen │ │ ├── Makefile │ │ ├── tizen.c │ │ ├── tizen_hd_logo.h │ │ └── tizen_hd_logo_data.h │ ├── uuid.c │ ├── vsprintf.c │ └── zlib │ │ ├── Makefile │ │ ├── adler32.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── zlib.c │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── lib_rtos │ ├── Makefile │ ├── glue.c │ ├── glue.h │ ├── include │ │ ├── libc │ │ │ ├── libc_dirent.h │ │ │ ├── libc_errno.h │ │ │ ├── libc_fcntl.h │ │ │ ├── libc_fdset.h │ │ │ ├── libc_ioctl.h │ │ │ ├── libc_signal.h │ │ │ └── libc_stat.h │ │ ├── rtconfig.h │ │ ├── rtdbg.h │ │ ├── rtdebug.h │ │ ├── rtdef.h │ │ ├── rthw.h │ │ ├── rtlibc.h │ │ ├── rtm.h │ │ ├── rtservice.h │ │ └── rtthread.h │ ├── kernel │ │ ├── Makefile │ │ ├── clock.c │ │ ├── components.c │ │ ├── device.c │ │ ├── idle.c │ │ ├── ipc.c │ │ ├── irq.c │ │ ├── kservice.c │ │ ├── mem.c │ │ ├── memheap.c │ │ ├── mempool.c │ │ ├── object.c │ │ ├── scheduler.c │ │ ├── signal.c │ │ ├── slab.c │ │ ├── thread.c │ │ └── timer.c │ └── libcpu_armv7 │ │ ├── Makefile │ │ ├── armv7.h │ │ ├── context_gcc.S │ │ ├── cp15.h │ │ ├── cp15_gcc.S │ │ ├── cpu.c │ │ ├── exception.c │ │ ├── gic.c │ │ ├── gic.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── mmu.c │ │ ├── pmu.c │ │ ├── pmu.h │ │ ├── relocation.c │ │ ├── soc_config.h │ │ ├── soc_config_ipq40xx.h │ │ ├── soc_config_ipq80xx.h │ │ ├── stack.c │ │ ├── stack_setup.S │ │ ├── timer.c │ │ ├── timer_ipq40xx.c │ │ ├── timer_ipq80xx.c │ │ └── vector_gcc.S ├── mkconfig ├── nand_spl │ ├── board │ │ ├── amcc │ │ │ ├── acadia │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ │ ├── bamboo │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── sdram.c │ │ │ │ └── u-boot.lds │ │ │ ├── canyonlands │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── ddr2_fixed.c │ │ │ │ └── u-boot.lds │ │ │ ├── kilauea │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ │ └── sequoia │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ ├── freescale │ │ │ ├── mpc8313erdb │ │ │ │ ├── Makefile │ │ │ │ └── u-boot.lds │ │ │ ├── mpc8315erdb │ │ │ │ ├── Makefile │ │ │ │ └── u-boot.lds │ │ │ ├── mpc8536ds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── mpc8569mds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── mpc8572ds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── mx31pdk │ │ │ │ ├── Makefile │ │ │ │ └── u-boot.lds │ │ │ ├── p1010rdb │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── p1023rds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── p1_p2_rdb │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ └── p1_p2_rdb_pc │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ ├── karo │ │ │ └── tx25 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ ├── samsung │ │ │ └── smdk6400 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ └── sheldon │ │ │ └── simpc8313 │ │ │ ├── Makefile │ │ │ └── u-boot.lds │ ├── nand_boot.c │ ├── nand_boot_fsl_elbc.c │ ├── nand_boot_fsl_ifc.c │ └── nand_boot_fsl_nfc.c ├── net │ ├── 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 ├── onenand_ipl │ ├── board │ │ └── apollon │ │ │ ├── Makefile │ │ │ ├── apollon.c │ │ │ ├── config.mk │ │ │ ├── low_levelinit.S │ │ │ └── u-boot.onenand.lds │ ├── onenand_boot.c │ ├── onenand_ipl.h │ └── onenand_read.c ├── 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 │ ├── rules.mk │ └── tests.c ├── rules.mk ├── snapshot.commit ├── spl │ └── Makefile ├── test │ ├── Makefile │ ├── munit.c │ ├── munit.h │ └── nand_ut.c └── tools │ ├── 4G-AC53U │ ├── Makefile │ ├── QCA_MBN │ ├── sbl1_nand.mbn │ ├── sbl1_nor.mbn │ └── tz.mbn │ ├── RT-AC58U │ ├── boardconfig │ ├── nor-flash.conf │ ├── norplusnand-flash.conf │ ├── sbl1_nor.mbn │ └── tz.mbn │ ├── RT-AC58U256MB │ ├── boardconfig │ ├── nor-flash.conf │ ├── norplusnand-flash.conf │ ├── sbl1_nor.mbn │ └── tz.mbn │ ├── RT-AC82U │ ├── boardconfig │ ├── cdt-AP.DK04.1-C1.bin-128MB │ ├── cdt-AP.DK04.1-C1.bin-256MB │ ├── nand-flash.conf │ ├── partition_ref │ │ ├── nand-partition.xml │ │ └── pcddr_AP.DK04.1-C1_128M16.xml │ ├── sbl1_nand.mbn │ └── tz.mbn │ ├── addmg.c │ ├── aisimage.c │ ├── aisimage.h │ ├── 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 │ ├── checkpatch.pl │ ├── checkstack.pl │ ├── default_image.c │ ├── dumpimage.c │ ├── dumpimage.h │ ├── easylogo │ ├── Makefile │ ├── easylogo.c │ ├── linux_blackfin.tga │ ├── linux_logo.tga │ └── runme.sh │ ├── env │ ├── Makefile │ ├── README │ ├── fw_env.c │ ├── fw_env.config │ ├── fw_env.h │ └── fw_env_main.c │ ├── envcrc.c │ ├── fdt_host.h │ ├── fit_image.c │ ├── gcc-version.sh │ ├── gdb │ ├── Makefile │ ├── error.c │ ├── error.h │ ├── gdbcont.c │ ├── gdbsend.c │ ├── remote.c │ ├── remote.h │ ├── serial.c │ └── serial.h │ ├── gen_eth_addr.c │ ├── getline.c │ ├── getline.h │ ├── imagetool.c │ ├── imagetool.h │ ├── img2brec.sh │ ├── img2srec.c │ ├── imls │ ├── Makefile │ ├── README │ └── imls.c │ ├── imximage.c │ ├── imximage.h │ ├── jtagconsole │ ├── kwbimage.c │ ├── kwbimage.h │ ├── kwboot.c │ ├── logos │ ├── atmel.bmp │ ├── denx.bmp │ ├── esd.bmp │ ├── freescale.bmp │ ├── intercontrol.bmp │ ├── linux_logo_ttcontrol.bmp │ ├── linux_logo_ttcontrol_palfin.bmp │ ├── ronetix.bmp │ └── syteco.bmp │ ├── mingw_support.c │ ├── mingw_support.h │ ├── mkenvimage.c │ ├── mkexynosspl.c │ ├── mkheader.py │ ├── mkimage.c │ ├── mkimage.h │ ├── mpc86x_clk.c │ ├── mxsboot.c │ ├── ncb.c │ ├── netconsole │ ├── omap │ └── clocks_get_m_n.c │ ├── omapimage.c │ ├── omapimage.h │ ├── os_support.c │ ├── os_support.h │ ├── pack.py │ ├── patman │ ├── README │ ├── checkpatch.py │ ├── command.py │ ├── commit.py │ ├── gitutil.py │ ├── patchstream.py │ ├── patman │ ├── patman.py │ ├── series.py │ ├── settings.py │ ├── terminal.py │ └── test.py │ ├── scripts │ ├── README │ ├── define2mk.sed │ ├── dot.kermrc │ ├── flash_param │ ├── make-asm-offsets │ ├── send_cmd │ └── send_image │ ├── setlocalversion │ ├── sysupgrade.c │ ├── sysupgrade.h │ ├── ublimage.c │ ├── ublimage.h │ ├── ubsha1.c │ ├── updater │ ├── Makefile │ ├── cmd_flash.c │ ├── ctype.c │ ├── dummy.c │ ├── flash.c │ ├── flash_hw.c │ ├── junk │ ├── ppcstring.S │ ├── string.c │ ├── update.c │ └── utils.c │ └── xway-swap-bytes.c ├── MTK-RT ├── CHANGELOG ├── COPYING ├── CREDITS ├── LICENSE ├── MAINTAINERS ├── MAKEALL ├── Makefile ├── README ├── README_UBOOT_MOD_MT7688.md ├── autoconf.h ├── board │ └── rt2880 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── include │ │ ├── CpuCp0RegDef.h │ │ ├── aux_intc.h │ │ ├── aux_reg_map.h │ │ ├── chip_reg_map.h │ │ ├── compiler.h │ │ ├── cpu.h │ │ ├── cpu_except.h │ │ ├── ethernet.h │ │ ├── except.h │ │ ├── ide3710.h │ │ ├── intc.h │ │ ├── lcd.h │ │ ├── mac.h │ │ ├── mac.inc │ │ ├── mem_init.inc │ │ ├── mem_map.h │ │ ├── mem_map_1fc0.h │ │ ├── mem_tst.h │ │ ├── palmpak_tst.h │ │ ├── pio.h │ │ ├── product.h │ │ ├── pubdefs.h │ │ ├── regdef.h │ │ ├── sysc.h │ │ ├── timer.h │ │ └── uart.h │ │ ├── memsetup.S │ │ ├── rt2880.c │ │ ├── rt2880_init.S │ │ ├── serial.c │ │ ├── serial.h │ │ └── u-boot.lds ├── buildall.sh ├── common │ ├── Makefile │ ├── cmd_bdinfo.c │ ├── cmd_boot.c │ ├── cmd_bootm.c │ ├── cmd_console.c │ ├── cmd_fat.c │ ├── cmd_flash.c │ ├── cmd_load.c │ ├── cmd_mem.c │ ├── cmd_misc.c │ ├── cmd_net.c │ ├── cmd_nvedit.c │ ├── cmd_usb.c │ ├── command.c │ ├── console.c │ ├── devices.c │ ├── dlmalloc.c │ ├── env_common.c │ ├── env_flash.c │ ├── env_nand.c │ ├── env_spi.c │ ├── environment.c │ ├── exports.c │ ├── flash.c │ ├── libcommon.a.map │ ├── lists.c │ ├── main.c │ ├── usb.c │ ├── usb_hub.c │ └── usb_storage.c ├── config.in ├── config.mk ├── cpu │ └── ralink_soc │ │ ├── Makefile │ │ ├── cache.S │ │ ├── config.mk │ │ ├── cpu.c │ │ ├── interrupts.c │ │ ├── start.S │ │ └── start_1004k.S ├── disk │ ├── Makefile │ ├── part.c │ ├── part_amiga.c │ ├── part_amiga.h │ ├── part_dos.c │ ├── part_dos.h │ ├── part_iso.c │ ├── part_iso.h │ ├── part_mac.c │ └── part_mac.h ├── drivers │ ├── MT7620_bmt.c │ ├── MT7620_bmt.h │ ├── Makefile │ ├── bbu_spiflash.h │ ├── ehci-core.h │ ├── ehci-hcd.c │ ├── ehci-ra.c │ ├── ehci.h │ ├── i2c_drv.c │ ├── mii_mgr.c │ ├── msdc │ │ ├── config.h │ │ ├── mmc_core.c │ │ ├── mmc_core.h │ │ ├── mmc_test.c │ │ ├── mmc_test.h │ │ ├── msdc.c │ │ ├── msdc.h │ │ ├── msdc_cust.c │ │ ├── msdc_cust.h │ │ ├── msg.h │ │ ├── sdio.h │ │ ├── ts_msdc.c │ │ └── utils.h │ ├── nand │ │ ├── bmt.c │ │ ├── bmt.h │ │ ├── mt6575_typedefs.h │ │ ├── mtk_nand.c │ │ ├── mtk_nand.h │ │ ├── nand_base.c │ │ ├── nand_def.h │ │ ├── nand_device_list.h │ │ └── nand_ids.c │ ├── nand_flash.c │ ├── ohci-hcd.c │ ├── ohci.h │ ├── phy_val.c │ ├── phy_val.h │ ├── ralink_nand.h │ ├── ralink_spi.h │ ├── rt2880_eth.c │ ├── spi_drv.c │ ├── spi_flash.c │ ├── spi_rt6855A_flash.c │ ├── usb │ │ └── host │ │ │ ├── mtk-phy-7621.c │ │ │ ├── mtk-phy-7621.h │ │ │ ├── mtk-phy-ahb.c │ │ │ ├── mtk-phy.c │ │ │ ├── mtk-phy.h │ │ │ ├── xhci-mem.c │ │ │ ├── xhci-mtk-power.c │ │ │ ├── xhci-mtk-power.h │ │ │ ├── xhci-mtk-scheduler.c │ │ │ ├── xhci-mtk-scheduler.h │ │ │ ├── xhci-mtk.c │ │ │ ├── xhci-mtk.h │ │ │ ├── xhci-ring.c │ │ │ ├── xhci.c │ │ │ └── xhci.h │ └── vtss.h ├── fs │ ├── Makefile │ └── fat │ │ ├── Makefile │ │ ├── fat.c │ │ ├── fat.c.old │ │ └── file.c ├── httpd │ ├── Makefile │ ├── fs.c │ ├── fs.h │ ├── fsdata.h │ ├── httpd.c │ ├── httpd.h │ ├── main.c │ ├── tapdev.c │ ├── tapdev.h │ ├── uip.c │ ├── uip.h │ ├── uip_arch.c │ ├── uip_arch.h │ ├── uip_arp.c │ ├── uip_arp.h │ ├── uipopt.h │ └── vendors │ │ ├── SE │ │ ├── 404.html │ │ ├── art.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── style.css │ │ └── uboot.html │ │ ├── dragino │ │ ├── 404.html │ │ ├── f.png │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── l.png │ │ └── style.css │ │ ├── general │ │ ├── 404.html │ │ ├── art.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── style.css │ │ └── uboot.html │ │ ├── makefsdatac │ │ ├── oem │ │ ├── 404.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ └── style.css │ │ ├── villagetelco │ │ ├── 404.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── style.css │ │ ├── v.png │ │ └── vt.png │ │ └── yuicompressor-2.4.8.jar ├── include │ ├── ArchDefs.h │ ├── LzmaDecode.h │ ├── _exports.h │ ├── altera.h │ ├── asm-mips │ │ ├── addrspace.h │ │ ├── au1x00.h │ │ ├── bitops.h │ │ ├── byteorder.h │ │ ├── cachectl.h │ │ ├── cacheops.h │ │ ├── global_data.h │ │ ├── inca-ip.h │ │ ├── io.h │ │ ├── isadep.h │ │ ├── mipsregs.h │ │ ├── posix_types.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── regdef.h │ │ ├── sgidefs.h │ │ ├── string.h │ │ ├── system.h │ │ ├── types.h │ │ └── u-boot.h │ ├── asm │ │ ├── addrspace.h │ │ ├── au1x00.h │ │ ├── bitops.h │ │ ├── byteorder.h │ │ ├── cache.h │ │ ├── cachectl.h │ │ ├── cacheops.h │ │ ├── errno-base.h │ │ ├── errno.h │ │ ├── global_data.h │ │ ├── inca-ip.h │ │ ├── io.h │ │ ├── isadep.h │ │ ├── mipsregs.h │ │ ├── posix_types.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── regdef.h │ │ ├── sgidefs.h │ │ ├── string.h │ │ ├── system.h │ │ ├── types.h │ │ ├── u-boot.h │ │ └── unaligned.h │ ├── ata.h │ ├── bedbug │ │ ├── bedbug.h │ │ ├── ppc.h │ │ ├── regs.h │ │ ├── tables.h │ │ └── type.h │ ├── bmp_layout.h │ ├── bmp_logo.h │ ├── bzlib.h │ ├── circbuf.h │ ├── cmd_confdefs.h │ ├── command.h │ ├── common.h │ ├── compiler.h │ ├── config.h │ ├── config.mk │ ├── configs │ │ └── rt2880.h │ ├── console.h │ ├── devices.h │ ├── environment.h │ ├── exports.h │ ├── fat.h │ ├── fat_old.h │ ├── flash.h │ ├── fpga.h │ ├── hush.h │ ├── i2c.h │ ├── ide.h │ ├── image.h │ ├── kgdb.h │ ├── launch.h │ ├── linux │ │ ├── bitops.h │ │ ├── byteorder │ │ │ ├── big_endian.h │ │ │ ├── generic.h │ │ │ ├── little_endian.h │ │ │ └── swab.h │ │ ├── compiler-gcc.h │ │ ├── compiler-gcc3.h │ │ ├── compiler-gcc4.h │ │ ├── compiler.h │ │ ├── config.h │ │ ├── ctype.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── mc146818rtc.h │ │ ├── mtd │ │ │ ├── bbm.h │ │ │ ├── doc2000.h │ │ │ ├── mtd.h │ │ │ ├── nand.h │ │ │ ├── nand_ecc.h │ │ │ ├── nand_ids.h │ │ │ └── nftl.h │ │ ├── posix_types.h │ │ ├── stat.h │ │ ├── stddef.h │ │ ├── string.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 │ ├── lists.h │ ├── logbuff.h │ ├── lzma │ │ ├── LzmaDec.h │ │ ├── LzmaTools.h │ │ └── LzmaTypes.h │ ├── malloc.h │ ├── mk48t59.h │ ├── mtd │ │ └── mtd-abi.h │ ├── nand_api.h │ ├── net.h │ ├── part.h │ ├── post.h │ ├── rt_mmap.h │ ├── rtc.h │ ├── rtos │ │ └── rtos_data.h │ ├── s_record.h │ ├── scsi.h │ ├── serial.h │ ├── spi.h │ ├── spi_api.h │ ├── sysdefs.h │ ├── systemace.h │ ├── unxz.h │ ├── usb.h │ ├── usb_defs.h │ ├── version.h │ ├── watchdog.h │ ├── xilinx.h │ ├── xz.h │ └── zlib.h ├── lib_generic │ ├── LzmaDec.h │ ├── LzmaDecode.c │ ├── LzmaTools.h │ ├── Makefile │ ├── Types.h │ ├── bzlib.c │ ├── bzlib_crctable.c │ ├── bzlib_decompress.c │ ├── bzlib_huffman.c │ ├── bzlib_private.h │ ├── bzlib_randtable.c │ ├── crc32.c │ ├── ctype.c │ ├── decompress_unxz.c │ ├── display_options.c │ ├── string.c │ ├── vsprintf.c │ ├── xz_dec_bcj.c │ ├── xz_dec_lzma2.c │ ├── xz_dec_stream.c │ ├── xz_lzma2.h │ ├── xz_private.h │ ├── xz_stream.h │ └── zlib.c ├── lib_mips │ ├── Makefile │ ├── ashldi3.c │ ├── ashrdi3.c │ ├── board.c │ ├── ddr2.h │ ├── ddr3.h │ ├── ddr_init.c │ ├── libgcc.h │ ├── lshrdi3.c │ ├── mips_linux.c │ ├── mpll.h │ ├── mpll40Mhz.h │ └── time.c ├── lib_rtos │ ├── Makefile │ ├── config.mk │ ├── glue.c │ ├── glue.h │ ├── include │ │ ├── libc │ │ │ ├── libc_dirent.h │ │ │ ├── libc_errno.h │ │ │ ├── libc_fcntl.h │ │ │ ├── libc_fdset.h │ │ │ ├── libc_ioctl.h │ │ │ ├── libc_signal.h │ │ │ └── libc_stat.h │ │ ├── rtconfig.h │ │ ├── rtdbg.h │ │ ├── rtdebug.h │ │ ├── rtdef.h │ │ ├── rthw.h │ │ ├── rtlibc.h │ │ ├── rtm.h │ │ ├── rtservice.h │ │ └── rtthread.h │ ├── kernel │ │ ├── Makefile │ │ ├── clock.c │ │ ├── components.c │ │ ├── device.c │ │ ├── idle.c │ │ ├── ipc.c │ │ ├── irq.c │ │ ├── kservice.c │ │ ├── mem.c │ │ ├── memheap.c │ │ ├── mempool.c │ │ ├── object.c │ │ ├── scheduler.c │ │ ├── signal.c │ │ ├── slab.c │ │ ├── thread.c │ │ └── timer.c │ └── libcpu_mips32 │ │ ├── Makefile │ │ ├── asm.h │ │ ├── context_gcc.S │ │ ├── cpuport.c │ │ ├── interrupt.c │ │ ├── mips.inc │ │ ├── mipsregs.h │ │ ├── stackframe.h │ │ └── vector.c ├── mips_config.mk ├── mkconfig ├── mt7621_ddr.sh ├── mt7621_ddr_param.txt ├── net │ ├── Makefile │ ├── bootp.c │ ├── bootp.h │ ├── eth.c │ ├── httpd.c │ ├── httpd.h │ ├── net.c │ ├── rarp.c │ ├── rarp.h │ ├── tftp.c │ └── tftp.h ├── rtc │ ├── Makefile │ └── date.c ├── scripts │ ├── Configure │ ├── Makefile │ ├── Menuconfig │ ├── README.Menuconfig │ ├── README.uClinux │ ├── header.tk │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── Makefile │ │ ├── checklist.c │ │ ├── colors.h │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── lxdialog.c │ │ ├── menubox.c │ │ ├── msgbox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── tail.tk │ ├── tkcond.c │ ├── tkgen.c │ ├── tkparse.c │ └── tkparse.h ├── stage1 │ ├── Makefile │ ├── boot.c │ ├── gdma.c │ ├── nandc.c │ ├── stage1n2.lds │ └── start.S ├── tools │ ├── Makefile │ ├── crc.c │ ├── crc32.c │ ├── image.h │ └── mkimage.c ├── uboot_README └── uboot_version.h ├── MTK.ARM ├── CREDITS ├── Kbuild ├── Licenses │ ├── Exceptions │ ├── README │ ├── bsd-2-clause.txt │ ├── bsd-3-clause.txt │ ├── eCos-2.0.txt │ ├── gpl-2.0.txt │ ├── ibm-pibs.txt │ ├── lgpl-2.0.txt │ └── lgpl-2.1.txt ├── MAKEALL ├── Makefile ├── README.ORI ├── 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 │ ├── arc │ │ ├── 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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── arm1136 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── mx31 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── devices.c │ │ │ │ │ ├── generic.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx35 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── 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 │ │ │ │ │ ├── config.mk │ │ │ │ │ └── cpu.c │ │ │ │ ├── tegra124 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── cpu.c │ │ │ │ ├── tegra20 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── cpu.c │ │ │ │ └── tegra30 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── 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 │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── dram.c │ │ │ │ │ ├── mpp.c │ │ │ │ │ └── timer.c │ │ │ │ ├── lpc32xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── devices.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mb86r0x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx25 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── generic.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mx27 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── generic.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── mxs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── iomux.c │ │ │ │ │ ├── mxs.c │ │ │ │ │ ├── mxs_init.h │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── reset.S │ │ │ │ │ └── timer.c │ │ │ │ ├── omap │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ ├── reset.S │ │ │ │ │ └── timer.c │ │ │ │ ├── orion5x │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── mem.c │ │ │ │ │ ├── mux.c │ │ │ │ │ ├── sys_info.c │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ ├── at91 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── sama5d3_devices.c │ │ │ │ │ └── timer.c │ │ │ │ ├── bcm281xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk-bcm281xx.c │ │ │ │ │ ├── clk-bsc.c │ │ │ │ │ ├── clk-core.c │ │ │ │ │ ├── clk-core.h │ │ │ │ │ ├── clk-sdio.c │ │ │ │ │ └── reset.c │ │ │ │ ├── cache_v7.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── exynos │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── timer.c │ │ │ │ ├── kona-common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk-stubs.c │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ └── s_init.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mt7622 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── init.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── reset.c │ │ │ │ ├── mt7623 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── init.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── reset.c │ │ │ │ ├── mx5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── soc.c │ │ │ │ ├── mx6 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── hab.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 │ │ │ │ │ ├── pipe3-phy.c │ │ │ │ │ ├── pipe3-phy.h │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── sata.c │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ ├── utils.c │ │ │ │ │ └── vc.c │ │ │ │ ├── omap3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── am35x_musb.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emac.c │ │ │ │ │ ├── emif4.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mem.c │ │ │ │ │ ├── sdrc.c │ │ │ │ │ ├── spl_id_nand.c │ │ │ │ │ └── sys_info.c │ │ │ │ ├── omap4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emif.c │ │ │ │ │ ├── hw_data.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ └── sdram_elpida.c │ │ │ │ ├── omap5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── abb.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── emif.c │ │ │ │ │ ├── hw_data.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── rmobile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── cpu_info-r8a7740.c │ │ │ │ │ ├── cpu_info-r8a7790.c │ │ │ │ │ ├── cpu_info-r8a7791.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-sh73a0.c │ │ │ │ │ └── timer.c │ │ │ │ ├── s5p-common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ ├── pwm.c │ │ │ │ │ ├── sromc.c │ │ │ │ │ └── timer.c │ │ │ │ ├── s5pc1xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── clock.c │ │ │ │ │ └── reset.S │ │ │ │ ├── socfpga │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── freeze_controller.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── reset_manager.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── system_manager.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ ├── start.S │ │ │ │ ├── syslib.c │ │ │ │ ├── tegra-common │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmd_enterrcm.c │ │ │ │ ├── tegra114 │ │ │ │ │ └── Makefile │ │ │ │ ├── tegra124 │ │ │ │ │ └── Makefile │ │ │ │ ├── tegra20 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── display.c │ │ │ │ │ └── pwm.c │ │ │ │ ├── tegra30 │ │ │ │ │ └── Makefile │ │ │ │ ├── u8500 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── lowlevel.S │ │ │ │ │ ├── prcmu.c │ │ │ │ │ └── timer.c │ │ │ │ ├── vf610 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── generic.c │ │ │ │ │ └── timer.c │ │ │ │ ├── virt-v7.c │ │ │ │ └── zynq │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── ddrc.c │ │ │ │ │ ├── slcr.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── u-boot.lds │ │ │ ├── armv8 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.S │ │ │ │ ├── cache_v8.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── exceptions.S │ │ │ │ ├── generic_timer.c │ │ │ │ ├── gic.S │ │ │ │ ├── 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 │ │ │ │ └── sys_info.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 │ │ │ ├── Makefile │ │ │ ├── exynos5.dtsi │ │ │ ├── exynos5250-arndale.dts │ │ │ ├── exynos5250-smdk5250.dts │ │ │ ├── exynos5250-snow.dts │ │ │ ├── exynos5250.dtsi │ │ │ ├── exynos5420-smdk5420.dts │ │ │ ├── exynos5420.dtsi │ │ │ ├── skeleton.dtsi │ │ │ ├── tegra114-dalmore.dts │ │ │ ├── tegra114.dtsi │ │ │ ├── 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-tamonten.dtsi │ │ │ ├── tegra30-tec-ng.dts │ │ │ ├── tegra30.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 │ │ │ └── timer.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 │ │ │ │ └── spl.h │ │ │ │ ├── arch-bcm281xx │ │ │ │ ├── gpio.h │ │ │ │ └── sysmap.h │ │ │ │ ├── arch-bcm2835 │ │ │ │ ├── gpio.h │ │ │ │ ├── mbox.h │ │ │ │ ├── sdhci.h │ │ │ │ ├── timer.h │ │ │ │ └── wdog.h │ │ │ │ ├── arch-davinci │ │ │ │ ├── aintc_defs.h │ │ │ │ ├── da850_lowlevel.h │ │ │ │ ├── da8xx-usb.h │ │ │ │ ├── davinci_misc.h │ │ │ │ ├── ddr2_defs.h │ │ │ │ ├── dm365_lowlevel.h │ │ │ │ ├── emac_defs.h │ │ │ │ ├── emif_defs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── i2c_defs.h │ │ │ │ ├── nand_defs.h │ │ │ │ ├── pinmux_defs.h │ │ │ │ ├── pll_defs.h │ │ │ │ ├── psc_defs.h │ │ │ │ ├── sdmmc_defs.h │ │ │ │ ├── spl.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-imx │ │ │ │ ├── cpu.h │ │ │ │ └── imx-regs.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-mb86r0x │ │ │ │ ├── hardware.h │ │ │ │ └── mb86r0x.h │ │ │ │ ├── arch-mt7622 │ │ │ │ ├── mt6735.h │ │ │ │ ├── mt_gpio.h │ │ │ │ ├── mt_typedefs.h │ │ │ │ ├── nand │ │ │ │ │ ├── bmt.h │ │ │ │ │ ├── mtk_nand.h │ │ │ │ │ ├── mtk_snand_k.h │ │ │ │ │ ├── nand_device_list.h │ │ │ │ │ ├── partition_define.h │ │ │ │ │ ├── pmt.h │ │ │ │ │ └── snand_device_list.h │ │ │ │ ├── sync_write.h │ │ │ │ ├── timer.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── uart.h │ │ │ │ └── wdt.h │ │ │ │ ├── arch-mt7623 │ │ │ │ ├── boot_mode.h │ │ │ │ ├── cust_gpio_usage.h │ │ │ │ ├── debug.h │ │ │ │ ├── mt_clkmgr.h │ │ │ │ ├── mt_gpio.h │ │ │ │ ├── mt_gpt.h │ │ │ │ ├── mt_irq.h │ │ │ │ ├── mt_reg_base.h │ │ │ │ ├── mt_typedefs.h │ │ │ │ ├── mt_uart.h │ │ │ │ ├── mtk_wdt.h │ │ │ │ ├── nand │ │ │ │ │ ├── bmt.h │ │ │ │ │ ├── mtk_nand.h │ │ │ │ │ ├── nand_device_list.h │ │ │ │ │ ├── partition_define.h │ │ │ │ │ ├── partition_define_private.h │ │ │ │ │ └── pmt.h │ │ │ │ └── sync_write.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 │ │ │ │ ├── spl.h │ │ │ │ └── sys_proto.h │ │ │ │ ├── arch-mx5 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── gpio.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── iomux-mx51.h │ │ │ │ ├── iomux-mx53.h │ │ │ │ ├── spl.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 │ │ │ │ ├── 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 │ │ │ │ ├── i2c.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 │ │ │ │ ├── i2c.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-rmobile │ │ │ │ ├── gpio.h │ │ │ │ ├── irqs.h │ │ │ │ ├── r8a7740-gpio.h │ │ │ │ ├── r8a7740.h │ │ │ │ ├── r8a7790-gpio.h │ │ │ │ ├── r8a7790.h │ │ │ │ ├── r8a7791-gpio.h │ │ │ │ ├── r8a7791.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 │ │ │ │ ├── power.h │ │ │ │ ├── pwm.h │ │ │ │ ├── sromc.h │ │ │ │ ├── sys_proto.h │ │ │ │ ├── uart.h │ │ │ │ └── watchdog.h │ │ │ │ ├── arch-sa1100 │ │ │ │ └── bitfield.h │ │ │ │ ├── arch-socfpga │ │ │ │ ├── dwmmc.h │ │ │ │ ├── freeze_controller.h │ │ │ │ ├── reset_manager.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-tegra │ │ │ │ ├── ap.h │ │ │ │ ├── board.h │ │ │ │ ├── clk_rst.h │ │ │ │ ├── clock.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── fuse.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── mmc.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 │ │ │ │ ├── spl.h │ │ │ │ ├── sysctr.h │ │ │ │ ├── tegra.h │ │ │ │ ├── tegra114_spi.h │ │ │ │ └── usb.h │ │ │ │ ├── arch-tegra124 │ │ │ │ ├── ahb.h │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmu.h │ │ │ │ ├── spl.h │ │ │ │ ├── sysctr.h │ │ │ │ ├── tegra.h │ │ │ │ └── usb.h │ │ │ │ ├── arch-tegra20 │ │ │ │ ├── apb_misc.h │ │ │ │ ├── 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 │ │ │ │ ├── spl.h │ │ │ │ ├── tegra.h │ │ │ │ ├── tegra20_sflash.h │ │ │ │ ├── tegra20_slink.h │ │ │ │ └── usb.h │ │ │ │ ├── arch-tegra30 │ │ │ │ ├── clock-tables.h │ │ │ │ ├── clock.h │ │ │ │ ├── flow.h │ │ │ │ ├── funcmux.h │ │ │ │ ├── gp_padctrl.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmu.h │ │ │ │ ├── spl.h │ │ │ │ ├── tegra.h │ │ │ │ └── usb.h │ │ │ │ ├── arch-tnetv107x │ │ │ │ ├── clock.h │ │ │ │ ├── emif_defs.h │ │ │ │ ├── hardware.h │ │ │ │ ├── mux.h │ │ │ │ └── nand_defs.h │ │ │ │ ├── arch-u8500 │ │ │ │ ├── clock.h │ │ │ │ ├── db8500_gpio.h │ │ │ │ ├── db8500_pincfg.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── prcmu.h │ │ │ │ ├── sys_proto.h │ │ │ │ └── u8500.h │ │ │ │ ├── arch-vf610 │ │ │ │ ├── clock.h │ │ │ │ ├── crm_regs.h │ │ │ │ ├── imx-regs.h │ │ │ │ └── iomux-vf610.h │ │ │ │ ├── arch-zynq │ │ │ │ ├── clk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── spl.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 │ │ │ │ ├── io.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 │ │ │ │ ├── ptrace.h │ │ │ │ ├── sections.h │ │ │ │ ├── setup.h │ │ │ │ ├── spl.h │ │ │ │ ├── string.h │ │ │ │ ├── system.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 │ │ │ ├── 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 │ │ │ ├── interrupts.c │ │ │ ├── interrupts_64.c │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── relocate.S │ │ │ ├── relocate_64.S │ │ │ ├── reset.c │ │ │ ├── sections.c │ │ │ └── spl.c │ ├── avr32 │ │ ├── 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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── 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 │ │ │ │ ├── net.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 │ │ │ ├── Makefile │ │ │ ├── __kgdb.S │ │ │ ├── board.c │ │ │ ├── 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 │ │ │ └── string.c │ ├── m68k │ │ ├── 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 │ │ ├── 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 │ │ │ ├── Makefile │ │ │ └── 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 │ │ ├── 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 │ │ │ │ ├── incaip │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asc_serial.c │ │ │ │ │ ├── asc_serial.h │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── incaip_clock.c │ │ │ │ │ └── incaip_wdt.S │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ └── time.c │ │ │ ├── mips64 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.S │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ └── time.c │ │ │ ├── u-boot.lds │ │ │ └── xburst │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── jz4740.c │ │ │ │ ├── jz_serial.c │ │ │ │ ├── start.S │ │ │ │ └── timer.c │ │ ├── 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 │ │ │ │ ├── inca-ip.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 │ │ │ ├── libgcc.h │ │ │ └── lshrdi3.c │ ├── nds32 │ │ ├── config.mk │ │ ├── cpu │ │ │ └── n1213 │ │ │ │ ├── Makefile │ │ │ │ ├── ag101 │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── cpu.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── timer.c │ │ │ │ └── watchdog.S │ │ │ │ ├── ag102 │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── 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 │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ ├── cache.c │ │ │ └── interrupts.c │ ├── nios2 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── epcs.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 │ │ │ │ ├── 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 │ │ │ ├── board.c │ │ │ ├── bootm.c │ │ │ ├── cache.S │ │ │ ├── libgcc.c │ │ │ ├── longlong.h │ │ │ └── time.c │ ├── openrisc │ │ ├── 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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── 74xx_7xx │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── spi.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── mpc5xxx │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ │ │ ├── i2c.c │ │ │ │ ├── ide.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── io.S │ │ │ │ ├── loadtask.c │ │ │ │ ├── pci_mpc5200.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── spl_boot.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ ├── u-boot-customlayout.lds │ │ │ │ ├── u-boot-spl.lds │ │ │ │ ├── u-boot.lds │ │ │ │ ├── usb.c │ │ │ │ ├── usb_ohci.c │ │ │ │ └── usb_ohci.h │ │ │ ├── mpc824x │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── fixed_ivor.S │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── Makefile │ │ │ │ ├── bedbug_860.c │ │ │ │ ├── commproc.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_init.c │ │ │ │ ├── fdt.c │ │ │ │ ├── fec.c │ │ │ │ ├── fec.h │ │ │ │ ├── i2c.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── kgdb.S │ │ │ │ ├── plprcr_write.S │ │ │ │ ├── scc.c │ │ │ │ ├── serial.c │ │ │ │ ├── speed.c │ │ │ │ ├── spi.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ ├── upatch.c │ │ │ │ ├── video.c │ │ │ │ └── wlkbd.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 │ │ │ │ ├── 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 │ │ │ │ ├── apm821xx.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_enet.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 │ │ │ │ ├── immap_qe.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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── os.c │ │ │ ├── start.c │ │ │ ├── state.c │ │ │ └── u-boot.lds │ │ ├── dts │ │ │ ├── Makefile │ │ │ └── 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 │ │ │ │ ├── sections.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 │ │ ├── config.mk │ │ ├── cpu │ │ │ ├── sh2 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── u-boot.lds │ │ │ │ └── watchdog.c │ │ │ ├── sh3 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── u-boot.lds │ │ │ │ └── watchdog.c │ │ │ └── sh4 │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── u-boot.lds │ │ │ │ └── watchdog.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── config.mk │ │ ├── cpu │ │ ├── Makefile │ │ ├── config.mk │ │ ├── coreboot │ │ │ ├── Makefile │ │ │ ├── asm-offsets.c │ │ │ ├── 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 │ │ ├── Makefile │ │ ├── alex.dts │ │ ├── coreboot.dtsi │ │ ├── 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 │ │ ├── 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 ├── autoconf.h ├── board │ ├── 8dtech │ │ └── eco5pk │ │ │ ├── Makefile │ │ │ ├── eco5pk.c │ │ │ └── eco5pk.h │ ├── AndesTech │ │ ├── adp-ag101 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── adp-ag101.c │ │ ├── adp-ag101p │ │ │ ├── Makefile │ │ │ └── adp-ag101p.c │ │ └── adp-ag102 │ │ │ ├── Makefile │ │ │ └── adp-ag102.c │ ├── Barix │ │ └── ipam390 │ │ │ ├── Makefile │ │ │ ├── README.ipam390 │ │ │ ├── ipam390-ais-uart.cfg │ │ │ ├── ipam390.c │ │ │ └── u-boot-spl-ipam390.lds │ ├── BuR │ │ ├── common │ │ │ ├── bur_common.h │ │ │ └── common.c │ │ ├── kwb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── mux.c │ │ └── tseries │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── mux.c │ ├── BuS │ │ ├── eb_cpu5282 │ │ │ ├── Makefile │ │ │ ├── eb_cpu5282.c │ │ │ └── u-boot.lds │ │ ├── eb_cpux9k2 │ │ │ ├── Makefile │ │ │ └── cpux9k2.c │ │ └── vl_ma2sc │ │ │ ├── Makefile │ │ │ └── vl_ma2sc.c │ ├── CarMediaLab │ │ └── flea3 │ │ │ ├── Makefile │ │ │ ├── flea3.c │ │ │ └── lowlevel_init.S │ ├── LEOX │ │ └── elpt860 │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── edminiv2.c │ │ ├── net2big_v2 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── net2big_v2.c │ │ │ └── net2big_v2.h │ │ ├── netspace_v2 │ │ │ ├── Makefile │ │ │ ├── kwbimage-is2.cfg │ │ │ ├── kwbimage-ns2l.cfg │ │ │ ├── kwbimage.cfg │ │ │ ├── netspace_v2.c │ │ │ └── netspace_v2.h │ │ └── wireless_space │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── wireless_space.c │ ├── Marvell │ │ ├── aspenite │ │ │ ├── Makefile │ │ │ └── aspenite.c │ │ ├── common │ │ │ ├── bootseq.txt │ │ │ ├── ecctest.c │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ └── dkb.c │ │ ├── dreamplug │ │ │ ├── Makefile │ │ │ ├── dreamplug.c │ │ │ ├── dreamplug.h │ │ │ └── kwbimage.cfg │ │ ├── gplugd │ │ │ ├── Makefile │ │ │ └── gplugd.c │ │ ├── guruplug │ │ │ ├── Makefile │ │ │ ├── guruplug.c │ │ │ ├── guruplug.h │ │ │ └── kwbimage.cfg │ │ ├── include │ │ │ ├── core.h │ │ │ ├── memory.h │ │ │ ├── mv_gen_reg.h │ │ │ └── pci.h │ │ ├── mv88f6281gtw_ge │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── mv88f6281gtw_ge.c │ │ │ └── mv88f6281gtw_ge.h │ │ ├── openrd │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── openrd.c │ │ │ └── openrd.h │ │ ├── rd6281a │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── rd6281a.c │ │ │ └── rd6281a.h │ │ └── sheevaplug │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── sheevaplug.c │ │ │ └── sheevaplug.h │ ├── RPXClassic │ │ ├── Makefile │ │ ├── README │ │ ├── RPXClassic.c │ │ ├── eccx.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── RPXlite │ │ ├── Makefile │ │ ├── README │ │ ├── README.PlanetCore │ │ ├── RPXlite.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── RPXlite_dw │ │ ├── Makefile │ │ ├── README │ │ ├── RPXlite_dw.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── RRvision │ │ ├── Makefile │ │ ├── RRvision.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── video_ad7179.h │ ├── Seagate │ │ ├── dockstar │ │ │ ├── Makefile │ │ │ ├── dockstar.c │ │ │ ├── dockstar.h │ │ │ └── kwbimage.cfg │ │ └── goflexhome │ │ │ ├── Makefile │ │ │ ├── goflexhome.c │ │ │ └── kwbimage.cfg │ ├── a3000 │ │ ├── Makefile │ │ ├── README │ │ ├── a3000.c │ │ └── flash.c │ ├── a3m071 │ │ ├── Makefile │ │ ├── README │ │ ├── a3m071.c │ │ ├── is46r16320d.h │ │ └── mt46v16m16-75.h │ ├── a4m072 │ │ ├── Makefile │ │ ├── a4m072.c │ │ └── mt46v32m16.h │ ├── adder │ │ ├── Makefile │ │ ├── adder.c │ │ └── u-boot.lds │ ├── afeb9260 │ │ ├── Makefile │ │ ├── afeb9260.c │ │ ├── config.mk │ │ └── partition.c │ ├── ait │ │ └── cam_enc_4xx │ │ │ ├── Makefile │ │ │ ├── cam_enc_4xx.c │ │ │ ├── config.mk │ │ │ ├── u-boot-spl.lds │ │ │ └── ublimage.cfg │ ├── alphaproject │ │ └── ap_sh4a_4a │ │ │ ├── Makefile │ │ │ ├── ap_sh4a_4a.c │ │ │ └── lowlevel_init.S │ ├── altera │ │ ├── common │ │ │ ├── AMDLV065D.c │ │ │ ├── cfide.c │ │ │ ├── epled.c │ │ │ ├── flash.c │ │ │ ├── sevenseg.c │ │ │ └── sevenseg.h │ │ ├── nios2-generic │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── custom_fpga.h │ │ │ ├── nios2-generic.c │ │ │ ├── text_base.S │ │ │ └── u-boot.lds │ │ └── socfpga │ │ │ ├── Makefile │ │ │ ├── pinmux_config.c │ │ │ ├── pinmux_config.h │ │ │ └── socfpga_cyclone5.c │ ├── amcc │ │ ├── acadia │ │ │ ├── Makefile │ │ │ ├── acadia.c │ │ │ ├── cmd_acadia.c │ │ │ ├── config.mk │ │ │ ├── memory.c │ │ │ ├── pll.c │ │ │ └── u-boot-nand.lds │ │ ├── bamboo │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bamboo.c │ │ │ ├── bamboo.h │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ └── u-boot-nand.lds │ │ ├── bluestone │ │ │ ├── Makefile │ │ │ ├── bluestone.c │ │ │ ├── config.mk │ │ │ └── init.S │ │ ├── bubinga │ │ │ ├── Makefile │ │ │ ├── bubinga.c │ │ │ └── flash.c │ │ ├── canyonlands │ │ │ ├── Makefile │ │ │ ├── canyonlands.c │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── u-boot-nand.lds │ │ ├── common │ │ │ └── flash.c │ │ ├── ebony │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.mk │ │ │ ├── ebony.c │ │ │ ├── flash.c │ │ │ └── init.S │ │ ├── katmai │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── katmai.c │ │ ├── kilauea │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── kilauea.c │ │ │ └── u-boot-nand.lds │ │ ├── luan │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── epld.h │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ └── luan.c │ │ ├── makalu │ │ │ ├── Makefile │ │ │ ├── cmd_pll.c │ │ │ ├── init.S │ │ │ └── makalu.c │ │ ├── ocotea │ │ │ ├── Makefile │ │ │ ├── README.ocotea │ │ │ ├── README.ocotea-PIBS-to-U-Boot │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── ocotea.c │ │ │ └── ocotea.h │ │ ├── redwood │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── redwood.c │ │ │ └── redwood.h │ │ ├── sequoia │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── sdram.c │ │ │ ├── sequoia.c │ │ │ ├── u-boot-nand.lds │ │ │ └── u-boot-ram.lds │ │ ├── taihu │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── lcd.c │ │ │ ├── taihu.c │ │ │ └── update.c │ │ ├── taishan │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── lcd.c │ │ │ ├── showinfo.c │ │ │ ├── taishan.c │ │ │ └── update.c │ │ ├── walnut │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── walnut.c │ │ ├── yosemite │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── yosemite.c │ │ └── yucca │ │ │ ├── Makefile │ │ │ ├── cmd_yucca.c │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── yucca.c │ │ │ └── yucca.h │ ├── armadeus │ │ └── apf27 │ │ │ ├── Makefile │ │ │ ├── apf27.c │ │ │ ├── apf27.h │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ └── lowlevel_init.S │ ├── armltd │ │ ├── integrator │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── arm-ebi.h │ │ │ ├── integrator-sc.h │ │ │ ├── integrator.c │ │ │ ├── lowlevel_init.S │ │ │ ├── pci.c │ │ │ ├── pci_v3.h │ │ │ └── timer.c │ │ ├── versatile │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── versatile.c │ │ ├── vexpress │ │ │ ├── Makefile │ │ │ └── vexpress_common.c │ │ └── vexpress64 │ │ │ ├── Makefile │ │ │ └── vexpress64.c │ ├── astro │ │ └── mcf5373l │ │ │ ├── Makefile │ │ │ ├── astro.h │ │ │ ├── fpga.c │ │ │ ├── mcf5373l.c │ │ │ └── u-boot.lds │ ├── atc │ │ ├── Makefile │ │ ├── atc.c │ │ ├── flash.c │ │ └── ti113x.c │ ├── atmark-techno │ │ └── armadillo-800eva │ │ │ ├── Makefile │ │ │ └── armadillo-800eva.c │ ├── atmel │ │ ├── at91rm9200ek │ │ │ ├── Makefile │ │ │ ├── at91rm9200ek.c │ │ │ └── led.c │ │ ├── at91sam9260ek │ │ │ ├── Makefile │ │ │ ├── at91sam9260ek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9261ek │ │ │ ├── Makefile │ │ │ ├── at91sam9261ek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9263ek │ │ │ ├── Makefile │ │ │ ├── at91sam9263ek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9m10g45ek │ │ │ ├── Makefile │ │ │ ├── at91sam9m10g45ek.c │ │ │ └── led.c │ │ ├── at91sam9n12ek │ │ │ ├── Makefile │ │ │ └── at91sam9n12ek.c │ │ ├── at91sam9rlek │ │ │ ├── Makefile │ │ │ ├── at91sam9rlek.c │ │ │ ├── led.c │ │ │ └── partition.c │ │ ├── at91sam9x5ek │ │ │ ├── Makefile │ │ │ └── at91sam9x5ek.c │ │ ├── atngw100 │ │ │ ├── Makefile │ │ │ └── atngw100.c │ │ ├── atngw100mkii │ │ │ ├── Makefile │ │ │ └── atngw100mkii.c │ │ ├── atstk1000 │ │ │ ├── Makefile │ │ │ └── atstk1000.c │ │ └── sama5d3xek │ │ │ ├── Makefile │ │ │ └── sama5d3xek.c │ ├── avionic-design │ │ ├── common │ │ │ ├── pinmux-config-tamonten-ng.h │ │ │ ├── tamonten-ng.c │ │ │ └── tamonten.c │ │ ├── medcom-wide │ │ │ └── Makefile │ │ ├── plutux │ │ │ └── Makefile │ │ ├── tec-ng │ │ │ └── Makefile │ │ └── tec │ │ │ └── Makefile │ ├── avnet │ │ ├── fx12mm │ │ │ ├── Makefile │ │ │ ├── fx12mm.c │ │ │ └── xparameters.h │ │ └── v5fx30teval │ │ │ ├── Makefile │ │ │ ├── v5fx30teval.c │ │ │ └── xparameters.h │ ├── balloon3 │ │ ├── Makefile │ │ └── balloon3.c │ ├── barco │ │ └── titanium │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── titanium.c │ ├── bc3450 │ │ ├── Makefile │ │ ├── bc3450.c │ │ ├── cmd_bc3450.c │ │ └── mt48lc16m16a2-75.h │ ├── bct-brettl2 │ │ ├── Makefile │ │ ├── bct-brettl2.c │ │ ├── cled.c │ │ ├── config.mk │ │ ├── gpio_cfi_flash.c │ │ ├── smsc9303.c │ │ └── smsc9303.h │ ├── bf506f-ezkit │ │ ├── Makefile │ │ └── bf506f-ezkit.c │ ├── bf518f-ezbrd │ │ ├── Makefile │ │ ├── bf518f-ezbrd.c │ │ └── config.mk │ ├── bf525-ucr2 │ │ ├── Makefile │ │ └── bf525-ucr2.c │ ├── bf526-ezbrd │ │ ├── Makefile │ │ ├── bf526-ezbrd.c │ │ └── config.mk │ ├── bf527-ad7160-eval │ │ ├── Makefile │ │ ├── bf527-ad7160-eval.c │ │ └── config.mk │ ├── bf527-ezkit │ │ ├── Makefile │ │ ├── bf527-ezkit.c │ │ ├── config.mk │ │ └── video.c │ ├── bf527-sdp │ │ ├── Makefile │ │ ├── bf527-sdp.c │ │ └── config.mk │ ├── bf533-ezkit │ │ ├── Makefile │ │ ├── bf533-ezkit.c │ │ ├── config.mk │ │ ├── flash-defines.h │ │ ├── flash.c │ │ └── psd4256.h │ ├── bf533-stamp │ │ ├── Makefile │ │ ├── bf533-stamp.c │ │ ├── config.mk │ │ ├── ide-cf.c │ │ ├── video.c │ │ └── video.h │ ├── bf537-minotaur │ │ ├── Makefile │ │ ├── bf537-minotaur.c │ │ └── config.mk │ ├── bf537-pnav │ │ ├── Makefile │ │ └── bf537-pnav.c │ ├── bf537-srv1 │ │ ├── Makefile │ │ ├── bf537-srv1.c │ │ └── config.mk │ ├── bf537-stamp │ │ ├── Makefile │ │ ├── bf537-stamp.c │ │ ├── config.mk │ │ ├── ide-cf.c │ │ └── post-memory.c │ ├── bf538f-ezkit │ │ ├── Makefile │ │ ├── bf538f-ezkit.c │ │ └── config.mk │ ├── bf548-ezkit │ │ ├── Makefile │ │ ├── bf548-ezkit.c │ │ ├── config.mk │ │ └── video.c │ ├── bf561-acvilon │ │ ├── Makefile │ │ ├── bf561-acvilon.c │ │ └── config.mk │ ├── bf561-ezkit │ │ ├── Makefile │ │ ├── bf561-ezkit.c │ │ └── config.mk │ ├── bf609-ezkit │ │ ├── Makefile │ │ ├── bf609-ezkit.c │ │ ├── soft_switch.c │ │ └── soft_switch.h │ ├── blackstamp │ │ ├── Makefile │ │ └── blackstamp.c │ ├── blackvme │ │ ├── Makefile │ │ └── blackvme.c │ ├── bluegiga │ │ └── apx4devkit │ │ │ ├── Makefile │ │ │ ├── apx4devkit.c │ │ │ └── spl_boot.c │ ├── bluewater │ │ └── snapper9260 │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── README.mx6qsabrelite │ │ │ ├── clocks.cfg │ │ │ ├── ddr-setup.cfg │ │ │ ├── nitrogen6dl.cfg │ │ │ ├── nitrogen6dl2g.cfg │ │ │ ├── nitrogen6q.cfg │ │ │ ├── nitrogen6q2g.cfg │ │ │ ├── nitrogen6s.cfg │ │ │ ├── nitrogen6s1g.cfg │ │ │ └── nitrogen6x.c │ ├── br4 │ │ ├── Makefile │ │ ├── br4.c │ │ └── config.mk │ ├── broadcom │ │ └── bcm28155_ap │ │ │ ├── Makefile │ │ │ └── bcm28155_ap.c │ ├── buffalo │ │ └── lsxl │ │ │ ├── Makefile │ │ │ ├── kwbimage-lschl.cfg │ │ │ ├── kwbimage-lsxhl.cfg │ │ │ ├── lsxl.c │ │ │ └── lsxl.h │ ├── calao │ │ ├── sbc35_a9g20 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── sbc35_a9g20.c │ │ │ └── spi.c │ │ ├── tny_a9260 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── spi.c │ │ │ └── tny_a9260.c │ │ └── usb_a9263 │ │ │ ├── Makefile │ │ │ └── usb_a9263.c │ ├── canmb │ │ ├── Makefile │ │ ├── canmb.c │ │ └── mt48lc16m32s2-75.h │ ├── chromebook-x86 │ │ └── coreboot │ │ │ ├── Makefile │ │ │ └── coreboot_start.S │ ├── cloudengines │ │ └── pogo_e02 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── pogo_e02.c │ │ │ └── pogo_e02.h │ ├── cm-bf527 │ │ ├── Makefile │ │ ├── cm-bf527.c │ │ ├── config.mk │ │ └── gpio_cfi_flash.c │ ├── cm-bf533 │ │ ├── Makefile │ │ ├── cm-bf533.c │ │ └── config.mk │ ├── cm-bf537e │ │ ├── Makefile │ │ ├── cm-bf537e.c │ │ ├── config.mk │ │ ├── gpio_cfi_flash.c │ │ └── gpio_cfi_flash.h │ ├── cm-bf537u │ │ ├── Makefile │ │ ├── cm-bf537u.c │ │ ├── config.mk │ │ └── gpio_cfi_flash.c │ ├── cm-bf548 │ │ ├── Makefile │ │ ├── cm-bf548.c │ │ ├── config.mk │ │ └── video.c │ ├── cm-bf561 │ │ ├── Makefile │ │ ├── cm-bf561.c │ │ └── config.mk │ ├── cm4008 │ │ ├── Makefile │ │ ├── cm4008.c │ │ ├── config.mk │ │ └── flash.c │ ├── cm41xx │ │ ├── Makefile │ │ ├── cm41xx.c │ │ ├── config.mk │ │ └── flash.c │ ├── cm5200 │ │ ├── Makefile │ │ ├── cm5200.c │ │ ├── cm5200.h │ │ ├── cmd_cm5200.c │ │ ├── fwupdate.c │ │ └── fwupdate.h │ ├── cmi │ │ ├── Makefile │ │ ├── README │ │ ├── cmi.c │ │ └── flash.c │ ├── cobra5272 │ │ ├── Makefile │ │ ├── README │ │ ├── bdm │ │ │ ├── cobra5272_uboot.gdb │ │ │ ├── gdbinit.reset │ │ │ ├── load-cobra_uboot │ │ │ └── reset │ │ ├── cobra5272.c │ │ ├── config.mk │ │ ├── flash.c │ │ └── u-boot.lds │ ├── cogent │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── dig297.c │ │ │ └── dig297.h │ ├── compal │ │ └── paz00 │ │ │ ├── Makefile │ │ │ └── paz00.c │ ├── compulab │ │ ├── cm_t335 │ │ │ ├── Makefile │ │ │ ├── cm_t335.c │ │ │ ├── mux.c │ │ │ ├── spl.c │ │ │ └── u-boot.lds │ │ ├── cm_t35 │ │ │ ├── Makefile │ │ │ └── cm_t35.c │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── eeprom.c │ │ │ ├── eeprom.h │ │ │ └── omap3_display.c │ │ └── trimslice │ │ │ ├── Makefile │ │ │ └── trimslice.c │ ├── congatec │ │ └── cgtqmx6eval │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── cgtqmx6eval.c │ ├── corscience │ │ └── tricorder │ │ │ ├── Makefile │ │ │ ├── led.c │ │ │ ├── tricorder-eeprom.c │ │ │ ├── tricorder-eeprom.h │ │ │ ├── tricorder.c │ │ │ └── tricorder.h │ ├── cpc45 │ │ ├── Makefile │ │ ├── cpc45.c │ │ ├── flash.c │ │ ├── ide.c │ │ ├── pd67290.c │ │ └── plx9030.c │ ├── cpu86 │ │ ├── Makefile │ │ ├── cpu86.c │ │ ├── cpu86.h │ │ └── flash.c │ ├── cpu87 │ │ ├── Makefile │ │ ├── cpu87.c │ │ ├── cpu87.h │ │ └── flash.c │ ├── cray │ │ └── L1 │ │ │ ├── L1.c │ │ │ ├── Makefile │ │ │ ├── bootscript.hush │ │ │ ├── flash.c │ │ │ ├── init.S │ │ │ ├── patchme │ │ │ ├── u-boot.lds.debug │ │ │ └── x2c.awk │ ├── creative │ │ └── xfi3 │ │ │ ├── Makefile │ │ │ ├── spl_boot.c │ │ │ └── xfi3.c │ ├── csb272 │ │ ├── Makefile │ │ ├── csb272.c │ │ └── init.S │ ├── csb472 │ │ ├── Makefile │ │ ├── csb472.c │ │ └── init.S │ ├── cu824 │ │ ├── Makefile │ │ ├── README │ │ ├── cu824.c │ │ └── flash.c │ ├── d-link │ │ └── dns325 │ │ │ ├── Makefile │ │ │ ├── dns325.c │ │ │ ├── dns325.h │ │ │ └── kwbimage.cfg │ ├── dave │ │ ├── PPChameleonEVB │ │ │ ├── Makefile │ │ │ ├── PPChameleonEVB.c │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── nand.c │ │ │ └── u-boot.lds │ │ └── common │ │ │ ├── flash.c │ │ │ ├── fpga.c │ │ │ └── pci.c │ ├── davedenx │ │ ├── aria │ │ │ ├── Makefile │ │ │ └── aria.c │ │ └── qong │ │ │ ├── Makefile │ │ │ ├── fpga.c │ │ │ ├── lowlevel_init.S │ │ │ ├── qong.c │ │ │ └── qong_fpga.h │ ├── davinci │ │ ├── da8xxevm │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm355evm.c │ │ ├── dm355leopard │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm355leopard.c │ │ ├── dm365evm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm365evm.c │ │ ├── dm6467evm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── dm6467evm.c │ │ ├── dvevm │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── dvevm.c │ │ ├── ea20 │ │ │ ├── Makefile │ │ │ └── ea20.c │ │ ├── schmoogie │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── schmoogie.c │ │ ├── sffsdr │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── sffsdr.c │ │ └── sonata │ │ │ ├── Makefile │ │ │ ├── board_init.S │ │ │ ├── config.mk │ │ │ └── sonata.c │ ├── dbau1x00 │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── dbau1x00.c │ │ └── lowlevel_init.S │ ├── denx │ │ ├── m28evk │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── m28evk.c │ │ │ └── spl_boot.c │ │ └── m53evk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── m53evk.c │ ├── dnp5370 │ │ ├── Makefile │ │ ├── README │ │ └── dnp5370.c │ ├── eXalion │ │ ├── Makefile │ │ ├── eXalion.c │ │ ├── eXalion.h │ │ └── piix_pci.h │ ├── earthlcd │ │ └── favr-32-ezkit │ │ │ ├── Makefile │ │ │ ├── favr-32-ezkit.c │ │ │ └── flash.c │ ├── egnite │ │ └── ethernut5 │ │ │ ├── Makefile │ │ │ ├── ethernut5.c │ │ │ ├── ethernut5_pwrman.c │ │ │ └── ethernut5_pwrman.h │ ├── eltec │ │ ├── elppc │ │ │ ├── Makefile │ │ │ ├── asm_init.S │ │ │ ├── eepro100_srom.c │ │ │ ├── elppc.c │ │ │ ├── flash.c │ │ │ ├── misc.c │ │ │ ├── mpc107_i2c.c │ │ │ ├── pci.c │ │ │ └── srom.h │ │ └── mhpc │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── mhpc.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── emk │ │ ├── common │ │ │ ├── am79c874.c │ │ │ ├── flash.c │ │ │ └── vpd.c │ │ ├── top5200 │ │ │ ├── Makefile │ │ │ └── top5200.c │ │ ├── top860 │ │ │ ├── Makefile │ │ │ ├── top860.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ │ └── top9000 │ │ │ ├── Makefile │ │ │ ├── spi.c │ │ │ └── top9000.c │ ├── enbw │ │ └── enbw_cmc │ │ │ ├── Makefile │ │ │ └── enbw_cmc.c │ ├── ep8248 │ │ ├── Makefile │ │ └── ep8248.c │ ├── ep8260 │ │ ├── Makefile │ │ ├── ep8260.c │ │ ├── ep8260.h │ │ ├── flash.c │ │ └── mii_phy.c │ ├── ep82xxm │ │ ├── Makefile │ │ └── ep82xxm.c │ ├── esd │ │ ├── adciop │ │ │ ├── Makefile │ │ │ ├── adciop.c │ │ │ ├── adciop.h │ │ │ └── flash.c │ │ ├── apc405 │ │ │ ├── Makefile │ │ │ ├── apc405.c │ │ │ ├── fpgadata.c │ │ │ └── logo_640_480_24bpp.c │ │ ├── ar405 │ │ │ ├── Makefile │ │ │ ├── ar405.c │ │ │ ├── ar405.h │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── fpgadata_xl30.c │ │ ├── ash405 │ │ │ ├── Makefile │ │ │ ├── ash405.c │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── cms700 │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── cpci2dp.c │ │ │ └── flash.c │ │ ├── cpci405 │ │ │ ├── Makefile │ │ │ ├── cpci405.c │ │ │ ├── flash.c │ │ │ ├── fpgadata_cpci405.c │ │ │ ├── fpgadata_cpci4052.c │ │ │ └── fpgadata_cpci405ab.c │ │ ├── cpci5200 │ │ │ ├── Makefile │ │ │ ├── cpci5200.c │ │ │ ├── mt46v16m16-75.h │ │ │ └── strataflash.c │ │ ├── cpci750 │ │ │ ├── 64360.h │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── cpciiser4.c │ │ │ ├── cpciiser4.h │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── dasa_sim │ │ │ ├── Makefile │ │ │ ├── cmd_dasa_sim.c │ │ │ ├── dasa_sim.c │ │ │ ├── dasa_sim.h │ │ │ ├── eeprom.c │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── u-boot.lds │ │ ├── dp405 │ │ │ ├── Makefile │ │ │ ├── dp405.c │ │ │ └── flash.c │ │ ├── du405 │ │ │ ├── Makefile │ │ │ ├── du405.c │ │ │ ├── du405.h │ │ │ ├── flash.c │ │ │ └── fpgadata.c │ │ ├── du440 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── du440.c │ │ │ ├── du440.h │ │ │ └── init.S │ │ ├── hh405 │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── hub405.c │ │ ├── mecp5123 │ │ │ ├── Makefile │ │ │ └── mecp5123.c │ │ ├── mecp5200 │ │ │ ├── Makefile │ │ │ ├── mecp5200.c │ │ │ └── mt46v16m16-75.h │ │ ├── meesc │ │ │ ├── Makefile │ │ │ ├── meesc.c │ │ │ └── partition.c │ │ ├── ocrtc │ │ │ ├── Makefile │ │ │ ├── cmd_ocrtc.c │ │ │ ├── flash.c │ │ │ ├── ocrtc.c │ │ │ └── ocrtc.h │ │ ├── otc570 │ │ │ ├── Makefile │ │ │ ├── otc570.c │ │ │ └── partition.c │ │ ├── pci405 │ │ │ ├── Makefile │ │ │ ├── cmd_pci405.c │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── pci405.c │ │ │ ├── pci405.h │ │ │ └── writeibm.S │ │ ├── pf5200 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── mt46v16m16-75.h │ │ │ └── pf5200.c │ │ ├── plu405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── plu405.c │ │ ├── pmc405 │ │ │ ├── Makefile │ │ │ └── pmc405.c │ │ ├── pmc405de │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ └── pmc405de.c │ │ ├── pmc440 │ │ │ ├── Makefile │ │ │ ├── cmd_pmc440.c │ │ │ ├── config.mk │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── init.S │ │ │ ├── pmc440.c │ │ │ ├── pmc440.h │ │ │ ├── sdram.c │ │ │ └── u-boot-nand.lds │ │ ├── tasreg │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── tasreg.c │ │ │ └── u-boot.lds │ │ ├── vme8349 │ │ │ ├── Makefile │ │ │ ├── caddy.c │ │ │ ├── caddy.h │ │ │ ├── pci.c │ │ │ ├── vme8349.c │ │ │ └── vme8349pin.h │ │ ├── voh405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ ├── logo_320_240_4bpp.c │ │ │ ├── logo_640_480_24bpp.c │ │ │ └── voh405.c │ │ ├── vom405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── vom405.c │ │ └── wuh405 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── fpgadata.c │ │ │ └── wuh405.c │ ├── esg │ │ └── ima3-mx53 │ │ │ ├── Makefile │ │ │ ├── ima3-mx53.c │ │ │ └── imximage.cfg │ ├── espt │ │ ├── Makefile │ │ ├── espt.c │ │ └── lowlevel_init.S │ ├── esteem192e │ │ ├── Makefile │ │ ├── esteem192e.c │ │ ├── flash.c │ │ └── u-boot.lds │ ├── etin │ │ ├── debris │ │ │ ├── Makefile │ │ │ ├── debris.c │ │ │ ├── flash.c │ │ │ └── phantom.c │ │ └── kvme080 │ │ │ ├── Makefile │ │ │ ├── kvme080.c │ │ │ ├── multiverse.c │ │ │ └── multiverse.h │ ├── eukrea │ │ ├── cpu9260 │ │ │ ├── Makefile │ │ │ ├── cpu9260.c │ │ │ └── led.c │ │ └── cpuat91 │ │ │ ├── Makefile │ │ │ └── cpuat91.c │ ├── evb64260 │ │ ├── 64260.h │ │ ├── Makefile │ │ ├── README │ │ ├── README.EVB-64260-750CX │ │ ├── bootseq.txt │ │ ├── ecctest.c │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── gpios.h │ │ │ ├── hww1u1a.c │ │ │ ├── law.c │ │ │ └── tlb.c │ ├── fads │ │ ├── Makefile │ │ ├── README │ │ ├── fads.c │ │ ├── fads.h │ │ ├── flash.c │ │ ├── lamp.c │ │ ├── pcmcia.c │ │ └── u-boot.lds │ ├── faraday │ │ └── a320evb │ │ │ ├── Makefile │ │ │ ├── a320evb.c │ │ │ └── lowlevel_init.S │ ├── flagadm │ │ ├── Makefile │ │ ├── flagadm.c │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── freescale │ │ ├── b4860qds │ │ │ ├── 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 │ │ │ └── tlb.c │ │ ├── bsc9131rdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bsc9131rdb.c │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── spl_minimal.c │ │ │ └── tlb.c │ │ ├── bsc9132qds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bsc9132qds.c │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── spl_minimal.c │ │ │ └── tlb.c │ │ ├── c29xpcie │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── corenet_ds │ │ │ ├── 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 │ │ ├── imx │ │ │ └── ddr │ │ │ │ └── mx6q_4x_mt41j128.cfg │ │ ├── m5208evbe │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5208evbe.c │ │ │ └── u-boot.lds │ │ ├── m52277evb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── m52277evb.c │ │ │ └── u-boot.lds │ │ ├── m5235evb │ │ │ ├── Makefile │ │ │ ├── m5235evb.c │ │ │ └── u-boot.lds │ │ ├── m5249evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5249evb.c │ │ │ └── u-boot.lds │ │ ├── m5253demo │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── flash.c │ │ │ ├── m5253demo.c │ │ │ └── u-boot.lds │ │ ├── m5253evbe │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.mk │ │ │ ├── m5253evbe.c │ │ │ └── u-boot.lds │ │ ├── m5271evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5271evb.c │ │ │ └── u-boot.lds │ │ ├── m5272c3 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5272c3.c │ │ │ └── u-boot.lds │ │ ├── m5275evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5275evb.c │ │ │ └── u-boot.lds │ │ ├── m5282evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5282evb.c │ │ │ └── u-boot.lds │ │ ├── m53017evb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.mk │ │ │ ├── m53017evb.c │ │ │ └── u-boot.lds │ │ ├── m5329evb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m5329evb.c │ │ │ ├── nand.c │ │ │ └── u-boot.lds │ │ ├── m5373evb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.mk │ │ │ ├── m5373evb.c │ │ │ ├── nand.c │ │ │ └── u-boot.lds │ │ ├── m54418twr │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m54418twr.c │ │ │ └── u-boot.lds │ │ ├── m54451evb │ │ │ ├── Makefile │ │ │ ├── m54451evb.c │ │ │ └── u-boot.lds │ │ ├── m54455evb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── m54455evb.c │ │ │ └── u-boot.lds │ │ ├── m547xevb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.mk │ │ │ ├── m547xevb.c │ │ │ └── u-boot.lds │ │ ├── m548xevb │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── m548xevb.c │ │ │ └── u-boot.lds │ │ ├── mpc5121ads │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── mpc5121ads.c │ │ ├── mpc7448hpc2 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── asm_init.S │ │ │ ├── config.mk │ │ │ ├── mpc7448hpc2.c │ │ │ └── tsi108_init.c │ │ ├── mpc8260ads │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── mpc8260ads.c │ │ ├── mpc8266ads │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ └── mpc8266ads.c │ │ ├── mpc8308rdb │ │ │ ├── Makefile │ │ │ ├── mpc8308rdb.c │ │ │ └── sdram.c │ │ ├── mpc8313erdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc8313erdb.c │ │ │ └── sdram.c │ │ ├── mpc8315erdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc8315erdb.c │ │ │ └── sdram.c │ │ ├── mpc8323erdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── mpc8323erdb.c │ │ ├── mpc832xemds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc832xemds.c │ │ │ └── pci.c │ │ ├── mpc8349emds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── mpc8349emds.c │ │ │ └── pci.c │ │ ├── mpc8349itx │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc8349itx.c │ │ │ └── pci.c │ │ ├── mpc8360emds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc8360emds.c │ │ │ └── pci.c │ │ ├── mpc8360erdk │ │ │ ├── Makefile │ │ │ ├── mpc8360erdk.c │ │ │ └── nand.c │ │ ├── mpc837xemds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc837xemds.c │ │ │ ├── pci.c │ │ │ └── pci.h │ │ ├── mpc837xerdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mpc837xerdb.c │ │ │ └── pci.c │ │ ├── mpc8536ds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8536ds.c │ │ │ └── tlb.c │ │ ├── mpc8540ads │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8540ads.c │ │ │ └── tlb.c │ │ ├── mpc8541cds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8541cds.c │ │ │ └── tlb.c │ │ ├── mpc8544ds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8544ds.c │ │ │ └── tlb.c │ │ ├── mpc8548cds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8548cds.c │ │ │ └── tlb.c │ │ ├── mpc8555cds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8555cds.c │ │ │ └── tlb.c │ │ ├── mpc8560ads │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8560ads.c │ │ │ └── tlb.c │ │ ├── mpc8568mds │ │ │ ├── Makefile │ │ │ ├── bcsr.c │ │ │ ├── bcsr.h │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8568mds.c │ │ │ └── tlb.c │ │ ├── mpc8569mds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bcsr.c │ │ │ ├── bcsr.h │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8569mds.c │ │ │ └── tlb.c │ │ ├── mpc8572ds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8572ds.c │ │ │ └── tlb.c │ │ ├── mpc8610hpcd │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── mpc8610hpcd.c │ │ │ └── mpc8610hpcd_diu.c │ │ ├── mpc8641hpcn │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ └── mpc8641hpcn.c │ │ ├── mx23evk │ │ │ ├── Makefile │ │ │ ├── mx23evk.c │ │ │ └── spl_boot.c │ │ ├── mx25pdk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ ├── lowlevel_init.S │ │ │ └── mx25pdk.c │ │ ├── mx28evk │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── iomux.c │ │ │ └── mx28evk.c │ │ ├── mx31ads │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── mx31ads.c │ │ │ └── u-boot.lds │ │ ├── mx31pdk │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── mx31pdk.c │ │ ├── mx35pdk │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── lowlevel_init.S │ │ │ ├── mx35pdk.c │ │ │ └── mx35pdk.h │ │ ├── mx51evk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ ├── mx51evk.c │ │ │ └── mx51evk_video.c │ │ ├── mx53ard │ │ │ ├── Makefile │ │ │ ├── imximage_dd3.cfg │ │ │ └── mx53ard.c │ │ ├── mx53evk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx53evk.c │ │ ├── mx53loco │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ ├── mx53loco.c │ │ │ └── mx53loco_video.c │ │ ├── mx53smd │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx53smd.c │ │ ├── mx6qarm2 │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx6qarm2.c │ │ ├── mx6qsabreauto │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx6qsabreauto.c │ │ ├── mx6sabresd │ │ │ ├── Makefile │ │ │ └── mx6sabresd.c │ │ ├── mx6slevk │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── mx6slevk.c │ │ ├── p1010rdb │ │ │ ├── Makefile │ │ │ ├── README.P1010RDB-PA │ │ │ ├── README.P1010RDB-PB │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1010rdb.c │ │ │ ├── spl.c │ │ │ ├── spl_minimal.c │ │ │ └── tlb.c │ │ ├── p1022ds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── diu.c │ │ │ ├── law.c │ │ │ ├── p1022ds.c │ │ │ ├── spl.c │ │ │ ├── spl_minimal.c │ │ │ └── tlb.c │ │ ├── p1023rdb │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1023rdb.c │ │ │ └── tlb.c │ │ ├── p1023rds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bcsr.h │ │ │ ├── law.c │ │ │ ├── p1023rds.c │ │ │ └── tlb.c │ │ ├── p1_p2_rdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1_p2_rdb.c │ │ │ ├── pci.c │ │ │ └── tlb.c │ │ ├── p1_p2_rdb_pc │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1_p2_rdb_pc.c │ │ │ ├── spl.c │ │ │ ├── spl_minimal.c │ │ │ └── tlb.c │ │ ├── p1_twr │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p1_twr.c │ │ │ └── tlb.c │ │ ├── p2020come │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p2020come.c │ │ │ └── tlb.c │ │ ├── p2020ds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── p2020ds.c │ │ │ └── tlb.c │ │ ├── p2041rdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cpld.c │ │ │ ├── cpld.h │ │ │ ├── ddr.c │ │ │ ├── eth.c │ │ │ └── p2041rdb.c │ │ ├── t1040qds │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── ddr.h │ │ │ ├── eth.c │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ ├── t1040_pbi.cfg │ │ │ ├── t1040_rcw.cfg │ │ │ ├── t1040qds.c │ │ │ ├── t1040qds.h │ │ │ ├── t1040qds_qixis.h │ │ │ └── tlb.c │ │ ├── t104xrdb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── ddr.h │ │ │ ├── eth.c │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ ├── t104xrdb.c │ │ │ ├── t104xrdb.h │ │ │ └── tlb.c │ │ ├── t208xqds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── ddr.h │ │ │ ├── eth_t208xqds.c │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ ├── t2080_rcw.cfg │ │ │ ├── t2081_rcw.cfg │ │ │ ├── t208x_pbi.cfg │ │ │ ├── t208xqds.c │ │ │ ├── t208xqds.h │ │ │ ├── t208xqds_qixis.h │ │ │ └── tlb.c │ │ ├── t4qds │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── ddr.h │ │ │ ├── eth.c │ │ │ ├── law.c │ │ │ ├── pci.c │ │ │ ├── t4240emu.c │ │ │ ├── t4240qds.c │ │ │ ├── t4240qds_qixis.h │ │ │ ├── t4_pbi.cfg │ │ │ ├── t4_rcw.cfg │ │ │ ├── t4qds.h │ │ │ └── tlb.c │ │ └── vf610twr │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ └── vf610twr.c │ ├── funkwerk │ │ └── vovpn-gw │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── m88e6060.c │ │ │ ├── m88e6060.h │ │ │ └── vovpn-gw.c │ ├── g2000 │ │ ├── Makefile │ │ ├── g2000.c │ │ └── strataflash.c │ ├── gaisler │ │ ├── gr_cpci_ax2000 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gr_cpci_ax2000.c │ │ │ └── u-boot.lds │ │ ├── gr_ep2s60 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gr_ep2s60.c │ │ │ └── u-boot.lds │ │ ├── gr_xc3s_1500 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gr_xc3s_1500.c │ │ │ └── u-boot.lds │ │ ├── grsim │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── grsim.c │ │ │ └── u-boot.lds │ │ └── grsim_leon2 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── grsim_leon2.c │ │ │ └── u-boot.lds │ ├── galaxy5200 │ │ ├── Makefile │ │ └── galaxy5200.c │ ├── gdsys │ │ ├── 405ep │ │ │ ├── 405ep.c │ │ │ ├── 405ep.h │ │ │ ├── Makefile │ │ │ ├── dlvision-10g.c │ │ │ ├── io.c │ │ │ ├── iocon.c │ │ │ └── neo.c │ │ ├── 405ex │ │ │ ├── 405ex.c │ │ │ ├── 405ex.h │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ └── dlvision.c │ │ ├── gdppc440etx │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── gdppc440etx.c │ │ │ └── init.S │ │ ├── intip │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ └── intip.c │ │ └── p1022 │ │ │ ├── Makefile │ │ │ ├── controlcenterd-id.c │ │ │ ├── controlcenterd-id.h │ │ │ ├── controlcenterd.c │ │ │ ├── ddr.c │ │ │ ├── diu.c │ │ │ ├── law.c │ │ │ ├── sdhc_boot.c │ │ │ └── tlb.c │ ├── gen860t │ │ ├── Makefile │ │ ├── README │ │ ├── beeper.c │ │ ├── beeper.h │ │ ├── flash.c │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── gen860t.c │ │ ├── ioport.c │ │ ├── ioport.h │ │ ├── u-boot-flashenv.lds │ │ └── u-boot.lds │ ├── genesi │ │ └── mx51_efikamx │ │ │ ├── Makefile │ │ │ ├── efikamx-usb.c │ │ │ ├── efikamx.c │ │ │ ├── imximage_mx.cfg │ │ │ └── imximage_sb.cfg │ ├── genietv │ │ ├── Makefile │ │ ├── flash.c │ │ ├── genietv.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── gw8260 │ │ ├── Makefile │ │ ├── flash.c │ │ └── gw8260.c │ ├── h2200 │ │ ├── Makefile │ │ ├── h2200-header.S │ │ └── h2200.c │ ├── hale │ │ └── tt01 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── tt01.c │ ├── hermes │ │ ├── Makefile │ │ ├── flash.c │ │ ├── hermes.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── hidden_dragon │ │ ├── Makefile │ │ ├── README │ │ ├── early_init.S │ │ ├── flash.c │ │ └── hidden_dragon.c │ ├── highbank │ │ ├── Makefile │ │ └── highbank.c │ ├── htkw │ │ └── mcx │ │ │ ├── Makefile │ │ │ ├── mcx.c │ │ │ └── mcx.h │ ├── hymod │ │ ├── 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 │ │ ├── Makefile │ │ ├── config.mk │ │ └── ibf-dsp561.c │ ├── icecube │ │ ├── Makefile │ │ ├── README │ │ ├── README.Lite5200B_low_power │ │ ├── flash.c │ │ ├── icecube.c │ │ ├── mt46v16m16-75.h │ │ ├── mt46v32m16.h │ │ └── mt48lc16m16a2-75.h │ ├── icpdas │ │ └── lp8x4x │ │ │ ├── Makefile │ │ │ └── lp8x4x.c │ ├── icu862 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── icu862.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── idmr │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── idmr.c │ │ └── u-boot.lds │ ├── ids8247 │ │ ├── Makefile │ │ └── ids8247.c │ ├── ifm │ │ ├── ac14xx │ │ │ ├── Makefile │ │ │ └── ac14xx.c │ │ └── o2dnt2 │ │ │ ├── Makefile │ │ │ └── o2dnt2.c │ ├── imgtec │ │ └── malta │ │ │ ├── Makefile │ │ │ ├── flash-malta-boot.tcl │ │ │ ├── lowlevel_init.S │ │ │ ├── malta.c │ │ │ ├── superio.c │ │ │ └── superio.h │ ├── imx31_phycore │ │ ├── Makefile │ │ ├── imx31_phycore.c │ │ └── lowlevel_init.S │ ├── in-circuit │ │ └── grasshopper │ │ │ ├── Makefile │ │ │ └── grasshopper.c │ ├── incaip │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── flash.c │ │ ├── incaip.c │ │ └── lowlevel_init.S │ ├── inka4x0 │ │ ├── Makefile │ │ ├── inka4x0.c │ │ ├── inkadiag.c │ │ ├── k4h511638c.h │ │ ├── mt46v16m16-75.h │ │ ├── mt46v32m16-75.h │ │ └── mt48lc16m16a2-75.h │ ├── intercontrol │ │ └── digsy_mtc │ │ │ ├── Makefile │ │ │ ├── cmd_disp.c │ │ │ ├── cmd_mtc.c │ │ │ ├── cmd_mtc.h │ │ │ ├── digsy_mtc.c │ │ │ ├── eeprom.h │ │ │ ├── is42s16800a-7t.h │ │ │ └── is45s16800a2.h │ ├── iomega │ │ └── iconnect │ │ │ ├── Makefile │ │ │ ├── iconnect.c │ │ │ ├── iconnect.h │ │ │ └── kwbimage.cfg │ ├── ip04 │ │ ├── Makefile │ │ ├── config.mk │ │ └── ip04.c │ ├── ip860 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── ip860.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── ipek01 │ │ ├── Makefile │ │ └── ipek01.c │ ├── iphase4539 │ │ ├── Makefile │ │ ├── README │ │ ├── flash.c │ │ └── iphase4539.c │ ├── isee │ │ ├── igep0033 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── mux.c │ │ └── igep00x0 │ │ │ ├── Makefile │ │ │ ├── igep00x0.c │ │ │ └── igep00x0.h │ ├── ispan │ │ ├── Makefile │ │ └── ispan.c │ ├── ivm │ │ ├── Makefile │ │ ├── flash.c │ │ ├── ivm.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── jornada │ │ ├── Makefile │ │ ├── jornada.c │ │ └── setup.S │ ├── jse │ │ ├── Makefile │ │ ├── README.txt │ │ ├── flash.c │ │ ├── host_bridge.c │ │ ├── init.S │ │ ├── jse.c │ │ ├── jse_priv.h │ │ └── sdram.c │ ├── jupiter │ │ ├── Makefile │ │ └── jupiter.c │ ├── karo │ │ ├── tk71 │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── tk71.c │ │ └── tx25 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── tx25.c │ ├── keymile │ │ ├── common │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ └── ivm.c │ │ ├── km82xx │ │ │ ├── Makefile │ │ │ └── km82xx.c │ │ ├── km83xx │ │ │ ├── Makefile │ │ │ ├── README.kmeter1 │ │ │ ├── km83xx.c │ │ │ └── km83xx_i2c.c │ │ ├── km_arm │ │ │ ├── Makefile │ │ │ ├── fpga_config.c │ │ │ ├── km_arm.c │ │ │ ├── kwbimage-memphis.cfg │ │ │ ├── kwbimage.cfg │ │ │ ├── kwbimage_128M16_1.cfg │ │ │ └── kwbimage_256M8_1.cfg │ │ ├── kmp204x │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ └── kzm9g.c │ ├── korat │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── kup4k.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ │ └── kup4x │ │ │ ├── Makefile │ │ │ ├── kup4x.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── logicpd │ │ ├── am3517evm │ │ │ ├── Makefile │ │ │ ├── am3517evm.c │ │ │ └── am3517evm.h │ │ ├── imx27lite │ │ │ ├── Makefile │ │ │ ├── imx27lite.c │ │ │ └── lowlevel_init.S │ │ ├── imx31_litekit │ │ │ ├── Makefile │ │ │ ├── imx31_litekit.c │ │ │ └── lowlevel_init.S │ │ ├── omap3som │ │ │ ├── Makefile │ │ │ ├── omap3logic.c │ │ │ └── omap3logic.h │ │ └── zoom1 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── zoom1.c │ │ │ └── zoom1.h │ ├── lubbock │ │ ├── Makefile │ │ ├── flash.c │ │ └── lubbock.c │ ├── lwmon │ │ ├── Makefile │ │ ├── README.keybd │ │ ├── flash.c │ │ ├── lwmon.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── lwmon5 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── init.S │ │ ├── kbd.c │ │ ├── lwmon5.c │ │ └── sdram.c │ ├── manroland │ │ ├── hmi1001 │ │ │ ├── Makefile │ │ │ └── hmi1001.c │ │ ├── mucmc52 │ │ │ ├── Makefile │ │ │ └── mucmc52.c │ │ ├── uc100 │ │ │ ├── Makefile │ │ │ ├── pcmcia.c │ │ │ ├── u-boot.lds │ │ │ └── uc100.c │ │ └── uc101 │ │ │ ├── Makefile │ │ │ └── uc101.c │ ├── matrix_vision │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── mv_common.c │ │ │ └── mv_common.h │ │ ├── mergerbox │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mergerbox.c │ │ │ ├── mergerbox.h │ │ │ ├── pci.c │ │ │ └── sm107.c │ │ ├── mvbc_p │ │ │ ├── Makefile │ │ │ ├── README.mvbc_p │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvbc_p.c │ │ │ ├── mvbc_p.h │ │ │ └── mvbc_p_autoscript │ │ ├── mvblm7 │ │ │ ├── Makefile │ │ │ ├── README.mvblm7 │ │ │ ├── bootscript │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvblm7.c │ │ │ ├── mvblm7.h │ │ │ └── pci.c │ │ ├── mvblx │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvblx.c │ │ │ ├── mvblx.h │ │ │ └── sys_eeprom.c │ │ └── mvsmr │ │ │ ├── Makefile │ │ │ ├── README.mvsmr │ │ │ ├── bootscript │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ ├── mvsmr.c │ │ │ ├── mvsmr.h │ │ │ └── u-boot.lds │ ├── mbx8xx │ │ ├── Makefile │ │ ├── README │ │ ├── csr.h │ │ ├── dimm.h │ │ ├── flash.c │ │ ├── mbx8xx.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ ├── u-boot.lds.debug │ │ ├── vpd.c │ │ └── vpd.h │ ├── mcc200 │ │ ├── Makefile │ │ ├── auto_update.c │ │ ├── lcd.c │ │ ├── mcc200.c │ │ ├── mt46v16m16-75.h │ │ ├── mt48lc16m16a2-75.h │ │ ├── mt48lc16m32s2-75.h │ │ └── mt48lc8m32b2-6-7.h │ ├── mediatek │ │ ├── common │ │ │ ├── Makefile │ │ │ └── mtk_cmd.c │ │ ├── mt7622_evb │ │ │ ├── Makefile │ │ │ ├── mt7622_evb.c │ │ │ ├── timer.c │ │ │ ├── uart.c │ │ │ └── wdt.c │ │ └── mt7623_evb │ │ │ ├── Makefile │ │ │ ├── mt7623_evb.c │ │ │ ├── mt_gpt.c │ │ │ ├── mtk_wdt.c │ │ │ └── uart.c │ ├── micronas │ │ └── vct │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ └── mimc200.c │ ├── miromico │ │ └── hammerhead │ │ │ ├── Makefile │ │ │ └── hammerhead.c │ ├── mosaixtech │ │ └── icon │ │ │ ├── Makefile │ │ │ ├── chip_config.c │ │ │ ├── config.mk │ │ │ ├── icon.c │ │ │ └── init.S │ ├── motionpro │ │ ├── Makefile │ │ └── motionpro.c │ ├── mousse │ │ ├── Makefile │ │ ├── README │ │ ├── flash.c │ │ ├── flash.h │ │ ├── m48t59y.c │ │ ├── m48t59y.h │ │ ├── mousse.c │ │ ├── mousse.h │ │ ├── pci.c │ │ ├── u-boot.lds │ │ ├── u-boot.lds.ram │ │ └── u-boot.lds.rom │ ├── mpc8308_p1m │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── cmd_mip405.c │ │ │ ├── init.S │ │ │ ├── mip405.c │ │ │ └── mip405.h │ │ ├── pati │ │ │ ├── Makefile │ │ │ ├── cmd_pati.c │ │ │ ├── pati.c │ │ │ ├── pati.h │ │ │ ├── pci_eeprom.h │ │ │ └── plx9056.h │ │ ├── pip405 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cmd_pip405.c │ │ │ ├── init.S │ │ │ ├── pip405.c │ │ │ ├── pip405.h │ │ │ └── u-boot.lds.debug │ │ └── vcma9 │ │ │ ├── Makefile │ │ │ ├── cmd_vcma9.c │ │ │ ├── lowlevel_init.S │ │ │ ├── vcma9.c │ │ │ └── vcma9.h │ ├── mpr2 │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── mpr2.c │ ├── ms7720se │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── ms7720se.c │ ├── ms7722se │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── ms7722se.c │ ├── ms7750se │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── ms7750se.c │ ├── muas3001 │ │ ├── Makefile │ │ └── muas3001.c │ ├── munices │ │ ├── Makefile │ │ ├── mt48lc16m16a2-75.h │ │ └── munices.c │ ├── musenki │ │ ├── Makefile │ │ ├── README │ │ ├── flash.c │ │ └── musenki.c │ ├── mvblue │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mvblue.c │ │ └── u-boot.lds │ ├── netphone │ │ ├── Makefile │ │ ├── flash.c │ │ ├── netphone.c │ │ ├── phone_console.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── netta │ │ ├── Makefile │ │ ├── codec.c │ │ ├── dsp.c │ │ ├── flash.c │ │ ├── netta.c │ │ ├── pcmcia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── netta2 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── netta2.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── netvia │ │ ├── Makefile │ │ ├── flash.c │ │ ├── netvia.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── nokia │ │ └── rx51 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── rx51.c │ │ │ ├── rx51.h │ │ │ └── tag_omap.h │ ├── nvidia │ │ ├── beaver │ │ │ └── Makefile │ │ ├── cardhu │ │ │ ├── Makefile │ │ │ ├── cardhu.c │ │ │ └── pinmux-config-cardhu.h │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── common.mk │ │ │ ├── emc.c │ │ │ └── emc.h │ │ ├── dalmore │ │ │ ├── Makefile │ │ │ ├── dalmore.c │ │ │ └── pinmux-config-dalmore.h │ │ ├── harmony │ │ │ ├── Makefile │ │ │ └── harmony.c │ │ ├── seaboard │ │ │ ├── Makefile │ │ │ └── seaboard.c │ │ ├── venice2 │ │ │ ├── Makefile │ │ │ ├── as3722_init.c │ │ │ ├── as3722_init.h │ │ │ ├── pinmux-config-venice2.h │ │ │ └── venice2.c │ │ ├── ventana │ │ │ └── Makefile │ │ └── whistler │ │ │ ├── Makefile │ │ │ └── whistler.c │ ├── nx823 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── nx823.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── olimex │ │ └── mx23_olinuxino │ │ │ ├── Makefile │ │ │ ├── mx23_olinuxino.c │ │ │ └── spl_boot.c │ ├── omicron │ │ └── calimain │ │ │ ├── Makefile │ │ │ └── calimain.c │ ├── openrisc │ │ └── openrisc-generic │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── openrisc-generic.c │ │ │ └── or1ksim.cfg │ ├── overo │ │ ├── Makefile │ │ ├── overo.c │ │ └── overo.h │ ├── palmld │ │ ├── Makefile │ │ └── palmld.c │ ├── palmtc │ │ ├── Makefile │ │ └── palmtc.c │ ├── palmtreo680 │ │ ├── Makefile │ │ ├── README │ │ └── palmtreo680.c │ ├── pandora │ │ ├── Makefile │ │ ├── pandora.c │ │ └── pandora.h │ ├── pb1x00 │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── flash.c │ │ ├── lowlevel_init.S │ │ └── pb1x00.c │ ├── pcs440ep │ │ ├── Makefile │ │ ├── config.mk │ │ ├── flash.c │ │ ├── init.S │ │ └── pcs440ep.c │ ├── pdm360ng │ │ ├── Makefile │ │ └── pdm360ng.c │ ├── phytec │ │ ├── pcm030 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── mt46v32m16-75.h │ │ │ └── pcm030.c │ │ └── pcm051 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── mux.c │ ├── pm520 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mt46v16m16-75.h │ │ ├── mt48lc16m16a2-75.h │ │ └── pm520.c │ ├── pm826 │ │ ├── Makefile │ │ ├── flash.c │ │ └── pm826.c │ ├── pm828 │ │ ├── Makefile │ │ ├── flash.c │ │ └── pm828.c │ ├── ppcag │ │ └── bg0900 │ │ │ ├── Makefile │ │ │ ├── bg0900.c │ │ │ └── spl_boot.c │ ├── ppmc7xx │ │ ├── Makefile │ │ ├── flash.c │ │ ├── init.S │ │ ├── pci.c │ │ └── ppmc7xx.c │ ├── ppmc8260 │ │ ├── Makefile │ │ ├── ppmc8260.c │ │ └── strataflash.c │ ├── pr1 │ │ ├── Makefile │ │ ├── config.mk │ │ └── pr1.c │ ├── prodrive │ │ ├── alpr │ │ │ ├── Makefile │ │ │ ├── alpr.c │ │ │ ├── config.mk │ │ │ ├── fpga.c │ │ │ ├── init.S │ │ │ └── nand.c │ │ ├── common │ │ │ ├── flash.c │ │ │ └── fpga.c │ │ ├── p3mx │ │ │ ├── 64460.h │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── p3p440.c │ │ │ └── p3p440.h │ ├── psyent │ │ ├── common │ │ │ └── AMDLV065D.c │ │ ├── pci5441 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── pci5441.c │ │ └── pk1c20 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── led.c │ │ │ └── pk1c20.c │ ├── pxa255_idp │ │ ├── Makefile │ │ ├── README │ │ ├── idp_notes.txt │ │ ├── pxa_idp.c │ │ ├── pxa_reg_calcs.out │ │ └── pxa_reg_calcs.py │ ├── qemu-mips │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── qemu-mips.c │ ├── quad100hd │ │ ├── Makefile │ │ ├── nand.c │ │ └── quad100hd.c │ ├── quantum │ │ ├── Makefile │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── quantum.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── r360mpi │ │ ├── Makefile │ │ ├── flash.c │ │ ├── pcmcia.c │ │ ├── r360mpi.c │ │ └── u-boot.lds │ ├── raidsonic │ │ └── ib62x0 │ │ │ ├── Makefile │ │ │ ├── ib62x0.c │ │ │ ├── ib62x0.h │ │ │ └── kwbimage.cfg │ ├── raspberrypi │ │ └── rpi_b │ │ │ ├── Makefile │ │ │ └── rpi_b.c │ ├── rattler │ │ ├── Makefile │ │ └── rattler.c │ ├── rbc823 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── kbd.c │ │ ├── rbc823.c │ │ └── u-boot.lds │ ├── renesas │ │ ├── MigoR │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── migo_r.c │ │ ├── ap325rxa │ │ │ ├── Makefile │ │ │ ├── ap325rxa.c │ │ │ ├── cpld-ap325rxa.c │ │ │ └── lowlevel_init.S │ │ ├── ecovec │ │ │ ├── Makefile │ │ │ ├── ecovec.c │ │ │ └── lowlevel_init.S │ │ ├── koelsch │ │ │ ├── Makefile │ │ │ ├── koelsch.c │ │ │ ├── qos.c │ │ │ └── qos.h │ │ ├── lager │ │ │ ├── Makefile │ │ │ ├── lager.c │ │ │ ├── qos.c │ │ │ └── qos.h │ │ ├── r0p7734 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── r0p7734.c │ │ ├── r2dplus │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── r2dplus.c │ │ ├── r7780mp │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── r7780mp.c │ │ │ └── r7780mp.h │ │ ├── rsk7203 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── rsk7203.c │ │ ├── rsk7264 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── rsk7264.c │ │ ├── rsk7269 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── rsk7269.c │ │ ├── sh7752evb │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── sh7752evb.c │ │ │ ├── spi-boot.c │ │ │ └── u-boot.lds │ │ ├── sh7753evb │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── sh7753evb.c │ │ │ ├── spi-boot.c │ │ │ └── u-boot.lds │ │ ├── sh7757lcr │ │ │ ├── Makefile │ │ │ ├── README.sh7757lcr │ │ │ ├── lowlevel_init.S │ │ │ ├── sh7757lcr.c │ │ │ ├── spi-boot.c │ │ │ └── u-boot.lds │ │ ├── sh7763rdp │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── sh7763rdp.c │ │ └── sh7785lcr │ │ │ ├── Makefile │ │ │ ├── README.sh7785lcr │ │ │ ├── lowlevel_init.S │ │ │ ├── rtl8169.h │ │ │ ├── rtl8169_mac.c │ │ │ ├── selfcheck.c │ │ │ └── sh7785lcr.c │ ├── ronetix │ │ ├── pm9261 │ │ │ ├── Makefile │ │ │ ├── led.c │ │ │ ├── partition.c │ │ │ └── pm9261.c │ │ ├── pm9263 │ │ │ ├── Makefile │ │ │ ├── led.c │ │ │ ├── partition.c │ │ │ └── pm9263.c │ │ └── pm9g45 │ │ │ ├── Makefile │ │ │ └── pm9g45.c │ ├── rpxsuper │ │ ├── Makefile │ │ ├── flash.c │ │ ├── mii_phy.c │ │ ├── readme │ │ ├── rpxsuper.c │ │ └── rpxsuper.h │ ├── rsdproto │ │ ├── Makefile │ │ ├── flash.c │ │ ├── flash_asm.S │ │ ├── rsdproto.c │ │ └── u-boot.lds │ ├── sacsng │ │ ├── Makefile │ │ ├── clkinit.c │ │ ├── clkinit.h │ │ ├── flash.c │ │ ├── ioconfig.h │ │ └── sacsng.c │ ├── samsung │ │ ├── arndale │ │ │ ├── Makefile │ │ │ ├── arndale.c │ │ │ └── arndale_spl.c │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── dfu_sample_env.txt │ │ │ ├── exynos-uboot-spl.lds │ │ │ ├── misc.c │ │ │ ├── multi_i2c.c │ │ │ ├── thor.c │ │ │ └── ums.c │ │ ├── goni │ │ │ ├── Makefile │ │ │ ├── goni.c │ │ │ ├── lowlevel_init.S │ │ │ ├── mem_setup.S │ │ │ └── onenand.c │ │ ├── origen │ │ │ ├── Makefile │ │ │ ├── origen.c │ │ │ └── tools │ │ │ │ └── mkorigenspl.c │ │ ├── smdk2410 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── smdk2410.c │ │ ├── smdk5250 │ │ │ ├── Makefile │ │ │ ├── exynos5-dt.c │ │ │ ├── smdk5250.c │ │ │ └── smdk5250_spl.c │ │ ├── smdk5420 │ │ │ ├── Makefile │ │ │ ├── smdk5420.c │ │ │ └── smdk5420_spl.c │ │ ├── smdkc100 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ ├── mem_setup.S │ │ │ ├── onenand.c │ │ │ └── smdkc100.c │ │ ├── smdkv310 │ │ │ ├── Makefile │ │ │ ├── smdkv310.c │ │ │ └── tools │ │ │ │ └── mksmdkv310spl.c │ │ ├── trats │ │ │ ├── Makefile │ │ │ ├── setup.h │ │ │ └── trats.c │ │ ├── trats2 │ │ │ ├── Makefile │ │ │ └── trats2.c │ │ └── universal_c210 │ │ │ ├── Makefile │ │ │ ├── onenand.c │ │ │ └── universal.c │ ├── sandbox │ │ └── sandbox │ │ │ ├── Makefile │ │ │ ├── README.sandbox │ │ │ └── sandbox.c │ ├── sandburst │ │ ├── common │ │ │ ├── flash.c │ │ │ ├── sb_common.c │ │ │ └── sb_common.h │ │ ├── karef │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── hal_ka_of_auto.h │ │ │ ├── hal_ka_sc_auto.h │ │ │ ├── init.S │ │ │ ├── karef.c │ │ │ ├── karef.h │ │ │ ├── karef_version.h │ │ │ └── u-boot.lds.debug │ │ └── metrobox │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── hal_xc_auto.h │ │ │ ├── init.S │ │ │ ├── metrobox.c │ │ │ ├── metrobox.h │ │ │ ├── metrobox_version.h │ │ │ └── u-boot.lds.debug │ ├── sandisk │ │ └── sansa_fuze_plus │ │ │ ├── Makefile │ │ │ ├── sfp.c │ │ │ └── spl_boot.c │ ├── sandpoint │ │ ├── Makefile │ │ ├── README │ │ ├── dinkdl │ │ ├── early_init.S │ │ ├── flash.c │ │ ├── sandpoint.c │ │ └── u-boot.lds │ ├── sbc405 │ │ ├── Makefile │ │ ├── sbc405.c │ │ └── strataflash.c │ ├── sbc8349 │ │ ├── Makefile │ │ ├── README │ │ ├── pci.c │ │ └── sbc8349.c │ ├── sbc8548 │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ ├── sbc8548.c │ │ └── tlb.c │ ├── sbc8641d │ │ ├── Makefile │ │ ├── README │ │ ├── ddr.c │ │ ├── law.c │ │ └── sbc8641d.c │ ├── sc3 │ │ ├── Makefile │ │ ├── init.S │ │ ├── sc3.c │ │ ├── sc3.h │ │ └── sc3nand.c │ ├── scb9328 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── intel.h │ │ ├── lowlevel_init.S │ │ └── scb9328.c │ ├── schulercontrol │ │ └── sc_sps_1 │ │ │ ├── Makefile │ │ │ ├── sc_sps_1.c │ │ │ └── spl_boot.c │ ├── sheldon │ │ └── simpc8313 │ │ │ ├── Makefile │ │ │ ├── README.simpc8313 │ │ │ ├── sdram.c │ │ │ └── simpc8313.c │ ├── shmin │ │ ├── Makefile │ │ ├── lowlevel_init.S │ │ └── shmin.c │ ├── siemens │ │ ├── common │ │ │ ├── board.c │ │ │ ├── factoryset.c │ │ │ └── factoryset.h │ │ ├── corvus │ │ │ ├── Makefile │ │ │ └── board.c │ │ ├── dxr2 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── mux.c │ │ ├── pxm2 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── mux.c │ │ │ └── pmic.h │ │ ├── rut │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── mux.c │ │ └── taurus │ │ │ ├── Makefile │ │ │ └── taurus.c │ ├── silica │ │ └── pengwyn │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── mux.c │ ├── sixnet │ │ ├── Makefile │ │ ├── flash.c │ │ ├── fpgadata.c │ │ ├── sixnet.c │ │ ├── sixnet.h │ │ └── u-boot.lds │ ├── snmc │ │ ├── qs850 │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── qs850.c │ │ │ └── u-boot.lds │ │ └── qs860t │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── qs860t.c │ │ │ └── u-boot.lds │ ├── socrates │ │ ├── Makefile │ │ ├── ddr.c │ │ ├── law.c │ │ ├── nand.c │ │ ├── sdram.c │ │ ├── socrates.c │ │ ├── tlb.c │ │ └── upm_table.h │ ├── solidrun │ │ ├── hummingboard │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hummingboard.c │ │ │ └── solo.cfg │ │ └── mx6-microsom │ │ │ ├── 800mhz_2x128mx16.cfg │ │ │ ├── clocks.cfg │ │ │ └── ddr-800mhz-32bit-setup.cfg │ ├── spc1920 │ │ ├── Makefile │ │ ├── hpi.c │ │ ├── hpi.h │ │ ├── pld.h │ │ ├── spc1920.c │ │ └── u-boot.lds │ ├── spd8xx │ │ ├── Makefile │ │ ├── flash.c │ │ ├── spd8xx.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── spear │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── spr_lowlevel_init.S │ │ │ └── spr_misc.c │ │ ├── spear300 │ │ │ ├── Makefile │ │ │ └── spear300.c │ │ ├── spear310 │ │ │ ├── Makefile │ │ │ └── spear310.c │ │ ├── spear320 │ │ │ ├── Makefile │ │ │ └── spear320.c │ │ ├── spear600 │ │ │ ├── Makefile │ │ │ └── spear600.c │ │ └── x600 │ │ │ ├── Makefile │ │ │ ├── fpga.c │ │ │ ├── fpga.h │ │ │ └── x600.c │ ├── st-ericsson │ │ ├── snowball │ │ │ ├── Makefile │ │ │ ├── db8500_pins.h │ │ │ └── snowball.c │ │ └── u8500 │ │ │ ├── Makefile │ │ │ ├── gpio.c │ │ │ └── u8500_href.c │ ├── st │ │ └── nhk8815 │ │ │ ├── Makefile │ │ │ ├── README.nhk8815 │ │ │ └── nhk8815.c │ ├── stx │ │ ├── stxgp3 │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── flash.c │ │ │ ├── law.c │ │ │ ├── stxgp3.c │ │ │ └── tlb.c │ │ ├── stxssa │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── stxssa.c │ │ │ └── tlb.c │ │ └── stxxtc │ │ │ ├── Makefile │ │ │ ├── README.stxxtc │ │ │ ├── stxxtc.c │ │ │ ├── u-boot.lds │ │ │ └── u-boot.lds.debug │ ├── svm_sc8xx │ │ ├── Makefile │ │ ├── flash.c │ │ ├── svm_sc8xx.c │ │ ├── u-boot.lds │ │ └── u-boot.lds.debug │ ├── synopsys │ │ └── axs101 │ │ │ ├── Makefile │ │ │ ├── axs101.c │ │ │ └── nand.c │ ├── syteco │ │ ├── jadecpu │ │ │ ├── Makefile │ │ │ ├── jadecpu.c │ │ │ └── lowlevel_init.S │ │ └── zmx25 │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── zmx25.c │ ├── t3corp │ │ ├── Makefile │ │ ├── chip_config.c │ │ ├── config.mk │ │ ├── init.S │ │ └── t3corp.c │ ├── taskit │ │ └── stamp9g20 │ │ │ ├── Makefile │ │ │ ├── led.c │ │ │ └── stamp9g20.c │ ├── tcm-bf518 │ │ ├── Makefile │ │ ├── config.mk │ │ └── tcm-bf518.c │ ├── tcm-bf537 │ │ ├── Makefile │ │ ├── config.mk │ │ ├── gpio_cfi_flash.c │ │ └── tcm-bf537.c │ ├── technexion │ │ ├── tao3530 │ │ │ ├── Makefile │ │ │ ├── tao3530.c │ │ │ └── tao3530.h │ │ └── twister │ │ │ ├── Makefile │ │ │ ├── twister.c │ │ │ └── twister.h │ ├── teejet │ │ └── mt_ventoux │ │ │ ├── Makefile │ │ │ ├── mt_ventoux.c │ │ │ └── mt_ventoux.h │ ├── ti │ │ ├── am335x │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── mux.c │ │ │ └── u-boot.lds │ │ ├── am3517crane │ │ │ ├── Makefile │ │ │ ├── am3517crane.c │ │ │ └── am3517crane.h │ │ ├── am43xx │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── mux.c │ │ ├── beagle │ │ │ ├── Makefile │ │ │ ├── beagle.c │ │ │ ├── beagle.h │ │ │ └── led.c │ │ ├── dra7xx │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── evm.c │ │ │ └── mux_data.h │ │ ├── evm │ │ │ ├── Makefile │ │ │ ├── evm.c │ │ │ └── evm.h │ │ ├── omap5912osk │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── lowlevel_init.S │ │ │ └── omap5912osk.c │ │ ├── omap5_uevm │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── evm.c │ │ │ └── mux_data.h │ │ ├── panda │ │ │ ├── Makefile │ │ │ ├── panda.c │ │ │ └── panda_mux_data.h │ │ ├── sdp3430 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── sdp.c │ │ │ └── sdp.h │ │ ├── sdp4430 │ │ │ ├── Makefile │ │ │ ├── cmd_bat.c │ │ │ ├── sdp.c │ │ │ └── sdp4430_mux_data.h │ │ ├── ti814x │ │ │ ├── Makefile │ │ │ ├── evm.c │ │ │ ├── evm.h │ │ │ └── mux.c │ │ ├── ti816x │ │ │ ├── Makefile │ │ │ └── evm.c │ │ └── tnetv107xevm │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── sdb_board.c │ ├── timll │ │ ├── devkit3250 │ │ │ ├── Makefile │ │ │ └── devkit3250.c │ │ └── devkit8000 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── devkit8000.c │ │ │ └── devkit8000.h │ ├── toradex │ │ ├── colibri_pxa270 │ │ │ ├── Makefile │ │ │ └── colibri_pxa270.c │ │ ├── colibri_t20-common │ │ │ ├── colibri_t20-common.c │ │ │ └── colibri_t20-common.h │ │ └── colibri_t20_iris │ │ │ ├── Makefile │ │ │ └── colibri_t20_iris.c │ ├── total5200 │ │ ├── Makefile │ │ ├── mt48lc16m16a2-75.h │ │ ├── mt48lc32m16a2-75.h │ │ ├── sdram.c │ │ ├── sdram.h │ │ └── total5200.c │ ├── tqc │ │ ├── tqm5200 │ │ │ ├── Makefile │ │ │ ├── cam5200_flash.c │ │ │ ├── cmd_stk52xx.c │ │ │ ├── cmd_tb5200.c │ │ │ ├── mt48lc16m16a2-75.h │ │ │ └── tqm5200.c │ │ ├── tqm8260 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── tqm8260.c │ │ ├── tqm8272 │ │ │ ├── Makefile │ │ │ ├── nand.c │ │ │ ├── tqm8272.c │ │ │ └── tqm8272.h │ │ ├── tqm834x │ │ │ ├── Makefile │ │ │ ├── pci.c │ │ │ └── tqm834x.c │ │ └── tqm8xx │ │ │ ├── Makefile │ │ │ ├── load_sernum_ethaddr.c │ │ │ ├── tqm8xx.c │ │ │ └── u-boot.lds │ ├── trizepsiv │ │ ├── Makefile │ │ ├── conxs.c │ │ └── eeprom.c │ ├── ttcontrol │ │ └── vision2 │ │ │ ├── Makefile │ │ │ ├── imximage_hynix.cfg │ │ │ └── vision2.c │ ├── udoo │ │ ├── 1066mhz_4x256mx16.cfg │ │ ├── Makefile │ │ ├── clocks.cfg │ │ ├── ddr-setup.cfg │ │ ├── udoo.c │ │ └── udoo.cfg │ ├── utx8245 │ │ ├── Makefile │ │ ├── flash.c │ │ └── utx8245.c │ ├── v37 │ │ ├── Makefile │ │ ├── flash.c │ │ ├── u-boot.lds │ │ └── v37.c │ ├── v38b │ │ ├── Makefile │ │ ├── ethaddr.c │ │ └── v38b.c │ ├── ve8313 │ │ ├── Makefile │ │ └── ve8313.c │ ├── vpac270 │ │ ├── Makefile │ │ ├── onenand.c │ │ ├── u-boot-spl.lds │ │ └── vpac270.c │ ├── w7o │ │ ├── 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 │ │ ├── Makefile │ │ ├── README │ │ └── wandboard.c │ ├── woodburn │ │ ├── Makefile │ │ ├── imximage.cfg │ │ ├── lowlevel_init.S │ │ └── woodburn.c │ ├── xaeniax │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.mk │ │ │ ├── init.S │ │ │ ├── u-boot.lds.debug │ │ │ └── xpedite1000.c │ │ ├── xpedite517x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ └── xpedite517x.c │ │ ├── xpedite520x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── tlb.c │ │ │ └── xpedite520x.c │ │ ├── xpedite537x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── tlb.c │ │ │ └── xpedite537x.c │ │ └── xpedite550x │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── tlb.c │ │ │ └── xpedite550x.c │ ├── xilinx │ │ ├── microblaze-generic │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── microblaze-generic.c │ │ │ └── xparameters.h │ │ ├── ml507 │ │ │ ├── Makefile │ │ │ ├── ml507.c │ │ │ └── xparameters.h │ │ ├── ppc405-generic │ │ │ ├── Makefile │ │ │ ├── xilinx_ppc405_generic.c │ │ │ └── xparameters.h │ │ ├── ppc440-generic │ │ │ ├── Makefile │ │ │ ├── init.S │ │ │ ├── xilinx_ppc440_generic.c │ │ │ └── xparameters.h │ │ └── zynq │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── ps7_init.c │ ├── zeus │ │ ├── Makefile │ │ ├── README │ │ ├── update.c │ │ └── zeus.c │ ├── zipitz2 │ │ ├── Makefile │ │ └── zipitz2.c │ └── zpc1900 │ │ ├── Makefile │ │ └── zpc1900.c ├── boards.cfg ├── cmm │ ├── MT7622_FPGA_DDR.cmm │ ├── MT7623_FPGA_DDR.cmm │ ├── MT7623_FPGA_DDR4MSDC1_rev2.cmm │ ├── MT7623_FPGA_LDVT_Linux.cmm │ ├── mt7622-E1-u-boot.cmm │ ├── mt7622-FPGA-u-boot.cmm │ ├── mt7622_rootfs.gz │ ├── mt7623-E1-u-boot.cmm │ ├── mt7623-FPGA-u-boot.cmm │ └── mt7623_fpga_bl.axf ├── common │ ├── Makefile │ ├── bedbug.c │ ├── board_f.c │ ├── board_r.c │ ├── bootstage.c │ ├── bouncebuf.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_bootstage.c │ ├── cmd_cache.c │ ├── cmd_cbfs.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_fat.c │ ├── cmd_fdc.c │ ├── cmd_fdos.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_irq.c │ ├── cmd_itest.c │ ├── cmd_jffs2.c │ ├── cmd_ldrinfo.c │ ├── cmd_led.c │ ├── cmd_license.c │ ├── cmd_load.c │ ├── cmd_log.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_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 │ ├── 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_nor.c │ ├── env_nowhere.c │ ├── env_nvram.c │ ├── env_onenand.c │ ├── env_remote.c │ ├── env_sf.c │ ├── env_ubi.c │ ├── exports.c │ ├── fdt_support.c │ ├── flash.c │ ├── hash.c │ ├── hush.c │ ├── hwconfig.c │ ├── image-fdt.c │ ├── image-fit.c │ ├── image-sig.c │ ├── image.c │ ├── iomux.c │ ├── kallsyms.c │ ├── kgdb.c │ ├── kgdb_stubs.c │ ├── lcd.c │ ├── lynxkdi.c │ ├── main.c │ ├── memsize.c │ ├── menu.c │ ├── miiphyutil.c │ ├── modem.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.in ├── config.mk ├── dd_uboot.sh ├── 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 │ │ ├── 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-SoC │ ├── 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.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.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-hwconfig │ ├── README.fsl_iim │ ├── README.fuse │ ├── 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.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.omap-reset-time │ ├── README.omap-ulpi-viewport │ ├── README.omap3 │ ├── README.pblimage │ ├── README.plan9 │ ├── README.ppc440 │ ├── README.pxe │ ├── README.qemu-mips │ ├── README.ramboot-ppc85xx │ ├── README.rmobile │ ├── README.s5pc1xx │ ├── README.sata │ ├── README.sched │ ├── README.scrapyard │ ├── 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.t4240qds │ ├── 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 │ │ ├── pwm │ │ │ └── tegra20-pwm.txt │ │ ├── spi │ │ │ └── spi-bus.txt │ │ ├── usb │ │ │ └── tegra-usb.txt │ │ └── video │ │ │ ├── displaymode.txt │ │ │ ├── exynos-dp.txt │ │ │ ├── exynos-fb.txt │ │ │ ├── simple-framebuffer.txt │ │ │ └── tegra20-dc.txt │ ├── driver-model │ │ └── README.txt │ ├── feature-removal-schedule.txt │ ├── git-mailrc │ ├── kwboot.1 │ ├── mkimage.1 │ └── uImage.FIT │ │ ├── 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 │ ├── 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 │ │ ├── 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 │ │ ├── Makefile │ │ ├── device.c │ │ ├── lists.c │ │ ├── root.c │ │ ├── uclass.c │ │ └── util.c │ ├── crypto │ │ ├── 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 │ │ │ ├── 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 │ │ ├── Makefile │ │ ├── dfu.c │ │ ├── dfu_mmc.c │ │ ├── dfu_nand.c │ │ └── dfu_ram.c │ ├── dma │ │ ├── MCD_dmaApi.c │ │ ├── MCD_tasks.c │ │ ├── MCD_tasksInit.c │ │ ├── Makefile │ │ ├── apbh_dma.c │ │ ├── fsl_dma.c │ │ └── omap3_dma.c │ ├── flash │ │ ├── Makefile │ │ ├── mtk_nor.c │ │ └── mtk_nor.h │ ├── fpga │ │ ├── ACEX1K.c │ │ ├── Makefile │ │ ├── altera.c │ │ ├── cyclon2.c │ │ ├── fpga.c │ │ ├── ivm_core.c │ │ ├── lattice.c │ │ ├── spartan2.c │ │ ├── spartan3.c │ │ ├── stratixII.c │ │ ├── virtex2.c │ │ ├── xilinx.c │ │ └── zynqpl.c │ ├── gpio │ │ ├── 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 │ │ ├── mt_gpio.c │ │ ├── mvgpio.c │ │ ├── mvgpio.h │ │ ├── mvmfp.c │ │ ├── mxc_gpio.c │ │ ├── mxs_gpio.c │ │ ├── omap_gpio.c │ │ ├── pca953x.c │ │ ├── pca9698.c │ │ ├── s3c2440_gpio.c │ │ ├── s5p_gpio.c │ │ ├── sandbox.c │ │ ├── sh_pfc.c │ │ ├── spear_gpio.c │ │ ├── sx151x.c │ │ ├── tca642x.c │ │ ├── tegra_gpio.c │ │ └── xilinx_gpio.c │ ├── hwmon │ │ ├── Makefile │ │ ├── adm1021.c │ │ ├── adt7460.c │ │ ├── ds1621.c │ │ ├── ds1722.c │ │ ├── ds1775.c │ │ ├── lm63.c │ │ ├── lm73.c │ │ ├── lm75.c │ │ └── lm81.c │ ├── i2c │ │ ├── Makefile │ │ ├── adi_i2c.c │ │ ├── bfin-twi_i2c.c │ │ ├── davinci_i2c.c │ │ ├── designware_i2c.c │ │ ├── designware_i2c.h │ │ ├── fsl_i2c.c │ │ ├── fti2c010.c │ │ ├── fti2c010.h │ │ ├── i2c_core.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 │ │ ├── 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 │ │ ├── Makefile │ │ ├── cros_ec_keyb.c │ │ ├── i8042.c │ │ ├── input.c │ │ ├── key_matrix.c │ │ ├── keyboard.c │ │ ├── pc_keyb.c │ │ ├── ps2mult.c │ │ ├── ps2ser.c │ │ └── tegra-kbc.c │ ├── misc │ │ ├── Makefile │ │ ├── ali512x.c │ │ ├── cbmem_console.c │ │ ├── cros_ec.c │ │ ├── cros_ec_i2c.c │ │ ├── cros_ec_lpc.c │ │ ├── cros_ec_spi.c │ │ ├── ds4510.c │ │ ├── fsl_ifc.c │ │ ├── fsl_iim.c │ │ ├── gpio_led.c │ │ ├── mc9sdz60.c │ │ ├── mediatek │ │ │ ├── Makefile │ │ │ └── nand │ │ │ │ ├── Makefile │ │ │ │ ├── mt7622 │ │ │ │ ├── Makefile │ │ │ │ ├── bmt.c │ │ │ │ ├── mtk_nand.c │ │ │ │ ├── mtk_snand_k.c │ │ │ │ └── partition_mt.c │ │ │ │ └── mt7623 │ │ │ │ ├── Makefile │ │ │ │ ├── blkdev.h │ │ │ │ ├── bmt.c │ │ │ │ ├── cust_part.c │ │ │ │ ├── cust_part.h │ │ │ │ ├── mtk_nand.c │ │ │ │ ├── partition_define.h │ │ │ │ ├── partition_mt.c │ │ │ │ ├── platform.h │ │ │ │ └── typedefs.h │ │ ├── mxc_ocotp.c │ │ ├── ns87308.c │ │ ├── pdsp188x.c │ │ ├── status_led.c │ │ └── twl4030_led.c │ ├── mmc │ │ ├── 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 │ │ ├── mediatek │ │ │ ├── Makefile │ │ │ ├── blkdev.h │ │ │ ├── boot_device.h │ │ │ ├── cust_msdc.c │ │ │ ├── cust_msdc.h │ │ │ ├── emmc_device_list.h │ │ │ ├── mmc_common_inter.h │ │ │ ├── mmc_core.c │ │ │ ├── mmc_core.h │ │ │ ├── mmc_hal.h │ │ │ ├── mmc_test.h │ │ │ ├── mmc_types.h │ │ │ ├── msdc.c │ │ │ ├── msdc.h │ │ │ ├── msdc_cfg.h │ │ │ ├── msdc_debug.h │ │ │ ├── msdc_types.h │ │ │ ├── msdc_utils.c │ │ │ ├── msdc_utils.h │ │ │ ├── mtk_mmc.c │ │ │ ├── partition_define.h │ │ │ ├── print.h │ │ │ ├── string.h │ │ │ └── typedefs.h │ │ ├── mmc.c │ │ ├── mmc_private.h │ │ ├── mmc_spi.c │ │ ├── mmc_write.c │ │ ├── mv_sdhci.c │ │ ├── mxcmmc.c │ │ ├── mxsmmc.c │ │ ├── omap_hsmmc.c │ │ ├── pxa_mmc_gen.c │ │ ├── s5p_sdhci.c │ │ ├── sdhci.c │ │ ├── sh_mmcif.c │ │ ├── sh_mmcif.h │ │ ├── socfpga_dw_mmc.c │ │ ├── spear_sdhci.c │ │ ├── tegra_mmc.c │ │ └── zynq_sdhci.c │ ├── mtd │ │ ├── Makefile │ │ ├── at45.c │ │ ├── cfi_flash.c │ │ ├── cfi_mtd.c │ │ ├── dataflash.c │ │ ├── ftsmc020.c │ │ ├── jedec_flash.c │ │ ├── mtdconcat.c │ │ ├── mtdcore.c │ │ ├── mtdpart.c │ │ ├── mw_eeprom.c │ │ ├── nand │ │ │ ├── Makefile │ │ │ ├── am335x_spl_bch.c │ │ │ ├── atmel_nand.c │ │ │ ├── atmel_nand_ecc.h │ │ │ ├── bfin_nand.c │ │ │ ├── davinci_nand.c │ │ │ ├── diskonchip.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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── build.c │ │ │ ├── crc32.c │ │ │ ├── crc32defs.h │ │ │ ├── crc32table.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── eba.c │ │ │ ├── io.c │ │ │ ├── kapi.c │ │ │ ├── misc.c │ │ │ ├── scan.c │ │ │ ├── scan.h │ │ │ ├── ubi-media.h │ │ │ ├── ubi.h │ │ │ ├── upd.c │ │ │ ├── vmt.c │ │ │ ├── vtbl.c │ │ │ └── wl.c │ ├── net │ │ ├── 4xx_enet.c │ │ ├── 8390.h │ │ ├── Makefile │ │ ├── altera_tse.c │ │ ├── altera_tse.h │ │ ├── armada100_fec.c │ │ ├── armada100_fec.h │ │ ├── at91_emac.c │ │ ├── ax88180.c │ │ ├── ax88180.h │ │ ├── ax88796.c │ │ ├── ax88796.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_mcdmafec.c │ │ ├── fsl_mdio.c │ │ ├── ftgmac100.c │ │ ├── ftgmac100.h │ │ ├── ftmac100.c │ │ ├── ftmac100.h │ │ ├── ftmac110.c │ │ ├── ftmac110.h │ │ ├── greth.c │ │ ├── greth.h │ │ ├── inca-ip_sw.c │ │ ├── ks8695eth.c │ │ ├── ks8851_mll.c │ │ ├── ks8851_mll.h │ │ ├── lan91c96.c │ │ ├── lan91c96.h │ │ ├── macb.c │ │ ├── macb.h │ │ ├── mcffec.c │ │ ├── mcfmii.c │ │ ├── mii_mgr.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 │ │ │ ├── icplus.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 │ │ ├── plb2800_eth.c │ │ ├── rt2880_eth.c │ │ ├── rtl8139.c │ │ ├── rtl8169.c │ │ ├── sh_eth.c │ │ ├── sh_eth.h │ │ ├── smc91111.c │ │ ├── smc91111.h │ │ ├── smc911x.c │ │ ├── smc911x.h │ │ ├── sunxi_wemac.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 │ │ ├── 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 │ │ ├── Makefile │ │ ├── i82365.c │ │ ├── marubun_pcmcia.c │ │ ├── mpc8xx_pcmcia.c │ │ ├── rpx_pcmcia.c │ │ ├── ti_pci1410a.c │ │ └── tqm8xx_pcmcia.c │ ├── power │ │ ├── Makefile │ │ ├── battery │ │ │ ├── Makefile │ │ │ ├── bat_trats.c │ │ │ └── bat_trats2.c │ │ ├── exynos-tmu.c │ │ ├── ftpmu010.c │ │ ├── fuel_gauge │ │ │ ├── Makefile │ │ │ └── fg_max17042.c │ │ ├── mfd │ │ │ ├── Makefile │ │ │ ├── fg_max77693.c │ │ │ ├── muic_max77693.c │ │ │ └── pmic_max77693.c │ │ ├── palmas.c │ │ ├── pmic │ │ │ ├── Makefile │ │ │ ├── muic_max8997.c │ │ │ ├── pmic_max77686.c │ │ │ ├── pmic_max8997.c │ │ │ ├── pmic_max8998.c │ │ │ ├── pmic_tps65217.c │ │ │ └── pmic_tps65910.c │ │ ├── power_core.c │ │ ├── power_dialog.c │ │ ├── power_fsl.c │ │ ├── power_i2c.c │ │ ├── power_spi.c │ │ ├── tps6586x.c │ │ ├── twl4030.c │ │ └── twl6030.c │ ├── qe │ │ ├── Makefile │ │ ├── fdt.c │ │ ├── qe.c │ │ ├── qe.h │ │ ├── uccf.c │ │ ├── uccf.h │ │ ├── uec.c │ │ ├── uec.h │ │ ├── uec_phy.c │ │ └── uec_phy.h │ ├── rtc │ │ ├── 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 │ │ ├── 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.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_s3c24x0.c │ │ ├── serial_s5p.c │ │ ├── serial_sa1100.c │ │ ├── serial_sh.c │ │ ├── serial_sh.h │ │ ├── serial_xuartlite.c │ │ ├── serial_zynq.c │ │ ├── usbtty.c │ │ └── usbtty.h │ ├── sound │ │ ├── Makefile │ │ ├── max98095.c │ │ ├── max98095.h │ │ ├── samsung-i2s.c │ │ ├── sound.c │ │ ├── wm8994.c │ │ ├── wm8994.h │ │ └── wm8994_registers.h │ ├── spi │ │ ├── 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 │ │ ├── exynos_spi.c │ │ ├── fdt_spi.c │ │ ├── fsl_espi.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── eth │ │ │ ├── Makefile │ │ │ ├── asix.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 │ │ │ ├── ep0.c │ │ │ ├── ep0.h │ │ │ ├── epautoconf.c │ │ │ ├── ether.c │ │ │ ├── f_dfu.c │ │ │ ├── f_dfu.h │ │ │ ├── f_mass_storage.c │ │ │ ├── f_thor.c │ │ │ ├── f_thor.h │ │ │ ├── fotg210.c │ │ │ ├── g_dnl.c │ │ │ ├── gadget_chips.h │ │ │ ├── mpc8xx_udc.c │ │ │ ├── ndis.h │ │ │ ├── omap1510_udc.c │ │ │ ├── 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 │ │ │ ├── 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-spear.c │ │ │ ├── ehci-tegra.c │ │ │ ├── ehci-vct.c │ │ │ ├── ehci.h │ │ │ ├── isp116x-hcd.c │ │ │ ├── isp116x.h │ │ │ ├── mtk-phy-7621.c │ │ │ ├── mtk-phy-7621.h │ │ │ ├── mtk-phy-7623.c │ │ │ ├── mtk-phy-7623.h │ │ │ ├── mtk-phy-ahb.c │ │ │ ├── mtk-phy.c │ │ │ ├── mtk-phy.h │ │ │ ├── ohci-at91.c │ │ │ ├── ohci-da8xx.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-mtk-power.c │ │ │ ├── xhci-mtk-power.h │ │ │ ├── xhci-mtk-scheduler.c │ │ │ ├── xhci-mtk-scheduler.h │ │ │ ├── xhci-mtk.c │ │ │ ├── xhci-mtk.h │ │ │ ├── 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 │ │ ├── Makefile │ │ ├── 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 │ │ ├── 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_diu_fb.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 │ │ ├── pxa_lcd.c │ │ ├── s6e63d6.c │ │ ├── s6e8ax0.c │ │ ├── scf0403_lcd.c │ │ ├── sed13806.c │ │ ├── sed156x.c │ │ ├── sm501.c │ │ ├── smiLynxEM.c │ │ ├── tegra.c │ │ ├── videomodes.c │ │ └── videomodes.h │ └── watchdog │ │ ├── Makefile │ │ ├── at91sam9_wdt.c │ │ ├── bfin_wdt.c │ │ ├── ftwdt010_wdt.c │ │ ├── imx_watchdog.c │ │ ├── omap_wdt.c │ │ ├── s5p_wdt.c │ │ ├── tnetv107x_wdt.c │ │ └── xilinx_tb_wdt.c ├── dts │ └── Makefile ├── examples │ ├── Makefile │ ├── api │ │ ├── Makefile │ │ ├── crt0.S │ │ ├── demo.c │ │ ├── glue.c │ │ ├── glue.h │ │ └── libgenwrap.c │ └── standalone │ │ ├── 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 │ │ └── x86-testapp.c ├── fs │ ├── Makefile │ ├── cbfs │ │ ├── Makefile │ │ └── cbfs.c │ ├── cramfs │ │ ├── Makefile │ │ ├── cramfs.c │ │ └── uncompress.c │ ├── ext4 │ │ ├── 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 │ │ ├── Makefile │ │ ├── fat.c │ │ ├── fat_write.c │ │ └── file.c │ ├── fs.c │ ├── jffs2 │ │ ├── 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 │ │ ├── Makefile │ │ ├── dev.c │ │ ├── mode_string.c │ │ ├── reiserfs.c │ │ └── reiserfs_private.h │ ├── sandbox │ │ ├── Makefile │ │ └── sandboxfs.c │ ├── ubifs │ │ ├── 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 │ ├── 74xx_7xx.h │ ├── ACEX1K.h │ ├── MCD_dma.h │ ├── MCD_progCheck.h │ ├── MCD_tasksInit.h │ ├── SA-1100.h │ ├── _exports.h │ ├── addr_map.h │ ├── aes.h │ ├── ahci.h │ ├── ali512x.h │ ├── altera.h │ ├── ambapp.h │ ├── andestech │ │ └── andes_pcu.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 │ ├── bcd.h │ ├── bedbug │ │ ├── bedbug.h │ │ ├── ppc.h │ │ ├── regs.h │ │ ├── tables.h │ │ └── type.h │ ├── bitfield.h │ ├── bmp_layout.h │ ├── bootcount.h │ ├── bootstage.h │ ├── bouncebuf.h │ ├── bus_vcxk.h │ ├── bzlib.h │ ├── cbfs.h │ ├── circbuf.h │ ├── clk.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_cmd_defaults.h │ ├── config_defaults.h │ ├── config_distro_defaults.h │ ├── config_fallbacks.h │ ├── config_phylib_all_drivers.h │ ├── config_uncmd_spl.h │ ├── configs │ │ ├── A3000.h │ │ ├── ADS860.h │ │ ├── APC405.h │ │ ├── AR405.h │ │ ├── ASH405.h │ │ ├── Adder.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 │ │ ├── CRAYL1.h │ │ ├── CU824.h │ │ ├── DB64360.h │ │ ├── DB64460.h │ │ ├── DP405.h │ │ ├── DU405.h │ │ ├── DU440.h │ │ ├── ELPPC.h │ │ ├── ELPT860.h │ │ ├── ESTEEM192E.h │ │ ├── EVB64260.h │ │ ├── FADS823.h │ │ ├── FADS850SAR.h │ │ ├── FADS860T.h │ │ ├── FLAGADM.h │ │ ├── FPS850L.h │ │ ├── FPS860L.h │ │ ├── G2000.h │ │ ├── GEN860T.h │ │ ├── GENIETV.h │ │ ├── HH405.h │ │ ├── HIDDEN_DRAGON.h │ │ ├── HUB405.h │ │ ├── HWW1U1A.h │ │ ├── ICU862.h │ │ ├── IDS8247.h │ │ ├── IP860.h │ │ ├── IPHASE4539.h │ │ ├── ISPAN.h │ │ ├── IVML24.h │ │ ├── IVMS8.h │ │ ├── IceCube.h │ │ ├── JSE.h │ │ ├── KAREF.h │ │ ├── KUP4K.h │ │ ├── KUP4X.h │ │ ├── M5208EVBE.h │ │ ├── M52277EVB.h │ │ ├── M5235EVB.h │ │ ├── M5249EVB.h │ │ ├── M5253DEMO.h │ │ ├── M5253EVBE.h │ │ ├── M5271EVB.h │ │ ├── M5272C3.h │ │ ├── M5275EVB.h │ │ ├── M5282EVB.h │ │ ├── M53017EVB.h │ │ ├── M5329EVB.h │ │ ├── M5373EVB.h │ │ ├── M54418TWR.h │ │ ├── M54451EVB.h │ │ ├── M54455EVB.h │ │ ├── M5475EVB.h │ │ ├── M5485EVB.h │ │ ├── MBX.h │ │ ├── MBX860T.h │ │ ├── MERGERBOX.h │ │ ├── METROBOX.h │ │ ├── MHPC.h │ │ ├── MIP405.h │ │ ├── MOUSSE.h │ │ ├── MPC8260ADS.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 │ │ ├── MPC86xADS.h │ │ ├── MPC885ADS.h │ │ ├── MUSENKI.h │ │ ├── MVBC_P.h │ │ ├── MVBLM7.h │ │ ├── MVBLUE.h │ │ ├── MVSMR.h │ │ ├── MigoR.h │ │ ├── NETPHONE.h │ │ ├── NETTA.h │ │ ├── NETTA2.h │ │ ├── NETVIA.h │ │ ├── NSCU.h │ │ ├── NX823.h │ │ ├── OCRTC.h │ │ ├── P1010RDB.h │ │ ├── P1022DS.h │ │ ├── P1023RDB.h │ │ ├── P1023RDS.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 │ │ ├── PCI5441.h │ │ ├── PIP405.h │ │ ├── PK1C20.h │ │ ├── PLU405.h │ │ ├── PM520.h │ │ ├── PM826.h │ │ ├── PM828.h │ │ ├── PMC405.h │ │ ├── PMC405DE.h │ │ ├── PMC440.h │ │ ├── PPChameleonEVB.h │ │ ├── QS823.h │ │ ├── QS850.h │ │ ├── QS860T.h │ │ ├── R360MPI.h │ │ ├── RBC823.h │ │ ├── RPXClassic.h │ │ ├── RPXlite.h │ │ ├── RPXlite_DW.h │ │ ├── RPXsuper.h │ │ ├── RRvision.h │ │ ├── Rattler.h │ │ ├── SIMPC8313.h │ │ ├── SM850.h │ │ ├── SPD823TS.h │ │ ├── SXNI855T.h │ │ ├── Sandpoint8240.h │ │ ├── Sandpoint8245.h │ │ ├── T1040QDS.h │ │ ├── T1040RDB.h │ │ ├── T1042RDB_PI.h │ │ ├── T208xQDS.h │ │ ├── T4240EMU.h │ │ ├── T4240QDS.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 │ │ ├── ZPC1900.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── autoconf.h │ │ ├── axs101.h │ │ ├── balloon3.h │ │ ├── bamboo.h │ │ ├── bcm28155_ap.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 │ │ ├── bluestone.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_t335.h │ │ ├── cm_t35.h │ │ ├── cmi_mpc5xx.h │ │ ├── cobra5272.h │ │ ├── cogent_common.h │ │ ├── cogent_mpc8260.h │ │ ├── cogent_mpc8xx.h │ │ ├── colibri_pxa270.h │ │ ├── colibri_t20_iris.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 │ │ ├── debris.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 │ │ ├── dreamplug.h │ │ ├── dxr2.h │ │ ├── eXalion.h │ │ ├── ea20.h │ │ ├── eb_cpu5282.h │ │ ├── eb_cpux9k2.h │ │ ├── ebony.h │ │ ├── eco5pk.h │ │ ├── ecovec.h │ │ ├── edminiv2.h │ │ ├── enbw_cmc.h │ │ ├── ep8248.h │ │ ├── ep8260.h │ │ ├── ep82xxm.h │ │ ├── espt.h │ │ ├── ethernut5.h │ │ ├── exynos5-dt.h │ │ ├── exynos5250-dt.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 │ │ ├── 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 │ │ ├── idmr.h │ │ ├── ima3-mx53.h │ │ ├── imx27lite-common.h │ │ ├── imx27lite.h │ │ ├── imx31_litekit.h │ │ ├── imx31_phycore.h │ │ ├── incaip.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 │ │ ├── jornada.h │ │ ├── jupiter.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 │ │ ├── kvme080.h │ │ ├── kwb.h │ │ ├── kzm9g.h │ │ ├── lacie_kw.h │ │ ├── lager.h │ │ ├── lp8x4x.h │ │ ├── lsxl.h │ │ ├── luan.h │ │ ├── lubbock.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 │ │ ├── mt7622_evb.h │ │ ├── mt7623_evb.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 │ │ ├── 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 │ │ ├── omap1510.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 │ │ ├── omap5912osk.h │ │ ├── omap5_uevm.h │ │ ├── openrd.h │ │ ├── openrisc-generic.h │ │ ├── origen.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 │ │ ├── pengwyn.h │ │ ├── pf5200.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 │ │ ├── qong.h │ │ ├── quad100hd.h │ │ ├── quantum.h │ │ ├── r0p7734.h │ │ ├── r2dplus.h │ │ ├── r7780mp.h │ │ ├── rd6281a.h │ │ ├── redwood.h │ │ ├── rpi_b.h │ │ ├── rsdproto.h │ │ ├── rsk7203.h │ │ ├── rsk7264.h │ │ ├── rsk7269.h │ │ ├── rut.h │ │ ├── s5p_goni.h │ │ ├── s5pc210_universal.h │ │ ├── sacsng.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_cyclone5.h │ │ ├── socrates.h │ │ ├── spc1920.h │ │ ├── spear-common.h │ │ ├── spear3xx_evb.h │ │ ├── spear6xx_evb.h │ │ ├── stamp9g20.h │ │ ├── stxgp3.h │ │ ├── stxssa.h │ │ ├── stxxtc.h │ │ ├── suvd3.h │ │ ├── svm_sc8xx.h │ │ ├── t3corp.h │ │ ├── t4qds.h │ │ ├── taihu.h │ │ ├── taishan.h │ │ ├── tam3517-common.h │ │ ├── tao3530.h │ │ ├── taurus.h │ │ ├── tcm-bf518.h │ │ ├── tcm-bf537.h │ │ ├── tec-ng.h │ │ ├── tec.h │ │ ├── tegra-common-post.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 │ │ ├── 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 │ │ ├── usb_a9263.h │ │ ├── utx8245.h │ │ ├── v37.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 │ ├── 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 │ ├── fat.h │ ├── fdc.h │ ├── fdt.h │ ├── fdt_support.h │ ├── fdtdec.h │ ├── fis.h │ ├── flash.h │ ├── fm_eth.h │ ├── fpga.h │ ├── fs.h │ ├── fsl_ddr.h │ ├── fsl_ddr_dimm_params.h │ ├── fsl_ddr_sdram.h │ ├── fsl_diu_fb.h │ ├── fsl_esdhc.h │ ├── fsl_ifc.h │ ├── fsl_immap.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 │ ├── hush.h │ ├── hw_sha.h │ ├── hwconfig.h │ ├── i2c.h │ ├── i2s.h │ ├── i8042.h │ ├── ide.h │ ├── image.h │ ├── initcall.h │ ├── input.h │ ├── iomux.h │ ├── ioports.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-gcc.h │ │ ├── compiler-gcc3.h │ │ ├── compiler-gcc4.h │ │ ├── compiler-gcc5.h │ │ ├── compiler-gcc6.h │ │ ├── compiler.h │ │ ├── crc32.h │ │ ├── crc7.h │ │ ├── crc8.h │ │ ├── ctype.h │ │ ├── edd.h │ │ ├── err.h │ │ ├── ethtool.h │ │ ├── fb.h │ │ ├── input.h │ │ ├── ioctl.h │ │ ├── ioport.h │ │ ├── kbuild.h │ │ ├── linkage.h │ │ ├── linux_string.h │ │ ├── list.h │ │ ├── lzo.h │ │ ├── math64.h │ │ ├── mc146818rtc.h │ │ ├── mdio.h │ │ ├── mii.h │ │ ├── mtd │ │ │ ├── bbm.h │ │ │ ├── blktrans.h │ │ │ ├── concat.h │ │ │ ├── doc2000.h │ │ │ ├── docg4.h │ │ │ ├── fsl_upm.h │ │ │ ├── fsmc_nand.h │ │ │ ├── mtd.h │ │ │ ├── nand.h │ │ │ ├── nand_bch.h │ │ │ ├── nand_ecc.h │ │ │ ├── ndfc.h │ │ │ ├── nftl-user.h │ │ │ ├── nftl.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 │ │ ├── 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 │ ├── mvmfp.h │ ├── nand.h │ ├── net.h │ ├── netdev.h │ ├── nios2-epcs.h │ ├── nios2-io.h │ ├── nios2-yanu.h │ ├── nios2.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 │ │ ├── battery.h │ │ ├── fg_battery_cell_params.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 │ │ ├── pmic.h │ │ ├── power_chrg.h │ │ ├── tps65217.h │ │ └── tps65910.h │ ├── ppc_asm.tmpl │ ├── ppc_defs.h │ ├── ps2mult.h │ ├── pwm.h │ ├── radeon.h │ ├── reiserfs.h │ ├── rsa.h │ ├── rt_mmap.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 │ ├── sha1.h │ ├── sha256.h │ ├── sja1000.h │ ├── slre.h │ ├── sm501.h │ ├── sound.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 │ ├── 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 │ │ ├── u-boot.lds.h │ │ └── zlib.h │ ├── ubi_uboot.h │ ├── universe.h │ ├── usb.h │ ├── usb │ │ ├── ci_udc.h │ │ ├── designware_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 │ ├── 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 │ ├── 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_test.c │ ├── gunzip.c │ ├── gzip.c │ ├── hang.c │ ├── hashtable.c │ ├── initcall.c │ ├── ldiv.c │ ├── libfdt │ │ ├── Makefile │ │ ├── README │ │ ├── fdt.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ └── libfdt_internal.h │ ├── linux_string.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-sign.c │ │ └── rsa-verify.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 ├── lib_rtos │ ├── Makefile │ ├── glue.c │ ├── glue.h │ ├── include │ │ ├── libc │ │ │ ├── libc_dirent.h │ │ │ ├── libc_errno.h │ │ │ ├── libc_fcntl.h │ │ │ ├── libc_fdset.h │ │ │ ├── libc_ioctl.h │ │ │ ├── libc_signal.h │ │ │ └── libc_stat.h │ │ ├── rtconfig.h │ │ ├── rtdbg.h │ │ ├── rtdebug.h │ │ ├── rtdef.h │ │ ├── rthw.h │ │ ├── rtlibc.h │ │ ├── rtm.h │ │ ├── rtservice.h │ │ └── rtthread.h │ ├── kernel │ │ ├── Makefile │ │ ├── clock.c │ │ ├── components.c │ │ ├── device.c │ │ ├── idle.c │ │ ├── ipc.c │ │ ├── irq.c │ │ ├── kservice.c │ │ ├── mem.c │ │ ├── memheap.c │ │ ├── mempool.c │ │ ├── object.c │ │ ├── scheduler.c │ │ ├── signal.c │ │ ├── slab.c │ │ ├── thread.c │ │ └── timer.c │ ├── libcpu_armv7 │ │ ├── Makefile │ │ ├── armv7.h │ │ ├── context_gcc.S │ │ ├── cp15.h │ │ ├── cp15_gcc.S │ │ ├── cpu.c │ │ ├── exception.c │ │ ├── gic.c │ │ ├── gic.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── mmu.c │ │ ├── pmu.c │ │ ├── pmu.h │ │ ├── relocation.c │ │ ├── soc_config.h │ │ ├── stack.c │ │ ├── stack_setup.S │ │ ├── timer.c │ │ └── vector_gcc.S │ └── libcpu_armv8 │ │ ├── Makefile │ │ ├── armv8.h │ │ ├── context_gcc.S │ │ ├── cpu.c │ │ ├── exception.c │ │ ├── gic.c │ │ ├── gic.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── relocation.c │ │ ├── stack.c │ │ ├── timer.c │ │ └── vector_gcc.S ├── menu-config │ ├── Configure │ ├── Makefile │ ├── Menuconfig │ ├── README.Menuconfig │ ├── README.uClinux │ ├── header.tk │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── Makefile │ │ ├── checklist.c │ │ ├── colors.h │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── lxdialog │ │ ├── lxdialog.c │ │ ├── menubox.c │ │ ├── msgbox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── tail.tk │ ├── tkcond.c │ ├── tkgen.c │ ├── tkparse.c │ └── tkparse.h ├── mkconfig ├── mkimage ├── mtk_scatter │ └── MT7623_uboot_scatter.txt ├── nand_spl │ ├── board │ │ ├── amcc │ │ │ ├── acadia │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ │ ├── bamboo │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── sdram.c │ │ │ │ └── u-boot.lds │ │ │ ├── canyonlands │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── ddr2_fixed.c │ │ │ │ └── u-boot.lds │ │ │ ├── kilauea │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ │ └── sequoia │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── u-boot.lds │ │ ├── freescale │ │ │ ├── mpc8315erdb │ │ │ │ ├── Makefile │ │ │ │ └── u-boot.lds │ │ │ ├── mpc8536ds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── mpc8569mds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── mpc8572ds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ ├── p1023rds │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ │ └── p1_p2_rdb │ │ │ │ ├── Makefile │ │ │ │ └── nand_boot.c │ │ └── sheldon │ │ │ └── simpc8313 │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ └── u-boot.lds │ ├── nand_boot.c │ └── nand_boot_fsl_elbc.c ├── net │ ├── 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 │ ├── Kbuild.include │ ├── Makefile │ ├── Makefile.build │ ├── Makefile.clean │ ├── Makefile.host │ ├── Makefile.lib │ ├── basic │ │ ├── Makefile │ │ └── fixdep.c │ ├── binutils-version.sh │ ├── checkpatch.pl │ ├── checkstack.pl │ ├── cleanpatch │ ├── docproc.c │ ├── dtc-version.sh │ ├── gcc-stack-usage.sh │ ├── gcc-version.sh │ ├── kernel-doc │ ├── mkmakefile │ └── setlocalversion ├── snapshot.commit ├── spl │ └── Makefile ├── test │ ├── Makefile │ ├── command_ut.c │ ├── compression.c │ ├── dm │ │ ├── Makefile │ │ ├── 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 │ └── vboot │ │ ├── sandbox-kernel.dts │ │ ├── sandbox-u-boot.dts │ │ ├── sign-configs.its │ │ ├── sign-images.its │ │ └── vboot_test.sh ├── tools │ ├── Makefile │ ├── aisimage.c │ ├── aisimage.h │ ├── 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 │ ├── buildman │ │ ├── README │ │ ├── board.py │ │ ├── bsettings.py │ │ ├── builder.py │ │ ├── buildman │ │ ├── buildman.py │ │ ├── control.py │ │ ├── test.py │ │ └── toolchain.py │ ├── crc32.c │ ├── default_image.c │ ├── dumpimage.c │ ├── dumpimage.h │ ├── easylogo │ │ ├── Makefile │ │ ├── easylogo.c │ │ ├── linux_blackfin.tga │ │ ├── linux_logo.tga │ │ └── runme.sh │ ├── env │ │ ├── Makefile │ │ ├── README │ │ ├── crc32.c │ │ ├── ctype.c │ │ ├── env_attr.c │ │ ├── env_flags.c │ │ ├── fw_env.c │ │ ├── fw_env.config │ │ ├── fw_env.h │ │ ├── fw_env_main.c │ │ └── linux_string.c │ ├── env_embedded.c │ ├── envcrc.c │ ├── fdt.c │ ├── fdt_host.h │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_wip.c │ ├── fit_image.c │ ├── gdb │ │ ├── Makefile │ │ ├── error.c │ │ ├── error.h │ │ ├── gdbcont.c │ │ ├── gdbsend.c │ │ ├── remote.c │ │ ├── remote.h │ │ ├── serial.c │ │ └── serial.h │ ├── gen_eth_addr.c │ ├── getline.c │ ├── getline.h │ ├── image-fit.c │ ├── image-host.c │ ├── image-sig.c │ ├── image.c │ ├── imagetool.c │ ├── imagetool.h │ ├── img2brec.sh │ ├── img2srec.c │ ├── imximage.c │ ├── imximage.h │ ├── jtagconsole │ ├── kermit │ │ ├── README │ │ ├── dot.kermrc │ │ ├── flash_param │ │ ├── send_cmd │ │ └── send_image │ ├── kwbimage.c │ ├── kwbimage.h │ ├── kwboot.c │ ├── logos │ │ ├── atmel.bmp │ │ ├── denx.bmp │ │ ├── esd.bmp │ │ ├── freescale.bmp │ │ ├── intercontrol.bmp │ │ ├── linux_logo_ttcontrol.bmp │ │ ├── linux_logo_ttcontrol_palfin.bmp │ │ ├── ronetix.bmp │ │ ├── siemens.bmp │ │ ├── syteco.bmp │ │ └── wandboard.bmp │ ├── md5.c │ ├── mingw_support.c │ ├── mingw_support.h │ ├── mkenvimage.c │ ├── mkexynosspl.c │ ├── mkimage.c │ ├── mkimage.h │ ├── 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 │ │ ├── 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 │ ├── pblimage.c │ ├── pblimage.h │ ├── proftool.c │ ├── reformat.py │ ├── relocate-rela.c │ ├── rsa-sign.c │ ├── scripts │ │ └── define2mk.sed │ ├── sha1.c │ ├── ublimage.c │ ├── ublimage.h │ ├── ubsha1.c │ └── xway-swap-bytes.c └── uip │ ├── Makefile │ ├── README │ ├── apps │ └── webserver │ │ ├── Makefile.webserver │ │ ├── http-strings │ │ ├── http-strings.c │ │ ├── http-strings.h │ │ ├── httpd-cgi.c │ │ ├── httpd-cgi.h │ │ ├── httpd-fs.c │ │ ├── httpd-fs.h │ │ ├── httpd-fs │ │ ├── 404.html │ │ ├── done1.html │ │ ├── done2.html │ │ ├── index.html │ │ └── style.css │ │ ├── httpd-fsdata.c │ │ ├── httpd-fsdata.h │ │ ├── httpd.c │ │ ├── httpd.h │ │ ├── makefsdata │ │ ├── makestrings │ │ └── webserver.h │ ├── uip-1.0-changelog.txt │ ├── uip │ ├── Makefile.include │ ├── clock.h │ ├── lc-addrlabels.h │ ├── lc-switch.h │ ├── lc.h │ ├── psock.c │ ├── psock.h │ ├── pt.h │ ├── timer.c │ ├── timer.h │ ├── uip-fw.c │ ├── uip-fw.h │ ├── uip-neighbor.c │ ├── uip-neighbor.h │ ├── uip-split.c │ ├── uip-split.h │ ├── uip.c │ ├── uip.h │ ├── uip_arch.h │ ├── uip_arp.c │ ├── uip_arp.h │ ├── uiplib.c │ ├── uiplib.h │ └── uipopt.h │ └── unix │ ├── Makefile │ ├── clock-arch.c │ ├── clock-arch.h │ ├── uip-conf.h │ └── unix.c ├── QCA-AR ├── LICENSE ├── Makefile ├── README_UBOOT_MOD.md ├── bin │ └── README ├── build-test.sh ├── build.sh ├── host_util │ ├── lzma │ │ ├── C │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── LzFind.c │ │ │ ├── LzFind.h │ │ │ ├── LzHash.h │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.c │ │ │ ├── LzmaEnc.h │ │ │ └── Types.h │ │ ├── Common │ │ │ ├── CRC.cpp │ │ │ ├── C_FileIO.cpp │ │ │ ├── C_FileIO.h │ │ │ ├── Defs.h │ │ │ ├── MyCom.h │ │ │ ├── MyException.h │ │ │ ├── MyGuidDef.h │ │ │ ├── MyInitGuid.h │ │ │ ├── MyString.cpp │ │ │ ├── MyString.h │ │ │ ├── MyUnknown.h │ │ │ ├── MyVector.cpp │ │ │ ├── MyVector.h │ │ │ ├── MyWindows.h │ │ │ ├── NewHandler.cpp │ │ │ ├── NewHandler.h │ │ │ ├── StdAfx.h │ │ │ ├── StringConvert.cpp │ │ │ ├── StringConvert.h │ │ │ ├── StringToInt.cpp │ │ │ ├── StringToInt.h │ │ │ └── Types.h │ │ ├── Exception.h │ │ ├── FileStreams.cpp │ │ ├── FileStreams.h │ │ ├── ICoder.h │ │ ├── IDecl.h │ │ ├── IStream.h │ │ ├── InBuffer.cpp │ │ ├── InBuffer.h │ │ ├── LzmaDecoder.cpp │ │ ├── LzmaDecoder.h │ │ ├── LzmaEncoder.cpp │ │ ├── LzmaEncoder.h │ │ ├── OutBuffer.cpp │ │ ├── OutBuffer.h │ │ ├── StdAfx.h │ │ ├── StreamUtils.cpp │ │ ├── StreamUtils.h │ │ ├── history.txt │ │ ├── lzma │ │ ├── lzma.txt │ │ ├── lzma_version.h │ │ ├── lzmp.cpp │ │ └── makefile.gcc │ └── u-boot-serial-flash ├── target_util │ └── u-boot-upgrade └── u-boot │ ├── CHANGELOG │ ├── COPYING │ ├── CREDITS │ ├── Makefile │ ├── README │ ├── board │ └── ar7240 │ │ ├── ap121 │ │ ├── Makefile │ │ ├── ap121.c │ │ ├── config.mk │ │ ├── u-boot-bootstrap.lds │ │ └── u-boot.lds │ │ ├── ap143 │ │ ├── Makefile │ │ ├── ap143.c │ │ ├── config.mk │ │ ├── u-boot-bootstrap.lds │ │ └── u-boot.lds │ │ ├── common │ │ ├── ar7240_s26_phy.c │ │ ├── ar7240_s26_phy.h │ │ ├── athr_s27_phy.c │ │ ├── athr_s27_phy.h │ │ ├── athrs17_phy.c │ │ ├── athrs17_phy.h │ │ ├── athrs27_phy.c │ │ ├── athrs27_phy.h │ │ ├── common.c │ │ ├── phy.h │ │ ├── qca-eth-953x.c │ │ ├── qca-eth-953x.h │ │ ├── qca-eth-953x_phy.h │ │ └── spi_flash.c │ │ └── db12x │ │ ├── Makefile │ │ ├── config.mk │ │ ├── db12x.c │ │ ├── u-boot-bootstrap.lds │ │ └── u-boot.lds │ ├── common │ ├── Makefile │ ├── cmd_boot.c │ ├── cmd_bootm.c │ ├── cmd_custom.c │ ├── cmd_flash.c │ ├── cmd_itest.c │ ├── cmd_load.c │ ├── cmd_mem.c │ ├── cmd_net.c │ ├── cmd_nvedit.c │ ├── cmd_qcaclk.c │ ├── cmd_qcagpio.c │ ├── command.c │ ├── console.c │ ├── crc16.c │ ├── devices.c │ ├── dlmalloc.c │ ├── env_common.c │ ├── env_flash.c │ ├── env_nowhere.c │ ├── environment.c │ ├── exports.c │ ├── flash.c │ ├── hush.c │ ├── lists.c │ ├── main.c │ ├── s_record.c │ └── xyzModem.c │ ├── config.mk │ ├── cpu │ └── mips │ │ ├── Makefile │ │ ├── ar7240 │ │ ├── Makefile │ │ ├── ag7240.c │ │ ├── ag7240.h │ │ ├── ag7240_phy.h │ │ ├── ag934x.c │ │ ├── ag934x.h │ │ ├── ag934x_phy.h │ │ ├── ar933x_pll_init.S │ │ ├── qca95xx_pll_init.S │ │ ├── qca_clocks.c │ │ ├── qca_common.c │ │ ├── qca_dram.c │ │ ├── qca_gpio_init.S │ │ ├── qca_hs_uart.c │ │ ├── qca_ls_uart.c │ │ ├── qca_pci.c │ │ ├── qca_sf.c │ │ └── qca_usb.c │ │ ├── cache.S │ │ ├── config.mk │ │ ├── cpu.c │ │ ├── start.S │ │ └── start_bootstrap.S │ ├── drivers │ ├── Makefile │ └── netconsole.c │ ├── httpd │ ├── Makefile │ ├── fs.c │ ├── fs.h │ ├── fsdata.h │ ├── httpd.c │ ├── httpd.h │ ├── main.c │ ├── tapdev.c │ ├── tapdev.h │ ├── uip.c │ ├── uip.h │ ├── uip_arch.c │ ├── uip_arch.h │ ├── uip_arp.c │ ├── uip_arp.h │ ├── uipopt.h │ └── vendors │ │ ├── SE │ │ ├── 404.html │ │ ├── art.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── style.css │ │ └── uboot.html │ │ ├── dragino │ │ ├── 404.html │ │ ├── f.png │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── l.png │ │ └── style.css │ │ ├── general │ │ ├── 404.html │ │ ├── art.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── style.css │ │ └── uboot.html │ │ ├── makefsdatac │ │ ├── oem │ │ ├── 404.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ └── style.css │ │ ├── villagetelco │ │ ├── 404.html │ │ ├── fail.html │ │ ├── flashing.html │ │ ├── index.html │ │ ├── style.css │ │ ├── v.png │ │ └── vt.png │ │ └── yuicompressor-2.4.8.jar │ ├── include │ ├── 953x.h │ ├── LzmaWrapper.h │ ├── ar7240_soc.h │ ├── ar934x_soc.h │ ├── asm-mips │ │ ├── addrspace.h │ │ ├── bitops.h │ │ ├── byteorder.h │ │ ├── cachectl.h │ │ ├── cacheops.h │ │ ├── global_data.h │ │ ├── io.h │ │ ├── isadep.h │ │ ├── mipsregs.h │ │ ├── posix_types.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── regdef.h │ │ ├── sgidefs.h │ │ ├── string.h │ │ ├── system.h │ │ ├── types.h │ │ └── u-boot.h │ ├── atheros.h │ ├── cmd_qcaclk.h │ ├── cmd_qcagpio.h │ ├── command.h │ ├── common.h │ ├── configs │ │ ├── ap121.h │ │ ├── ap143.h │ │ ├── db12x.h │ │ └── qca9k_common.h │ ├── console.h │ ├── crc.h │ ├── devices.h │ ├── env_scripts.h │ ├── environment.h │ ├── exports.h │ ├── flash.h │ ├── hush.h │ ├── image.h │ ├── ioports.h │ ├── jffs2 │ │ ├── jffs2.h │ │ └── load_kernel.h │ ├── lcd.h │ ├── linux │ │ ├── bitops.h │ │ ├── byteorder │ │ │ ├── big_endian.h │ │ │ ├── generic.h │ │ │ ├── little_endian.h │ │ │ └── swab.h │ │ ├── config.h │ │ ├── ctype.h │ │ ├── list.h │ │ ├── mtd │ │ │ ├── mtd-abi.h │ │ │ └── mtd.h │ │ ├── posix_types.h │ │ ├── stat.h │ │ ├── stddef.h │ │ ├── string.h │ │ ├── time.h │ │ └── types.h │ ├── lists.h │ ├── malloc.h │ ├── miiphy.h │ ├── net.h │ ├── pci.h │ ├── pci_ids.h │ ├── rtc.h │ ├── rtos │ │ └── rtos_data.h │ ├── s_record.h │ ├── serial.h │ ├── soc │ │ ├── ar933x_pll_init.h │ │ ├── mtk_soc_common.h │ │ ├── qca95xx_pll_init.h │ │ ├── qca_dram.h │ │ ├── qca_pll_list.h │ │ ├── qca_soc_common.h │ │ ├── soc_common.h │ │ └── soc_list.h │ ├── tinf.h │ ├── tplink_image.h │ ├── version.h │ └── xyzModem.h │ ├── lib_bootstrap │ ├── LzmaDecode.c │ ├── LzmaDecode.h │ ├── LzmaTypes.h │ ├── LzmaWrapper.c │ ├── Makefile │ ├── bootstrap_board.c │ └── string.c │ ├── lib_generic │ ├── LzmaDecode.c │ ├── LzmaDecode.h │ ├── LzmaTypes.h │ ├── LzmaWrapper.c │ ├── Makefile │ ├── crc32.c │ ├── ctype.c │ ├── display_options.c │ ├── ldiv.c │ ├── string.c │ ├── tinfcrc32.c │ ├── tinfgzip.c │ ├── tinflate.c │ └── vsprintf.c │ ├── lib_mips │ ├── Makefile │ ├── board.c │ ├── mips_linux.c │ └── time.c │ ├── lib_rtos │ ├── Makefile │ ├── config.mk │ ├── glue.c │ ├── glue.h │ ├── include │ │ ├── libc │ │ │ ├── libc_dirent.h │ │ │ ├── libc_errno.h │ │ │ ├── libc_fcntl.h │ │ │ ├── libc_fdset.h │ │ │ ├── libc_ioctl.h │ │ │ ├── libc_signal.h │ │ │ └── libc_stat.h │ │ ├── rtconfig.h │ │ ├── rtdbg.h │ │ ├── rtdebug.h │ │ ├── rtdef.h │ │ ├── rthw.h │ │ ├── rtlibc.h │ │ ├── rtm.h │ │ ├── rtservice.h │ │ └── rtthread.h │ ├── kernel │ │ ├── Makefile │ │ ├── clock.c │ │ ├── components.c │ │ ├── device.c │ │ ├── idle.c │ │ ├── ipc.c │ │ ├── irq.c │ │ ├── kservice.c │ │ ├── mem.c │ │ ├── memheap.c │ │ ├── mempool.c │ │ ├── object.c │ │ ├── scheduler.c │ │ ├── signal.c │ │ ├── slab.c │ │ ├── thread.c │ │ └── timer.c │ └── libcpu_mips32 │ │ ├── Makefile │ │ ├── asm.h │ │ ├── context_gcc.S │ │ ├── cpuport.c │ │ ├── interrupt.c │ │ ├── mips.inc │ │ ├── mipsregs.h │ │ ├── stackframe.h │ │ └── vector.c │ ├── mips_config.mk │ ├── mkconfig │ ├── net │ ├── Makefile │ ├── bootp.c │ ├── bootp.h │ ├── eth.c │ ├── httpd.c │ ├── httpd.h │ ├── net.c │ ├── nfs.c │ ├── nfs.h │ ├── rarp.c │ ├── rarp.h │ ├── sntp.c │ ├── sntp.h │ ├── tftp.c │ └── tftp.h │ ├── rtc │ ├── Makefile │ └── date.c │ └── tools │ ├── Makefile │ ├── envcrc.c │ └── mkimage.c └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/.gitignore -------------------------------------------------------------------------------- /BCM/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IPQ/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/COPYING -------------------------------------------------------------------------------- /IPQ/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/CREDITS -------------------------------------------------------------------------------- /IPQ/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/MAINTAINERS -------------------------------------------------------------------------------- /IPQ/MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/MAKEALL -------------------------------------------------------------------------------- /IPQ/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/Makefile -------------------------------------------------------------------------------- /IPQ/README.ASUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/README.ASUS -------------------------------------------------------------------------------- /IPQ/README.ORI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/README.ORI -------------------------------------------------------------------------------- /IPQ/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/Makefile -------------------------------------------------------------------------------- /IPQ/api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/README -------------------------------------------------------------------------------- /IPQ/api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/api.c -------------------------------------------------------------------------------- /IPQ/api/api_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/api_display.c -------------------------------------------------------------------------------- /IPQ/api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/api_net.c -------------------------------------------------------------------------------- /IPQ/api/api_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/api_private.h -------------------------------------------------------------------------------- /IPQ/api/api_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/api/api_storage.c -------------------------------------------------------------------------------- /IPQ/arch/arm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/arm/config.mk -------------------------------------------------------------------------------- /IPQ/arch/arm/cpu/armv7/highbank/config.mk: -------------------------------------------------------------------------------- 1 | PLATFORM_CPPFLAGS += -march=armv7-a 2 | -------------------------------------------------------------------------------- /IPQ/arch/arm/include/asm/arch: -------------------------------------------------------------------------------- 1 | arch-qca -------------------------------------------------------------------------------- /IPQ/arch/arm/include/asm/arch-tnetv107x/emif_defs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/arm/lib/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/arm/lib/board.c -------------------------------------------------------------------------------- /IPQ/arch/arm/lib/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/arm/lib/bootm.c -------------------------------------------------------------------------------- /IPQ/arch/arm/lib/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/arm/lib/cache.c -------------------------------------------------------------------------------- /IPQ/arch/arm/lib/div0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/arm/lib/div0.c -------------------------------------------------------------------------------- /IPQ/arch/arm/lib/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/arm/lib/reset.c -------------------------------------------------------------------------------- /IPQ/arch/avr32/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/avr32/config.mk -------------------------------------------------------------------------------- /IPQ/arch/avr32/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/avr32/cpu/cpu.c -------------------------------------------------------------------------------- /IPQ/arch/avr32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/avr32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf527/BF523_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF522_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf527/BF523_def.h: -------------------------------------------------------------------------------- 1 | #include "BF522_def.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf527/BF525_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF524_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf527/BF525_def.h: -------------------------------------------------------------------------------- 1 | #include "BF524_def.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf527/BF527_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF526_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf527/BF527_def.h: -------------------------------------------------------------------------------- 1 | #include "BF526_def.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf533/BF532_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF531_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf533/BF533_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF532_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf537/BF537_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF536_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf537/BF537_def.h: -------------------------------------------------------------------------------- 1 | #include "BF536_def.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf538/BF539_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF538_cdef.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/mach-bf538/BF539_def.h: -------------------------------------------------------------------------------- 1 | #include "BF538_def.h" 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/blackfin/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/m68k/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/m68k/config.mk -------------------------------------------------------------------------------- /IPQ/arch/m68k/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/m68k/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/m68k/lib/time.c -------------------------------------------------------------------------------- /IPQ/arch/microblaze/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/mips/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/mips/config.mk -------------------------------------------------------------------------------- /IPQ/arch/nds32/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/nds32/config.mk -------------------------------------------------------------------------------- /IPQ/arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/nios2/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/nios2/config.mk -------------------------------------------------------------------------------- /IPQ/arch/nios2/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/nios2/cpu/cpu.c -------------------------------------------------------------------------------- /IPQ/arch/nios2/cpu/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/nios2/cpu/fdt.c -------------------------------------------------------------------------------- /IPQ/arch/nios2/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/openrisc/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/openrisc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/openrisc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /IPQ/arch/powerpc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/sh/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/config.mk -------------------------------------------------------------------------------- /IPQ/arch/sh/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/sh/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/lib/Makefile -------------------------------------------------------------------------------- /IPQ/arch/sh/lib/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/lib/board.c -------------------------------------------------------------------------------- /IPQ/arch/sh/lib/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/lib/bootm.c -------------------------------------------------------------------------------- /IPQ/arch/sh/lib/libgcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/lib/libgcc.h -------------------------------------------------------------------------------- /IPQ/arch/sh/lib/movmem.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/lib/movmem.S -------------------------------------------------------------------------------- /IPQ/arch/sh/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sh/lib/time.c -------------------------------------------------------------------------------- /IPQ/arch/sparc/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/sparc/config.mk -------------------------------------------------------------------------------- /IPQ/arch/sparc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/x86/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/config.mk -------------------------------------------------------------------------------- /IPQ/arch/x86/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/cpu/cpu.c -------------------------------------------------------------------------------- /IPQ/arch/x86/cpu/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/cpu/start.S -------------------------------------------------------------------------------- /IPQ/arch/x86/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/bios.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/bios.S -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/bios.h -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/board.c -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/bootm.c -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/gcc.c -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/pci.c -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/timer.c -------------------------------------------------------------------------------- /IPQ/arch/x86/lib/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/arch/x86/lib/video.c -------------------------------------------------------------------------------- /IPQ/board/a3000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/a3000/Makefile -------------------------------------------------------------------------------- /IPQ/board/a3000/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/a3000/README -------------------------------------------------------------------------------- /IPQ/board/a3000/a3000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/a3000/a3000.c -------------------------------------------------------------------------------- /IPQ/board/a3000/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/a3000/flash.c -------------------------------------------------------------------------------- /IPQ/board/adder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/adder/Makefile -------------------------------------------------------------------------------- /IPQ/board/adder/adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/adder/adder.c -------------------------------------------------------------------------------- /IPQ/board/alaska/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/alaska/flash.c -------------------------------------------------------------------------------- /IPQ/board/apollon/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/apollon/mem.c -------------------------------------------------------------------------------- /IPQ/board/apollon/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/apollon/mem.h -------------------------------------------------------------------------------- /IPQ/board/atc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/atc/Makefile -------------------------------------------------------------------------------- /IPQ/board/atc/atc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/atc/atc.c -------------------------------------------------------------------------------- /IPQ/board/atc/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/atc/flash.c -------------------------------------------------------------------------------- /IPQ/board/atc/ti113x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/atc/ti113x.c -------------------------------------------------------------------------------- /IPQ/board/bmw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/Makefile -------------------------------------------------------------------------------- /IPQ/board/bmw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/README -------------------------------------------------------------------------------- /IPQ/board/bmw/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/bmw.c -------------------------------------------------------------------------------- /IPQ/board/bmw/bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/bmw.h -------------------------------------------------------------------------------- /IPQ/board/bmw/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/config.mk -------------------------------------------------------------------------------- /IPQ/board/bmw/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/flash.c -------------------------------------------------------------------------------- /IPQ/board/bmw/m48t59y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/m48t59y.c -------------------------------------------------------------------------------- /IPQ/board/bmw/m48t59y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/m48t59y.h -------------------------------------------------------------------------------- /IPQ/board/bmw/ns16550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/ns16550.c -------------------------------------------------------------------------------- /IPQ/board/bmw/ns16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/ns16550.h -------------------------------------------------------------------------------- /IPQ/board/bmw/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/bmw/serial.c -------------------------------------------------------------------------------- /IPQ/board/br4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/br4/Makefile -------------------------------------------------------------------------------- /IPQ/board/br4/br4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/br4/br4.c -------------------------------------------------------------------------------- /IPQ/board/br4/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/br4/config.mk -------------------------------------------------------------------------------- /IPQ/board/c2mon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/c2mon/Makefile -------------------------------------------------------------------------------- /IPQ/board/c2mon/c2mon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/c2mon/c2mon.c -------------------------------------------------------------------------------- /IPQ/board/c2mon/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/c2mon/flash.c -------------------------------------------------------------------------------- /IPQ/board/c2mon/pcmcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/c2mon/pcmcia.c -------------------------------------------------------------------------------- /IPQ/board/canmb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/canmb/Makefile -------------------------------------------------------------------------------- /IPQ/board/canmb/canmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/canmb/canmb.c -------------------------------------------------------------------------------- /IPQ/board/cm4008/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cm4008/flash.c -------------------------------------------------------------------------------- /IPQ/board/cm41xx/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cm41xx/flash.c -------------------------------------------------------------------------------- /IPQ/board/cm_t35/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cm_t35/leds.c -------------------------------------------------------------------------------- /IPQ/board/cmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cmi/Makefile -------------------------------------------------------------------------------- /IPQ/board/cmi/cmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cmi/cmi.c -------------------------------------------------------------------------------- /IPQ/board/cmi/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cmi/flash.c -------------------------------------------------------------------------------- /IPQ/board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /IPQ/board/cogent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cogent/README -------------------------------------------------------------------------------- /IPQ/board/cogent/dipsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cogent/dipsw.c -------------------------------------------------------------------------------- /IPQ/board/cogent/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cogent/mb.c -------------------------------------------------------------------------------- /IPQ/board/cogent/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/cogent/mb.h -------------------------------------------------------------------------------- /IPQ/board/eNET/eNET.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/eNET/eNET.c -------------------------------------------------------------------------------- /IPQ/board/espt/espt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/espt/espt.c -------------------------------------------------------------------------------- /IPQ/board/fads/fads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/fads/fads.c -------------------------------------------------------------------------------- /IPQ/board/fads/fads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/fads/fads.h -------------------------------------------------------------------------------- /IPQ/board/fads/lamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/fads/lamp.c -------------------------------------------------------------------------------- /IPQ/board/gth2/gth2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/gth2/gth2.c -------------------------------------------------------------------------------- /IPQ/board/hymod/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/hymod/bsp.c -------------------------------------------------------------------------------- /IPQ/board/hymod/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/hymod/env.c -------------------------------------------------------------------------------- /IPQ/board/idmr/idmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/idmr/idmr.c -------------------------------------------------------------------------------- /IPQ/board/ip04/ip04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/ip04/ip04.c -------------------------------------------------------------------------------- /IPQ/board/ivm/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/ivm/flash.c -------------------------------------------------------------------------------- /IPQ/board/ivm/ivm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/ivm/ivm.c -------------------------------------------------------------------------------- /IPQ/board/jse/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/jse/flash.c -------------------------------------------------------------------------------- /IPQ/board/jse/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/jse/init.S -------------------------------------------------------------------------------- /IPQ/board/jse/jse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/jse/jse.c -------------------------------------------------------------------------------- /IPQ/board/jse/sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/jse/sdram.c -------------------------------------------------------------------------------- /IPQ/board/ml2/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/ml2/flash.c -------------------------------------------------------------------------------- /IPQ/board/ml2/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/ml2/init.S -------------------------------------------------------------------------------- /IPQ/board/ml2/ml2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/ml2/ml2.c -------------------------------------------------------------------------------- /IPQ/board/mpr2/mpr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/mpr2/mpr2.c -------------------------------------------------------------------------------- /IPQ/board/netta/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/netta/dsp.c -------------------------------------------------------------------------------- /IPQ/board/pn62/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/pn62/misc.c -------------------------------------------------------------------------------- /IPQ/board/pn62/pn62.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/pn62/pn62.c -------------------------------------------------------------------------------- /IPQ/board/pn62/pn62.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/pn62/pn62.h -------------------------------------------------------------------------------- /IPQ/board/pr1/pr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/pr1/pr1.c -------------------------------------------------------------------------------- /IPQ/board/sandpoint/dinkdl: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | tr -d "\r" <$1 >/dev/tts/1 3 | -------------------------------------------------------------------------------- /IPQ/board/sc3/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/sc3/init.S -------------------------------------------------------------------------------- /IPQ/board/sc3/sc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/sc3/sc3.c -------------------------------------------------------------------------------- /IPQ/board/sc3/sc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/sc3/sc3.h -------------------------------------------------------------------------------- /IPQ/board/sx1/sx1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/sx1/sx1.c -------------------------------------------------------------------------------- /IPQ/board/v37/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/v37/flash.c -------------------------------------------------------------------------------- /IPQ/board/v37/v37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/v37/v37.c -------------------------------------------------------------------------------- /IPQ/board/v38b/v38b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/v38b/v38b.c -------------------------------------------------------------------------------- /IPQ/board/w7o/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/flash.c -------------------------------------------------------------------------------- /IPQ/board/w7o/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/fpga.c -------------------------------------------------------------------------------- /IPQ/board/w7o/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/init.S -------------------------------------------------------------------------------- /IPQ/board/w7o/post1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/post1.S -------------------------------------------------------------------------------- /IPQ/board/w7o/post2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/post2.c -------------------------------------------------------------------------------- /IPQ/board/w7o/vpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/vpd.c -------------------------------------------------------------------------------- /IPQ/board/w7o/vpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/vpd.h -------------------------------------------------------------------------------- /IPQ/board/w7o/w7o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/w7o.c -------------------------------------------------------------------------------- /IPQ/board/w7o/w7o.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/w7o/w7o.h -------------------------------------------------------------------------------- /IPQ/board/zeus/zeus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/board/zeus/zeus.c -------------------------------------------------------------------------------- /IPQ/boards.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/boards.cfg -------------------------------------------------------------------------------- /IPQ/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/Makefile -------------------------------------------------------------------------------- /IPQ/common/bedbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/bedbug.c -------------------------------------------------------------------------------- /IPQ/common/cmd_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_bmp.c -------------------------------------------------------------------------------- /IPQ/common/cmd_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_boot.c -------------------------------------------------------------------------------- /IPQ/common/cmd_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_date.c -------------------------------------------------------------------------------- /IPQ/common/cmd_dcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_dcr.c -------------------------------------------------------------------------------- /IPQ/common/cmd_df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_df.c -------------------------------------------------------------------------------- /IPQ/common/cmd_diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_diag.c -------------------------------------------------------------------------------- /IPQ/common/cmd_dtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_dtt.c -------------------------------------------------------------------------------- /IPQ/common/cmd_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_echo.c -------------------------------------------------------------------------------- /IPQ/common/cmd_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_elf.c -------------------------------------------------------------------------------- /IPQ/common/cmd_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_exit.c -------------------------------------------------------------------------------- /IPQ/common/cmd_ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_ext2.c -------------------------------------------------------------------------------- /IPQ/common/cmd_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_fat.c -------------------------------------------------------------------------------- /IPQ/common/cmd_fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_fdc.c -------------------------------------------------------------------------------- /IPQ/common/cmd_fdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_fdos.c -------------------------------------------------------------------------------- /IPQ/common/cmd_fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_fdt.c -------------------------------------------------------------------------------- /IPQ/common/cmd_fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_fpga.c -------------------------------------------------------------------------------- /IPQ/common/cmd_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_gpio.c -------------------------------------------------------------------------------- /IPQ/common/cmd_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_help.c -------------------------------------------------------------------------------- /IPQ/common/cmd_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_i2c.c -------------------------------------------------------------------------------- /IPQ/common/cmd_ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_ide.c -------------------------------------------------------------------------------- /IPQ/common/cmd_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_irq.c -------------------------------------------------------------------------------- /IPQ/common/cmd_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_led.c -------------------------------------------------------------------------------- /IPQ/common/cmd_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_load.c -------------------------------------------------------------------------------- /IPQ/common/cmd_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_log.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mac.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mdio.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mem.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mfsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mfsl.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mii.c -------------------------------------------------------------------------------- /IPQ/common/cmd_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_misc.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mmc.c -------------------------------------------------------------------------------- /IPQ/common/cmd_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_mp.c -------------------------------------------------------------------------------- /IPQ/common/cmd_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_nand.c -------------------------------------------------------------------------------- /IPQ/common/cmd_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_net.c -------------------------------------------------------------------------------- /IPQ/common/cmd_otp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_otp.c -------------------------------------------------------------------------------- /IPQ/common/cmd_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_pci.c -------------------------------------------------------------------------------- /IPQ/common/cmd_pxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_pxe.c -------------------------------------------------------------------------------- /IPQ/common/cmd_sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_sata.c -------------------------------------------------------------------------------- /IPQ/common/cmd_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_scsi.c -------------------------------------------------------------------------------- /IPQ/common/cmd_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_sf.c -------------------------------------------------------------------------------- /IPQ/common/cmd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_spi.c -------------------------------------------------------------------------------- /IPQ/common/cmd_spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_spl.c -------------------------------------------------------------------------------- /IPQ/common/cmd_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_test.c -------------------------------------------------------------------------------- /IPQ/common/cmd_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_time.c -------------------------------------------------------------------------------- /IPQ/common/cmd_tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_tpm.c -------------------------------------------------------------------------------- /IPQ/common/cmd_ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_ubi.c -------------------------------------------------------------------------------- /IPQ/common/cmd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_usb.c -------------------------------------------------------------------------------- /IPQ/common/cmd_ximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/cmd_ximg.c -------------------------------------------------------------------------------- /IPQ/common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/command.c -------------------------------------------------------------------------------- /IPQ/common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/console.c -------------------------------------------------------------------------------- /IPQ/common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/ddr_spd.c -------------------------------------------------------------------------------- /IPQ/common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/dlmalloc.c -------------------------------------------------------------------------------- /IPQ/common/env_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/env_fat.c -------------------------------------------------------------------------------- /IPQ/common/env_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/env_mmc.c -------------------------------------------------------------------------------- /IPQ/common/env_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/env_nand.c -------------------------------------------------------------------------------- /IPQ/common/env_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/env_sf.c -------------------------------------------------------------------------------- /IPQ/common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/exports.c -------------------------------------------------------------------------------- /IPQ/common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/flash.c -------------------------------------------------------------------------------- /IPQ/common/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/gpio.c -------------------------------------------------------------------------------- /IPQ/common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/hush.c -------------------------------------------------------------------------------- /IPQ/common/hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/hwconfig.c -------------------------------------------------------------------------------- /IPQ/common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/image.c -------------------------------------------------------------------------------- /IPQ/common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/iomux.c -------------------------------------------------------------------------------- /IPQ/common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/kallsyms.c -------------------------------------------------------------------------------- /IPQ/common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/kgdb.c -------------------------------------------------------------------------------- /IPQ/common/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/lcd.c -------------------------------------------------------------------------------- /IPQ/common/lynxkdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/lynxkdi.c -------------------------------------------------------------------------------- /IPQ/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/main.c -------------------------------------------------------------------------------- /IPQ/common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/memsize.c -------------------------------------------------------------------------------- /IPQ/common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/menu.c -------------------------------------------------------------------------------- /IPQ/common/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/modem.c -------------------------------------------------------------------------------- /IPQ/common/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/replace.c -------------------------------------------------------------------------------- /IPQ/common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/s_record.c -------------------------------------------------------------------------------- /IPQ/common/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/serial.c -------------------------------------------------------------------------------- /IPQ/common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/stdio.c -------------------------------------------------------------------------------- /IPQ/common/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/update.c -------------------------------------------------------------------------------- /IPQ/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/usb.c -------------------------------------------------------------------------------- /IPQ/common/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/usb_hub.c -------------------------------------------------------------------------------- /IPQ/common/usb_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/usb_kbd.c -------------------------------------------------------------------------------- /IPQ/common/xyzModem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/common/xyzModem.c -------------------------------------------------------------------------------- /IPQ/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/config.mk -------------------------------------------------------------------------------- /IPQ/disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/Makefile -------------------------------------------------------------------------------- /IPQ/disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part.c -------------------------------------------------------------------------------- /IPQ/disk/part_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_amiga.c -------------------------------------------------------------------------------- /IPQ/disk/part_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_amiga.h -------------------------------------------------------------------------------- /IPQ/disk/part_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_dos.c -------------------------------------------------------------------------------- /IPQ/disk/part_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_dos.h -------------------------------------------------------------------------------- /IPQ/disk/part_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_efi.c -------------------------------------------------------------------------------- /IPQ/disk/part_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_efi.h -------------------------------------------------------------------------------- /IPQ/disk/part_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_iso.c -------------------------------------------------------------------------------- /IPQ/disk/part_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_iso.h -------------------------------------------------------------------------------- /IPQ/disk/part_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_mac.c -------------------------------------------------------------------------------- /IPQ/disk/part_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/disk/part_mac.h -------------------------------------------------------------------------------- /IPQ/doc/README.AVR32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.AVR32 -------------------------------------------------------------------------------- /IPQ/doc/README.JFFS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.JFFS2 -------------------------------------------------------------------------------- /IPQ/doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.LED -------------------------------------------------------------------------------- /IPQ/doc/README.MBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.MBX -------------------------------------------------------------------------------- /IPQ/doc/README.MPC866: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.MPC866 -------------------------------------------------------------------------------- /IPQ/doc/README.Modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.Modem -------------------------------------------------------------------------------- /IPQ/doc/README.N1213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.N1213 -------------------------------------------------------------------------------- /IPQ/doc/README.NDS32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.NDS32 -------------------------------------------------------------------------------- /IPQ/doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.OFT -------------------------------------------------------------------------------- /IPQ/doc/README.OXC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.OXC -------------------------------------------------------------------------------- /IPQ/doc/README.PIP405: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.PIP405 -------------------------------------------------------------------------------- /IPQ/doc/README.POST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.POST -------------------------------------------------------------------------------- /IPQ/doc/README.SNTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.SNTP -------------------------------------------------------------------------------- /IPQ/doc/README.SPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.SPL -------------------------------------------------------------------------------- /IPQ/doc/README.VLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.VLAN -------------------------------------------------------------------------------- /IPQ/doc/README.ag101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ag101 -------------------------------------------------------------------------------- /IPQ/doc/README.ag102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ag102 -------------------------------------------------------------------------------- /IPQ/doc/README.at91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.at91 -------------------------------------------------------------------------------- /IPQ/doc/README.bamboo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.bamboo -------------------------------------------------------------------------------- /IPQ/doc/README.bedbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.bedbug -------------------------------------------------------------------------------- /IPQ/doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.cfi -------------------------------------------------------------------------------- /IPQ/doc/README.cmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.cmi -------------------------------------------------------------------------------- /IPQ/doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.dns -------------------------------------------------------------------------------- /IPQ/doc/README.ebony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ebony -------------------------------------------------------------------------------- /IPQ/doc/README.fads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.fads -------------------------------------------------------------------------------- /IPQ/doc/README.imx31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.imx31 -------------------------------------------------------------------------------- /IPQ/doc/README.imx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.imx5 -------------------------------------------------------------------------------- /IPQ/doc/README.iomux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.iomux -------------------------------------------------------------------------------- /IPQ/doc/README.korat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.korat -------------------------------------------------------------------------------- /IPQ/doc/README.m28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.m28 -------------------------------------------------------------------------------- /IPQ/doc/README.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.m68k -------------------------------------------------------------------------------- /IPQ/doc/README.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.menu -------------------------------------------------------------------------------- /IPQ/doc/README.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.mips -------------------------------------------------------------------------------- /IPQ/doc/README.mpc5xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.mpc5xx -------------------------------------------------------------------------------- /IPQ/doc/README.mvbc_p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.mvbc_p -------------------------------------------------------------------------------- /IPQ/doc/README.mvblm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.mvblm7 -------------------------------------------------------------------------------- /IPQ/doc/README.mvsmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.mvsmr -------------------------------------------------------------------------------- /IPQ/doc/README.nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.nand -------------------------------------------------------------------------------- /IPQ/doc/README.ne2000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ne2000 -------------------------------------------------------------------------------- /IPQ/doc/README.ocotea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ocotea -------------------------------------------------------------------------------- /IPQ/doc/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.omap3 -------------------------------------------------------------------------------- /IPQ/doc/README.ppc440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ppc440 -------------------------------------------------------------------------------- /IPQ/doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.pxe -------------------------------------------------------------------------------- /IPQ/doc/README.sata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.sata -------------------------------------------------------------------------------- /IPQ/doc/README.sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.sched -------------------------------------------------------------------------------- /IPQ/doc/README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.sh -------------------------------------------------------------------------------- /IPQ/doc/README.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.sha1 -------------------------------------------------------------------------------- /IPQ/doc/README.silent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.silent -------------------------------------------------------------------------------- /IPQ/doc/README.spear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.spear -------------------------------------------------------------------------------- /IPQ/doc/README.stxxtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.stxxtc -------------------------------------------------------------------------------- /IPQ/doc/README.timll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.timll -------------------------------------------------------------------------------- /IPQ/doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.ubi -------------------------------------------------------------------------------- /IPQ/doc/README.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.update -------------------------------------------------------------------------------- /IPQ/doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.usb -------------------------------------------------------------------------------- /IPQ/doc/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.video -------------------------------------------------------------------------------- /IPQ/doc/README.zeus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/README.zeus -------------------------------------------------------------------------------- /IPQ/doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/git-mailrc -------------------------------------------------------------------------------- /IPQ/doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/kwboot.1 -------------------------------------------------------------------------------- /IPQ/doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/doc/mkimage.1 -------------------------------------------------------------------------------- /IPQ/drivers/dma/bam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/dma/bam.c -------------------------------------------------------------------------------- /IPQ/drivers/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/mmc/mmc.c -------------------------------------------------------------------------------- /IPQ/drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/pci/pci.c -------------------------------------------------------------------------------- /IPQ/drivers/qe/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/fdt.c -------------------------------------------------------------------------------- /IPQ/drivers/qe/qe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/qe.c -------------------------------------------------------------------------------- /IPQ/drivers/qe/qe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/qe.h -------------------------------------------------------------------------------- /IPQ/drivers/qe/uccf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/uccf.c -------------------------------------------------------------------------------- /IPQ/drivers/qe/uccf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/uccf.h -------------------------------------------------------------------------------- /IPQ/drivers/qe/uec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/uec.c -------------------------------------------------------------------------------- /IPQ/drivers/qe/uec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/drivers/qe/uec.h -------------------------------------------------------------------------------- /IPQ/dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/dts/Makefile -------------------------------------------------------------------------------- /IPQ/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/Makefile -------------------------------------------------------------------------------- /IPQ/fs/ext2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ext2/Makefile -------------------------------------------------------------------------------- /IPQ/fs/ext2/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ext2/dev.c -------------------------------------------------------------------------------- /IPQ/fs/ext2/ext2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ext2/ext2fs.c -------------------------------------------------------------------------------- /IPQ/fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fat/Makefile -------------------------------------------------------------------------------- /IPQ/fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fat/fat.c -------------------------------------------------------------------------------- /IPQ/fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fat/file.c -------------------------------------------------------------------------------- /IPQ/fs/fdos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/Makefile -------------------------------------------------------------------------------- /IPQ/fs/fdos/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/dev.c -------------------------------------------------------------------------------- /IPQ/fs/fdos/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/dos.h -------------------------------------------------------------------------------- /IPQ/fs/fdos/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/fat.c -------------------------------------------------------------------------------- /IPQ/fs/fdos/fdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/fdos.c -------------------------------------------------------------------------------- /IPQ/fs/fdos/fdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/fdos.h -------------------------------------------------------------------------------- /IPQ/fs/fdos/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/fs.c -------------------------------------------------------------------------------- /IPQ/fs/fdos/subdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/subdir.c -------------------------------------------------------------------------------- /IPQ/fs/fdos/vfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/fdos/vfat.c -------------------------------------------------------------------------------- /IPQ/fs/jffs2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/jffs2/LICENCE -------------------------------------------------------------------------------- /IPQ/fs/jffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/jffs2/Makefile -------------------------------------------------------------------------------- /IPQ/fs/reiserfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/reiserfs/dev.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/Makefile -------------------------------------------------------------------------------- /IPQ/fs/ubifs/budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/budget.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/crc16.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/crc16.h -------------------------------------------------------------------------------- /IPQ/fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/debug.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/debug.h -------------------------------------------------------------------------------- /IPQ/fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/io.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/key.h -------------------------------------------------------------------------------- /IPQ/fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/log.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/lprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/lprops.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/master.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/misc.h -------------------------------------------------------------------------------- /IPQ/fs/ubifs/orphan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/orphan.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/replay.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/sb.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/scan.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/super.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /IPQ/fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /IPQ/include/ACEX1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ACEX1K.h -------------------------------------------------------------------------------- /IPQ/include/MCD_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/MCD_dma.h -------------------------------------------------------------------------------- /IPQ/include/SA-1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/SA-1100.h -------------------------------------------------------------------------------- /IPQ/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/aes.h -------------------------------------------------------------------------------- /IPQ/include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ahci.h -------------------------------------------------------------------------------- /IPQ/include/ali512x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ali512x.h -------------------------------------------------------------------------------- /IPQ/include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/altera.h -------------------------------------------------------------------------------- /IPQ/include/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ambapp.h -------------------------------------------------------------------------------- /IPQ/include/arm925t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/arm925t.h -------------------------------------------------------------------------------- /IPQ/include/asm/arch: -------------------------------------------------------------------------------- 1 | arch-qca -------------------------------------------------------------------------------- /IPQ/include/asm/arch-tnetv107x/emif_defs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /IPQ/include/asm/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/asm/io.h -------------------------------------------------------------------------------- /IPQ/include/at45.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/at45.h -------------------------------------------------------------------------------- /IPQ/include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ata.h -------------------------------------------------------------------------------- /IPQ/include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/bcd.h -------------------------------------------------------------------------------- /IPQ/include/bcm5221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/bcm5221.h -------------------------------------------------------------------------------- /IPQ/include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/bzlib.h -------------------------------------------------------------------------------- /IPQ/include/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/circbuf.h -------------------------------------------------------------------------------- /IPQ/include/cmd_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/cmd_spl.h -------------------------------------------------------------------------------- /IPQ/include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/command.h -------------------------------------------------------------------------------- /IPQ/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/common.h -------------------------------------------------------------------------------- /IPQ/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/config.h -------------------------------------------------------------------------------- /IPQ/include/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/config.mk -------------------------------------------------------------------------------- /IPQ/include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/crc.h -------------------------------------------------------------------------------- /IPQ/include/da9030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/da9030.h -------------------------------------------------------------------------------- /IPQ/include/ddr_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ddr_spd.h -------------------------------------------------------------------------------- /IPQ/include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/div64.h -------------------------------------------------------------------------------- /IPQ/include/dm9000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/dm9000.h -------------------------------------------------------------------------------- /IPQ/include/dm9161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/dm9161.h -------------------------------------------------------------------------------- /IPQ/include/dp83848.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/dp83848.h -------------------------------------------------------------------------------- /IPQ/include/ds1722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ds1722.h -------------------------------------------------------------------------------- /IPQ/include/ds4510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ds4510.h -------------------------------------------------------------------------------- /IPQ/include/dtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/dtt.h -------------------------------------------------------------------------------- /IPQ/include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/e500.h -------------------------------------------------------------------------------- /IPQ/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/elf.h -------------------------------------------------------------------------------- /IPQ/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/errno.h -------------------------------------------------------------------------------- /IPQ/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/exports.h -------------------------------------------------------------------------------- /IPQ/include/ext2fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ext2fs.h -------------------------------------------------------------------------------- /IPQ/include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fat.h -------------------------------------------------------------------------------- /IPQ/include/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fdc.h -------------------------------------------------------------------------------- /IPQ/include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fdt.h -------------------------------------------------------------------------------- /IPQ/include/fdtdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fdtdec.h -------------------------------------------------------------------------------- /IPQ/include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fis.h -------------------------------------------------------------------------------- /IPQ/include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/flash.h -------------------------------------------------------------------------------- /IPQ/include/fm_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fm_eth.h -------------------------------------------------------------------------------- /IPQ/include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fpga.h -------------------------------------------------------------------------------- /IPQ/include/fsl_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/fsl_nfc.h -------------------------------------------------------------------------------- /IPQ/include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/gpio.h -------------------------------------------------------------------------------- /IPQ/include/hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/hush.h -------------------------------------------------------------------------------- /IPQ/include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/i2c.h -------------------------------------------------------------------------------- /IPQ/include/i8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/i8042.h -------------------------------------------------------------------------------- /IPQ/include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ide.h -------------------------------------------------------------------------------- /IPQ/include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/image.h -------------------------------------------------------------------------------- /IPQ/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/input.h -------------------------------------------------------------------------------- /IPQ/include/iomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/iomux.h -------------------------------------------------------------------------------- /IPQ/include/ioports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ioports.h -------------------------------------------------------------------------------- /IPQ/include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/kgdb.h -------------------------------------------------------------------------------- /IPQ/include/ks8721.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ks8721.h -------------------------------------------------------------------------------- /IPQ/include/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lattice.h -------------------------------------------------------------------------------- /IPQ/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lcd.h -------------------------------------------------------------------------------- /IPQ/include/lh7a400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lh7a400.h -------------------------------------------------------------------------------- /IPQ/include/lh7a404.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lh7a404.h -------------------------------------------------------------------------------- /IPQ/include/lh7a40x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lh7a40x.h -------------------------------------------------------------------------------- /IPQ/include/libata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/libata.h -------------------------------------------------------------------------------- /IPQ/include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/libfdt.h -------------------------------------------------------------------------------- /IPQ/include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lmb.h -------------------------------------------------------------------------------- /IPQ/include/logbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/logbuff.h -------------------------------------------------------------------------------- /IPQ/include/lxt971a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lxt971a.h -------------------------------------------------------------------------------- /IPQ/include/lynxkdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/lynxkdi.h -------------------------------------------------------------------------------- /IPQ/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/malloc.h -------------------------------------------------------------------------------- /IPQ/include/mb862xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mb862xx.h -------------------------------------------------------------------------------- /IPQ/include/mc13783.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mc13783.h -------------------------------------------------------------------------------- /IPQ/include/mc13892.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mc13892.h -------------------------------------------------------------------------------- /IPQ/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/menu.h -------------------------------------------------------------------------------- /IPQ/include/micrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/micrel.h -------------------------------------------------------------------------------- /IPQ/include/mii_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mii_phy.h -------------------------------------------------------------------------------- /IPQ/include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/miiphy.h -------------------------------------------------------------------------------- /IPQ/include/mk48t59.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mk48t59.h -------------------------------------------------------------------------------- /IPQ/include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mmc.h -------------------------------------------------------------------------------- /IPQ/include/mpc106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc106.h -------------------------------------------------------------------------------- /IPQ/include/mpc5xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc5xx.h -------------------------------------------------------------------------------- /IPQ/include/mpc5xxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc5xxx.h -------------------------------------------------------------------------------- /IPQ/include/mpc8220.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc8220.h -------------------------------------------------------------------------------- /IPQ/include/mpc824x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc824x.h -------------------------------------------------------------------------------- /IPQ/include/mpc8260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc8260.h -------------------------------------------------------------------------------- /IPQ/include/mpc83xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc83xx.h -------------------------------------------------------------------------------- /IPQ/include/mpc85xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc85xx.h -------------------------------------------------------------------------------- /IPQ/include/mpc86xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc86xx.h -------------------------------------------------------------------------------- /IPQ/include/mpc8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mpc8xx.h -------------------------------------------------------------------------------- /IPQ/include/mvmfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/mvmfp.h -------------------------------------------------------------------------------- /IPQ/include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/nand.h -------------------------------------------------------------------------------- /IPQ/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/net.h -------------------------------------------------------------------------------- /IPQ/include/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/netdev.h -------------------------------------------------------------------------------- /IPQ/include/nios2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/nios2.h -------------------------------------------------------------------------------- /IPQ/include/nomadik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/nomadik.h -------------------------------------------------------------------------------- /IPQ/include/ns16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ns16550.h -------------------------------------------------------------------------------- /IPQ/include/ns87308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ns87308.h -------------------------------------------------------------------------------- /IPQ/include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/os.h -------------------------------------------------------------------------------- /IPQ/include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/part.h -------------------------------------------------------------------------------- /IPQ/include/pc_keyb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pc_keyb.h -------------------------------------------------------------------------------- /IPQ/include/pca953x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pca953x.h -------------------------------------------------------------------------------- /IPQ/include/pca9564.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pca9564.h -------------------------------------------------------------------------------- /IPQ/include/pca9698.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pca9698.h -------------------------------------------------------------------------------- /IPQ/include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pci.h -------------------------------------------------------------------------------- /IPQ/include/pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pci_ids.h -------------------------------------------------------------------------------- /IPQ/include/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pcmcia.h -------------------------------------------------------------------------------- /IPQ/include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/phy.h -------------------------------------------------------------------------------- /IPQ/include/pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pmic.h -------------------------------------------------------------------------------- /IPQ/include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/post.h -------------------------------------------------------------------------------- /IPQ/include/ps2mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/ps2mult.h -------------------------------------------------------------------------------- /IPQ/include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/pwm.h -------------------------------------------------------------------------------- /IPQ/include/radeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/radeon.h -------------------------------------------------------------------------------- /IPQ/include/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/replace.h -------------------------------------------------------------------------------- /IPQ/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/rtc.h -------------------------------------------------------------------------------- /IPQ/include/s6e63d6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/s6e63d6.h -------------------------------------------------------------------------------- /IPQ/include/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/sata.h -------------------------------------------------------------------------------- /IPQ/include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/scsi.h -------------------------------------------------------------------------------- /IPQ/include/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/sdhci.h -------------------------------------------------------------------------------- /IPQ/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/search.h -------------------------------------------------------------------------------- /IPQ/include/sed156x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/sed156x.h -------------------------------------------------------------------------------- /IPQ/include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/serial.h -------------------------------------------------------------------------------- /IPQ/include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/sha256.h -------------------------------------------------------------------------------- /IPQ/include/sja1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/sja1000.h -------------------------------------------------------------------------------- /IPQ/include/sm501.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/sm501.h -------------------------------------------------------------------------------- /IPQ/include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/spd.h -------------------------------------------------------------------------------- /IPQ/include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/spi.h -------------------------------------------------------------------------------- /IPQ/include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/tpm.h -------------------------------------------------------------------------------- /IPQ/include/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/tsec.h -------------------------------------------------------------------------------- /IPQ/include/tsi108.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/tsi108.h -------------------------------------------------------------------------------- /IPQ/include/tsi148.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/tsi148.h -------------------------------------------------------------------------------- /IPQ/include/twl4030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/twl4030.h -------------------------------------------------------------------------------- /IPQ/include/twl6030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/twl6030.h -------------------------------------------------------------------------------- /IPQ/include/twl6035.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/twl6035.h -------------------------------------------------------------------------------- /IPQ/include/tws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/tws.h -------------------------------------------------------------------------------- /IPQ/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/usb.h -------------------------------------------------------------------------------- /IPQ/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/version.h -------------------------------------------------------------------------------- /IPQ/include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/video.h -------------------------------------------------------------------------------- /IPQ/include/virtex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/virtex2.h -------------------------------------------------------------------------------- /IPQ/include/vsc7385.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/vsc7385.h -------------------------------------------------------------------------------- /IPQ/include/vxworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/vxworks.h -------------------------------------------------------------------------------- /IPQ/include/xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/include/xilinx.h -------------------------------------------------------------------------------- /IPQ/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/Makefile -------------------------------------------------------------------------------- /IPQ/lib/addr_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/addr_map.c -------------------------------------------------------------------------------- /IPQ/lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/aes.c -------------------------------------------------------------------------------- /IPQ/lib/asm-offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/asm-offsets.c -------------------------------------------------------------------------------- /IPQ/lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/bch.c -------------------------------------------------------------------------------- /IPQ/lib/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/bzlib.c -------------------------------------------------------------------------------- /IPQ/lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/circbuf.c -------------------------------------------------------------------------------- /IPQ/lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/crc16.c -------------------------------------------------------------------------------- /IPQ/lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/crc32.c -------------------------------------------------------------------------------- /IPQ/lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/crc7.c -------------------------------------------------------------------------------- /IPQ/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/ctype.c -------------------------------------------------------------------------------- /IPQ/lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/div64.c -------------------------------------------------------------------------------- /IPQ/lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /IPQ/lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/fdtdec.c -------------------------------------------------------------------------------- /IPQ/lib/fdtdec_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/fdtdec_test.c -------------------------------------------------------------------------------- /IPQ/lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/gunzip.c -------------------------------------------------------------------------------- /IPQ/lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/hashtable.c -------------------------------------------------------------------------------- /IPQ/lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/ldiv.c -------------------------------------------------------------------------------- /IPQ/lib/libfdt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/libfdt/README -------------------------------------------------------------------------------- /IPQ/lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /IPQ/lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/lmb.c -------------------------------------------------------------------------------- /IPQ/lib/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/lzma/Makefile -------------------------------------------------------------------------------- /IPQ/lib/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/lzma/Types.h -------------------------------------------------------------------------------- /IPQ/lib/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/lzma/lzma.txt -------------------------------------------------------------------------------- /IPQ/lib/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/lzo/Makefile -------------------------------------------------------------------------------- /IPQ/lib/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/lzo/lzodefs.h -------------------------------------------------------------------------------- /IPQ/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/md5.c -------------------------------------------------------------------------------- /IPQ/lib/net_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/net_utils.c -------------------------------------------------------------------------------- /IPQ/lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/qsort.c -------------------------------------------------------------------------------- /IPQ/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/rand.c -------------------------------------------------------------------------------- /IPQ/lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/rbtree.c -------------------------------------------------------------------------------- /IPQ/lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/sha1.c -------------------------------------------------------------------------------- /IPQ/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/sha256.c -------------------------------------------------------------------------------- /IPQ/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/string.c -------------------------------------------------------------------------------- /IPQ/lib/strmhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/strmhz.c -------------------------------------------------------------------------------- /IPQ/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/time.c -------------------------------------------------------------------------------- /IPQ/lib/tizen/tizen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/tizen/tizen.c -------------------------------------------------------------------------------- /IPQ/lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/uuid.c -------------------------------------------------------------------------------- /IPQ/lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/vsprintf.c -------------------------------------------------------------------------------- /IPQ/lib/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/zlib/Makefile -------------------------------------------------------------------------------- /IPQ/lib/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/zlib/zlib.c -------------------------------------------------------------------------------- /IPQ/lib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/zlib/zlib.h -------------------------------------------------------------------------------- /IPQ/lib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/zlib/zutil.c -------------------------------------------------------------------------------- /IPQ/lib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib/zlib/zutil.h -------------------------------------------------------------------------------- /IPQ/lib_rtos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib_rtos/Makefile -------------------------------------------------------------------------------- /IPQ/lib_rtos/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib_rtos/glue.c -------------------------------------------------------------------------------- /IPQ/lib_rtos/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/lib_rtos/glue.h -------------------------------------------------------------------------------- /IPQ/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/mkconfig -------------------------------------------------------------------------------- /IPQ/nand_spl/board/karo/tx25/config.mk: -------------------------------------------------------------------------------- 1 | PAD_TO := 2048 2 | -------------------------------------------------------------------------------- /IPQ/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/Makefile -------------------------------------------------------------------------------- /IPQ/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/arp.c -------------------------------------------------------------------------------- /IPQ/net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/arp.h -------------------------------------------------------------------------------- /IPQ/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/bootp.c -------------------------------------------------------------------------------- /IPQ/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/bootp.h -------------------------------------------------------------------------------- /IPQ/net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/cdp.c -------------------------------------------------------------------------------- /IPQ/net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/cdp.h -------------------------------------------------------------------------------- /IPQ/net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/dns.c -------------------------------------------------------------------------------- /IPQ/net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/dns.h -------------------------------------------------------------------------------- /IPQ/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/eth.c -------------------------------------------------------------------------------- /IPQ/net/link_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/link_local.c -------------------------------------------------------------------------------- /IPQ/net/link_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/link_local.h -------------------------------------------------------------------------------- /IPQ/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/net.c -------------------------------------------------------------------------------- /IPQ/net/net_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/net_rand.h -------------------------------------------------------------------------------- /IPQ/net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/nfs.c -------------------------------------------------------------------------------- /IPQ/net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/nfs.h -------------------------------------------------------------------------------- /IPQ/net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/ping.c -------------------------------------------------------------------------------- /IPQ/net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/ping.h -------------------------------------------------------------------------------- /IPQ/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/rarp.c -------------------------------------------------------------------------------- /IPQ/net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/rarp.h -------------------------------------------------------------------------------- /IPQ/net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/sntp.c -------------------------------------------------------------------------------- /IPQ/net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/sntp.h -------------------------------------------------------------------------------- /IPQ/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/tftp.c -------------------------------------------------------------------------------- /IPQ/net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/net/tftp.h -------------------------------------------------------------------------------- /IPQ/post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/post/Makefile -------------------------------------------------------------------------------- /IPQ/post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/post/post.c -------------------------------------------------------------------------------- /IPQ/post/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/post/rules.mk -------------------------------------------------------------------------------- /IPQ/post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/post/tests.c -------------------------------------------------------------------------------- /IPQ/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/rules.mk -------------------------------------------------------------------------------- /IPQ/snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /IPQ/spl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/spl/Makefile -------------------------------------------------------------------------------- /IPQ/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/test/Makefile -------------------------------------------------------------------------------- /IPQ/test/munit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/test/munit.c -------------------------------------------------------------------------------- /IPQ/test/munit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/test/munit.h -------------------------------------------------------------------------------- /IPQ/test/nand_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/test/nand_ut.c -------------------------------------------------------------------------------- /IPQ/tools/4G-AC53U: -------------------------------------------------------------------------------- 1 | RT-AC58U -------------------------------------------------------------------------------- /IPQ/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/Makefile -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U/sbl1_nor.mbn: -------------------------------------------------------------------------------- 1 | ../QCA_MBN/sbl1_nor.mbn -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U/tz.mbn: -------------------------------------------------------------------------------- 1 | ../QCA_MBN/tz.mbn -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U256MB/boardconfig: -------------------------------------------------------------------------------- 1 | ../RT-AC58U/boardconfig -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U256MB/nor-flash.conf: -------------------------------------------------------------------------------- 1 | ../RT-AC58U/nor-flash.conf -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U256MB/norplusnand-flash.conf: -------------------------------------------------------------------------------- 1 | ../RT-AC58U/norplusnand-flash.conf -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U256MB/sbl1_nor.mbn: -------------------------------------------------------------------------------- 1 | ../QCA_MBN/sbl1_nor.mbn -------------------------------------------------------------------------------- /IPQ/tools/RT-AC58U256MB/tz.mbn: -------------------------------------------------------------------------------- 1 | ../QCA_MBN/tz.mbn -------------------------------------------------------------------------------- /IPQ/tools/RT-AC82U/sbl1_nand.mbn: -------------------------------------------------------------------------------- 1 | ../QCA_MBN/sbl1_nand.mbn -------------------------------------------------------------------------------- /IPQ/tools/RT-AC82U/tz.mbn: -------------------------------------------------------------------------------- 1 | ../QCA_MBN/tz.mbn -------------------------------------------------------------------------------- /IPQ/tools/addmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/addmg.c -------------------------------------------------------------------------------- /IPQ/tools/aisimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/aisimage.c -------------------------------------------------------------------------------- /IPQ/tools/aisimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/aisimage.h -------------------------------------------------------------------------------- /IPQ/tools/bddb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/bddb/README -------------------------------------------------------------------------------- /IPQ/tools/bmp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/bmp_logo.c -------------------------------------------------------------------------------- /IPQ/tools/dumpimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/dumpimage.c -------------------------------------------------------------------------------- /IPQ/tools/dumpimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/dumpimage.h -------------------------------------------------------------------------------- /IPQ/tools/env/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/env/README -------------------------------------------------------------------------------- /IPQ/tools/envcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/envcrc.c -------------------------------------------------------------------------------- /IPQ/tools/fdt_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/fdt_host.h -------------------------------------------------------------------------------- /IPQ/tools/fit_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/fit_image.c -------------------------------------------------------------------------------- /IPQ/tools/gdb/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/gdb/error.c -------------------------------------------------------------------------------- /IPQ/tools/gdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/gdb/error.h -------------------------------------------------------------------------------- /IPQ/tools/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/getline.c -------------------------------------------------------------------------------- /IPQ/tools/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/getline.h -------------------------------------------------------------------------------- /IPQ/tools/imagetool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/imagetool.c -------------------------------------------------------------------------------- /IPQ/tools/imagetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/imagetool.h -------------------------------------------------------------------------------- /IPQ/tools/img2brec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/img2brec.sh -------------------------------------------------------------------------------- /IPQ/tools/img2srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/img2srec.c -------------------------------------------------------------------------------- /IPQ/tools/imls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/imls/README -------------------------------------------------------------------------------- /IPQ/tools/imls/imls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/imls/imls.c -------------------------------------------------------------------------------- /IPQ/tools/imximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/imximage.c -------------------------------------------------------------------------------- /IPQ/tools/imximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/imximage.h -------------------------------------------------------------------------------- /IPQ/tools/jtagconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/jtagconsole -------------------------------------------------------------------------------- /IPQ/tools/kwbimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/kwbimage.c -------------------------------------------------------------------------------- /IPQ/tools/kwbimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/kwbimage.h -------------------------------------------------------------------------------- /IPQ/tools/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/kwboot.c -------------------------------------------------------------------------------- /IPQ/tools/mkheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/mkheader.py -------------------------------------------------------------------------------- /IPQ/tools/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/mkimage.c -------------------------------------------------------------------------------- /IPQ/tools/mkimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/mkimage.h -------------------------------------------------------------------------------- /IPQ/tools/mxsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/mxsboot.c -------------------------------------------------------------------------------- /IPQ/tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/ncb.c -------------------------------------------------------------------------------- /IPQ/tools/netconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/netconsole -------------------------------------------------------------------------------- /IPQ/tools/omapimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/omapimage.c -------------------------------------------------------------------------------- /IPQ/tools/omapimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/omapimage.h -------------------------------------------------------------------------------- /IPQ/tools/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/pack.py -------------------------------------------------------------------------------- /IPQ/tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /IPQ/tools/ublimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/ublimage.c -------------------------------------------------------------------------------- /IPQ/tools/ublimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/ublimage.h -------------------------------------------------------------------------------- /IPQ/tools/ubsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/IPQ/tools/ubsha1.c -------------------------------------------------------------------------------- /IPQ/tools/updater/dummy.c: -------------------------------------------------------------------------------- 1 | volatile int __dummy = 0xDEADBEEF; 2 | -------------------------------------------------------------------------------- /MTK-RT/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/CHANGELOG -------------------------------------------------------------------------------- /MTK-RT/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/COPYING -------------------------------------------------------------------------------- /MTK-RT/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/CREDITS -------------------------------------------------------------------------------- /MTK-RT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/LICENSE -------------------------------------------------------------------------------- /MTK-RT/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/MAINTAINERS -------------------------------------------------------------------------------- /MTK-RT/MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/MAKEALL -------------------------------------------------------------------------------- /MTK-RT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/Makefile -------------------------------------------------------------------------------- /MTK-RT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/README -------------------------------------------------------------------------------- /MTK-RT/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/autoconf.h -------------------------------------------------------------------------------- /MTK-RT/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/buildall.sh -------------------------------------------------------------------------------- /MTK-RT/common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/common/flash.c -------------------------------------------------------------------------------- /MTK-RT/common/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/common/lists.c -------------------------------------------------------------------------------- /MTK-RT/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/common/main.c -------------------------------------------------------------------------------- /MTK-RT/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/common/usb.c -------------------------------------------------------------------------------- /MTK-RT/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/config.in -------------------------------------------------------------------------------- /MTK-RT/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/config.mk -------------------------------------------------------------------------------- /MTK-RT/disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/disk/Makefile -------------------------------------------------------------------------------- /MTK-RT/disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/disk/part.c -------------------------------------------------------------------------------- /MTK-RT/drivers/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/drivers/ehci.h -------------------------------------------------------------------------------- /MTK-RT/drivers/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/drivers/ohci.h -------------------------------------------------------------------------------- /MTK-RT/drivers/vtss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/drivers/vtss.h -------------------------------------------------------------------------------- /MTK-RT/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/fs/Makefile -------------------------------------------------------------------------------- /MTK-RT/fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/fs/fat/fat.c -------------------------------------------------------------------------------- /MTK-RT/fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/fs/fat/file.c -------------------------------------------------------------------------------- /MTK-RT/httpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/Makefile -------------------------------------------------------------------------------- /MTK-RT/httpd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/fs.c -------------------------------------------------------------------------------- /MTK-RT/httpd/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/fs.h -------------------------------------------------------------------------------- /MTK-RT/httpd/fsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/fsdata.h -------------------------------------------------------------------------------- /MTK-RT/httpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/httpd.c -------------------------------------------------------------------------------- /MTK-RT/httpd/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/httpd.h -------------------------------------------------------------------------------- /MTK-RT/httpd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/main.c -------------------------------------------------------------------------------- /MTK-RT/httpd/tapdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/tapdev.c -------------------------------------------------------------------------------- /MTK-RT/httpd/tapdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/tapdev.h -------------------------------------------------------------------------------- /MTK-RT/httpd/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/uip.c -------------------------------------------------------------------------------- /MTK-RT/httpd/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/uip.h -------------------------------------------------------------------------------- /MTK-RT/httpd/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/httpd/uipopt.h -------------------------------------------------------------------------------- /MTK-RT/include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/ata.h -------------------------------------------------------------------------------- /MTK-RT/include/config.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK-RT/include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/fat.h -------------------------------------------------------------------------------- /MTK-RT/include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/fpga.h -------------------------------------------------------------------------------- /MTK-RT/include/hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/hush.h -------------------------------------------------------------------------------- /MTK-RT/include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/i2c.h -------------------------------------------------------------------------------- /MTK-RT/include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/ide.h -------------------------------------------------------------------------------- /MTK-RT/include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/kgdb.h -------------------------------------------------------------------------------- /MTK-RT/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/net.h -------------------------------------------------------------------------------- /MTK-RT/include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/part.h -------------------------------------------------------------------------------- /MTK-RT/include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/post.h -------------------------------------------------------------------------------- /MTK-RT/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/rtc.h -------------------------------------------------------------------------------- /MTK-RT/include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/scsi.h -------------------------------------------------------------------------------- /MTK-RT/include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/spi.h -------------------------------------------------------------------------------- /MTK-RT/include/unxz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/unxz.h -------------------------------------------------------------------------------- /MTK-RT/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/usb.h -------------------------------------------------------------------------------- /MTK-RT/include/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/xz.h -------------------------------------------------------------------------------- /MTK-RT/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/include/zlib.h -------------------------------------------------------------------------------- /MTK-RT/mips_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/mips_config.mk -------------------------------------------------------------------------------- /MTK-RT/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/mkconfig -------------------------------------------------------------------------------- /MTK-RT/mt7621_ddr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/mt7621_ddr.sh -------------------------------------------------------------------------------- /MTK-RT/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/Makefile -------------------------------------------------------------------------------- /MTK-RT/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/bootp.c -------------------------------------------------------------------------------- /MTK-RT/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/bootp.h -------------------------------------------------------------------------------- /MTK-RT/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/eth.c -------------------------------------------------------------------------------- /MTK-RT/net/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/httpd.c -------------------------------------------------------------------------------- /MTK-RT/net/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/httpd.h -------------------------------------------------------------------------------- /MTK-RT/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/net.c -------------------------------------------------------------------------------- /MTK-RT/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/rarp.c -------------------------------------------------------------------------------- /MTK-RT/net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/rarp.h -------------------------------------------------------------------------------- /MTK-RT/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/tftp.c -------------------------------------------------------------------------------- /MTK-RT/net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/net/tftp.h -------------------------------------------------------------------------------- /MTK-RT/rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/rtc/Makefile -------------------------------------------------------------------------------- /MTK-RT/rtc/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/rtc/date.c -------------------------------------------------------------------------------- /MTK-RT/stage1/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/stage1/boot.c -------------------------------------------------------------------------------- /MTK-RT/stage1/gdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/stage1/gdma.c -------------------------------------------------------------------------------- /MTK-RT/stage1/nandc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/stage1/nandc.c -------------------------------------------------------------------------------- /MTK-RT/stage1/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/stage1/start.S -------------------------------------------------------------------------------- /MTK-RT/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/tools/Makefile -------------------------------------------------------------------------------- /MTK-RT/tools/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/tools/crc.c -------------------------------------------------------------------------------- /MTK-RT/tools/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/tools/crc32.c -------------------------------------------------------------------------------- /MTK-RT/tools/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/tools/image.h -------------------------------------------------------------------------------- /MTK-RT/uboot_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK-RT/uboot_README -------------------------------------------------------------------------------- /MTK.ARM/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/CREDITS -------------------------------------------------------------------------------- /MTK.ARM/Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/Kbuild -------------------------------------------------------------------------------- /MTK.ARM/MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/MAKEALL -------------------------------------------------------------------------------- /MTK.ARM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/Makefile -------------------------------------------------------------------------------- /MTK.ARM/README.ORI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/README.ORI -------------------------------------------------------------------------------- /MTK.ARM/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/api/Makefile -------------------------------------------------------------------------------- /MTK.ARM/api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/api/README -------------------------------------------------------------------------------- /MTK.ARM/api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/api/api.c -------------------------------------------------------------------------------- /MTK.ARM/api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/api/api_net.c -------------------------------------------------------------------------------- /MTK.ARM/arch/arc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/arm/include/asm/arch-mt7623/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MTK.ARM/arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/avr32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/avr32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf527/BF523_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF522_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf527/BF523_def.h: -------------------------------------------------------------------------------- 1 | #include "BF522_def.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf527/BF525_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF524_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf527/BF525_def.h: -------------------------------------------------------------------------------- 1 | #include "BF524_def.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf527/BF527_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF526_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf527/BF527_def.h: -------------------------------------------------------------------------------- 1 | #include "BF526_def.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf533/BF532_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF531_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf533/BF533_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF532_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf537/BF537_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF536_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf537/BF537_def.h: -------------------------------------------------------------------------------- 1 | #include "BF536_def.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf538/BF539_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF538_cdef.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/mach-bf538/BF539_def.h: -------------------------------------------------------------------------------- 1 | #include "BF538_def.h" 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/blackfin/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/m68k/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/microblaze/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/mips/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/nds32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/nios2/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/openrisc/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/openrisc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/openrisc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /MTK.ARM/arch/powerpc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/sandbox/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/sh/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/sparc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/x86/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /MTK.ARM/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/autoconf.h -------------------------------------------------------------------------------- /MTK.ARM/board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /MTK.ARM/board/sandpoint/dinkdl: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | tr -d "\r" <$1 >/dev/tts/1 3 | -------------------------------------------------------------------------------- /MTK.ARM/boards.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/boards.cfg -------------------------------------------------------------------------------- /MTK.ARM/common/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/edid.c -------------------------------------------------------------------------------- /MTK.ARM/common/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/hash.c -------------------------------------------------------------------------------- /MTK.ARM/common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/hush.c -------------------------------------------------------------------------------- /MTK.ARM/common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/kgdb.c -------------------------------------------------------------------------------- /MTK.ARM/common/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/lcd.c -------------------------------------------------------------------------------- /MTK.ARM/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/main.c -------------------------------------------------------------------------------- /MTK.ARM/common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/menu.c -------------------------------------------------------------------------------- /MTK.ARM/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/common/usb.c -------------------------------------------------------------------------------- /MTK.ARM/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/config.in -------------------------------------------------------------------------------- /MTK.ARM/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/config.mk -------------------------------------------------------------------------------- /MTK.ARM/dd_uboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/dd_uboot.sh -------------------------------------------------------------------------------- /MTK.ARM/disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/disk/Makefile -------------------------------------------------------------------------------- /MTK.ARM/disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/disk/part.c -------------------------------------------------------------------------------- /MTK.ARM/doc/README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/doc/README.sh -------------------------------------------------------------------------------- /MTK.ARM/doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/doc/kwboot.1 -------------------------------------------------------------------------------- /MTK.ARM/doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/doc/mkimage.1 -------------------------------------------------------------------------------- /MTK.ARM/drivers/flash/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mtk_nor.o 2 | 3 | -------------------------------------------------------------------------------- /MTK.ARM/drivers/misc/mediatek/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_MTK_MTD_NAND) += nand/ 2 | -------------------------------------------------------------------------------- /MTK.ARM/drivers/misc/mediatek/nand/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += $(CONFIG_SYS_SOC)/ 2 | 3 | -------------------------------------------------------------------------------- /MTK.ARM/dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/dts/Makefile -------------------------------------------------------------------------------- /MTK.ARM/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/Makefile -------------------------------------------------------------------------------- /MTK.ARM/fs/ext4/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/ext4/dev.c -------------------------------------------------------------------------------- /MTK.ARM/fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/fat/fat.c -------------------------------------------------------------------------------- /MTK.ARM/fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/fat/file.c -------------------------------------------------------------------------------- /MTK.ARM/fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/fs.c -------------------------------------------------------------------------------- /MTK.ARM/fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/ubifs/io.c -------------------------------------------------------------------------------- /MTK.ARM/fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/ubifs/sb.c -------------------------------------------------------------------------------- /MTK.ARM/fs/zfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/zfs/dev.c -------------------------------------------------------------------------------- /MTK.ARM/fs/zfs/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/fs/zfs/zfs.c -------------------------------------------------------------------------------- /MTK.ARM/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/aes.h -------------------------------------------------------------------------------- /MTK.ARM/include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/ata.h -------------------------------------------------------------------------------- /MTK.ARM/include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/bcd.h -------------------------------------------------------------------------------- /MTK.ARM/include/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/clk.h -------------------------------------------------------------------------------- /MTK.ARM/include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/crc.h -------------------------------------------------------------------------------- /MTK.ARM/include/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/dfu.h -------------------------------------------------------------------------------- /MTK.ARM/include/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/dm.h -------------------------------------------------------------------------------- /MTK.ARM/include/dtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/dtt.h -------------------------------------------------------------------------------- /MTK.ARM/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/elf.h -------------------------------------------------------------------------------- /MTK.ARM/include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/fat.h -------------------------------------------------------------------------------- /MTK.ARM/include/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/fdc.h -------------------------------------------------------------------------------- /MTK.ARM/include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/fdt.h -------------------------------------------------------------------------------- /MTK.ARM/include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/fis.h -------------------------------------------------------------------------------- /MTK.ARM/include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/fs.h -------------------------------------------------------------------------------- /MTK.ARM/include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/i2c.h -------------------------------------------------------------------------------- /MTK.ARM/include/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/i2s.h -------------------------------------------------------------------------------- /MTK.ARM/include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/ide.h -------------------------------------------------------------------------------- /MTK.ARM/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/lcd.h -------------------------------------------------------------------------------- /MTK.ARM/include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/lmb.h -------------------------------------------------------------------------------- /MTK.ARM/include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/mmc.h -------------------------------------------------------------------------------- /MTK.ARM/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/net.h -------------------------------------------------------------------------------- /MTK.ARM/include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/os.h -------------------------------------------------------------------------------- /MTK.ARM/include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/pci.h -------------------------------------------------------------------------------- /MTK.ARM/include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/phy.h -------------------------------------------------------------------------------- /MTK.ARM/include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/pwm.h -------------------------------------------------------------------------------- /MTK.ARM/include/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/rsa.h -------------------------------------------------------------------------------- /MTK.ARM/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/rtc.h -------------------------------------------------------------------------------- /MTK.ARM/include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/spd.h -------------------------------------------------------------------------------- /MTK.ARM/include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/spi.h -------------------------------------------------------------------------------- /MTK.ARM/include/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/spl.h -------------------------------------------------------------------------------- /MTK.ARM/include/tis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/tis.h -------------------------------------------------------------------------------- /MTK.ARM/include/tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/tmu.h -------------------------------------------------------------------------------- /MTK.ARM/include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/tpm.h -------------------------------------------------------------------------------- /MTK.ARM/include/tws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/tws.h -------------------------------------------------------------------------------- /MTK.ARM/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/include/usb.h -------------------------------------------------------------------------------- /MTK.ARM/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/Makefile -------------------------------------------------------------------------------- /MTK.ARM/lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/aes.c -------------------------------------------------------------------------------- /MTK.ARM/lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/bch.c -------------------------------------------------------------------------------- /MTK.ARM/lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/bitrev.c -------------------------------------------------------------------------------- /MTK.ARM/lib/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/bzlib.c -------------------------------------------------------------------------------- /MTK.ARM/lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/circbuf.c -------------------------------------------------------------------------------- /MTK.ARM/lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/crc16.c -------------------------------------------------------------------------------- /MTK.ARM/lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/crc32.c -------------------------------------------------------------------------------- /MTK.ARM/lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/crc7.c -------------------------------------------------------------------------------- /MTK.ARM/lib/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/crc8.c -------------------------------------------------------------------------------- /MTK.ARM/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/ctype.c -------------------------------------------------------------------------------- /MTK.ARM/lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/div64.c -------------------------------------------------------------------------------- /MTK.ARM/lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /MTK.ARM/lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/fdtdec.c -------------------------------------------------------------------------------- /MTK.ARM/lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/gunzip.c -------------------------------------------------------------------------------- /MTK.ARM/lib/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/gzip.c -------------------------------------------------------------------------------- /MTK.ARM/lib/hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/hang.c -------------------------------------------------------------------------------- /MTK.ARM/lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/ldiv.c -------------------------------------------------------------------------------- /MTK.ARM/lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/lmb.c -------------------------------------------------------------------------------- /MTK.ARM/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/md5.c -------------------------------------------------------------------------------- /MTK.ARM/lib/physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/physmem.c -------------------------------------------------------------------------------- /MTK.ARM/lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/qsort.c -------------------------------------------------------------------------------- /MTK.ARM/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/rand.c -------------------------------------------------------------------------------- /MTK.ARM/lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/rbtree.c -------------------------------------------------------------------------------- /MTK.ARM/lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/sha1.c -------------------------------------------------------------------------------- /MTK.ARM/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/sha256.c -------------------------------------------------------------------------------- /MTK.ARM/lib/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/slre.c -------------------------------------------------------------------------------- /MTK.ARM/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/string.c -------------------------------------------------------------------------------- /MTK.ARM/lib/strmhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/strmhz.c -------------------------------------------------------------------------------- /MTK.ARM/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/time.c -------------------------------------------------------------------------------- /MTK.ARM/lib/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/tpm.c -------------------------------------------------------------------------------- /MTK.ARM/lib/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/trace.c -------------------------------------------------------------------------------- /MTK.ARM/lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/lib/uuid.c -------------------------------------------------------------------------------- /MTK.ARM/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/mkconfig -------------------------------------------------------------------------------- /MTK.ARM/mkimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/mkimage -------------------------------------------------------------------------------- /MTK.ARM/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/Makefile -------------------------------------------------------------------------------- /MTK.ARM/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/arp.c -------------------------------------------------------------------------------- /MTK.ARM/net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/arp.h -------------------------------------------------------------------------------- /MTK.ARM/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/bootp.c -------------------------------------------------------------------------------- /MTK.ARM/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/bootp.h -------------------------------------------------------------------------------- /MTK.ARM/net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/cdp.c -------------------------------------------------------------------------------- /MTK.ARM/net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/cdp.h -------------------------------------------------------------------------------- /MTK.ARM/net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/dns.c -------------------------------------------------------------------------------- /MTK.ARM/net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/dns.h -------------------------------------------------------------------------------- /MTK.ARM/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/eth.c -------------------------------------------------------------------------------- /MTK.ARM/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/net.c -------------------------------------------------------------------------------- /MTK.ARM/net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/nfs.c -------------------------------------------------------------------------------- /MTK.ARM/net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/nfs.h -------------------------------------------------------------------------------- /MTK.ARM/net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/ping.c -------------------------------------------------------------------------------- /MTK.ARM/net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/ping.h -------------------------------------------------------------------------------- /MTK.ARM/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/rarp.c -------------------------------------------------------------------------------- /MTK.ARM/net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/rarp.h -------------------------------------------------------------------------------- /MTK.ARM/net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/sntp.c -------------------------------------------------------------------------------- /MTK.ARM/net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/sntp.h -------------------------------------------------------------------------------- /MTK.ARM/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/tftp.c -------------------------------------------------------------------------------- /MTK.ARM/net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/net/tftp.h -------------------------------------------------------------------------------- /MTK.ARM/post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/post/Makefile -------------------------------------------------------------------------------- /MTK.ARM/post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/post/post.c -------------------------------------------------------------------------------- /MTK.ARM/post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/post/tests.c -------------------------------------------------------------------------------- /MTK.ARM/snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /MTK.ARM/spl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/spl/Makefile -------------------------------------------------------------------------------- /MTK.ARM/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/test/Makefile -------------------------------------------------------------------------------- /MTK.ARM/test/dm/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/test/dm/ut.c -------------------------------------------------------------------------------- /MTK.ARM/tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | buildman.py -------------------------------------------------------------------------------- /MTK.ARM/tools/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/env/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/env/ctype.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/ctype.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/env/env_attr.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_attr.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_flags.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/env_embedded.c: -------------------------------------------------------------------------------- 1 | #include "../common/env_embedded.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/tools/fdt.c -------------------------------------------------------------------------------- /MTK.ARM/tools/image-fit.c: -------------------------------------------------------------------------------- 1 | #include "../common/image-fit.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/image-sig.c: -------------------------------------------------------------------------------- 1 | #include "../common/image-sig.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/image.c: -------------------------------------------------------------------------------- 1 | #include "../common/image.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/md5.c: -------------------------------------------------------------------------------- 1 | #include "../lib/md5.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/tools/ncb.c -------------------------------------------------------------------------------- /MTK.ARM/tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /MTK.ARM/tools/sha1.c: -------------------------------------------------------------------------------- 1 | #include "../lib/sha1.c" 2 | -------------------------------------------------------------------------------- /MTK.ARM/uip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/uip/Makefile -------------------------------------------------------------------------------- /MTK.ARM/uip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/uip/README -------------------------------------------------------------------------------- /MTK.ARM/uip/uip/lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/uip/uip/lc.h -------------------------------------------------------------------------------- /MTK.ARM/uip/uip/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/uip/uip/pt.h -------------------------------------------------------------------------------- /MTK.ARM/uip/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/uip/uip/uip.c -------------------------------------------------------------------------------- /MTK.ARM/uip/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/MTK.ARM/uip/uip/uip.h -------------------------------------------------------------------------------- /QCA-AR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/LICENSE -------------------------------------------------------------------------------- /QCA-AR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/Makefile -------------------------------------------------------------------------------- /QCA-AR/bin/README: -------------------------------------------------------------------------------- 1 | Here you will find binary images after code compilation. 2 | -------------------------------------------------------------------------------- /QCA-AR/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/build-test.sh -------------------------------------------------------------------------------- /QCA-AR/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/build.sh -------------------------------------------------------------------------------- /QCA-AR/u-boot/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/u-boot/COPYING -------------------------------------------------------------------------------- /QCA-AR/u-boot/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/u-boot/CREDITS -------------------------------------------------------------------------------- /QCA-AR/u-boot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/QCA-AR/u-boot/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohengbo/rt-uboot/HEAD/README.md --------------------------------------------------------------------------------