在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → u-boot-2017.11-iTop-4412

u-boot-2017.11-iTop-4412

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:17.05M
  • 下载次数:4
  • 浏览次数:335
  • 发布时间:2020-11-02
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.gz
  • 所需积分:2
 

实例介绍

【实例简介】
iTop-4412 精英版关于u-boot-2017.11的移植 增加支持设备树的特性,
【实例截图】
【核心代码】
u-boot-2017.11-itop4412-2.0.0.tar
└── u-boot-2017.11-itop4412-2.0.0
├── u-boot
│   ├── build.sh
│   ├── clean.sh
│   ├── E4412_N.bl1.bin
│   ├── env.bin
│   ├── mkuboot.sh
│   └── tools
│   ├── create.c
│   ├── E4412_N.bl1.bin
│   ├── mkbl2.c
│   └── test
└── u-boot-2017.11
├── api
│   ├── api.c
│   ├── api_display.c
│   ├── api_net.c
│   ├── api_platform-arm.c
│   ├── api_platform-mips.c
│   ├── api_platform-powerpc.c
│   ├── api_private.h
│   ├── api_storage.c
│   ├── Kconfig
│   ├── Makefile
│   └── README
├── arch
│   ├── arc
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── arcv1
│   │   │   │   ├── ivt.S
│   │   │   │   └── Makefile
│   │   │   ├── arcv2
│   │   │   │   ├── ivt.S
│   │   │   │   └── Makefile
│   │   │   └── u-boot.lds
│   │   ├── dts
│   │   │   ├── abilis_tb100.dts
│   │   │   ├── axc001.dtsi
│   │   │   ├── axc003.dtsi
│   │   │   ├── axs101.dts
│   │   │   ├── axs103.dts
│   │   │   ├── axs10x_mb.dtsi
│   │   │   ├── hsdk.dts
│   │   │   ├── Makefile
│   │   │   ├── nsim.dts
│   │   │   └── skeleton.dtsi
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── arcregs.h
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── config.h
│   │   │   ├── global_data.h
│   │   │   ├── io.h
│   │   │   ├── linkage.h
│   │   │   ├── posix_types.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── sections.h
│   │   │   ├── string.h
│   │   │   ├── types.h
│   │   │   ├── u-boot-arc.h
│   │   │   ├── u-boot.h
│   │   │   └── unaligned.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── bootm.c
│   │   │   ├── cache.c
│   │   │   ├── cpu.c
│   │   │   ├── init_helpers.c
│   │   │   ├── interrupts.c
│   │   │   ├── ints_low.S
│   │   │   ├── libgcc2.c
│   │   │   ├── libgcc2.h
│   │   │   ├── Makefile
│   │   │   ├── memcmp.S
│   │   │   ├── memcpy-700.S
│   │   │   ├── memset.S
│   │   │   ├── _millicodethunk.S
│   │   │   ├── relocate.c
│   │   │   ├── reset.c
│   │   │   ├── start.S
│   │   │   ├── strchr-700.S
│   │   │   ├── strcmp.S
│   │   │   ├── strcpy-700.S
│   │   │   └── strlen.S
│   │   └── Makefile
│   ├── arm
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── arm11
│   │   │   │   ├── cpu.c
│   │   │   │   └── Makefile
│   │   │   ├── arm1136
│   │   │   │   ├── Makefile
│   │   │   │   ├── mx31
│   │   │   │   │   ├── devices.c
│   │   │   │   │   ├── generic.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── relocate.S
│   │   │   │   │   └── timer.c
│   │   │   │   ├── mx35
│   │   │   │   │   ├── generic.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── mx35_sdram.c
│   │   │   │   │   ├── relocate.S
│   │   │   │   │   └── timer.c
│   │   │   │   ├── start.S
│   │   │   │   └── u-boot-spl.lds
│   │   │   ├── arm1176
│   │   │   │   ├── Makefile
│   │   │   │   └── start.S
│   │   │   ├── arm720t
│   │   │   │   ├── cpu.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   └── start.S
│   │   │   ├── arm920t
│   │   │   │   ├── cpu.c
│   │   │   │   ├── ep93xx
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── led.c
│   │   │   │   │   ├── lowlevel_init.S
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── speed.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── imx
│   │   │   │   │   ├── generic.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── speed.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── Makefile
│   │   │   │   └── start.S
│   │   │   ├── arm926ejs
│   │   │   │   ├── armada100
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── dram.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── timer.c
│   │   │   │   ├── cache.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── lpc32xx
│   │   │   │   │   ├── clk.c
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── devices.c
│   │   │   │   │   ├── dram.c
│   │   │   │   │   ├── lowlevel_init.S
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── timer.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── mx25
│   │   │   │   │   ├── generic.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── relocate.S
│   │   │   │   │   ├── reset.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── mx27
│   │   │   │   │   ├── generic.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── relocate.S
│   │   │   │   │   ├── reset.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── mxs
│   │   │   │   │   ├── clock.c
│   │   │   │   │   ├── iomux.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── mxs.c
│   │   │   │   │   ├── mxsimage.mx23.cfg
│   │   │   │   │   ├── mxsimage.mx28.cfg
│   │   │   │   │   ├── mxsimage-signed.cfg
│   │   │   │   │   ├── mxs_init.h
│   │   │   │   │   ├── 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
│   │   │   │   ├── orion5x
│   │   │   │   │   └── u-boot-spl.lds
│   │   │   │   ├── spear
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── reset.c
│   │   │   │   │   ├── spear600.c
│   │   │   │   │   ├── spl.c
│   │   │   │   │   ├── spr600_mt47h128m8_3_266_cl5_async.c
│   │   │   │   │   ├── spr600_mt47h32m16_333_cl5_psync.c
│   │   │   │   │   ├── spr600_mt47h32m16_37e_166_cl4_sync.c
│   │   │   │   │   ├── spr600_mt47h64m16_3_333_cl5_psync.c
│   │   │   │   │   ├── spr_lowlevel_init.S
│   │   │   │   │   ├── spr_misc.c
│   │   │   │   │   ├── start.S
│   │   │   │   │   ├── timer.c
│   │   │   │   │   └── u-boot-spl.lds
│   │   │   │   └── start.S
│   │   │   ├── arm946es
│   │   │   │   ├── cpu.c
│   │   │   │   ├── Makefile
│   │   │   │   └── start.S
│   │   │   ├── armv7
│   │   │   │   ├── arch_timer.c
│   │   │   │   ├── bcm235xx
│   │   │   │   │   ├── clk-bcm235xx.c
│   │   │   │   │   ├── clk-bsc.c
│   │   │   │   │   ├── clk-core.c
│   │   │   │   │   ├── clk-core.h
│   │   │   │   │   ├── clk-eth.c
│   │   │   │   │   ├── clk-sdio.c
│   │   │   │   │   ├── clk-usb-otg.c
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bcm281xx
│   │   │   │   │   ├── clk-bcm281xx.c
│   │   │   │   │   ├── clk-bsc.c
│   │   │   │   │   ├── clk-core.c
│   │   │   │   │   ├── clk-core.h
│   │   │   │   │   ├── clk-eth.c
│   │   │   │   │   ├── clk-sdio.c
│   │   │   │   │   ├── clk-usb-otg.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── reset.c
│   │   │   │   ├── bcmcygnus
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── reset.c
│   │   │   │   ├── bcmnsp
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── reset.c
│   │   │   │   ├── cache_v7_asm.S
│   │   │   │   ├── cache_v7.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cp15.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── iproc-common
│   │   │   │   │   ├── armpll.c
│   │   │   │   │   ├── hwinit-common.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── timer.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── kona-common
│   │   │   │   │   ├── clk-stubs.c
│   │   │   │   │   ├── hwinit-common.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── reset.S
│   │   │   │   │   └── s_init.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── ls102xa
│   │   │   │   │   ├── clock.c
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── fdt.c
│   │   │   │   │   ├── fsl_epu.c
│   │   │   │   │   ├── fsl_epu.h
│   │   │   │   │   ├── fsl_ls1_serdes.c
│   │   │   │   │   ├── fsl_ls1_serdes.h
│   │   │   │   │   ├── Kconfig
│   │   │   │   │   ├── ls102xa_psci.c
│   │   │   │   │   ├── ls102xa_sata.c
│   │   │   │   │   ├── ls102xa_serdes.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── psci.S
│   │   │   │   │   ├── soc.c
│   │   │   │   │   ├── spl.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── nonsec_virt.S
│   │   │   │   ├── psci-common.c
│   │   │   │   ├── psci.S
│   │   │   │   ├── s5p-common
│   │   │   │   │   ├── cpu_info.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── pwm.c
│   │   │   │   │   ├── sromc.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── smccc-call.S
│   │   │   │   ├── start.S
│   │   │   │   ├── stv0991
│   │   │   │   │   ├── clock.c
│   │   │   │   │   ├── lowlevel.S
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── pinmux.c
│   │   │   │   │   ├── reset.c
│   │   │   │   │   └── timer.c
│   │   │   │   ├── sunxi
│   │   │   │   │   ├── config.mk
│   │   │   │   │   ├── fel_utils.S
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── psci.c
│   │   │   │   │   ├── start.c
│   │   │   │   │   ├── timer.c
│   │   │   │   │   ├── tzpc.c
│   │   │   │   │   └── u-boot-spl.lds
│   │   │   │   ├── syslib.c
│   │   │   │   ├── vf610
│   │   │   │   │   ├── generic.c
│   │   │   │   │   ├── Kconfig
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── timer.c
│   │   │   │   ├── virt-dt.c
│   │   │   │   └── virt-v7.c
│   │   │   ├── armv7m
│   │   │   │   ├── cache.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── mpu.c
│   │   │   │   ├── start.S
│   │   │   │   └── systick-timer.c
│   │   │   ├── armv8
│   │   │   │   ├── cache.S
│   │   │   │   ├── cache_v8.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu-dt.c
│   │   │   │   ├── exceptions.S
│   │   │   │   ├── fsl-layerscape
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── doc
│   │   │   │   │   │   ├── README.falcon
│   │   │   │   │   │   ├── README.lsch2
│   │   │   │   │   │   ├── README.lsch3
│   │   │   │   │   │   ├── README.qspi
│   │   │   │   │   │   └── README.soc
│   │   │   │   │   ├── fdt.c
│   │   │   │   │   ├── fsl_lsch2_serdes.c
│   │   │   │   │   ├── fsl_lsch2_speed.c
│   │   │   │   │   ├── fsl_lsch3_serdes.c
│   │   │   │   │   ├── fsl_lsch3_speed.c
│   │   │   │   │   ├── Kconfig
│   │   │   │   │   ├── lowlevel.S
│   │   │   │   │   ├── ls1012a_serdes.c
│   │   │   │   │   ├── ls1043a_psci.S
│   │   │   │   │   ├── ls1043a_serdes.c
│   │   │   │   │   ├── ls1046a_serdes.c
│   │   │   │   │   ├── ls1088a_serdes.c
│   │   │   │   │   ├── ls2080a_serdes.c
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── mp.c
│   │   │   │   │   ├── ppa.c
│   │   │   │   │   ├── soc.c
│   │   │   │   │   └── spl.c
│   │   │   │   ├── fwcall.c
│   │   │   │   ├── generic_timer.c
│   │   │   │   ├── hisilicon
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── pinmux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── psci.S
│   │   │   │   ├── s32v234
│   │   │   │   │   ├── cpu.c
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── generic.c
│   │   │   │   │   └── Makefile
│   │   │   │   ├── sec_firmware_asm.S
│   │   │   │   ├── sec_firmware.c
│   │   │   │   ├── smccc-call.S
│   │   │   │   ├── spin_table.c
│   │   │   │   ├── spin_table_v8.S
│   │   │   │   ├── start.S
│   │   │   │   ├── tlb.S
│   │   │   │   ├── transition.S
│   │   │   │   ├── u-boot.lds
│   │   │   │   ├── u-boot-spl.lds
│   │   │   │   └── zynqmp
│   │   │   │   ├── clk.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── handoff.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── mp.c
│   │   │   │   ├── slcr.c
│   │   │   │   └── spl.c
│   │   │   ├── Makefile
│   │   │   ├── pxa
│   │   │   │   ├── cache.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpuinfo.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pxa2xx.c
│   │   │   │   ├── relocate.S
│   │   │   │   ├── start.S
│   │   │   │   ├── timer.c
│   │   │   │   └── usb.c
│   │   │   ├── sa1100
│   │   │   │   ├── cpu.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── start.S
│   │   │   │   └── timer.c
│   │   │   ├── u-boot.lds
│   │   │   └── u-boot-spl.lds
│   │   ├── dts
│   │   │   ├── am335x-boneblack.dts
│   │   │   ├── am335x-bone-common.dtsi
│   │   │   ├── am335x-bone.dts
│   │   │   ├── am335x-bonegreen.dts
│   │   │   ├── am335x-draco.dts
│   │   │   ├── am335x-draco.dtsi
│   │   │   ├── am335x-evm.dts
│   │   │   ├── am335x-evmsk.dts
│   │   │   ├── am335x-evm-u-boot.dtsi
│   │   │   ├── am335x-icev2.dts
│   │   │   ├── am335x-pxm2.dtsi
│   │   │   ├── am335x-pxm50.dts
│   │   │   ├── am335x-rut.dts
│   │   │   ├── am33xx-clocks.dtsi
│   │   │   ├── am33xx.dtsi
│   │   │   ├── am3517.dtsi
│   │   │   ├── am3517-evm.dts
│   │   │   ├── am3517-evm-u-boot.dtsi
│   │   │   ├── am3517-u-boot.dtsi
│   │   │   ├── am35xx-clocks.dtsi
│   │   │   ├── am4372.dtsi
│   │   │   ├── am437x-gp-evm.dts
│   │   │   ├── am437x-gp-evm-u-boot.dtsi
│   │   │   ├── am437x-idk-evm.dts
│   │   │   ├── am437x-sk-evm.dts
│   │   │   ├── am43x-epos-evm.dts
│   │   │   ├── am43xx-clocks.dtsi
│   │   │   ├── am571x-idk.dts
│   │   │   ├── am572x-idk.dts
│   │   │   ├── am57xx-beagle-x15-common.dtsi
│   │   │   ├── am57xx-beagle-x15.dts
│   │   │   ├── am57xx-beagle-x15-revb1.dts
│   │   │   ├── am57xx-beagle-x15-revc.dts
│   │   │   ├── am57xx-cl-som-am57x.dts
│   │   │   ├── am57xx-commercial-grade.dtsi
│   │   │   ├── am57xx-idk-common.dtsi
│   │   │   ├── am57xx-industrial-grade.dtsi
│   │   │   ├── am57xx-sbc-am57x.dts
│   │   │   ├── armada-370-xp.dtsi
│   │   │   ├── armada-371x.dtsi
│   │   │   ├── armada-3720-db.dts
│   │   │   ├── armada-3720-espressobin.dts
│   │   │   ├── armada-372x.dtsi
│   │   │   ├── armada-375-db.dts
│   │   │   ├── armada-375.dtsi
│   │   │   ├── armada-37xx.dtsi
│   │   │   ├── armada-380.dtsi
│   │   │   ├── armada-385-amc.dts
│   │   │   ├── armada-385.dtsi
│   │   │   ├── armada-385-turris-omnia.dts
│   │   │   ├── armada-385-turris-omnia-u-boot.dtsi
│   │   │   ├── armada-388-clearfog.dts
│   │   │   ├── armada-388.dtsi
│   │   │   ├── armada-388-gp.dts
│   │   │   ├── armada-38x-controlcenterdc.dts
│   │   │   ├── armada-38x.dtsi
│   │   │   ├── armada-7040-db.dts
│   │   │   ├── armada-7040-db-nand.dts
│   │   │   ├── armada-7040.dtsi
│   │   │   ├── armada-8020.dtsi
│   │   │   ├── armada-8040-db.dts
│   │   │   ├── armada-8040.dtsi
│   │   │   ├── armada-8040-mcbin.dts
│   │   │   ├── armada-ap806.dtsi
│   │   │   ├── armada-ap806-quad.dtsi
│   │   │   ├── armada-cp110-master.dtsi
│   │   │   ├── armada-cp110-slave.dtsi
│   │   │   ├── armada-xp.dtsi
│   │   │   ├── armada-xp-gp.dts
│   │   │   ├── armada-xp-maxbcm.dts
│   │   │   ├── armada-xp-mv78230.dtsi
│   │   │   ├── armada-xp-mv78260.dtsi
│   │   │   ├── armada-xp-mv78460.dtsi
│   │   │   ├── armada-xp-synology-ds414.dts
│   │   │   ├── armada-xp-theadorable.dts
│   │   │   ├── armv7-m.dtsi
│   │   │   ├── ast2500.dtsi
│   │   │   ├── ast2500-evb.dts
│   │   │   ├── ast2500-u-boot.dtsi
│   │   │   ├── at91sam9260.dtsi
│   │   │   ├── at91sam9260ek.dts
│   │   │   ├── at91sam9260-smartweb.dts
│   │   │   ├── at91sam9261.dtsi
│   │   │   ├── at91sam9261ek.dts
│   │   │   ├── at91sam9263.dtsi
│   │   │   ├── at91sam9263ek.dts
│   │   │   ├── at91sam9g15.dtsi
│   │   │   ├── at91sam9g15ek.dts
│   │   │   ├── at91sam9g20.dtsi
│   │   │   ├── at91sam9g20ek_2mmc.dts
│   │   │   ├── at91sam9g20ek_common.dtsi
│   │   │   ├── at91sam9g20ek.dts
│   │   │   ├── at91sam9g20-taurus.dts
│   │   │   ├── at91sam9g25.dtsi
│   │   │   ├── at91sam9g25ek.dts
│   │   │   ├── at91sam9g35.dtsi
│   │   │   ├── at91sam9g35ek.dts
│   │   │   ├── at91sam9g45-corvus.dts
│   │   │   ├── at91sam9g45.dtsi
│   │   │   ├── at91sam9g45-gurnard.dts
│   │   │   ├── at91sam9m10g45ek.dts
│   │   │   ├── at91sam9n12.dtsi
│   │   │   ├── at91sam9n12ek.dts
│   │   │   ├── at91sam9rl.dtsi
│   │   │   ├── at91sam9rlek.dts
│   │   │   ├── at91sam9x25.dtsi
│   │   │   ├── at91sam9x25ek.dts
│   │   │   ├── at91sam9x35.dtsi
│   │   │   ├── at91sam9x35ek.dts
│   │   │   ├── at91sam9x5_can.dtsi
│   │   │   ├── at91sam9x5cm.dtsi
│   │   │   ├── at91sam9x5dm.dtsi
│   │   │   ├── at91sam9x5.dtsi
│   │   │   ├── at91sam9x5ek.dtsi
│   │   │   ├── at91sam9x5_isi.dtsi
│   │   │   ├── at91sam9x5_lcd.dtsi
│   │   │   ├── at91sam9x5_macb0.dtsi
│   │   │   ├── at91sam9x5_macb1.dtsi
│   │   │   ├── at91sam9x5_usart3.dtsi
│   │   │   ├── at91sam9xe.dtsi
│   │   │   ├── at91-sama5d27_som1_ek.dts
│   │   │   ├── at91-sama5d2_xplained.dts
│   │   │   ├── at91-sama5d3_xplained.dts
│   │   │   ├── at91-sama5d4ek.dts
│   │   │   ├── at91-sama5d4_xplained.dts
│   │   │   ├── axp152.dtsi
│   │   │   ├── axp209.dtsi
│   │   │   ├── axp223.dtsi
│   │   │   ├── axp22x.dtsi
│   │   │   ├── axp809.dtsi
│   │   │   ├── bcm2835.dtsi
│   │   │   ├── bcm2835-rpi-a.dts
│   │   │   ├── bcm2835-rpi-a-plus.dts
│   │   │   ├── bcm2835-rpi-b.dts
│   │   │   ├── bcm2835-rpi-b-plus.dts
│   │   │   ├── bcm2835-rpi-b-rev2.dts
│   │   │   ├── bcm2835-rpi.dtsi
│   │   │   ├── bcm2836.dtsi
│   │   │   ├── bcm2836-rpi-2-b.dts
│   │   │   ├── bcm2837.dtsi
│   │   │   ├── bcm2837-rpi-3-b.dts
│   │   │   ├── bcm283x.dtsi
│   │   │   ├── bcm283x-rpi-smsc9512.dtsi
│   │   │   ├── bcm283x-rpi-smsc9514.dtsi
│   │   │   ├── bcm283x-rpi-usb-host.dtsi
│   │   │   ├── bcm283x-uboot.dtsi
│   │   │   ├── bk4r1.dts
│   │   │   ├── cros-ec-keyboard.dtsi
│   │   │   ├── cros-ec-sbs.dtsi
│   │   │   ├── da850.dtsi
│   │   │   ├── da850-evm.dts
│   │   │   ├── da850-evm-u-boot.dtsi
│   │   │   ├── dm8168-evm.dts
│   │   │   ├── dm816x-clocks.dtsi
│   │   │   ├── dm816x.dtsi
│   │   │   ├── dra71-evm.dts
│   │   │   ├── dra71-evm-u-boot.dtsi
│   │   │   ├── dra72-evm-common.dtsi
│   │   │   ├── dra72-evm.dts
│   │   │   ├── dra72-evm-revc.dts
│   │   │   ├── dra72-evm-revc-u-boot.dtsi
│   │   │   ├── dra72-evm-tps65917.dtsi
│   │   │   ├── dra72x.dtsi
│   │   │   ├── dra72x-mmc-iodelay.dtsi
│   │   │   ├── dra74x.dtsi
│   │   │   ├── dra74x-mmc-iodelay.dtsi
│   │   │   ├── dra76-evm.dts
│   │   │   ├── dra76-evm-u-boot.dtsi
│   │   │   ├── dra76x.dtsi
│   │   │   ├── dra7-dspeve-thermal.dtsi
│   │   │   ├── dra7.dtsi
│   │   │   ├── dra7-evm-common.dtsi
│   │   │   ├── dra7-evm.dts
│   │   │   ├── dra7-evm-u-boot.dtsi
│   │   │   ├── dra7-iva-thermal.dtsi
│   │   │   ├── dra7xx-clocks.dtsi
│   │   │   ├── dragonboard410c.dts
│   │   │   ├── dragonboard410c-uboot.dtsi
│   │   │   ├── ethernut5.dts
│   │   │   ├── exynos4210.dtsi
│   │   │   ├── exynos4210-origen.dts
│   │   │   ├── exynos4210-pinctrl.dtsi
│   │   │   ├── exynos4210-pinctrl-uboot.dtsi
│   │   │   ├── exynos4210-smdkv310.dts
│   │   │   ├── exynos4210-trats.dts
│   │   │   ├── exynos4210-universal_c210.dts
│   │   │   ├── exynos4412.dtsi
│   │   │   ├── exynos4412-itop4412.dts
│   │   │   ├── exynos4412-odroid.dts
│   │   │   ├── exynos4412-trats2.dts
│   │   │   ├── exynos4.dtsi
│   │   │   ├── exynos4x12.dtsi
│   │   │   ├── exynos4x12-pinctrl.dtsi
│   │   │   ├── exynos4x12-pinctrl-uboot.dtsi
│   │   │   ├── exynos5250-arndale.dts
│   │   │   ├── exynos5250.dtsi
│   │   │   ├── exynos5250-pinctrl.dtsi
│   │   │   ├── exynos5250-pinctrl-uboot.dtsi
│   │   │   ├── exynos5250-smdk5250.dts
│   │   │   ├── exynos5250-snow.dts
│   │   │   ├── exynos5250-spring.dts
│   │   │   ├── exynos5420-peach-pit.dts
│   │   │   ├── exynos5420-smdk5420.dts
│   │   │   ├── exynos5422-odroidxu3.dts
│   │   │   ├── exynos54xx.dtsi
│   │   │   ├── exynos54xx-pinctrl.dtsi
│   │   │   ├── exynos54xx-pinctrl-uboot.dtsi
│   │   │   ├── exynos5800-peach-pi.dts
│   │   │   ├── exynos5.dtsi
│   │   │   ├── exynos7420.dtsi
│   │   │   ├── exynos7420-espresso7420.dts
│   │   │   ├── fsl-ls1012a.dtsi
│   │   │   ├── fsl-ls1012a-frdm.dts
│   │   │   ├── fsl-ls1012a-frdm.dtsi
│   │   │   ├── fsl-ls1012a-qds.dts
│   │   │   ├── fsl-ls1012a-qds.dtsi
│   │   │   ├── fsl-ls1012a-rdb.dts
│   │   │   ├── fsl-ls1012a-rdb.dtsi
│   │   │   ├── fsl-ls1043a.dtsi
│   │   │   ├── fsl-ls1043a-qds.dtsi
│   │   │   ├── fsl-ls1043a-qds-duart.dts
│   │   │   ├── fsl-ls1043a-qds-lpuart.dts
│   │   │   ├── fsl-ls1043a-rdb.dts
│   │   │   ├── fsl-ls1046a.dtsi
│   │   │   ├── fsl-ls1046a-qds.dtsi
│   │   │   ├── fsl-ls1046a-qds-duart.dts
│   │   │   ├── fsl-ls1046a-qds-lpuart.dts
│   │   │   ├── fsl-ls1046a-rdb.dts
│   │   │   ├── fsl-ls1088a.dtsi
│   │   │   ├── fsl-ls1088a-qds.dts
│   │   │   ├── fsl-ls1088a-rdb.dts
│   │   │   ├── fsl-ls2080a.dtsi
│   │   │   ├── fsl-ls2080a-qds.dts
│   │   │   ├── fsl-ls2080a-rdb.dts
│   │   │   ├── fsl-ls2081a-rdb.dts
│   │   │   ├── fsl-ls2088a-rdb-qspi.dts
│   │   │   ├── hi3798cv200.dtsi
│   │   │   ├── hi3798cv200-poplar.dts
│   │   │   ├── hi3798cv200-u-boot.dtsi
│   │   │   ├── hi6220.dtsi
│   │   │   ├── hi6220-hikey.dts
│   │   │   ├── imx53-cx9020.dts
│   │   │   ├── imx53.dtsi
│   │   │   ├── imx53-pinfunc.h
│   │   │   ├── imx6dl.dtsi
│   │   │   ├── imx6dl-icore.dts
│   │   │   ├── imx6dl-icore-rqs.dts
│   │   │   ├── imx6dl-pinfunc.h
│   │   │   ├── imx6q-cm-fx6.dts
│   │   │   ├── imx6q-display5.dts
│   │   │   ├── imx6qdl.dtsi
│   │   │   ├── imx6qdl-icore.dtsi
│   │   │   ├── imx6qdl-icore-rqs.dtsi
│   │   │   ├── imx6qdl-logicpd.dtsi
│   │   │   ├── imx6q.dtsi
│   │   │   ├── imx6q-icore.dts
│   │   │   ├── imx6q-icore-rqs.dts
│   │   │   ├── imx6q-logicpd.dts
│   │   │   ├── imx6q-pinfunc.h
│   │   │   ├── imx6sl.dtsi
│   │   │   ├── imx6sl-evk.dts
│   │   │   ├── imx6sll.dtsi
│   │   │   ├── imx6sll-evk.dts
│   │   │   ├── imx6sll-pinfunc.h
│   │   │   ├── imx6sl-pinfunc.h
│   │   │   ├── imx6sx.dtsi
│   │   │   ├── imx6sx-pinfunc.h
│   │   │   ├── imx6sx-sabreauto.dts
│   │   │   ├── imx6ul.dtsi
│   │   │   ├── imx6ul-geam-kit.dts
│   │   │   ├── imx6ul-isiot.dtsi
│   │   │   ├── imx6ul-isiot-emmc.dts
│   │   │   ├── imx6ul-isiot-mmc.dts
│   │   │   ├── imx6ul-isiot-nand.dts
│   │   │   ├── imx6ull-14x14-evk.dts
│   │   │   ├── imx6ull.dtsi
│   │   │   ├── imx6ull-pinfunc.h
│   │   │   ├── imx6ull-pinfunc-snvs.h
│   │   │   ├── imx6ul-opos6uldev.dts
│   │   │   ├── imx6ul-opos6ul.dtsi
│   │   │   ├── imx6ul-pinfunc.h
│   │   │   ├── imx7-colibri.dts
│   │   │   ├── imx7d.dtsi
│   │   │   ├── imx7d-pinfunc.h
│   │   │   ├── imx7d-sdb.dts
│   │   │   ├── imx7s.dtsi
│   │   │   ├── imx7ulp.dtsi
│   │   │   ├── imx7ulp-evk.dts
│   │   │   ├── imx7ulp-pinfunc.h
│   │   │   ├── imx7ulp-uboot.dtsi
│   │   │   ├── keystone-clocks.dtsi
│   │   │   ├── keystone.dtsi
│   │   │   ├── keystone-k2e-clocks.dtsi
│   │   │   ├── keystone-k2e.dtsi
│   │   │   ├── keystone-k2e-evm.dts
│   │   │   ├── keystone-k2e-evm-u-boot.dtsi
│   │   │   ├── keystone-k2e-netcp.dtsi
│   │   │   ├── keystone-k2g.dtsi
│   │   │   ├── keystone-k2g-evm.dts
│   │   │   ├── keystone-k2g-evm-u-boot.dtsi
│   │   │   ├── keystone-k2g-generic.dts
│   │   │   ├── keystone-k2g-generic-u-boot.dtsi
│   │   │   ├── keystone-k2g-ice.dts
│   │   │   ├── keystone-k2g-ice-u-boot.dtsi
│   │   │   ├── keystone-k2g-netcp.dtsi
│   │   │   ├── keystone-k2hk-clocks.dtsi
│   │   │   ├── keystone-k2hk.dtsi
│   │   │   ├── keystone-k2hk-evm.dts
│   │   │   ├── keystone-k2hk-evm-u-boot.dtsi
│   │   │   ├── keystone-k2hk-netcp.dtsi
│   │   │   ├── keystone-k2l-clocks.dtsi
│   │   │   ├── keystone-k2l.dtsi
│   │   │   ├── keystone-k2l-evm.dts
│   │   │   ├── keystone-k2l-netcp.dtsi
│   │   │   ├── logicpd-som-lv-37xx-devkit.dts
│   │   │   ├── logicpd-som-lv.dtsi
│   │   │   ├── logicpd-torpedo-37xx-devkit.dts
│   │   │   ├── logicpd-torpedo-37xx-devkit-u-boot.dtsi
│   │   │   ├── logicpd-torpedo-som.dtsi
│   │   │   ├── ls1021a.dtsi
│   │   │   ├── ls1021a-iot.dtsi
│   │   │   ├── ls1021a-iot-duart.dts
│   │   │   ├── ls1021a-qds.dtsi
│   │   │   ├── ls1021a-qds-duart.dts
│   │   │   ├── ls1021a-qds-lpuart.dts
│   │   │   ├── ls1021a-twr.dtsi
│   │   │   ├── ls1021a-twr-duart.dts
│   │   │   ├── ls1021a-twr-lpuart.dts
│   │   │   ├── Makefile
│   │   │   ├── meson-gxbb.dtsi
│   │   │   ├── meson-gxbb-odroidc2.dts
│   │   │   ├── meson-gx.dtsi
│   │   │   ├── omap34xx-omap36xx-clocks.dtsi
│   │   │   ├── omap36xx-am35xx-omap3430es2plus-clocks.dtsi
│   │   │   ├── omap36xx-clocks.dtsi
│   │   │   ├── omap36xx.dtsi
│   │   │   ├── omap36xx-omap3430es2plus-clocks.dtsi
│   │   │   ├── omap36xx-u-boot.dtsi
│   │   │   ├── omap3-cpu-thermal.dtsi
│   │   │   ├── omap3.dtsi
│   │   │   ├── omap3-u-boot.dtsi
│   │   │   ├── omap3xxx-clocks.dtsi
│   │   │   ├── omap4-cpu-thermal.dtsi
│   │   │   ├── omap5-core-thermal.dtsi
│   │   │   ├── omap5-gpu-thermal.dtsi
│   │   │   ├── omap5-u-boot.dtsi
│   │   │   ├── omap-gpmc-smsc9221.dtsi
│   │   │   ├── pcm052.dts
│   │   │   ├── r8a7795.dtsi
│   │   │   ├── r8a7795-h3ulcb.dts
│   │   │   ├── r8a7795-salvator-x.dts
│   │   │   ├── r8a7796.dtsi
│   │   │   ├── r8a7796-m3ulcb.dts
│   │   │   ├── r8a7796-salvator-x.dts
│   │   │   ├── rk3036.dtsi
│   │   │   ├── rk3036-sdk.dts
│   │   │   ├── rk3036-sdk-u-boot.dtsi
│   │   │   ├── rk3188.dtsi
│   │   │   ├── rk3188-radxarock.dts
│   │   │   ├── rk3229-evb.dts
│   │   │   ├── rk322x.dtsi
│   │   │   ├── rk3288.dtsi
│   │   │   ├── rk3288-evb.dts
│   │   │   ├── rk3288-evb.dtsi
│   │   │   ├── rk3288-fennec.dts
│   │   │   ├── rk3288-fennec.dtsi
│   │   │   ├── rk3288-firefly.dts
│   │   │   ├── rk3288-firefly.dtsi
│   │   │   ├── rk3288-miqi.dts
│   │   │   ├── rk3288-miqi.dtsi
│   │   │   ├── rk3288-phycore-rdk.dts
│   │   │   ├── rk3288-phycore-som.dtsi
│   │   │   ├── rk3288-popmetal.dts
│   │   │   ├── rk3288-popmetal.dtsi
│   │   │   ├── rk3288-rock2-som.dtsi
│   │   │   ├── rk3288-rock2-square.dts
│   │   │   ├── rk3288-thermal.dtsi
│   │   │   ├── rk3288-tinker.dts
│   │   │   ├── rk3288-tinker.dtsi
│   │   │   ├── rk3288-veyron-chromebook.dtsi
│   │   │   ├── rk3288-veyron.dtsi
│   │   │   ├── rk3288-veyron-jerry.dts
│   │   │   ├── rk3288-veyron-mickey.dts
│   │   │   ├── rk3288-veyron-minnie.dts
│   │   │   ├── rk3288-vyasa.dts
│   │   │   ├── rk3328.dtsi
│   │   │   ├── rk3328-evb.dts
│   │   │   ├── rk3368.dtsi
│   │   │   ├── rk3368-geekbox.dts
│   │   │   ├── rk3368-geekbox-u-boot.dtsi
│   │   │   ├── rk3368-lion.dts
│   │   │   ├── rk3368-lion-u-boot.dtsi
│   │   │   ├── rk3368-px5-evb.dts
│   │   │   ├── rk3368-px5-evb-u-boot.dtsi
│   │   │   ├── rk3368-sheep.dts
│   │   │   ├── rk3368-sheep-u-boot.dtsi
│   │   │   ├── rk3399.dtsi
│   │   │   ├── rk3399-evb.dts
│   │   │   ├── rk3399-firefly.dts
│   │   │   ├── rk3399-puma-ddr1333.dts
│   │   │   ├── rk3399-puma-ddr1600.dts
│   │   │   ├── rk3399-puma-ddr1866.dts
│   │   │   ├── rk3399-puma.dtsi
│   │   │   ├── rk3399-sdram-ddr3-1333.dtsi
│   │   │   ├── rk3399-sdram-ddr3-1600.dtsi
│   │   │   ├── rk3399-sdram-ddr3-1866.dtsi
│   │   │   ├── rk3399-sdram-lpddr3-4GB-1600.dtsi
│   │   │   ├── rk3xxx.dtsi
│   │   │   ├── rv1108.dtsi
│   │   │   ├── rv1108-evb.dts
│   │   │   ├── s5pc100-pinctrl.dtsi
│   │   │   ├── s5pc110-pinctrl.dtsi
│   │   │   ├── s5pc1xx-goni.dts
│   │   │   ├── s5pc1xx-smdkc100.dts
│   │   │   ├── salvator-common.dtsi
│   │   │   ├── salvator-x.dtsi
│   │   │   ├── sama5d27_som1.dtsi
│   │   │   ├── sama5d2.dtsi
│   │   │   ├── sama5d2-pinfunc.h
│   │   │   ├── sama5d31.dtsi
│   │   │   ├── sama5d31ek.dts
│   │   │   ├── sama5d33.dtsi
│   │   │   ├── sama5d33ek.dts
│   │   │   ├── sama5d34.dtsi
│   │   │   ├── sama5d34ek.dts
│   │   │   ├── sama5d35.dtsi
│   │   │   ├── sama5d35ek.dts
│   │   │   ├── sama5d36.dtsi
│   │   │   ├── sama5d36ek_cmp.dts
│   │   │   ├── sama5d36ek.dts
│   │   │   ├── sama5d3_can.dtsi
│   │   │   ├── sama5d3.dtsi
│   │   │   ├── sama5d3_emac.dtsi
│   │   │   ├── sama5d3_gmac.dtsi
│   │   │   ├── sama5d3_lcd.dtsi
│   │   │   ├── sama5d3_mci2.dtsi
│   │   │   ├── sama5d3_tcb1.dtsi
│   │   │   ├── sama5d3_uart.dtsi
│   │   │   ├── sama5d3xcm_cmp.dtsi
│   │   │   ├── sama5d3xcm.dtsi
│   │   │   ├── sama5d3xdm.dtsi
│   │   │   ├── sama5d3xmb_cmp.dtsi
│   │   │   ├── sama5d3xmb.dtsi
│   │   │   ├── sama5d4.dtsi
│   │   │   ├── skeleton64.dtsi
│   │   │   ├── skeleton.dtsi
│   │   │   ├── socfpga_arria10.dtsi
│   │   │   ├── socfpga_arria10_socdk_sdmmc.dts
│   │   │   ├── socfpga_arria10_socdk_sdmmc_handoff.dtsi
│   │   │   ├── socfpga_arria5.dtsi
│   │   │   ├── socfpga_arria5_socdk.dts
│   │   │   ├── socfpga_cyclone5_de0_nano_soc.dts
│   │   │   ├── socfpga_cyclone5_de10_nano.dts
│   │   │   ├── socfpga_cyclone5_de1_soc.dts
│   │   │   ├── socfpga_cyclone5.dtsi
│   │   │   ├── socfpga_cyclone5_is1.dts
│   │   │   ├── socfpga_cyclone5_mcvevk.dts
│   │   │   ├── socfpga_cyclone5_socdk.dts
│   │   │   ├── socfpga_cyclone5_sockit.dts
│   │   │   ├── socfpga_cyclone5_socrates.dts
│   │   │   ├── socfpga_cyclone5_sr1500.dts
│   │   │   ├── socfpga_cyclone5_vining_fpga.dts
│   │   │   ├── socfpga.dtsi
│   │   │   ├── stih407-clock.dtsi
│   │   │   ├── stih407-family.dtsi
│   │   │   ├── stih407-pinctrl.dtsi
│   │   │   ├── stih410-b2260.dts
│   │   │   ├── stih410-clock.dtsi
│   │   │   ├── stih410.dtsi
│   │   │   ├── stih410-pinctrl.dtsi
│   │   │   ├── stm32f746-disco.dts
│   │   │   ├── stm32f746.dtsi
│   │   │   ├── stm32f769-disco.dts
│   │   │   ├── stm32f7-u-boot.dtsi
│   │   │   ├── stm32h743.dtsi
│   │   │   ├── stm32h743i-disco.dts
│   │   │   ├── stm32h743i-eval.dts
│   │   │   ├── stm32h743-pinctrl.dtsi
│   │   │   ├── stm32h7-u-boot.dtsi
│   │   │   ├── st-pincfg.h
│   │   │   ├── stv0991.dts
│   │   │   ├── sun4i-a10-a1000.dts
│   │   │   ├── sun4i-a10-ba10-tvbox.dts
│   │   │   ├── sun4i-a10-chuwi-v7-cw0825.dts
│   │   │   ├── sun4i-a10-cubieboard.dts
│   │   │   ├── sun4i-a10-dserve-dsrv9703c.dts
│   │   │   ├── sun4i-a10.dtsi
│   │   │   ├── sun4i-a10-gemei-g9.dts
│   │   │   ├── sun4i-a10-hackberry.dts
│   │   │   ├── sun4i-a10-hyundai-a7hd.dts
│   │   │   ├── sun4i-a10-inet1.dts
│   │   │   ├── sun4i-a10-inet-3f.dts
│   │   │   ├── sun4i-a10-inet-3w.dts
│   │   │   ├── sun4i-a10-inet97fv2.dts
│   │   │   ├── sun4i-a10-inet9f-rev03.dts
│   │   │   ├── sun4i-a10-itead-iteaduino-plus.dts
│   │   │   ├── sun4i-a10-jesurun-q5.dts
│   │   │   ├── sun4i-a10-marsboard.dts
│   │   │   ├── sun4i-a10-mini-xplus.dts
│   │   │   ├── sun4i-a10-mk802.dts
│   │   │   ├── sun4i-a10-mk802ii.dts
│   │   │   ├── sun4i-a10-olinuxino-lime.dts
│   │   │   ├── sun4i-a10-pcduino2.dts
│   │   │   ├── sun4i-a10-pcduino.dts
│   │   │   ├── sun4i-a10-pov-protab2-ips9.dts
│   │   │   ├── sun50i-a64-bananapi-m64.dts
│   │   │   ├── sun50i-a64.dtsi
│   │   │   ├── sun50i-a64-nanopi-a64.dts
│   │   │   ├── sun50i-a64-olinuxino.dts
│   │   │   ├── sun50i-a64-orangepi-win.dts
│   │   │   ├── sun50i-a64-pine64.dts
│   │   │   ├── sun50i-a64-pine64-plus.dts
│   │   │   ├── sun50i-a64-pine64-plus-u-boot.dtsi
│   │   │   ├── sun50i-h5.dtsi
│   │   │   ├── sun50i-h5-nanopi-neo2.dts
│   │   │   ├── sun50i-h5-orangepi-pc2.dts
│   │   │   ├── sun50i-h5-orangepi-prime.dts
│   │   │   ├── sun50i-h5-orangepi-zero-plus2.dts
│   │   │   ├── sun5i-a10s-auxtek-t003.dts
│   │   │   ├── sun5i-a10s-auxtek-t004.dts
│   │   │   ├── sun5i-a10s.dtsi
│   │   │   ├── sun5i-a10s-mk802.dts
│   │   │   ├── sun5i-a10s-olinuxino-micro.dts
│   │   │   ├── sun5i-a10s-r7-tv-dongle.dts
│   │   │   ├── sun5i-a10s-wobo-i5.dts
│   │   │   ├── sun5i-a13-ampe-a76.dts
│   │   │   ├── sun5i-a13-difrnce-dit4350.dts
│   │   │   ├── sun5i-a13.dtsi
│   │   │   ├── sun5i-a13-empire-electronix-d709.dts
│   │   │   ├── sun5i-a13-empire-electronix-m712.dts
│   │   │   ├── sun5i-a13-hsg-h702.dts
│   │   │   ├── sun5i-a13-inet-86vs.dts
│   │   │   ├── sun5i-a13-inet-98v-rev2.dts
│   │   │   ├── sun5i-a13-olinuxino.dts
│   │   │   ├── sun5i-a13-olinuxino-micro.dts
│   │   │   ├── sun5i-a13-q8-tablet.dts
│   │   │   ├── sun5i-a13-utoo-p66.dts
│   │   │   ├── sun5i.dtsi
│   │   │   ├── sun5i-gr8-chip-pro.dts
│   │   │   ├── sun5i-gr8.dtsi
│   │   │   ├── sun5i-q8-common.dtsi
│   │   │   ├── sun5i-r8-chip.dts
│   │   │   ├── sun5i-r8.dtsi
│   │   │   ├── sun5i-reference-design-tablet.dtsi
│   │   │   ├── sun6i-a31-app4-evb1.dts
│   │   │   ├── sun6i-a31-colombus.dts
│   │   │   ├── sun6i-a31.dtsi
│   │   │   ├── sun6i-a31-hummingbird.dts
│   │   │   ├── sun6i-a31-i7.dts
│   │   │   ├── sun6i-a31-m9.dts
│   │   │   ├── sun6i-a31-mele-a1000g-quad.dts
│   │   │   ├── sun6i-a31-mixtile-loftq.dts
│   │   │   ├── sun6i-a31s-colorfly-e708-q1.dts
│   │   │   ├── sun6i-a31s-cs908.dts
│   │   │   ├── sun6i-a31s.dtsi
│   │   │   ├── sun6i-a31s-inet-q972.dts
│   │   │   ├── sun6i-a31s-primo81.dts
│   │   │   ├── sun6i-a31s-sina31s-core.dtsi
│   │   │   ├── sun6i-a31s-sina31s.dts
│   │   │   ├── sun6i-a31s-sinovoip-bpi-m2.dts
│   │   │   ├── sun6i-a31s-yones-toptech-bs1078-v2.dts
│   │   │   ├── sun6i-reference-design-tablet.dtsi
│   │   │   ├── sun7i-a20-ainol-aw1.dts
│   │   │   ├── sun7i-a20-bananapi.dts
│   │   │   ├── sun7i-a20-bananapi-m1-plus.dts
│   │   │   ├── sun7i-a20-bananapro.dts
│   │   │   ├── sun7i-a20-cubieboard2.dts
│   │   │   ├── sun7i-a20-cubietruck.dts
│   │   │   ├── sun7i-a20.dtsi
│   │   │   ├── sun7i-a20-hummingbird.dts
│   │   │   ├── sun7i-a20-i12-tvbox.dts
│   │   │   ├── sun7i-a20-icnova-swac.dts
│   │   │   ├── sun7i-a20-itead-ibox.dts
│   │   │   ├── sun7i-a20-lamobo-r1.dts
│   │   │   ├── sun7i-a20-m3.dts
│   │   │   ├── sun7i-a20-m5.dts
│   │   │   ├── sun7i-a20-mk808c.dts
│   │   │   ├── sun7i-a20-olimex-som-evb.dts
│   │   │   ├── sun7i-a20-olinuxino-lime2.dts
│   │   │   ├── sun7i-a20-olinuxino-lime2-emmc.dts
│   │   │   ├── sun7i-a20-olinuxino-lime.dts
│   │   │   ├── sun7i-a20-olinuxino-micro.dts
│   │   │   ├── sun7i-a20-olinuxino-micro-emmc.dts
│   │   │   ├── sun7i-a20-orangepi.dts
│   │   │   ├── sun7i-a20-orangepi-mini.dts
│   │   │   ├── sun7i-a20-pcduino3.dts
│   │   │   ├── sun7i-a20-pcduino3-nano.dts
│   │   │   ├── sun7i-a20-primo73.dts
│   │   │   ├── sun7i-a20-wexler-tab7200.dts
│   │   │   ├── sun7i-a20-wits-pro-a20-dkt.dts
│   │   │   ├── sun7i-a20-yones-toptech-bd1078.dts
│   │   │   ├── sun8i-a23-a33.dtsi
│   │   │   ├── sun8i-a23.dtsi
│   │   │   ├── sun8i-a23-evb.dts
│   │   │   ├── sun8i-a23-gt90h-v4.dts
│   │   │   ├── sun8i-a23-inet86dz.dts
│   │   │   ├── sun8i-a23-polaroid-mid2407pxe03.dts
│   │   │   ├── sun8i-a23-polaroid-mid2809pxe04.dts
│   │   │   ├── sun8i-a23-q8-tablet.dts
│   │   │   ├── sun8i-a33.dtsi
│   │   │   ├── sun8i-a33-ga10h-v1.1.dts
│   │   │   ├── sun8i-a33-inet-d978-rev2.dts
│   │   │   ├── sun8i-a33-olinuxino.dts
│   │   │   ├── sun8i-a33-q8-tablet.dts
│   │   │   ├── sun8i-a33-sinlinx-sina33.dts
│   │   │   ├── sun8i-a83t-allwinner-h8homlet-v2.dts
│   │   │   ├── sun8i-a83t-bananapi-m3.dts
│   │   │   ├── sun8i-a83t-cubietruck-plus.dts
│   │   │   ├── sun8i-a83t.dtsi
│   │   │   ├── sun8i-h2-plus-orangepi-zero.dts
│   │   │   ├── sun8i-h3-bananapi-m2-plus.dts
│   │   │   ├── sun8i-h3.dtsi
│   │   │   ├── sun8i-h3-nanopi.dtsi
│   │   │   ├── sun8i-h3-nanopi-m1.dts
│   │   │   ├── sun8i-h3-nanopi-m1-plus.dts
│   │   │   ├── sun8i-h3-nanopi-neo-air.dts
│   │   │   ├── sun8i-h3-nanopi-neo.dts
│   │   │   ├── sun8i-h3-orangepi-2.dts
│   │   │   ├── sun8i-h3-orangepi-lite.dts
│   │   │   ├── sun8i-h3-orangepi-one.dts
│   │   │   ├── sun8i-h3-orangepi-pc.dts
│   │   │   ├── sun8i-h3-orangepi-pc-plus.dts
│   │   │   ├── sun8i-h3-orangepi-plus2e.dts
│   │   │   ├── sun8i-h3-orangepi-plus.dts
│   │   │   ├── sun8i-q8-common.dtsi
│   │   │   ├── sun8i-r16-bananapi-m2m.dts
│   │   │   ├── sun8i-r16-nintendo-nes-classic-edition.dts
│   │   │   ├── sun8i-r16-parrot.dts
│   │   │   ├── sun8i-r40-bananapi-m2-ultra.dts
│   │   │   ├── sun8i-r40.dtsi
│   │   │   ├── sun8i-reference-design-tablet.dtsi
│   │   │   ├── sun8i-v3s.dtsi
│   │   │   ├── sun8i-v3s-licheepi-zero.dts
│   │   │   ├── sun9i-a80-cubieboard4.dts
│   │   │   ├── sun9i-a80-cx-a99.dts
│   │   │   ├── sun9i-a80.dtsi
│   │   │   ├── sun9i-a80-optimus.dts
│   │   │   ├── sunxi-common-regulators.dtsi
│   │   │   ├── sunxi-itead-core-common.dtsi
│   │   │   ├── sunxi-q8-common.dtsi
│   │   │   ├── sunxi-reference-design-tablet.dtsi
│   │   │   ├── sunxi-u-boot.dtsi
│   │   │   ├── tegra114-dalmore.dts
│   │   │   ├── tegra114.dtsi
│   │   │   ├── tegra124-apalis.dts
│   │   │   ├── tegra124-cei-tk1-som.dts
│   │   │   ├── tegra124.dtsi
│   │   │   ├── tegra124-jetson-tk1.dts
│   │   │   ├── tegra124-nyan-big.dts
│   │   │   ├── tegra124-nyan-big-u-boot.dtsi
│   │   │   ├── tegra124-nyan.dtsi
│   │   │   ├── tegra124-venice2.dts
│   │   │   ├── tegra186.dtsi
│   │   │   ├── tegra186-p2771-0000-000.dts
│   │   │   ├── tegra186-p2771-0000-500.dts
│   │   │   ├── tegra186-p2771-0000.dtsi
│   │   │   ├── tegra20-colibri.dts
│   │   │   ├── tegra20.dtsi
│   │   │   ├── tegra20-harmony.dts
│   │   │   ├── tegra20-medcom-wide.dts
│   │   │   ├── tegra20-paz00.dts
│   │   │   ├── tegra20-plutux.dts
│   │   │   ├── tegra20-seaboard.dts
│   │   │   ├── tegra20-tamonten.dtsi
│   │   │   ├── tegra20-tec.dts
│   │   │   ├── tegra20-trimslice.dts
│   │   │   ├── tegra20-u-boot.dtsi
│   │   │   ├── tegra20-ventana.dts
│   │   │   ├── tegra210.dtsi
│   │   │   ├── tegra210-e2220-1170.dts
│   │   │   ├── tegra210-p2371-0000.dts
│   │   │   ├── tegra210-p2371-2180.dts
│   │   │   ├── tegra210-p2571.dts
│   │   │   ├── tegra30-apalis.dts
│   │   │   ├── tegra30-beaver.dts
│   │   │   ├── tegra30-cardhu.dts
│   │   │   ├── tegra30-colibri.dts
│   │   │   ├── tegra30.dtsi
│   │   │   ├── tegra30-tamonten.dtsi
│   │   │   ├── tegra30-tec-ng.dts
│   │   │   ├── thunderx-88xx.dts
│   │   │   ├── thunderx-88xx.dtsi
│   │   │   ├── tps6507x.dtsi
│   │   │   ├── tps65217.dtsi
│   │   │   ├── tps65910.dtsi
│   │   │   ├── twl4030.dtsi
│   │   │   ├── twl4030_omap3.dtsi
│   │   │   ├── ulcb.dtsi
│   │   │   ├── uniphier-ld11.dtsi
│   │   │   ├── uniphier-ld11-global.dts
│   │   │   ├── uniphier-ld11-ref.dts
│   │   │   ├── uniphier-ld20.dtsi
│   │   │   ├── uniphier-ld20-global.dts
│   │   │   ├── uniphier-ld20-ref.dts
│   │   │   ├── uniphier-ld4.dtsi
│   │   │   ├── uniphier-ld4-ref.dts
│   │   │   ├── uniphier-ld6b.dtsi
│   │   │   ├── uniphier-ld6b-ref.dts
│   │   │   ├── uniphier-pinctrl.dtsi
│   │   │   ├── uniphier-pro4-ace.dts
│   │   │   ├── uniphier-pro4.dtsi
│   │   │   ├── uniphier-pro4-ref.dts
│   │   │   ├── uniphier-pro4-sanji.dts
│   │   │   ├── uniphier-pro5-4kbox.dts
│   │   │   ├── uniphier-pro5.dtsi
│   │   │   ├── uniphier-pxs2.dtsi
│   │   │   ├── uniphier-pxs2-gentil.dts
│   │   │   ├── uniphier-pxs2-vodka.dts
│   │   │   ├── uniphier-pxs3.dtsi
│   │   │   ├── uniphier-pxs3-ref.dts
│   │   │   ├── uniphier-ref-daughter.dtsi
│   │   │   ├── uniphier-sld8.dtsi
│   │   │   ├── uniphier-sld8-ref.dts
│   │   │   ├── uniphier-support-card.dtsi
│   │   │   ├── uniphier-v7-u-boot.dtsi
│   │   │   ├── usb_a9263.dts
│   │   │   ├── vf500-colibri.dts
│   │   │   ├── vf610-colibri.dts
│   │   │   ├── vf610-twr.dts
│   │   │   ├── vf-colibri.dtsi
│   │   │   ├── vf.dtsi
│   │   │   ├── zynq-7000.dtsi
│   │   │   ├── zynq-microzed.dts
│   │   │   ├── zynqmp-clk.dtsi
│   │   │   ├── zynqmp.dtsi
│   │   │   ├── zynqmp-ep108-clk.dtsi
│   │   │   ├── zynqmp-ep108.dts
│   │   │   ├── zynqmp-zc1751-xm015-dc1.dts
│   │   │   ├── zynqmp-zc1751-xm016-dc2.dts
│   │   │   ├── zynqmp-zc1751-xm018-dc4.dts
│   │   │   ├── zynqmp-zc1751-xm019-dc5.dts
│   │   │   ├── zynqmp-zcu102-revA.dts
│   │   │   ├── zynqmp-zcu102-revB.dts
│   │   │   ├── zynq-picozed.dts
│   │   │   ├── zynq-topic-miami.dts
│   │   │   ├── zynq-topic-miamilite.dts
│   │   │   ├── zynq-topic-miamiplus.dts
│   │   │   ├── zynq-zc702.dts
│   │   │   ├── zynq-zc706.dts
│   │   │   ├── zynq-zc770-xm010.dts
│   │   │   ├── zynq-zc770-xm011.dts
│   │   │   ├── zynq-zc770-xm012.dts
│   │   │   ├── zynq-zc770-xm013.dts
│   │   │   ├── zynq-zed.dts
│   │   │   ├── zynq-zturn-myir.dts
│   │   │   └── zynq-zybo.dts
│   │   ├── include
│   │   │   ├── asm
│   │   │   │   ├── arch-am33xx
│   │   │   │   │   ├── chilisom.h
│   │   │   │   │   ├── clk_synthesizer.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clocks_am33xx.h
│   │   │   │   │   ├── clock_ti81xx.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── ddr_defs.h
│   │   │   │   │   ├── emac_defs.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hardware_am33xx.h
│   │   │   │   │   ├── hardware_am43xx.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   ├── hardware_ti814x.h
│   │   │   │   │   ├── hardware_ti816x.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── mem.h
│   │   │   │   │   ├── mmc_host_def.h
│   │   │   │   │   ├── mux_am33xx.h
│   │   │   │   │   ├── mux_am43xx.h
│   │   │   │   │   ├── mux.h
│   │   │   │   │   ├── mux_ti814x.h
│   │   │   │   │   ├── mux_ti816x.h
│   │   │   │   │   ├── omap.h
│   │   │   │   │   ├── spl.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-armada100
│   │   │   │   │   ├── armada100.h
│   │   │   │   │   ├── config.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── mfp.h
│   │   │   │   │   ├── spi.h
│   │   │   │   │   └── utmi-armada100.h
│   │   │   │   ├── arch-armada8k
│   │   │   │   │   ├── cache_llc.h
│   │   │   │   │   └── soc-info.h
│   │   │   │   ├── arch-armv7
│   │   │   │   │   ├── generictimer.h
│   │   │   │   │   ├── globaltimer.h
│   │   │   │   │   ├── sysctrl.h
│   │   │   │   │   ├── systimer.h
│   │   │   │   │   └── wdt.h
│   │   │   │   ├── arch-aspeed
│   │   │   │   │   ├── pinctrl.h
│   │   │   │   │   ├── scu_ast2500.h
│   │   │   │   │   ├── sdram_ast2500.h
│   │   │   │   │   ├── timer.h
│   │   │   │   │   └── wdt.h
│   │   │   │   ├── arch-bcm235xx
│   │   │   │   │   ├── boot0.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   └── sysmap.h
│   │   │   │   ├── arch-bcm281xx
│   │   │   │   │   ├── boot0.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   └── sysmap.h
│   │   │   │   ├── arch-bcmcygnus
│   │   │   │   │   └── configs.h
│   │   │   │   ├── arch-bcmnsp
│   │   │   │   │   └── configs.h
│   │   │   │   ├── arch-ep93xx
│   │   │   │   │   └── ep93xx.h
│   │   │   │   ├── arch-fsl-layerscape
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── config.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── fdt.h
│   │   │   │   │   ├── fsl_serdes.h
│   │   │   │   │   ├── immap_lsch2.h
│   │   │   │   │   ├── immap_lsch3.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── mmu.h
│   │   │   │   │   ├── mp.h
│   │   │   │   │   ├── ns_access.h
│   │   │   │   │   ├── ppa.h
│   │   │   │   │   ├── soc.h
│   │   │   │   │   ├── speed.h
│   │   │   │   │   ├── stream_id_lsch2.h
│   │   │   │   │   └── stream_id_lsch3.h
│   │   │   │   ├── arch-hi3798cv200
│   │   │   │   │   ├── dwmmc.h
│   │   │   │   │   └── hi3798cv200.h
│   │   │   │   ├── arch-hi6220
│   │   │   │   │   ├── dwmmc.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hi6220.h
│   │   │   │   │   ├── hi6220_regs_alwayson.h
│   │   │   │   │   ├── periph.h
│   │   │   │   │   └── pinmux.h
│   │   │   │   ├── arch-imx
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   └── imx-regs.h
│   │   │   │   ├── arch-lpc32xx
│   │   │   │   │   ├── clk.h
│   │   │   │   │   ├── config.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── dma.h
│   │   │   │   │   ├── emc.h
│   │   │   │   │   ├── gpio_grp.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── mux.h
│   │   │   │   │   ├── sys_proto.h
│   │   │   │   │   ├── timer.h
│   │   │   │   │   ├── uart.h
│   │   │   │   │   └── wdt.h
│   │   │   │   ├── arch-ls102xa
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── config.h
│   │   │   │   │   ├── fsl_serdes.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── immap_ls102xa.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── ls102xa_devdis.h
│   │   │   │   │   ├── ls102xa_sata.h
│   │   │   │   │   ├── ls102xa_soc.h
│   │   │   │   │   ├── ls102xa_stream_id.h
│   │   │   │   │   ├── ns_access.h
│   │   │   │   │   ├── soc.h
│   │   │   │   │   └── spl.h
│   │   │   │   ├── arch-meson
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gxbb.h
│   │   │   │   │   ├── sd_emmc.h
│   │   │   │   │   └── sm.h
│   │   │   │   ├── arch-mvebu
│   │   │   │   │   └── spi.h
│   │   │   │   ├── arch-mx25
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── iomux-mx25.h
│   │   │   │   │   └── macro.h
│   │   │   │   ├── arch-mx27
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── mxcmmc.h
│   │   │   │   │   └── regs-rtc.h
│   │   │   │   ├── arch-mx31
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-mx35
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── crm_regs.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── iomux-mx35.h
│   │   │   │   │   ├── lowlevel_macro.S
│   │   │   │   │   ├── mmc_host_def.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-mx5
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── crm_regs.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── iomux-mx51.h
│   │   │   │   │   ├── iomux-mx53.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-mx6
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── crm_regs.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-rdc.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── iomux.h
│   │   │   │   │   ├── litesom.h
│   │   │   │   │   ├── mx6-ddr.h
│   │   │   │   │   ├── mx6dl-ddr.h
│   │   │   │   │   ├── mx6dl_pins.h
│   │   │   │   │   ├── mx6-pins.h
│   │   │   │   │   ├── mx6_plugin.S
│   │   │   │   │   ├── mx6q-ddr.h
│   │   │   │   │   ├── mx6q_pins.h
│   │   │   │   │   ├── mx6sl-ddr.h
│   │   │   │   │   ├── mx6sll_pins.h
│   │   │   │   │   ├── mx6sl_pins.h
│   │   │   │   │   ├── mx6sx-ddr.h
│   │   │   │   │   ├── mx6sx_pins.h
│   │   │   │   │   ├── mx6sx_rdc.h
│   │   │   │   │   ├── mx6ul-ddr.h
│   │   │   │   │   ├── mx6ull_pins.h
│   │   │   │   │   ├── mx6ul_pins.h
│   │   │   │   │   ├── mxc_hdmi.h
│   │   │   │   │   ├── opos6ul.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-mx7
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock_slice.h
│   │   │   │   │   ├── crm_regs.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-rdc.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── mx7-ddr.h
│   │   │   │   │   ├── mx7d_pins.h
│   │   │   │   │   ├── mx7d_rdc.h
│   │   │   │   │   ├── mx7-pins.h
│   │   │   │   │   ├── mx7_plugin.S
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-mx7ulp
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx_lpi2c.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── iomux.h
│   │   │   │   │   ├── mx7ulp-pins.h
│   │   │   │   │   ├── pcc.h
│   │   │   │   │   ├── scg.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-mxs
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── iomux.h
│   │   │   │   │   ├── iomux-mx23.h
│   │   │   │   │   ├── iomux-mx28.h
│   │   │   │   │   ├── regs-base.h
│   │   │   │   │   ├── regs-clkctrl-mx23.h
│   │   │   │   │   ├── regs-clkctrl-mx28.h
│   │   │   │   │   ├── regs-digctl.h
│   │   │   │   │   ├── regs-i2c.h
│   │   │   │   │   ├── regs-lradc.h
│   │   │   │   │   ├── regs-ocotp.h
│   │   │   │   │   ├── regs-pinctrl.h
│   │   │   │   │   ├── regs-power-mx23.h
│   │   │   │   │   ├── regs-power-mx28.h
│   │   │   │   │   ├── regs-rtc.h
│   │   │   │   │   ├── regs-ssp.h
│   │   │   │   │   ├── regs-timrot.h
│   │   │   │   │   ├── regs-uartapp.h
│   │   │   │   │   ├── regs-usb.h
│   │   │   │   │   ├── regs-usbphy.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-omap3
│   │   │   │   │   ├── am35x_def.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clocks_omap3.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── dma.h
│   │   │   │   │   ├── dss.h
│   │   │   │   │   ├── ehci.h
│   │   │   │   │   ├── emac_defs.h
│   │   │   │   │   ├── emif4.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── mem.h
│   │   │   │   │   ├── mmc_host_def.h
│   │   │   │   │   ├── musb.h
│   │   │   │   │   ├── mux.h
│   │   │   │   │   ├── omap3-regs.h
│   │   │   │   │   ├── omap.h
│   │   │   │   │   ├── spl.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-omap4
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── ehci.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── mem.h
│   │   │   │   │   ├── mmc_host_def.h
│   │   │   │   │   ├── mux_omap4.h
│   │   │   │   │   ├── omap.h
│   │   │   │   │   ├── spl.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-omap5
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── dra7xx_iodelay.h
│   │   │   │   │   ├── ehci.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── mem.h
│   │   │   │   │   ├── mmc_host_def.h
│   │   │   │   │   ├── mux_dra7xx.h
│   │   │   │   │   ├── mux_omap5.h
│   │   │   │   │   ├── omap.h
│   │   │   │   │   ├── sata.h
│   │   │   │   │   ├── spl.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-orion5x
│   │   │   │   │   └── spl.h
│   │   │   │   ├── arch-pxa
│   │   │   │   │   ├── bitfield.h
│   │   │   │   │   ├── config.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   ├── pxa.h
│   │   │   │   │   ├── pxa-regs.h
│   │   │   │   │   ├── regs-mmc.h
│   │   │   │   │   ├── regs-uart.h
│   │   │   │   │   └── regs-usb.h
│   │   │   │   ├── arch-rockchip
│   │   │   │   │   ├── boot0.h
│   │   │   │   │   ├── boot_mode.h
│   │   │   │   │   ├── bootrom.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── cru_rk3036.h
│   │   │   │   │   ├── cru_rk3188.h
│   │   │   │   │   ├── cru_rk322x.h
│   │   │   │   │   ├── cru_rk3288.h
│   │   │   │   │   ├── cru_rk3328.h
│   │   │   │   │   ├── cru_rk3368.h
│   │   │   │   │   ├── cru_rk3399.h
│   │   │   │   │   ├── cru_rv1108.h
│   │   │   │   │   ├── ddr_rk3188.h
│   │   │   │   │   ├── ddr_rk3288.h
│   │   │   │   │   ├── ddr_rk3368.h
│   │   │   │   │   ├── edp_rk3288.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── grf_rk3036.h
│   │   │   │   │   ├── grf_rk3188.h
│   │   │   │   │   ├── grf_rk322x.h
│   │   │   │   │   ├── grf_rk3288.h
│   │   │   │   │   ├── grf_rk3328.h
│   │   │   │   │   ├── grf_rk3368.h
│   │   │   │   │   ├── grf_rk3399.h
│   │   │   │   │   ├── grf_rv1108.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── lvds_rk3288.h
│   │   │   │   │   ├── periph.h
│   │   │   │   │   ├── pmu_rk3188.h
│   │   │   │   │   ├── pmu_rk3288.h
│   │   │   │   │   ├── pwm.h
│   │   │   │   │   ├── qos_rk3288.h
│   │   │   │   │   ├── rockchip_mipi_dsi.h
│   │   │   │   │   ├── sdram_common.h
│   │   │   │   │   ├── sdram.h
│   │   │   │   │   ├── sdram_rk3036.h
│   │   │   │   │   ├── sdram_rk322x.h
│   │   │   │   │   ├── sdram_rk3399.h
│   │   │   │   │   ├── sys_proto.h
│   │   │   │   │   ├── timer.h
│   │   │   │   │   ├── uart.h
│   │   │   │   │   └── vop_rk3288.h
│   │   │   │   ├── arch-s32v234
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── ddr.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   ├── lpddr2.h
│   │   │   │   │   ├── mc_cgm_regs.h
│   │   │   │   │   ├── mc_me_regs.h
│   │   │   │   │   ├── mc_rgm_regs.h
│   │   │   │   │   ├── mmdc.h
│   │   │   │   │   └── siul.h
│   │   │   │   ├── arch-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-stih410
│   │   │   │   │   ├── sdhci.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── arch-stm32f4
│   │   │   │   │   ├── fmc.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── stm32_defs.h
│   │   │   │   │   ├── stm32.h
│   │   │   │   │   └── stm32_periph.h
│   │   │   │   ├── arch-stm32f7
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gpt.h
│   │   │   │   │   ├── rcc.h
│   │   │   │   │   ├── stm32_defs.h
│   │   │   │   │   ├── stm32.h
│   │   │   │   │   ├── stm32_periph.h
│   │   │   │   │   └── syscfg.h
│   │   │   │   ├── arch-stm32h7
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   └── stm32.h
│   │   │   │   ├── arch-stv0991
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   ├── stv0991_cgu.h
│   │   │   │   │   ├── stv0991_creg.h
│   │   │   │   │   ├── stv0991_defs.h
│   │   │   │   │   ├── stv0991_gpt.h
│   │   │   │   │   ├── stv0991_periph.h
│   │   │   │   │   └── stv0991_wdru.h
│   │   │   │   ├── arch-sunxi
│   │   │   │   │   ├── boot0.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock_sun4i.h
│   │   │   │   │   ├── clock_sun6i.h
│   │   │   │   │   ├── clock_sun8i_a83t.h
│   │   │   │   │   ├── clock_sun9i.h
│   │   │   │   │   ├── cpucfg.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── cpu_sun4i.h
│   │   │   │   │   ├── cpu_sun9i.h
│   │   │   │   │   ├── display2.h
│   │   │   │   │   ├── display.h
│   │   │   │   │   ├── dma.h
│   │   │   │   │   ├── dma_sun4i.h
│   │   │   │   │   ├── dram.h
│   │   │   │   │   ├── dram_sun4i.h
│   │   │   │   │   ├── dram_sun6i.h
│   │   │   │   │   ├── dram_sun8i_a23.h
│   │   │   │   │   ├── dram_sun8i_a33.h
│   │   │   │   │   ├── dram_sun8i_a83t.h
│   │   │   │   │   ├── dram_sun9i.h
│   │   │   │   │   ├── dram_sunxi_dw.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gtbus.h
│   │   │   │   │   ├── gtbus_sun9i.h
│   │   │   │   │   ├── i2c.h
│   │   │   │   │   ├── lcdc.h
│   │   │   │   │   ├── mmc.h
│   │   │   │   │   ├── p2wi.h
│   │   │   │   │   ├── pmic_bus.h
│   │   │   │   │   ├── prcm.h
│   │   │   │   │   ├── pwm.h
│   │   │   │   │   ├── rsb.h
│   │   │   │   │   ├── spl.h
│   │   │   │   │   ├── sys_proto.h
│   │   │   │   │   ├── timer.h
│   │   │   │   │   ├── tve.h
│   │   │   │   │   ├── tzpc.h
│   │   │   │   │   ├── usb_phy.h
│   │   │   │   │   └── watchdog.h
│   │   │   │   ├── arch-tegra
│   │   │   │   │   ├── apb_misc.h
│   │   │   │   │   ├── ap.h
│   │   │   │   │   ├── board.h
│   │   │   │   │   ├── bpmp_abi.h
│   │   │   │   │   ├── clk_rst.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── dc.h
│   │   │   │   │   ├── funcmux.h
│   │   │   │   │   ├── fuse.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gp_padctrl.h
│   │   │   │   │   ├── gpu.h
│   │   │   │   │   ├── ivc.h
│   │   │   │   │   ├── pinmux.h
│   │   │   │   │   ├── pmc.h
│   │   │   │   │   ├── powergate.h
│   │   │   │   │   ├── pwm.h
│   │   │   │   │   ├── scu.h
│   │   │   │   │   ├── sys_proto.h
│   │   │   │   │   ├── tegra.h
│   │   │   │   │   ├── tegra_i2c.h
│   │   │   │   │   ├── tegra_mmc.h
│   │   │   │   │   ├── timer.h
│   │   │   │   │   ├── uart.h
│   │   │   │   │   ├── usb.h
│   │   │   │   │   ├── warmboot.h
│   │   │   │   │   └── xusb-padctl.h
│   │   │   │   ├── arch-tegra114
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock-tables.h
│   │   │   │   │   ├── flow.h
│   │   │   │   │   ├── funcmux.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gp_padctrl.h
│   │   │   │   │   ├── mc.h
│   │   │   │   │   ├── pinmux.h
│   │   │   │   │   ├── pmu.h
│   │   │   │   │   ├── powergate.h
│   │   │   │   │   ├── sysctr.h
│   │   │   │   │   └── tegra.h
│   │   │   │   ├── arch-tegra124
│   │   │   │   │   ├── ahb.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock-tables.h
│   │   │   │   │   ├── display.h
│   │   │   │   │   ├── flow.h
│   │   │   │   │   ├── funcmux.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gp_padctrl.h
│   │   │   │   │   ├── mc.h
│   │   │   │   │   ├── pinmux.h
│   │   │   │   │   ├── pmu.h
│   │   │   │   │   ├── powergate.h
│   │   │   │   │   ├── pwm.h
│   │   │   │   │   ├── sysctr.h
│   │   │   │   │   └── tegra.h
│   │   │   │   ├── arch-tegra186
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   └── tegra.h
│   │   │   │   ├── arch-tegra20
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock-tables.h
│   │   │   │   │   ├── display.h
│   │   │   │   │   ├── emc.h
│   │   │   │   │   ├── flow.h
│   │   │   │   │   ├── funcmux.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gp_padctrl.h
│   │   │   │   │   ├── mc.h
│   │   │   │   │   ├── pinmux.h
│   │   │   │   │   ├── pmu.h
│   │   │   │   │   ├── powergate.h
│   │   │   │   │   ├── pwm.h
│   │   │   │   │   ├── sdram_param.h
│   │   │   │   │   └── tegra.h
│   │   │   │   ├── arch-tegra210
│   │   │   │   │   ├── ahb.h
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock-tables.h
│   │   │   │   │   ├── flow.h
│   │   │   │   │   ├── funcmux.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gp_padctrl.h
│   │   │   │   │   ├── mc.h
│   │   │   │   │   ├── pinmux.h
│   │   │   │   │   ├── pmu.h
│   │   │   │   │   ├── powergate.h
│   │   │   │   │   ├── sysctr.h
│   │   │   │   │   └── tegra.h
│   │   │   │   ├── arch-tegra30
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── clock-tables.h
│   │   │   │   │   ├── flow.h
│   │   │   │   │   ├── funcmux.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── gp_padctrl.h
│   │   │   │   │   ├── mc.h
│   │   │   │   │   ├── pinmux.h
│   │   │   │   │   ├── pmu.h
│   │   │   │   │   ├── powergate.h
│   │   │   │   │   └── tegra.h
│   │   │   │   ├── arch-vf610
│   │   │   │   │   ├── clock.h
│   │   │   │   │   ├── crm_regs.h
│   │   │   │   │   ├── ddrmc-vf610.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── imx-regs.h
│   │   │   │   │   └── iomux-vf610.h
│   │   │   │   ├── arch-zynqmp
│   │   │   │   │   ├── clk.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hardware.h
│   │   │   │   │   └── sys_proto.h
│   │   │   │   ├── armv7.h
│   │   │   │   ├── armv7m.h
│   │   │   │   ├── armv7m_mpu.h
│   │   │   │   ├── armv8
│   │   │   │   │   ├── mmu.h
│   │   │   │   │   └── sec_firmware.h
│   │   │   │   ├── assembler.h
│   │   │   │   ├── atomic.h
│   │   │   │   ├── barriers.h
│   │   │   │   ├── bitops.h
│   │   │   │   ├── bootm.h
│   │   │   │   ├── byteorder.h
│   │   │   │   ├── cache.h
│   │   │   │   ├── config.h
│   │   │   │   ├── davinci_rtc.h
│   │   │   │   ├── dma-mapping.h
│   │   │   │   ├── ehci-omap.h
│   │   │   │   ├── emif.h
│   │   │   │   ├── fsl_secure_boot.h
│   │   │   │   ├── gic.h
│   │   │   │   ├── global_data.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── hardware.h
│   │   │   │   ├── io.h
│   │   │   │   ├── iproc-common
│   │   │   │   │   ├── armpll.h
│   │   │   │   │   ├── configs.h
│   │   │   │   │   ├── sysmap.h
│   │   │   │   │   └── timer.h
│   │   │   │   ├── kona-common
│   │   │   │   │   ├── clk.h
│   │   │   │   │   └── kona_sdhci.h
│   │   │   │   ├── linkage.h
│   │   │   │   ├── mach-imx
│   │   │   │   │   ├── boot_mode.h
│   │   │   │   │   ├── dma.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── hab.h
│   │   │   │   │   ├── imximage.cfg
│   │   │   │   │   ├── iomux-v3.h
│   │   │   │   │   ├── mx5_video.h
│   │   │   │   │   ├── mxc_i2c.h
│   │   │   │   │   ├── rdc-sema.h
│   │   │   │   │   ├── regs-apbh.h
│   │   │   │   │   ├── regs-bch.h
│   │   │   │   │   ├── regs-common.h
│   │   │   │   │   ├── regs-gpmi.h
│   │   │   │   │   ├── regs-lcdif.h
│   │   │   │   │   ├── regs-usbphy.h
│   │   │   │   │   ├── sata.h
│   │   │   │   │   ├── spi.h
│   │   │   │   │   ├── syscounter.h
│   │   │   │   │   ├── sys_proto.h
│   │   │   │   │   └── video.h
│   │   │   │   ├── mach-types.h
│   │   │   │   ├── macro.h
│   │   │   │   ├── memory.h
│   │   │   │   ├── omap_common.h
│   │   │   │   ├── omap_gpio.h
│   │   │   │   ├── omap_mmc.h
│   │   │   │   ├── omap_musb.h
│   │   │   │   ├── omap_sec_common.h
│   │   │   │   ├── opcodes.h
│   │   │   │   ├── opcodes-sec.h
│   │   │   │   ├── opcodes-virt.h
│   │   │   │   ├── pl310.h
│   │   │   │   ├── posix_types.h
│   │   │   │   ├── proc-armv
│   │   │   │   │   ├── domain.h
│   │   │   │   │   ├── processor.h
│   │   │   │   │   ├── ptrace.h
│   │   │   │   │   └── system.h
│   │   │   │   ├── processor.h
│   │   │   │   ├── psci.h
│   │   │   │   ├── ptrace.h
│   │   │   │   ├── sections.h
│   │   │   │   ├── secure.h
│   │   │   │   ├── setjmp.h
│   │   │   │   ├── setup.h
│   │   │   │   ├── spin_table.h
│   │   │   │   ├── spl.h
│   │   │   │   ├── string.h
│   │   │   │   ├── system.h
│   │   │   │   ├── ti-common
│   │   │   │   │   ├── davinci_nand.h
│   │   │   │   │   ├── keystone_nav.h
│   │   │   │   │   ├── keystone_net.h
│   │   │   │   │   ├── keystone_serdes.h
│   │   │   │   │   ├── omap_wdt.h
│   │   │   │   │   ├── sys_proto.h
│   │   │   │   │   ├── ti-aemif.h
│   │   │   │   │   └── ti-edma3.h
│   │   │   │   ├── types.h
│   │   │   │   ├── u-boot-arm.h
│   │   │   │   ├── u-boot.h
│   │   │   │   ├── unaligned.h
│   │   │   │   ├── unified.h
│   │   │   │   └── utils.h
│   │   │   └── debug
│   │   │   └── 8250.S
│   │   ├── Kconfig
│   │   ├── Kconfig.debug
│   │   ├── lib
│   │   │   ├── ashldi3.S
│   │   │   ├── ashrdi3.S
│   │   │   ├── asm-offsets.c
│   │   │   ├── bootm.c
│   │   │   ├── bootm-fdt.c
│   │   │   ├── cache.c
│   │   │   ├── cache-cp15.c
│   │   │   ├── cache-pl310.c
│   │   │   ├── ccn504.S
│   │   │   ├── cmd_boot.c
│   │   │   ├── crt0_64.S
│   │   │   ├── crt0_aarch64_efi.S
│   │   │   ├── crt0_arm_efi.S
│   │   │   ├── crt0.S
│   │   │   ├── debug.S
│   │   │   ├── div0.c
│   │   │   ├── div64.S
│   │   │   ├── eabi_compat.c
│   │   │   ├── elf_aarch64_efi.lds
│   │   │   ├── elf_arm_efi.lds
│   │   │   ├── gic_64.S
│   │   │   ├── interrupts_64.c
│   │   │   ├── interrupts.c
│   │   │   ├── interrupts_m.c
│   │   │   ├── lib1funcs.S
│   │   │   ├── lshrdi3.S
│   │   │   ├── Makefile
│   │   │   ├── memcpy.S
│   │   │   ├── memset.S
│   │   │   ├── muldi3.S
│   │   │   ├── psci-dt.c
│   │   │   ├── reloc_aarch64_efi.c
│   │   │   ├── reloc_arm_efi.c
│   │   │   ├── relocate_64.S
│   │   │   ├── relocate.S
│   │   │   ├── reset.c
│   │   │   ├── sections.c
│   │   │   ├── semihosting.c
│   │   │   ├── spl.c
│   │   │   ├── stack.c
│   │   │   ├── uldivmod.S
│   │   │   ├── vectors_m.S
│   │   │   ├── vectors.S
│   │   │   └── zimage.c
│   │   ├── mach-aspeed
│   │   │   ├── ast2500
│   │   │   │   ├── clk_ast2500.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── sdram_ast2500.c
│   │   │   ├── ast2500-board.c
│   │   │   ├── ast_wdt.c
│   │   │   ├── Kconfig
│   │   │   └── Makefile
│   │   ├── mach-at91
│   │   │   ├── arm920t
│   │   │   │   ├── at91rm9200_devices.c
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── reset.c
│   │   │   │   └── timer.c
│   │   │   ├── arm926ejs
│   │   │   │   ├── at91sam9260_devices.c
│   │   │   │   ├── at91sam9261_devices.c
│   │   │   │   ├── at91sam9263_devices.c
│   │   │   │   ├── at91sam9m10g45_devices.c
│   │   │   │   ├── at91sam9n12_devices.c
│   │   │   │   ├── at91sam9rl_devices.c
│   │   │   │   ├── at91sam9x5_devices.c
│   │   │   │   ├── cache.c
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── eflash.c
│   │   │   │   ├── led.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── reset.c
│   │   │   │   ├── timer.c
│   │   │   │   └── u-boot-spl.lds
│   │   │   ├── armv7
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── reset.c
│   │   │   │   ├── sama5d2_devices.c
│   │   │   │   ├── sama5d3_devices.c
│   │   │   │   ├── sama5d4_devices.c
│   │   │   │   ├── timer.c
│   │   │   │   └── u-boot-spl.lds
│   │   │   ├── atmel_sfr.c
│   │   │   ├── bootparams_atmel.S
│   │   │   ├── clock.c
│   │   │   ├── config.mk
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── at91_common.h
│   │   │   │   ├── at91_dbu.h
│   │   │   │   ├── at91_eefc.h
│   │   │   │   ├── at91_emac.h
│   │   │   │   ├── at91_gpbr.h
│   │   │   │   ├── at91_matrix.h
│   │   │   │   ├── at91_mc.h
│   │   │   │   ├── at91_pdc.h
│   │   │   │   ├── at91_pio.h
│   │   │   │   ├── at91_pit.h
│   │   │   │   ├── at91_pmc.h
│   │   │   │   ├── at91rm9200.h
│   │   │   │   ├── at91_rstc.h
│   │   │   │   ├── at91_rtc.h
│   │   │   │   ├── at91_rtt.h
│   │   │   │   ├── at91sam9260.h
│   │   │   │   ├── at91sam9260_matrix.h
│   │   │   │   ├── at91sam9261.h
│   │   │   │   ├── at91sam9261_matrix.h
│   │   │   │   ├── at91sam9263.h
│   │   │   │   ├── at91sam9263_matrix.h
│   │   │   │   ├── at91sam9g45.h
│   │   │   │   ├── at91sam9g45_matrix.h
│   │   │   │   ├── at91sam9_matrix.h
│   │   │   │   ├── at91sam9rl.h
│   │   │   │   ├── at91sam9rl_matrix.h
│   │   │   │   ├── at91sam9_sdramc.h
│   │   │   │   ├── at91sam9_smc.h
│   │   │   │   ├── at91sam9x5.h
│   │   │   │   ├── at91sam9x5_matrix.h
│   │   │   │   ├── at91_sck.h
│   │   │   │   ├── at91_spi.h
│   │   │   │   ├── at91_st.h
│   │   │   │   ├── at91_tc.h
│   │   │   │   ├── at91_wdt.h
│   │   │   │   ├── atmel_mpddrc.h
│   │   │   │   ├── atmel_pio4.h
│   │   │   │   ├── atmel_sdhci.h
│   │   │   │   ├── atmel_serial.h
│   │   │   │   ├── atmel_usba_udc.h
│   │   │   │   ├── clk.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── hardware.h
│   │   │   │   ├── sama5_boot.h
│   │   │   │   ├── sama5d2.h
│   │   │   │   ├── sama5d3.h
│   │   │   │   ├── sama5d3_smc.h
│   │   │   │   ├── sama5d4.h
│   │   │   │   ├── sama5_matrix.h
│   │   │   │   └── sama5_sfr.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── matrix.c
│   │   │   ├── mpddrc.c
│   │   │   ├── phy.c
│   │   │   ├── sdram.c
│   │   │   ├── spl_at91.c
│   │   │   ├── spl_atmel.c
│   │   │   └── spl.c
│   │   ├── mach-bcm283x
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── gpio.h
│   │   │   │   ├── mbox.h
│   │   │   │   ├── msg.h
│   │   │   │   ├── sdhci.h
│   │   │   │   ├── timer.h
│   │   │   │   └── wdog.h
│   │   │   ├── init.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   ├── mbox.c
│   │   │   ├── msg.c
│   │   │   ├── phys2bus.c
│   │   │   └── reset.c
│   │   ├── mach-davinci
│   │   │   ├── config.mk
│   │   │   ├── cpu.c
│   │   │   ├── da850_lowlevel.c
│   │   │   ├── da850_pinmux.c
│   │   │   ├── dm355.c
│   │   │   ├── dm365.c
│   │   │   ├── dm365_lowlevel.c
│   │   │   ├── dm644x.c
│   │   │   ├── dm646x.c
│   │   │   ├── dp83848.c
│   │   │   ├── et1011c.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── aintc_defs.h
│   │   │   │   ├── da850_lowlevel.h
│   │   │   │   ├── da8xx-usb.h
│   │   │   │   ├── davinci_misc.h
│   │   │   │   ├── ddr2_defs.h
│   │   │   │   ├── dm365_lowlevel.h
│   │   │   │   ├── emac_defs.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── hardware.h
│   │   │   │   ├── i2c_defs.h
│   │   │   │   ├── pinmux_defs.h
│   │   │   │   ├── pll_defs.h
│   │   │   │   ├── psc_defs.h
│   │   │   │   ├── sdmmc_defs.h
│   │   │   │   ├── syscfg_defs.h
│   │   │   │   └── timer_defs.h
│   │   │   ├── Kconfig
│   │   │   ├── ksz8873.c
│   │   │   ├── lowlevel_init.S
│   │   │   ├── lxt972.c
│   │   │   ├── Makefile
│   │   │   ├── misc.c
│   │   │   ├── pinmux.c
│   │   │   ├── psc.c
│   │   │   ├── reset.c
│   │   │   ├── spl.c
│   │   │   └── timer.c
│   │   ├── mach-exynos
│   │   │   ├── clock.c
│   │   │   ├── clock_init_exynos4.c
│   │   │   ├── clock_init_exynos5.c
│   │   │   ├── clock_init.h
│   │   │   ├── common_setup.h
│   │   │   ├── config.mk
│   │   │   ├── dmc_common.c
│   │   │   ├── dmc_init_ddr3.c
│   │   │   ├── dmc_init_exynos4.c
│   │   │   ├── exynos4_setup.h
│   │   │   ├── exynos5_setup.h
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── adc.h
│   │   │   │   ├── board.h
│   │   │   │   ├── clk.h
│   │   │   │   ├── clock.h
│   │   │   │   ├── cpu.h
│   │   │   │   ├── dmc.h
│   │   │   │   ├── dp.h
│   │   │   │   ├── dp_info.h
│   │   │   │   ├── dsim.h
│   │   │   │   ├── dwmmc.h
│   │   │   │   ├── ehci.h
│   │   │   │   ├── fb.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── i2s-regs.h
│   │   │   │   ├── mipi_dsim.h
│   │   │   │   ├── mmc.h
│   │   │   │   ├── periph.h
│   │   │   │   ├── pinmux.h
│   │   │   │   ├── power.h
│   │   │   │   ├── pwm_backlight.h
│   │   │   │   ├── pwm.h
│   │   │   │   ├── sound.h
│   │   │   │   ├── spi.h
│   │   │   │   ├── spl.h
│   │   │   │   ├── sromc.h
│   │   │   │   ├── sys_proto.h
│   │   │   │   ├── system.h
│   │   │   │   ├── tmu.h
│   │   │   │   ├── tzpc.h
│   │   │   │   ├── uart.h
│   │   │   │   ├── watchdog.h
│   │   │   │   └── xhci-exynos.h
│   │   │   ├── itop4412_setup.h
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.c
│   │   │   ├── Makefile
│   │   │   ├── mmu-arm64.c
│   │   │   ├── pinmux.c
│   │   │   ├── power.c
│   │   │   ├── sec_boot.S
│   │   │   ├── soc.c
│   │   │   ├── spl_boot.c
│   │   │   ├── system.c
│   │   │   └── tzpc.c
│   │   ├── mach-highbank
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── timer.c
│   │   ├── mach-imx
│   │   │   ├── cache.c
│   │   │   ├── cmd_bmode.c
│   │   │   ├── cmd_dek.c
│   │   │   ├── cmd_hdmidet.c
│   │   │   ├── cpu.c
│   │   │   ├── ddrmc-vf610.c
│   │   │   ├── hab.c
│   │   │   ├── i2c-mxv7.c
│   │   │   ├── imx_bootaux.c
│   │   │   ├── init.c
│   │   │   ├── iomux-v3.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── misc.c
│   │   │   ├── mx2
│   │   │   │   └── Kconfig
│   │   │   ├── mx5
│   │   │   │   ├── clock.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   └── soc.c
│   │   │   ├── mx6
│   │   │   │   ├── clock.c
│   │   │   │   ├── ddr.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── litesom.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── mp.c
│   │   │   │   ├── opos6ul.c
│   │   │   │   └── soc.c
│   │   │   ├── mx7
│   │   │   │   ├── clock.c
│   │   │   │   ├── clock_slice.c
│   │   │   │   ├── ddr.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── psci-mx7.c
│   │   │   │   ├── psci.S
│   │   │   │   └── soc.c
│   │   │   ├── mx7ulp
│   │   │   │   ├── clock.c
│   │   │   │   ├── iomux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── pcc.c
│   │   │   │   ├── scg.c
│   │   │   │   └── soc.c
│   │   │   ├── rdc-sema.c
│   │   │   ├── sata.c
│   │   │   ├── speed.c
│   │   │   ├── spl.c
│   │   │   ├── spl_sd.cfg
│   │   │   ├── syscounter.c
│   │   │   ├── timer.c
│   │   │   └── video.c
│   │   ├── mach-integrator
│   │   │   └── Kconfig
│   │   ├── mach-keystone
│   │   │   ├── clock.c
│   │   │   ├── cmd_clock.c
│   │   │   ├── cmd_ddr3.c
│   │   │   ├── cmd_mon.c
│   │   │   ├── cmd_poweroff.c
│   │   │   ├── config.mk
│   │   │   ├── ddr3.c
│   │   │   ├── ddr3_spd.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── clock_defs.h
│   │   │   │   ├── clock.h
│   │   │   │   ├── clock-k2e.h
│   │   │   │   ├── clock-k2g.h
│   │   │   │   ├── clock-k2hk.h
│   │   │   │   ├── clock-k2l.h
│   │   │   │   ├── ddr3.h
│   │   │   │   ├── hardware.h
│   │   │   │   ├── hardware-k2e.h
│   │   │   │   ├── hardware-k2g.h
│   │   │   │   ├── hardware-k2hk.h
│   │   │   │   ├── hardware-k2l.h
│   │   │   │   ├── i2c_defs.h
│   │   │   │   ├── mmc_host_def.h
│   │   │   │   ├── mon.h
│   │   │   │   ├── msmc.h
│   │   │   │   ├── mux-k2g.h
│   │   │   │   ├── psc_defs.h
│   │   │   │   └── xhci-keystone.h
│   │   │   ├── init.c
│   │   │   ├── Kconfig
│   │   │   ├── keystone.c
│   │   │   ├── Makefile
│   │   │   ├── mon.c
│   │   │   ├── msmc.c
│   │   │   └── psc.c
│   │   ├── mach-kirkwood
│   │   │   ├── cache.c
│   │   │   ├── cpu.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── config.h
│   │   │   │   ├── cpu.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── kw88f6192.h
│   │   │   │   ├── kw88f6281.h
│   │   │   │   ├── mpp.h
│   │   │   │   └── soc.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── mpp.c
│   │   ├── mach-meson
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── sm.c
│   │   ├── mach-mvebu
│   │   │   ├── arm64-common.c
│   │   │   ├── armada3700
│   │   │   │   ├── cpu.c
│   │   │   │   └── Makefile
│   │   │   ├── armada8k
│   │   │   │   ├── cache_llc.S
│   │   │   │   ├── cpu.c
│   │   │   │   └── Makefile
│   │   │   ├── cpu.c
│   │   │   ├── dram.c
│   │   │   ├── efuse.c
│   │   │   ├── gpio.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── config.h
│   │   │   │   ├── cpu.h
│   │   │   │   ├── efuse.h
│   │   │   │   ├── gpio.h
│   │   │   │   └── soc.h
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_spl.S
│   │   │   ├── Makefile
│   │   │   ├── mbus.c
│   │   │   ├── sata.c
│   │   │   ├── serdes
│   │   │   │   ├── a38x
│   │   │   │   │   ├── ctrl_pex.c
│   │   │   │   │   ├── ctrl_pex.h
│   │   │   │   │   ├── high_speed_env_spec-38x.c
│   │   │   │   │   ├── high_speed_env_spec.c
│   │   │   │   │   ├── high_speed_env_spec.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── seq_exec.c
│   │   │   │   │   ├── seq_exec.h
│   │   │   │   │   ├── sys_env_lib.c
│   │   │   │   │   └── sys_env_lib.h
│   │   │   │   └── axp
│   │   │   │   ├── board_env_spec.h
│   │   │   │   ├── high_speed_env_lib.c
│   │   │   │   ├── high_speed_env_spec.c
│   │   │   │   ├── high_speed_env_spec.h
│   │   │   │   └── Makefile
│   │   │   ├── spl.c
│   │   │   └── timer.c
│   │   ├── mach-omap2
│   │   │   ├── abb.c
│   │   │   ├── am33xx
│   │   │   │   ├── board.c
│   │   │   │   ├── chilisom.c
│   │   │   │   ├── clk_synthesizer.c
│   │   │   │   ├── clock_am33xx.c
│   │   │   │   ├── clock_am43xx.c
│   │   │   │   ├── clock.c
│   │   │   │   ├── clock_ti814x.c
│   │   │   │   ├── clock_ti816x.c
│   │   │   │   ├── ddr.c
│   │   │   │   ├── emif4.c
│   │   │   │   ├── fdt.c
│   │   │   │   ├── hw_data.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── mux.c
│   │   │   │   ├── prcm-regs.c
│   │   │   │   ├── sys_info.c
│   │   │   │   └── ti816x_emif4.c
│   │   │   ├── boot-common.c
│   │   │   ├── clocks-common.c
│   │   │   ├── config.mk
│   │   │   ├── config_secure.mk
│   │   │   ├── emif-common.c
│   │   │   ├── fdt-common.c
│   │   │   ├── hwinit-common.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   ├── mem-common.c
│   │   │   ├── omap3
│   │   │   │   ├── am35x_musb.c
│   │   │   │   ├── board.c
│   │   │   │   ├── boot.c
│   │   │   │   ├── clock.c
│   │   │   │   ├── emac.c
│   │   │   │   ├── emif4.c
│   │   │   │   ├── hw_data.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── prcm-regs.c
│   │   │   │   ├── sdrc.c
│   │   │   │   ├── spl_id_nand.c
│   │   │   │   └── sys_info.c
│   │   │   ├── omap4
│   │   │   │   ├── boot.c
│   │   │   │   ├── emif.c
│   │   │   │   ├── hw_data.c
│   │   │   │   ├── hwinit.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── prcm-regs.c
│   │   │   │   └── sdram_elpida.c
│   │   │   ├── omap5
│   │   │   │   ├── abb.c
│   │   │   │   ├── boot.c
│   │   │   │   ├── dra7xx_iodelay.c
│   │   │   │   ├── emif.c
│   │   │   │   ├── fdt.c
│   │   │   │   ├── hw_data.c
│   │   │   │   ├── hwinit.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── prcm-regs.c
│   │   │   │   ├── sdram.c
│   │   │   │   └── sec_entry_cpu1.S
│   │   │   ├── omap-cache.c
│   │   │   ├── pipe3-phy.c
│   │   │   ├── pipe3-phy.h
│   │   │   ├── reset.c
│   │   │   ├── sata.c
│   │   │   ├── sec-common.c
│   │   │   ├── sysinfo-common.c
│   │   │   ├── timer.c
│   │   │   ├── u-boot-spl.lds
│   │   │   ├── utils.c
│   │   │   └── vc.c
│   │   ├── mach-orion5x
│   │   │   ├── cpu.c
│   │   │   ├── dram.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── cpu.h
│   │   │   │   ├── mv88f5182.h
│   │   │   │   └── orion5x.h
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   └── timer.c
│   │   ├── mach-qemu
│   │   │   └── Kconfig
│   │   ├── mach-rmobile
│   │   │   ├── board.c
│   │   │   ├── cpu_info.c
│   │   │   ├── cpu_info-r8a7740.c
│   │   │   ├── cpu_info-rcar.c
│   │   │   ├── cpu_info-sh73a0.c
│   │   │   ├── emac.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── ehci-rmobile.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── irqs.h
│   │   │   │   ├── mmc.h
│   │   │   │   ├── r8a7740-gpio.h
│   │   │   │   ├── r8a7740.h
│   │   │   │   ├── r8a7790-gpio.h
│   │   │   │   ├── r8a7790.h
│   │   │   │   ├── r8a7791-gpio.h
│   │   │   │   ├── r8a7791.h
│   │   │   │   ├── r8a7792-gpio.h
│   │   │   │   ├── r8a7792.h
│   │   │   │   ├── r8a7793-gpio.h
│   │   │   │   ├── r8a7793.h
│   │   │   │   ├── r8a7794-gpio.h
│   │   │   │   ├── r8a7794.h
│   │   │   │   ├── r8a7795-gpio.h
│   │   │   │   ├── r8a7795.h
│   │   │   │   ├── r8a7796-gpio.h
│   │   │   │   ├── r8a7796.h
│   │   │   │   ├── rcar-base.h
│   │   │   │   ├── rcar-gen3-base.h
│   │   │   │   ├── rcar-mstp.h
│   │   │   │   ├── rmobile.h
│   │   │   │   ├── sh73a0-gpio.h
│   │   │   │   ├── sh73a0.h
│   │   │   │   ├── sh_sdhi.h
│   │   │   │   └── sys_proto.h
│   │   │   ├── Kconfig
│   │   │   ├── Kconfig.32
│   │   │   ├── Kconfig.64
│   │   │   ├── lowlevel_init_ca15.S
│   │   │   ├── lowlevel_init_gen3.S
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   ├── memmap-r8a7795.c
│   │   │   ├── memmap-r8a7796.c
│   │   │   ├── pfc-r8a7740.c
│   │   │   ├── pfc-r8a7790.c
│   │   │   ├── pfc-r8a7790.h
│   │   │   ├── pfc-r8a7791.c
│   │   │   ├── pfc-r8a7792.c
│   │   │   ├── pfc-r8a7793.c
│   │   │   ├── pfc-r8a7794.c
│   │   │   ├── pfc-r8a7795.c
│   │   │   ├── pfc-r8a7796.c
│   │   │   ├── pfc-sh73a0.c
│   │   │   └── timer.c
│   │   ├── mach-rockchip
│   │   │   ├── bootrom.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── rk3036
│   │   │   │   ├── clk_rk3036.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── sdram_rk3036.c
│   │   │   │   └── syscon_rk3036.c
│   │   │   ├── rk3036-board.c
│   │   │   ├── rk3036-board-spl.c
│   │   │   ├── rk3188
│   │   │   │   ├── clk_rk3188.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── syscon_rk3188.c
│   │   │   ├── rk3188-board.c
│   │   │   ├── rk3188-board-spl.c
│   │   │   ├── rk3188-board-tpl.c
│   │   │   ├── rk322x
│   │   │   │   ├── clk_rk322x.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── syscon_rk322x.c
│   │   │   ├── rk322x-board.c
│   │   │   ├── rk322x-board-spl.c
│   │   │   ├── rk3288
│   │   │   │   ├── clk_rk3288.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── rk3288.c
│   │   │   │   └── syscon_rk3288.c
│   │   │   ├── rk3288-board.c
│   │   │   ├── rk3288-board-spl.c
│   │   │   ├── rk3288-board-tpl.c
│   │   │   ├── rk3328
│   │   │   │   ├── clk_rk3328.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── rk3328.c
│   │   │   │   └── syscon_rk3328.c
│   │   │   ├── rk3368
│   │   │   │   ├── clk_rk3368.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── rk3368.c
│   │   │   │   ├── syscon_rk3368.c
│   │   │   │   └── u-boot-tpl.lds
│   │   │   ├── rk3368-board-spl.c
│   │   │   ├── rk3368-board-tpl.c
│   │   │   ├── rk3399
│   │   │   │   ├── clk_rk3399.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── rk3399.c
│   │   │   │   └── syscon_rk3399.c
│   │   │   ├── rk3399-board-spl.c
│   │   │   ├── rk_timer.c
│   │   │   ├── rv1108
│   │   │   │   ├── clk_rv1108.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── rv1108.c
│   │   │   │   └── syscon_rv1108.c
│   │   │   ├── save_boot_param.S
│   │   │   ├── sdram_common.c
│   │   │   └── spl-boot-order.c
│   │   ├── mach-s5pc1xx
│   │   │   ├── cache.c
│   │   │   ├── clock.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── clk.h
│   │   │   │   ├── clock.h
│   │   │   │   ├── cpu.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── mmc.h
│   │   │   │   ├── periph.h
│   │   │   │   ├── pinmux.h
│   │   │   │   ├── power.h
│   │   │   │   ├── pwm.h
│   │   │   │   ├── sromc.h
│   │   │   │   ├── sys_proto.h
│   │   │   │   ├── uart.h
│   │   │   │   └── watchdog.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── reset.S
│   │   ├── mach-snapdragon
│   │   │   ├── clock-apq8016.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── gpio.h
│   │   │   │   └── sysmap-apq8016.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── sysmap-apq8016.c
│   │   ├── mach-socfpga
│   │   │   ├── board.c
│   │   │   ├── clock_manager_arria10.c
│   │   │   ├── clock_manager.c
│   │   │   ├── clock_manager_gen5.c
│   │   │   ├── fpga_manager.c
│   │   │   ├── freeze_controller.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── base_addr_a10.h
│   │   │   │   ├── base_addr_ac5.h
│   │   │   │   ├── boot0.h
│   │   │   │   ├── clock_manager_arria10.h
│   │   │   │   ├── clock_manager_gen5.h
│   │   │   │   ├── clock_manager.h
│   │   │   │   ├── fpga_manager_arria10.h
│   │   │   │   ├── fpga_manager_gen5.h
│   │   │   │   ├── fpga_manager.h
│   │   │   │   ├── freeze_controller.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── misc.h
│   │   │   │   ├── nic301.h
│   │   │   │   ├── pinmux.h
│   │   │   │   ├── reset_manager_arria10.h
│   │   │   │   ├── reset_manager_gen5.h
│   │   │   │   ├── reset_manager.h
│   │   │   │   ├── scan_manager.h
│   │   │   │   ├── scu.h
│   │   │   │   ├── sdram_arria10.h
│   │   │   │   ├── sdram.h
│   │   │   │   ├── system_manager_arria10.h
│   │   │   │   ├── system_manager_gen5.h
│   │   │   │   ├── system_manager.h
│   │   │   │   └── timer.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── misc_arria10.c
│   │   │   ├── misc.c
│   │   │   ├── misc_gen5.c
│   │   │   ├── pinmux_arria10.c
│   │   │   ├── qts-filter.sh
│   │   │   ├── reset_manager_arria10.c
│   │   │   ├── reset_manager.c
│   │   │   ├── reset_manager_gen5.c
│   │   │   ├── scan_manager.c
│   │   │   ├── spl.c
│   │   │   ├── system_manager_gen5.c
│   │   │   ├── timer.c
│   │   │   ├── wrap_iocsr_config.c
│   │   │   ├── wrap_pinmux_config.c
│   │   │   ├── wrap_pll_config.c
│   │   │   └── wrap_sdram_config.c
│   │   ├── mach-sti
│   │   │   └── Kconfig
│   │   ├── mach-stm32
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── stm32f4
│   │   │   │   ├── clock.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── soc.c
│   │   │   │   └── timer.c
│   │   │   ├── stm32f7
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── soc.c
│   │   │   │   └── timer.c
│   │   │   └── stm32h7
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── soc.c
│   │   ├── mach-sunxi
│   │   │   ├── board.c
│   │   │   ├── clock.c
│   │   │   ├── clock_sun4i.c
│   │   │   ├── clock_sun6i.c
│   │   │   ├── clock_sun8i_a83t.c
│   │   │   ├── clock_sun9i.c
│   │   │   ├── cpu_info.c
│   │   │   ├── dram_helpers.c
│   │   │   ├── dram_sun4i.c
│   │   │   ├── dram_sun6i.c
│   │   │   ├── dram_sun8i_a23.c
│   │   │   ├── dram_sun8i_a33.c
│   │   │   ├── dram_sun8i_a83t.c
│   │   │   ├── dram_sun9i.c
│   │   │   ├── dram_sunxi_dw.c
│   │   │   ├── dram_timings
│   │   │   │   ├── ddr2_v3s.c
│   │   │   │   ├── ddr3_1333.c
│   │   │   │   ├── lpddr3_stock.c
│   │   │   │   └── Makefile
│   │   │   ├── gtbus_sun9i.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── p2wi.c
│   │   │   ├── pinmux.c
│   │   │   ├── pmic_bus.c
│   │   │   ├── prcm.c
│   │   │   ├── rmr_switch.S
│   │   │   ├── rsb.c
│   │   │   └── usb_phy.c
│   │   ├── mach-tegra
│   │   │   ├── ap.c
│   │   │   ├── arm64-mmu.c
│   │   │   ├── board186.c
│   │   │   ├── board2.c
│   │   │   ├── board.c
│   │   │   ├── cache.c
│   │   │   ├── clock.c
│   │   │   ├── cmd_enterrcm.c
│   │   │   ├── cpu.c
│   │   │   ├── cpu.h
│   │   │   ├── dt-setup.c
│   │   │   ├── emc.c
│   │   │   ├── emc.h
│   │   │   ├── gpu.c
│   │   │   ├── ivc.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   ├── pinmux-common.c
│   │   │   ├── powergate.c
│   │   │   ├── psci.S
│   │   │   ├── spl.c
│   │   │   ├── sys_info.c
│   │   │   ├── tegra114
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── funcmux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── pinmux.c
│   │   │   ├── tegra124
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── funcmux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── pinmux.c
│   │   │   │   ├── pmc.c
│   │   │   │   ├── psci.c
│   │   │   │   └── xusb-padctl.c
│   │   │   ├── tegra186
│   │   │   │   ├── cache.S
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── nvtboot_board.c
│   │   │   │   ├── nvtboot_ll.S
│   │   │   │   └── nvtboot_mem.c
│   │   │   ├── tegra20
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── crypto.c
│   │   │   │   ├── crypto.h
│   │   │   │   ├── display.c
│   │   │   │   ├── emc.c
│   │   │   │   ├── funcmux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── pinmux.c
│   │   │   │   ├── pmu.c
│   │   │   │   ├── warmboot_avp.c
│   │   │   │   ├── warmboot_avp.h
│   │   │   │   └── warmboot.c
│   │   │   ├── tegra210
│   │   │   │   ├── clock.c
│   │   │   │   ├── funcmux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── pinmux.c
│   │   │   │   └── xusb-padctl.c
│   │   │   ├── tegra30
│   │   │   │   ├── clock.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── funcmux.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── pinmux.c
│   │   │   ├── xusb-padctl-common.c
│   │   │   ├── xusb-padctl-common.h
│   │   │   └── xusb-padctl-dummy.c
│   │   ├── mach-uniphier
│   │   │   ├── arm32
│   │   │   │   ├── arm-mpcore.h
│   │   │   │   ├── cache-uniphier.c
│   │   │   │   ├── cache-uniphier.h
│   │   │   │   ├── debug_ll.S
│   │   │   │   ├── late_lowlevel_init.S
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── psci.c
│   │   │   │   ├── psci_smp.S
│   │   │   │   └── timer.c
│   │   │   ├── arm64
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   └── mem_map.c
│   │   │   ├── bcu
│   │   │   │   ├── bcu-ld4.c
│   │   │   │   ├── bcu-regs.h
│   │   │   │   └── Makefile
│   │   │   ├── board_init.c
│   │   │   ├── board_late_init.c
│   │   │   ├── boards.c
│   │   │   ├── boot-device
│   │   │   │   ├── boot-device.c
│   │   │   │   ├── boot-device.h
│   │   │   │   ├── boot-device-ld11.c
│   │   │   │   ├── boot-device-ld4.c
│   │   │   │   ├── boot-device-pro5.c
│   │   │   │   ├── boot-device-pxs2.c
│   │   │   │   ├── boot-device-pxs3.c
│   │   │   │   └── Makefile
│   │   │   ├── clk
│   │   │   │   ├── clk-dram-ld4.c
│   │   │   │   ├── clk-dram-pro5.c
│   │   │   │   ├── clk-dram-pxs2.c
│   │   │   │   ├── clk-early-ld4.c
│   │   │   │   ├── clk-ld11.c
│   │   │   │   ├── clk-ld20.c
│   │   │   │   ├── clk-ld4.c
│   │   │   │   ├── clk-pro4.c
│   │   │   │   ├── clk-pro5.c
│   │   │   │   ├── clk-pxs2.c
│   │   │   │   ├── clk-pxs3.c
│   │   │   │   ├── dpll-ld4.c
│   │   │   │   ├── dpll-pro4.c
│   │   │   │   ├── dpll-pro5.c
│   │   │   │   ├── dpll-pxs2.c
│   │   │   │   ├── dpll-sld8.c
│   │   │   │   ├── dpll-tail.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pll-base-ld20.c
│   │   │   │   ├── pll.h
│   │   │   │   ├── pll-ld11.c
│   │   │   │   ├── pll-ld20.c
│   │   │   │   ├── pll-ld4.c
│   │   │   │   ├── pll-pro4.c
│   │   │   │   └── pll-pxs3.c
│   │   │   ├── cpu-info.c
│   │   │   ├── debug.h
│   │   │   ├── debug-uart
│   │   │   │   ├── debug-uart.c
│   │   │   │   ├── debug-uart.h
│   │   │   │   ├── debug-uart-ld20.c
│   │   │   │   ├── debug-uart-ld4.c
│   │   │   │   ├── debug-uart-ld6b.c
│   │   │   │   ├── debug-uart-pro4.c
│   │   │   │   ├── debug-uart-pro5.c
│   │   │   │   ├── debug-uart-pxs2.c
│   │   │   │   ├── debug-uart-sld8.c
│   │   │   │   └── Makefile
│   │   │   ├── dram
│   │   │   │   ├── cmd_ddrmphy.c
│   │   │   │   ├── cmd_ddrphy.c
│   │   │   │   ├── ddrmphy-regs.h
│   │   │   │   ├── ddrphy-init.h
│   │   │   │   ├── ddrphy-ld4.c
│   │   │   │   ├── ddrphy-regs.h
│   │   │   │   ├── ddrphy-training.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── umc-ld4.c
│   │   │   │   ├── umc-pro4.c
│   │   │   │   ├── umc-pro5.c
│   │   │   │   ├── umc-pxs2.c
│   │   │   │   ├── umc-regs.h
│   │   │   │   └── umc-sld8.c
│   │   │   ├── dram_init.c
│   │   │   ├── init.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── memconf.c
│   │   │   ├── micro-support-card.c
│   │   │   ├── micro-support-card.h
│   │   │   ├── mmc-boot-mode.c
│   │   │   ├── mmc-first-dev.c
│   │   │   ├── pinctrl-glue.c
│   │   │   ├── reset.c
│   │   │   ├── sbc
│   │   │   │   ├── Makefile
│   │   │   │   ├── sbc.c
│   │   │   │   ├── sbc-ld11.c
│   │   │   │   ├── sbc-ld4.c
│   │   │   │   ├── sbc-pxs2.c
│   │   │   │   └── sbc-regs.h
│   │   │   ├── sc64-regs.h
│   │   │   ├── sc-regs.h
│   │   │   ├── sg-regs.h
│   │   │   ├── soc-info.c
│   │   │   ├── soc-info.h
│   │   │   └── spl_board_init.c
│   │   ├── mach-versatile
│   │   │   ├── Makefile
│   │   │   ├── reset.S
│   │   │   └── timer.c
│   │   ├── mach-zynq
│   │   │   ├── clk.c
│   │   │   ├── cpu.c
│   │   │   ├── ddrc.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── clk.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── hardware.h
│   │   │   │   └── sys_proto.h
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   ├── slcr.c
│   │   │   ├── spl.c
│   │   │   ├── timer.c
│   │   │   ├── u-boot.lds
│   │   │   └── u-boot-spl.lds
│   │   ├── Makefile
│   │   └── thumb1
│   │   └── include
│   │   └── asm
│   │   └── proc-armv
│   │   └── system.h
│   ├── Kconfig
│   ├── m68k
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── mcf5227x
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   ├── mcf523x
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   ├── mcf52x2
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu.h
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   ├── mcf530x
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   ├── mcf532x
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   ├── mcf5445x
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pci.c
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   ├── mcf547x_8x
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pci.c
│   │   │   │   ├── slicetimer.c
│   │   │   │   ├── speed.c
│   │   │   │   └── start.S
│   │   │   └── u-boot.lds
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── coldfire
│   │   │   │   ├── ata.h
│   │   │   │   ├── crossbar.h
│   │   │   │   ├── dspi.h
│   │   │   │   ├── edma.h
│   │   │   │   ├── eport.h
│   │   │   │   ├── flexbus.h
│   │   │   │   ├── flexcan.h
│   │   │   │   ├── intctrl.h
│   │   │   │   ├── lcd.h
│   │   │   │   ├── mdha.h
│   │   │   │   ├── pwm.h
│   │   │   │   ├── qspi.h
│   │   │   │   ├── rng.h
│   │   │   │   ├── skha.h
│   │   │   │   └── ssi.h
│   │   │   ├── config.h
│   │   │   ├── fec.h
│   │   │   ├── fsl_i2c.h
│   │   │   ├── fsl_mcdmafec.h
│   │   │   ├── global_data.h
│   │   │   ├── immap_520x.h
│   │   │   ├── immap_5227x.h
│   │   │   ├── immap_5235.h
│   │   │   ├── immap_5249.h
│   │   │   ├── immap_5253.h
│   │   │   ├── immap_5271.h
│   │   │   ├── immap_5272.h
│   │   │   ├── immap_5275.h
│   │   │   ├── immap_5282.h
│   │   │   ├── immap_5301x.h
│   │   │   ├── immap_5307.h
│   │   │   ├── immap_5329.h
│   │   │   ├── immap_5441x.h
│   │   │   ├── immap_5445x.h
│   │   │   ├── immap_547x_8x.h
│   │   │   ├── immap.h
│   │   │   ├── io.h
│   │   │   ├── linkage.h
│   │   │   ├── m520x.h
│   │   │   ├── m5227x.h
│   │   │   ├── m5235.h
│   │   │   ├── m5249.h
│   │   │   ├── m5253.h
│   │   │   ├── m5271.h
│   │   │   ├── m5272.h
│   │   │   ├── m5275.h
│   │   │   ├── m5282.h
│   │   │   ├── m5301x.h
│   │   │   ├── m5307.h
│   │   │   ├── m5329.h
│   │   │   ├── m5441x.h
│   │   │   ├── m5445x.h
│   │   │   ├── m547x_8x.h
│   │   │   ├── posix_types.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── rtc.h
│   │   │   ├── sections.h
│   │   │   ├── string.h
│   │   │   ├── timer.h
│   │   │   ├── types.h
│   │   │   ├── uart.h
│   │   │   ├── u-boot.h
│   │   │   └── unaligned.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── ashldi3.c
│   │   │   ├── bootm.c
│   │   │   ├── cache.c
│   │   │   ├── interrupts.c
│   │   │   ├── lshrdi3.c
│   │   │   ├── Makefile
│   │   │   ├── muldi3.c
│   │   │   ├── time.c
│   │   │   └── traps.c
│   │   └── Makefile
│   ├── microblaze
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── cache.c
│   │   │   ├── exception.c
│   │   │   ├── interrupts.c
│   │   │   ├── irq.S
│   │   │   ├── Makefile
│   │   │   ├── spl.c
│   │   │   ├── start.S
│   │   │   ├── timer.c
│   │   │   ├── u-boot.lds
│   │   │   └── u-boot-spl.lds
│   │   ├── dts
│   │   │   ├── Makefile
│   │   │   └── microblaze-generic.dts
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── asm.h
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── config.h
│   │   │   ├── global_data.h
│   │   │   ├── gpio.h
│   │   │   ├── io.h
│   │   │   ├── linkage.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
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── bootm.c
│   │   │   ├── Makefile
│   │   │   └── muldi3.c
│   │   └── Makefile
│   ├── mips
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── cm_init.S
│   │   │   ├── cpu.c
│   │   │   ├── interrupts.c
│   │   │   ├── Makefile
│   │   │   ├── mips32
│   │   │   │   └── config.mk
│   │   │   ├── mips64
│   │   │   │   └── config.mk
│   │   │   ├── start.S
│   │   │   ├── time.c
│   │   │   ├── u-boot.lds
│   │   │   └── u-boot-spl.lds
│   │   ├── dts
│   │   │   ├── ap121.dts
│   │   │   ├── ap143.dts
│   │   │   ├── ar933x.dtsi
│   │   │   ├── ar934x.dtsi
│   │   │   ├── brcm,bcm3380.dtsi
│   │   │   ├── brcm,bcm63268.dtsi
│   │   │   ├── brcm,bcm6328.dtsi
│   │   │   ├── brcm,bcm6338.dtsi
│   │   │   ├── brcm,bcm6348.dtsi
│   │   │   ├── brcm,bcm6358.dtsi
│   │   │   ├── comtrend,ar-5387un.dts
│   │   │   ├── comtrend,ct-5361.dts
│   │   │   ├── comtrend,vr-3032u.dts
│   │   │   ├── huawei,hg556a.dts
│   │   │   ├── img,boston.dts
│   │   │   ├── Makefile
│   │   │   ├── microAptiv.dtsi
│   │   │   ├── mti,malta.dts
│   │   │   ├── netgear,cg3100d.dts
│   │   │   ├── nexys4ddr.dts
│   │   │   ├── pic32mzda.dtsi
│   │   │   ├── pic32mzda_sk.dts
│   │   │   ├── qca953x.dtsi
│   │   │   ├── sagem,f@st1704.dts
│   │   │   ├── sfr,nb4-ser.dts
│   │   │   ├── skeleton.dtsi
│   │   │   └── tplink_wdr4300.dts
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── addrspace.h
│   │   │   ├── asm.h
│   │   │   ├── asm-offsets.h
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cachectl.h
│   │   │   ├── cache.h
│   │   │   ├── cacheops.h
│   │   │   ├── cm.h
│   │   │   ├── config.h
│   │   │   ├── const.h
│   │   │   ├── cpu-features.h
│   │   │   ├── global_data.h
│   │   │   ├── gpio.h
│   │   │   ├── io.h
│   │   │   ├── isadep.h
│   │   │   ├── linkage.h
│   │   │   ├── mach-generic
│   │   │   │   ├── cpu-feature-overrides.h
│   │   │   │   ├── ioremap.h
│   │   │   │   ├── mangle-port.h
│   │   │   │   └── spaces.h
│   │   │   ├── malta.h
│   │   │   ├── mipsregs.h
│   │   │   ├── pgtable-bits.h
│   │   │   ├── posix_types.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── reboot.h
│   │   │   ├── regdef.h
│   │   │   ├── reg.h
│   │   │   ├── relocs.h
│   │   │   ├── sections.h
│   │   │   ├── sgidefs.h
│   │   │   ├── string.h
│   │   │   ├── system.h
│   │   │   ├── types.h
│   │   │   ├── u-boot.h
│   │   │   ├── u-boot-mips.h
│   │   │   └── unaligned.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── ashldi3.c
│   │   │   ├── ashrdi3.c
│   │   │   ├── asm-offsets.c
│   │   │   ├── bootm.c
│   │   │   ├── cache.c
│   │   │   ├── cache_init.S
│   │   │   ├── genex.S
│   │   │   ├── libgcc.h
│   │   │   ├── lshrdi3.c
│   │   │   ├── Makefile
│   │   │   ├── reloc.c
│   │   │   ├── stack.c
│   │   │   └── traps.c
│   │   ├── mach-ath79
│   │   │   ├── ar933x
│   │   │   │   ├── clk.c
│   │   │   │   ├── ddr.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   └── Makefile
│   │   │   ├── ar934x
│   │   │   │   ├── clk.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── ddr.c
│   │   │   │   └── Makefile
│   │   │   ├── cpu.c
│   │   │   ├── dram.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── ar71xx_regs.h
│   │   │   │   ├── ath79.h
│   │   │   │   └── ddr.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── qca953x
│   │   │   │   ├── clk.c
│   │   │   │   ├── ddr.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   └── Makefile
│   │   │   └── reset.c
│   │   ├── mach-au1x00
│   │   │   ├── au1x00_eth.c
│   │   │   ├── au1x00_ide.c
│   │   │   ├── au1x00_serial.c
│   │   │   ├── au1x00_usb_ohci.c
│   │   │   ├── au1x00_usb_ohci.h
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   └── au1x00.h
│   │   │   └── Makefile
│   │   ├── mach-bmips
│   │   │   ├── dram.c
│   │   │   ├── include
│   │   │   │   └── ioremap.h
│   │   │   ├── Kconfig
│   │   │   └── Makefile
│   │   ├── mach-pic32
│   │   │   ├── cpu.c
│   │   │   ├── include
│   │   │   │   └── mach
│   │   │   │   ├── ddr.h
│   │   │   │   └── pic32.h
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── Makefile
│   │   │   └── reset.c
│   │   ├── Makefile
│   │   └── Makefile.postlink
│   ├── nds32
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   └── n1213
│   │   │   ├── ae3xx
│   │   │   │   ├── cpu.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── timer.c
│   │   │   │   └── watchdog.S
│   │   │   ├── ag101
│   │   │   │   ├── cpu.c
│   │   │   │   ├── lowlevel_init.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── timer.c
│   │   │   │   └── watchdog.S
│   │   │   ├── Makefile
│   │   │   ├── start.S
│   │   │   └── u-boot.lds
│   │   ├── dts
│   │   │   ├── ae3xx.dts
│   │   │   ├── ag101p.dts
│   │   │   └── Makefile
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── arch-ae3xx
│   │   │   │   └── ae3xx.h
│   │   │   ├── arch-ag101
│   │   │   │   └── ag101.h
│   │   │   ├── arch-ag102
│   │   │   │   └── ag102.h
│   │   │   ├── bitops.h
│   │   │   ├── bootm.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── config.h
│   │   │   ├── dma-mapping.h
│   │   │   ├── global_data.h
│   │   │   ├── io.h
│   │   │   ├── linkage.h
│   │   │   ├── mach-types.h
│   │   │   ├── macro.h
│   │   │   ├── posix_types.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── sections.h
│   │   │   ├── setup.h
│   │   │   ├── string.h
│   │   │   ├── system.h
│   │   │   ├── types.h
│   │   │   ├── u-boot.h
│   │   │   ├── u-boot-nds32.h
│   │   │   └── unaligned.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── asm-offsets.c
│   │   │   ├── boot.c
│   │   │   ├── bootm.c
│   │   │   ├── cache.c
│   │   │   ├── interrupts.c
│   │   │   └── Makefile
│   │   └── Makefile
│   ├── nios2
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── cpu.c
│   │   │   ├── exceptions.S
│   │   │   ├── interrupts.c
│   │   │   ├── Makefile
│   │   │   ├── start.S
│   │   │   ├── traps.c
│   │   │   └── u-boot.lds
│   │   ├── dts
│   │   │   ├── 10m50_devboard.dts
│   │   │   ├── 3c120_devboard.dts
│   │   │   └── Makefile
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── bitops
│   │   │   │   ├── atomic.h
│   │   │   │   ├── ffs.h
│   │   │   │   └── non-atomic.h
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── config.h
│   │   │   ├── dma-mapping.h
│   │   │   ├── global_data.h
│   │   │   ├── gpio.h
│   │   │   ├── io.h
│   │   │   ├── linkage.h
│   │   │   ├── nios2.h
│   │   │   ├── opcodes.h
│   │   │   ├── posix_types.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── sections.h
│   │   │   ├── string.h
│   │   │   ├── system.h
│   │   │   ├── types.h
│   │   │   ├── u-boot.h
│   │   │   └── unaligned.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── bootm.c
│   │   │   ├── cache.c
│   │   │   ├── libgcc.c
│   │   │   ├── longlong.h
│   │   │   └── Makefile
│   │   └── Makefile
│   ├── powerpc
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── Makefile
│   │   │   ├── mpc83xx
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── ecc.c
│   │   │   │   ├── fdt.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── law.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pci.c
│   │   │   │   ├── pcie.c
│   │   │   │   ├── qe_io.c
│   │   │   │   ├── serdes.c
│   │   │   │   ├── spd_sdram.c
│   │   │   │   ├── speed.c
│   │   │   │   ├── spl_minimal.c
│   │   │   │   ├── start.S
│   │   │   │   ├── traps.c
│   │   │   │   ├── u-boot.lds
│   │   │   │   └── u-boot-spl.lds
│   │   │   ├── mpc85xx
│   │   │   │   ├── b4860_ids.c
│   │   │   │   ├── b4860_serdes.c
│   │   │   │   ├── bsc9132_serdes.c
│   │   │   │   ├── c29x_serdes.c
│   │   │   │   ├── cmd_errata.c
│   │   │   │   ├── commproc.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── cpu_init_early.c
│   │   │   │   ├── ether_fcc.c
│   │   │   │   ├── fdt.c
│   │   │   │   ├── fsl_corenet2_serdes.c
│   │   │   │   ├── fsl_corenet2_serdes.h
│   │   │   │   ├── fsl_corenet_serdes.c
│   │   │   │   ├── fsl_corenet_serdes.h
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── liodn.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── mp.c
│   │   │   │   ├── mpc8536_serdes.c
│   │   │   │   ├── mpc8544_serdes.c
│   │   │   │   ├── mpc8548_serdes.c
│   │   │   │   ├── mpc8568_serdes.c
│   │   │   │   ├── mpc8569_serdes.c
│   │   │   │   ├── mpc8572_serdes.c
│   │   │   │   ├── mp.h
│   │   │   │   ├── p1010_serdes.c
│   │   │   │   ├── p1021_serdes.c
│   │   │   │   ├── p1022_serdes.c
│   │   │   │   ├── p1023_serdes.c
│   │   │   │   ├── p2020_serdes.c
│   │   │   │   ├── p2041_ids.c
│   │   │   │   ├── p2041_serdes.c
│   │   │   │   ├── p3041_ids.c
│   │   │   │   ├── p3041_serdes.c
│   │   │   │   ├── p4080_ids.c
│   │   │   │   ├── p4080_serdes.c
│   │   │   │   ├── p5020_ids.c
│   │   │   │   ├── p5020_serdes.c
│   │   │   │   ├── p5040_ids.c
│   │   │   │   ├── p5040_serdes.c
│   │   │   │   ├── pci.c
│   │   │   │   ├── portals.c
│   │   │   │   ├── qe_io.c
│   │   │   │   ├── release.S
│   │   │   │   ├── resetvec.S
│   │   │   │   ├── serial_scc.c
│   │   │   │   ├── speed.c
│   │   │   │   ├── spl_minimal.c
│   │   │   │   ├── start.S
│   │   │   │   ├── t1024_ids.c
│   │   │   │   ├── t1024_serdes.c
│   │   │   │   ├── t1040_ids.c
│   │   │   │   ├── t1040_serdes.c
│   │   │   │   ├── t2080_ids.c
│   │   │   │   ├── t2080_serdes.c
│   │   │   │   ├── t4240_ids.c
│   │   │   │   ├── t4240_serdes.c
│   │   │   │   ├── tlb.c
│   │   │   │   ├── traps.c
│   │   │   │   ├── u-boot.lds
│   │   │   │   ├── u-boot-nand.lds
│   │   │   │   ├── u-boot-nand_spl.lds
│   │   │   │   └── u-boot-spl.lds
│   │   │   ├── mpc86xx
│   │   │   │   ├── cache.S
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── fdt.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── mp.c
│   │   │   │   ├── mpc8610_serdes.c
│   │   │   │   ├── mpc8641_serdes.c
│   │   │   │   ├── release.S
│   │   │   │   ├── speed.c
│   │   │   │   ├── start.S
│   │   │   │   ├── traps.c
│   │   │   │   └── u-boot.lds
│   │   │   ├── mpc8xx
│   │   │   │   ├── cache.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── cpu_init.c
│   │   │   │   ├── fdt.c
│   │   │   │   ├── immap.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── reginfo.c
│   │   │   │   ├── speed.c
│   │   │   │   ├── start.S
│   │   │   │   └── traps.c
│   │   │   └── mpc8xxx
│   │   │   ├── cpu.c
│   │   │   ├── fdt.c
│   │   │   ├── fsl_lbc.c
│   │   │   ├── fsl_pamu.c
│   │   │   ├── law.c
│   │   │   ├── Makefile
│   │   │   ├── pamu_table.c
│   │   │   └── srio.c
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── 8xx_immap.h
│   │   │   ├── arch-mpc83xx
│   │   │   │   └── gpio.h
│   │   │   ├── arch-mpc85xx
│   │   │   │   └── gpio.h
│   │   │   ├── arch-ppc4xx
│   │   │   │   └── gpio.h
│   │   │   ├── atomic.h
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── config.h
│   │   │   ├── config_mpc85xx.h
│   │   │   ├── config_mpc86xx.h
│   │   │   ├── cpm_85xx.h
│   │   │   ├── e300.h
│   │   │   ├── fsl_dma.h
│   │   │   ├── fsl_fdt.h
│   │   │   ├── fsl_i2c.h
│   │   │   ├── fsl_law.h
│   │   │   ├── fsl_lbc.h
│   │   │   ├── fsl_liodn.h
│   │   │   ├── fsl_mpc83xx_serdes.h
│   │   │   ├── fsl_pamu.h
│   │   │   ├── fsl_pci.h
│   │   │   ├── fsl_portals.h
│   │   │   ├── fsl_secure_boot.h
│   │   │   ├── fsl_serdes.h
│   │   │   ├── fsl_srio.h
│   │   │   ├── global_data.h
│   │   │   ├── gpio.h
│   │   │   ├── immap_83xx.h
│   │   │   ├── immap_85xx.h
│   │   │   ├── immap_86xx.h
│   │   │   ├── interrupt.h
│   │   │   ├── io.h
│   │   │   ├── iopin_8xx.h
│   │   │   ├── linkage.h
│   │   │   ├── mc146818rtc.h
│   │   │   ├── mmu.h
│   │   │   ├── mpc8349_pci.h
│   │   │   ├── mpc85xx_gpio.h
│   │   │   ├── mpc8xxx_spi.h
│   │   │   ├── mp.h
│   │   │   ├── pci_io.h
│   │   │   ├── posix_types.h
│   │   │   ├── ppc.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── sections.h
│   │   │   ├── sigcontext.h
│   │   │   ├── signal.h
│   │   │   ├── spl.h
│   │   │   ├── string.h
│   │   │   ├── types.h
│   │   │   ├── u-boot.h
│   │   │   ├── unaligned.h
│   │   │   └── xilinx_irq.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── _ashldi3.S
│   │   │   ├── _ashrdi3.S
│   │   │   ├── bat_rw.c
│   │   │   ├── bootm.c
│   │   │   ├── cache.c
│   │   │   ├── extable.c
│   │   │   ├── interrupts.c
│   │   │   ├── kgdb.c
│   │   │   ├── _lshrdi3.S
│   │   │   ├── Makefile
│   │   │   ├── ppccache.S
│   │   │   ├── ppcstring.S
│   │   │   ├── reloc.S
│   │   │   ├── spl.c
│   │   │   ├── stack.c
│   │   │   ├── ticks.S
│   │   │   └── time.c
│   │   └── Makefile
│   ├── sandbox
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── cpu.c
│   │   │   ├── eth-raw-os.c
│   │   │   ├── Makefile
│   │   │   ├── os.c
│   │   │   ├── sdl.c
│   │   │   ├── spl.c
│   │   │   ├── start.c
│   │   │   ├── state.c
│   │   │   ├── u-boot.lds
│   │   │   └── u-boot-spl.lds
│   │   ├── dts
│   │   │   ├── cros-ec-keyboard.dtsi
│   │   │   ├── Makefile
│   │   │   ├── sandbox.dts
│   │   │   ├── sandbox_pmic.dtsi
│   │   │   └── test.dts
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── clk.h
│   │   │   ├── config.h
│   │   │   ├── eth.h
│   │   │   ├── eth-raw-os.h
│   │   │   ├── getopt.h
│   │   │   ├── global_data.h
│   │   │   ├── gpio.h
│   │   │   ├── io.h
│   │   │   ├── linkage.h
│   │   │   ├── mbox.h
│   │   │   ├── posix_types.h
│   │   │   ├── power-domain.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── reset.h
│   │   │   ├── rtc.h
│   │   │   ├── sdl.h
│   │   │   ├── sections.h
│   │   │   ├── sound.h
│   │   │   ├── spi.h
│   │   │   ├── spl.h
│   │   │   ├── state.h
│   │   │   ├── string.h
│   │   │   ├── system.h
│   │   │   ├── test.h
│   │   │   ├── types.h
│   │   │   ├── u-boot.h
│   │   │   ├── u-boot-sandbox.h
│   │   │   └── unaligned.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── bootm.c
│   │   │   ├── interrupts.c
│   │   │   ├── Makefile
│   │   │   └── pci_io.c
│   │   └── Makefile
│   ├── sh
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── sh2
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   └── watchdog.c
│   │   │   ├── sh3
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   └── watchdog.c
│   │   │   ├── sh4
│   │   │   │   ├── cache.c
│   │   │   │   ├── config.mk
│   │   │   │   ├── cpu.c
│   │   │   │   ├── interrupts.c
│   │   │   │   ├── Makefile
│   │   │   │   └── watchdog.c
│   │   │   └── u-boot.lds
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── bitops.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── config.h
│   │   │   ├── cpu_sh2.h
│   │   │   ├── cpu_sh3.h
│   │   │   ├── cpu_sh4.h
│   │   │   ├── cpu_sh7203.h
│   │   │   ├── cpu_sh7264.h
│   │   │   ├── cpu_sh7269.h
│   │   │   ├── cpu_sh7706.h
│   │   │   ├── cpu_sh7710.h
│   │   │   ├── cpu_sh7720.h
│   │   │   ├── cpu_sh7722.h
│   │   │   ├── cpu_sh7723.h
│   │   │   ├── cpu_sh7724.h
│   │   │   ├── cpu_sh7734.h
│   │   │   ├── cpu_sh7750.h
│   │   │   ├── cpu_sh7752.h
│   │   │   ├── cpu_sh7753.h
│   │   │   ├── cpu_sh7757.h
│   │   │   ├── cpu_sh7763.h
│   │   │   ├── cpu_sh7780.h
│   │   │   ├── cpu_sh7785.h
│   │   │   ├── global_data.h
│   │   │   ├── io.h
│   │   │   ├── irqflags.h
│   │   │   ├── linkage.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.h
│   │   │   ├── unaligned-sh4a.h
│   │   │   └── zimage.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── ashiftrt.S
│   │   │   ├── ashldi3.c
│   │   │   ├── ashlsi3.S
│   │   │   ├── ashrdi3.c
│   │   │   ├── ashrsi3.S
│   │   │   ├── board.c
│   │   │   ├── bootm.c
│   │   │   ├── Kconfig
│   │   │   ├── libgcc.h
│   │   │   ├── lshrdi3.c
│   │   │   ├── lshrsi3.S
│   │   │   ├── Makefile
│   │   │   ├── movmem.S
│   │   │   ├── start.S
│   │   │   ├── time.c
│   │   │   ├── time_sh2.c
│   │   │   ├── udiv_qrnnd.S
│   │   │   ├── udivsi3_i4i-Os.S
│   │   │   ├── udivsi3_i4i.S
│   │   │   ├── udivsi3.S
│   │   │   └── zimageboot.c
│   │   └── Makefile
│   ├── x86
│   │   ├── config.mk
│   │   ├── cpu
│   │   │   ├── baytrail
│   │   │   │   ├── acpi.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── early_uart.c
│   │   │   │   ├── fsp_configs.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── valleyview.c
│   │   │   ├── braswell
│   │   │   │   ├── braswell.c
│   │   │   │   ├── early_uart.c
│   │   │   │   ├── fsp_configs.c
│   │   │   │   ├── Kconfig
│   │   │   │   └── Makefile
│   │   │   ├── broadwell
│   │   │   │   ├── cpu.c
│   │   │   │   ├── iobp.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── lpc.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── me.c
│   │   │   │   ├── northbridge.c
│   │   │   │   ├── pch.c
│   │   │   │   ├── pinctrl_broadwell.c
│   │   │   │   ├── power_state.c
│   │   │   │   ├── refcode.c
│   │   │   │   ├── sata.c
│   │   │   │   └── sdram.c
│   │   │   ├── call32.S
│   │   │   ├── config.mk
│   │   │   ├── coreboot
│   │   │   │   ├── car.S
│   │   │   │   ├── coreboot.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── sdram.c
│   │   │   │   ├── tables.c
│   │   │   │   └── timestamp.c
│   │   │   ├── cpu.c
│   │   │   ├── cpu_x86.c
│   │   │   ├── efi
│   │   │   │   ├── efi.c
│   │   │   │   ├── Makefile
│   │   │   │   └── sdram.c
│   │   │   ├── i386
│   │   │   │   ├── call64.S
│   │   │   │   ├── cpu.c
│   │   │   │   ├── interrupt.c
│   │   │   │   ├── Makefile
│   │   │   │   └── setjmp.S
│   │   │   ├── intel_common
│   │   │   │   ├── car.S
│   │   │   │   ├── cpu.c
│   │   │   │   ├── lpc.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── me_status.c
│   │   │   │   ├── microcode.c
│   │   │   │   ├── mrc.c
│   │   │   │   ├── pch.c
│   │   │   │   └── report_platform.c
│   │   │   ├── ioapic.c
│   │   │   ├── irq.c
│   │   │   ├── ivybridge
│   │   │   │   ├── bd82x6x.c
│   │   │   │   ├── cpu.c
│   │   │   │   ├── early_me.c
│   │   │   │   ├── fsp_configs.c
│   │   │   │   ├── ivybridge.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── lpc.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── model_206ax.c
│   │   │   │   ├── northbridge.c
│   │   │   │   ├── sata.c
│   │   │   │   ├── sdram.c
│   │   │   │   └── sdram_nop.c
│   │   │   ├── lapic.c
│   │   │   ├── Makefile
│   │   │   ├── mp_init.c
│   │   │   ├── mtrr.c
│   │   │   ├── pci.c
│   │   │   ├── qemu
│   │   │   │   ├── car.S
│   │   │   │   ├── cpu.c
│   │   │   │   ├── dram.c
│   │   │   │   ├── e820.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── qemu.c
│   │   │   ├── quark
│   │   │   │   ├── acpi.c
│   │   │   │   ├── car.S
│   │   │   │   ├── dram.c
│   │   │   │   ├── hte.c
│   │   │   │   ├── hte.h
│   │   │   │   ├── irq.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── mrc.c
│   │   │   │   ├── mrc_util.c
│   │   │   │   ├── mrc_util.h
│   │   │   │   ├── msg_port.c
│   │   │   │   ├── quark.c
│   │   │   │   ├── smc.c
│   │   │   │   └── smc.h
│   │   │   ├── queensbay
│   │   │   │   ├── fsp_configs.c
│   │   │   │   ├── irq.c
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   └── tnc.c
│   │   │   ├── resetvec.S
│   │   │   ├── sipi_vector.S
│   │   │   ├── start16.S
│   │   │   ├── start64.S
│   │   │   ├── start.S
│   │   │   ├── tangier
│   │   │   │   ├── acpi.c
│   │   │   │   ├── car.S
│   │   │   │   ├── Kconfig
│   │   │   │   ├── Makefile
│   │   │   │   ├── sdram.c
│   │   │   │   └── tangier.c
│   │   │   ├── turbo.c
│   │   │   ├── u-boot-64.lds
│   │   │   ├── u-boot.lds
│   │   │   ├── u-boot-spl.lds
│   │   │   ├── wakeup.S
│   │   │   └── x86_64
│   │   │   ├── cpu.c
│   │   │   ├── interrupts.c
│   │   │   ├── Makefile
│   │   │   └── setjmp.c
│   │   ├── dts
│   │   │   ├── bayleybay.dts
│   │   │   ├── baytrail_som-db5800-som-6867.dts
│   │   │   ├── broadwell_som-6896.dts
│   │   │   ├── cherryhill.dts
│   │   │   ├── chromebook_link.dts
│   │   │   ├── chromebook_samus.dts
│   │   │   ├── chromebox_panther.dts
│   │   │   ├── conga-qeval20-qa3-e3845.dts
│   │   │   ├── coreboot_fb.dtsi
│   │   │   ├── cougarcanyon2.dts
│   │   │   ├── crownbay.dts
│   │   │   ├── dfi-bt700.dtsi
│   │   │   ├── dfi-bt700-q7x-151.dts
│   │   │   ├── edison.dts
│   │   │   ├── efi.dts
│   │   │   ├── emulation-u-boot.dtsi
│   │   │   ├── galileo.dts
│   │   │   ├── keyboard.dtsi
│   │   │   ├── Makefile
│   │   │   ├── microcode
│   │   │   │   ├── m0130673325.dtsi
│   │   │   │   ├── m0130679907.dtsi
│   │   │   │   ├── m01406c2220.dtsi
│   │   │   │   ├── m01406c3363.dtsi
│   │   │   │   ├── m01406c440a.dtsi
│   │   │   │   ├── m0220661105_cv.dtsi
│   │   │   │   ├── m0230671117.dtsi
│   │   │   │   ├── m12206a7_00000029.dtsi
│   │   │   │   ├── m12306a2_00000008.dtsi
│   │   │   │   ├── m12306a4_00000007.dtsi
│   │   │   │   ├── m12306a5_00000007.dtsi
│   │   │   │   ├── m12306a8_00000010.dtsi
│   │   │   │   ├── m12306a9_0000001b.dtsi
│   │   │   │   ├── m7240651_0000001c.dtsi
│   │   │   │   └── mc0306d4_00000018.dtsi
│   │   │   ├── minnowmax.dts
│   │   │   ├── qemu-x86_i440fx.dts
│   │   │   ├── qemu-x86_q35.dts
│   │   │   ├── quark-u-boot.dtsi
│   │   │   ├── rtc.dtsi
│   │   │   ├── serial.dtsi
│   │   │   ├── skeleton.dtsi
│   │   │   ├── theadorable-x86-dfi-bt700.dts
│   │   │   ├── tsc_timer.dtsi
│   │   │   └── u-boot.dtsi
│   │   ├── include
│   │   │   └── asm
│   │   │   ├── acpi
│   │   │   │   ├── debug.asl
│   │   │   │   ├── global_nvs.h
│   │   │   │   ├── globutil.asl
│   │   │   │   ├── irq_helper.h
│   │   │   │   ├── irqlinks.asl
│   │   │   │   ├── irqroute.asl
│   │   │   │   ├── sleepstates.asl
│   │   │   │   └── statdef.asl
│   │   │   ├── acpi_s3.h
│   │   │   ├── acpi_table.h
│   │   │   ├── arch-baytrail
│   │   │   │   ├── acpi
│   │   │   │   │   ├── global_nvs.asl
│   │   │   │   │   ├── gpio.asl
│   │   │   │   │   ├── irqroute.h
│   │   │   │   │   ├── lpc.asl
│   │   │   │   │   ├── platform.asl
│   │   │   │   │   ├── southcluster.asl
│   │   │   │   │   ├── usb.asl
│   │   │   │   │   └── xhci.asl
│   │   │   │   ├── device.h
│   │   │   │   ├── fsp
│   │   │   │   │   ├── fsp_configs.h
│   │   │   │   │   └── fsp_vpd.h
│   │   │   │   ├── global_nvs.h
│   │   │   │   ├── iomap.h
│   │   │   │   └── irq.h
│   │   │   ├── arch-braswell
│   │   │   │   ├── fsp
│   │   │   │   │   ├── fsp_configs.h
│   │   │   │   │   └── fsp_vpd.h
│   │   │   │   ├── gpio.h
│   │   │   │   └── iomap.h
│   │   │   ├── arch-broadwell
│   │   │   │   ├── cpu.h
│   │   │   │   ├── gpio.h
│   │   │   │   ├── iomap.h
│   │   │   │   ├── lpc.h
│   │   │   │   ├── me.h
│   │   │   │   ├── pch.h
│   │   │   │   ├── pei_data.h
│   │   │   │   ├── pm.h
│   │   │   │   ├── rcb.h
│   │   │   │   └── spi.h
│   │   │   ├── arch-coreboot
│   │   │   │   ├── sysinfo.h
│   │   │   │   └── timestamp.h
│   │   │   ├── arch-ivybridge
│   │   │   │   ├── fsp
│   │   │   │   │   ├── fsp_configs.h
│   │   │   │   │   └── fsp_vpd.h
│   │   │   │   ├── me.h
│   │   │   │   ├── model_206ax.h
│   │   │   │   ├── pch.h
│   │   │   │   ├── pei_data.h
│   │   │   │   └── sandybridge.h
│   │   │   ├── arch-qemu
│   │   │   │   ├── device.h
│   │   │   │   └── qemu.h
│   │   │   ├── arch-quark
│   │   │   │   ├── acpi
│   │   │   │   │   ├── global_nvs.asl
│   │   │   │   │   ├── irqroute.h
│   │   │   │   │   ├── lpc.asl
│   │   │   │   │   ├── platform.asl
│   │   │   │   │   └── southcluster.asl
│   │   │   │   ├── device.h
│   │   │   │   ├── global_nvs.h
│   │   │   │   ├── iomap.h
│   │   │   │   ├── irq.h
│   │   │   │   ├── mrc.h
│   │   │   │   ├── msg_port.h
│   │   │   │   └── quark.h
│   │   │   ├── arch-queensbay
│   │   │   │   ├── device.h
│   │   │   │   ├── fsp
│   │   │   │   │   ├── fsp_configs.h
│   │   │   │   │   └── fsp_vpd.h
│   │   │   │   └── tnc.h
│   │   │   ├── arch-tangier
│   │   │   │   ├── acpi
│   │   │   │   │   ├── global_nvs.asl
│   │   │   │   │   ├── platform.asl
│   │   │   │   │   └── southcluster.asl
│   │   │   │   └── global_nvs.h
│   │   │   ├── atomic.h
│   │   │   ├── bitops.h
│   │   │   ├── bootm.h
│   │   │   ├── bootparam.h
│   │   │   ├── byteorder.h
│   │   │   ├── cache.h
│   │   │   ├── cmos_layout.h
│   │   │   ├── config.h
│   │   │   ├── control_regs.h
│   │   │   ├── coreboot_tables.h
│   │   │   ├── cpu_common.h
│   │   │   ├── cpu.h
│   │   │   ├── cpu_x86.h
│   │   │   ├── dma-mapping.h
│   │   │   ├── e820.h
│   │   │   ├── early_cmos.h
│   │   │   ├── elf.h
│   │   │   ├── fsp
│   │   │   │   ├── fsp_api.h
│   │   │   │   ├── fsp_azalia.h
│   │   │   │   ├── fsp_bootmode.h
│   │   │   │   ├── fsp_ffs.h
│   │   │   │   ├── fsp_fv.h
│   │   │   │   ├── fsp_hob.h
│   │   │   │   ├── fsp_infoheader.h
│   │   │   │   ├── fsp_support.h
│   │   │   │   └── fsp_types.h
│   │   │   ├── global_data.h
│   │   │   ├── gpio.h
│   │   │   ├── i8254.h
│   │   │   ├── i8259.h
│   │   │   ├── ibmpc.h
│   │   │   ├── intel_regs.h
│   │   │   ├── interrupt.h
│   │   │   ├── ioapic.h
│   │   │   ├── ioctl.h
│   │   │   ├── io.h
│   │   │   ├── irq.h
│   │   │   ├── ist.h
│   │   │   ├── lapic.h
│   │   │   ├── linkage.h
│   │   │   ├── lpc_common.h
│   │   │   ├── me_common.h
│   │   │   ├── microcode.h
│   │   │   ├── mp.h
│   │   │   ├── mpspec.h
│   │   │   ├── mrccache.h
│   │   │   ├── mrc_common.h
│   │   │   ├── msr.h
│   │   │   ├── msr-index.h
│   │   │   ├── mtrr.h
│   │   │   ├── pch_common.h
│   │   │   ├── pci.h
│   │   │   ├── pirq_routing.h
│   │   │   ├── pmu.h
│   │   │   ├── pnp_def.h
│   │   │   ├── posix_types.h
│   │   │   ├── post.h
│   │   │   ├── processor-flags.h
│   │   │   ├── processor.h
│   │   │   ├── ptrace.h
│   │   │   ├── report_platform.h
│   │   │   ├── scu.h
│   │   │   ├── sections.h
│   │   │   ├── setjmp.h
│   │   │   ├── sfi.h
│   │   │   ├── sipi.h
│   │   │   ├── speedstep.h
│   │   │   ├── spl.h
│   │   │   ├── string.h
│   │   │   ├── tables.h
│   │   │   ├── turbo.h
│   │   │   ├── types.h
│   │   │   ├── u-boot.h
│   │   │   ├── u-boot-x86.h
│   │   │   ├── unaligned.h
│   │   │   ├── video
│   │   │   │   └── edid.h
│   │   │   └── zimage.h
│   │   ├── Kconfig
│   │   ├── lib
│   │   │   ├── acpi_s3.c
│   │   │   ├── acpi_table.c
│   │   │   ├── asm-offsets.c
│   │   │   ├── bios_asm.S
│   │   │   ├── bios.c
│   │   │   ├── bios.h
│   │   │   ├── bios_interrupts.c
│   │   │   ├── bootm.c
│   │   │   ├── cmd_boot.c
│   │   │   ├── cmd_mtrr.c
│   │   │   ├── coreboot_table.c
│   │   │   ├── crt0_ia32_efi.S
│   │   │   ├── crt0_x86_64_efi.S
│   │   │   ├── e820.c
│   │   │   ├── early_cmos.c
│   │   │   ├── efi
│   │   │   │   ├── car.S
│   │   │   │   ├── efi.c
│   │   │   │   ├── Kconfig
│   │   │   │   └── Makefile
│   │   │   ├── elf_ia32_efi.lds
│   │   │   ├── elf_x86_64_efi.lds
│   │   │   ├── fsp
│   │   │   │   ├── cmd_fsp.c
│   │   │   │   ├── fsp_car.S
│   │   │   │   ├── fsp_common.c
│   │   │   │   ├── fsp_dram.c
│   │   │   │   ├── fsp_graphics.c
│   │   │   │   ├── fsp_support.c
│   │   │   │   └── Makefile
│   │   │   ├── gcc.c
│   │   │   ├── i8254.c
│   │   │   ├── i8259.c
│   │   │   ├── init_helpers.c
│   │   │   ├── interrupts.c
│   │   │   ├── lpc-uclass.c
│   │   │   ├── Makefile
│   │   │   ├── mpspec.c
│   │   │   ├── mrccache.c
│   │   │   ├── northbridge-uclass.c
│   │   │   ├── physmem.c
│   │   │   ├── pinctrl_ich6.c
│   │   │   ├── pirq_routing.c
│   │   │   ├── pmu.c
│   │   │   ├── ramtest.c
│   │   │   ├── relocate.c
│   │   │   ├── reloc_ia32_efi.c
│   │   │   ├── reloc_x86_64_efi.c
│   │   │   ├── scu.c
│   │   │   ├── sections.c
│   │   │   ├── sfi.c
│   │   │   ├── spl.c
│   │   │   ├── string.c
│   │   │   ├── tables.c
│   │   │   └── zimage.c
│   │   └── Makefile
│   └── xtensa
│   ├── config.mk
│   ├── cpu
│   │   ├── cpu.c
│   │   ├── exceptions.c
│   │   ├── Makefile
│   │   ├── start.S
│   │   └── u-boot.lds
│   ├── dts
│   │   ├── kc705.dts
│   │   ├── kc705_nommu.dts
│   │   ├── Makefile
│   │   ├── ml605.dts
│   │   ├── ml605_nommu.dts
│   │   ├── xtfpga.dtsi
│   │   ├── xtfpga-flash-128m.dtsi
│   │   └── xtfpga-flash-16m.dtsi
│   ├── include
│   │   └── asm
│   │   ├── addrspace.h
│   │   ├── arch-dc232b
│   │   │   ├── core.h
│   │   │   ├── tie-asm.h
│   │   │   └── tie.h
│   │   ├── arch-dc233c
│   │   │   ├── core.h
│   │   │   ├── tie-asm.h
│   │   │   └── tie.h
│   │   ├── arch-de212
│   │   │   ├── core.h
│   │   │   ├── tie-asm.h
│   │   │   └── tie.h
│   │   ├── asmmacro.h
│   │   ├── atomic.h
│   │   ├── bitops.h
│   │   ├── bootparam.h
│   │   ├── byteorder.h
│   │   ├── cacheasm.h
│   │   ├── cache.h
│   │   ├── config.h
│   │   ├── global_data.h
│   │   ├── io.h
│   │   ├── ldscript.h
│   │   ├── linkage.h
│   │   ├── misc.h
│   │   ├── posix_types.h
│   │   ├── processor.h
│   │   ├── ptrace.h
│   │   ├── regs.h
│   │   ├── sections.h
│   │   ├── string.h
│   │   ├── system.h
│   │   ├── types.h
│   │   ├── u-boot.h
│   │   └── unaligned.h
│   ├── Kconfig
│   ├── lib
│   │   ├── bootm.c
│   │   ├── cache.c
│   │   ├── Makefile
│   │   ├── misc.S
│   │   ├── relocate.c
│   │   └── time.c
│   └── Makefile
├── board
│   ├── 8dtech
│   │   └── eco5pk
│   │   ├── eco5pk.c
│   │   ├── eco5pk.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── abilis
│   │   └── tb100
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── tb100.c
│   ├── advantech
│   │   ├── dms-ba16
│   │   │   ├── clocks.cfg
│   │   │   ├── ddr-setup.cfg
│   │   │   ├── dms-ba16_1g.cfg
│   │   │   ├── dms-ba16_2g.cfg
│   │   │   ├── dms-ba16.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── micron-1g.cfg
│   │   │   └── samsung-2g.cfg
│   │   ├── Kconfig
│   │   └── som-db5800-som-6867
│   │   ├── acpi
│   │   │   └── mainboard.asl
│   │   ├── dsdt.asl
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── som-db5800-som-6867.c
│   │   └── start.S
│   ├── alphaproject
│   │   └── ap_sh4a_4a
│   │   ├── ap_sh4a_4a.c
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── altera
│   │   ├── arria10-socdk
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── socfpga.c
│   │   ├── arria5-socdk
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qts
│   │   │   │   ├── iocsr_config.h
│   │   │   │   ├── pinmux_config.h
│   │   │   │   ├── pll_config.h
│   │   │   │   └── sdram_config.h
│   │   │   └── socfpga.c
│   │   ├── cyclone5-socdk
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qts
│   │   │   │   ├── iocsr_config.h
│   │   │   │   ├── pinmux_config.h
│   │   │   │   ├── pll_config.h
│   │   │   │   └── sdram_config.h
│   │   │   └── socfpga.c
│   │   └── nios2
│   │   └── MAINTAINERS
│   ├── amarula
│   │   └── vyasa-rk3288
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── vyasa-rk3288.c
│   ├── amazon
│   │   └── kc1
│   │   ├── kc1.c
│   │   ├── kc1.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── amlogic
│   │   └── odroid-c2
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── odroid-c2.c
│   │   └── README
│   ├── AndesTech
│   │   ├── adp-ae3xx
│   │   │   ├── adp-ae3xx.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── adp-ag101p
│   │   ├── adp-ag101p.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── Arcturus
│   │   └── ucp1020
│   │   ├── cmd_arc.c
│   │   ├── ddr.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   ├── spl.c
│   │   ├── spl_minimal.c
│   │   ├── tlb.c
│   │   ├── ucp1020.c
│   │   └── ucp1020.h
│   ├── aries
│   │   ├── m28evk
│   │   │   ├── Kconfig
│   │   │   ├── m28evk.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   └── spl_boot.c
│   │   ├── m53evk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── m53evk.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── ma5d4evk
│   │   │   ├── Kconfig
│   │   │   ├── ma5d4evk.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── mcvevk
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── qts
│   │   │   ├── iocsr_config.h
│   │   │   ├── pinmux_config.h
│   │   │   ├── pll_config.h
│   │   │   └── sdram_config.h
│   │   └── socfpga.c
│   ├── aristainetos
│   │   ├── aristainetos2.cfg
│   │   ├── aristainetos.c
│   │   ├── aristainetos.cfg
│   │   ├── aristainetos-v1.c
│   │   ├── aristainetos-v2.c
│   │   ├── axi.cfg
│   │   ├── clocks2.cfg
│   │   ├── clocks.cfg
│   │   ├── ddr-setup2.cfg
│   │   ├── ddr-setup.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mt41j128M.cfg
│   │   └── nt5cc256m16cp.cfg
│   ├── armadeus
│   │   ├── apf27
│   │   │   ├── apf27.c
│   │   │   ├── apf27.h
│   │   │   ├── fpga.c
│   │   │   ├── fpga.h
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── opos6uldev
│   │   ├── board.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── armltd
│   │   ├── integrator
│   │   │   ├── arm-ebi.h
│   │   │   ├── integrator.c
│   │   │   ├── integrator-sc.h
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── pci_v3.h
│   │   │   ├── README
│   │   │   └── timer.c
│   │   ├── vexpress
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── vexpress_common.c
│   │   │   └── vexpress_tc2.c
│   │   └── vexpress64
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pcie.c
│   │   ├── pcie.h
│   │   └── vexpress64.c
│   ├── aspeed
│   │   └── evb_ast2500
│   │   ├── evb_ast2500.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── astro
│   │   └── mcf5373l
│   │   ├── astro.h
│   │   ├── fpga.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── mcf5373l.c
│   ├── atmark-techno
│   │   └── armadillo-800eva
│   │   ├── armadillo-800eva.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── atmel
│   │   ├── at91rm9200ek
│   │   │   ├── at91rm9200ek.c
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9260ek
│   │   │   ├── at91sam9260ek.c
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9261ek
│   │   │   ├── at91sam9261ek.c
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9263ek
│   │   │   ├── at91sam9263ek.c
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9m10g45ek
│   │   │   ├── at91sam9m10g45ek.c
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9n12ek
│   │   │   ├── at91sam9n12ek.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9rlek
│   │   │   ├── at91sam9rlek.c
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── at91sam9x5ek
│   │   │   ├── at91sam9x5ek.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── common
│   │   │   ├── board.c
│   │   │   ├── mac_eeprom.c
│   │   │   ├── Makefile
│   │   │   └── video_display.c
│   │   ├── sama5d27_som1_ek
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sama5d27_som1_ek.c
│   │   ├── sama5d2_ptc
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sama5d2_ptc.c
│   │   ├── sama5d2_xplained
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sama5d2_xplained.c
│   │   ├── sama5d3xek
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sama5d3xek.c
│   │   ├── sama5d3_xplained
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sama5d3_xplained.c
│   │   ├── sama5d4ek
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sama5d4ek.c
│   │   └── sama5d4_xplained
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── sama5d4_xplained.c
│   ├── avionic-design
│   │   ├── common
│   │   │   ├── pinmux-config-tamonten-ng.h
│   │   │   ├── tamonten.c
│   │   │   └── tamonten-ng.c
│   │   ├── medcom-wide
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── plutux
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── tec
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── tec-ng
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── bachmann
│   │   └── ot1200
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mx6q_4x_mt41j128.cfg
│   │   ├── ot1200.c
│   │   ├── ot1200_spl.c
│   │   └── README
│   ├── barco
│   │   ├── platinum
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── platinum.c
│   │   │   ├── platinum.h
│   │   │   ├── platinum_picon.c
│   │   │   ├── platinum_titanium.c
│   │   │   ├── spl_picon.c
│   │   │   └── spl_titanium.c
│   │   └── titanium
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── titanium.c
│   ├── Barix
│   │   └── ipam390
│   │   ├── ipam390-ais-uart.cfg
│   │   ├── ipam390.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README.ipam390
│   │   └── u-boot-spl-ipam390.lds
│   ├── beckhoff
│   │   └── mx53cx9020
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mx53cx9020.c
│   │   └── mx53cx9020_video.c
│   ├── birdland
│   │   └── bav335x
│   │   ├── board.c
│   │   ├── board.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mux.c
│   │   ├── README
│   │   └── u-boot.lds
│   ├── bluegiga
│   │   └── apx4devkit
│   │   ├── apx4devkit.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── spl_boot.c
│   ├── bluewater
│   │   ├── gurnard
│   │   │   ├── gurnard.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── splash_logo.h
│   │   └── snapper9260
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── snapper9260.c
│   ├── bosch
│   │   └── shc
│   │   ├── board.c
│   │   ├── board.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mux.c
│   │   └── README
│   ├── boundary
│   │   └── nitrogen6x
│   │   ├── 1066mhz_4x128mx16.cfg
│   │   ├── 1066mhz_4x256mx16.cfg
│   │   ├── 6x_bootscript_android_recovery.txt
│   │   ├── 6x_bootscript_android.txt
│   │   ├── 6x_bootscript.txt
│   │   ├── 6x_upgrade.txt
│   │   ├── 800mhz_2x128mx16.cfg
│   │   ├── 800mhz_2x256mx16.cfg
│   │   ├── 800mhz_4x128mx16.cfg
│   │   ├── 800mhz_4x256mx16.cfg
│   │   ├── clocks.cfg
│   │   ├── ddr-setup.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── nitrogen6dl2g.cfg
│   │   ├── nitrogen6dl.cfg
│   │   ├── nitrogen6q2g.cfg
│   │   ├── nitrogen6q.cfg
│   │   ├── nitrogen6s1g.cfg
│   │   ├── nitrogen6s.cfg
│   │   ├── nitrogen6x.c
│   │   ├── README
│   │   └── README.mx6qsabrelite
│   ├── broadcom
│   │   ├── bcm11130
│   │   │   └── MAINTAINERS
│   │   ├── bcm11130_nand
│   │   │   └── MAINTAINERS
│   │   ├── bcm23550_w1d
│   │   │   ├── bcm23550_w1d.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── bcm28155_ap
│   │   │   ├── bcm28155_ap.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── bcm28155_w1d
│   │   │   └── MAINTAINERS
│   │   ├── bcm911360_entphn
│   │   │   └── MAINTAINERS
│   │   ├── bcm911360_entphn-ns
│   │   │   └── MAINTAINERS
│   │   ├── bcm911360k
│   │   │   └── MAINTAINERS
│   │   ├── bcm958300k
│   │   │   └── MAINTAINERS
│   │   ├── bcm958300k-ns
│   │   │   └── MAINTAINERS
│   │   ├── bcm958305k
│   │   │   └── MAINTAINERS
│   │   ├── bcm958622hr
│   │   │   └── MAINTAINERS
│   │   ├── bcm958712k
│   │   │   └── MAINTAINERS
│   │   ├── bcmcygnus
│   │   │   └── Kconfig
│   │   ├── bcm_ep
│   │   │   ├── board.c
│   │   │   └── Makefile
│   │   ├── bcmns2
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── northstar2.c
│   │   └── bcmnsp
│   │   └── Kconfig
│   ├── buffalo
│   │   └── lsxl
│   │   ├── Kconfig
│   │   ├── kwbimage-lschl.cfg
│   │   ├── kwbimage-lsxhl.cfg
│   │   ├── lsxl.c
│   │   ├── lsxl.h
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── BuR
│   │   ├── brppt1
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   ├── brxre1
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   └── common
│   │   ├── bur_common.h
│   │   └── common.c
│   ├── BuS
│   │   └── eb_cpu5282
│   │   ├── eb_cpu5282.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── cadence
│   │   └── xtfpga
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   └── xtfpga.c
│   ├── calao
│   │   └── usb_a9263
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── usb_a9263.c
│   ├── CarMediaLab
│   │   └── flea3
│   │   ├── flea3.c
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── cavium
│   │   └── thunderx
│   │   ├── atf.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── thunderx.c
│   ├── ccv
│   │   └── xpress
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── spl.c
│   │   └── xpress.c
│   ├── cei
│   │   └── cei-tk1-som
│   │   ├── cei-tk1-som.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── pinmux-config-cei-tk1-som.h
│   ├── chipspark
│   │   └── popmetal_rk3288
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── popmetal-rk3288.c
│   ├── cirrus
│   │   └── edb93xx
│   │   ├── edb93xx.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── u-boot.lds
│   ├── cloudengines
│   │   └── pogo_e02
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pogo_e02.c
│   │   └── pogo_e02.h
│   ├── cobra5272
│   │   ├── bdm
│   │   │   ├── cobra5272_uboot.gdb
│   │   │   ├── gdbinit.reset
│   │   │   ├── load-cobra_uboot
│   │   │   └── reset
│   │   ├── cobra5272.c
│   │   ├── flash.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── compal
│   │   └── paz00
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── paz00.c
│   ├── compulab
│   │   ├── cl-som-am57x
│   │   │   ├── cl-som-am57x.c
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   └── spl.c
│   │   ├── cl-som-imx7
│   │   │   ├── cl-som-imx7.c
│   │   │   ├── common.c
│   │   │   ├── common.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   └── spl.c
│   │   ├── cm_fx6
│   │   │   ├── cm_fx6.c
│   │   │   ├── common.c
│   │   │   ├── common.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spl.c
│   │   ├── cm_t335
│   │   │   ├── cm_t335.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   ├── spl.c
│   │   │   └── u-boot.lds
│   │   ├── cm_t35
│   │   │   ├── cm_t35.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── cm_t3517
│   │   │   ├── cm_t3517.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   ├── cm_t43
│   │   │   ├── board.h
│   │   │   ├── cm_t43.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   └── spl.c
│   │   ├── cm_t54
│   │   │   ├── cm_t54.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   └── spl.c
│   │   ├── common
│   │   │   ├── common.c
│   │   │   ├── common.h
│   │   │   ├── eeprom.c
│   │   │   ├── eeprom.h
│   │   │   ├── Makefile
│   │   │   ├── omap3_display.c
│   │   │   └── omap3_smc911x.c
│   │   └── trimslice
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── trimslice.c
│   ├── comtrend
│   │   ├── ar5387un
│   │   │   ├── ar-5387un.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── ct5361
│   │   │   ├── ct-5361.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── vr3032u
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── vr-3032u.c
│   ├── congatec
│   │   ├── cgtqmx6eval
│   │   │   ├── cgtqmx6eval.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── conga-qeval20-qa3-e3845
│   │   │   ├── acpi
│   │   │   │   └── mainboard.asl
│   │   │   ├── conga-qeval20-qa3.c
│   │   │   ├── dsdt.asl
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   └── start.S
│   │   └── Kconfig
│   ├── coreboot
│   │   ├── coreboot
│   │   │   ├── coreboot_start.S
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── Kconfig
│   ├── corscience
│   │   └── tricorder
│   │   ├── Kconfig
│   │   ├── led.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── tricorder.c
│   │   ├── tricorder-eeprom.c
│   │   ├── tricorder-eeprom.h
│   │   └── tricorder.h
│   ├── creative
│   │   └── xfi3
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── spl_boot.c
│   │   └── xfi3.c
│   ├── cssi
│   │   ├── MAINTAINERS
│   │   └── MCR3000
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── MCR3000.c
│   │   ├── nand.c
│   │   └── u-boot.lds
│   ├── CZ.NIC
│   │   └── turris_omnia
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── turris_omnia.c
│   ├── davinci
│   │   ├── da8xxevm
│   │   │   ├── da850evm.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── omapl138_lcdk.c
│   │   │   ├── README.da850
│   │   │   └── u-boot-spl-da850evm.lds
│   │   └── ea20
│   │   ├── ea20.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── dbau1x00
│   │   ├── dbau1x00.c
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── dfi
│   │   ├── dfi-bt700
│   │   │   ├── acpi
│   │   │   │   └── mainboard.asl
│   │   │   ├── dfi-bt700.c
│   │   │   ├── dsdt.asl
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   └── Kconfig
│   ├── dhelectronics
│   │   └── dh_imx6
│   │   ├── dh_imx6.c
│   │   ├── dh_imx6_spl.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── d-link
│   │   └── dns325
│   │   ├── dns325.c
│   │   ├── dns325.h
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── ebv
│   │   └── socrates
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── qts
│   │   │   ├── iocsr_config.h
│   │   │   ├── pinmux_config.h
│   │   │   ├── pll_config.h
│   │   │   └── sdram_config.h
│   │   └── socfpga.c
│   ├── efi
│   │   ├── efi-x86
│   │   │   ├── efi.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── Kconfig
│   ├── egnite
│   │   └── ethernut5
│   │   ├── ethernut5.c
│   │   ├── ethernut5_pwrman.c
│   │   ├── ethernut5_pwrman.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── el
│   │   └── el6x
│   │   ├── el6x.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── embest
│   │   └── mx6boards
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── mx6boards.c
│   ├── emulation
│   │   ├── Kconfig
│   │   ├── qemu-arm
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── qemu-arm.c
│   │   └── qemu-x86
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── start.S
│   ├── engicam
│   │   ├── common
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Makefile
│   │   │   └── spl.c
│   │   ├── geam6ul
│   │   │   ├── geam6ul.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── icorem6
│   │   │   ├── icorem6.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── icorem6_rqs
│   │   │   ├── icorem6_rqs.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   └── isiotmx6ul
│   │   ├── isiotmx6ul.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── esd
│   │   ├── meesc
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── meesc.c
│   │   └── vme8349
│   │   ├── caddy.c
│   │   ├── caddy.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pci.c
│   │   ├── vme8349.c
│   │   └── vme8349pin.h
│   ├── espt
│   │   ├── espt.c
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── firefly
│   │   └── firefly-rk3288
│   │   ├── firefly-rk3288.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── freescale
│   │   ├── b4860qds
│   │   │   ├── b4860qds.c
│   │   │   ├── b4860qds_crossbar_con.h
│   │   │   ├── b4860qds.h
│   │   │   ├── b4860qds_qixis.h
│   │   │   ├── b4_pbi.cfg
│   │   │   ├── b4_rcw.cfg
│   │   │   ├── ddr.c
│   │   │   ├── eth_b4860qds.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── spl.c
│   │   │   └── tlb.c
│   │   ├── bsc9131rdb
│   │   │   ├── bsc9131rdb.c
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   ├── spl_minimal.c
│   │   │   └── tlb.c
│   │   ├── bsc9132qds
│   │   │   ├── bsc9132qds.c
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   ├── spl_minimal.c
│   │   │   └── tlb.c
│   │   ├── c29xpcie
│   │   │   ├── c29xpcie.c
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── spl_minimal.c
│   │   │   └── tlb.c
│   │   ├── common
│   │   │   ├── arm_sleep.c
│   │   │   ├── cadmus.c
│   │   │   ├── cadmus.h
│   │   │   ├── cds_pci_ft.c
│   │   │   ├── cds_via.c
│   │   │   ├── cmd_esbc_validate.c
│   │   │   ├── dcu_sii9022a.c
│   │   │   ├── dcu_sii9022a.h
│   │   │   ├── diu_ch7301.c
│   │   │   ├── diu_ch7301.h
│   │   │   ├── eeprom.h
│   │   │   ├── fman.c
│   │   │   ├── fman.h
│   │   │   ├── fsl_chain_of_trust.c
│   │   │   ├── fsl_validate.c
│   │   │   ├── ics307_clk.c
│   │   │   ├── ics307_clk.h
│   │   │   ├── idt8t49n222a_serdes_clk.c
│   │   │   ├── idt8t49n222a_serdes_clk.h
│   │   │   ├── Kconfig
│   │   │   ├── ls102xa_stream_id.c
│   │   │   ├── Makefile
│   │   │   ├── mc34vr500.c
│   │   │   ├── mpc85xx_sleep.c
│   │   │   ├── ngpixis.c
│   │   │   ├── ngpixis.h
│   │   │   ├── ns_access.c
│   │   │   ├── p_corenet
│   │   │   │   ├── law.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pci.c
│   │   │   │   └── tlb.c
│   │   │   ├── pfuze.c
│   │   │   ├── pfuze.h
│   │   │   ├── pixis.c
│   │   │   ├── pixis.h
│   │   │   ├── pq-mds-pib.c
│   │   │   ├── pq-mds-pib.h
│   │   │   ├── qixis.c
│   │   │   ├── qixis.h
│   │   │   ├── sdhc_boot.c
│   │   │   ├── sgmii_riser.c
│   │   │   ├── sgmii_riser.h
│   │   │   ├── sleep.h
│   │   │   ├── spl.h
│   │   │   ├── sys_eeprom.c
│   │   │   ├── via.h
│   │   │   ├── vid.c
│   │   │   ├── vid.h
│   │   │   ├── vsc3316_3308.c
│   │   │   ├── vsc3316_3308.h
│   │   │   ├── zm7300.c
│   │   │   └── zm7300.h
│   │   ├── corenet_ds
│   │   │   ├── corenet_ds.c
│   │   │   ├── corenet_ds.h
│   │   │   ├── ddr.c
│   │   │   ├── eth_hydra.c
│   │   │   ├── eth_p4080.c
│   │   │   ├── eth_superhydra.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p3041ds_ddr.c
│   │   │   ├── p4080ds_ddr.c
│   │   │   ├── p5020ds_ddr.c
│   │   │   ├── p5040ds_ddr.c
│   │   │   ├── pbi.cfg
│   │   │   ├── rcw_p2041rdb.cfg
│   │   │   ├── rcw_p3041ds.cfg
│   │   │   ├── rcw_p4080ds.cfg
│   │   │   ├── rcw_p5020ds.cfg
│   │   │   └── rcw_p5040ds.cfg
│   │   ├── ls1012afrdm
│   │   │   ├── Kconfig
│   │   │   ├── ls1012afrdm.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1012aqds
│   │   │   ├── Kconfig
│   │   │   ├── ls1012aqds.c
│   │   │   ├── ls1012aqds_qixis.h
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1012ardb
│   │   │   ├── Kconfig
│   │   │   ├── ls1012ardb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1021aiot
│   │   │   ├── dcu.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1021aiot.c
│   │   │   ├── ls102xa_pbi.cfg
│   │   │   ├── ls102xa_rcw_sd.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── psci.S
│   │   │   └── README
│   │   ├── ls1021aqds
│   │   │   ├── dcu.c
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1021aqds.c
│   │   │   ├── ls1021aqds_qixis.h
│   │   │   ├── ls102xa_pbi.cfg
│   │   │   ├── ls102xa_rcw_nand.cfg
│   │   │   ├── ls102xa_rcw_sd_ifc.cfg
│   │   │   ├── ls102xa_rcw_sd_qspi.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── psci.S
│   │   │   └── README
│   │   ├── ls1021atwr
│   │   │   ├── dcu.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1021atwr.c
│   │   │   ├── ls102xa_pbi.cfg
│   │   │   ├── ls102xa_rcw_sd_ifc.cfg
│   │   │   ├── ls102xa_rcw_sd_qspi.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── psci.S
│   │   │   └── README
│   │   ├── ls1043aqds
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1043aqds.c
│   │   │   ├── ls1043aqds_pbi.cfg
│   │   │   ├── ls1043aqds_qixis.h
│   │   │   ├── ls1043aqds_rcw_nand.cfg
│   │   │   ├── ls1043aqds_rcw_sd_ifc.cfg
│   │   │   ├── ls1043aqds_rcw_sd_qspi.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1043ardb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1043ardb.c
│   │   │   ├── ls1043ardb_pbi.cfg
│   │   │   ├── ls1043ardb_rcw_nand.cfg
│   │   │   ├── ls1043ardb_rcw_sd.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1046aqds
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1046aqds.c
│   │   │   ├── ls1046aqds_pbi.cfg
│   │   │   ├── ls1046aqds_qixis.h
│   │   │   ├── ls1046aqds_rcw_nand.cfg
│   │   │   ├── ls1046aqds_rcw_sd_ifc.cfg
│   │   │   ├── ls1046aqds_rcw_sd_qspi.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1046ardb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1046ardb.c
│   │   │   ├── ls1046ardb_pbi.cfg
│   │   │   ├── ls1046ardb_rcw_emmc.cfg
│   │   │   ├── ls1046ardb_rcw_sd.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls1088a
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth_ls1088aqds.c
│   │   │   ├── eth_ls1088ardb.c
│   │   │   ├── Kconfig
│   │   │   ├── ls1088a.c
│   │   │   ├── ls1088a_qixis.h
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls2080a
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── Kconfig
│   │   │   ├── ls2080a.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls2080aqds
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── ls2080aqds.c
│   │   │   ├── ls2080aqds_qixis.h
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── ls2080ardb
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth_ls2080rdb.c
│   │   │   ├── Kconfig
│   │   │   ├── ls2080ardb.c
│   │   │   ├── ls2080ardb_qixis.h
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── m5208evbe
│   │   │   ├── Kconfig
│   │   │   ├── m5208evbe.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m52277evb
│   │   │   ├── Kconfig
│   │   │   ├── m52277evb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── m5235evb
│   │   │   ├── Kconfig
│   │   │   ├── m5235evb.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m5249evb
│   │   │   ├── Kconfig
│   │   │   ├── m5249evb.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m5253demo
│   │   │   ├── flash.c
│   │   │   ├── Kconfig
│   │   │   ├── m5253demo.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m5253evbe
│   │   │   ├── Kconfig
│   │   │   ├── m5253evbe.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── m5272c3
│   │   │   ├── Kconfig
│   │   │   ├── m5272c3.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m5275evb
│   │   │   ├── Kconfig
│   │   │   ├── m5275evb.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m5282evb
│   │   │   ├── Kconfig
│   │   │   ├── m5282evb.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── m53017evb
│   │   │   ├── Kconfig
│   │   │   ├── m53017evb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── m5329evb
│   │   │   ├── Kconfig
│   │   │   ├── m5329evb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── nand.c
│   │   ├── m5373evb
│   │   │   ├── Kconfig
│   │   │   ├── m5373evb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── nand.c
│   │   │   └── README
│   │   ├── m54418twr
│   │   │   ├── Kconfig
│   │   │   ├── m54418twr.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sbf_dram_init.S
│   │   ├── m54451evb
│   │   │   ├── Kconfig
│   │   │   ├── m54451evb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sbf_dram_init.S
│   │   ├── m54455evb
│   │   │   ├── Kconfig
│   │   │   ├── m54455evb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   └── sbf_dram_init.S
│   │   ├── m547xevb
│   │   │   ├── Kconfig
│   │   │   ├── m547xevb.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── m548xevb
│   │   │   ├── Kconfig
│   │   │   ├── m548xevb.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── mpc8308rdb
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8308rdb.c
│   │   │   └── sdram.c
│   │   ├── mpc8313erdb
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8313erdb.c
│   │   │   ├── README
│   │   │   └── sdram.c
│   │   ├── mpc8315erdb
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8315erdb.c
│   │   │   ├── README
│   │   │   └── sdram.c
│   │   ├── mpc8323erdb
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8323erdb.c
│   │   │   └── README
│   │   ├── mpc832xemds
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc832xemds.c
│   │   │   ├── pci.c
│   │   │   └── README
│   │   ├── mpc8349emds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8349emds.c
│   │   │   └── pci.c
│   │   ├── mpc8349itx
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8349itx.c
│   │   │   ├── pci.c
│   │   │   └── README
│   │   ├── mpc837xemds
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc837xemds.c
│   │   │   ├── pci.c
│   │   │   ├── pci.h
│   │   │   └── README
│   │   ├── mpc837xerdb
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc837xerdb.c
│   │   │   ├── pci.c
│   │   │   └── README
│   │   ├── mpc8536ds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8536ds.c
│   │   │   ├── README
│   │   │   └── tlb.c
│   │   ├── mpc8541cds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8541cds.c
│   │   │   └── tlb.c
│   │   ├── mpc8544ds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8544ds.c
│   │   │   ├── README
│   │   │   └── tlb.c
│   │   ├── mpc8548cds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8548cds.c
│   │   │   └── tlb.c
│   │   ├── mpc8555cds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8555cds.c
│   │   │   └── tlb.c
│   │   ├── mpc8568mds
│   │   │   ├── bcsr.c
│   │   │   ├── bcsr.h
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8568mds.c
│   │   │   └── tlb.c
│   │   ├── mpc8569mds
│   │   │   ├── bcsr.c
│   │   │   ├── bcsr.h
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8569mds.c
│   │   │   ├── README
│   │   │   └── tlb.c
│   │   ├── mpc8572ds
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8572ds.c
│   │   │   ├── README
│   │   │   └── tlb.c
│   │   ├── mpc8610hpcd
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8610hpcd.c
│   │   │   ├── mpc8610hpcd_diu.c
│   │   │   └── README
│   │   ├── mpc8641hpcn
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8641hpcn.c
│   │   │   └── README
│   │   ├── mx23evk
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx23evk.c
│   │   │   └── spl_boot.c
│   │   ├── mx25pdk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx25pdk.c
│   │   ├── mx28evk
│   │   │   ├── iomux.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx28evk.c
│   │   │   └── README
│   │   ├── mx31ads
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx31ads.c
│   │   │   └── u-boot.lds
│   │   ├── mx31pdk
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx31pdk.c
│   │   ├── mx35pdk
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx35pdk.c
│   │   │   ├── mx35pdk.h
│   │   │   └── README
│   │   ├── mx51evk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx51evk.c
│   │   │   └── mx51evk_video.c
│   │   ├── mx53ard
│   │   │   ├── imximage_dd3.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx53ard.c
│   │   ├── mx53evk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx53evk.c
│   │   ├── mx53loco
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx53loco.c
│   │   │   └── mx53loco_video.c
│   │   ├── mx53smd
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx53smd.c
│   │   ├── mx6qarm2
│   │   │   ├── imximage.cfg
│   │   │   ├── imximage_mx6dl.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx6qarm2.c
│   │   ├── mx6sabreauto
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx6sabreauto.c
│   │   │   └── README
│   │   ├── mx6sabresd
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx6sabresd.c
│   │   │   └── README
│   │   ├── mx6slevk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx6slevk.c
│   │   ├── mx6sllevk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx6sllevk.c
│   │   │   └── plugin.S
│   │   ├── mx6sxsabreauto
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx6sxsabreauto.c
│   │   ├── mx6sxsabresd
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx6sxsabresd.c
│   │   ├── mx6ul_14x14_evk
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx6ul_14x14_evk.c
│   │   │   └── README
│   │   ├── mx6ullevk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx6ullevk.c
│   │   │   ├── plugin.S
│   │   │   └── README
│   │   ├── mx7dsabresd
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mx7dsabresd.c
│   │   ├── mx7ulp_evk
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx7ulp_evk.c
│   │   │   └── plugin.S
│   │   ├── p1010rdb
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p1010rdb.c
│   │   │   ├── README.P1010RDB-PA
│   │   │   ├── README.P1010RDB-PB
│   │   │   ├── spl.c
│   │   │   ├── spl_minimal.c
│   │   │   └── tlb.c
│   │   ├── p1022ds
│   │   │   ├── ddr.c
│   │   │   ├── diu.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p1022ds.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── spl_minimal.c
│   │   │   └── tlb.c
│   │   ├── p1023rdb
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p1023rdb.c
│   │   │   └── tlb.c
│   │   ├── p1_p2_rdb_pc
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p1_p2_rdb_pc.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── spl_minimal.c
│   │   │   └── tlb.c
│   │   ├── p1_twr
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p1_twr.c
│   │   │   └── tlb.c
│   │   ├── p2041rdb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p2041rdb.c
│   │   │   └── README
│   │   ├── qemu-ppce500
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── qemu-ppce500.c
│   │   ├── s32v234evb
│   │   │   ├── clock.c
│   │   │   ├── Kconfig
│   │   │   ├── lpddr2.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── s32v234evb.c
│   │   │   └── s32v234evb.cfg
│   │   ├── t102xqds
│   │   │   ├── ddr.c
│   │   │   ├── eth_t102xqds.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── t1024_nand_rcw.cfg
│   │   │   ├── t1024_pbi.cfg
│   │   │   ├── t1024_sd_rcw.cfg
│   │   │   ├── t1024_spi_rcw.cfg
│   │   │   ├── t102xqds.c
│   │   │   ├── t102xqds.h
│   │   │   ├── t102xqds_qixis.h
│   │   │   └── tlb.c
│   │   ├── t102xrdb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── eth_t102xrdb.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── t1023_nand_rcw.cfg
│   │   │   ├── t1023_sd_rcw.cfg
│   │   │   ├── t1023_spi_rcw.cfg
│   │   │   ├── t1024_nand_rcw.cfg
│   │   │   ├── t1024_pbi.cfg
│   │   │   ├── t1024_sd_rcw.cfg
│   │   │   ├── t1024_spi_rcw.cfg
│   │   │   ├── t102xrdb.c
│   │   │   ├── t102xrdb.h
│   │   │   └── tlb.c
│   │   ├── t1040qds
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── diu.c
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── t1040_pbi.cfg
│   │   │   ├── t1040qds.c
│   │   │   ├── t1040qds.h
│   │   │   ├── t1040qds_qixis.h
│   │   │   ├── t1040_rcw.cfg
│   │   │   └── tlb.c
│   │   ├── t104xrdb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── diu.c
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── t1040d4_nand_rcw.cfg
│   │   │   ├── t1040d4_sd_rcw.cfg
│   │   │   ├── t1040d4_spi_rcw.cfg
│   │   │   ├── t1040_nand_rcw.cfg
│   │   │   ├── t1040_sd_rcw.cfg
│   │   │   ├── t1040_spi_rcw.cfg
│   │   │   ├── t1042d4_nand_rcw.cfg
│   │   │   ├── t1042d4_sd_rcw.cfg
│   │   │   ├── t1042d4_spi_rcw.cfg
│   │   │   ├── t1042_nand_rcw.cfg
│   │   │   ├── t1042_pi_nand_rcw.cfg
│   │   │   ├── t1042_pi_sd_rcw.cfg
│   │   │   ├── t1042_pi_spi_rcw.cfg
│   │   │   ├── t1042_sd_rcw.cfg
│   │   │   ├── t1042_spi_rcw.cfg
│   │   │   ├── t104x_pbi.cfg
│   │   │   ├── t104x_pbi_sb.cfg
│   │   │   ├── t104xrdb.c
│   │   │   ├── t104xrdb.h
│   │   │   └── tlb.c
│   │   ├── t208xqds
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth_t208xqds.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── t2080_nand_rcw.cfg
│   │   │   ├── t2080_sd_rcw.cfg
│   │   │   ├── t2080_spi_rcw.cfg
│   │   │   ├── t2081_nand_rcw.cfg
│   │   │   ├── t2081_sd_rcw.cfg
│   │   │   ├── t2081_spi_rcw.cfg
│   │   │   ├── t208x_pbi.cfg
│   │   │   ├── t208xqds.c
│   │   │   ├── t208xqds.h
│   │   │   ├── t208xqds_qixis.h
│   │   │   └── tlb.c
│   │   ├── t208xrdb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth_t208xrdb.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── t2080_nand_rcw.cfg
│   │   │   ├── t2080_pbi.cfg
│   │   │   ├── t2080_sd_rcw.cfg
│   │   │   ├── t2080_spi_rcw.cfg
│   │   │   ├── t208xrdb.c
│   │   │   ├── t208xrdb.h
│   │   │   └── tlb.c
│   │   ├── t4qds
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── README
│   │   │   ├── spl.c
│   │   │   ├── t4240emu.c
│   │   │   ├── t4240qds.c
│   │   │   ├── t4240qds_qixis.h
│   │   │   ├── t4_nand_rcw.cfg
│   │   │   ├── t4_pbi.cfg
│   │   │   ├── t4qds.h
│   │   │   ├── t4_sd_rcw.cfg
│   │   │   └── tlb.c
│   │   ├── t4rdb
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── ddr.c
│   │   │   ├── ddr.h
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   ├── spl.c
│   │   │   ├── t4240rdb.c
│   │   │   ├── t4_pbi.cfg
│   │   │   ├── t4rdb.h
│   │   │   ├── t4_sd_rcw.cfg
│   │   │   └── tlb.c
│   │   └── vf610twr
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── vf610twr.c
│   ├── gateworks
│   │   └── gw_ventana
│   │   ├── common.c
│   │   ├── common.h
│   │   ├── eeprom.c
│   │   ├── gsc.c
│   │   ├── gsc.h
│   │   ├── gw_ventana.c
│   │   ├── gw_ventana_spl.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   └── ventana_eeprom.h
│   ├── gdsys
│   │   ├── a38x
│   │   │   ├── controlcenterdc.c
│   │   │   ├── dt_helpers.c
│   │   │   ├── dt_helpers.h
│   │   │   ├── hre.c
│   │   │   ├── hre.h
│   │   │   ├── hydra.c
│   │   │   ├── hydra.h
│   │   │   ├── ihs_phys.c
│   │   │   ├── ihs_phys.h
│   │   │   ├── Kconfig
│   │   │   ├── keyprogram.c
│   │   │   ├── keyprogram.h
│   │   │   ├── kwbimage.cfg.in
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spl.c
│   │   ├── common
│   │   │   ├── adv7611.c
│   │   │   ├── adv7611.h
│   │   │   ├── ch7301.c
│   │   │   ├── ch7301.h
│   │   │   ├── cmd_ioloop.c
│   │   │   ├── dp501.c
│   │   │   ├── dp501.h
│   │   │   ├── fanctrl.c
│   │   │   ├── fanctrl.h
│   │   │   ├── fpga.c
│   │   │   ├── ihs_mdio.c
│   │   │   ├── ihs_mdio.h
│   │   │   ├── ioep-fpga.c
│   │   │   ├── ioep-fpga.h
│   │   │   ├── Makefile
│   │   │   ├── mclink.c
│   │   │   ├── mclink.h
│   │   │   ├── miiphybb.c
│   │   │   ├── osd.c
│   │   │   ├── osd.h
│   │   │   ├── phy.c
│   │   │   └── phy.h
│   │   ├── mpc8308
│   │   │   ├── hrcon.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mpc8308.c
│   │   │   ├── mpc8308.h
│   │   │   ├── sdram.c
│   │   │   └── strider.c
│   │   └── p1022
│   │   ├── controlcenterd.c
│   │   ├── controlcenterd-id.c
│   │   ├── controlcenterd-id.h
│   │   ├── ddr.c
│   │   ├── diu.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sdhc_boot.c
│   │   └── tlb.c
│   ├── ge
│   │   └── bx50v3
│   │   ├── bx50v3.c
│   │   ├── bx50v3.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── vpd_reader.c
│   │   └── vpd_reader.h
│   ├── geekbuying
│   │   └── geekbox
│   │   ├── geekbox.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── google
│   │   ├── chromebook_link
│   │   │   ├── Kconfig
│   │   │   ├── link.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── chromebook_samus
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── samus.c
│   │   ├── chromebox_panther
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── panther.c
│   │   ├── common
│   │   │   ├── early_init.S
│   │   │   └── Makefile
│   │   ├── Kconfig
│   │   └── veyron
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── veyron.c
│   ├── grinn
│   │   ├── chiliboard
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   └── liteboard
│   │   ├── board.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── gumstix
│   │   ├── duovero
│   │   │   ├── duovero.c
│   │   │   ├── duovero_mux_data.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── pepper
│   │   ├── board.c
│   │   ├── board.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── mux.c
│   ├── h2200
│   │   ├── h2200.c
│   │   ├── h2200-header.S
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── highbank
│   │   ├── ahci.c
│   │   ├── highbank.c
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── hisilicon
│   │   ├── hikey
│   │   │   ├── build-tf.mak
│   │   │   ├── hikey.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   └── poplar
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── poplar.c
│   │   └── README
│   ├── htkw
│   │   └── mcx
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mcx.c
│   │   └── mcx.h
│   ├── huawei
│   │   └── hg556a
│   │   ├── hg556a.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── ids
│   │   └── ids8313
│   │   ├── ids8313.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── imgtec
│   │   ├── boston
│   │   │   ├── boston-lcd.h
│   │   │   ├── boston-regs.h
│   │   │   ├── checkboard.c
│   │   │   ├── ddr.c
│   │   │   ├── dt.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── malta
│   │   │   ├── flash-malta-boot.tcl
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── malta.c
│   │   │   ├── superio.c
│   │   │   └── superio.h
│   │   └── xilfpga
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   └── xilfpga.c
│   ├── imx31_phycore
│   │   ├── imx31_phycore.c
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── intel
│   │   ├── bayleybay
│   │   │   ├── acpi
│   │   │   │   └── mainboard.asl
│   │   │   ├── bayleybay.c
│   │   │   ├── dsdt.asl
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   ├── cherryhill
│   │   │   ├── cherryhill.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   ├── cougarcanyon2
│   │   │   ├── cougarcanyon2.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   ├── crownbay
│   │   │   ├── crownbay.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   ├── edison
│   │   │   ├── config.mk
│   │   │   ├── dsdt.asl
│   │   │   ├── edison.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   ├── galileo
│   │   │   ├── acpi
│   │   │   │   └── mainboard.asl
│   │   │   ├── dsdt.asl
│   │   │   ├── galileo.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── start.S
│   │   ├── Kconfig
│   │   └── minnowmax
│   │   ├── acpi
│   │   │   └── mainboard.asl
│   │   ├── dsdt.asl
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── minnowmax.c
│   │   └── start.S
│   ├── inversepath
│   │   └── usbarmory
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── usbarmory.c
│   ├── iomega
│   │   └── iconnect
│   │   ├── iconnect.c
│   │   ├── iconnect.h
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── is1
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── qts
│   │   │   ├── iocsr_config.h
│   │   │   ├── pinmux_config.h
│   │   │   ├── pll_config.h
│   │   │   └── sdram_config.h
│   │   └── socfpga.c
│   ├── isee
│   │   ├── igep003x
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   └── igep00x0
│   │   ├── common.c
│   │   ├── igep00x0.c
│   │   ├── igep00x0.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── spl.c
│   ├── keymile
│   │   ├── common
│   │   │   ├── common.c
│   │   │   ├── common.h
│   │   │   └── ivm.c
│   │   ├── km83xx
│   │   │   ├── Kconfig
│   │   │   ├── km83xx.c
│   │   │   ├── km83xx_i2c.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README.kmeter1
│   │   ├── km_arm
│   │   │   ├── fpga_config.c
│   │   │   ├── Kconfig
│   │   │   ├── km_arm.c
│   │   │   ├── kwbimage_128M16_1.cfg
│   │   │   ├── kwbimage_256M8_1.cfg
│   │   │   ├── kwbimage.cfg
│   │   │   ├── kwbimage-memphis.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── kmp204x
│   │   │   ├── ddr.c
│   │   │   ├── eth.c
│   │   │   ├── Kconfig
│   │   │   ├── kmp204x.c
│   │   │   ├── kmp204x.h
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pbi.cfg
│   │   │   ├── pci.c
│   │   │   ├── qrio.c
│   │   │   ├── rcw_kmp204x.cfg
│   │   │   └── tlb.c
│   │   └── scripts
│   │   ├── 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
│   │   └── README
│   ├── kmc
│   │   └── kzm9g
│   │   ├── Kconfig
│   │   ├── kzm9g.c
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── kosagi
│   │   └── novena
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── novena.c
│   │   ├── novena.h
│   │   ├── novena_spl.c
│   │   └── video.c
│   ├── LaCie
│   │   ├── common
│   │   │   ├── common.c
│   │   │   ├── common.h
│   │   │   ├── cpld-gpio-bus.c
│   │   │   └── cpld-gpio-bus.h
│   │   ├── edminiv2
│   │   │   ├── edminiv2.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── net2big_v2
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── net2big_v2.c
│   │   │   └── net2big_v2.h
│   │   └── netspace_v2
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── kwbimage-is2.cfg
│   │   ├── kwbimage-ns2l.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── netspace_v2.c
│   │   └── netspace_v2.h
│   ├── lego
│   │   └── ev3
│   │   ├── Kconfig
│   │   ├── legoev3.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── l+g
│   │   └── vinco
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── vinco.c
│   ├── lg
│   │   └── sniper
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sniper.c
│   │   └── sniper.h
│   ├── liebherr
│   │   ├── display5
│   │   │   ├── common.c
│   │   │   ├── common.h
│   │   │   ├── display5.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spl.c
│   │   └── mccmon6
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mccmon6.c
│   │   ├── mon6_imximage_nor.cfg
│   │   ├── mon6_imximage_sd.cfg
│   │   └── spl.c
│   ├── logicpd
│   │   ├── am3517evm
│   │   │   ├── am3517evm.c
│   │   │   ├── am3517evm.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── imx6
│   │   │   ├── imx6logic.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mx6q_2x_MT41K512M16HA.cfg
│   │   │   └── README
│   │   ├── omap3som
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── omap3logic.c
│   │   │   ├── omap3logic.h
│   │   │   └── README
│   │   └── zoom1
│   │   ├── config.mk
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── zoom1.c
│   │   └── zoom1.h
│   ├── Marvell
│   │   ├── aspenite
│   │   │   ├── aspenite.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── db-88f6720
│   │   │   ├── db-88f6720.c
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── db-88f6820-amc
│   │   │   ├── db-88f6820-amc.c
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── db-88f6820-gp
│   │   │   ├── db-88f6820-gp.c
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── db-mv784mp-gp
│   │   │   ├── db-mv784mp-gp.c
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── dreamplug
│   │   │   ├── dreamplug.c
│   │   │   ├── dreamplug.h
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── gplugd
│   │   │   ├── gplugd.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── guruplug
│   │   │   ├── guruplug.c
│   │   │   ├── guruplug.h
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── mvebu_armada-37xx
│   │   │   ├── board.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── mvebu_armada-8k
│   │   │   ├── board.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── openrd
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── openrd.c
│   │   │   └── openrd.h
│   │   └── sheevaplug
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sheevaplug.c
│   │   └── sheevaplug.h
│   ├── maxbcm
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── maxbcm.c
│   ├── microchip
│   │   └── pic32mzda
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pic32mzda.c
│   │   └── README
│   ├── micronas
│   │   └── vct
│   │   ├── bcu.h
│   │   ├── dcgu.c
│   │   ├── dcgu.h
│   │   ├── ebi.c
│   │   ├── ebi.h
│   │   ├── ebi_nor_flash.c
│   │   ├── ebi_onenand.c
│   │   ├── ebi_smc911x.c
│   │   ├── ehci.c
│   │   ├── gpio.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── scc.c
│   │   ├── scc.h
│   │   ├── smc_eeprom.c
│   │   ├── top.c
│   │   ├── vct.c
│   │   ├── vct.h
│   │   ├── vcth
│   │   │   ├── reg_dcgu.h
│   │   │   ├── reg_ebi.h
│   │   │   ├── reg_fwsram.h
│   │   │   ├── reg_gpio.h
│   │   │   ├── reg_scc.h
│   │   │   ├── reg_usbh.h
│   │   │   └── reg_wdt.h
│   │   ├── vcth2
│   │   │   └── reg_ebi.h
│   │   └── vctv
│   │   ├── reg_dcgu.h
│   │   ├── reg_ebi.h
│   │   ├── reg_gpio.h
│   │   └── reg_wdt.h
│   ├── mini-box
│   │   └── picosam9g45
│   │   ├── Kconfig
│   │   ├── led.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── picosam9g45.c
│   ├── mpc8308_p1m
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mpc8308_p1m.c
│   │   └── sdram.c
│   ├── mpr2
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── mpr2.c
│   ├── mqmaker
│   │   └── miqi_rk3288
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── miqi-rk3288.c
│   ├── ms7720se
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── ms7720se.c
│   ├── ms7722se
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── ms7722se.c
│   ├── ms7750se
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── ms7750se.c
│   ├── netgear
│   │   └── cg3100d
│   │   ├── cg3100d.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── nokia
│   │   └── rx51
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── rx51.c
│   │   ├── rx51.h
│   │   └── tag_omap.h
│   ├── nvidia
│   │   ├── beaver
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── cardhu
│   │   │   ├── cardhu.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-cardhu.h
│   │   ├── dalmore
│   │   │   ├── dalmore.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-dalmore.h
│   │   ├── e2220-1170
│   │   │   ├── e2220-1170.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-e2220-1170.h
│   │   ├── harmony
│   │   │   ├── harmony.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── jetson-tk1
│   │   │   ├── jetson-tk1.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-jetson-tk1.h
│   │   ├── nyan-big
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── nyan-big.c
│   │   │   └── pinmux-config-nyan-big.h
│   │   ├── p2371-0000
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p2371-0000.c
│   │   │   └── pinmux-config-p2371-0000.h
│   │   ├── p2371-2180
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── p2371-2180.c
│   │   │   └── pinmux-config-p2371-2180.h
│   │   ├── p2571
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── max77620_init.h
│   │   │   ├── p2571.c
│   │   │   └── pinmux-config-p2571.h
│   │   ├── p2771-0000
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── p2771-0000.c
│   │   ├── seaboard
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── seaboard.c
│   │   ├── venice2
│   │   │   ├── as3722_init.c
│   │   │   ├── as3722_init.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pinmux-config-venice2.h
│   │   │   └── venice2.c
│   │   └── ventana
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── olimex
│   │   └── mx23_olinuxino
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mx23_olinuxino.c
│   │   └── spl_boot.c
│   ├── omicron
│   │   └── calimain
│   │   ├── calimain.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── overo
│   │   ├── common.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── overo.c
│   │   ├── overo.h
│   │   └── spl.c
│   ├── pandora
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pandora.c
│   │   └── pandora.h
│   ├── pb1x00
│   │   ├── flash.c
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pb1x00.c
│   │   └── README
│   ├── phytec
│   │   ├── pcm051
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   ├── pcm052
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pcm052.c
│   │   ├── pcm058
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pcm058.c
│   │   │   └── README
│   │   ├── pfla02
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pfla02.c
│   │   │   └── README
│   │   └── phycore_rk3288
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── phycore-rk3288.c
│   │   └── som.h
│   ├── ppcag
│   │   └── bg0900
│   │   ├── bg0900.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── spl_boot.c
│   ├── qca
│   │   ├── ap121
│   │   │   ├── ap121.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── ap143
│   │   ├── ap143.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── qemu-mips
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── qemu-mips.c
│   ├── qualcomm
│   │   └── dragonboard410c
│   │   ├── dragonboard410c.c
│   │   ├── head.S
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── readme.txt
│   │   └── u-boot.lds
│   ├── quipos
│   │   └── cairo
│   │   ├── cairo.c
│   │   ├── cairo.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── radxa
│   │   ├── rock
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── rock.c
│   │   └── rock2
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── rock2.c
│   ├── raidsonic
│   │   └── ib62x0
│   │   ├── ib62x0.c
│   │   ├── ib62x0.h
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── raspberrypi
│   │   └── rpi
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── rpi.c
│   ├── renesas
│   │   ├── alt
│   │   │   ├── alt.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   └── qos.h
│   │   ├── ap325rxa
│   │   │   ├── ap325rxa.c
│   │   │   ├── cpld-ap325rxa.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── blanche
│   │   │   ├── blanche.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   └── qos.h
│   │   ├── ecovec
│   │   │   ├── ecovec.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── gose
│   │   │   ├── gose.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   └── qos.h
│   │   ├── koelsch
│   │   │   ├── Kconfig
│   │   │   ├── koelsch.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   └── qos.h
│   │   ├── lager
│   │   │   ├── Kconfig
│   │   │   ├── lager.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   └── qos.h
│   │   ├── MigoR
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── migo_r.c
│   │   ├── porter
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── porter.c
│   │   │   ├── qos.c
│   │   │   └── qos.h
│   │   ├── r0p7734
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── r0p7734.c
│   │   ├── r2dplus
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── r2dplus.c
│   │   ├── r7780mp
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── r7780mp.c
│   │   │   └── r7780mp.h
│   │   ├── rcar-common
│   │   │   └── common.c
│   │   ├── rsk7203
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── rsk7203.c
│   │   ├── rsk7264
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── rsk7264.c
│   │   ├── rsk7269
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── rsk7269.c
│   │   ├── salvator-x
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── salvator-x.c
│   │   ├── sh7752evb
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── sh7752evb.c
│   │   │   └── spi-boot.c
│   │   ├── sh7753evb
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── sh7753evb.c
│   │   │   └── spi-boot.c
│   │   ├── sh7757lcr
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README.sh7757lcr
│   │   │   ├── sh7757lcr.c
│   │   │   └── spi-boot.c
│   │   ├── sh7763rdp
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── sh7763rdp.c
│   │   ├── sh7785lcr
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README.sh7785lcr
│   │   │   ├── rtl8169.h
│   │   │   ├── rtl8169_mac.c
│   │   │   ├── selfcheck.c
│   │   │   └── sh7785lcr.c
│   │   ├── silk
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   ├── qos.h
│   │   │   └── silk.c
│   │   ├── stout
│   │   │   ├── cpld.c
│   │   │   ├── cpld.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qos.c
│   │   │   ├── qos.h
│   │   │   └── stout.c
│   │   └── ulcb
│   │   ├── cpld.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── ulcb.c
│   ├── rockchip
│   │   ├── evb_px5
│   │   │   ├── evb-px5.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── evb_rk3036
│   │   │   ├── evb_rk3036.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── evb_rk3229
│   │   │   ├── evb_rk3229.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── evb_rk3288
│   │   │   ├── evb-rk3288.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── evb_rk3328
│   │   │   ├── evb-rk3328.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── evb_rk3399
│   │   │   ├── evb-rk3399.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── evb_rv1108
│   │   │   ├── evb_rv1108.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── fennec_rk3288
│   │   │   ├── fennec-rk3288.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── kylin_rk3036
│   │   │   ├── Kconfig
│   │   │   ├── kylin_rk3036.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── sheep_rk3368
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   └── sheep_rk3368.c
│   │   └── tinker_rk3288
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── tinker-rk3288.c
│   ├── ronetix
│   │   ├── pm9261
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pm9261.c
│   │   ├── pm9263
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pm9263.c
│   │   └── pm9g45
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── pm9g45.c
│   ├── sagem
│   │   └── f@st1704
│   │   ├── f@st1704.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── samsung
│   │   ├── arndale
│   │   │   ├── arndale.c
│   │   │   ├── arndale_spl.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── common
│   │   │   ├── board.c
│   │   │   ├── bootscripts
│   │   │   │   ├── autoboot.cmd
│   │   │   │   └── bootzimg.cmd
│   │   │   ├── dfu_sample_env.txt
│   │   │   ├── exynos5-dt.c
│   │   │   ├── exynos5-dt-types.c
│   │   │   ├── exynos-uboot-spl.lds
│   │   │   ├── gadget.c
│   │   │   ├── Makefile
│   │   │   └── misc.c
│   │   ├── espresso7420
│   │   │   ├── espresso7420.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── goni
│   │   │   ├── goni.c
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── onenand.c
│   │   ├── itop4412
│   │   │   ├── itop4412.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── tools
│   │   │   └── mkitop4412spl.c
│   │   ├── odroid
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── odroid.c
│   │   │   └── setup.h
│   │   ├── origen
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── origen.c
│   │   │   └── tools
│   │   │   └── mkorigenspl.c
│   │   ├── smdk5250
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── smdk5250_spl.c
│   │   ├── smdk5420
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── smdk5420_spl.c
│   │   ├── smdkc100
│   │   │   ├── Kconfig
│   │   │   ├── lowlevel_init.S
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── onenand.c
│   │   │   └── smdkc100.c
│   │   ├── smdkv310
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── smdkv310.c
│   │   │   └── tools
│   │   │   └── mksmdkv310spl.c
│   │   ├── trats
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── setup.h
│   │   │   └── trats.c
│   │   ├── trats2
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── trats2.c
│   │   └── universal_c210
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── onenand.c
│   │   └── universal.c
│   ├── samtec
│   │   ├── vining_2000
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── vining_2000.c
│   │   └── vining_fpga
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── qts
│   │   │   ├── iocsr_config.h
│   │   │   ├── pinmux_config.h
│   │   │   ├── pll_config.h
│   │   │   └── sdram_config.h
│   │   └── socfpga.c
│   ├── sandbox
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README.sandbox
│   │   └── sandbox.c
│   ├── sandisk
│   │   └── sansa_fuze_plus
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sfp.c
│   │   └── spl_boot.c
│   ├── sbc8349
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pci.c
│   │   ├── README
│   │   └── sbc8349.c
│   ├── sbc8548
│   │   ├── ddr.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   ├── sbc8548.c
│   │   └── tlb.c
│   ├── sbc8641d
│   │   ├── ddr.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   └── sbc8641d.c
│   ├── schulercontrol
│   │   └── sc_sps_1
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sc_sps_1.c
│   │   └── spl_boot.c
│   ├── Seagate
│   │   ├── dockstar
│   │   │   ├── dockstar.c
│   │   │   ├── dockstar.h
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── goflexhome
│   │   │   ├── goflexhome.c
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── nas220
│   │   ├── Kconfig
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── nas220.c
│   ├── seco
│   │   ├── common
│   │   │   ├── Makefile
│   │   │   ├── mx6.c
│   │   │   └── mx6.h
│   │   ├── Kconfig
│   │   └── mx6quq7
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mx6quq7-2g.cfg
│   │   └── mx6quq7.c
│   ├── sfr
│   │   └── nb4_ser
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── nb4-ser.c
│   ├── shmin
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── shmin.c
│   ├── siemens
│   │   ├── common
│   │   │   ├── board.c
│   │   │   ├── factoryset.c
│   │   │   └── factoryset.h
│   │   ├── corvus
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── draco
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   ├── pxm2
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   └── pmic.h
│   │   ├── rut
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   ├── smartweb
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── smartweb.c
│   │   └── taurus
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── taurus.c
│   ├── silica
│   │   └── pengwyn
│   │   ├── board.c
│   │   ├── board.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── mux.c
│   ├── socrates
│   │   ├── ddr.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── nand.c
│   │   ├── sdram.c
│   │   ├── socrates.c
│   │   ├── tlb.c
│   │   └── upm_table.h
│   ├── solidrun
│   │   ├── clearfog
│   │   │   ├── clearfog.c
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   └── mx6cuboxi
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mx6cuboxi.c
│   │   └── README
│   ├── spear
│   │   ├── spear300
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spear300.c
│   │   ├── spear310
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spear310.c
│   │   ├── spear320
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spear320.c
│   │   ├── spear600
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── spear600.c
│   │   └── x600
│   │   ├── fpga.c
│   │   ├── fpga.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── x600.c
│   ├── sr1500
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── qts
│   │   │   ├── iocsr_config.h
│   │   │   ├── pinmux_config.h
│   │   │   ├── pll_config.h
│   │   │   └── sdram_config.h
│   │   └── socfpga.c
│   ├── st
│   │   ├── stih410-b2260
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── stm32f429-discovery
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── stm32f429-discovery.c
│   │   ├── stm32f746-disco
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── stm32f746-disco.c
│   │   ├── stm32h743-disco
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── stm32h743-disco.c
│   │   ├── stm32h743-eval
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── stm32h743-eval.c
│   │   └── stv0991
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── stv0991.c
│   ├── sunxi
│   │   ├── ahci.c
│   │   ├── board.c
│   │   ├── dram_sun4i_auto.c
│   │   ├── dram_sun5i_auto.c
│   │   ├── dram_timings_sun4i.h
│   │   ├── gmac.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mksunxi_fit_atf.sh
│   │   ├── README.nand
│   │   └── README.sunxi64
│   ├── Synology
│   │   ├── ds109
│   │   │   ├── ds109.c
│   │   │   ├── ds109.h
│   │   │   ├── Kconfig
│   │   │   ├── kwbimage.cfg
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── openocd.cfg
│   │   └── ds414
│   │   ├── cmd_syno.c
│   │   ├── ds414.c
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── synopsys
│   │   ├── axs10x
│   │   │   ├── axs10x.c
│   │   │   ├── axs10x.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── nand.c
│   │   ├── hsdk
│   │   │   ├── hsdk.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── Kconfig
│   │   └── MAINTAINERS
│   ├── sysam
│   │   ├── amcore
│   │   │   ├── amcore.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── stmark2
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sbf_dram_init.S
│   │   └── stmark2.c
│   ├── syteco
│   │   └── zmx25
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── zmx25.c
│   ├── tbs
│   │   └── tbs2910
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── tbs2910.c
│   ├── tcl
│   │   └── sl50
│   │   ├── board.c
│   │   ├── board.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── mux.c
│   ├── technexion
│   │   ├── pico-imx6ul
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pico-imx6ul.c
│   │   │   └── README
│   │   ├── pico-imx7d
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pico-imx7d.c
│   │   │   └── README
│   │   ├── tao3530
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── tao3530.c
│   │   │   └── tao3530.h
│   │   └── twister
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── twister.c
│   │   └── twister.h
│   ├── technologic
│   │   ├── ts4600
│   │   │   ├── iomux.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── ts4600.c
│   │   └── ts4800
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── ts4800.c
│   │   └── ts4800.h
│   ├── teejet
│   │   └── mt_ventoux
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mt_ventoux.c
│   │   └── mt_ventoux.h
│   ├── terasic
│   │   ├── de0-nano-soc
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qts
│   │   │   │   ├── iocsr_config.h
│   │   │   │   ├── pinmux_config.h
│   │   │   │   ├── pll_config.h
│   │   │   │   └── sdram_config.h
│   │   │   └── socfpga.c
│   │   ├── de10-nano
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qts
│   │   │   │   ├── iocsr_config.h
│   │   │   │   ├── pinmux_config.h
│   │   │   │   ├── pll_config.h
│   │   │   │   └── sdram_config.h
│   │   │   └── socfpga.c
│   │   ├── de1-soc
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── qts
│   │   │   │   ├── iocsr_config.h
│   │   │   │   ├── pinmux_config.h
│   │   │   │   ├── pll_config.h
│   │   │   │   └── sdram_config.h
│   │   │   └── socfpga.c
│   │   └── sockit
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── qts
│   │   │   ├── iocsr_config.h
│   │   │   ├── pinmux_config.h
│   │   │   ├── pll_config.h
│   │   │   └── sdram_config.h
│   │   └── socfpga.c
│   ├── theadorable
│   │   ├── fpga.c
│   │   ├── kwbimage.cfg
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── theadorable.c
│   │   └── theadorable.h
│   ├── theobroma-systems
│   │   ├── lion_rk3368
│   │   │   ├── fit_spl_atf.its
│   │   │   ├── Kconfig
│   │   │   ├── lion_rk3368.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── README
│   │   └── puma_rk3399
│   │   ├── fit_spl_atf.its
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── puma-rk3399.c
│   │   └── README
│   ├── ti
│   │   ├── am335x
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux.c
│   │   │   ├── README
│   │   │   └── u-boot.lds
│   │   ├── am3517crane
│   │   │   ├── am3517crane.c
│   │   │   ├── am3517crane.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── am43xx
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   ├── am57xx
│   │   │   ├── board.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux_data.h
│   │   ├── beagle
│   │   │   ├── beagle.c
│   │   │   ├── beagle.h
│   │   │   ├── Kconfig
│   │   │   ├── led.c
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── common
│   │   │   ├── board_detect.c
│   │   │   ├── board_detect.h
│   │   │   ├── Kconfig
│   │   │   └── Makefile
│   │   ├── dra7xx
│   │   │   ├── evm.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux_data.h
│   │   │   └── README
│   │   ├── evm
│   │   │   ├── evm.c
│   │   │   ├── evm.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── ks2_evm
│   │   │   ├── board.c
│   │   │   ├── board.h
│   │   │   ├── board_k2e.c
│   │   │   ├── board_k2g.c
│   │   │   ├── board_k2hk.c
│   │   │   ├── board_k2l.c
│   │   │   ├── ddr3_cfg.c
│   │   │   ├── ddr3_cfg.h
│   │   │   ├── ddr3_k2e.c
│   │   │   ├── ddr3_k2g.c
│   │   │   ├── ddr3_k2hk.c
│   │   │   ├── ddr3_k2l.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux-k2g.h
│   │   │   └── README
│   │   ├── omap5_uevm
│   │   │   ├── evm.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── mux_data.h
│   │   │   └── README
│   │   ├── panda
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── panda.c
│   │   │   └── panda_mux_data.h
│   │   ├── sdp4430
│   │   │   ├── cmd_bat.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── sdp4430_mux_data.h
│   │   │   └── sdp.c
│   │   ├── ti814x
│   │   │   ├── evm.c
│   │   │   ├── evm.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── mux.c
│   │   └── ti816x
│   │   ├── evm.c
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   └── Makefile
│   ├── timll
│   │   ├── devkit3250
│   │   │   ├── devkit3250.c
│   │   │   ├── devkit3250_spl.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── devkit8000
│   │   ├── devkit8000.c
│   │   ├── devkit8000.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── README
│   ├── topic
│   │   └── zynq
│   │   ├── board.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── ps7_init_common.c
│   │   ├── ps7_init_gpl.h
│   │   ├── zynq-topic-miami
│   │   │   ├── ps7_init_gpl.c
│   │   │   └── ps7_regs.txt
│   │   ├── zynq-topic-miamilite
│   │   │   ├── ps7_init_gpl.c
│   │   │   └── ps7_regs.txt
│   │   └── zynq-topic-miamiplus
│   │   ├── ps7_init_gpl.c
│   │   └── ps7_regs.txt
│   ├── toradex
│   │   ├── apalis_imx6
│   │   │   ├── 1066mhz_4x128mx16.cfg
│   │   │   ├── 1066mhz_4x256mx16.cfg
│   │   │   ├── apalis_imx6.c
│   │   │   ├── apalis_imx6q.cfg
│   │   │   ├── clocks.cfg
│   │   │   ├── ddr-setup.cfg
│   │   │   ├── do_fuse.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pf0100.c
│   │   │   ├── pf0100.h
│   │   │   └── pf0100_otp.inc
│   │   ├── apalis_t30
│   │   │   ├── apalis_t30.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-apalis_t30.h
│   │   ├── apalis-tk1
│   │   │   ├── apalis-tk1.c
│   │   │   ├── as3722_init.c
│   │   │   ├── as3722_init.h
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-apalis-tk1.h
│   │   ├── colibri_imx6
│   │   │   ├── 800mhz_2x64mx16.cfg
│   │   │   ├── 800mhz_4x64mx16.cfg
│   │   │   ├── clocks.cfg
│   │   │   ├── colibri_imx6.c
│   │   │   ├── colibri_imx6.cfg
│   │   │   ├── ddr-setup.cfg
│   │   │   ├── do_fuse.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pf0100.c
│   │   │   ├── pf0100.h
│   │   │   └── pf0100_otp.inc
│   │   ├── colibri_imx7
│   │   │   ├── colibri_imx7.c
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── colibri_pxa270
│   │   │   ├── colibri_pxa270.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── colibri_t20
│   │   │   ├── colibri_t20.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   ├── colibri_t30
│   │   │   ├── colibri_t30.c
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── pinmux-config-colibri_t30.h
│   │   ├── colibri_vf
│   │   │   ├── colibri_vf.c
│   │   │   ├── dcu.c
│   │   │   ├── imximage.cfg
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   └── Makefile
│   │   └── common
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── tdx-cfg-block.c
│   │   ├── tdx-cfg-block.h
│   │   ├── tdx-common.c
│   │   └── tdx-common.h
│   ├── tplink
│   │   └── wdr4300
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── wdr4300.c
│   ├── tqc
│   │   ├── tqm834x
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── pci.c
│   │   │   └── tqm834x.c
│   │   └── tqma6
│   │   ├── clocks.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   ├── tqma6_bb.h
│   │   ├── tqma6.c
│   │   ├── tqma6dl.cfg
│   │   ├── tqma6_mba6.c
│   │   ├── tqma6q.cfg
│   │   ├── tqma6s.cfg
│   │   └── tqma6_wru4.c
│   ├── udoo
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── neo
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── neo.c
│   │   ├── README
│   │   ├── udoo.c
│   │   └── udoo_spl.c
│   ├── varisys
│   │   ├── common
│   │   │   ├── eeprom.h
│   │   │   ├── Makefile
│   │   │   └── sys_eeprom.c
│   │   └── cyrus
│   │   ├── cyrus.c
│   │   ├── cyrus.h
│   │   ├── ddr.c
│   │   ├── eth.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── pbi.cfg
│   │   ├── pci.c
│   │   ├── rcw_p5020_v2.cfg
│   │   ├── rcw_p5040.cfg
│   │   ├── README
│   │   └── tlb.c
│   ├── ve8313
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── ve8313.c
│   ├── vscom
│   │   └── baltos
│   │   ├── board.c
│   │   ├── board.h
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── mux.c
│   │   ├── README
│   │   └── u-boot.lds
│   ├── wandboard
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   ├── spl.c
│   │   └── wandboard.c
│   ├── warp
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   └── warp.c
│   ├── warp7
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   └── warp7.c
│   ├── woodburn
│   │   ├── imximage.cfg
│   │   ├── Kconfig
│   │   ├── lowlevel_init.S
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── woodburn.c
│   ├── work-microwave
│   │   └── work_92105
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── README
│   │   ├── work_92105.c
│   │   ├── work_92105_display.c
│   │   ├── work_92105_display.h
│   │   └── work_92105_spl.c
│   ├── xes
│   │   ├── common
│   │   │   ├── actl_nand.c
│   │   │   ├── board.c
│   │   │   ├── fsl_8xxx_clk.c
│   │   │   ├── fsl_8xxx_misc.c
│   │   │   ├── fsl_8xxx_misc.h
│   │   │   ├── fsl_8xxx_pci.c
│   │   │   └── Makefile
│   │   ├── xpedite517x
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   └── xpedite517x.c
│   │   ├── xpedite520x
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── tlb.c
│   │   │   └── xpedite520x.c
│   │   ├── xpedite537x
│   │   │   ├── ddr.c
│   │   │   ├── Kconfig
│   │   │   ├── law.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── tlb.c
│   │   │   └── xpedite537x.c
│   │   └── xpedite550x
│   │   ├── ddr.c
│   │   ├── Kconfig
│   │   ├── law.c
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── tlb.c
│   │   └── xpedite550x.c
│   ├── xilinx
│   │   ├── microblaze-generic
│   │   │   ├── config.mk
│   │   │   ├── Kconfig
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── microblaze-generic.c
│   │   │   └── xparameters.h
│   │   ├── zynq
│   │   │   ├── board.c
│   │   │   ├── MAINTAINERS
│   │   │   ├── Makefile
│   │   │   ├── xil_io.h
│   │   │   ├── zynq-microzed
│   │   │   │   ├── ps7_init_gpl.c
│   │   │   │   └── ps7_init_gpl.h
│   │   │   ├── zynq-zc702
│   │   │   │   ├── ps7_init_gpl.c
│   │   │   │   └── ps7_init_gpl.h
│   │   │   ├── zynq-zc706
│   │   │   │   ├── ps7_init_gpl.c
│   │   │   │   └── ps7_init_gpl.h
│   │   │   ├── zynq-zed
│   │   │   │   ├── ps7_init_gpl.c
│   │   │   │   └── ps7_init_gpl.h
│   │   │   └── zynq-zybo
│   │   │   ├── ps7_init_gpl.c
│   │   │   └── ps7_init_gpl.h
│   │   └── zynqmp
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   ├── sleep.h
│   │   ├── xil_io.h
│   │   └── zynqmp.c
│   ├── zipitz2
│   │   ├── Kconfig
│   │   ├── MAINTAINERS
│   │   ├── Makefile
│   │   └── zipitz2.c
│   └── zyxel
│   └── nsa310s
│   ├── Kconfig
│   ├── kwbimage.cfg
│   ├── MAINTAINERS
│   ├── Makefile
│   ├── nsa310s.c
│   └── nsa310s.h
├── cmd
│   ├── aes.c
│   ├── armflash.c
│   ├── bdinfo.c
│   ├── bedbug.c
│   ├── blkcache.c
│   ├── blk_common.c
│   ├── blob.c
│   ├── bmp.c
│   ├── boot.c
│   ├── bootefi.c
│   ├── booti.c
│   ├── bootm.c
│   ├── bootmenu.c
│   ├── bootstage.c
│   ├── bootz.c
│   ├── btrfs.c
│   ├── cache.c
│   ├── cbfs.c
│   ├── clk.c
│   ├── config.c
│   ├── console.c
│   ├── cpu.c
│   ├── cramfs.c
│   ├── cros_ec.c
│   ├── dataflash_mmc_mux.c
│   ├── date.c
│   ├── demo.c
│   ├── dfu.c
│   ├── diag.c
│   ├── disk.c
│   ├── display.c
│   ├── echo.c
│   ├── eeprom.c
│   ├── efi.c
│   ├── elf.c
│   ├── ethsw.c
│   ├── exit.c
│   ├── ext2.c
│   ├── ext4.c
│   ├── fastboot
│   │   └── Kconfig
│   ├── fastboot.c
│   ├── fat.c
│   ├── fdc.c
│   ├── fdt.c
│   ├── fitupd.c
│   ├── flash.c
│   ├── fpga.c
│   ├── fpgad.c
│   ├── fs.c
│   ├── fs_uuid.c
│   ├── fuse.c
│   ├── gettime.c
│   ├── gpio.c
│   ├── gpt.c
│   ├── hash.c
│   ├── help.c
│   ├── host.c
│   ├── i2c.c
│   ├── ide.c
│   ├── ini.c
│   ├── io.c
│   ├── iotrace.c
│   ├── irq.c
│   ├── itest.c
│   ├── jffs2.c
│   ├── Kconfig
│   ├── led.c
│   ├── legacy_led.c
│   ├── license.c
│   ├── load.c
│   ├── log.c
│   ├── lzmadec.c
│   ├── mac.c
│   ├── Makefile
│   ├── md5sum.c
│   ├── mdio.c
│   ├── mem.c
│   ├── mfsl.c
│   ├── mii.c
│   ├── misc.c
│   ├── mmc.c
│   ├── mmc_spi.c
│   ├── mp.c
│   ├── mtdparts.c
│   ├── mvebu
│   │   ├── bubt.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── nand.c
│   ├── net.c
│   ├── nvedit.c
│   ├── nvme.c
│   ├── onenand.c
│   ├── part.c
│   ├── pci.c
│   ├── pcmcia.c
│   ├── pmic.c
│   ├── pxe.c
│   ├── qfw.c
│   ├── read.c
│   ├── reginfo.c
│   ├── regulator.c
│   ├── reiser.c
│   ├── remoteproc.c
│   ├── sata.c
│   ├── scsi.c
│   ├── setexpr.c
│   ├── sf.c
│   ├── sha1sum.c
│   ├── sound.c
│   ├── source.c
│   ├── spi.c
│   ├── spl.c
│   ├── strings.c
│   ├── terminal.c
│   ├── test.c
│   ├── thordown.c
│   ├── time.c
│   ├── tpm.c
│   ├── tpm_test.c
│   ├── trace.c
│   ├── tsi148.c
│   ├── ubi.c
│   ├── ubifs.c
│   ├── universe.c
│   ├── unzip.c
│   ├── usb.c
│   ├── usb_gadget_sdp.c
│   ├── usb_mass_storage.c
│   ├── version.c
│   ├── ximg.c
│   ├── yaffs2.c
│   ├── zfs.c
│   └── zip.c
├── common
│   ├── autoboot.c
│   ├── bedbug.c
│   ├── board_f.c
│   ├── board_info.c
│   ├── board_r.c
│   ├── boot_fit.c
│   ├── bootm.c
│   ├── bootm_os.c
│   ├── bootretry.c
│   ├── bootstage.c
│   ├── bouncebuf.c
│   ├── cli.c
│   ├── cli_hush.c
│   ├── cli_readline.c
│   ├── cli_simple.c
│   ├── command.c
│   ├── common_fit.c
│   ├── console.c
│   ├── cros_ec.c
│   ├── ddr_spd.c
│   ├── dfu.c
│   ├── dlmalloc.c
│   ├── dlmalloc.src
│   ├── edid.c
│   ├── eeprom
│   │   ├── eeprom_field.c
│   │   └── eeprom_layout.c
│   ├── exports.c
│   ├── fb_mmc.c
│   ├── fb_nand.c
│   ├── fdt_support.c
│   ├── flash.c
│   ├── hash.c
│   ├── hwconfig.c
│   ├── image-android.c
│   ├── image.c
│   ├── image-fdt.c
│   ├── image-fit.c
│   ├── image-sig.c
│   ├── image-sparse.c
│   ├── init
│   │   ├── board_init.c
│   │   └── Makefile
│   ├── iomux.c
│   ├── iotrace.c
│   ├── kallsyms.c
│   ├── Kconfig
│   ├── kgdb.c
│   ├── kgdb_stubs.c
│   ├── lcd.c
│   ├── lcd_console.c
│   ├── lcd_console_rotation.c
│   ├── lcd_simplefb.c
│   ├── lynxkdi.c
│   ├── main.c
│   ├── Makefile
│   ├── malloc_simple.c
│   ├── memsize.c
│   ├── menu.c
│   ├── miiphyutil.c
│   ├── spl
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── spl_atf.c
│   │   ├── spl_bootrom.c
│   │   ├── spl.c
│   │   ├── spl_dfu.c
│   │   ├── spl_ext.c
│   │   ├── spl_fat.c
│   │   ├── spl_fit.c
│   │   ├── spl_mmc.c
│   │   ├── spl_nand.c
│   │   ├── spl_net.c
│   │   ├── spl_nor.c
│   │   ├── spl_onenand.c
│   │   ├── spl_ram.c
│   │   ├── spl_sata.c
│   │   ├── spl_sdp.c
│   │   ├── spl_spi.c
│   │   ├── spl_ubi.c
│   │   ├── spl_usb.c
│   │   ├── spl_xip.c
│   │   └── spl_ymodem.c
│   ├── splash.c
│   ├── splash_source.c
│   ├── s_record.c
│   ├── stdio.c
│   ├── system_map.c
│   ├── update.c
│   ├── usb.c
│   ├── usb_hub.c
│   ├── usb_kbd.c
│   ├── usb_storage.c
│   └── xyzModem.c
├── config.mk
├── configs
│   ├── 10m50_defconfig
│   ├── 3c120_defconfig
│   ├── A10-OLinuXino-Lime_defconfig
│   ├── A10s-OLinuXino-M_defconfig
│   ├── A13-OLinuXino_defconfig
│   ├── A13-OLinuXinoM_defconfig
│   ├── A20-Olimex-SOM-EVB_defconfig
│   ├── A20-OLinuXino-Lime2_defconfig
│   ├── A20-OLinuXino-Lime2-eMMC_defconfig
│   ├── A20-OLinuXino-Lime_defconfig
│   ├── A20-OLinuXino_MICRO_defconfig
│   ├── A20-OLinuXino_MICRO-eMMC_defconfig
│   ├── A33-OLinuXino_defconfig
│   ├── a64-olinuxino_defconfig
│   ├── adp-ae3xx_defconfig
│   ├── adp-ag101p_defconfig
│   ├── Ainol_AW1_defconfig
│   ├── alt_defconfig
│   ├── am335x_baltos_defconfig
│   ├── am335x_boneblack_defconfig
│   ├── am335x_boneblack_vboot_defconfig
│   ├── am335x_evm_defconfig
│   ├── am335x_evm_norboot_defconfig
│   ├── am335x_evm_nor_defconfig
│   ├── am335x_evm_spiboot_defconfig
│   ├── am335x_evm_usbspl_defconfig
│   ├── am335x_hs_evm_defconfig
│   ├── am335x_hs_evm_uart_defconfig
│   ├── am335x_igep003x_defconfig
│   ├── am335x_shc_defconfig
│   ├── am335x_shc_ict_defconfig
│   ├── am335x_shc_netboot_defconfig
│   ├── am335x_shc_prompt_defconfig
│   ├── am335x_shc_sdboot_defconfig
│   ├── am335x_shc_sdboot_prompt_defconfig
│   ├── am335x_sl50_defconfig
│   ├── am3517_crane_defconfig
│   ├── am3517_evm_defconfig
│   ├── am43xx_evm_defconfig
│   ├── am43xx_evm_ethboot_defconfig
│   ├── am43xx_evm_qspiboot_defconfig
│   ├── am43xx_evm_usbhost_boot_defconfig
│   ├── am43xx_hs_evm_defconfig
│   ├── am57xx_evm_defconfig
│   ├── am57xx_evm_nodt_defconfig
│   ├── am57xx_hs_evm_defconfig
│   ├── amcore_defconfig
│   ├── Ampe_A76_defconfig
│   ├── ap121_defconfig
│   ├── ap143_defconfig
│   ├── ap325rxa_defconfig
│   ├── apalis_imx6_defconfig
│   ├── apalis_imx6_nospl_com_defconfig
│   ├── apalis_imx6_nospl_it_defconfig
│   ├── apalis_t30_defconfig
│   ├── apalis-tk1_defconfig
│   ├── apf27_defconfig
│   ├── ap_sh4a_4a_defconfig
│   ├── apx4devkit_defconfig
│   ├── aristainetos2b_defconfig
│   ├── aristainetos2_defconfig
│   ├── aristainetos_defconfig
│   ├── armadillo-800eva_defconfig
│   ├── arndale_defconfig
│   ├── aspenite_defconfig
│   ├── astro_mcf5373l_defconfig
│   ├── at91rm9200ek_defconfig
│   ├── at91rm9200ek_ram_defconfig
│   ├── at91sam9260ek_dataflash_cs0_defconfig
│   ├── at91sam9260ek_dataflash_cs1_defconfig
│   ├── at91sam9260ek_nandflash_defconfig
│   ├── at91sam9261ek_dataflash_cs0_defconfig
│   ├── at91sam9261ek_dataflash_cs3_defconfig
│   ├── at91sam9261ek_nandflash_defconfig
│   ├── at91sam9263ek_dataflash_cs0_defconfig
│   ├── at91sam9263ek_dataflash_defconfig
│   ├── at91sam9263ek_nandflash_defconfig
│   ├── at91sam9263ek_norflash_boot_defconfig
│   ├── at91sam9263ek_norflash_defconfig
│   ├── at91sam9g10ek_dataflash_cs0_defconfig
│   ├── at91sam9g10ek_dataflash_cs3_defconfig
│   ├── at91sam9g10ek_nandflash_defconfig
│   ├── at91sam9g20ek_2mmc_defconfig
│   ├── at91sam9g20ek_2mmc_nandflash_defconfig
│   ├── at91sam9g20ek_dataflash_cs0_defconfig
│   ├── at91sam9g20ek_dataflash_cs1_defconfig
│   ├── at91sam9g20ek_nandflash_defconfig
│   ├── at91sam9m10g45ek_mmc_defconfig
│   ├── at91sam9m10g45ek_nandflash_defconfig
│   ├── at91sam9n12ek_mmc_defconfig
│   ├── at91sam9n12ek_nandflash_defconfig
│   ├── at91sam9n12ek_spiflash_defconfig
│   ├── at91sam9rlek_dataflash_defconfig
│   ├── at91sam9rlek_mmc_defconfig
│   ├── at91sam9rlek_nandflash_defconfig
│   ├── at91sam9x5ek_dataflash_defconfig
│   ├── at91sam9x5ek_mmc_defconfig
│   ├── at91sam9x5ek_nandflash_defconfig
│   ├── at91sam9x5ek_spiflash_defconfig
│   ├── at91sam9xeek_dataflash_cs0_defconfig
│   ├── at91sam9xeek_dataflash_cs1_defconfig
│   ├── at91sam9xeek_nandflash_defconfig
│   ├── Auxtek-T003_defconfig
│   ├── Auxtek-T004_defconfig
│   ├── axm_defconfig
│   ├── axs101_defconfig
│   ├── axs103_defconfig
│   ├── B4420QDS_defconfig
│   ├── B4420QDS_NAND_defconfig
│   ├── B4420QDS_SPIFLASH_defconfig
│   ├── B4860QDS_defconfig
│   ├── B4860QDS_NAND_defconfig
│   ├── B4860QDS_SECURE_BOOT_defconfig
│   ├── B4860QDS_SPIFLASH_defconfig
│   ├── B4860QDS_SRIO_PCIE_BOOT_defconfig
│   ├── ba10_tv_box_defconfig
│   ├── Bananapi_defconfig
│   ├── bananapi_m1_plus_defconfig
│   ├── Bananapi_m2m_defconfig
│   ├── Bananapi_M2_Ultra_defconfig
│   ├── bananapi_m64_defconfig
│   ├── Bananapro_defconfig
│   ├── bayleybay_defconfig
│   ├── bcm11130_defconfig
│   ├── bcm11130_nand_defconfig
│   ├── bcm23550_w1d_defconfig
│   ├── bcm28155_ap_defconfig
│   ├── bcm28155_w1d_defconfig
│   ├── bcm911360_entphn_defconfig
│   ├── bcm911360_entphn-ns_defconfig
│   ├── bcm911360k_defconfig
│   ├── bcm958300k_defconfig
│   ├── bcm958300k-ns_defconfig
│   ├── bcm958305k_defconfig
│   ├── bcm958622hr_defconfig
│   ├── bcm958712k_defconfig
│   ├── beaver_defconfig
│   ├── bg0900_defconfig
│   ├── birdland_bav335a_defconfig
│   ├── birdland_bav335b_defconfig
│   ├── bk4r1_defconfig
│   ├── blanche_defconfig
│   ├── boston32r2_defconfig
│   ├── boston32r2el_defconfig
│   ├── boston64r2_defconfig
│   ├── boston64r2el_defconfig
│   ├── brppt1_mmc_defconfig
│   ├── brppt1_nand_defconfig
│   ├── brppt1_spi_defconfig
│   ├── brxre1_defconfig
│   ├── BSC9131RDB_NAND_defconfig
│   ├── BSC9131RDB_NAND_SYSCLK100_defconfig
│   ├── BSC9131RDB_SPIFLASH_defconfig
│   ├── BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
│   ├── BSC9132QDS_NAND_DDRCLK100_defconfig
│   ├── BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
│   ├── BSC9132QDS_NAND_DDRCLK133_defconfig
│   ├── BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
│   ├── BSC9132QDS_NOR_DDRCLK100_defconfig
│   ├── BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
│   ├── BSC9132QDS_NOR_DDRCLK133_defconfig
│   ├── BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
│   ├── BSC9132QDS_SDCARD_DDRCLK100_defconfig
│   ├── BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
│   ├── BSC9132QDS_SDCARD_DDRCLK133_defconfig
│   ├── BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
│   ├── BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
│   ├── BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
│   ├── BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
│   ├── BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
│   ├── C29XPCIE_defconfig
│   ├── C29XPCIE_NAND_defconfig
│   ├── C29XPCIE_NOR_SECBOOT_defconfig
│   ├── C29XPCIE_SPIFLASH_defconfig
│   ├── C29XPCIE_SPIFLASH_SECBOOT_defconfig
│   ├── caddy2_defconfig
│   ├── cairo_defconfig
│   ├── calimain_defconfig
│   ├── cardhu_defconfig
│   ├── cei-tk1-som_defconfig
│   ├── cgtqmx6eval_defconfig
│   ├── cherryhill_defconfig
│   ├── chiliboard_defconfig
│   ├── CHIP_defconfig
│   ├── CHIP_pro_defconfig
│   ├── chromebit_mickey_defconfig
│   ├── chromebook_jerry_defconfig
│   ├── chromebook_link64_defconfig
│   ├── chromebook_link_defconfig
│   ├── chromebook_minnie_defconfig
│   ├── chromebook_samus_defconfig
│   ├── chromebox_panther_defconfig
│   ├── Chuwi_V7_CW0825_defconfig
│   ├── clearfog_defconfig
│   ├── cl-som-am57x_defconfig
│   ├── cl-som-imx7_defconfig
│   ├── cm_fx6_defconfig
│   ├── cm_t335_defconfig
│   ├── cm_t3517_defconfig
│   ├── cm_t35_defconfig
│   ├── cm_t43_defconfig
│   ├── cm_t54_defconfig
│   ├── cobra5272_defconfig
│   ├── colibri_imx6_defconfig
│   ├── colibri_imx6_nospl_defconfig
│   ├── colibri_imx7_defconfig
│   ├── colibri_pxa270_defconfig
│   ├── colibri_t20_defconfig
│   ├── colibri_t30_defconfig
│   ├── colibri_vf_defconfig
│   ├── Colombus_defconfig
│   ├── colorfly_e708_q1_defconfig
│   ├── comtrend_ar5387un_ram_defconfig
│   ├── comtrend_ct5361_ram_defconfig
│   ├── comtrend_vr3032u_ram_defconfig
│   ├── conga-qeval20-qa3-e3845_defconfig
│   ├── conga-qeval20-qa3-e3845-internal-uart_defconfig
│   ├── controlcenterd_36BIT_SDCARD_defconfig
│   ├── controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
│   ├── controlcenterdc_defconfig
│   ├── controlcenterd_TRAILBLAZER_defconfig
│   ├── controlcenterd_TRAILBLAZER_DEVELOP_defconfig
│   ├── coreboot-x86_defconfig
│   ├── corvus_defconfig
│   ├── cougarcanyon2_defconfig
│   ├── crownbay_defconfig
│   ├── CSQ_CS908_defconfig
│   ├── Cubieboard2_defconfig
│   ├── Cubieboard4_defconfig
│   ├── Cubieboard_defconfig
│   ├── Cubietruck_defconfig
│   ├── Cubietruck_plus_defconfig
│   ├── Cyrus_P5020_defconfig
│   ├── Cyrus_P5040_defconfig
│   ├── d2net_v2_defconfig
│   ├── da850_am18xxevm_defconfig
│   ├── da850evm_defconfig
│   ├── da850evm_direct_nor_defconfig
│   ├── dalmore_defconfig
│   ├── db-88f6720_defconfig
│   ├── db-88f6820-amc_defconfig
│   ├── db-88f6820-gp_defconfig
│   ├── dbau1000_defconfig
│   ├── dbau1100_defconfig
│   ├── dbau1500_defconfig
│   ├── dbau1550_defconfig
│   ├── dbau1550_el_defconfig
│   ├── db-mv784mp-gp_defconfig
│   ├── devkit3250_defconfig
│   ├── devkit8000_defconfig
│   ├── dfi-bt700-q7x-151_defconfig
│   ├── dh_imx6_defconfig
│   ├── difrnce_dit4350_defconfig
│   ├── display5_defconfig
│   ├── display5_factory_defconfig
│   ├── dms-ba16-1g_defconfig
│   ├── dms-ba16_defconfig
│   ├── dns325_defconfig
│   ├── dockstar_defconfig
│   ├── dra7xx_evm_defconfig
│   ├── dra7xx_hs_evm_defconfig
│   ├── draco_defconfig
│   ├── dragonboard410c_defconfig
│   ├── dreamplug_defconfig
│   ├── ds109_defconfig
│   ├── ds414_defconfig
│   ├── dserve_dsrv9703c_defconfig
│   ├── duovero_defconfig
│   ├── e2220-1170_defconfig
│   ├── ea20_defconfig
│   ├── eb_cpu5282_defconfig
│   ├── eb_cpu5282_internal_defconfig
│   ├── eco5pk_defconfig
│   ├── ecovec_defconfig
│   ├── edb9315a_defconfig
│   ├── edison_defconfig
│   ├── edminiv2_defconfig
│   ├── efi-x86_defconfig
│   ├── Empire_electronix_d709_defconfig
│   ├── Empire_electronix_m712_defconfig
│   ├── espresso7420_defconfig
│   ├── espt_defconfig
│   ├── etamin_defconfig
│   ├── ethernut5_defconfig
│   ├── evb-ast2500_defconfig
│   ├── evb-px5_defconfig
│   ├── evb-rk3036_defconfig
│   ├── evb-rk3229_defconfig
│   ├── evb-rk3288_defconfig
│   ├── evb-rk3328_defconfig
│   ├── evb-rk3399_defconfig
│   ├── evb-rv1108_defconfig
│   ├── fennec-rk3288_defconfig
│   ├── firefly-rk3288_defconfig
│   ├── firefly-rk3399_defconfig
│   ├── flea3_defconfig
│   ├── ga10h_v1_1_defconfig
│   ├── galileo_defconfig
│   ├── ge_b450v3_defconfig
│   ├── ge_b650v3_defconfig
│   ├── ge_b850v3_defconfig
│   ├── geekbox_defconfig
│   ├── goflexhome_defconfig
│   ├── gose_defconfig
│   ├── gplugd_defconfig
│   ├── gt90h_v4_defconfig
│   ├── gurnard_defconfig
│   ├── guruplug_defconfig
│   ├── gwventana_emmc_defconfig
│   ├── gwventana_gw5904_defconfig
│   ├── gwventana_nand_defconfig
│   ├── h2200_defconfig
│   ├── h8_homlet_v2_defconfig
│   ├── harmony_defconfig
│   ├── highbank_defconfig
│   ├── hikey_defconfig
│   ├── hrcon_defconfig
│   ├── hrcon_dh_defconfig
│   ├── hsdk_defconfig
│   ├── huawei_hg556a_ram_defconfig
│   ├── Hummingbird_A31_defconfig
│   ├── Hyundai_A7HD_defconfig
│   ├── i12-tvbox_defconfig
│   ├── ib62x0_defconfig
│   ├── icnova-a20-swac_defconfig
│   ├── iconnect_defconfig
│   ├── ids8313_defconfig
│   ├── igep0032_defconfig
│   ├── igep00x0_defconfig
│   ├── imgtec_xilfpga_defconfig
│   ├── imx31_phycore_defconfig
│   ├── imx31_phycore_eet_defconfig
│   ├── imx6qdl_icore_mmc_defconfig
│   ├── imx6qdl_icore_nand_defconfig
│   ├── imx6qdl_icore_rqs_defconfig
│   ├── imx6q_logic_defconfig
│   ├── imx6ul_geam_mmc_defconfig
│   ├── imx6ul_geam_nand_defconfig
│   ├── imx6ul_isiot_emmc_defconfig
│   ├── imx6ul_isiot_mmc_defconfig
│   ├── imx6ul_isiot_nand_defconfig
│   ├── inet1_defconfig
│   ├── iNet_3F_defconfig
│   ├── iNet_3W_defconfig
│   ├── inet86dz_defconfig
│   ├── iNet_86VS_defconfig
│   ├── inet97fv2_defconfig
│   ├── inet98v_rev2_defconfig
│   ├── inet9f_rev03_defconfig
│   ├── iNet_D978_rev2_defconfig
│   ├── inet_q972_defconfig
│   ├── inetspace_v2_defconfig
│   ├── integratorap_cm720t_defconfig
│   ├── integratorap_cm920t_defconfig
│   ├── integratorap_cm926ejs_defconfig
│   ├── integratorap_cm946es_defconfig
│   ├── integratorcp_cm1136_defconfig
│   ├── integratorcp_cm920t_defconfig
│   ├── integratorcp_cm926ejs_defconfig
│   ├── integratorcp_cm946es_defconfig
│   ├── ipam390_defconfig
│   ├── Itead_Ibox_A20_defconfig
│   ├── itop4412_defconfig
│   ├── jesurun_q5_defconfig
│   ├── jetson-tk1_defconfig
│   ├── k2e_evm_defconfig
│   ├── k2e_hs_evm_defconfig
│   ├── k2g_evm_defconfig
│   ├── k2g_hs_evm_defconfig
│   ├── k2hk_evm_defconfig
│   ├── k2hk_hs_evm_defconfig
│   ├── k2l_evm_defconfig
│   ├── kc1_defconfig
│   ├── kmcoge4_defconfig
│   ├── kmcoge5ne_defconfig
│   ├── kmcoge5un_defconfig
│   ├── kmeter1_defconfig
│   ├── km_kirkwood_128m16_defconfig
│   ├── km_kirkwood_defconfig
│   ├── km_kirkwood_pci_defconfig
│   ├── kmlion1_defconfig
│   ├── kmnusa_defconfig
│   ├── kmopti2_defconfig
│   ├── kmsugp1_defconfig
│   ├── kmsupx5_defconfig
│   ├── kmsuv31_defconfig
│   ├── kmtegr1_defconfig
│   ├── kmtepr2_defconfig
│   ├── kmvect1_defconfig
│   ├── koelsch_defconfig
│   ├── kylin-rk3036_defconfig
│   ├── kzm9g_defconfig
│   ├── lager_defconfig
│   ├── Lamobo_R1_defconfig
│   ├── legoev3_defconfig
│   ├── LicheePi_Zero_defconfig
│   ├── Linksprite_pcDuino3_defconfig
│   ├── Linksprite_pcDuino3_Nano_defconfig
│   ├── Linksprite_pcDuino_defconfig
│   ├── lion-rk3368_defconfig
│   ├── liteboard_defconfig
│   ├── ls1012afrdm_qspi_defconfig
│   ├── ls1012aqds_qspi_defconfig
│   ├── ls1012ardb_qspi_defconfig
│   ├── ls1012ardb_qspi_SECURE_BOOT_defconfig
│   ├── ls1021aiot_qspi_defconfig
│   ├── ls1021aiot_sdcard_defconfig
│   ├── ls1021aqds_ddr4_nor_defconfig
│   ├── ls1021aqds_ddr4_nor_lpuart_defconfig
│   ├── ls1021aqds_nand_defconfig
│   ├── ls1021aqds_nor_defconfig
│   ├── ls1021aqds_nor_lpuart_defconfig
│   ├── ls1021aqds_nor_SECURE_BOOT_defconfig
│   ├── ls1021aqds_qspi_defconfig
│   ├── ls1021aqds_sdcard_ifc_defconfig
│   ├── ls1021aqds_sdcard_qspi_defconfig
│   ├── ls1021atwr_nor_defconfig
│   ├── ls1021atwr_nor_lpuart_defconfig
│   ├── ls1021atwr_nor_SECURE_BOOT_defconfig
│   ├── ls1021atwr_qspi_defconfig
│   ├── ls1021atwr_sdcard_ifc_defconfig
│   ├── ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig
│   ├── ls1021atwr_sdcard_qspi_defconfig
│   ├── ls1043aqds_defconfig
│   ├── ls1043aqds_lpuart_defconfig
│   ├── ls1043aqds_nand_defconfig
│   ├── ls1043aqds_nor_ddr3_defconfig
│   ├── ls1043aqds_qspi_defconfig
│   ├── ls1043aqds_sdcard_ifc_defconfig
│   ├── ls1043aqds_sdcard_qspi_defconfig
│   ├── ls1043ardb_defconfig
│   ├── ls1043ardb_nand_defconfig
│   ├── ls1043ardb_nand_SECURE_BOOT_defconfig
│   ├── ls1043ardb_sdcard_defconfig
│   ├── ls1043ardb_sdcard_SECURE_BOOT_defconfig
│   ├── ls1043ardb_SECURE_BOOT_defconfig
│   ├── ls1046aqds_defconfig
│   ├── ls1046aqds_lpuart_defconfig
│   ├── ls1046aqds_nand_defconfig
│   ├── ls1046aqds_qspi_defconfig
│   ├── ls1046aqds_sdcard_ifc_defconfig
│   ├── ls1046aqds_sdcard_qspi_defconfig
│   ├── ls1046aqds_SECURE_BOOT_defconfig
│   ├── ls1046ardb_emmc_defconfig
│   ├── ls1046ardb_qspi_defconfig
│   ├── ls1046ardb_qspi_SECURE_BOOT_defconfig
│   ├── ls1046ardb_sdcard_defconfig
│   ├── ls1046ardb_sdcard_SECURE_BOOT_defconfig
│   ├── ls1088aqds_qspi_defconfig
│   ├── ls1088ardb_qspi_defconfig
│   ├── ls2080a_emu_defconfig
│   ├── ls2080aqds_defconfig
│   ├── ls2080aqds_nand_defconfig
│   ├── ls2080aqds_qspi_defconfig
│   ├── ls2080aqds_sdcard_defconfig
│   ├── ls2080aqds_SECURE_BOOT_defconfig
│   ├── ls2080ardb_defconfig
│   ├── ls2080ardb_nand_defconfig
│   ├── ls2080ardb_SECURE_BOOT_defconfig
│   ├── ls2080a_simu_defconfig
│   ├── ls2081ardb_defconfig
│   ├── ls2088ardb_qspi_defconfig
│   ├── ls2088ardb_qspi_SECURE_BOOT_defconfig
│   ├── lschlv2_defconfig
│   ├── lsxhl_defconfig
│   ├── m28evk_defconfig
│   ├── M5208EVBE_defconfig
│   ├── M52277EVB_defconfig
│   ├── M52277EVB_stmicro_defconfig
│   ├── M5235EVB_defconfig
│   ├── M5235EVB_Flash32_defconfig
│   ├── M5249EVB_defconfig
│   ├── M5253DEMO_defconfig
│   ├── M5253EVBE_defconfig
│   ├── M5272C3_defconfig
│   ├── M5275EVB_defconfig
│   ├── M5282EVB_defconfig
│   ├── M53017EVB_defconfig
│   ├── M5329AFEE_defconfig
│   ├── M5329BFEE_defconfig
│   ├── M5373EVB_defconfig
│   ├── m53evk_defconfig
│   ├── M54418TWR_defconfig
│   ├── M54418TWR_nand_mii_defconfig
│   ├── M54418TWR_nand_rmii_defconfig
│   ├── M54418TWR_nand_rmii_lowfreq_defconfig
│   ├── M54418TWR_serial_mii_defconfig
│   ├── M54418TWR_serial_rmii_defconfig
│   ├── M54451EVB_defconfig
│   ├── M54451EVB_stmicro_defconfig
│   ├── M54455EVB_a66_defconfig
│   ├── M54455EVB_defconfig
│   ├── M54455EVB_i66_defconfig
│   ├── M54455EVB_intel_defconfig
│   ├── M54455EVB_stm33_defconfig
│   ├── M5475AFE_defconfig
│   ├── M5475BFE_defconfig
│   ├── M5475CFE_defconfig
│   ├── M5475DFE_defconfig
│   ├── M5475EFE_defconfig
│   ├── M5475FFE_defconfig
│   ├── M5475GFE_defconfig
│   ├── M5485AFE_defconfig
│   ├── M5485BFE_defconfig
│   ├── M5485CFE_defconfig
│   ├── M5485DFE_defconfig
│   ├── M5485EFE_defconfig
│   ├── M5485FFE_defconfig
│   ├── M5485GFE_defconfig
│   ├── M5485HFE_defconfig
│   ├── ma5d4evk_defconfig
│   ├── malta64_defconfig
│   ├── malta64el_defconfig
│   ├── malta_defconfig
│   ├── maltael_defconfig
│   ├── Marsboard_A10_defconfig
│   ├── marsboard_defconfig
│   ├── maxbcm_defconfig
│   ├── mccmon6_nor_defconfig
│   ├── mccmon6_sd_defconfig
│   ├── MCR3000_defconfig
│   ├── mcx_defconfig
│   ├── medcom-wide_defconfig
│   ├── meesc_dataflash_defconfig
│   ├── meesc_defconfig
│   ├── Mele_A1000_defconfig
│   ├── Mele_A1000G_quad_defconfig
│   ├── Mele_I7_defconfig
│   ├── Mele_M3_defconfig
│   ├── Mele_M5_defconfig
│   ├── Mele_M9_defconfig
│   ├── Merrii_A80_Optimus_defconfig
│   ├── mgcoge3un_defconfig
│   ├── microblaze-generic_defconfig
│   ├── MigoR_defconfig
│   ├── Mini-X_defconfig
│   ├── minnowmax_defconfig
│   ├── miqi-rk3288_defconfig
│   ├── mixtile_loftq_defconfig
│   ├── mk802_a10s_defconfig
│   ├── mk802_defconfig
│   ├── mk802ii_defconfig
│   ├── MK808C_defconfig
│   ├── mpc8308_p1m_defconfig
│   ├── MPC8308RDB_defconfig
│   ├── MPC8313ERDB_33_defconfig
│   ├── MPC8313ERDB_66_defconfig
│   ├── MPC8313ERDB_NAND_33_defconfig
│   ├── MPC8313ERDB_NAND_66_defconfig
│   ├── MPC8315ERDB_defconfig
│   ├── MPC8323ERDB_defconfig
│   ├── MPC832XEMDS_ATM_defconfig
│   ├── MPC832XEMDS_defconfig
│   ├── MPC832XEMDS_HOST_33_defconfig
│   ├── MPC832XEMDS_HOST_66_defconfig
│   ├── MPC832XEMDS_SLAVE_defconfig
│   ├── MPC8349EMDS_defconfig
│   ├── MPC8349ITX_defconfig
│   ├── MPC8349ITXGP_defconfig
│   ├── MPC8349ITX_LOWBOOT_defconfig
│   ├── MPC837XEMDS_defconfig
│   ├── MPC837XEMDS_HOST_defconfig
│   ├── MPC837XERDB_defconfig
│   ├── MPC8536DS_36BIT_defconfig
│   ├── MPC8536DS_defconfig
│   ├── MPC8536DS_SDCARD_defconfig
│   ├── MPC8536DS_SPIFLASH_defconfig
│   ├── MPC8541CDS_defconfig
│   ├── MPC8541CDS_legacy_defconfig
│   ├── MPC8544DS_defconfig
│   ├── MPC8548CDS_36BIT_defconfig
│   ├── MPC8548CDS_defconfig
│   ├── MPC8548CDS_legacy_defconfig
│   ├── MPC8555CDS_defconfig
│   ├── MPC8555CDS_legacy_defconfig
│   ├── MPC8568MDS_defconfig
│   ├── MPC8569MDS_ATM_defconfig
│   ├── MPC8569MDS_defconfig
│   ├── MPC8572DS_36BIT_defconfig
│   ├── MPC8572DS_defconfig
│   ├── MPC8610HPCD_defconfig
│   ├── MPC8641HPCN_36BIT_defconfig
│   ├── MPC8641HPCN_defconfig
│   ├── mpr2_defconfig
│   ├── ms7720se_defconfig
│   ├── ms7722se_defconfig
│   ├── ms7750se_defconfig
│   ├── MSI_Primo73_defconfig
│   ├── MSI_Primo81_defconfig
│   ├── mt_ventoux_defconfig
│   ├── mvebu_db-88f3720_defconfig
│   ├── mvebu_db_armada8k_defconfig
│   ├── mvebu_espressobin-88f3720_defconfig
│   ├── mvebu_mcbin-88f8040_defconfig
│   ├── mx23evk_defconfig
│   ├── mx23_olinuxino_defconfig
│   ├── mx25pdk_defconfig
│   ├── mx28evk_auart_console_defconfig
│   ├── mx28evk_defconfig
│   ├── mx28evk_nand_defconfig
│   ├── mx28evk_spi_defconfig
│   ├── mx31ads_defconfig
│   ├── mx31pdk_defconfig
│   ├── mx35pdk_defconfig
│   ├── mx51evk_defconfig
│   ├── mx53ard_defconfig
│   ├── mx53cx9020_defconfig
│   ├── mx53evk_defconfig
│   ├── mx53loco_defconfig
│   ├── mx53smd_defconfig
│   ├── mx6cuboxi_defconfig
│   ├── mx6dlarm2_defconfig
│   ├── mx6dlarm2_lpddr2_defconfig
│   ├── mx6qarm2_defconfig
│   ├── mx6qarm2_lpddr2_defconfig
│   ├── mx6qsabrelite_defconfig
│   ├── mx6sabreauto_defconfig
│   ├── mx6sabresd_defconfig
│   ├── mx6slevk_defconfig
│   ├── mx6slevk_spinor_defconfig
│   ├── mx6slevk_spl_defconfig
│   ├── mx6sllevk_defconfig
│   ├── mx6sllevk_plugin_defconfig
│   ├── mx6sxsabreauto_defconfig
│   ├── mx6sxsabresd_defconfig
│   ├── mx6sxsabresd_spl_defconfig
│   ├── mx6ul_14x14_evk_defconfig
│   ├── mx6ul_9x9_evk_defconfig
│   ├── mx6ull_14x14_evk_defconfig
│   ├── mx6ull_14x14_evk_plugin_defconfig
│   ├── mx7dsabresd_defconfig
│   ├── mx7dsabresd_secure_defconfig
│   ├── mx7ulp_evk_defconfig
│   ├── mx7ulp_evk_plugin_defconfig
│   ├── nanopi_a64_defconfig
│   ├── nanopi_m1_defconfig
│   ├── nanopi_m1_plus_defconfig
│   ├── nanopi_neo2_defconfig
│   ├── nanopi_neo_air_defconfig
│   ├── nanopi_neo_defconfig
│   ├── nas220_defconfig
│   ├── net2big_v2_defconfig
│   ├── netgear_cg3100d_ram_defconfig
│   ├── netspace_lite_v2_defconfig
│   ├── netspace_max_v2_defconfig
│   ├── netspace_mini_v2_defconfig
│   ├── netspace_v2_defconfig
│   ├── Nintendo_NES_Classic_Edition_defconfig
│   ├── nitrogen6dl2g_defconfig
│   ├── nitrogen6dl_defconfig
│   ├── nitrogen6q2g_defconfig
│   ├── nitrogen6q_defconfig
│   ├── nitrogen6s1g_defconfig
│   ├── nitrogen6s_defconfig
│   ├── nokia_rx51_defconfig
│   ├── novena_defconfig
│   ├── nsa310s_defconfig
│   ├── nsim_700be_defconfig
│   ├── nsim_700_defconfig
│   ├── nsim_hs38be_defconfig
│   ├── nsim_hs38_defconfig
│   ├── nyan-big_defconfig
│   ├── odroid-c2_defconfig
│   ├── odroid_defconfig
│   ├── odroid-xu3_defconfig
│   ├── omap3_beagle_defconfig
│   ├── omap3_evm_defconfig
│   ├── omap3_ha_defconfig
│   ├── omap3_logic_defconfig
│   ├── omap3_overo_defconfig
│   ├── omap3_pandora_defconfig
│   ├── omap3_zoom1_defconfig
│   ├── omap4_panda_defconfig
│   ├── omap4_sdp4430_defconfig
│   ├── omap5_uevm_defconfig
│   ├── omapl138_lcdk_defconfig
│   ├── openrd_base_defconfig
│   ├── openrd_client_defconfig
│   ├── openrd_ultimate_defconfig
│   ├── opos6uldev_defconfig
│   ├── orangepi_2_defconfig
│   ├── Orangepi_defconfig
│   ├── orangepi_lite_defconfig
│   ├── Orangepi_mini_defconfig
│   ├── orangepi_one_defconfig
│   ├── orangepi_pc2_defconfig
│   ├── orangepi_pc_defconfig
│   ├── orangepi_pc_plus_defconfig
│   ├── orangepi_plus2e_defconfig
│   ├── orangepi_plus_defconfig
│   ├── orangepi_prime_defconfig
│   ├── orangepi_win_defconfig
│   ├── orangepi_zero_defconfig
│   ├── orangepi_zero_plus2_defconfig
│   ├── origen_defconfig
│   ├── ot1200_defconfig
│   ├── ot1200_spl_defconfig
│   ├── P1010RDB-PA_36BIT_NAND_defconfig
│   ├── P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig
│   ├── P1010RDB-PA_36BIT_NOR_defconfig
│   ├── P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig
│   ├── P1010RDB-PA_36BIT_SDCARD_defconfig
│   ├── P1010RDB-PA_36BIT_SPIFLASH_defconfig
│   ├── P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig
│   ├── P1010RDB-PA_NAND_defconfig
│   ├── P1010RDB-PA_NAND_SECBOOT_defconfig
│   ├── P1010RDB-PA_NOR_defconfig
│   ├── P1010RDB-PA_NOR_SECBOOT_defconfig
│   ├── P1010RDB-PA_SDCARD_defconfig
│   ├── P1010RDB-PA_SPIFLASH_defconfig
│   ├── P1010RDB-PA_SPIFLASH_SECBOOT_defconfig
│   ├── P1010RDB-PB_36BIT_NAND_defconfig
│   ├── P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig
│   ├── P1010RDB-PB_36BIT_NOR_defconfig
│   ├── P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig
│   ├── P1010RDB-PB_36BIT_SDCARD_defconfig
│   ├── P1010RDB-PB_36BIT_SPIFLASH_defconfig
│   ├── P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig
│   ├── P1010RDB-PB_NAND_defconfig
│   ├── P1010RDB-PB_NAND_SECBOOT_defconfig
│   ├── P1010RDB-PB_NOR_defconfig
│   ├── P1010RDB-PB_NOR_SECBOOT_defconfig
│   ├── P1010RDB-PB_SDCARD_defconfig
│   ├── P1010RDB-PB_SPIFLASH_defconfig
│   ├── P1010RDB-PB_SPIFLASH_SECBOOT_defconfig
│   ├── P1020MBG-PC_36BIT_defconfig
│   ├── P1020MBG-PC_36BIT_SDCARD_defconfig
│   ├── P1020MBG-PC_defconfig
│   ├── P1020MBG-PC_SDCARD_defconfig
│   ├── P1020RDB-PC_36BIT_defconfig
│   ├── P1020RDB-PC_36BIT_NAND_defconfig
│   ├── P1020RDB-PC_36BIT_SDCARD_defconfig
│   ├── P1020RDB-PC_36BIT_SPIFLASH_defconfig
│   ├── P1020RDB-PC_defconfig
│   ├── P1020RDB-PC_NAND_defconfig
│   ├── P1020RDB-PC_SDCARD_defconfig
│   ├── P1020RDB-PC_SPIFLASH_defconfig
│   ├── P1020RDB-PD_defconfig
│   ├── P1020RDB-PD_NAND_defconfig
│   ├── P1020RDB-PD_SDCARD_defconfig
│   ├── P1020RDB-PD_SPIFLASH_defconfig
│   ├── P1020UTM-PC_36BIT_defconfig
│   ├── P1020UTM-PC_36BIT_SDCARD_defconfig
│   ├── P1020UTM-PC_defconfig
│   ├── P1020UTM-PC_SDCARD_defconfig
│   ├── P1021RDB-PC_36BIT_defconfig
│   ├── P1021RDB-PC_36BIT_NAND_defconfig
│   ├── P1021RDB-PC_36BIT_SDCARD_defconfig
│   ├── P1021RDB-PC_36BIT_SPIFLASH_defconfig
│   ├── P1021RDB-PC_defconfig
│   ├── P1021RDB-PC_NAND_defconfig
│   ├── P1021RDB-PC_SDCARD_defconfig
│   ├── P1021RDB-PC_SPIFLASH_defconfig
│   ├── P1022DS_36BIT_defconfig
│   ├── P1022DS_36BIT_NAND_defconfig
│   ├── P1022DS_36BIT_SDCARD_defconfig
│   ├── P1022DS_36BIT_SPIFLASH_defconfig
│   ├── P1022DS_defconfig
│   ├── P1022DS_NAND_defconfig
│   ├── P1022DS_SDCARD_defconfig
│   ├── P1022DS_SPIFLASH_defconfig
│   ├── P1023RDB_defconfig
│   ├── P1024RDB_36BIT_defconfig
│   ├── P1024RDB_defconfig
│   ├── P1024RDB_NAND_defconfig
│   ├── P1024RDB_SDCARD_defconfig
│   ├── P1024RDB_SPIFLASH_defconfig
│   ├── P1025RDB_36BIT_defconfig
│   ├── P1025RDB_defconfig
│   ├── P1025RDB_NAND_defconfig
│   ├── P1025RDB_SDCARD_defconfig
│   ├── P1025RDB_SPIFLASH_defconfig
│   ├── P2020RDB-PC_36BIT_defconfig
│   ├── P2020RDB-PC_36BIT_NAND_defconfig
│   ├── P2020RDB-PC_36BIT_SDCARD_defconfig
│   ├── P2020RDB-PC_36BIT_SPIFLASH_defconfig
│   ├── P2020RDB-PC_defconfig
│   ├── P2020RDB-PC_NAND_defconfig
│   ├── P2020RDB-PC_SDCARD_defconfig
│   ├── P2020RDB-PC_SPIFLASH_defconfig
│   ├── P2041RDB_defconfig
│   ├── P2041RDB_NAND_defconfig
│   ├── P2041RDB_SDCARD_defconfig
│   ├── P2041RDB_SECURE_BOOT_defconfig
│   ├── P2041RDB_SPIFLASH_defconfig
│   ├── P2041RDB_SRIO_PCIE_BOOT_defconfig
│   ├── p2371-0000_defconfig
│   ├── p2371-2180_defconfig
│   ├── p2571_defconfig
│   ├── p2771-0000-000_defconfig
│   ├── p2771-0000-500_defconfig
│   ├── P3041DS_defconfig
│   ├── P3041DS_NAND_defconfig
│   ├── P3041DS_NAND_SECURE_BOOT_defconfig
│   ├── P3041DS_SDCARD_defconfig
│   ├── P3041DS_SECURE_BOOT_defconfig
│   ├── P3041DS_SPIFLASH_defconfig
│   ├── P3041DS_SRIO_PCIE_BOOT_defconfig
│   ├── P4080DS_defconfig
│   ├── P4080DS_SDCARD_defconfig
│   ├── P4080DS_SECURE_BOOT_defconfig
│   ├── P4080DS_SPIFLASH_defconfig
│   ├── P4080DS_SRIO_PCIE_BOOT_defconfig
│   ├── P5020DS_defconfig
│   ├── P5020DS_NAND_defconfig
│   ├── P5020DS_NAND_SECURE_BOOT_defconfig
│   ├── P5020DS_SDCARD_defconfig
│   ├── P5020DS_SECURE_BOOT_defconfig
│   ├── P5020DS_SPIFLASH_defconfig
│   ├── P5020DS_SRIO_PCIE_BOOT_defconfig
│   ├── P5040DS_defconfig
│   ├── P5040DS_NAND_defconfig
│   ├── P5040DS_NAND_SECURE_BOOT_defconfig
│   ├── P5040DS_SDCARD_defconfig
│   ├── P5040DS_SECURE_BOOT_defconfig
│   ├── P5040DS_SPIFLASH_defconfig
│   ├── parrot_r16_defconfig
│   ├── paz00_defconfig
│   ├── pb1000_defconfig
│   ├── pcm051_rev1_defconfig
│   ├── pcm051_rev3_defconfig
│   ├── pcm052_defconfig
│   ├── pcm058_defconfig
│   ├── peach-pi_defconfig
│   ├── peach-pit_defconfig
│   ├── pengwyn_defconfig
│   ├── pepper_defconfig
│   ├── pfla02_defconfig
│   ├── phycore-rk3288_defconfig
│   ├── pic32mzdask_defconfig
│   ├── pico-imx6ul_defconfig
│   ├── pico-imx7d_defconfig
│   ├── picosam9g45_defconfig
│   ├── pine64_plus_defconfig
│   ├── platinum_picon_defconfig
│   ├── platinum_titanium_defconfig
│   ├── plutux_defconfig
│   ├── pm9261_defconfig
│   ├── pm9263_defconfig
│   ├── pm9g45_defconfig
│   ├── pogo_e02_defconfig
│   ├── polaroid_mid2407pxe03_defconfig
│   ├── polaroid_mid2809pxe04_defconfig
│   ├── poplar_defconfig
│   ├── popmetal-rk3288_defconfig
│   ├── porter_defconfig
│   ├── portl2_defconfig
│   ├── pov_protab2_ips9_defconfig
│   ├── puma-rk3399_defconfig
│   ├── pxm2_defconfig
│   ├── q8_a13_tablet_defconfig
│   ├── q8_a23_tablet_800x480_defconfig
│   ├── q8_a33_tablet_1024x600_defconfig
│   ├── q8_a33_tablet_800x480_defconfig
│   ├── qemu_arm_defconfig
│   ├── qemu_mips64_defconfig
│   ├── qemu_mips64el_defconfig
│   ├── qemu_mips_defconfig
│   ├── qemu_mipsel_defconfig
│   ├── qemu-ppce500_defconfig
│   ├── qemu-x86_64_defconfig
│   ├── qemu-x86_defconfig
│   ├── qemu-x86_efi_payload32_defconfig
│   ├── qemu-x86_efi_payload64_defconfig
│   ├── r0p7734_defconfig
│   ├── r2dplus_defconfig
│   ├── r7780mp_defconfig
│   ├── r7-tv-dongle_defconfig
│   ├── r8a7795_salvator-x_defconfig
│   ├── r8a7795_ulcb_defconfig
│   ├── r8a7796_salvator-x_defconfig
│   ├── r8a7796_ulcb_defconfig
│   ├── rastaban_defconfig
│   ├── riotboard_defconfig
│   ├── rock2_defconfig
│   ├── rock_defconfig
│   ├── rpi_2_defconfig
│   ├── rpi_3_32b_defconfig
│   ├── rpi_3_defconfig
│   ├── rpi_defconfig
│   ├── rsk7203_defconfig
│   ├── rsk7264_defconfig
│   ├── rsk7269_defconfig
│   ├── rut_defconfig
│   ├── s32v234evb_defconfig
│   ├── s5pc210_universal_defconfig
│   ├── s5p_goni_defconfig
│   ├── sagem_f@st1704_ram_defconfig
│   ├── sama5d27_som1_ek_mmc_defconfig
│   ├── sama5d2_ptc_nandflash_defconfig
│   ├── sama5d2_ptc_spiflash_defconfig
│   ├── sama5d2_xplained_mmc_defconfig
│   ├── sama5d2_xplained_spiflash_defconfig
│   ├── sama5d36ek_cmp_mmc_defconfig
│   ├── sama5d36ek_cmp_nandflash_defconfig
│   ├── sama5d36ek_cmp_spiflash_defconfig
│   ├── sama5d3xek_mmc_defconfig
│   ├── sama5d3xek_nandflash_defconfig
│   ├── sama5d3xek_spiflash_defconfig
│   ├── sama5d3_xplained_mmc_defconfig
│   ├── sama5d3_xplained_nandflash_defconfig
│   ├── sama5d4ek_mmc_defconfig
│   ├── sama5d4ek_nandflash_defconfig
│   ├── sama5d4ek_spiflash_defconfig
│   ├── sama5d4_xplained_mmc_defconfig
│   ├── sama5d4_xplained_nandflash_defconfig
│   ├── sama5d4_xplained_spiflash_defconfig
│   ├── sandbox_defconfig
│   ├── sandbox_flattree_defconfig
│   ├── sandbox_noblk_defconfig
│   ├── sandbox_spl_defconfig
│   ├── sansa_fuze_plus_defconfig
│   ├── sbc8349_defconfig
│   ├── sbc8349_PCI_33_defconfig
│   ├── sbc8349_PCI_66_defconfig
│   ├── sbc8548_defconfig
│   ├── sbc8548_PCI_33_defconfig
│   ├── sbc8548_PCI_33_PCIE_defconfig
│   ├── sbc8548_PCI_66_defconfig
│   ├── sbc8548_PCI_66_PCIE_defconfig
│   ├── sbc8641d_defconfig
│   ├── sc_sps_1_defconfig
│   ├── seaboard_defconfig
│   ├── secomx6quq7_defconfig
│   ├── sfr_nb4-ser_ram_defconfig
│   ├── sh7752evb_defconfig
│   ├── sh7753evb_defconfig
│   ├── sh7757lcr_defconfig
│   ├── sh7763rdp_defconfig
│   ├── sh7785lcr_32bit_defconfig
│   ├── sh7785lcr_defconfig
│   ├── sheep-rk3368_defconfig
│   ├── sheevaplug_defconfig
│   ├── shmin_defconfig
│   ├── silk_defconfig
│   ├── Sinlinx_SinA31s_defconfig
│   ├── Sinlinx_SinA33_defconfig
│   ├── Sinovoip_BPI_M2_defconfig
│   ├── Sinovoip_BPI_M2_Plus_defconfig
│   ├── Sinovoip_BPI_M3_defconfig
│   ├── smartweb_defconfig
│   ├── smdk5250_defconfig
│   ├── smdk5420_defconfig
│   ├── smdkc100_defconfig
│   ├── smdkv310_defconfig
│   ├── snapper9260_defconfig
│   ├── snapper9g20_defconfig
│   ├── sniper_defconfig
│   ├── snow_defconfig
│   ├── socfpga_arria10_defconfig
│   ├── socfpga_arria5_defconfig
│   ├── socfpga_cyclone5_defconfig
│   ├── socfpga_de0_nano_soc_defconfig
│   ├── socfpga_de10_nano_defconfig
│   ├── socfpga_de1_soc_defconfig
│   ├── socfpga_is1_defconfig
│   ├── socfpga_mcvevk_defconfig
│   ├── socfpga_sockit_defconfig
│   ├── socfpga_socrates_defconfig
│   ├── socfpga_sr1500_defconfig
│   ├── socfpga_vining_fpga_defconfig
│   ├── socrates_defconfig
│   ├── som-db5800-som-6867_defconfig
│   ├── sopine_baseboard_defconfig
│   ├── spear300_defconfig
│   ├── spear300_nand_defconfig
│   ├── spear300_usbtty_defconfig
│   ├── spear300_usbtty_nand_defconfig
│   ├── spear310_defconfig
│   ├── spear310_nand_defconfig
│   ├── spear310_pnor_defconfig
│   ├── spear310_usbtty_defconfig
│   ├── spear310_usbtty_nand_defconfig
│   ├── spear310_usbtty_pnor_defconfig
│   ├── spear320_defconfig
│   ├── spear320_nand_defconfig
│   ├── spear320_pnor_defconfig
│   ├── spear320_usbtty_defconfig
│   ├── spear320_usbtty_nand_defconfig
│   ├── spear320_usbtty_pnor_defconfig
│   ├── spear600_defconfig
│   ├── spear600_nand_defconfig
│   ├── spear600_usbtty_defconfig
│   ├── spear600_usbtty_nand_defconfig
│   ├── spring_defconfig
│   ├── stih410-b2260_defconfig
│   ├── stm32f429-discovery_defconfig
│   ├── stm32f746-disco_defconfig
│   ├── stm32h743-disco_defconfig
│   ├── stm32h743-eval_defconfig
│   ├── stmark2_defconfig
│   ├── stout_defconfig
│   ├── strider_con_defconfig
│   ├── strider_con_dp_defconfig
│   ├── strider_cpu_defconfig
│   ├── strider_cpu_dp_defconfig
│   ├── stv0991_defconfig
│   ├── sun8i_a23_evb_defconfig
│   ├── Sunchip_CX-A99_defconfig
│   ├── sunxi_Gemei_G9_defconfig
│   ├── suvd3_defconfig
│   ├── T1023RDB_defconfig
│   ├── T1023RDB_NAND_defconfig
│   ├── T1023RDB_SDCARD_defconfig
│   ├── T1023RDB_SECURE_BOOT_defconfig
│   ├── T1023RDB_SPIFLASH_defconfig
│   ├── T1024QDS_DDR4_defconfig
│   ├── T1024QDS_DDR4_SECURE_BOOT_defconfig
│   ├── T1024QDS_defconfig
│   ├── T1024QDS_NAND_defconfig
│   ├── T1024QDS_SDCARD_defconfig
│   ├── T1024QDS_SECURE_BOOT_defconfig
│   ├── T1024QDS_SPIFLASH_defconfig
│   ├── T1024RDB_defconfig
│   ├── T1024RDB_NAND_defconfig
│   ├── T1024RDB_SDCARD_defconfig
│   ├── T1024RDB_SECURE_BOOT_defconfig
│   ├── T1024RDB_SPIFLASH_defconfig
│   ├── T1040D4RDB_defconfig
│   ├── T1040D4RDB_NAND_defconfig
│   ├── T1040D4RDB_SDCARD_defconfig
│   ├── T1040D4RDB_SECURE_BOOT_defconfig
│   ├── T1040D4RDB_SPIFLASH_defconfig
│   ├── T1040QDS_DDR4_defconfig
│   ├── T1040QDS_defconfig
│   ├── T1040QDS_SECURE_BOOT_defconfig
│   ├── T1040RDB_defconfig
│   ├── T1040RDB_NAND_defconfig
│   ├── T1040RDB_SDCARD_defconfig
│   ├── T1040RDB_SECURE_BOOT_defconfig
│   ├── T1040RDB_SPIFLASH_defconfig
│   ├── T1042D4RDB_defconfig
│   ├── T1042D4RDB_NAND_defconfig
│   ├── T1042D4RDB_SDCARD_defconfig
│   ├── T1042D4RDB_SECURE_BOOT_defconfig
│   ├── T1042D4RDB_SPIFLASH_defconfig
│   ├── T1042RDB_defconfig
│   ├── T1042RDB_PI_defconfig
│   ├── T1042RDB_PI_NAND_defconfig
│   ├── T1042RDB_PI_NAND_SECURE_BOOT_defconfig
│   ├── T1042RDB_PI_SDCARD_defconfig
│   ├── T1042RDB_PI_SPIFLASH_defconfig
│   ├── T1042RDB_SECURE_BOOT_defconfig
│   ├── T2080QDS_defconfig
│   ├── T2080QDS_NAND_defconfig
│   ├── T2080QDS_SDCARD_defconfig
│   ├── T2080QDS_SECURE_BOOT_defconfig
│   ├── T2080QDS_SPIFLASH_defconfig
│   ├── T2080QDS_SRIO_PCIE_BOOT_defconfig
│   ├── T2080RDB_defconfig
│   ├── T2080RDB_NAND_defconfig
│   ├── T2080RDB_SDCARD_defconfig
│   ├── T2080RDB_SECURE_BOOT_defconfig
│   ├── T2080RDB_SPIFLASH_defconfig
│   ├── T2080RDB_SRIO_PCIE_BOOT_defconfig
│   ├── T2081QDS_defconfig
│   ├── T2081QDS_NAND_defconfig
│   ├── T2081QDS_SDCARD_defconfig
│   ├── T2081QDS_SPIFLASH_defconfig
│   ├── T2081QDS_SRIO_PCIE_BOOT_defconfig
│   ├── T4160QDS_defconfig
│   ├── T4160QDS_NAND_defconfig
│   ├── T4160QDS_SDCARD_defconfig
│   ├── T4160QDS_SECURE_BOOT_defconfig
│   ├── T4160RDB_defconfig
│   ├── T4240QDS_defconfig
│   ├── T4240QDS_NAND_defconfig
│   ├── T4240QDS_SDCARD_defconfig
│   ├── T4240QDS_SECURE_BOOT_defconfig
│   ├── T4240QDS_SRIO_PCIE_BOOT_defconfig
│   ├── T4240RDB_defconfig
│   ├── T4240RDB_SDCARD_defconfig
│   ├── tao3530_defconfig
│   ├── taurus_defconfig
│   ├── tb100_defconfig
│   ├── tbs2910_defconfig
│   ├── tec_defconfig
│   ├── tec-ng_defconfig
│   ├── theadorable_debug_defconfig
│   ├── theadorable-x86-conga-qa3-e3845_defconfig
│   ├── theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
│   ├── theadorable-x86-dfi-bt700_defconfig
│   ├── thuban_defconfig
│   ├── thunderx_88xx_defconfig
│   ├── ti814x_evm_defconfig
│   ├── ti816x_evm_defconfig
│   ├── tinker-rk3288_defconfig
│   ├── titanium_defconfig
│   ├── topic_miami_defconfig
│   ├── topic_miamilite_defconfig
│   ├── topic_miamiplus_defconfig
│   ├── tplink_wdr4300_defconfig
│   ├── TQM834x_defconfig
│   ├── tqma6dl_mba6_mmc_defconfig
│   ├── tqma6dl_mba6_spi_defconfig
│   ├── tqma6q_mba6_mmc_defconfig
│   ├── tqma6q_mba6_spi_defconfig
│   ├── tqma6s_mba6_mmc_defconfig
│   ├── tqma6s_mba6_spi_defconfig
│   ├── tqma6s_wru4_mmc_defconfig
│   ├── trats2_defconfig
│   ├── trats_defconfig
│   ├── tricorder_defconfig
│   ├── tricorder_flash_defconfig
│   ├── trimslice_defconfig
│   ├── ts4600_defconfig
│   ├── ts4800_defconfig
│   ├── tuge1_defconfig
│   ├── turris_omnia_defconfig
│   ├── tuxx1_defconfig
│   ├── twister_defconfig
│   ├── TWR-P1025_defconfig
│   ├── UCP1020_defconfig
│   ├── UCP1020_SPIFLASH_defconfig
│   ├── udoo_defconfig
│   ├── udoo_neo_defconfig
│   ├── uniphier_ld4_sld8_defconfig
│   ├── uniphier_v7_defconfig
│   ├── uniphier_v8_defconfig
│   ├── usb_a9263_dataflash_defconfig
│   ├── usbarmory_defconfig
│   ├── UTOO_P66_defconfig
│   ├── vct_platinumavc_defconfig
│   ├── vct_platinumavc_onenand_defconfig
│   ├── vct_platinumavc_onenand_small_defconfig
│   ├── vct_platinumavc_small_defconfig
│   ├── vct_platinum_defconfig
│   ├── vct_platinum_onenand_defconfig
│   ├── vct_platinum_onenand_small_defconfig
│   ├── vct_platinum_small_defconfig
│   ├── vct_premium_defconfig
│   ├── vct_premium_onenand_defconfig
│   ├── vct_premium_onenand_small_defconfig
│   ├── vct_premium_small_defconfig
│   ├── ve8313_defconfig
│   ├── venice2_defconfig
│   ├── ventana_defconfig
│   ├── vexpress_aemv8a_dram_defconfig
│   ├── vexpress_aemv8a_juno_defconfig
│   ├── vexpress_aemv8a_semi_defconfig
│   ├── vexpress_ca15_tc2_defconfig
│   ├── vexpress_ca5x2_defconfig
│   ├── vexpress_ca9x4_defconfig
│   ├── vf610twr_defconfig
│   ├── vf610twr_nand_defconfig
│   ├── vinco_defconfig
│   ├── vining_2000_defconfig
│   ├── vme8349_defconfig
│   ├── vyasa-rk3288_defconfig
│   ├── wandboard_defconfig
│   ├── warp7_defconfig
│   ├── warp7_secure_defconfig
│   ├── warp_defconfig
│   ├── Wexler_TAB7200_defconfig
│   ├── Wits_Pro_A20_DKT_defconfig
│   ├── Wobo_i5_defconfig
│   ├── woodburn_defconfig
│   ├── woodburn_sd_defconfig
│   ├── work_92105_defconfig
│   ├── x600_defconfig
│   ├── xfi3_defconfig
│   ├── xilinx_zynqmp_ep_defconfig
│   ├── xilinx_zynqmp_zc1751_xm015_dc1_defconfig
│   ├── xilinx_zynqmp_zc1751_xm016_dc2_defconfig
│   ├── xilinx_zynqmp_zc1751_xm018_dc4_defconfig
│   ├── xilinx_zynqmp_zc1751_xm019_dc5_defconfig
│   ├── xilinx_zynqmp_zcu102_revA_defconfig
│   ├── xilinx_zynqmp_zcu102_revB_defconfig
│   ├── xpedite517x_defconfig
│   ├── xpedite520x_defconfig
│   ├── xpedite537x_defconfig
│   ├── xpedite550x_defconfig
│   ├── xpress_defconfig
│   ├── xpress_spl_defconfig
│   ├── xtfpga_defconfig
│   ├── Yones_Toptech_BD1078_defconfig
│   ├── Yones_Toptech_BS1078_V2_defconfig
│   ├── zc5202_defconfig
│   ├── zc5601_defconfig
│   ├── zipitz2_defconfig
│   ├── zmx25_defconfig
│   ├── zynq_microzed_defconfig
│   ├── zynq_picozed_defconfig
│   ├── zynq_zc702_defconfig
│   ├── zynq_zc706_defconfig
│   ├── zynq_zc770_xm010_defconfig
│   ├── zynq_zc770_xm011_defconfig
│   ├── zynq_zc770_xm012_defconfig
│   ├── zynq_zc770_xm013_defconfig
│   ├── zynq_zed_defconfig
│   ├── zynq_z_turn_defconfig
│   └── zynq_zybo_defconfig
├── disk
│   ├── Kconfig
│   ├── Makefile
│   ├── part_amiga.c
│   ├── part_amiga.h
│   ├── part.c
│   ├── part_dos.c
│   ├── part_dos.h
│   ├── part_efi.c
│   ├── part_iso.c
│   ├── part_iso.h
│   ├── part_mac.c
│   └── part_mac.h
├── doc
│   ├── bounces
│   ├── chromium
│   │   ├── chromebook_jerry.its
│   │   ├── devkeys
│   │   │   ├── kernel_data_key.vbprivk
│   │   │   └── kernel.keyblock
│   │   └── nyan-big.its
│   ├── device-tree-bindings
│   │   ├── adc
│   │   │   └── adc.txt
│   │   ├── ata
│   │   │   └── intel-sata.txt
│   │   ├── chosen.txt
│   │   ├── clock
│   │   │   ├── microchip,pic32-clock.txt
│   │   │   ├── nvidia,tegra20-car.txt
│   │   │   ├── rockchip,rk3188-cru.txt
│   │   │   ├── rockchip,rk3288-cru.txt
│   │   │   ├── rockchip,rk3288-dmc.txt
│   │   │   ├── rockchip,rk3368-dmc.txt
│   │   │   ├── rockchip,rk3399-dmc.txt
│   │   │   ├── rockchip.txt
│   │   │   ├── st,stm32h7-rcc.txt
│   │   │   └── st,stm32-rcc.txt
│   │   ├── config.txt
│   │   ├── cpu
│   │   │   └── nios2.txt
│   │   ├── exynos
│   │   │   ├── dwmmc.txt
│   │   │   ├── emmc-reset.txt
│   │   │   ├── isp-spi.txt
│   │   │   ├── soc.txt
│   │   │   ├── sound.txt
│   │   │   └── tmu.txt
│   │   ├── firmware
│   │   │   └── nvidia,tegra186-bpmp.txt
│   │   ├── gpio
│   │   │   ├── altera_pio.txt
│   │   │   ├── bcm2835-gpio.txt
│   │   │   ├── gpio-msm.txt
│   │   │   ├── gpio-pcf857x.txt
│   │   │   ├── gpio-samsung.txt
│   │   │   ├── gpio.txt
│   │   │   ├── intel,x86-broadwell-pinctrl.txt
│   │   │   ├── intel,x86-pinctrl.txt
│   │   │   ├── nvidia,tegra186-gpio.txt
│   │   │   ├── nvidia,tegra20-gpio.txt
│   │   │   └── pm8916_gpio.txt
│   │   ├── gpu
│   │   │   └── nvidia,tegra20-host1x.txt
│   │   ├── i2c
│   │   │   ├── i2c-at91.txt
│   │   │   ├── i2c-cdns.txt
│   │   │   ├── i2c-gpio.txt
│   │   │   ├── i2c-mux.txt
│   │   │   ├── i2c-stm32.txt
│   │   │   ├── i2c.txt
│   │   │   ├── nvidia,tegra186-bpmp-i2c.txt
│   │   │   └── tegra20-i2c.txt
│   │   ├── input
│   │   │   ├── cros-ec-keyb.txt
│   │   │   └── i8042.txt
│   │   ├── leds
│   │   │   ├── common.txt
│   │   │   ├── leds-bcm6328.txt
│   │   │   ├── leds-bcm6358.txt
│   │   │   └── leds-gpio.txt
│   │   ├── mailbox
│   │   │   ├── mailbox.txt
│   │   │   └── nvidia,tegra186-hsp.txt
│   │   ├── misc
│   │   │   ├── altera_sysid.txt
│   │   │   ├── cros-ec.txt
│   │   │   ├── intel,baytrail-fsp.txt
│   │   │   ├── intel,irq-router.txt
│   │   │   └── intel-lpc.txt
│   │   ├── mmc
│   │   │   └── msm_sdhci.txt
│   │   ├── mtd
│   │   │   ├── altera_qspi.txt
│   │   │   ├── mtd-physmap.txt
│   │   │   └── spi
│   │   │   └── spi-flash.txt
│   │   ├── nand
│   │   │   └── nvidia,tegra20-nand.txt
│   │   ├── net
│   │   │   ├── allwinner,sun4i-emac.txt
│   │   │   ├── allwinner,sun4i-mdio.txt
│   │   │   ├── allwinner,sun7i-a20-gmac.txt
│   │   │   ├── altera_tse.txt
│   │   │   ├── ethernet.txt
│   │   │   ├── fixed-link.txt
│   │   │   ├── fsl-tsec-phy.txt
│   │   │   ├── micrel-ksz90x1.txt
│   │   │   ├── snps,dwc-qos-ethernet.txt
│   │   │   ├── stmmac.txt
│   │   │   └── ti,dp83867.txt
│   │   ├── pci
│   │   │   └── armada8k-pcie.txt
│   │   ├── phy
│   │   │   └── phy-stih407-usb.txt
│   │   ├── pinctrl
│   │   │   ├── atmel,at91-pio4-pinctrl.txt
│   │   │   ├── marvell,armada-apn806-pinctrl.txt
│   │   │   ├── marvell,armada-cp110-pinctrl.txt
│   │   │   ├── marvell,mvebu-pinctrl.txt
│   │   │   ├── pinctrl-bindings.txt
│   │   │   ├── rockchip,pinctrl.txt
│   │   │   └── st,stm32-pinctrl.txt
│   │   ├── pmic
│   │   │   ├── max77686.txt
│   │   │   ├── pm8916.txt
│   │   │   ├── rn5t567.txt
│   │   │   ├── s2mps11.txt
│   │   │   └── sandbox.txt
│   │   ├── power
│   │   │   └── tps65090.txt
│   │   ├── pwm
│   │   │   ├── pwm.txt
│   │   │   └── tegra20-pwm.txt
│   │   ├── ram
│   │   │   └── st,stm32-fmc.txt
│   │   ├── README
│   │   ├── regulator
│   │   │   ├── fixed.txt
│   │   │   ├── max77686.txt
│   │   │   ├── regulator.txt
│   │   │   ├── sandbox.txt
│   │   │   └── tps65090.txt
│   │   ├── remoteproc
│   │   │   └── remoteproc.txt
│   │   ├── reset
│   │   │   ├── reset.txt
│   │   │   └── st,stm32-rcc.txt
│   │   ├── root.txt
│   │   ├── serial
│   │   │   ├── 8250.txt
│   │   │   ├── altera_jtaguart.txt
│   │   │   ├── altera_uart.txt
│   │   │   ├── bcm2835-aux-uart.txt
│   │   │   ├── microchip,pic32-uart.txt
│   │   │   ├── msm-serial.txt
│   │   │   ├── mxc-serial.txt
│   │   │   ├── omap_serial.txt
│   │   │   ├── pl01x.txt
│   │   │   ├── qca,ar9330-uart.txt
│   │   │   ├── sandbox-serial.txt
│   │   │   ├── sh.txt
│   │   │   ├── snps-dw-apb-uart.txt
│   │   │   └── xilinx_uartlite.txt
│   │   ├── spi
│   │   │   ├── soft-spi.txt
│   │   │   ├── spi_altera.txt
│   │   │   ├── spi-ath79.txt
│   │   │   ├── spi-bus.txt
│   │   │   ├── spi-cadence.txt
│   │   │   ├── spi-stm32-qspi.txt
│   │   │   ├── spi-zynq-qspi.txt
│   │   │   └── spi-zynq.txt
│   │   ├── spmi
│   │   │   ├── spmi-msm.txt
│   │   │   └── spmi-sandbox.txt
│   │   ├── thermal
│   │   │   └── rockchip-thermal.txt
│   │   ├── timer
│   │   │   ├── altera_timer.txt
│   │   │   ├── arc_timer.txt
│   │   │   └── sandbox_timer.txt
│   │   ├── usb
│   │   │   ├── dwc3-st.txt
│   │   │   ├── ehci-msm.txt
│   │   │   ├── marvell.xhci-usb.txt
│   │   │   └── tegra-usb.txt
│   │   └── video
│   │   ├── atmel-hlcdc.txt
│   │   ├── bridge
│   │   │   └── ps8622.txt
│   │   ├── displaymode.txt
│   │   ├── display-timing.txt
│   │   ├── exynos-dp.txt
│   │   ├── exynos-fb.txt
│   │   ├── exynos_mipi_dsi.txt
│   │   ├── intel-gma.txt
│   │   ├── rockchip-lvds.txt
│   │   ├── sandbox-fb.txt
│   │   ├── simple-framebuffer.txt
│   │   └── tegra20-dc.txt
│   ├── DocBook
│   │   ├── docbook.css
│   │   ├── linker_lists.tmpl
│   │   ├── Makefile
│   │   ├── stdio.tmpl
│   │   └── stylesheet.xsl
│   ├── driver-model
│   │   ├── fdt-fixup.txt
│   │   ├── i2c-howto.txt
│   │   ├── livetree.txt
│   │   ├── MIGRATION.txt
│   │   ├── of-plat.txt
│   │   ├── pci-info.txt
│   │   ├── pmic-framework.txt
│   │   ├── README.txt
│   │   ├── remoteproc-framework.txt
│   │   ├── serial-howto.txt
│   │   ├── spi-howto.txt
│   │   └── usb-info.txt
│   ├── feature-removal-schedule.txt
│   ├── git-mailrc
│   ├── I2C_Edge_Conditions
│   ├── kwboot.1
│   ├── mkimage.1
│   ├── mvebu
│   │   ├── armada-8k-memory.txt
│   │   └── cmd
│   │   └── bubt.txt
│   ├── README.440-DDR-performance
│   ├── README.ag101p
│   ├── README.AMCC-eval-boards-cleanup
│   ├── README.android-fastboot
│   ├── README.android-fastboot-protocol
│   ├── README.ARC
│   ├── README.arm64
│   ├── README.armada-secureboot
│   ├── README.arm-caches
│   ├── README.ARM-memory-map
│   ├── README.arm-relocation
│   ├── README.at91
│   ├── README.atmel_mci
│   ├── README.atmel_pmecc
│   ├── README.autoboot
│   ├── README.b4860qds
│   ├── README.bedbug
│   ├── README.bitbangMII
│   ├── README.blackfin
│   ├── README.bootmenu
│   ├── README.boston
│   ├── README.bus_vcxk
│   ├── README.cfi
│   ├── README.chromium
│   ├── README.clang
│   ├── README.commands
│   ├── README.commands.itest
│   ├── README.commands.spl
│   ├── README.console
│   ├── README.davinci
│   ├── README.davinci.nand_spl
│   ├── README.dfutftp
│   ├── README.displaying-bmps
│   ├── README.distro
│   ├── README.dns
│   ├── README.drivers.eth
│   ├── README.efi
│   ├── README.enetaddr
│   ├── README.esbc_validate
│   ├── README.ext4
│   ├── README.falcon
│   ├── README.fdt-control
│   ├── README.fdt-overlays
│   ├── README.fec_mxc
│   ├── README.fsl-clk
│   ├── README.fsl-ddr
│   ├── README.fsl-dpaa
│   ├── README.fsl-esdhc
│   ├── README.fsl-hwconfig
│   ├── README.fsl_iim
│   ├── README.fsl-trustzone-components
│   ├── README.fuse
│   ├── README.generic-board
│   ├── README.generic_usb_ohci
│   ├── README.gpt
│   ├── README.Heterogeneous-SoCs
│   ├── README.hwconfig
│   ├── README.i2c
│   ├── README.imx25
│   ├── README.imx27
│   ├── README.imx5
│   ├── README.imx6
│   ├── README.imximage
│   ├── README.iomux
│   ├── README.JFFS2
│   ├── README.JFFS2_NAND
│   ├── README.kconfig
│   ├── README.kwbimage
│   ├── README.LED
│   ├── README.LED_display
│   ├── README.link-local
│   ├── README.lynxkdi
│   ├── README.m54418twr
│   ├── README.m68k
│   ├── README.malta
│   ├── README.marubun-pcmcia
│   ├── README.marvell
│   ├── README.memory-test
│   ├── README.menu
│   ├── README.mips
│   ├── README.mpc74xx
│   ├── README.mpc83xxads
│   ├── README.mpc83xx.ddrecc
│   ├── README.mpc85xx
│   ├── README.mpc85xxcds
│   ├── README.mpc85xx-sd-spi-boot
│   ├── README.mpc85xx-spin-table
│   ├── README.multi-dtb-fit
│   ├── README.mxc_hab
│   ├── README.mxc_ocotp
│   ├── README.mxs
│   ├── README.mxsimage
│   ├── README.N1213
│   ├── README.nand
│   ├── README.nand-boot-ppc440
│   ├── README.NDS32
│   ├── README.ne2000
│   ├── README.NetConsole
│   ├── README.nios2
│   ├── README.nokia_rx51
│   ├── README.nvme
│   ├── README.odroid
│   ├── README.OFT
│   ├── README.omap3
│   ├── README.omap-ulpi-viewport
│   ├── README.pblimage
│   ├── README.plan9
│   ├── README.POST
│   ├── README.power-framework
│   ├── README.pxe
│   ├── README.qemu-arm
│   ├── README.qemu-mips
│   ├── README.ramboot-ppc85xx
│   ├── README.rmobile
│   ├── README.rockchip
│   ├── README.s5pc1xx
│   ├── README.sata
│   ├── README.sched
│   ├── README.scrapyard
│   ├── README.sdp
│   ├── README.semihosting
│   ├── README.serial_multi
│   ├── README.sh
│   ├── README.sh7752evb
│   ├── README.sh7753evb
│   ├── README.sha1
│   ├── README.silent
│   ├── README.SNTP
│   ├── README.socfpga
│   ├── README.spear
│   ├── README.SPL
│   ├── README.splashprepare
│   ├── README.srio-pcie-boot-corenet
│   ├── README.standalone
│   ├── README.t1040-l2switch
│   ├── README.ti-secure
│   ├── README.TPL
│   ├── README.trace
│   ├── README.ubi
│   ├── README.ubispl
│   ├── README.ublimage
│   ├── README.unaligned-memory-access.txt
│   ├── README.uniphier
│   ├── README.update
│   ├── README.usb
│   ├── README.vf610
│   ├── README.video
│   ├── README.VLAN
│   ├── README.VSC3316-3308
│   ├── README.vxworks
│   ├── README.watchdog
│   ├── README.x86
│   ├── README.xtensa
│   ├── README.zfs
│   ├── README.zynq
│   ├── SPI
│   │   ├── README.altera_spi
│   │   ├── README.dual-flash
│   │   ├── README.ftssp010_spi_test
│   │   ├── README.sandbox-spi
│   │   ├── README.sh_qspi_test
│   │   ├── README.ti_qspi_am43x_test
│   │   ├── README.ti_qspi_dra_test
│   │   ├── README.ti_qspi_flash
│   │   └── status.txt
│   ├── SPL
│   │   ├── README.am335x-network
│   │   ├── README.omap3
│   │   └── README.spl-secure-boot
│   └── uImage.FIT
│   ├── beaglebone_vboot.txt
│   ├── command_syntax_extensions.txt
│   ├── howto.txt
│   ├── kernel_fdt.its
│   ├── kernel.its
│   ├── multi.its
│   ├── multi_spl.its
│   ├── multi-with-fpga.its
│   ├── multi-with-loadables.its
│   ├── overlay-fdt-boot.txt
│   ├── signature.txt
│   ├── sign-configs.its
│   ├── sign-images.its
│   ├── source_file_format.txt
│   ├── update3.its
│   ├── update_uboot.its
│   ├── verified-boot.txt
│   └── x86-fit-boot.txt
├── Documentation
│   └── devicetree
│   └── bindings
│   ├── phy
│   │   └── no-op.txt
│   └── rtc
│   └── brcm,brcmstb-waketimer.txt
├── drivers
│   ├── adc
│   │   ├── adc-uclass.c
│   │   ├── exynos-adc.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── rockchip-saradc.c
│   │   └── sandbox.c
│   ├── ata
│   │   ├── ahci.c
│   │   ├── ahci-pci.c
│   │   ├── ahci-uclass.c
│   │   ├── dwc_ahci.c
│   │   ├── dwc_ahsata.c
│   │   ├── dwc_ahsata_priv.h
│   │   ├── fsl_sata.c
│   │   ├── fsl_sata.h
│   │   ├── Kconfig
│   │   ├── libata.c
│   │   ├── Makefile
│   │   ├── mvsata_ide.c
│   │   ├── mxc_ata.c
│   │   ├── sata.c
│   │   ├── sata_ceva.c
│   │   ├── sata_dwc.c
│   │   ├── sata_dwc.h
│   │   ├── sata_mv.c
│   │   ├── sata_sandbox.c
│   │   ├── sata_sil3114.c
│   │   ├── sata_sil3114.h
│   │   ├── sata_sil.c
│   │   └── sata_sil.h
│   ├── bios_emulator
│   │   ├── atibios.c
│   │   ├── besys.c
│   │   ├── bios.c
│   │   ├── biosemu.c
│   │   ├── biosemui.h
│   │   ├── include
│   │   │   ├── biosemu.h
│   │   │   ├── x86emu
│   │   │   │   ├── debug.h
│   │   │   │   ├── decode.h
│   │   │   │   ├── ops.h
│   │   │   │   ├── prim_ops.h
│   │   │   │   ├── regs.h
│   │   │   │   └── x86emui.h
│   │   │   └── x86emu.h
│   │   ├── Makefile
│   │   └── x86emu
│   │   ├── debug.c
│   │   ├── decode.c
│   │   ├── ops2.c
│   │   ├── ops.c
│   │   ├── prim_ops.c
│   │   └── sys.c
│   ├── block
│   │   ├── blkcache.c
│   │   ├── blk_legacy.c
│   │   ├── blk-uclass.c
│   │   ├── ide.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── sandbox.c
│   │   └── systemace.c
│   ├── bootcount
│   │   ├── bootcount_at91.c
│   │   ├── bootcount.c
│   │   ├── bootcount_davinci.c
│   │   ├── bootcount_env.c
│   │   ├── bootcount_i2c.c
│   │   ├── bootcount_ram.c
│   │   └── Makefile
│   ├── clk
│   │   ├── aspeed
│   │   │   ├── clk_ast2500.c
│   │   │   └── Makefile
│   │   ├── at91
│   │   │   ├── clk-generated.c
│   │   │   ├── clk-h32mx.c
│   │   │   ├── clk-main.c
│   │   │   ├── clk-master.c
│   │   │   ├── clk-peripheral.c
│   │   │   ├── clk-plla.c
│   │   │   ├── clk-slow.c
│   │   │   ├── clk-system.c
│   │   │   ├── clk-utmi.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── pmc.c
│   │   │   ├── pmc.h
│   │   │   └── sckc.c
│   │   ├── clk_bcm6345.c
│   │   ├── clk_boston.c
│   │   ├── clk_fixed_rate.c
│   │   ├── clk_pic32.c
│   │   ├── clk_sandbox.c
│   │   ├── clk_sandbox_test.c
│   │   ├── clk_stm32f7.c
│   │   ├── clk_stm32h7.c
│   │   ├── clk-uclass.c
│   │   ├── clk_zynq.c
│   │   ├── clk_zynqmp.c
│   │   ├── exynos
│   │   │   ├── clk-exynos7420.c
│   │   │   ├── clk-pll.c
│   │   │   ├── clk-pll.h
│   │   │   ├── Kconfig
│   │   │   └── Makefile
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── renesas
│   │   │   ├── clk-rcar-gen3.c
│   │   │   ├── Kconfig
│   │   │   └── Makefile
│   │   ├── rockchip
│   │   │   ├── clk_rk3036.c
│   │   │   ├── clk_rk3188.c
│   │   │   ├── clk_rk322x.c
│   │   │   ├── clk_rk3288.c
│   │   │   ├── clk_rk3328.c
│   │   │   ├── clk_rk3368.c
│   │   │   ├── clk_rk3399.c
│   │   │   ├── clk_rv1108.c
│   │   │   └── Makefile
│   │   ├── tegra
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── tegra186-clk.c
│   │   │   └── tegra-car-clk.c
│   │   └── uniphier
│   │   ├── clk-uniphier-core.c
│   │   ├── clk-uniphier.h
│   │   ├── clk-uniphier-mio.c
│   │   ├── clk-uniphier-sys.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── core
│   │   ├── device.c
│   │   ├── device-remove.c
│   │   ├── devres.c
│   │   ├── dump.c
│   │   ├── fdtaddr.c
│   │   ├── Kconfig
│   │   ├── lists.c
│   │   ├── Makefile
│   │   ├── of_access.c
│   │   ├── of_addr.c
│   │   ├── of_extra.c
│   │   ├── ofnode.c
│   │   ├── read.c
│   │   ├── read_extra.c
│   │   ├── regmap.c
│   │   ├── root.c
│   │   ├── simple-bus.c
│   │   ├── syscon-uclass.c
│   │   ├── uclass.c
│   │   └── util.c
│   ├── cpu
│   │   ├── bmips_cpu.c
│   │   ├── cpu-uclass.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── crypto
│   │   ├── ace_sha.c
│   │   ├── ace_sha.h
│   │   ├── fsl
│   │   │   ├── desc_constr.h
│   │   │   ├── desc.h
│   │   │   ├── error.c
│   │   │   ├── fsl_blob.c
│   │   │   ├── fsl_hash.c
│   │   │   ├── fsl_hash.h
│   │   │   ├── fsl_rsa.c
│   │   │   ├── jobdesc.c
│   │   │   ├── jobdesc.h
│   │   │   ├── jr.c
│   │   │   ├── jr.h
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── rsa_caam.h
│   │   │   └── sec.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   └── rsa_mod_exp
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── mod_exp_sw.c
│   │   └── mod_exp_uclass.c
│   ├── ddr
│   │   ├── altera
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── sdram.c
│   │   │   ├── sequencer.c
│   │   │   └── sequencer.h
│   │   ├── fsl
│   │   │   ├── arm_ddr_gen3.c
│   │   │   ├── ctrl_regs.c
│   │   │   ├── ddr1_dimm_params.c
│   │   │   ├── ddr2_dimm_params.c
│   │   │   ├── ddr3_dimm_params.c
│   │   │   ├── ddr4_dimm_params.c
│   │   │   ├── fsl_ddr_gen4.c
│   │   │   ├── fsl_mmdc.c
│   │   │   ├── interactive.c
│   │   │   ├── Kconfig
│   │   │   ├── lc_common_dimm_params.c
│   │   │   ├── main.c
│   │   │   ├── Makefile
│   │   │   ├── mpc85xx_ddr_gen1.c
│   │   │   ├── mpc85xx_ddr_gen2.c
│   │   │   ├── mpc85xx_ddr_gen3.c
│   │   │   ├── mpc86xx_ddr.c
│   │   │   ├── options.c
│   │   │   └── util.c
│   │   ├── Kconfig
│   │   ├── marvell
│   │   │   ├── a38x
│   │   │   │   ├── ddr3_a38x.c
│   │   │   │   ├── ddr3_a38x.h
│   │   │   │   ├── ddr3_a38x_mc_static.h
│   │   │   │   ├── ddr3_a38x_topology.h
│   │   │   │   ├── ddr3_a38x_training.c
│   │   │   │   ├── ddr3_debug.c
│   │   │   │   ├── ddr3_hws_hw_training.c
│   │   │   │   ├── ddr3_hws_hw_training_def.h
│   │   │   │   ├── ddr3_hws_hw_training.h
│   │   │   │   ├── ddr3_hws_sil_training.h
│   │   │   │   ├── ddr3_init.c
│   │   │   │   ├── ddr3_init.h
│   │   │   │   ├── ddr3_logging_def.h
│   │   │   │   ├── ddr3_patterns_64bit.h
│   │   │   │   ├── ddr3_topology_def.h
│   │   │   │   ├── ddr3_training_bist.c
│   │   │   │   ├── ddr3_training.c
│   │   │   │   ├── ddr3_training_centralization.c
│   │   │   │   ├── ddr3_training_db.c
│   │   │   │   ├── ddr3_training_hw_algo.c
│   │   │   │   ├── ddr3_training_hw_algo.h
│   │   │   │   ├── ddr3_training_ip_bist.h
│   │   │   │   ├── ddr3_training_ip_centralization.h
│   │   │   │   ├── ddr3_training_ip_db.h
│   │   │   │   ├── ddr3_training_ip_def.h
│   │   │   │   ├── ddr3_training_ip_engine.c
│   │   │   │   ├── ddr3_training_ip_engine.h
│   │   │   │   ├── ddr3_training_ip_flow.h
│   │   │   │   ├── ddr3_training_ip.h
│   │   │   │   ├── ddr3_training_ip_pbs.h
│   │   │   │   ├── ddr3_training_ip_prv_if.h
│   │   │   │   ├── ddr3_training_ip_static.h
│   │   │   │   ├── ddr3_training_leveling.c
│   │   │   │   ├── ddr3_training_leveling.h
│   │   │   │   ├── ddr3_training_pbs.c
│   │   │   │   ├── ddr3_training_static.c
│   │   │   │   ├── ddr_topology_def.h
│   │   │   │   ├── ddr_training_ip_db.h
│   │   │   │   ├── Makefile
│   │   │   │   ├── silicon_if.h
│   │   │   │   ├── xor.c
│   │   │   │   ├── xor.h
│   │   │   │   └── xor_regs.h
│   │   │   └── axp
│   │   │   ├── ddr3_axp_config.h
│   │   │   ├── ddr3_axp.h
│   │   │   ├── ddr3_axp_mc_static.h
│   │   │   ├── ddr3_axp_training_static.h
│   │   │   ├── ddr3_axp_vars.h
│   │   │   ├── ddr3_dfs.c
│   │   │   ├── ddr3_dqs.c
│   │   │   ├── ddr3_hw_training.c
│   │   │   ├── ddr3_hw_training.h
│   │   │   ├── ddr3_init.c
│   │   │   ├── ddr3_init.h
│   │   │   ├── ddr3_patterns_64bit.h
│   │   │   ├── ddr3_pbs.c
│   │   │   ├── ddr3_read_leveling.c
│   │   │   ├── ddr3_sdram.c
│   │   │   ├── ddr3_spd.c
│   │   │   ├── ddr3_write_leveling.c
│   │   │   ├── Makefile
│   │   │   ├── xor.c
│   │   │   ├── xor.h
│   │   │   └── xor_regs.h
│   │   └── microchip
│   │   ├── ddr2.c
│   │   ├── ddr2_regs.h
│   │   ├── ddr2_timing.h
│   │   └── Makefile
│   ├── demo
│   │   ├── demo-pdata.c
│   │   ├── demo-shape.c
│   │   ├── demo-simple.c
│   │   ├── demo-uclass.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── dfu
│   │   ├── dfu.c
│   │   ├── dfu_mmc.c
│   │   ├── dfu_nand.c
│   │   ├── dfu_ram.c
│   │   ├── dfu_sf.c
│   │   ├── dfu_tftp.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── dma
│   │   ├── apbh_dma.c
│   │   ├── dma-uclass.c
│   │   ├── fsl_dma.c
│   │   ├── Kconfig
│   │   ├── keystone_nav.c
│   │   ├── keystone_nav_cfg.c
│   │   ├── lpc32xx_dma.c
│   │   ├── Makefile
│   │   ├── MCD_dmaApi.c
│   │   ├── MCD_tasks.c
│   │   ├── MCD_tasksInit.c
│   │   └── ti-edma3.c
│   ├── firmware
│   │   ├── firmware-uclass.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   └── psci.c
│   ├── fpga
│   │   ├── ACEX1K.c
│   │   ├── altera.c
│   │   ├── cyclon2.c
│   │   ├── fpga.c
│   │   ├── ivm_core.c
│   │   ├── Kconfig
│   │   ├── lattice.c
│   │   ├── Makefile
│   │   ├── socfpga_arria10.c
│   │   ├── socfpga.c
│   │   ├── socfpga_gen5.c
│   │   ├── spartan2.c
│   │   ├── spartan3.c
│   │   ├── stratixII.c
│   │   ├── stratixv.c
│   │   ├── virtex2.c
│   │   ├── xilinx.c
│   │   ├── zynqmppl.c
│   │   └── zynqpl.c
│   ├── gpio
│   │   ├── 74x164_gpio.c
│   │   ├── adi_gpio2.c
│   │   ├── altera_pio.c
│   │   ├── at91_gpio.c
│   │   ├── atmel_pio4.c
│   │   ├── axp_gpio.c
│   │   ├── bcm2835_gpio.c
│   │   ├── bcm6345_gpio.c
│   │   ├── da8xx_gpio.c
│   │   ├── db8500_gpio.c
│   │   ├── dwapb_gpio.c
│   │   ├── gpio-rcar.c
│   │   ├── gpio-uclass.c
│   │   ├── gpio-uniphier.c
│   │   ├── hi6220_gpio.c
│   │   ├── imx_rgpio2p.c
│   │   ├── intel_broadwell_gpio.c
│   │   ├── intel_ich6_gpio.c
│   │   ├── Kconfig
│   │   ├── kona_gpio.c
│   │   ├── kw_gpio.c
│   │   ├── lpc32xx_gpio.c
│   │   ├── Makefile
│   │   ├── mpc83xx_gpio.c
│   │   ├── mpc85xx_gpio.c
│   │   ├── msm_gpio.c
│   │   ├── mvebu_gpio.c
│   │   ├── mvgpio.c
│   │   ├── mvgpio.h
│   │   ├── mvmfp.c
│   │   ├── mxc_gpio.c
│   │   ├── mxs_gpio.c
│   │   ├── omap_gpio.c
│   │   ├── pca953x.c
│   │   ├── pca953x_gpio.c
│   │   ├── pca9698.c
│   │   ├── pcf8575_gpio.c
│   │   ├── pic32_gpio.c
│   │   ├── pm8916_gpio.c
│   │   ├── rk_gpio.c
│   │   ├── s5p_gpio.c
│   │   ├── sandbox.c
│   │   ├── sh_pfc.c
│   │   ├── spear_gpio.c
│   │   ├── stm32f7_gpio.c
│   │   ├── stm32_gpio.c
│   │   ├── sunxi_gpio.c
│   │   ├── tca642x.c
│   │   ├── tegra186_gpio.c
│   │   ├── tegra186_gpio_priv.h
│   │   ├── tegra_gpio.c
│   │   ├── vybrid_gpio.c
│   │   ├── xilinx_gpio.c
│   │   └── zynq_gpio.c
│   ├── i2c
│   │   ├── ast_i2c.c
│   │   ├── ast_i2c.h
│   │   ├── at91_i2c.c
│   │   ├── at91_i2c.h
│   │   ├── cros_ec_ldo.c
│   │   ├── cros_ec_tunnel.c
│   │   ├── davinci_i2c.c
│   │   ├── davinci_i2c.h
│   │   ├── designware_i2c.c
│   │   ├── designware_i2c.h
│   │   ├── exynos_hs_i2c.c
│   │   ├── fsl_i2c.c
│   │   ├── i2c-cdns.c
│   │   ├── i2c_core.c
│   │   ├── i2c-emul-uclass.c
│   │   ├── i2c-gpio.c
│   │   ├── i2c-uclass.c
│   │   ├── i2c-uclass-compat.c
│   │   ├── i2c-uniphier.c
│   │   ├── i2c-uniphier-f.c
│   │   ├── ihs_i2c.c
│   │   ├── imx_lpi2c.c
│   │   ├── intel_i2c.c
│   │   ├── Kconfig
│   │   ├── kona_i2c.c
│   │   ├── lpc32xx_i2c.c
│   │   ├── Makefile
│   │   ├── muxes
│   │   │   ├── i2c-arb-gpio-challenge.c
│   │   │   ├── i2c-mux-gpio.c
│   │   │   ├── i2c-mux-uclass.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── pca954x.c
│   │   ├── mv_i2c.c
│   │   ├── mv_i2c.h
│   │   ├── mvtwsi.c
│   │   ├── mxc_i2c.c
│   │   ├── mxs_i2c.c
│   │   ├── omap24xx_i2c.c
│   │   ├── omap24xx_i2c.h
│   │   ├── rcar_i2c.c
│   │   ├── rk_i2c.c
│   │   ├── s3c24x0_i2c.c
│   │   ├── s3c24x0_i2c.h
│   │   ├── sandbox_i2c.c
│   │   ├── sh_i2c.c
│   │   ├── sh_sh7734_i2c.c
│   │   ├── soft_i2c.c
│   │   ├── stm32f7_i2c.c
│   │   ├── tegra186_bpmp_i2c.c
│   │   ├── tegra_i2c.c
│   │   ├── tsi108_i2c.c
│   │   └── zynq_i2c.c
│   ├── input
│   │   ├── cros_ec_keyb.c
│   │   ├── i8042.c
│   │   ├── input.c
│   │   ├── Kconfig
│   │   ├── keyboard.c
│   │   ├── keyboard-uclass.c
│   │   ├── key_matrix.c
│   │   ├── Makefile
│   │   ├── pc_keyb.c
│   │   ├── ps2mult.c
│   │   ├── ps2ser.c
│   │   ├── tegra-kbc.c
│   │   ├── twl4030.c
│   │   └── twl6030.c
│   ├── Kconfig
│   ├── led
│   │   ├── Kconfig
│   │   ├── led_bcm6328.c
│   │   ├── led_bcm6358.c
│   │   ├── led_gpio.c
│   │   ├── led-uclass.c
│   │   └── Makefile
│   ├── mailbox
│   │   ├── Kconfig
│   │   ├── mailbox-uclass.c
│   │   ├── Makefile
│   │   ├── sandbox-mbox.c
│   │   ├── sandbox-mbox-test.c
│   │   └── tegra-hsp.c
│   ├── Makefile
│   ├── memory
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   └── ti-aemif.c
│   ├── misc
│   │   ├── ali512x.c
│   │   ├── altera_sysid.c
│   │   ├── atsha204a-i2c.c
│   │   ├── cbmem_console.c
│   │   ├── cros_ec.c
│   │   ├── cros_ec_i2c.c
│   │   ├── cros_ec_lpc.c
│   │   ├── cros_ec_sandbox.c
│   │   ├── cros_ec_spi.c
│   │   ├── ds4510.c
│   │   ├── ds4510.h
│   │   ├── fsl_devdis.c
│   │   ├── fsl_ifc.c
│   │   ├── fsl_iim.c
│   │   ├── fsl_sec_mon.c
│   │   ├── gpio_led.c
│   │   ├── i2c_eeprom.c
│   │   ├── i2c_eeprom_emul.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── mc9sdz60.c
│   │   ├── misc-uclass.c
│   │   ├── mxc_ocotp.c
│   │   ├── mxs_ocotp.c
│   │   ├── ns87308.c
│   │   ├── nuvoton_nct6102d.c
│   │   ├── pca9551_led.c
│   │   ├── pwrseq-uclass.c
│   │   ├── qfw.c
│   │   ├── rockchip-efuse.c
│   │   ├── smsc_lpc47m.c
│   │   ├── smsc_sio1007.c
│   │   ├── spltest_sandbox.c
│   │   ├── status_led.c
│   │   ├── stm32_rcc.c
│   │   ├── swap_case.c
│   │   ├── syscon_sandbox.c
│   │   ├── tegra186_bpmp.c
│   │   ├── tegra_car.c
│   │   ├── twl4030_led.c
│   │   └── winbond_w83627.c
│   ├── mmc
│   │   ├── arm_pl180_mmci.c
│   │   ├── arm_pl180_mmci.h
│   │   ├── atmel_sdhci.c
│   │   ├── bcm2835_sdhci.c
│   │   ├── davinci_mmc.c
│   │   ├── dw_mmc.c
│   │   ├── exynos_dw_mmc.c
│   │   ├── fsl_esdhc.c
│   │   ├── fsl_esdhc_spl.c
│   │   ├── ftsdc010_mci.c
│   │   ├── gen_atmel_mci.c
│   │   ├── hi6220_dw_mmc.c
│   │   ├── Kconfig
│   │   ├── kona_sdhci.c
│   │   ├── Makefile
│   │   ├── meson_gx_mmc.c
│   │   ├── mmc_boot.c
│   │   ├── mmc.c
│   │   ├── mmc_legacy.c
│   │   ├── mmc_private.h
│   │   ├── mmc_spi.c
│   │   ├── mmc-uclass.c
│   │   ├── mmc_write.c
│   │   ├── msm_sdhci.c
│   │   ├── mvebu_mmc.c
│   │   ├── mv_sdhci.c
│   │   ├── mxcmmc.c
│   │   ├── mxsmmc.c
│   │   ├── omap_hsmmc.c
│   │   ├── pci_mmc.c
│   │   ├── pic32_sdhci.c
│   │   ├── pxa_mmc_gen.c
│   │   ├── rockchip_dw_mmc.c
│   │   ├── rockchip_sdhci.c
│   │   ├── rpmb.c
│   │   ├── s5p_sdhci.c
│   │   ├── sandbox_mmc.c
│   │   ├── sdhci.c
│   │   ├── sdhci-cadence.c
│   │   ├── sh_mmcif.c
│   │   ├── sh_mmcif.h
│   │   ├── sh_sdhi.c
│   │   ├── socfpga_dw_mmc.c
│   │   ├── sti_sdhci.c
│   │   ├── stm32_sdmmc2.c
│   │   ├── sunxi_mmc.c
│   │   ├── tangier_sdhci.c
│   │   ├── tegra_mmc.c
│   │   ├── uniphier-sd.c
│   │   ├── xenon_sdhci.c
│   │   └── zynq_sdhci.c
│   ├── mtd
│   │   ├── altera_qspi.c
│   │   ├── cfi_flash.c
│   │   ├── cfi_mtd.c
│   │   ├── ftsmc020.c
│   │   ├── jedec_flash.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── mtdconcat.c
│   │   ├── mtdcore.c
│   │   ├── mtdcore.h
│   │   ├── mtdpart.c
│   │   ├── mtd_uboot.c
│   │   ├── mtd-uclass.c
│   │   ├── mw_eeprom.c
│   │   ├── nand
│   │   │   ├── am335x_spl_bch.c
│   │   │   ├── arasan_nfc.c
│   │   │   ├── atmel_nand.c
│   │   │   ├── atmel_nand_ecc.h
│   │   │   ├── davinci_nand.c
│   │   │   ├── denali.c
│   │   │   ├── denali_dt.c
│   │   │   ├── denali.h
│   │   │   ├── denali_spl.c
│   │   │   ├── fsl_elbc_nand.c
│   │   │   ├── fsl_elbc_spl.c
│   │   │   ├── fsl_ifc_nand.c
│   │   │   ├── fsl_ifc_spl.c
│   │   │   ├── fsl_upm.c
│   │   │   ├── fsmc_nand.c
│   │   │   ├── kb9202_nand.c
│   │   │   ├── Kconfig
│   │   │   ├── kirkwood_nand.c
│   │   │   ├── kmeter1_nand.c
│   │   │   ├── lpc32xx_nand_mlc.c
│   │   │   ├── lpc32xx_nand_slc.c
│   │   │   ├── Makefile
│   │   │   ├── mxc_nand.c
│   │   │   ├── mxc_nand.h
│   │   │   ├── mxc_nand_spl.c
│   │   │   ├── mxs_nand.c
│   │   │   ├── mxs_nand_spl.c
│   │   │   ├── nand_base.c
│   │   │   ├── nand_bbt.c
│   │   │   ├── nand_bch.c
│   │   │   ├── nand.c
│   │   │   ├── nand_ecc.c
│   │   │   ├── nand_ids.c
│   │   │   ├── nand_plat.c
│   │   │   ├── nand_spl_load.c
│   │   │   ├── nand_spl_loaders.c
│   │   │   ├── nand_spl_simple.c
│   │   │   ├── nand_timings.c
│   │   │   ├── nand_util.c
│   │   │   ├── ndfc.c
│   │   │   ├── omap_elm.c
│   │   │   ├── omap_gpmc.c
│   │   │   ├── pxa3xx_nand.c
│   │   │   ├── pxa3xx_nand.h
│   │   │   ├── sunxi_nand.c
│   │   │   ├── sunxi_nand_spl.c
│   │   │   ├── tegra_nand.c
│   │   │   ├── tegra_nand.h
│   │   │   ├── vf610_nfc.c
│   │   │   └── zynq_nand.c
│   │   ├── onenand
│   │   │   ├── Makefile
│   │   │   ├── onenand_base.c
│   │   │   ├── onenand_bbt.c
│   │   │   ├── onenand_spl.c
│   │   │   ├── onenand_uboot.c
│   │   │   └── samsung.c
│   │   ├── pic32_flash.c
│   │   ├── spi
│   │   │   ├── fsl_espi_spl.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── sandbox.c
│   │   │   ├── sf.c
│   │   │   ├── sf_dataflash.c
│   │   │   ├── sf_internal.h
│   │   │   ├── sf_mtd.c
│   │   │   ├── sf_probe.c
│   │   │   ├── sf-uclass.c
│   │   │   ├── spi_flash.c
│   │   │   ├── spi_flash_ids.c
│   │   │   └── sunxi_spi_spl.c
│   │   ├── stm32_flash.c
│   │   ├── stm32_flash.h
│   │   ├── st_smi.c
│   │   ├── ubi
│   │   │   ├── attach.c
│   │   │   ├── build.c
│   │   │   ├── crc32.c
│   │   │   ├── crc32defs.h
│   │   │   ├── crc32table.h
│   │   │   ├── debug.c
│   │   │   ├── debug.h
│   │   │   ├── eba.c
│   │   │   ├── fastmap.c
│   │   │   ├── fastmap-wl.c
│   │   │   ├── io.c
│   │   │   ├── kapi.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── misc.c
│   │   │   ├── ubi.h
│   │   │   ├── ubi-media.h
│   │   │   ├── upd.c
│   │   │   ├── vmt.c
│   │   │   ├── vtbl.c
│   │   │   ├── wl.c
│   │   │   └── wl.h
│   │   └── ubispl
│   │   ├── Makefile
│   │   ├── ubispl.c
│   │   ├── ubispl.h
│   │   └── ubi-wrapper.h
│   ├── net
│   │   ├── 8390.h
│   │   ├── ag7xxx.c
│   │   ├── altera_tse.c
│   │   ├── altera_tse.h
│   │   ├── armada100_fec.c
│   │   ├── armada100_fec.h
│   │   ├── at91_emac.c
│   │   ├── ax88180.c
│   │   ├── ax88180.h
│   │   ├── ax88796.c
│   │   ├── ax88796.h
│   │   ├── bcm-sf2-eth.c
│   │   ├── bcm-sf2-eth-gmac.c
│   │   ├── bcm-sf2-eth-gmac.h
│   │   ├── bcm-sf2-eth.h
│   │   ├── calxedaxgmac.c
│   │   ├── cpsw.c
│   │   ├── cpsw-common.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
│   │   ├── dwc_eth_qos.c
│   │   ├── 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
│   │   │   ├── b4860.c
│   │   │   ├── dtsec.c
│   │   │   ├── eth.c
│   │   │   ├── fdt.c
│   │   │   ├── fm.c
│   │   │   ├── fm.h
│   │   │   ├── init.c
│   │   │   ├── ls1043.c
│   │   │   ├── ls1046.c
│   │   │   ├── Makefile
│   │   │   ├── memac.c
│   │   │   ├── memac_phy.c
│   │   │   ├── p1023.c
│   │   │   ├── p4080.c
│   │   │   ├── p5020.c
│   │   │   ├── p5040.c
│   │   │   ├── t1024.c
│   │   │   ├── t1040.c
│   │   │   ├── t2080.c
│   │   │   ├── t4240.c
│   │   │   ├── tgec.c
│   │   │   └── tgec_phy.c
│   │   ├── fsl-mc
│   │   │   ├── dpbp.c
│   │   │   ├── dpio
│   │   │   │   ├── dpio.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── qbman_portal.c
│   │   │   │   ├── qbman_portal.h
│   │   │   │   ├── qbman_private.h
│   │   │   │   └── qbman_sys.h
│   │   │   ├── dpmac.c
│   │   │   ├── dpmng.c
│   │   │   ├── dpni.c
│   │   │   ├── dprc.c
│   │   │   ├── fsl_dpmng_cmd.h
│   │   │   ├── Makefile
│   │   │   ├── mc.c
│   │   │   └── mc_sys.c
│   │   ├── fsl_mcdmafec.c
│   │   ├── fsl_mdio.c
│   │   ├── ftgmac100.c
│   │   ├── ftgmac100.h
│   │   ├── ftmac100.c
│   │   ├── ftmac100.h
│   │   ├── ftmac110.c
│   │   ├── ftmac110.h
│   │   ├── gmac_rockchip.c
│   │   ├── Kconfig
│   │   ├── keystone_net.c
│   │   ├── ks8851_mll.c
│   │   ├── ks8851_mll.h
│   │   ├── lan91c96.c
│   │   ├── lan91c96.h
│   │   ├── ldpaa_eth
│   │   │   ├── ldpaa_eth.c
│   │   │   ├── ldpaa_eth.h
│   │   │   ├── ldpaa_wriop.c
│   │   │   ├── ls1088a.c
│   │   │   ├── ls2080a.c
│   │   │   └── Makefile
│   │   ├── lpc32xx_eth.c
│   │   ├── macb.c
│   │   ├── macb.h
│   │   ├── Makefile
│   │   ├── mcffec.c
│   │   ├── mcfmii.c
│   │   ├── mpc8xx_fec.c
│   │   ├── mvgbe.c
│   │   ├── mvgbe.h
│   │   ├── mvneta.c
│   │   ├── mvpp2.c
│   │   ├── natsemi.c
│   │   ├── ne2000_base.c
│   │   ├── ne2000_base.h
│   │   ├── ne2000.c
│   │   ├── ne2000.h
│   │   ├── netconsole.c
│   │   ├── ns8382x.c
│   │   ├── pch_gbe.c
│   │   ├── pch_gbe.h
│   │   ├── pcnet.c
│   │   ├── phy
│   │   │   ├── aquantia.c
│   │   │   ├── atheros.c
│   │   │   ├── broadcom.c
│   │   │   ├── cortina.c
│   │   │   ├── davicom.c
│   │   │   ├── et1011c.c
│   │   │   ├── fixed.c
│   │   │   ├── generic_10g.c
│   │   │   ├── Kconfig
│   │   │   ├── lxt.c
│   │   │   ├── Makefile
│   │   │   ├── marvell.c
│   │   │   ├── micrel_ksz8xxx.c
│   │   │   ├── micrel_ksz90x1.c
│   │   │   ├── miiphybb.c
│   │   │   ├── mscc.c
│   │   │   ├── mv88e61xx.c
│   │   │   ├── mv88e6352.c
│   │   │   ├── natsemi.c
│   │   │   ├── phy.c
│   │   │   ├── realtek.c
│   │   │   ├── smsc.c
│   │   │   ├── teranetics.c
│   │   │   ├── ti.c
│   │   │   ├── vitesse.c
│   │   │   └── xilinx_phy.c
│   │   ├── pic32_eth.c
│   │   ├── pic32_eth.h
│   │   ├── pic32_mdio.c
│   │   ├── ravb.c
│   │   ├── rtl8139.c
│   │   ├── rtl8169.c
│   │   ├── sandbox.c
│   │   ├── sandbox-raw.c
│   │   ├── sh_eth.c
│   │   ├── sh_eth.h
│   │   ├── smc91111.c
│   │   ├── smc91111.h
│   │   ├── smc911x.c
│   │   ├── smc911x.h
│   │   ├── sun8i_emac.c
│   │   ├── sunxi_emac.c
│   │   ├── tsec.c
│   │   ├── tsi108_eth.c
│   │   ├── uli526x.c
│   │   ├── vsc7385.c
│   │   ├── vsc9953.c
│   │   ├── xilinx_axi_emac.c
│   │   ├── xilinx_emaclite.c
│   │   ├── xilinx_ll_temac.c
│   │   ├── xilinx_ll_temac_fifo.c
│   │   ├── xilinx_ll_temac_fifo.h
│   │   ├── xilinx_ll_temac.h
│   │   ├── xilinx_ll_temac_mdio.c
│   │   ├── xilinx_ll_temac_mdio.h
│   │   ├── xilinx_ll_temac_sdma.c
│   │   ├── xilinx_ll_temac_sdma.h
│   │   └── zynq_gem.c
│   ├── nvme
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── nvme.c
│   │   ├── nvme.h
│   │   ├── nvme_show.c
│   │   └── nvme-uclass.c
│   ├── pch
│   │   ├── Makefile
│   │   ├── pch7.c
│   │   ├── pch9.c
│   │   └── pch-uclass.c
│   ├── pci
│   │   ├── fsl_pci_init.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── pci_auto.c
│   │   ├── pci_auto_common.c
│   │   ├── pci_auto_old.c
│   │   ├── pci.c
│   │   ├── pci_common.c
│   │   ├── pci_compat.c
│   │   ├── pcie_dw_mvebu.c
│   │   ├── pcie_ecam_generic.c
│   │   ├── pcie_imx.c
│   │   ├── pcie_layerscape.c
│   │   ├── pcie_layerscape_fixup.c
│   │   ├── pcie_layerscape.h
│   │   ├── pci-emul-uclass.c
│   │   ├── pcie_xilinx.c
│   │   ├── pci_ftpci100.c
│   │   ├── pci_gt64120.c
│   │   ├── pci_indirect.c
│   │   ├── pci_internal.h
│   │   ├── pci_msc01.c
│   │   ├── pci_mvebu.c
│   │   ├── pci_rom.c
│   │   ├── pci_sandbox.c
│   │   ├── pci_sh4.c
│   │   ├── pci_sh7751.c
│   │   ├── pci_sh7780.c
│   │   ├── pci_tegra.c
│   │   ├── pci-uclass.c
│   │   ├── pci_x86.c
│   │   └── tsi108_pci.c
│   ├── pcmcia
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   └── marubun_pcmcia.c
│   ├── phy
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── marvell
│   │   │   ├── comphy_a3700.c
│   │   │   ├── comphy_a3700.h
│   │   │   ├── comphy_core.c
│   │   │   ├── comphy_cp110.c
│   │   │   ├── comphy.h
│   │   │   ├── comphy_hpipe.h
│   │   │   ├── comphy_mux.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── sata.h
│   │   │   └── utmi_phy.h
│   │   ├── nop-phy.c
│   │   ├── phy-uclass.c
│   │   ├── sandbox-phy.c
│   │   ├── sti_usb_phy.c
│   │   └── ti-pipe3-phy.c
│   ├── pinctrl
│   │   ├── aspeed
│   │   │   ├── Makefile
│   │   │   └── pinctrl_ast2500.c
│   │   ├── ath79
│   │   │   ├── Makefile
│   │   │   ├── pinctrl_ar933x.c
│   │   │   └── pinctrl_qca953x.c
│   │   ├── exynos
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── pinctrl-exynos7420.c
│   │   │   ├── pinctrl-exynos.c
│   │   │   └── pinctrl-exynos.h
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── meson
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── pinctrl-meson.c
│   │   │   ├── pinctrl-meson-gxbb.c
│   │   │   └── pinctrl-meson.h
│   │   ├── mvebu
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── pinctrl-armada-37xx.c
│   │   │   ├── pinctrl-mvebu.c
│   │   │   └── pinctrl-mvebu.h
│   │   ├── nxp
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── pinctrl-imx5.c
│   │   │   ├── pinctrl-imx6.c
│   │   │   ├── pinctrl-imx7.c
│   │   │   ├── pinctrl-imx7ulp.c
│   │   │   ├── pinctrl-imx.c
│   │   │   └── pinctrl-imx.h
│   │   ├── pinctrl-at91.c
│   │   ├── pinctrl-at91-pio4.c
│   │   ├── pinctrl-generic.c
│   │   ├── pinctrl_pic32.c
│   │   ├── pinctrl-sandbox.c
│   │   ├── pinctrl-single.c
│   │   ├── pinctrl-sti.c
│   │   ├── pinctrl_stm32.c
│   │   ├── pinctrl-uclass.c
│   │   ├── renesas
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── pfc.c
│   │   │   ├── pfc-r8a7795.c
│   │   │   ├── pfc-r8a7796.c
│   │   │   └── sh_pfc.h
│   │   ├── rockchip
│   │   │   ├── Makefile
│   │   │   ├── pinctrl_rk3036.c
│   │   │   ├── pinctrl_rk3188.c
│   │   │   ├── pinctrl_rk322x.c
│   │   │   ├── pinctrl_rk3288.c
│   │   │   ├── pinctrl_rk3328.c
│   │   │   ├── pinctrl_rk3368.c
│   │   │   ├── pinctrl_rk3399.c
│   │   │   └── pinctrl_rv1108.c
│   │   └── uniphier
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── pinctrl-uniphier-core.c
│   │   ├── pinctrl-uniphier.h
│   │   ├── pinctrl-uniphier-ld11.c
│   │   ├── pinctrl-uniphier-ld20.c
│   │   ├── pinctrl-uniphier-ld4.c
│   │   ├── pinctrl-uniphier-ld6b.c
│   │   ├── pinctrl-uniphier-pro4.c
│   │   ├── pinctrl-uniphier-pro5.c
│   │   ├── pinctrl-uniphier-pxs2.c
│   │   ├── pinctrl-uniphier-pxs3.c
│   │   └── pinctrl-uniphier-sld8.c
│   ├── power
│   │   ├── axp152.c
│   │   ├── axp209.c
│   │   ├── axp221.c
│   │   ├── axp809.c
│   │   ├── axp818.c
│   │   ├── battery
│   │   │   ├── bat_trats2.c
│   │   │   ├── bat_trats.c
│   │   │   └── Makefile
│   │   ├── domain
│   │   │   ├── bcm6328-power-domain.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── power-domain-uclass.c
│   │   │   ├── sandbox-power-domain.c
│   │   │   ├── sandbox-power-domain-test.c
│   │   │   └── tegra186-power-domain.c
│   │   ├── exynos-tmu.c
│   │   ├── ftpmu010.c
│   │   ├── fuel_gauge
│   │   │   ├── fg_max17042.c
│   │   │   └── Makefile
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── mfd
│   │   │   ├── fg_max77693.c
│   │   │   ├── Makefile
│   │   │   ├── muic_max77693.c
│   │   │   └── pmic_max77693.c
│   │   ├── palmas.c
│   │   ├── pmic
│   │   │   ├── act8846.c
│   │   │   ├── as3722.c
│   │   │   ├── as3722_gpio.c
│   │   │   ├── i2c_pmic_emul.c
│   │   │   ├── Kconfig
│   │   │   ├── lp873x.c
│   │   │   ├── lp87565.c
│   │   │   ├── Makefile
│   │   │   ├── max77686.c
│   │   │   ├── max8997.c
│   │   │   ├── max8998.c
│   │   │   ├── muic_max8997.c
│   │   │   ├── palmas.c
│   │   │   ├── pfuze100.c
│   │   │   ├── pm8916.c
│   │   │   ├── pmic_hi6553.c
│   │   │   ├── pmic_ltc3676.c
│   │   │   ├── pmic_max77686.c
│   │   │   ├── pmic_max77696.c
│   │   │   ├── pmic_max8997.c
│   │   │   ├── pmic_max8998.c
│   │   │   ├── pmic_mc34vr500.c
│   │   │   ├── pmic_pfuze100.c
│   │   │   ├── pmic_pfuze3000.c
│   │   │   ├── pmic_tps62362.c
│   │   │   ├── pmic_tps65217.c
│   │   │   ├── pmic_tps65218.c
│   │   │   ├── pmic_tps65910.c
│   │   │   ├── pmic-uclass.c
│   │   │   ├── rk8xx.c
│   │   │   ├── rn5t567.c
│   │   │   ├── s2mps11.c
│   │   │   ├── s5m8767.c
│   │   │   ├── sandbox.c
│   │   │   └── tps65090.c
│   │   ├── power_core.c
│   │   ├── power_dialog.c
│   │   ├── power_fsl.c
│   │   ├── power_i2c.c
│   │   ├── power_spi.c
│   │   ├── regulator
│   │   │   ├── act8846.c
│   │   │   ├── as3722_regulator.c
│   │   │   ├── fixed.c
│   │   │   ├── gpio-regulator.c
│   │   │   ├── Kconfig
│   │   │   ├── lp873x_regulator.c
│   │   │   ├── lp87565_regulator.c
│   │   │   ├── Makefile
│   │   │   ├── max77686.c
│   │   │   ├── palmas_regulator.c
│   │   │   ├── pbias_regulator.c
│   │   │   ├── pfuze100.c
│   │   │   ├── pwm_regulator.c
│   │   │   ├── regulator-uclass.c
│   │   │   ├── rk8xx.c
│   │   │   ├── s5m8767.c
│   │   │   ├── sandbox.c
│   │   │   └── tps65090_regulator.c
│   │   ├── sy8106a.c
│   │   ├── tps6586x.c
│   │   ├── twl4030.c
│   │   └── twl6030.c
│   ├── pwm
│   │   ├── exynos_pwm.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── pwm-imx.c
│   │   ├── pwm-imx-util.c
│   │   ├── pwm-imx-util.h
│   │   ├── pwm-uclass.c
│   │   ├── rk_pwm.c
│   │   ├── sandbox_pwm.c
│   │   └── tegra_pwm.c
│   ├── qe
│   │   ├── fdt.c
│   │   ├── Makefile
│   │   ├── qe.c
│   │   ├── uccf.c
│   │   ├── uccf.h
│   │   ├── uec.c
│   │   ├── uec.h
│   │   ├── uec_phy.c
│   │   └── uec_phy.h
│   ├── ram
│   │   ├── bmips_ram.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── ram-uclass.c
│   │   ├── rockchip
│   │   │   ├── dmc-rk3368.c
│   │   │   ├── Makefile
│   │   │   ├── sdram_rk3188.c
│   │   │   ├── sdram_rk322x.c
│   │   │   ├── sdram_rk3288.c
│   │   │   ├── sdram_rk3328.c
│   │   │   └── sdram_rk3399.c
│   │   ├── sandbox_ram.c
│   │   └── stm32_sdram.c
│   ├── remoteproc
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── rproc-uclass.c
│   │   ├── sandbox_testproc.c
│   │   └── ti_power_proc.c
│   ├── reset
│   │   ├── ast2500-reset.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── reset-bcm6345.c
│   │   ├── reset-uclass.c
│   │   ├── reset-uniphier.c
│   │   ├── sandbox-reset.c
│   │   ├── sandbox-reset-test.c
│   │   ├── sti-reset.c
│   │   ├── stm32-reset.c
│   │   ├── tegra186-reset.c
│   │   └── tegra-car-reset.c
│   ├── rtc
│   │   ├── at91sam9_rtt.c
│   │   ├── date.c
│   │   ├── davinci.c
│   │   ├── ds1302.c
│   │   ├── ds1306.c
│   │   ├── ds1307.c
│   │   ├── ds1337.c
│   │   ├── ds1374.c
│   │   ├── ds1556.c
│   │   ├── ds164x.c
│   │   ├── ds174x.c
│   │   ├── ds3231.c
│   │   ├── ftrtc010.c
│   │   ├── i2c_rtc_emul.c
│   │   ├── imxdi.c
│   │   ├── isl1208.c
│   │   ├── Kconfig
│   │   ├── m41t11.c
│   │   ├── m41t60.c
│   │   ├── m41t62.c
│   │   ├── m41t94.c
│   │   ├── m48t35ax.c
│   │   ├── Makefile
│   │   ├── max6900.c
│   │   ├── mc13xxx-rtc.c
│   │   ├── mc146818.c
│   │   ├── mcfrtc.c
│   │   ├── mk48t59.c
│   │   ├── mvrtc.c
│   │   ├── mvrtc.h
│   │   ├── mx27rtc.c
│   │   ├── mxsrtc.c
│   │   ├── pcf2127.c
│   │   ├── pcf8563.c
│   │   ├── pl031.c
│   │   ├── pt7c4338.c
│   │   ├── rs5c372.c
│   │   ├── rtc-uclass.c
│   │   ├── rv3029.c
│   │   ├── rx8025.c
│   │   ├── s3c24x0_rtc.c
│   │   ├── sandbox_rtc.c
│   │   └── x1205.c
│   ├── scsi
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── sandbox_scsi.c
│   │   ├── scsi.c
│   │   └── scsi-uclass.c
│   ├── serial
│   │   ├── altera_jtag_uart.c
│   │   ├── altera_uart.c
│   │   ├── arm_dcc.c
│   │   ├── atmel_usart.c
│   │   ├── atmel_usart.h
│   │   ├── Kconfig
│   │   ├── lpc32xx_hsuart.c
│   │   ├── Makefile
│   │   ├── mcfuart.c
│   │   ├── ns16550.c
│   │   ├── sandbox.c
│   │   ├── serial_ar933x.c
│   │   ├── serial_arc.c
│   │   ├── serial_bcm283x_mu.c
│   │   ├── serial_bcm6345.c
│   │   ├── serial.c
│   │   ├── serial_efi.c
│   │   ├── serial_intel_mid.c
│   │   ├── serial_linflexuart.c
│   │   ├── serial_lpuart.c
│   │   ├── serial_meson.c
│   │   ├── serial_mpc8xx.c
│   │   ├── serial_msm.c
│   │   ├── serial_mvebu_a3700.c
│   │   ├── serial_mxc.c
│   │   ├── serial_ns16550.c
│   │   ├── serial_nulldev.c
│   │   ├── serial_pic32.c
│   │   ├── serial_pl01x.c
│   │   ├── serial_pl01x_internal.h
│   │   ├── serial_pxa.c
│   │   ├── serial_rockchip.c
│   │   ├── serial_s5p.c
│   │   ├── serial_sh.c
│   │   ├── serial_sh.h
│   │   ├── serial_sti_asc.c
│   │   ├── serial_stm32.c
│   │   ├── serial_stm32x7.c
│   │   ├── serial_stm32x7.h
│   │   ├── serial-uclass.c
│   │   ├── serial_uniphier.c
│   │   ├── serial_xuartlite.c
│   │   ├── serial_zynq.c
│   │   ├── usbtty.c
│   │   └── usbtty.h
│   ├── soc
│   │   ├── keystone
│   │   │   ├── keystone_serdes.c
│   │   │   └── Makefile
│   │   └── Makefile
│   ├── sound
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── max98095.c
│   │   ├── max98095.h
│   │   ├── samsung-i2s.c
│   │   ├── sandbox.c
│   │   ├── sound.c
│   │   ├── sound-i2s.c
│   │   ├── wm8994.c
│   │   ├── wm8994.h
│   │   └── wm8994_registers.h
│   ├── spi
│   │   ├── altera_spi.c
│   │   ├── ath79_spi.c
│   │   ├── atmel_spi.c
│   │   ├── atmel_spi.h
│   │   ├── cadence_qspi_apb.c
│   │   ├── cadence_qspi.c
│   │   ├── cadence_qspi.h
│   │   ├── cf_spi.c
│   │   ├── davinci_spi.c
│   │   ├── designware_spi.c
│   │   ├── exynos_spi.c
│   │   ├── fsl_dspi.c
│   │   ├── fsl_espi.c
│   │   ├── fsl_qspi.c
│   │   ├── fsl_qspi.h
│   │   ├── ich.c
│   │   ├── ich.h
│   │   ├── Kconfig
│   │   ├── kirkwood_spi.c
│   │   ├── lpc32xx_ssp.c
│   │   ├── Makefile
│   │   ├── mpc8xx_spi.c
│   │   ├── mpc8xxx_spi.c
│   │   ├── mvebu_a3700_spi.c
│   │   ├── mxc_spi.c
│   │   ├── mxs_spi.c
│   │   ├── nds_ae3xx_spi.c
│   │   ├── omap3_spi.c
│   │   ├── pic32_spi.c
│   │   ├── rk_spi.c
│   │   ├── rk_spi.h
│   │   ├── sandbox_spi.c
│   │   ├── sh_qspi.c
│   │   ├── sh_spi.c
│   │   ├── sh_spi.h
│   │   ├── soft_spi.c
│   │   ├── soft_spi_legacy.c
│   │   ├── spi.c
│   │   ├── spi-emul-uclass.c
│   │   ├── spi-uclass.c
│   │   ├── stm32_qspi.c
│   │   ├── tegra114_spi.c
│   │   ├── tegra20_sflash.c
│   │   ├── tegra20_slink.c
│   │   ├── tegra210_qspi.c
│   │   ├── tegra_spi.h
│   │   ├── ti_qspi.c
│   │   ├── xilinx_spi.c
│   │   ├── zynq_qspi.c
│   │   └── zynq_spi.c
│   ├── spmi
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── spmi-msm.c
│   │   ├── spmi-sandbox.c
│   │   └── spmi-uclass.c
│   ├── sysreset
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── sysreset_ast.c
│   │   ├── sysreset_psci.c
│   │   ├── sysreset_rk3036.c
│   │   ├── sysreset_rk3188.c
│   │   ├── sysreset_rk322x.c
│   │   ├── sysreset_rk3288.c
│   │   ├── sysreset_rk3328.c
│   │   ├── sysreset_rk3368.c
│   │   ├── sysreset_rk3399.c
│   │   ├── sysreset_rv1108.c
│   │   ├── sysreset_sandbox.c
│   │   ├── sysreset_snapdragon.c
│   │   ├── sysreset_sti.c
│   │   ├── sysreset_syscon.c
│   │   ├── sysreset-uclass.c
│   │   ├── sysreset_watchdog.c
│   │   └── sysreset_xtfpga.c
│   ├── thermal
│   │   ├── imx_thermal.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   └── thermal-uclass.c
│   ├── timer
│   │   ├── ae3xx_timer.c
│   │   ├── ag101p_timer.c
│   │   ├── altera_timer.c
│   │   ├── arc_timer.c
│   │   ├── ast_timer.c
│   │   ├── atmel_pit_timer.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── omap-timer.c
│   │   ├── rockchip_timer.c
│   │   ├── sandbox_timer.c
│   │   ├── sti-timer.c
│   │   ├── timer-uclass.c
│   │   └── tsc_timer.c
│   ├── tpm
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── tpm_atmel_twi.c
│   │   ├── tpm_internal.h
│   │   ├── tpm_tis.h
│   │   ├── tpm_tis_infineon.c
│   │   ├── tpm_tis_lpc.c
│   │   ├── tpm_tis_sandbox.c
│   │   ├── tpm_tis_st33zp24_i2c.c
│   │   ├── tpm_tis_st33zp24_spi.c
│   │   └── tpm-uclass.c
│   ├── usb
│   │   ├── common
│   │   │   ├── common.c
│   │   │   ├── fsl-dt-fixup.c
│   │   │   ├── fsl-errata.c
│   │   │   └── Makefile
│   │   ├── dwc3
│   │   │   ├── core.c
│   │   │   ├── core.h
│   │   │   ├── dwc3-omap.c
│   │   │   ├── dwc3-uniphier.c
│   │   │   ├── ep0.c
│   │   │   ├── gadget.c
│   │   │   ├── gadget.h
│   │   │   ├── io.h
│   │   │   ├── Kconfig
│   │   │   ├── linux-compat.h
│   │   │   ├── Makefile
│   │   │   ├── samsung_usb_phy.c
│   │   │   └── ti_usb_phy.c
│   │   ├── emul
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── sandbox_flash.c
│   │   │   ├── sandbox_hub.c
│   │   │   ├── sandbox_keyb.c
│   │   │   └── usb-emul-uclass.c
│   │   ├── eth
│   │   │   ├── asix88179.c
│   │   │   ├── asix.c
│   │   │   ├── Kconfig
│   │   │   ├── lan75xx.c
│   │   │   ├── lan78xx.c
│   │   │   ├── lan7x.c
│   │   │   ├── lan7x.h
│   │   │   ├── Makefile
│   │   │   ├── mcs7830.c
│   │   │   ├── r8152.c
│   │   │   ├── r8152_fw.c
│   │   │   ├── r8152.h
│   │   │   ├── smsc95xx.c
│   │   │   └── usb_ether.c
│   │   ├── gadget
│   │   │   ├── at91_udc.c
│   │   │   ├── at91_udc.h
│   │   │   ├── atmel_usba_udc.c
│   │   │   ├── atmel_usba_udc.h
│   │   │   ├── bcm_udc_otg.h
│   │   │   ├── bcm_udc_otg_phy.c
│   │   │   ├── ci_udc.c
│   │   │   ├── ci_udc.h
│   │   │   ├── composite.c
│   │   │   ├── config.c
│   │   │   ├── core.c
│   │   │   ├── designware_udc.c
│   │   │   ├── dwc2_udc_otg.c
│   │   │   ├── dwc2_udc_otg_phy.c
│   │   │   ├── dwc2_udc_otg_priv.h
│   │   │   ├── dwc2_udc_otg_regs.h
│   │   │   ├── dwc2_udc_otg_xfer_dma.c
│   │   │   ├── ep0.c
│   │   │   ├── ep0.h
│   │   │   ├── epautoconf.c
│   │   │   ├── ether.c
│   │   │   ├── f_dfu.c
│   │   │   ├── f_dfu.h
│   │   │   ├── f_fastboot.c
│   │   │   ├── f_mass_storage.c
│   │   │   ├── fotg210.c
│   │   │   ├── f_sdp.c
│   │   │   ├── f_thor.c
│   │   │   ├── f_thor.h
│   │   │   ├── gadget_chips.h
│   │   │   ├── g_dnl.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── ndis.h
│   │   │   ├── pxa25x_udc.c
│   │   │   ├── pxa25x_udc.h
│   │   │   ├── pxa27x_udc.c
│   │   │   ├── rndis.c
│   │   │   ├── rndis.h
│   │   │   ├── storage_common.c
│   │   │   ├── udc
│   │   │   │   ├── Makefile
│   │   │   │   └── udc-core.c
│   │   │   └── usbstring.c
│   │   ├── host
│   │   │   ├── dwc2.c
│   │   │   ├── dwc2.h
│   │   │   ├── dwc3-sti-glue.c
│   │   │   ├── ehci-armada100.c
│   │   │   ├── ehci-atmel.c
│   │   │   ├── ehci-exynos.c
│   │   │   ├── ehci-faraday.c
│   │   │   ├── ehci-fsl.c
│   │   │   ├── ehci-generic.c
│   │   │   ├── ehci.h
│   │   │   ├── ehci-hcd.c
│   │   │   ├── ehci-marvell.c
│   │   │   ├── ehci-msm.c
│   │   │   ├── ehci-mx5.c
│   │   │   ├── ehci-mx6.c
│   │   │   ├── ehci-mxc.c
│   │   │   ├── ehci-mxs.c
│   │   │   ├── ehci-omap.c
│   │   │   ├── ehci-pci.c
│   │   │   ├── ehci-ppc4xx.c
│   │   │   ├── ehci-rmobile.c
│   │   │   ├── ehci-spear.c
│   │   │   ├── ehci-sunxi.c
│   │   │   ├── ehci-tegra.c
│   │   │   ├── ehci-vct.c
│   │   │   ├── ehci-vf.c
│   │   │   ├── ehci-zynq.c
│   │   │   ├── isp116x.h
│   │   │   ├── isp116x-hcd.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── ohci-at91.c
│   │   │   ├── ohci-da8xx.c
│   │   │   ├── ohci-ep93xx.c
│   │   │   ├── ohci-generic.c
│   │   │   ├── ohci.h
│   │   │   ├── ohci-hcd.c
│   │   │   ├── ohci-lpc32xx.c
│   │   │   ├── ohci-sunxi.c
│   │   │   ├── r8a66597.h
│   │   │   ├── r8a66597-hcd.c
│   │   │   ├── sl811.h
│   │   │   ├── sl811-hcd.c
│   │   │   ├── usb-sandbox.c
│   │   │   ├── usb-uclass.c
│   │   │   ├── utmi-armada100.c
│   │   │   ├── xhci.c
│   │   │   ├── xhci-dwc3.c
│   │   │   ├── xhci-exynos5.c
│   │   │   ├── xhci-fsl.c
│   │   │   ├── xhci.h
│   │   │   ├── xhci-keystone.c
│   │   │   ├── xhci-mem.c
│   │   │   ├── xhci-mvebu.c
│   │   │   ├── xhci-omap.c
│   │   │   ├── xhci-pci.c
│   │   │   ├── xhci-ring.c
│   │   │   ├── xhci-rockchip.c
│   │   │   └── xhci-zynqmp.c
│   │   ├── Kconfig
│   │   ├── musb
│   │   │   ├── am35x.c
│   │   │   ├── am35x.h
│   │   │   ├── da8xx.c
│   │   │   ├── davinci.c
│   │   │   ├── davinci.h
│   │   │   ├── Makefile
│   │   │   ├── musb_core.c
│   │   │   ├── musb_core.h
│   │   │   ├── musb_debug.h
│   │   │   ├── musb_hcd.c
│   │   │   ├── musb_hcd.h
│   │   │   ├── musb_udc.c
│   │   │   ├── omap3.c
│   │   │   └── omap3.h
│   │   ├── musb-new
│   │   │   ├── am35x.c
│   │   │   ├── Kconfig
│   │   │   ├── linux-compat.h
│   │   │   ├── Makefile
│   │   │   ├── musb_core.c
│   │   │   ├── musb_core.h
│   │   │   ├── musb_debug.h
│   │   │   ├── musb_dma.h
│   │   │   ├── musb_dsps.c
│   │   │   ├── musb_gadget.c
│   │   │   ├── musb_gadget_ep0.c
│   │   │   ├── musb_gadget.h
│   │   │   ├── musb_host.c
│   │   │   ├── musb_host.h
│   │   │   ├── musb_io.h
│   │   │   ├── musb_regs.h
│   │   │   ├── musb_uboot.c
│   │   │   ├── musb_uboot.h
│   │   │   ├── omap2430.c
│   │   │   ├── omap2430.h
│   │   │   ├── pic32.c
│   │   │   ├── sunxi.c
│   │   │   ├── ti-musb.c
│   │   │   └── usb-compat.h
│   │   ├── phy
│   │   │   ├── Makefile
│   │   │   ├── omap_usb_phy.c
│   │   │   ├── rockchip_usb2_phy.c
│   │   │   └── twl4030.c
│   │   └── ulpi
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── omap-ulpi-viewport.c
│   │   ├── ulpi.c
│   │   └── ulpi-viewport.c
│   ├── video
│   │   ├── am335x-fb.c
│   │   ├── am335x-fb.h
│   │   ├── anx9804.c
│   │   ├── anx9804.h
│   │   ├── anx98xx-edp.h
│   │   ├── ati_ids.h
│   │   ├── ati_radeon_fb.c
│   │   ├── ati_radeon_fb.h
│   │   ├── atmel_hlcdfb.c
│   │   ├── atmel_lcdfb.c
│   │   ├── backlight_gpio.c
│   │   ├── backlight-uclass.c
│   │   ├── bcm2835.c
│   │   ├── bridge
│   │   │   ├── anx6345.c
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── ps862x.c
│   │   │   ├── ptn3460.c
│   │   │   └── video-bridge-uclass.c
│   │   ├── broadwell_igd.c
│   │   ├── bus_vcxk.c
│   │   ├── cfb_console.c
│   │   ├── console_normal.c
│   │   ├── console_rotate.c
│   │   ├── console_truetype.c
│   │   ├── coreboot.c
│   │   ├── da8xx-fb.c
│   │   ├── da8xx-fb.h
│   │   ├── display-uclass.c
│   │   ├── dw_hdmi.c
│   │   ├── exynos
│   │   │   ├── exynos_dp.c
│   │   │   ├── exynos_dp_lowlevel.c
│   │   │   ├── exynos_dp_lowlevel.h
│   │   │   ├── exynos_fb.c
│   │   │   ├── exynos_mipi_dsi.c
│   │   │   ├── exynos_mipi_dsi_common.c
│   │   │   ├── exynos_mipi_dsi_common.h
│   │   │   ├── exynos_mipi_dsi_lowlevel.c
│   │   │   ├── exynos_mipi_dsi_lowlevel.h
│   │   │   ├── exynos_pwm_bl.c
│   │   │   └── Makefile
│   │   ├── fonts
│   │   │   ├── ankacoder_c75_r.ttf
│   │   │   ├── cantoraone_regular.ttf
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── nimbus_sans_l_regular.ttf
│   │   │   └── rufscript010.ttf
│   │   ├── formike.c
│   │   ├── fsl_dcu_fb.c
│   │   ├── fsl_diu_fb.c
│   │   ├── hitachi_tx18d42vm_lcd.c
│   │   ├── hitachi_tx18d42vm_lcd.h
│   │   ├── i915_reg.h
│   │   ├── ipu_common.c
│   │   ├── ipu_disp.c
│   │   ├── ipu.h
│   │   ├── ipu_regs.h
│   │   ├── ivybridge_igd.c
│   │   ├── Kconfig
│   │   ├── ld9040.c
│   │   ├── lg4573.c
│   │   ├── Makefile
│   │   ├── mb862xx.c
│   │   ├── mvebu_lcd.c
│   │   ├── mx3fb.c
│   │   ├── mxcfb.h
│   │   ├── mxc_ipuv3_fb.c
│   │   ├── mxsfb.c
│   │   ├── omap3_dss.c
│   │   ├── panel-uclass.c
│   │   ├── pwm_backlight.c
│   │   ├── pxa_lcd.c
│   │   ├── rockchip
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   ├── rk3288_hdmi.c
│   │   │   ├── rk3288_mipi.c
│   │   │   ├── rk3288_vop.c
│   │   │   ├── rk3399_hdmi.c
│   │   │   ├── rk3399_mipi.c
│   │   │   ├── rk3399_vop.c
│   │   │   ├── rk_edp.c
│   │   │   ├── rk_hdmi.c
│   │   │   ├── rk_hdmi.h
│   │   │   ├── rk_lvds.c
│   │   │   ├── rk_mipi.c
│   │   │   ├── rk_mipi.h
│   │   │   ├── rk_vop.c
│   │   │   └── rk_vop.h
│   │   ├── s6e63d6.c
│   │   ├── s6e8ax0.c
│   │   ├── sandbox_sdl.c
│   │   ├── scf0403_lcd.c
│   │   ├── simplefb.c
│   │   ├── simple_panel.c
│   │   ├── ssd2828.c
│   │   ├── ssd2828.h
│   │   ├── stb_truetype.h
│   │   ├── stm32
│   │   │   ├── Kconfig
│   │   │   ├── Makefile
│   │   │   └── stm32_ltdc.c
│   │   ├── sunxi
│   │   │   ├── lcdc.c
│   │   │   ├── Makefile
│   │   │   ├── simplefb_common.c
│   │   │   ├── simplefb_common.h
│   │   │   ├── sunxi_de2.c
│   │   │   ├── sunxi_display.c
│   │   │   ├── sunxi_dw_hdmi.c
│   │   │   ├── sunxi_lcd.c
│   │   │   └── tve_common.c
│   │   ├── tegra124
│   │   │   ├── display.c
│   │   │   ├── displayport.h
│   │   │   ├── dp.c
│   │   │   ├── Makefile
│   │   │   ├── sor.c
│   │   │   └── sor.h
│   │   ├── tegra.c
│   │   ├── vesa.c
│   │   ├── vidconsole-uclass.c
│   │   ├── video_bmp.c
│   │   ├── videomodes.c
│   │   ├── videomodes.h
│   │   └── video-uclass.c
│   └── watchdog
│   ├── ast_wdt.c
│   ├── at91sam9_wdt.c
│   ├── bcm2835_wdt.c
│   ├── bcm6345_wdt.c
│   ├── designware_wdt.c
│   ├── ftwdt010_wdt.c
│   ├── imx_watchdog.c
│   ├── Kconfig
│   ├── Makefile
│   ├── omap_wdt.c
│   ├── orion_wdt.c
│   ├── s5p_wdt.c
│   ├── sandbox_wdt.c
│   ├── tangier_wdt.c
│   ├── ulp_wdog.c
│   ├── wdt-uclass.c
│   └── xilinx_tb_wdt.c
├── dts
│   ├── Kconfig
│   └── Makefile
├── env
│   ├── attr.c
│   ├── callback.c
│   ├── common.c
│   ├── eeprom.c
│   ├── embedded.c
│   ├── env.c
│   ├── ext4.c
│   ├── fat.c
│   ├── flags.c
│   ├── flash.c
│   ├── Kconfig
│   ├── Makefile
│   ├── mmc.c
│   ├── nand.c
│   ├── nowhere.c
│   ├── nvram.c
│   ├── onenand.c
│   ├── remote.c
│   ├── sata.c
│   ├── sf.c
│   └── ubi.c
├── examples
│   ├── api
│   │   ├── crt0.S
│   │   ├── demo.c
│   │   ├── glue.c
│   │   ├── glue.h
│   │   ├── libgenwrap.c
│   │   └── Makefile
│   ├── Makefile
│   └── standalone
│   ├── atmel_df_pow2.c
│   ├── hello_world.c
│   ├── Makefile
│   ├── mips64.lds
│   ├── mips.lds
│   ├── nds32.lds
│   ├── ppc_longjmp.S
│   ├── ppc_setjmp.S
│   ├── README.smc91111_eeprom
│   ├── sched.c
│   ├── smc91111_eeprom.c
│   ├── smc911x_eeprom.c
│   ├── sparc.lds
│   └── stubs.c
├── fs
│   ├── btrfs
│   │   ├── btrfs.c
│   │   ├── btrfs.h
│   │   ├── btrfs_tree.h
│   │   ├── chunk-map.c
│   │   ├── compression.c
│   │   ├── conv-funcs.h
│   │   ├── ctree.c
│   │   ├── ctree.h
│   │   ├── dev.c
│   │   ├── dir-item.c
│   │   ├── extent-io.c
│   │   ├── hash.c
│   │   ├── inode.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── root.c
│   │   ├── subvolume.c
│   │   └── super.c
│   ├── cbfs
│   │   ├── cbfs.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── cramfs
│   │   ├── cramfs.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   └── uncompress.c
│   ├── ext4
│   │   ├── crc16.c
│   │   ├── crc16.h
│   │   ├── dev.c
│   │   ├── ext4_common.c
│   │   ├── ext4_common.h
│   │   ├── ext4fs.c
│   │   ├── ext4_journal.c
│   │   ├── ext4_journal.h
│   │   ├── ext4_write.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── fat
│   │   ├── fat.c
│   │   ├── fat_write.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── fs.c
│   ├── fs_internal.c
│   ├── jffs2
│   │   ├── 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
│   │   ├── Kconfig
│   │   ├── LICENCE
│   │   ├── Makefile
│   │   ├── mergesort.c
│   │   ├── mini_inflate.c
│   │   └── summary.h
│   ├── Kconfig
│   ├── Makefile
│   ├── reiserfs
│   │   ├── dev.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── mode_string.c
│   │   ├── reiserfs.c
│   │   └── reiserfs_private.h
│   ├── sandbox
│   │   ├── Makefile
│   │   └── sandboxfs.c
│   ├── ubifs
│   │   ├── budget.c
│   │   ├── crc16.c
│   │   ├── crc16.h
│   │   ├── debug.c
│   │   ├── debug.h
│   │   ├── gc.c
│   │   ├── io.c
│   │   ├── Kconfig
│   │   ├── key.h
│   │   ├── log.c
│   │   ├── lprops.c
│   │   ├── lpt.c
│   │   ├── lpt_commit.c
│   │   ├── Makefile
│   │   ├── master.c
│   │   ├── misc.h
│   │   ├── orphan.c
│   │   ├── recovery.c
│   │   ├── replay.c
│   │   ├── sb.c
│   │   ├── scan.c
│   │   ├── super.c
│   │   ├── tnc.c
│   │   ├── tnc_misc.c
│   │   ├── ubifs.c
│   │   ├── ubifs.h
│   │   └── ubifs-media.h
│   ├── yaffs2
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── yaffs_allocator.c
│   │   ├── yaffs_allocator.h
│   │   ├── yaffs_attribs.c
│   │   ├── yaffs_attribs.h
│   │   ├── yaffs_bitmap.c
│   │   ├── yaffs_bitmap.h
│   │   ├── yaffscfg.h
│   │   ├── yaffs_checkptrw.c
│   │   ├── yaffs_checkptrw.h
│   │   ├── yaffs_ecc.c
│   │   ├── yaffs_ecc.h
│   │   ├── yaffs_error.c
│   │   ├── yaffs_flashif2.h
│   │   ├── yaffs_flashif.h
│   │   ├── yaffsfs.c
│   │   ├── yaffsfs.h
│   │   ├── yaffs_getblockinfo.h
│   │   ├── yaffs_guts.c
│   │   ├── yaffs_guts.h
│   │   ├── yaffs_mtdif2.c
│   │   ├── yaffs_mtdif2.h
│   │   ├── yaffs_mtdif.c
│   │   ├── yaffs_mtdif.h
│   │   ├── yaffs_nameval.c
│   │   ├── yaffs_nameval.h
│   │   ├── yaffs_nand.c
│   │   ├── yaffs_nandemul2k.h
│   │   ├── yaffs_nand.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
│   │   ├── ydirectenv.h
│   │   └── yportenv.h
│   └── zfs
│   ├── dev.c
│   ├── Makefile
│   ├── zfs.c
│   ├── zfs_fletcher.c
│   ├── zfs_lzjb.c
│   └── zfs_sha256.c
├── include
│   ├── ACEX1K.h
│   ├── adc.h
│   ├── addr_map.h
│   ├── ahci.h
│   ├── ali512x.h
│   ├── altera.h
│   ├── andestech
│   │   └── andes_pcu.h
│   ├── android_image.h
│   ├── ansi.h
│   ├── api.h
│   ├── api_public.h
│   ├── armcoremodule.h
│   ├── asm-generic
│   │   ├── atomic-long.h
│   │   ├── bitops
│   │   │   ├── __ffs.h
│   │   │   ├── fls64.h
│   │   │   ├── __fls.h
│   │   │   └── fls.h
│   │   ├── bitsperlong.h
│   │   ├── global_data.h
│   │   ├── gpio.h
│   │   ├── ioctl.h
│   │   ├── io.h
│   │   ├── sections.h
│   │   ├── signal.h
│   │   ├── u-boot.h
│   │   └── unaligned.h
│   ├── asm-offsets.h
│   ├── ata.h
│   ├── atf_common.h
│   ├── atmel_hlcdc.h
│   ├── atmel_lcdc.h
│   ├── atmel_lcd.h
│   ├── atmel_mci.h
│   ├── atsha204a-i2c.h
│   ├── autoboot.h
│   ├── axp152.h
│   ├── axp209.h
│   ├── axp221.h
│   ├── axp809.h
│   ├── axp818.h
│   ├── axp_pmic.h
│   ├── backlight.h
│   ├── bcd.h
│   ├── bedbug
│   │   ├── bedbug.h
│   │   ├── ppc.h
│   │   ├── regs.h
│   │   ├── tables.h
│   │   └── type.h
│   ├── bios_emul.h
│   ├── bitfield.h
│   ├── blk.h
│   ├── bmp_layout.h
│   ├── bootcount.h
│   ├── boot_fit.h
│   ├── bootm.h
│   ├── bootretry.h
│   ├── bootstage.h
│   ├── bouncebuf.h
│   ├── btrfs.h
│   ├── bus_vcxk.h
│   ├── bzlib.h
│   ├── cavium
│   │   ├── atf.h
│   │   ├── atf_part.h
│   │   └── thunderx_svc.h
│   ├── cbfs.h
│   ├── charset.h
│   ├── circbuf.h
│   ├── cli.h
│   ├── cli_hush.h
│   ├── clk.h
│   ├── clk-uclass.h
│   ├── cmd_spl.h
│   ├── command.h
│   ├── common.h
│   ├── common_timing_params.h
│   ├── commproc.h
│   ├── compiler.h
│   ├── config_defaults.h
│   ├── config_distro_bootcmd.h
│   ├── config_distro_defaults.h
│   ├── config_fallbacks.h
│   ├── config_fsl_chain_trust.h
│   ├── config_phylib_all_drivers.h
│   ├── configs
│   │   ├── 10m50_devboard.h
│   │   ├── 3c120_devboard.h
│   │   ├── adp-ae3xx.h
│   │   ├── adp-ag101p.h
│   │   ├── advantech_dms-ba16.h
│   │   ├── alt.h
│   │   ├── am335x_evm.h
│   │   ├── am335x_igep003x.h
│   │   ├── am335x_shc.h
│   │   ├── am335x_sl50.h
│   │   ├── am3517_crane.h
│   │   ├── am3517_evm.h
│   │   ├── am43xx_evm.h
│   │   ├── am57xx_evm.h
│   │   ├── amcore.h
│   │   ├── ap121.h
│   │   ├── ap143.h
│   │   ├── ap325rxa.h
│   │   ├── apalis_imx6.h
│   │   ├── apalis_t30.h
│   │   ├── apalis-tk1.h
│   │   ├── apf27.h
│   │   ├── ap_sh4a_4a.h
│   │   ├── apx4devkit.h
│   │   ├── aristainetos2b.h
│   │   ├── aristainetos2.h
│   │   ├── aristainetos-common.h
│   │   ├── aristainetos.h
│   │   ├── armadillo-800eva.h
│   │   ├── arndale.h
│   │   ├── aspeed-common.h
│   │   ├── aspenite.h
│   │   ├── astro_mcf5373l.h
│   │   ├── at91rm9200ek.h
│   │   ├── at91sam9260ek.h
│   │   ├── at91sam9261ek.h
│   │   ├── at91sam9263ek.h
│   │   ├── at91sam9m10g45ek.h
│   │   ├── at91sam9n12ek.h
│   │   ├── at91sam9rlek.h
│   │   ├── at91sam9x5ek.h
│   │   ├── at91-sama5_common.h
│   │   ├── axs10x.h
│   │   ├── B4860QDS.h
│   │   ├── baltos.h
│   │   ├── bav335x.h
│   │   ├── bayleybay.h
│   │   ├── bcm23550_w1d.h
│   │   ├── bcm28155_ap.h
│   │   ├── bcm_ep_board.h
│   │   ├── bcm_northstar2.h
│   │   ├── beaver.h
│   │   ├── bg0900.h
│   │   ├── bk4r1.h
│   │   ├── blanche.h
│   │   ├── bmips_bcm3380.h
│   │   ├── bmips_bcm63268.h
│   │   ├── bmips_bcm6328.h
│   │   ├── bmips_bcm6338.h
│   │   ├── bmips_bcm6348.h
│   │   ├── bmips_bcm6358.h
│   │   ├── bmips_common.h
│   │   ├── boston.h
│   │   ├── brppt1.h
│   │   ├── brxre1.h
│   │   ├── BSC9131RDB.h
│   │   ├── BSC9132QDS.h
│   │   ├── bur_am335x_common.h
│   │   ├── bur_cfg_common.h
│   │   ├── C29XPCIE.h
│   │   ├── calimain.h
│   │   ├── cardhu.h
│   │   ├── cei-tk1-som.h
│   │   ├── cgtqmx6eval.h
│   │   ├── cherryhill.h
│   │   ├── chiliboard.h
│   │   ├── chromebook_link.h
│   │   ├── chromebook_samus.h
│   │   ├── chromebox_panther.h
│   │   ├── clearfog.h
│   │   ├── cl-som-am57x.h
│   │   ├── cl-som-imx7.h
│   │   ├── cm_fx6.h
│   │   ├── cm_t335.h
│   │   ├── cm_t3517.h
│   │   ├── cm_t35.h
│   │   ├── cm_t43.h
│   │   ├── cm_t54.h
│   │   ├── cobra5272.h
│   │   ├── colibri_imx6.h
│   │   ├── colibri_imx7.h
│   │   ├── colibri_pxa270.h
│   │   ├── colibri_t20.h
│   │   ├── colibri_t30.h
│   │   ├── colibri_vf.h
│   │   ├── comtrend_ar5387un.h
│   │   ├── comtrend_ct5361.h
│   │   ├── comtrend_vr3032u.h
│   │   ├── conga-qeval20-qa3-e3845.h
│   │   ├── controlcenterdc.h
│   │   ├── controlcenterd.h
│   │   ├── corenet_ds.h
│   │   ├── corvus.h
│   │   ├── cougarcanyon2.h
│   │   ├── crownbay.h
│   │   ├── cyrus.h
│   │   ├── da850evm.h
│   │   ├── dalmore.h
│   │   ├── db-88f6720.h
│   │   ├── db-88f6820-amc.h
│   │   ├── db-88f6820-gp.h
│   │   ├── dbau1x00.h
│   │   ├── db-mv784mp-gp.h
│   │   ├── devkit3250.h
│   │   ├── devkit8000.h
│   │   ├── dfi-bt700.h
│   │   ├── dh_imx6.h
│   │   ├── display5.h
│   │   ├── dns325.h
│   │   ├── dockstar.h
│   │   ├── dra7xx_evm.h
│   │   ├── draco.h
│   │   ├── dragonboard410c.h
│   │   ├── dreamplug.h
│   │   ├── ds109.h
│   │   ├── ds414.h
│   │   ├── duovero.h
│   │   ├── e2220-1170.h
│   │   ├── ea20.h
│   │   ├── eb_cpu5282.h
│   │   ├── eco5pk.h
│   │   ├── ecovec.h
│   │   ├── edb93xx.h
│   │   ├── edison.h
│   │   ├── edminiv2.h
│   │   ├── efi-x86.h
│   │   ├── el6x_common.h
│   │   ├── embestmx6boards.h
│   │   ├── espresso7420.h
│   │   ├── espt.h
│   │   ├── etamin.h
│   │   ├── ethernut5.h
│   │   ├── evb_ast2500.h
│   │   ├── evb_px5.h
│   │   ├── evb_rk3036.h
│   │   ├── evb_rk3229.h
│   │   ├── evb_rk3288.h
│   │   ├── evb_rk3328.h
│   │   ├── evb_rk3399.h
│   │   ├── evb_rv1108.h
│   │   ├── exynos4-common.h
│   │   ├── exynos5250-common.h
│   │   ├── exynos5420-common.h
│   │   ├── exynos5-common.h
│   │   ├── exynos5-dt-common.h
│   │   ├── exynos7420-common.h
│   │   ├── exynos-common.h
│   │   ├── fennec_rk3288.h
│   │   ├── firefly-rk3288.h
│   │   ├── flea3.h
│   │   ├── galileo.h
│   │   ├── ge_bx50v3.h
│   │   ├── geekbox.h
│   │   ├── goflexhome.h
│   │   ├── gose.h
│   │   ├── gplugd.h
│   │   ├── guruplug.h
│   │   ├── gw_ventana.h
│   │   ├── h2200.h
│   │   ├── harmony.h
│   │   ├── highbank.h
│   │   ├── hikey.h
│   │   ├── hrcon.h
│   │   ├── hsdk.h
│   │   ├── huawei_hg556a.h
│   │   ├── ib62x0.h
│   │   ├── iconnect.h
│   │   ├── ids8313.h
│   │   ├── imgtec_xilfpga.h
│   │   ├── imx27lite-common.h
│   │   ├── imx31_phycore.h
│   │   ├── imx6-engicam.h
│   │   ├── imx6_logic.h
│   │   ├── imx6_spl.h
│   │   ├── imx7_spl.h
│   │   ├── integratorap.h
│   │   ├── integrator-common.h
│   │   ├── integratorcp.h
│   │   ├── ipam390.h
│   │   ├── itop4412.h
│   │   ├── jetson-tk1.h
│   │   ├── k2e_evm.h
│   │   ├── k2g_evm.h
│   │   ├── k2hk_evm.h
│   │   ├── k2l_evm.h
│   │   ├── kc1.h
│   │   ├── km
│   │   │   ├── keymile-common.h
│   │   │   ├── km8309-common.h
│   │   │   ├── km8321-common.h
│   │   │   ├── km83xx-common.h
│   │   │   ├── km_arm.h
│   │   │   ├── kmp204x-common.h
│   │   │   └── km-powerpc.h
│   │   ├── km8360.h
│   │   ├── km_kirkwood.h
│   │   ├── kmp204x.h
│   │   ├── koelsch.h
│   │   ├── kylin_rk3036.h
│   │   ├── kzm9g.h
│   │   ├── lacie_kw.h
│   │   ├── lager.h
│   │   ├── legoev3.h
│   │   ├── lion_rk3368.h
│   │   ├── liteboard.h
│   │   ├── ls1012a_common.h
│   │   ├── ls1012afrdm.h
│   │   ├── ls1012aqds.h
│   │   ├── ls1012ardb.h
│   │   ├── ls1021aiot.h
│   │   ├── ls1021aqds.h
│   │   ├── ls1021atwr.h
│   │   ├── ls1043a_common.h
│   │   ├── ls1043aqds.h
│   │   ├── ls1043ardb.h
│   │   ├── ls1046a_common.h
│   │   ├── ls1046aqds.h
│   │   ├── ls1046ardb.h
│   │   ├── ls1088a_common.h
│   │   ├── ls1088aqds.h
│   │   ├── ls1088ardb.h
│   │   ├── ls2080a_common.h
│   │   ├── ls2080a_emu.h
│   │   ├── ls2080aqds.h
│   │   ├── ls2080ardb.h
│   │   ├── ls2080a_simu.h
│   │   ├── lsxl.h
│   │   ├── m28evk.h
│   │   ├── M5208EVBE.h
│   │   ├── M52277EVB.h
│   │   ├── M5235EVB.h
│   │   ├── M5249EVB.h
│   │   ├── M5253DEMO.h
│   │   ├── M5253EVBE.h
│   │   ├── M5272C3.h
│   │   ├── M5275EVB.h
│   │   ├── M5282EVB.h
│   │   ├── M53017EVB.h
│   │   ├── M5329EVB.h
│   │   ├── M5373EVB.h
│   │   ├── m53evk.h
│   │   ├── M54418TWR.h
│   │   ├── M54451EVB.h
│   │   ├── M54455EVB.h
│   │   ├── M5475EVB.h
│   │   ├── M5485EVB.h
│   │   ├── ma5d4evk.h
│   │   ├── malta.h
│   │   ├── maxbcm.h
│   │   ├── mccmon6.h
│   │   ├── MCR3000.h
│   │   ├── mcx.h
│   │   ├── medcom-wide.h
│   │   ├── meesc.h
│   │   ├── meson-gxbb-common.h
│   │   ├── microblaze-generic.h
│   │   ├── MigoR.h
│   │   ├── minnowmax.h
│   │   ├── miqi_rk3288.h
│   │   ├── mpc8308_p1m.h
│   │   ├── MPC8308RDB.h
│   │   ├── MPC8313ERDB.h
│   │   ├── MPC8315ERDB.h
│   │   ├── MPC8323ERDB.h
│   │   ├── MPC832XEMDS.h
│   │   ├── MPC8349EMDS.h
│   │   ├── MPC8349ITX.h
│   │   ├── MPC837XEMDS.h
│   │   ├── MPC837XERDB.h
│   │   ├── MPC8536DS.h
│   │   ├── MPC8540ADS.h
│   │   ├── MPC8541CDS.h
│   │   ├── MPC8544DS.h
│   │   ├── MPC8548CDS.h
│   │   ├── MPC8555CDS.h
│   │   ├── MPC8560ADS.h
│   │   ├── MPC8568MDS.h
│   │   ├── MPC8569MDS.h
│   │   ├── MPC8572DS.h
│   │   ├── MPC8610HPCD.h
│   │   ├── MPC8641HPCN.h
│   │   ├── mpr2.h
│   │   ├── ms7720se.h
│   │   ├── ms7722se.h
│   │   ├── ms7750se.h
│   │   ├── mt_ventoux.h
│   │   ├── mv-common.h
│   │   ├── mvebu_armada-37xx.h
│   │   ├── mvebu_armada-8k.h
│   │   ├── mv-plug-common.h
│   │   ├── mx23evk.h
│   │   ├── mx23_olinuxino.h
│   │   ├── mx25pdk.h
│   │   ├── mx28evk.h
│   │   ├── mx31ads.h
│   │   ├── mx31pdk.h
│   │   ├── mx35pdk.h
│   │   ├── mx51evk.h
│   │   ├── mx53ard.h
│   │   ├── mx53cx9020.h
│   │   ├── mx53evk.h
│   │   ├── mx53loco.h
│   │   ├── mx53smd.h
│   │   ├── mx6_common.h
│   │   ├── mx6cuboxi.h
│   │   ├── mx6qarm2.h
│   │   ├── mx6sabreauto.h
│   │   ├── mx6sabre_common.h
│   │   ├── mx6sabresd.h
│   │   ├── mx6slevk.h
│   │   ├── mx6sllevk.h
│   │   ├── mx6sxsabreauto.h
│   │   ├── mx6sxsabresd.h
│   │   ├── mx6ul_14x14_evk.h
│   │   ├── mx6ullevk.h
│   │   ├── mx7_common.h
│   │   ├── mx7dsabresd.h
│   │   ├── mx7ulp_evk.h
│   │   ├── mxs.h
│   │   ├── nas220.h
│   │   ├── netgear_cg3100d.h
│   │   ├── nitrogen6x.h
│   │   ├── nokia_rx51.h
│   │   ├── novena.h
│   │   ├── nsa310s.h
│   │   ├── nsim.h
│   │   ├── nyan-big.h
│   │   ├── odroid-c2.h
│   │   ├── odroid.h
│   │   ├── odroid_xu3.h
│   │   ├── omap3_beagle.h
│   │   ├── omap3_cairo.h
│   │   ├── omap3_evm.h
│   │   ├── omap3_igep00x0.h
│   │   ├── omap3_logic.h
│   │   ├── omap3_overo.h
│   │   ├── omap3_pandora.h
│   │   ├── omap3_zoom1.h
│   │   ├── omap4_panda.h
│   │   ├── omap4_sdp4430.h
│   │   ├── omap5_uevm.h
│   │   ├── omapl138_lcdk.h
│   │   ├── openrd.h
│   │   ├── opos6uldev.h
│   │   ├── origen.h
│   │   ├── ot1200.h
│   │   ├── P1010RDB.h
│   │   ├── P1022DS.h
│   │   ├── P1023RDB.h
│   │   ├── p1_p2_rdb_pc.h
│   │   ├── p1_twr.h
│   │   ├── P2041RDB.h
│   │   ├── p2371-0000.h
│   │   ├── p2371-2180.h
│   │   ├── p2571.h
│   │   ├── p2771-0000.h
│   │   ├── P3041DS.h
│   │   ├── P4080DS.h
│   │   ├── P5020DS.h
│   │   ├── P5040DS.h
│   │   ├── paz00.h
│   │   ├── pb1x00.h
│   │   ├── pcm051.h
│   │   ├── pcm052.h
│   │   ├── pcm058.h
│   │   ├── peach-pi.h
│   │   ├── peach-pit.h
│   │   ├── pengwyn.h
│   │   ├── pepper.h
│   │   ├── pfla02.h
│   │   ├── phycore_rk3288.h
│   │   ├── pic32mzdask.h
│   │   ├── pico-imx6ul.h
│   │   ├── pico-imx7d.h
│   │   ├── picosam9g45.h
│   │   ├── platinum.h
│   │   ├── platinum_picon.h
│   │   ├── platinum_titanium.h
│   │   ├── plutux.h
│   │   ├── pm9261.h
│   │   ├── pm9263.h
│   │   ├── pm9g45.h
│   │   ├── pogo_e02.h
│   │   ├── poplar.h
│   │   ├── popmetal_rk3288.h
│   │   ├── porter.h
│   │   ├── puma_rk3399.h
│   │   ├── pxa-common.h
│   │   ├── pxm2.h
│   │   ├── qemu-arm.h
│   │   ├── qemu-mips64.h
│   │   ├── qemu-mips.h
│   │   ├── qemu-ppce500.h
│   │   ├── qemu-x86.h
│   │   ├── r0p7734.h
│   │   ├── r2dplus.h
│   │   ├── r7780mp.h
│   │   ├── rastaban.h
│   │   ├── rcar-gen2-common.h
│   │   ├── rcar-gen3-common.h
│   │   ├── rk3036_common.h
│   │   ├── rk3188_common.h
│   │   ├── rk322x_common.h
│   │   ├── rk3288_common.h
│   │   ├── rk3328_common.h
│   │   ├── rk3368_common.h
│   │   ├── rk3399_common.h
│   │   ├── rock2.h
│   │   ├── rockchip-common.h
│   │   ├── rock.h
│   │   ├── rpi.h
│   │   ├── rsk7203.h
│   │   ├── rsk7264.h
│   │   ├── rsk7269.h
│   │   ├── rut.h
│   │   ├── rv1108_common.h
│   │   ├── s32v234evb.h
│   │   ├── s5pc210_universal.h
│   │   ├── s5p_goni.h
│   │   ├── sagem_f@st1704.h
│   │   ├── salvator-x.h
│   │   ├── sama5d27_som1_ek.h
│   │   ├── sama5d2_ptc.h
│   │   ├── sama5d2_xplained.h
│   │   ├── sama5d3xek.h
│   │   ├── sama5d3_xplained.h
│   │   ├── sama5d4ek.h
│   │   ├── sama5d4_xplained.h
│   │   ├── sandbox.h
│   │   ├── sandbox_spl.h
│   │   ├── sansa_fuze_plus.h
│   │   ├── sbc8349.h
│   │   ├── sbc8548.h
│   │   ├── sbc8641d.h
│   │   ├── sc_sps_1.h
│   │   ├── seaboard.h
│   │   ├── secomx6quq7.h
│   │   ├── sfr_nb4_ser.h
│   │   ├── sh7752evb.h
│   │   ├── sh7753evb.h
│   │   ├── sh7757lcr.h
│   │   ├── sh7763rdp.h
│   │   ├── sh7785lcr.h
│   │   ├── sheep_rk3368.h
│   │   ├── sheevaplug.h
│   │   ├── shmin.h
│   │   ├── siemens-am33x-common.h
│   │   ├── silk.h
│   │   ├── smartweb.h
│   │   ├── smdk5250.h
│   │   ├── smdk5420.h
│   │   ├── smdkc100.h
│   │   ├── smdkv310.h
│   │   ├── snapper9260.h
│   │   ├── snapper9g45.h
│   │   ├── sniper.h
│   │   ├── snow.h
│   │   ├── socfpga_arria10_socdk.h
│   │   ├── socfpga_arria5_socdk.h
│   │   ├── socfpga_common.h
│   │   ├── socfpga_cyclone5_socdk.h
│   │   ├── socfpga_de0_nano_soc.h
│   │   ├── socfpga_de10_nano.h
│   │   ├── socfpga_de1_soc.h
│   │   ├── socfpga_is1.h
│   │   ├── socfpga_mcvevk.h
│   │   ├── socfpga_sockit.h
│   │   ├── socfpga_socrates.h
│   │   ├── socfpga_sr1500.h
│   │   ├── socfpga_vining_fpga.h
│   │   ├── socrates.h
│   │   ├── som-6896.h
│   │   ├── som-db5800-som-6867.h
│   │   ├── spear3xx_evb.h
│   │   ├── spear6xx_evb.h
│   │   ├── spear-common.h
│   │   ├── spring.h
│   │   ├── stih410-b2260.h
│   │   ├── stm32f429-discovery.h
│   │   ├── stm32f746-disco.h
│   │   ├── stm32h743-disco.h
│   │   ├── stm32h743-eval.h
│   │   ├── stmark2.h
│   │   ├── stout.h
│   │   ├── strider.h
│   │   ├── stv0991.h
│   │   ├── sun4i.h
│   │   ├── sun50i.h
│   │   ├── sun5i.h
│   │   ├── sun6i.h
│   │   ├── sun7i.h
│   │   ├── sun8i.h
│   │   ├── sun9i.h
│   │   ├── sunxi-common.h
│   │   ├── suvd3.h
│   │   ├── T102xQDS.h
│   │   ├── T102xRDB.h
│   │   ├── T1040QDS.h
│   │   ├── T104xRDB.h
│   │   ├── T208xQDS.h
│   │   ├── T208xRDB.h
│   │   ├── T4240QDS.h
│   │   ├── T4240RDB.h
│   │   ├── t4qds.h
│   │   ├── tam3517-common.h
│   │   ├── tao3530.h
│   │   ├── taurus.h
│   │   ├── tb100.h
│   │   ├── tbs2910.h
│   │   ├── tec.h
│   │   ├── tec-ng.h
│   │   ├── tegra114-common.h
│   │   ├── tegra124-common.h
│   │   ├── tegra186-common.h
│   │   ├── tegra20-common.h
│   │   ├── tegra210-common.h
│   │   ├── tegra30-common.h
│   │   ├── tegra-common.h
│   │   ├── tegra-common-post.h
│   │   ├── tegra-common-usb-gadget.h
│   │   ├── theadorable.h
│   │   ├── theadorable-x86-common.h
│   │   ├── theadorable-x86-conga-qa3-e3845.h
│   │   ├── theadorable-x86-dfi-bt700.h
│   │   ├── thuban.h
│   │   ├── thunderx_88xx.h
│   │   ├── ti814x_evm.h
│   │   ├── ti816x_evm.h
│   │   ├── ti_am335x_common.h
│   │   ├── ti_armv7_common.h
│   │   ├── ti_armv7_keystone2.h
│   │   ├── ti_armv7_omap.h
│   │   ├── tinker_rk3288.h
│   │   ├── ti_omap3_common.h
│   │   ├── ti_omap4_common.h
│   │   ├── ti_omap5_common.h
│   │   ├── titanium.h
│   │   ├── topic_miami.h
│   │   ├── tplink_wdr4300.h
│   │   ├── TQM834x.h
│   │   ├── tqma6.h
│   │   ├── tqma6_mba6.h
│   │   ├── tqma6_wru4.h
│   │   ├── trats2.h
│   │   ├── trats.h
│   │   ├── tricorder.h
│   │   ├── trimslice.h
│   │   ├── ts4600.h
│   │   ├── ts4800.h
│   │   ├── turris_omnia.h
│   │   ├── tuxx1.h
│   │   ├── twister.h
│   │   ├── UCP1020.h
│   │   ├── udoo.h
│   │   ├── udoo_neo.h
│   │   ├── ulcb.h
│   │   ├── uniphier.h
│   │   ├── usb_a9263.h
│   │   ├── usbarmory.h
│   │   ├── vct.h
│   │   ├── ve8313.h
│   │   ├── venice2.h
│   │   ├── ventana.h
│   │   ├── vexpress_aemv8a.h
│   │   ├── vexpress_ca15_tc2.h
│   │   ├── vexpress_ca5x2.h
│   │   ├── vexpress_ca9x4.h
│   │   ├── vexpress_common.h
│   │   ├── veyron.h
│   │   ├── vf610twr.h
│   │   ├── vinco.h
│   │   ├── vining_2000.h
│   │   ├── vme8349.h
│   │   ├── vyasa-rk3288.h
│   │   ├── wandboard.h
│   │   ├── warp7.h
│   │   ├── warp.h
│   │   ├── woodburn_common.h
│   │   ├── woodburn.h
│   │   ├── woodburn_sd.h
│   │   ├── work_92105.h
│   │   ├── x600.h
│   │   ├── x86-chromebook.h
│   │   ├── x86-common.h
│   │   ├── xfi3.h
│   │   ├── xilinx_zynqmp_ep.h
│   │   ├── xilinx_zynqmp.h
│   │   ├── xilinx_zynqmp_zc1751_xm015_dc1.h
│   │   ├── xilinx_zynqmp_zc1751_xm016_dc2.h
│   │   ├── xilinx_zynqmp_zc1751_xm019_dc5.h
│   │   ├── xilinx_zynqmp_zcu102.h
│   │   ├── xpedite517x.h
│   │   ├── xpedite520x.h
│   │   ├── xpedite537x.h
│   │   ├── xpedite550x.h
│   │   ├── xpress.h
│   │   ├── xtfpga.h
│   │   ├── zc5202.h
│   │   ├── zc5601.h
│   │   ├── zipitz2.h
│   │   ├── zmx25.h
│   │   ├── zynq-common.h
│   │   ├── zynq_zc70x.h
│   │   └── zynq_zybo.h
│   ├── config_uncmd_spl.h
│   ├── console.h
│   ├── cortina.h
│   ├── cpsw.h
│   ├── cpu.h
│   ├── cramfs
│   │   └── cramfs_fs.h
│   ├── crc.h
│   ├── cros_ec.h
│   ├── cros_ec_message.h
│   ├── ddr_spd.h
│   ├── debug_uart.h
│   ├── dfu.h
│   ├── dialog_pmic.h
│   ├── display.h
│   ├── display_options.h
│   ├── div64.h
│   ├── dm
│   │   ├── device.h
│   │   ├── device-internal.h
│   │   ├── fdtaddr.h
│   │   ├── lists.h
│   │   ├── of_access.h
│   │   ├── of_addr.h
│   │   ├── of_extra.h
│   │   ├── of.h
│   │   ├── ofnode.h
│   │   ├── pinctrl.h
│   │   ├── platdata.h
│   │   ├── platform_data
│   │   │   ├── lpc32xx_hsuart.h
│   │   │   ├── net_ethoc.h
│   │   │   ├── serial_bcm283x_mu.h
│   │   │   ├── serial_coldfire.h
│   │   │   ├── serial_mxc.h
│   │   │   ├── serial_pl01x.h
│   │   │   ├── serial_pxa.h
│   │   │   ├── serial_sh.h
│   │   │   └── serial_stm32.h
│   │   ├── read.h
│   │   ├── root.h
│   │   ├── test.h
│   │   ├── uclass.h
│   │   ├── uclass-id.h
│   │   ├── uclass-internal.h
│   │   └── util.h
│   ├── dm9000.h
│   ├── dma.h
│   ├── dm-demo.h
│   ├── dm.h
│   ├── dp83848.h
│   ├── ds1722.h
│   ├── dt-bindings
│   │   ├── clk
│   │   │   └── ti-dra7-atl.h
│   │   ├── clock
│   │   │   ├── ast2500-scu.h
│   │   │   ├── at91.h
│   │   │   ├── bcm2835-aux.h
│   │   │   ├── bcm2835.h
│   │   │   ├── bcm3380-clock.h
│   │   │   ├── bcm63268-clock.h
│   │   │   ├── bcm6328-clock.h
│   │   │   ├── bcm6338-clock.h
│   │   │   ├── bcm6348-clock.h
│   │   │   ├── bcm6358-clock.h
│   │   │   ├── boston-clock.h
│   │   │   ├── exynos7420-clk.h
│   │   │   ├── gxbb-aoclkc.h
│   │   │   ├── gxbb-clkc.h
│   │   │   ├── hi6220-clock.h
│   │   │   ├── histb-clock.h
│   │   │   ├── imx5-clock.h
│   │   │   ├── imx6qdl-clock.h
│   │   │   ├── imx6sl-clock.h
│   │   │   ├── imx6sll-clock.h
│   │   │   ├── imx6sx-clock.h
│   │   │   ├── imx6ul-clock.h
│   │   │   ├── imx7d-clock.h
│   │   │   ├── imx7ulp-clock.h
│   │   │   ├── maxim,max77802.h
│   │   │   ├── microchip,clock.h
│   │   │   ├── r8a7795-cpg-mssr.h
│   │   │   ├── r8a7796-cpg-mssr.h
│   │   │   ├── renesas-cpg-mssr.h
│   │   │   ├── rk3036-cru.h
│   │   │   ├── rk3066a-cru.h
│   │   │   ├── rk3188-cru-common.h
│   │   │   ├── rk3188-cru.h
│   │   │   ├── rk3228-cru.h
│   │   │   ├── rk3288-cru.h
│   │   │   ├── rk3328-cru.h
│   │   │   ├── rk3368-cru.h
│   │   │   ├── rk3399-cru.h
│   │   │   ├── rockchip,rk808.h
│   │   │   ├── rv1108-cru.h
│   │   │   ├── stih407-clks.h
│   │   │   ├── stih410-clks.h
│   │   │   ├── stm32fx-clock.h
│   │   │   ├── stm32h7-clks.h
│   │   │   ├── sun4i-a10-pll2.h
│   │   │   ├── sun50i-a64-ccu.h
│   │   │   ├── sun8i-a23-a33-ccu.h
│   │   │   ├── sun8i-h3-ccu.h
│   │   │   ├── sun8i-v3s-ccu.h
│   │   │   ├── tegra114-car.h
│   │   │   ├── tegra124-car-common.h
│   │   │   ├── tegra124-car.h
│   │   │   ├── tegra186-clock.h
│   │   │   ├── tegra20-car.h
│   │   │   ├── tegra210-car.h
│   │   │   └── tegra30-car.h
│   │   ├── comphy
│   │   │   └── comphy_data.h
│   │   ├── dma
│   │   │   ├── at91.h
│   │   │   └── sun4i-a10.h
│   │   ├── gpio
│   │   │   ├── gpio.h
│   │   │   ├── meson-gxbb-gpio.h
│   │   │   ├── tegra186-gpio.h
│   │   │   ├── tegra-gpio.h
│   │   │   └── x86-gpio.h
│   │   ├── input
│   │   │   ├── input.h
│   │   │   └── linux-event-codes.h
│   │   ├── interrupt-controller
│   │   │   ├── arm-gic.h
│   │   │   ├── irq.h
│   │   │   ├── irq-st.h
│   │   │   └── mips-gic.h
│   │   ├── interrupt-router
│   │   │   └── intel-irq.h
│   │   ├── mailbox
│   │   │   └── tegra186-hsp.h
│   │   ├── media
│   │   │   └── omap3-isp.h
│   │   ├── memory
│   │   │   ├── rk3368-dmc.h
│   │   │   ├── stm32-sdram.h
│   │   │   ├── tegra114-mc.h
│   │   │   ├── tegra124-mc.h
│   │   │   ├── tegra210-mc.h
│   │   │   └── tegra30-mc.h
│   │   ├── mfd
│   │   │   ├── st-lpc.h
│   │   │   ├── stm32f7-rcc.h
│   │   │   └── stm32h7-rcc.h
│   │   ├── mrc
│   │   │   └── quark.h
│   │   ├── net
│   │   │   └── ti-dp83867.h
│   │   ├── phy
│   │   │   └── phy.h
│   │   ├── pinctrl
│   │   │   ├── am33xx.h
│   │   │   ├── am43xx.h
│   │   │   ├── at91.h
│   │   │   ├── bcm2835.h
│   │   │   ├── dra.h
│   │   │   ├── omap.h
│   │   │   ├── pinctrl-tegra.h
│   │   │   ├── pinctrl-tegra-xusb.h
│   │   │   ├── rockchip.h
│   │   │   ├── stm32f746-pinfunc.h
│   │   │   ├── stm32h7-pinfunc.h
│   │   │   └── sun4i-a10.h
│   │   ├── pmic
│   │   │   └── sandbox_pmic.h
│   │   ├── power
│   │   │   ├── r8a7795-sysc.h
│   │   │   ├── r8a7796-sysc.h
│   │   │   ├── raspberrypi-power.h
│   │   │   ├── rk3399-power.h
│   │   │   └── tegra186-powergate.h
│   │   ├── power-domain
│   │   │   ├── bcm63268-power-domain.h
│   │   │   ├── bcm6328-power-domain.h
│   │   │   └── rk3288.h
│   │   ├── pwm
│   │   │   └── pwm.h
│   │   ├── regulator
│   │   │   └── maxim,max77802.h
│   │   ├── reset
│   │   │   ├── altr,rst-mgr-a10.h
│   │   │   ├── altr,rst-mgr.h
│   │   │   ├── amlogic,meson-gxbb-reset.h
│   │   │   ├── ast2500-reset.h
│   │   │   ├── bcm3380-reset.h
│   │   │   ├── bcm63268-reset.h
│   │   │   ├── bcm6328-reset.h
│   │   │   ├── bcm6338-reset.h
│   │   │   ├── bcm6348-reset.h
│   │   │   ├── bcm6358-reset.h
│   │   │   ├── gxbb-aoclkc.h
│   │   │   ├── stih407-resets.h
│   │   │   ├── sun50i-a64-ccu.h
│   │   │   ├── sun8i-a23-a33-ccu.h
│   │   │   ├── sun8i-h3-ccu.h
│   │   │   ├── sun8i-v3s-ccu.h
│   │   │   ├── tegra124-car.h
│   │   │   ├── tegra186-reset.h
│   │   │   └── ti-syscon.h
│   │   ├── sound
│   │   │   └── tlv320aic31xx-micbias.h
│   │   ├── thermal
│   │   │   ├── tegra124-soctherm.h
│   │   │   └── thermal.h
│   │   └── video
│   │   └── rk3288.h
│   ├── dt-structs.h
│   ├── dwc3-omap-uboot.h
│   ├── dwc3-sti-glue.h
│   ├── dwc3-uboot.h
│   ├── dwc_ahsata.h
│   ├── dw_hdmi.h
│   ├── dwmmc.h
│   ├── e500.h
│   ├── ec_commands.h
│   ├── edid.h
│   ├── eeprom_field.h
│   ├── eeprom_layout.h
│   ├── efi_api.h
│   ├── efi.h
│   ├── efi_loader.h
│   ├── efi_selftest.h
│   ├── elf.h
│   ├── env_attr.h
│   ├── env_callback.h
│   ├── env_default.h
│   ├── env_flags.h
│   ├── environment
│   │   └── ti
│   │   ├── boot.h
│   │   ├── dfu.h
│   │   ├── mmc.h
│   │   └── spi.h
│   ├── environment.h
│   ├── errno.h
│   ├── ethsw.h
│   ├── _exports.h
│   ├── exports.h
│   ├── ext4fs.h
│   ├── ext_common.h
│   ├── exynos_lcd.h
│   ├── faraday
│   │   ├── ftahbc020s.h
│   │   ├── ftpci100.h
│   │   ├── ftpmu010.h
│   │   ├── ftsdc010.h
│   │   ├── ftsdmc020.h
│   │   ├── ftsdmc021.h
│   │   ├── ftsmc020.h
│   │   ├── fttmr010.h
│   │   └── ftwdt010_wdt.h
│   ├── fastboot.h
│   ├── fat.h
│   ├── fb_mmc.h
│   ├── fb_nand.h
│   ├── fdtdec.h
│   ├── fdt.h
│   ├── fdt_simplefb.h
│   ├── fdt_support.h
│   ├── fis.h
│   ├── flash.h
│   ├── fm_eth.h
│   ├── fpga.h
│   ├── fs.h
│   ├── fs_internal.h
│   ├── fsl_csu.h
│   ├── fsl_dcu_fb.h
│   ├── fsl_ddrc_version.h
│   ├── fsl_ddr_dimm_params.h
│   ├── fsl_ddr.h
│   ├── fsl_ddr_sdram.h
│   ├── fsl_devdis.h
│   ├── fsl_diu_fb.h
│   ├── fsl_dspi.h
│   ├── fsl_dtsec.h
│   ├── fsl_errata.h
│   ├── fsl_esdhc.h
│   ├── fsl_fman.h
│   ├── fsl_ifc.h
│   ├── fsl_immap.h
│   ├── fsl_lpuart.h
│   ├── fsl-mc
│   │   ├── fsl_dpaa_fd.h
│   │   ├── fsl_dpbp.h
│   │   ├── fsl_dpio.h
│   │   ├── fsl_dpmac.h
│   │   ├── fsl_dpmng.h
│   │   ├── fsl_dpni.h
│   │   ├── fsl_dprc.h
│   │   ├── fsl_mc_cmd.h
│   │   ├── fsl_mc.h
│   │   ├── fsl_mc_private.h
│   │   ├── fsl_mc_sys.h
│   │   ├── fsl_qbman_base.h
│   │   ├── fsl_qbman_portal.h
│   │   └── ldpaa_wriop.h
│   ├── fsl_mdio.h
│   ├── fsl_memac.h
│   ├── fsl_mmdc.h
│   ├── fsl_pmic.h
│   ├── fsl_qe.h
│   ├── fsl_secboot_err.h
│   ├── fsl_sec.h
│   ├── fsl_sec_mon.h
│   ├── fsl_sfp.h
│   ├── fsl_tgec.h
│   ├── fsl_usb.h
│   ├── fsl_validate.h
│   ├── fsl_wdog.h
│   ├── fuse.h
│   ├── g_dnl.h
│   ├── gdsys_fpga.h
│   ├── generic-phy.h
│   ├── gt64120.h
│   ├── hash.h
│   ├── hwconfig.h
│   ├── hw_sha.h
│   ├── i2c_eeprom.h
│   ├── i2c.h
│   ├── i2s.h
│   ├── i8042.h
│   ├── ide.h
│   ├── image.h
│   ├── image-sparse.h
│   ├── imximage.h
│   ├── imx_thermal.h
│   ├── initcall.h
│   ├── init_helpers.h
│   ├── input.h
│   ├── inttypes.h
│   ├── iomux.h
│   ├── ioports.h
│   ├── iotrace.h
│   ├── ipu_pixfmt.h
│   ├── jffs2
│   │   ├── compr_rubin.h
│   │   ├── jffs2_1pass.h
│   │   ├── jffs2.h
│   │   ├── load_kernel.h
│   │   └── mini_inflate.h
│   ├── keyboard.h
│   ├── key_matrix.h
│   ├── kgdb.h
│   ├── lattice.h
│   ├── lcd_console.h
│   ├── lcd.h
│   ├── lcdvideo.h
│   ├── ld9040.h
│   ├── led-display.h
│   ├── led.h
│   ├── libata.h
│   ├── libfdt_env.h
│   ├── libfdt.h
│   ├── libtizen.h
│   ├── linker_lists.h
│   ├── linux
│   │   ├── apm_bios.h
│   │   ├── arm-smccc.h
│   │   ├── bch.h
│   │   ├── bitfield.h
│   │   ├── bitops.h
│   │   ├── bitrev.h
│   │   ├── bug.h
│   │   ├── build_bug.h
│   │   ├── byteorder
│   │   │   ├── big_endian.h
│   │   │   ├── generic.h
│   │   │   ├── little_endian.h
│   │   │   └── swab.h
│   │   ├── compat.h
│   │   ├── compiler-clang.h
│   │   ├── compiler-gcc.h
│   │   ├── compiler.h
│   │   ├── compiler-intel.h
│   │   ├── crc32.h
│   │   ├── crc7.h
│   │   ├── crc8.h
│   │   ├── ctype.h
│   │   ├── delay.h
│   │   ├── dma-direction.h
│   │   ├── drm_dp_helper.h
│   │   ├── edd.h
│   │   ├── err.h
│   │   ├── errno.h
│   │   ├── ethtool.h
│   │   ├── fb.h
│   │   ├── immap_qe.h
│   │   ├── input.h
│   │   ├── ioctl.h
│   │   ├── io.h
│   │   ├── iopoll.h
│   │   ├── ioport.h
│   │   ├── kbuild.h
│   │   ├── kconfig.h
│   │   ├── kernel.h
│   │   ├── linkage.h
│   │   ├── linux_string.h
│   │   ├── list.h
│   │   ├── list_sort.h
│   │   ├── log2.h
│   │   ├── lzo.h
│   │   ├── math64.h
│   │   ├── mbus.h
│   │   ├── mc146818rtc.h
│   │   ├── mdio.h
│   │   ├── mii.h
│   │   ├── mtd
│   │   │   ├── bbm.h
│   │   │   ├── concat.h
│   │   │   ├── doc2000.h
│   │   │   ├── flashchip.h
│   │   │   ├── fsl_upm.h
│   │   │   ├── fsmc_nand.h
│   │   │   ├── mtd.h
│   │   │   ├── nand_bch.h
│   │   │   ├── nand_ecc.h
│   │   │   ├── nand.h
│   │   │   ├── ndfc.h
│   │   │   ├── omap_elm.h
│   │   │   ├── omap_gpmc.h
│   │   │   ├── onenand.h
│   │   │   ├── onenand_regs.h
│   │   │   ├── partitions.h
│   │   │   ├── samsung_onenand.h
│   │   │   ├── st_smi.h
│   │   │   └── ubi.h
│   │   ├── netdevice.h
│   │   ├── poison.h
│   │   ├── posix_types.h
│   │   ├── printk.h
│   │   ├── psci.h
│   │   ├── rbtree_augmented.h
│   │   ├── rbtree.h
│   │   ├── screen_info.h
│   │   ├── serial_reg.h
│   │   ├── sizes.h
│   │   ├── stat.h
│   │   ├── stddef.h
│   │   ├── string.h
│   │   ├── stringify.h
│   │   ├── time.h
│   │   ├── typecheck.h
│   │   ├── types.h
│   │   ├── unaligned
│   │   │   ├── access_ok.h
│   │   │   ├── be_byteshift.h
│   │   │   ├── generic.h
│   │   │   └── le_byteshift.h
│   │   └── usb
│   │   ├── at91_udc.h
│   │   ├── atmel_usba_udc.h
│   │   ├── cdc.h
│   │   ├── ch9.h
│   │   ├── composite.h
│   │   ├── dwc3.h
│   │   ├── dwc3-omap.h
│   │   ├── gadget.h
│   │   ├── musb.h
│   │   ├── otg.h
│   │   ├── xhci-fsl.h
│   │   └── xhci-omap.h
│   ├── linux_logo.h
│   ├── lmb.h
│   ├── logbuff.h
│   ├── lxt971a.h
│   ├── lynxkdi.h
│   ├── lzma
│   │   ├── LzmaDec.h
│   │   ├── LzmaTools.h
│   │   └── LzmaTypes.h
│   ├── mailbox.h
│   ├── mailbox-uclass.h
│   ├── malloc.h
│   ├── mapmem.h
│   ├── mb862xx.h
│   ├── mc13783.h
│   ├── mc13892.h
│   ├── mc34704.h
│   ├── mc9sdz60.h
│   ├── MCD_dma.h
│   ├── MCD_progCheck.h
│   ├── MCD_tasksInit.h
│   ├── memalign.h
│   ├── membuff.h
│   ├── menu.h
│   ├── micrel.h
│   ├── mii_phy.h
│   ├── miiphy.h
│   ├── mipi_display.h
│   ├── misc.h
│   ├── mk48t59.h
│   ├── mmc.h
│   ├── mpc106.h
│   ├── mpc83xx.h
│   ├── mpc85xx.h
│   ├── mpc86xx.h
│   ├── mpc8xx.h
│   ├── mpc8xx_irq.h
│   ├── msc01.h
│   ├── mtd
│   │   ├── cfi_flash.h
│   │   ├── mtd-abi.h
│   │   └── ubi-user.h
│   ├── mtd.h
│   ├── mtd_node.h
│   ├── mv88e6352.h
│   ├── mvebu_mmc.h
│   ├── mvmfp.h
│   ├── nand.h
│   ├── net
│   │   └── tftp.h
│   ├── netdev.h
│   ├── net.h
│   ├── ns16550.h
│   ├── ns87308.h
│   ├── nuvoton_nct6102d.h
│   ├── nvme.h
│   ├── of_live.h
│   ├── onenand_uboot.h
│   ├── os.h
│   ├── palmas.h
│   ├── panel.h
│   ├── part_efi.h
│   ├── part.h
│   ├── pca953x.h
│   ├── pca9564.h
│   ├── pca9698.h
│   ├── pch.h
│   ├── pci_gt64120.h
│   ├── pci.h
│   ├── pci_ids.h
│   ├── pci_msc01.h
│   ├── pci_rom.h
│   ├── pc_keyb.h
│   ├── pcmcia
│   │   └── yenta.h
│   ├── pcmcia.h
│   ├── pe.h
│   ├── phy.h
│   ├── phys2bus.h
│   ├── physmem.h
│   ├── post.h
│   ├── power
│   │   ├── act8846_pmic.h
│   │   ├── as3722.h
│   │   ├── battery.h
│   │   ├── fg_battery_cell_params.h
│   │   ├── hi6553_pmic.h
│   │   ├── lp873x.h
│   │   ├── lp87565.h
│   │   ├── ltc3676_pmic.h
│   │   ├── max17042_fg.h
│   │   ├── max77686_pmic.h
│   │   ├── max77693_fg.h
│   │   ├── max77693_muic.h
│   │   ├── max77693_pmic.h
│   │   ├── max77696_pmic.h
│   │   ├── max8997_muic.h
│   │   ├── max8997_pmic.h
│   │   ├── max8998_pmic.h
│   │   ├── mc34vr500_pmic.h
│   │   ├── palmas.h
│   │   ├── pfuze100_pmic.h
│   │   ├── pfuze3000_pmic.h
│   │   ├── pmic.h
│   │   ├── power_chrg.h
│   │   ├── regulator.h
│   │   ├── rk8xx_pmic.h
│   │   ├── rn5t567_pmic.h
│   │   ├── s2mps11.h
│   │   ├── s5m8767.h
│   │   ├── sandbox_pmic.h
│   │   ├── tps62362.h
│   │   ├── tps65090.h
│   │   ├── tps65217.h
│   │   ├── tps65218.h
│   │   └── tps65910.h
│   ├── power-domain.h
│   ├── power-domain-uclass.h
│   ├── ppc_asm.tmpl
│   ├── ppc_defs.h
│   ├── ps2mult.h
│   ├── pwm.h
│   ├── pwrseq.h
│   ├── pxa_lcd.h
│   ├── qfw.h
│   ├── radeon.h
│   ├── ram.h
│   ├── rc4.h
│   ├── regmap.h
│   ├── reiserfs.h
│   ├── relocate.h
│   ├── remoteproc.h
│   ├── reset.h
│   ├── reset-uclass.h
│   ├── rtc_def.h
│   ├── rtc.h
│   ├── s6e63d6.h
│   ├── SA-1100.h
│   ├── samsung
│   │   ├── exynos5-dt-types.h
│   │   └── misc.h
│   ├── samsung-usb-phy-uboot.h
│   ├── sandbox-adc.h
│   ├── sandboxblockdev.h
│   ├── sandboxfs.h
│   ├── sata.h
│   ├── scf0403_lcd.h
│   ├── scsi.h
│   ├── sdhci.h
│   ├── sdp.h
│   ├── search.h
│   ├── serial.h
│   ├── sh_pfc.h
│   ├── sh_tmu.h
│   ├── sja1000.h
│   ├── slre.h
│   ├── smbios.h
│   ├── smsc_lpc47m.h
│   ├── smsc_sio1007.h
│   ├── sound.h
│   ├── sparse_defs.h
│   ├── sparse_format.h
│   ├── spartan2.h
│   ├── spartan3.h
│   ├── spd.h
│   ├── spd_sdram.h
│   ├── spi_flash.h
│   ├── spi.h
│   ├── splash.h
│   ├── spl.h
│   ├── spmi
│   │   └── spmi.h
│   ├── s_record.h
│   ├── status_led.h
│   ├── stdio_dev.h
│   ├── stdio.h
│   ├── stdlib.h
│   ├── stratixII.h
│   ├── sy8106a.h
│   ├── sym53c8xx.h
│   ├── synopsys
│   │   └── dwcddr21mctl.h
│   ├── syscon.h
│   ├── sysreset.h
│   ├── tables_csum.h
│   ├── tca642x.h
│   ├── tee
│   │   └── optee.h
│   ├── tegra-kbc.h
│   ├── test
│   │   ├── env.h
│   │   ├── overlay.h
│   │   ├── suites.h
│   │   ├── test.h
│   │   └── ut.h
│   ├── thermal.h
│   ├── thor.h
│   ├── time.h
│   ├── timer.h
│   ├── timestamp.h
│   ├── ti-usb-phy-uboot.h
│   ├── tmu.h
│   ├── tpm.h
│   ├── tps6586x.h
│   ├── trace.h
│   ├── tsec.h
│   ├── tsi108.h
│   ├── tsi148.h
│   ├── twl4030.h
│   ├── twl6030.h
│   ├── ubifs_uboot.h
│   ├── ubispl.h
│   ├── ubi_uboot.h
│   ├── u-boot
│   │   ├── crc.h
│   │   ├── md5.h
│   │   ├── rsa-checksum.h
│   │   ├── rsa.h
│   │   ├── rsa-mod-exp.h
│   │   ├── sha1.h
│   │   ├── sha256.h
│   │   ├── u-boot.lds.h
│   │   ├── variadic-macro.h
│   │   └── zlib.h
│   ├── uboot_aes.h
│   ├── universe.h
│   ├── usb
│   │   ├── ci_udc.h
│   │   ├── designware_udc.h
│   │   ├── dwc2_udc.h
│   │   ├── ehci-ci.h
│   │   ├── fotg210.h
│   │   ├── fusbh200.h
│   │   ├── lin_gadget_compat.h
│   │   ├── pxa27x_udc.h
│   │   ├── udc.h
│   │   └── ulpi.h
│   ├── usb_cdc_acm.h
│   ├── usb_defs.h
│   ├── usbdescriptors.h
│   ├── usbdevice.h
│   ├── usb_ether.h
│   ├── usb.h
│   ├── usb_mass_storage.h
│   ├── usbroothubdes.h
│   ├── uuid.h
│   ├── vbe.h
│   ├── version.h
│   ├── video_bridge.h
│   ├── video_console.h
│   ├── video_easylogo.h
│   ├── video_fb.h
│   ├── video_font_4x6.h
│   ├── video_font_data.h
│   ├── video_font.h
│   ├── video.h
│   ├── video_logo.h
│   ├── virtex2.h
│   ├── vsc7385.h
│   ├── vsc9953.h
│   ├── vsprintf.h
│   ├── vxworks.h
│   ├── w83c553f.h
│   ├── wait_bit.h
│   ├── watchdog.h
│   ├── wdt.h
│   ├── winbond_w83627.h
│   ├── xilinx.h
│   ├── xyzModem.h
│   ├── zfs
│   │   ├── dmu.h
│   │   ├── dmu_objset.h
│   │   ├── dnode.h
│   │   ├── dsl_dataset.h
│   │   ├── dsl_dir.h
│   │   ├── sa_impl.h
│   │   ├── spa.h
│   │   ├── uberblock_impl.h
│   │   ├── vdev_impl.h
│   │   ├── zap_impl.h
│   │   ├── zap_leaf.h
│   │   ├── zfs_acl.h
│   │   ├── zfs.h
│   │   ├── zfs_znode.h
│   │   ├── zil.h
│   │   ├── zio_checksum.h
│   │   └── zio.h
│   ├── zfs_common.h
│   ├── zynqmppl.h
│   └── zynqpl.h
├── Kbuild
├── Kconfig
├── lib
│   ├── addr_map.c
│   ├── aes.c
│   ├── asm-offsets.c
│   ├── at91
│   │   ├── at91.c
│   │   ├── atmel_logo_8bpp.h
│   │   ├── Makefile
│   │   └── microchip_logo_8bpp.h
│   ├── bch.c
│   ├── bitrev.c
│   ├── bzip2
│   │   ├── bzlib_blocksort.c
│   │   ├── bzlib.c
│   │   ├── bzlib_compress.c
│   │   ├── bzlib_crctable.c
│   │   ├── bzlib_decompress.c
│   │   ├── bzlib_huffman.c
│   │   ├── bzlib_private.h
│   │   ├── bzlib_randtable.c
│   │   └── Makefile
│   ├── charset.c
│   ├── circbuf.c
│   ├── crc16.c
│   ├── crc32.c
│   ├── crc32c.c
│   ├── crc7.c
│   ├── crc8.c
│   ├── ctype.c
│   ├── dhry
│   │   ├── cmd_dhry.c
│   │   ├── dhry_1.c
│   │   ├── dhry_2.c
│   │   ├── dhry.h
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── display_options.c
│   ├── div64.c
│   ├── efi
│   │   ├── efi_app.c
│   │   ├── efi.c
│   │   ├── efi_info.c
│   │   ├── efi_stub.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── efi_loader
│   │   ├── efi_bootmgr.c
│   │   ├── efi_boottime.c
│   │   ├── efi_console.c
│   │   ├── efi_device_path.c
│   │   ├── efi_device_path_to_text.c
│   │   ├── efi_disk.c
│   │   ├── efi_file.c
│   │   ├── efi_gop.c
│   │   ├── efi_image_loader.c
│   │   ├── efi_memory.c
│   │   ├── efi_net.c
│   │   ├── efi_runtime.c
│   │   ├── efi_smbios.c
│   │   ├── efi_variable.c
│   │   ├── helloworld.c
│   │   ├── helloworld.efi
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── efi_selftest
│   │   ├── efi_selftest.c
│   │   ├── efi_selftest_console.c
│   │   ├── efi_selftest_events.c
│   │   ├── efi_selftest_exitbootservices.c
│   │   ├── efi_selftest_snp.c
│   │   ├── efi_selftest_tpl.c
│   │   ├── efi_selftest_util.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── errno.c
│   ├── errno_str.c
│   ├── fdtdec.c
│   ├── fdtdec_common.c
│   ├── fdtdec_test.c
│   ├── gunzip.c
│   ├── gzip.c
│   ├── hang.c
│   ├── hashtable.c
│   ├── initcall.c
│   ├── Kconfig
│   ├── ldiv.c
│   ├── libfdt
│   │   ├── fdt_addresses.c
│   │   ├── fdt.c
│   │   ├── fdt_empty_tree.c
│   │   ├── fdt.h
│   │   ├── fdt_overlay.c
│   │   ├── fdt_region.c
│   │   ├── fdt_ro.c
│   │   ├── fdt_rw.c
│   │   ├── fdt_strerror.c
│   │   ├── fdt_sw.c
│   │   ├── fdt_wip.c
│   │   ├── libfdt.h
│   │   ├── libfdt_internal.h
│   │   ├── Makefile
│   │   ├── pylibfdt
│   │   │   ├── libfdt.i
│   │   │   └── setup.py
│   │   ├── README
│   │   └── test_libfdt.py
│   ├── linux_compat.c
│   ├── linux_string.c
│   ├── list_sort.c
│   ├── lmb.c
│   ├── lz4.c
│   ├── lz4_wrapper.c
│   ├── lzma
│   │   ├── history.txt
│   │   ├── import_lzmasdk.sh
│   │   ├── license.txt
│   │   ├── LzmaDec.c
│   │   ├── LzmaDec.h
│   │   ├── LzmaTools.c
│   │   ├── LzmaTools.h
│   │   ├── lzma.txt
│   │   ├── Makefile
│   │   ├── README.txt
│   │   └── Types.h
│   ├── lzo
│   │   ├── lzo1x_decompress.c
│   │   ├── lzodefs.h
│   │   └── Makefile
│   ├── Makefile
│   ├── md5.c
│   ├── membuff.c
│   ├── net_utils.c
│   ├── of_live.c
│   ├── panic.c
│   ├── physmem.c
│   ├── qsort.c
│   ├── rand.c
│   ├── rbtree.c
│   ├── rc4.c
│   ├── rsa
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── rsa-checksum.c
│   │   ├── rsa-mod-exp.c
│   │   ├── rsa-sign.c
│   │   └── rsa-verify.c
│   ├── sha1.c
│   ├── sha256.c
│   ├── slre.c
│   ├── smbios.c
│   ├── string.c
│   ├── strmhz.c
│   ├── strto.c
│   ├── tables_csum.c
│   ├── time.c
│   ├── tiny-printf.c
│   ├── tizen
│   │   ├── Makefile
│   │   ├── tizen.c
│   │   ├── tizen_logo_16bpp_gzip.h
│   │   └── tizen_logo_16bpp.h
│   ├── tpm.c
│   ├── trace.c
│   ├── uuid.c
│   ├── vsprintf.c
│   └── zlib
│   ├── adler32.c
│   ├── deflate.c
│   ├── deflate.h
│   ├── inffast.c
│   ├── inffast.h
│   ├── inffixed.h
│   ├── inflate.c
│   ├── inflate.h
│   ├── inftrees.c
│   ├── inftrees.h
│   ├── Makefile
│   ├── trees.c
│   ├── trees.h
│   ├── zlib.c
│   ├── zlib.h
│   ├── zutil.c
│   └── zutil.h
├── Licenses
│   ├── bsd-2-clause.txt
│   ├── bsd-3-clause.txt
│   ├── eCos-2.0.txt
│   ├── Exceptions
│   ├── gpl-2.0.txt
│   ├── ibm-pibs.txt
│   ├── isc.txt
│   ├── lgpl-2.0.txt
│   ├── lgpl-2.1.txt
│   ├── OFL.txt
│   ├── README
│   └── x11.txt
├── MAINTAINERS
├── Makefile
├── net
│   ├── arp.c
│   ├── arp.h
│   ├── bootp.c
│   ├── bootp.h
│   ├── cdp.c
│   ├── cdp.h
│   ├── checksum.c
│   ├── dns.c
│   ├── dns.h
│   ├── eth_common.c
│   ├── eth_internal.h
│   ├── eth_legacy.c
│   ├── eth-uclass.c
│   ├── Kconfig
│   ├── link_local.c
│   ├── link_local.h
│   ├── Makefile
│   ├── net.c
│   ├── net_rand.h
│   ├── nfs.c
│   ├── nfs.h
│   ├── ping.c
│   ├── ping.h
│   ├── rarp.c
│   ├── rarp.h
│   ├── sntp.c
│   ├── sntp.h
│   └── tftp.c
├── post
│   ├── cpu
│   │   └── mpc83xx
│   │   ├── ecc.c
│   │   └── Makefile
│   ├── drivers
│   │   ├── flash.c
│   │   ├── i2c.c
│   │   ├── Makefile
│   │   ├── memory.c
│   │   └── rtc.c
│   ├── lib_powerpc
│   │   ├── andi.c
│   │   ├── asm.S
│   │   ├── b.c
│   │   ├── cmp.c
│   │   ├── cmpi.c
│   │   ├── complex.c
│   │   ├── cpu_asm.h
│   │   ├── cpu.c
│   │   ├── cr.c
│   │   ├── fpu
│   │   │   ├── 20001122-1.c
│   │   │   ├── 20010114-2.c
│   │   │   ├── 20010226-1.c
│   │   │   ├── 980619-1.c
│   │   │   ├── acc1.c
│   │   │   ├── compare-fp-1.c
│   │   │   ├── darwin-ldouble.c
│   │   │   ├── fpu.c
│   │   │   ├── Makefile
│   │   │   └── mul-subnormal-single-1.c
│   │   ├── load.c
│   │   ├── Makefile
│   │   ├── multi.c
│   │   ├── rlwimi.c
│   │   ├── rlwinm.c
│   │   ├── rlwnm.c
│   │   ├── srawi.c
│   │   ├── store.c
│   │   ├── string.c
│   │   ├── three.c
│   │   ├── threei.c
│   │   ├── threex.c
│   │   ├── two.c
│   │   └── twox.c
│   ├── Makefile
│   ├── post.c
│   └── tests.c
├── README
├── scripts
│   ├── basic
│   │   ├── fixdep.c
│   │   └── Makefile
│   ├── bin2c.c
│   ├── binutils-version.sh
│   ├── build-whitelist.sh
│   ├── check-config.sh
│   ├── checkpatch.pl
│   ├── checkstack.pl
│   ├── cleanpatch
│   ├── coccinelle
│   │   └── net
│   │   └── mdio_register.cocci
│   ├── config_whitelist.txt
│   ├── const_structs.checkpatch
│   ├── coreboot.sed
│   ├── docproc.c
│   ├── dtc
│   │   ├── checks.c
│   │   ├── data.c
│   │   ├── dtc.c
│   │   ├── dtc.h
│   │   ├── dtc-lexer.l
│   │   ├── dtc-lexer.lex.c_shipped
│   │   ├── dtc-parser.tab.c_shipped
│   │   ├── dtc-parser.tab.h_shipped
│   │   ├── dtc-parser.y
│   │   ├── flattree.c
│   │   ├── fstree.c
│   │   ├── libfdt
│   │   │   ├── fdt.c
│   │   │   ├── fdt_empty_tree.c
│   │   │   ├── fdt.h
│   │   │   ├── fdt_ro.c
│   │   │   ├── fdt_rw.c
│   │   │   ├── fdt_strerror.c
│   │   │   ├── fdt_sw.c
│   │   │   ├── fdt_wip.c
│   │   │   ├── libfdt_env.h
│   │   │   ├── libfdt.h
│   │   │   ├── libfdt_internal.h
│   │   │   └── Makefile.libfdt
│   │   ├── livetree.c
│   │   ├── Makefile
│   │   ├── Makefile.dtc
│   │   ├── srcpos.c
│   │   ├── srcpos.h
│   │   ├── treesource.c
│   │   ├── update-dtc-source.sh
│   │   ├── util.c
│   │   ├── util.h
│   │   └── version_gen.h
│   ├── dtc-version.sh
│   ├── fill_scrapyard.py
│   ├── gcc-stack-usage.sh
│   ├── gcc-version.sh
│   ├── get_default_envs.sh
│   ├── get_maintainer.pl
│   ├── Kbuild.include
│   ├── kconfig
│   │   ├── check.sh
│   │   ├── conf.c
│   │   ├── confdata.c
│   │   ├── expr.c
│   │   ├── expr.h
│   │   ├── gconf.c
│   │   ├── gconf.glade
│   │   ├── images.c
│   │   ├── kxgettext.c
│   │   ├── list.h
│   │   ├── lkc.h
│   │   ├── lkc_proto.h
│   │   ├── lxdialog
│   │   │   ├── BIG.FAT.WARNING
│   │   │   ├── checklist.c
│   │   │   ├── check-lxdialog.sh
│   │   │   ├── dialog.h
│   │   │   ├── inputbox.c
│   │   │   ├── menubox.c
│   │   │   ├── textbox.c
│   │   │   ├── util.c
│   │   │   └── yesno.c
│   │   ├── Makefile
│   │   ├── mconf.c
│   │   ├── menu.c
│   │   ├── merge_config.sh
│   │   ├── nconf.c
│   │   ├── nconf.gui.c
│   │   ├── nconf.h
│   │   ├── POTFILES.in
│   │   ├── qconf.cc
│   │   ├── qconf.h
│   │   ├── streamline_config.pl
│   │   ├── symbol.c
│   │   ├── util.c
│   │   ├── zconf.gperf
│   │   ├── zconf.hash.c_shipped
│   │   ├── zconf.l
│   │   ├── zconf.lex.c_shipped
│   │   ├── zconf.tab.c_shipped
│   │   └── zconf.y
│   ├── kernel-doc
│   ├── ld-version.sh
│   ├── Lindent
│   ├── mailmapper
│   ├── Makefile
│   ├── Makefile.autoconf
│   ├── Makefile.build
│   ├── Makefile.clean
│   ├── Makefile.extrawarn
│   ├── Makefile.host
│   ├── Makefile.lib
│   ├── Makefile.spl
│   ├── Makefile.uncmd_spl
│   ├── mkmakefile
│   ├── objdiff
│   ├── setlocalversion
│   ├── show-gnu-make
│   └── spelling.txt
├── snapshot.commit
├── test
│   ├── cmd_ut.c
│   ├── command_ut.c
│   ├── common.sh
│   ├── compression.c
│   ├── dm
│   │   ├── adc.c
│   │   ├── blk.c
│   │   ├── bus.c
│   │   ├── clk.c
│   │   ├── cmd_dm.c
│   │   ├── core.c
│   │   ├── eth.c
│   │   ├── gpio.c
│   │   ├── i2c.c
│   │   ├── Kconfig
│   │   ├── led.c
│   │   ├── mailbox.c
│   │   ├── Makefile
│   │   ├── mmc.c
│   │   ├── pci.c
│   │   ├── phy.c
│   │   ├── pmic.c
│   │   ├── power-domain.c
│   │   ├── pwm.c
│   │   ├── ram.c
│   │   ├── regmap.c
│   │   ├── regulator.c
│   │   ├── remoteproc.c
│   │   ├── reset.c
│   │   ├── rtc.c
│   │   ├── sf.c
│   │   ├── spi.c
│   │   ├── spmi.c
│   │   ├── syscon.c
│   │   ├── sysreset.c
│   │   ├── test-driver.c
│   │   ├── test-fdt.c
│   │   ├── test-main.c
│   │   ├── test-uclass.c
│   │   ├── timer.c
│   │   ├── usb.c
│   │   ├── video.c
│   │   └── wdt.c
│   ├── env
│   │   ├── attr.c
│   │   ├── cmd_ut_env.c
│   │   ├── Kconfig
│   │   └── Makefile
│   ├── fs
│   │   ├── fat-noncontig-test.sh
│   │   └── fs-test.sh
│   ├── image
│   │   └── test-imagetools.sh
│   ├── Kconfig
│   ├── Makefile
│   ├── overlay
│   │   ├── cmd_ut_overlay.c
│   │   ├── Kconfig
│   │   ├── Makefile
│   │   ├── test-fdt-base.dts
│   │   ├── test-fdt-overlay.dts
│   │   └── test-fdt-overlay-stacked.dts
│   ├── print_ut.c
│   ├── py
│   │   ├── conftest.py
│   │   ├── multiplexed_log.css
│   │   ├── multiplexed_log.py
│   │   ├── pytest.ini
│   │   ├── README.md
│   │   ├── test.py
│   │   ├── tests
│   │   │   ├── test_000_version.py
│   │   │   ├── test_dfu.py
│   │   │   ├── test_efi_loader.py
│   │   │   ├── test_efi_selftest.py
│   │   │   ├── test_env.py
│   │   │   ├── test_fit.py
│   │   │   ├── test_gpt.py
│   │   │   ├── test_help.py
│   │   │   ├── test_hush_if_test.py
│   │   │   ├── test_md.py
│   │   │   ├── test_net.py
│   │   │   ├── test_ofplatdata.py
│   │   │   ├── test_sandbox_exit.py
│   │   │   ├── test_shell_basics.py
│   │   │   ├── test_sleep.py
│   │   │   ├── test_ums.py
│   │   │   ├── test_unknown_cmd.py
│   │   │   ├── test_ut.py
│   │   │   ├── test_vboot.py
│   │   │   └── vboot
│   │   │   ├── sandbox-kernel.dts
│   │   │   ├── sandbox-u-boot.dts
│   │   │   ├── sign-configs-sha1.its
│   │   │   ├── sign-configs-sha256.its
│   │   │   ├── sign-images-sha1.its
│   │   │   └── sign-images-sha256.its
│   │   ├── u_boot_console_base.py
│   │   ├── u_boot_console_exec_attach.py
│   │   ├── u_boot_console_sandbox.py
│   │   ├── u_boot_spawn.py
│   │   └── u_boot_utils.py
│   ├── README
│   ├── run
│   ├── stdint
│   │   ├── int-types.c
│   │   └── test-includes.sh
│   ├── time_ut.c
│   ├── trace
│   │   └── test-trace.sh
│   └── ut.c
└── tools
├── aisimage.c
├── aisimage.h
├── atmelimage.c
├── atmel_pmecc_params.c
├── binman
│   ├── binman.py
│   ├── cmdline.py
│   ├── control.py
│   ├── entry_test.py
│   ├── etype
│   │   ├── blob.py
│   │   ├── entry.py
│   │   ├── intel_cmc.py
│   │   ├── intel_descriptor.py
│   │   ├── intel_fsp.py
│   │   ├── intel_me.py
│   │   ├── intel_mrc.py
│   │   ├── intel_vbt.py
│   │   ├── intel_vga.py
│   │   ├── _testing.py
│   │   ├── u_boot_dtb.py
│   │   ├── u_boot_dtb_with_ucode.py
│   │   ├── u_boot_img.py
│   │   ├── u_boot_nodtb.py
│   │   ├── u_boot.py
│   │   ├── u_boot_spl_bss_pad.py
│   │   ├── u_boot_spl.py
│   │   ├── u_boot_spl_with_ucode_ptr.py
│   │   ├── u_boot_ucode.py
│   │   ├── u_boot_with_ucode_ptr.py
│   │   ├── x86_start16.py
│   │   └── x86_start16_spl.py
│   ├── fdt_test.py
│   ├── func_test.py
│   ├── image.py
│   ├── README
│   └── test
│   ├── 01_invalid.dts
│   ├── 02_missing_node.dts
│   ├── 03_empty.dts
│   ├── 04_invalid_entry.dts
│   ├── 05_simple.dts
│   ├── 06_dual_image.dts
│   ├── 07_bad_align.dts
│   ├── 08_pack.dts
│   ├── 09_pack_extra.dts
│   ├── 10_pack_align_power2.dts
│   ├── 11_pack_align_size_power2.dts
│   ├── 12_pack_inv_align.dts
│   ├── 13_pack_inv_size_align.dts
│   ├── 14_pack_overlap.dts
│   ├── 15_pack_overflow.dts
│   ├── 16_pack_image_overflow.dts
│   ├── 17_pack_image_size.dts
│   ├── 18_pack_image_align.dts
│   ├── 19_pack_inv_image_align.dts
│   ├── 20_pack_inv_image_align_power2.dts
│   ├── 21_image_pad.dts
│   ├── 22_image_name.dts
│   ├── 23_blob.dts
│   ├── 24_sorted.dts
│   ├── 25_pack_zero_size.dts
│   ├── 26_pack_u_boot_dtb.dts
│   ├── 27_pack_4gb_no_size.dts
│   ├── 28_pack_4gb_outside.dts
│   ├── 29_x86-rom.dts
│   ├── 30_x86-rom-me-no-desc.dts
│   ├── 31_x86-rom-me.dts
│   ├── 32_intel-vga.dts
│   ├── 33_x86-start16.dts
│   ├── 34_x86_ucode.dts
│   ├── 35_x86_single_ucode.dts
│   ├── 36_u_boot_img.dts
│   ├── 37_x86_no_ucode.dts
│   ├── 38_x86_ucode_missing_node.dts
│   ├── 39_x86_ucode_missing_node2.dts
│   ├── 40_x86_ucode_not_in_image.dts
│   ├── 41_unknown_pos_size.dts
│   ├── 42_intel-fsp.dts
│   ├── 43_intel-cmc.dts
│   ├── 44_x86_optional_ucode.dts
│   ├── 45_prop_test.dts
│   ├── 46_intel-vbt.dts
│   ├── descriptor.bin
│   ├── u_boot_no_ucode_ptr
│   ├── u_boot_no_ucode_ptr.c
│   ├── u_boot_ucode_ptr
│   ├── u_boot_ucode_ptr.c
│   └── u_boot_ucode_ptr.lds
├── bmp_logo.c
├── buildman
│   ├── board.py
│   ├── bsettings.py
│   ├── builder.py
│   ├── builderthread.py
│   ├── buildman.py
│   ├── cmdline.py
│   ├── control.py
│   ├── func_test.py
│   ├── kconfiglib.py
│   ├── README
│   ├── test.py
│   └── toolchain.py
├── default_image.c
├── dtoc
│   ├── dtb_platdata.py
│   ├── dtoc.py
│   ├── dtoc_test_addr32_64.dts
│   ├── dtoc_test_addr32.dts
│   ├── dtoc_test_addr64_32.dts
│   ├── dtoc_test_addr64.dts
│   ├── dtoc_test_aliases.dts
│   ├── dtoc_test.dts
│   ├── dtoc_test_empty.dts
│   ├── dtoc_test_phandle.dts
│   ├── dtoc_test_simple.dts
│   ├── fdt.py
│   ├── fdt_util.py
│   └── test_dtoc.py
├── dumpimage.c
├── dumpimage.h
├── easylogo
│   ├── easylogo.c
│   ├── linux_blackfin.tga
│   ├── linux_logo.tga
│   ├── Makefile
│   └── runme.sh
├── env
│   ├── aes.c
│   ├── crc32.c
│   ├── ctype.c
│   ├── env_attr.c
│   ├── env_flags.c
│   ├── fw_env.c
│   ├── fw_env.config
│   ├── fw_env.h
│   ├── fw_env_main.c
│   ├── fw_env_private.h
│   ├── linux_string.c
│   ├── Makefile
│   └── README
├── envcrc.c
├── fdtgrep.c
├── fdt_host.h
├── fit_check_sign.c
├── fit_common.c
├── fit_common.h
├── fit_image.c
├── fit_info.c
├── gdb
│   ├── error.c
│   ├── error.h
│   ├── gdbcont.c
│   ├── gdbsend.c
│   ├── Makefile
│   ├── remote.c
│   ├── remote.h
│   ├── serial.c
│   └── serial.h
├── genboardscfg.py
├── gen_eth_addr.c
├── gen_ethaddr_crc.c
├── getline.c
├── getline.h
├── gpheader.h
├── gpimage.c
├── gpimage-common.c
├── ifdtool.c
├── ifdtool.h
├── image-host.c
├── imagetool.c
├── imagetool.h
├── img2brec.sh
├── img2srec.c
├── imximage.c
├── jtagconsole
├── kermit
│   ├── dot.kermrc
│   ├── flash_param
│   ├── README
│   ├── send_cmd
│   └── send_image
├── kwbimage.c
├── kwbimage.h
├── kwboot.c
├── logos
│   ├── atmel.bmp
│   ├── compulab.bmp
│   ├── denx.bmp
│   ├── denx-comp.bmp
│   ├── engicam.bmp
│   ├── esd.bmp
│   ├── freescale.bmp
│   ├── gateworks.bmp
│   ├── intercontrol.bmp
│   ├── linux_logo_ttcontrol.bmp
│   ├── linux_logo_ttcontrol_palfin.bmp
│   ├── microchip.bmp
│   ├── ronetix.bmp
│   ├── siemens.bmp
│   ├── solidrun.bmp
│   ├── syteco.bmp
│   ├── toradex.bmp
│   └── wandboard.bmp
├── lpc32xximage.c
├── Makefile
├── microcode-tool.py
├── mingw_support.c
├── mingw_support.h
├── mips-relocs.c
├── mkenvimage.c
├── mkexynosspl.c
├── mkimage.c
├── mkimage.h
├── mksunxiboot.c
├── moveconfig.py
├── mxsboot.c
├── mxsimage.c
├── mxsimage.h
├── ncb.c
├── netconsole
├── omap
│   └── clocks_get_m_n.c
├── omapimage.c
├── omapimage.h
├── os_support.c
├── os_support.h
├── patman
│   ├── checkpatch.py
│   ├── command.py
│   ├── commit.py
│   ├── cros_subprocess.py
│   ├── func_test.py
│   ├── get_maintainer.py
│   ├── gitutil.py
│   ├── __init__.py
│   ├── patchstream.py
│   ├── patman.py
│   ├── project.py
│   ├── README
│   ├── series.py
│   ├── settings.py
│   ├── setup.py
│   ├── terminal.py
│   ├── test
│   │   ├── 0000-cover-letter.patch
│   │   ├── 0001-pci-Correct-cast-for-sandbox.patch
│   │   ├── 0002-fdt-Correct-cast-for-sandbox-in-fdtdec_setup_memory_.patch
│   │   └── test01.txt
│   ├── test.py
│   ├── tools.py
│   └── tout.py
├── pbl_crc32.c
├── pbl_crc32.h
├── pblimage.c
├── pblimage.h
├── proftool.c
├── relocate-rela.c
├── rkcommon.c
├── rkcommon.h
├── rkimage.c
├── rkmux.py
├── rksd.c
├── rkspi.c
├── scripts
│   └── define2mk.sed
├── socfpgaimage.c
├── sunxi-spl-image-builder.c
├── ublimage.c
├── ublimage.h
├── ubsha1.c
├── vybridimage.c
├── xway-swap-bytes.c
├── zynqimage.c
└── zynqmpimage.c

1361 directories, 12617 files

标签:

实例下载地址

u-boot-2017.11-iTop-4412

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警