History log of /rk3399_rockchip-uboot/test/ (Results 251 – 275 of 443)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
c10eb9d322-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: drain console log at the end of any failed test

Tests may fail for a number of reasons, and in particular for reasons
other than a timeout waiting for U-Boot to print expected data. If the

test/py: drain console log at the end of any failed test

Tests may fail for a number of reasons, and in particular for reasons
other than a timeout waiting for U-Boot to print expected data. If the
last operation that a failed test performs is not waiting for U-Boot to
print something, then any trailing output from U-Boot during that test's
operation will not be logged as part of that test, but rather either
along with the next test, or even thrown away, potentiall hiding clues
re: the test failure reason.

Solve this by explicitly draining (and hence logging) the U-Boot output
in the case of failed tests.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

636f38d822-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: move U-Boot respawn trigger to the test core

Prior to this change, U-Boot was lazilly (re-)spawned if/when a test
attempted to interact with it, and no active connection existed. This
appro

test/py: move U-Boot respawn trigger to the test core

Prior to this change, U-Boot was lazilly (re-)spawned if/when a test
attempted to interact with it, and no active connection existed. This
approach was simple, yet had the disadvantage that U-Boot might be
spawned in the middle of a test function, e.g. after the test had already
performed actions such as creating data files, etc. In that case, this
could cause the log to contain the sequence (1) some test logs, (2)
U-Boot's boot process, (3) the rest of that test's logs. This isn't
optimally readable. This issue will affect the upcoming DFU and enhanced
UMS tests.

This change converts u_boot_console to be a function-scoped fixture, so
that pytest attempts to re-create the object for each test invocation.
This allows the fixture factory function to ensure that U-Boot is spawned
prior to every test. In practice, the same object is returned each time
so there is essentially no additional overhead due to this change.

This allows us to remove:

- The explicit ensure_spawned() call from test_sleep, since the core now
ensures that the spawn happens before the test code is executed.

- The laxy calls to ensure_spawned() in the u_boot_console_*
implementations.

The one downside is that test_env's "state_ttest_env" fixture must be
converted to a function-scoped fixture too, since a module-scoped fixture
cannot use a function-scoped fixture. To avoid overhead, we use the same
trick of returning the same object each time.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

d314e24722-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: fix timeout to be absolute

Currently, Spawn.expect() imposes its timeout solely upon receipt of new
data, not on its overall operation. In theory, this could cause the
timeout not to fire i

test/py: fix timeout to be absolute

Currently, Spawn.expect() imposes its timeout solely upon receipt of new
data, not on its overall operation. In theory, this could cause the
timeout not to fire if U-Boot continually generated output that did not
match the expected patterns.

Fix the code to additionally impose a timeout on overall operation, which
is the intended mode of operation.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/.checkpatch.conf
/rk3399_rockchip-uboot/.mailmap
/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/ls102xa_sata.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci_sun6i.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/tzpc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/ls2080a_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/clk.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/cpu.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/armada-xp-theadorable.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a-qds-duart.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a-qds-lpuart.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a-qds.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-a83t-sinovoip-bpi-m3.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynq-7000.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zc770-xm010.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zc770-xm011.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zc770-xm012.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zc770-xm013.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynqmp-ep108.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynqmp.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/crm_regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram_sun8i_a83t.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/tzpc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynqmp/clk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynqmp/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/dma.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/regs-apbh.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/regs-bch.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/soc.h
/rk3399_rockchip-uboot/arch/arm/mach-tegra/ap.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/ddrc.c
/rk3399_rockchip-uboot/arch/microblaze/Kconfig
/rk3399_rockchip-uboot/arch/microblaze/cpu/Makefile
/rk3399_rockchip-uboot/arch/microblaze/cpu/start.S
/rk3399_rockchip-uboot/arch/mips/include/asm/io.h
/rk3399_rockchip-uboot/arch/openrisc/lib/board.c
/rk3399_rockchip-uboot/arch/powerpc/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc512x/serial.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/serial.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/law.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cmd_errata.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/law.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/interrupts.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/uic.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/xilinx_irq.c
/rk3399_rockchip-uboot/arch/powerpc/dts/Makefile
/rk3399_rockchip-uboot/arch/powerpc/dts/xilinx-ppc405-generic.dts
/rk3399_rockchip-uboot/arch/powerpc/dts/xilinx-ppc440-generic.dts
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/interrupt.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/xilinx_irq.h
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/early_uart.c
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/bd82x6x.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/early_me.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/gma.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/lpc.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/model_206ax.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/northbridge.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/report_platform.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/sata.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/fw_cfg.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/qemu.c
/rk3399_rockchip-uboot/arch/x86/dts/bayleybay.dts
/rk3399_rockchip-uboot/arch/x86/dts/broadwell_som-6896.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_link.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebox_panther.dts
/rk3399_rockchip-uboot/arch/x86/dts/crownbay.dts
/rk3399_rockchip-uboot/arch/x86/dts/galileo.dts
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/bd82x6x.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/me.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/pch.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/sandybridge.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-qemu/device.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-qemu/qemu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/cpu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/fw_cfg.h
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot-x86.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/acpi_table.c
/rk3399_rockchip-uboot/arch/x86/lib/fsp/fsp_support.c
/rk3399_rockchip-uboot/arch/x86/lib/mrccache.c
/rk3399_rockchip-uboot/arch/x86/lib/northbridge-uclass.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds.c
/rk3399_rockchip-uboot/board/freescale/common/Makefile
/rk3399_rockchip-uboot/board/freescale/common/cmd_esbc_validate.c
/rk3399_rockchip-uboot/board/freescale/common/fsl_chain_of_trust.c
/rk3399_rockchip-uboot/board/freescale/common/fsl_validate.c
/rk3399_rockchip-uboot/board/freescale/common/qixis.c
/rk3399_rockchip-uboot/board/freescale/common/vid.c
/rk3399_rockchip-uboot/board/freescale/common/vid.h
/rk3399_rockchip-uboot/board/freescale/corenet_ds/corenet_ds.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/README
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_rcw_sd_qspi.cfg
/rk3399_rockchip-uboot/board/freescale/mx25pdk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx25pdk/mx25pdk.c
/rk3399_rockchip-uboot/board/freescale/mx7dsabresd/mx7dsabresd.c
/rk3399_rockchip-uboot/board/freescale/p2041rdb/p2041rdb.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/t102xqds.c
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t102xrdb.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/t1040qds.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t104xrdb.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t208xrdb.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240emu.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/t4240rdb.c
/rk3399_rockchip-uboot/board/google/chromebook_link/link.c
/rk3399_rockchip-uboot/board/nvidia/jetson-tk1/jetson-tk1.c
/rk3399_rockchip-uboot/board/renesas/sh7753evb/sh7753evb.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/theadorable/MAINTAINERS
/rk3399_rockchip-uboot/board/theadorable/Makefile
/rk3399_rockchip-uboot/board/theadorable/kwbimage.cfg
/rk3399_rockchip-uboot/board/theadorable/theadorable.c
/rk3399_rockchip-uboot/board/tqc/tqm834x/tqm834x.c
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/microblaze-generic.c
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/xparameters.h
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/MAINTAINERS
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/Makefile
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/xilinx_ppc405_generic.c
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/xparameters.h
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/MAINTAINERS
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/Makefile
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/init.S
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/xilinx_ppc440_generic.c
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/xparameters.h
/rk3399_rockchip-uboot/board/xilinx/zynq/board.c
/rk3399_rockchip-uboot/board/xilinx/zynqmp/zynqmp.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/aes.c
/rk3399_rockchip-uboot/cmd/ambapp.c
/rk3399_rockchip-uboot/cmd/armflash.c
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/bedbug.c
/rk3399_rockchip-uboot/cmd/blob.c
/rk3399_rockchip-uboot/cmd/bmp.c
/rk3399_rockchip-uboot/cmd/boot.c
/rk3399_rockchip-uboot/cmd/bootldr.c
/rk3399_rockchip-uboot/cmd/bootm.c
/rk3399_rockchip-uboot/cmd/bootmenu.c
/rk3399_rockchip-uboot/cmd/bootstage.c
/rk3399_rockchip-uboot/cmd/cache.c
/rk3399_rockchip-uboot/cmd/cbfs.c
/rk3399_rockchip-uboot/cmd/clk.c
/rk3399_rockchip-uboot/cmd/console.c
/rk3399_rockchip-uboot/cmd/cplbinfo.c
/rk3399_rockchip-uboot/cmd/cpu.c
/rk3399_rockchip-uboot/cmd/cramfs.c
/rk3399_rockchip-uboot/cmd/dataflash_mmc_mux.c
/rk3399_rockchip-uboot/cmd/date.c
/rk3399_rockchip-uboot/cmd/dcr.c
/rk3399_rockchip-uboot/cmd/demo.c
/rk3399_rockchip-uboot/cmd/dfu.c
/rk3399_rockchip-uboot/cmd/diag.c
/rk3399_rockchip-uboot/cmd/disk.c
/rk3399_rockchip-uboot/cmd/display.c
/rk3399_rockchip-uboot/cmd/dtt.c
/rk3399_rockchip-uboot/cmd/echo.c
/rk3399_rockchip-uboot/cmd/eeprom.c
/rk3399_rockchip-uboot/cmd/efi.c
/rk3399_rockchip-uboot/cmd/elf.c
/rk3399_rockchip-uboot/cmd/ethsw.c
/rk3399_rockchip-uboot/cmd/exit.c
/rk3399_rockchip-uboot/cmd/ext2.c
/rk3399_rockchip-uboot/cmd/ext4.c
/rk3399_rockchip-uboot/cmd/fastboot.c
/rk3399_rockchip-uboot/cmd/fat.c
/rk3399_rockchip-uboot/cmd/fdc.c
/rk3399_rockchip-uboot/cmd/fdt.c
/rk3399_rockchip-uboot/cmd/fitupd.c
/rk3399_rockchip-uboot/cmd/flash.c
/rk3399_rockchip-uboot/cmd/fpga.c
/rk3399_rockchip-uboot/cmd/fpgad.c
/rk3399_rockchip-uboot/cmd/fs.c
/rk3399_rockchip-uboot/cmd/fs_uuid.c
/rk3399_rockchip-uboot/cmd/fuse.c
/rk3399_rockchip-uboot/cmd/gettime.c
/rk3399_rockchip-uboot/cmd/gpio.c
/rk3399_rockchip-uboot/cmd/gpt.c
/rk3399_rockchip-uboot/cmd/hash.c
/rk3399_rockchip-uboot/cmd/help.c
/rk3399_rockchip-uboot/cmd/host.c
/rk3399_rockchip-uboot/cmd/i2c.c
/rk3399_rockchip-uboot/cmd/ide.c
/rk3399_rockchip-uboot/cmd/immap.c
/rk3399_rockchip-uboot/cmd/ini.c
/rk3399_rockchip-uboot/cmd/io.c
/rk3399_rockchip-uboot/cmd/iotrace.c
/rk3399_rockchip-uboot/cmd/irq.c
/rk3399_rockchip-uboot/cmd/itest.c
/rk3399_rockchip-uboot/cmd/jffs2.c
/rk3399_rockchip-uboot/cmd/ldrinfo.c
/rk3399_rockchip-uboot/cmd/led.c
/rk3399_rockchip-uboot/cmd/license.c
/rk3399_rockchip-uboot/cmd/load.c
/rk3399_rockchip-uboot/cmd/log.c
/rk3399_rockchip-uboot/cmd/lzmadec.c
/rk3399_rockchip-uboot/cmd/mac.c
/rk3399_rockchip-uboot/cmd/md5sum.c
/rk3399_rockchip-uboot/cmd/mdio.c
/rk3399_rockchip-uboot/cmd/mem.c
/rk3399_rockchip-uboot/cmd/mfsl.c
/rk3399_rockchip-uboot/cmd/mii.c
/rk3399_rockchip-uboot/cmd/misc.c
/rk3399_rockchip-uboot/cmd/mmc.c
/rk3399_rockchip-uboot/cmd/mmc_spi.c
/rk3399_rockchip-uboot/cmd/mp.c
/rk3399_rockchip-uboot/cmd/mtdparts.c
/rk3399_rockchip-uboot/cmd/nand.c
/rk3399_rockchip-uboot/cmd/net.c
/rk3399_rockchip-uboot/cmd/nvedit.c
/rk3399_rockchip-uboot/cmd/onenand.c
/rk3399_rockchip-uboot/cmd/otp.c
/rk3399_rockchip-uboot/cmd/part.c
/rk3399_rockchip-uboot/cmd/pci.c
/rk3399_rockchip-uboot/cmd/pcmcia.c
/rk3399_rockchip-uboot/cmd/pmic.c
/rk3399_rockchip-uboot/cmd/portio.c
/rk3399_rockchip-uboot/cmd/pxe.c
/rk3399_rockchip-uboot/cmd/read.c
/rk3399_rockchip-uboot/cmd/reginfo.c
/rk3399_rockchip-uboot/cmd/regulator.c
/rk3399_rockchip-uboot/cmd/reiser.c
/rk3399_rockchip-uboot/cmd/remoteproc.c
/rk3399_rockchip-uboot/cmd/sata.c
/rk3399_rockchip-uboot/cmd/scsi.c
/rk3399_rockchip-uboot/cmd/setexpr.c
/rk3399_rockchip-uboot/cmd/sf.c
/rk3399_rockchip-uboot/cmd/sha1sum.c
/rk3399_rockchip-uboot/cmd/softswitch.c
/rk3399_rockchip-uboot/cmd/sound.c
/rk3399_rockchip-uboot/cmd/source.c
/rk3399_rockchip-uboot/cmd/spi.c
/rk3399_rockchip-uboot/cmd/spibootldr.c
/rk3399_rockchip-uboot/cmd/spl.c
/rk3399_rockchip-uboot/cmd/strings.c
/rk3399_rockchip-uboot/cmd/terminal.c
/rk3399_rockchip-uboot/cmd/test.c
/rk3399_rockchip-uboot/cmd/thordown.c
/rk3399_rockchip-uboot/cmd/time.c
/rk3399_rockchip-uboot/cmd/tpm.c
/rk3399_rockchip-uboot/cmd/tpm_test.c
/rk3399_rockchip-uboot/cmd/trace.c
/rk3399_rockchip-uboot/cmd/tsi148.c
/rk3399_rockchip-uboot/cmd/ubi.c
/rk3399_rockchip-uboot/cmd/ubifs.c
/rk3399_rockchip-uboot/cmd/universe.c
/rk3399_rockchip-uboot/cmd/unzip.c
/rk3399_rockchip-uboot/cmd/usb.c
/rk3399_rockchip-uboot/cmd/usb_mass_storage.c
/rk3399_rockchip-uboot/cmd/version.c
/rk3399_rockchip-uboot/cmd/ximg.c
/rk3399_rockchip-uboot/cmd/yaffs2.c
/rk3399_rockchip-uboot/cmd/zfs.c
/rk3399_rockchip-uboot/cmd/zip.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/console.c
/rk3399_rockchip-uboot/common/env_mmc.c
/rk3399_rockchip-uboot/common/env_sf.c
/rk3399_rockchip-uboot/common/lcd.c
/rk3399_rockchip-uboot/common/usb_kbd.c
/rk3399_rockchip-uboot/configs/Bananapro_defconfig
/rk3399_rockchip-uboot/configs/Sinovoip_BPI_M3_defconfig
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/h8_homlet_v2_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nor_ddr3_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/microblaze-generic_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/rock2_defconfig
/rk3399_rockchip-uboot/configs/theadorable_debug_defconfig
/rk3399_rockchip-uboot/configs/theadorable_defconfig
/rk3399_rockchip-uboot/configs/xilinx-ppc405-generic_defconfig
/rk3399_rockchip-uboot/configs/xilinx-ppc440-generic_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm011_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/doc/README.x86
/rk3399_rockchip-uboot/doc/device-tree-bindings/misc/intel,baytrail-fsp.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/8250.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/omap_serial.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/snps-dw-apb-uart.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/xilinx_uartlite.txt
/rk3399_rockchip-uboot/doc/driver-model/serial-howto.txt
/rk3399_rockchip-uboot/drivers/bios_emulator/atibios.c
/rk3399_rockchip-uboot/drivers/bios_emulator/bios.c
/rk3399_rockchip-uboot/drivers/block/Kconfig
/rk3399_rockchip-uboot/drivers/block/Makefile
/rk3399_rockchip-uboot/drivers/block/disk-uclass.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_ddr_gen4.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/dma/apbh_dma.c
/rk3399_rockchip-uboot/drivers/fpga/xilinx.c
/rk3399_rockchip-uboot/drivers/gpio/gpio-uclass.c
/rk3399_rockchip-uboot/drivers/hwmon/adt7460.c
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/intel_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/mvtwsi.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/winbond_w83627.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/zynq_sdhci.c
/rk3399_rockchip-uboot/drivers/mtd/nand/mxs_nand.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/eepro100.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_portal.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpni.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.h
/rk3399_rockchip-uboot/drivers/net/phy/ti.c
/rk3399_rockchip-uboot/drivers/net/xilinx_axi_emac.c
/rk3399_rockchip-uboot/drivers/net/xilinx_emaclite.c
/rk3399_rockchip-uboot/drivers/net/xilinx_ll_temac.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier.h
/rk3399_rockchip-uboot/drivers/power/Kconfig
/rk3399_rockchip-uboot/drivers/power/axp152.c
/rk3399_rockchip-uboot/drivers/power/axp209.c
/rk3399_rockchip-uboot/drivers/power/axp221.c
/rk3399_rockchip-uboot/drivers/power/axp818.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_xuartlite.c
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/drivers/tpm/Kconfig
/rk3399_rockchip-uboot/drivers/tpm/Makefile
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis.h
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis_infineon.c
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis_st33zp24_i2c.c
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis_st33zp24_spi.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/gadget.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/linux-compat.h
/rk3399_rockchip-uboot/drivers/usb/eth/Makefile
/rk3399_rockchip-uboot/drivers/usb/eth/r8152.c
/rk3399_rockchip-uboot/drivers/usb/eth/r8152.h
/rk3399_rockchip-uboot/drivers/usb/eth/r8152_fw.c
/rk3399_rockchip-uboot/drivers/usb/eth/usb_ether.c
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.c
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.h
/rk3399_rockchip-uboot/drivers/usb/host/ehci-generic.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mx6.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-lpc32xx.c
/rk3399_rockchip-uboot/drivers/video/Kconfig
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/mvebu_lcd.c
/rk3399_rockchip-uboot/dts/Makefile
/rk3399_rockchip-uboot/fs/ubifs/replay.c
/rk3399_rockchip-uboot/fs/ubifs/super.c
/rk3399_rockchip-uboot/include/axp221.h
/rk3399_rockchip-uboot/include/axp818.h
/rk3399_rockchip-uboot/include/axp_pmic.h
/rk3399_rockchip-uboot/include/bios_emul.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/config_fsl_chain_trust.h
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/T102xQDS.h
/rk3399_rockchip-uboot/include/configs/T102xRDB.h
/rk3399_rockchip-uboot/include/configs/T1040QDS.h
/rk3399_rockchip-uboot/include/configs/T104xRDB.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/T208xRDB.h
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/T4240RDB.h
/rk3399_rockchip-uboot/include/configs/chromebook_jerry.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/firefly-rk3288.h
/rk3399_rockchip-uboot/include/configs/imx6_spl.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1043ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx6ul_14x14_evk.h
/rk3399_rockchip-uboot/include/configs/mx7_common.h
/rk3399_rockchip-uboot/include/configs/mx7dsabresd.h
/rk3399_rockchip-uboot/include/configs/nyan-big.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/rock2.h
/rk3399_rockchip-uboot/include/configs/rpi-common.h
/rk3399_rockchip-uboot/include/configs/theadorable.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xilinx-ppc.h
/rk3399_rockchip-uboot/include/configs/xilinx-ppc405-generic.h
/rk3399_rockchip-uboot/include/configs/xilinx-ppc440-generic.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp_ep.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/fpga.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpbp.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpio.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmac.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmng.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpni.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dprc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc_cmd.h
/rk3399_rockchip-uboot/include/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/include/fsl_validate.h
/rk3399_rockchip-uboot/include/lcd.h
/rk3399_rockchip-uboot/include/linux/bug.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/part.h
/rk3399_rockchip-uboot/include/usb_ether.h
/rk3399_rockchip-uboot/include/wait_bit.h
/rk3399_rockchip-uboot/include/winbond_w83627.h
/rk3399_rockchip-uboot/lib/tpm.c
/rk3399_rockchip-uboot/scripts/Kbuild.include
/rk3399_rockchip-uboot/scripts/Makefile.spl
py/u_boot_spawn.py
ac94b7bc17-Jan-2016 Simon Glass <sjg@chromium.org>

dm: syscon: Allow finding devices by driver data

We have a way to find a regmap by its syscon driver data value. Add the same
for syscon itself.

Signed-off-by: Simon Glass <sjg@chromium.org>
Review

dm: syscon: Allow finding devices by driver data

We have a way to find a regmap by its syscon driver data value. Add the same
for syscon itself.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

show more ...


/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/prcm.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-jerry.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-rock2-som.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-rock2-square.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-veyron-chromebook.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-veyron.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/edp_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/hdmi_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/pmu_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/pwm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/vop_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/cpu_sun4i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/i2c.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/prcm.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/reset_rk3288.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/sdram_rk3288.c
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/start.S
/rk3399_rockchip-uboot/arch/nds32/include/asm/macro.h
/rk3399_rockchip-uboot/arch/nds32/include/asm/posix_types.h
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/valleyview.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/pci.c
/rk3399_rockchip-uboot/arch/x86/cpu/interrupts.c
/rk3399_rockchip-uboot/arch/x86/cpu/irq.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/bd82x6x.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/qemu.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/quark/irq.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/quark.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/irq.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/tnc.c
/rk3399_rockchip-uboot/arch/x86/dts/bayleybay.dts
/rk3399_rockchip-uboot/arch/x86/dts/broadwell_som-6896.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_link.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebox_panther.dts
/rk3399_rockchip-uboot/arch/x86/dts/crownbay.dts
/rk3399_rockchip-uboot/arch/x86/dts/galileo.dts
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/dts/qemu-x86_i440fx.dts
/rk3399_rockchip-uboot/arch/x86/dts/qemu-x86_q35.dts
/rk3399_rockchip-uboot/arch/x86/include/asm/irq.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/mpspec.c
/rk3399_rockchip-uboot/board/kylin/kylin_rk3036/kylin_rk3036.c
/rk3399_rockchip-uboot/board/radxa/rock2/Kconfig
/rk3399_rockchip-uboot/board/radxa/rock2/MAINTAINERS
/rk3399_rockchip-uboot/board/radxa/rock2/Makefile
/rk3399_rockchip-uboot/board/radxa/rock2/rock2.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/common/cmd_gpio.c
/rk3399_rockchip-uboot/common/cmd_regulator.c
/rk3399_rockchip-uboot/common/stdio.c
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_defconfig
/rk3399_rockchip-uboot/configs/rock2_defconfig
/rk3399_rockchip-uboot/doc/README.rockchip
/rk3399_rockchip-uboot/doc/device-tree-bindings/pinctrl/pinctrl-bindings.txt
/rk3399_rockchip-uboot/drivers/Kconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/clk/Makefile
/rk3399_rockchip-uboot/drivers/clk/clk-uclass.c
/rk3399_rockchip-uboot/drivers/clk/clk_fixed_rate.c
/rk3399_rockchip-uboot/drivers/clk/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/clk/clk_rk3288.c
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/lists.c
/rk3399_rockchip-uboot/drivers/core/syscon-uclass.c
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/gpio/rk_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/muxes/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/muxes/Makefile
/rk3399_rockchip-uboot/drivers/i2c/mvtwsi.c
/rk3399_rockchip-uboot/drivers/i2c/rk_i2c.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/pwrseq-uclass.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/pch/Makefile
/rk3399_rockchip-uboot/drivers/pch/pch-uclass.c
/rk3399_rockchip-uboot/drivers/pch/pch7.c
/rk3399_rockchip-uboot/drivers/pch/pch9.c
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/pci/pci_compat.c
/rk3399_rockchip-uboot/drivers/pci/pci_internal.h
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-uclass.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3036.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3288.c
/rk3399_rockchip-uboot/drivers/power/pmic/Kconfig
/rk3399_rockchip-uboot/drivers/power/pmic/Makefile
/rk3399_rockchip-uboot/drivers/power/pmic/pmic-uclass.c
/rk3399_rockchip-uboot/drivers/power/pmic/rk808.c
/rk3399_rockchip-uboot/drivers/power/regulator/Kconfig
/rk3399_rockchip-uboot/drivers/power/regulator/Makefile
/rk3399_rockchip-uboot/drivers/power/regulator/regulator-uclass.c
/rk3399_rockchip-uboot/drivers/power/regulator/rk808.c
/rk3399_rockchip-uboot/drivers/pwm/Kconfig
/rk3399_rockchip-uboot/drivers/pwm/Makefile
/rk3399_rockchip-uboot/drivers/pwm/pwm-uclass.c
/rk3399_rockchip-uboot/drivers/pwm/rk_pwm.c
/rk3399_rockchip-uboot/drivers/spi/ich.c
/rk3399_rockchip-uboot/drivers/spi/rk_spi.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-pci.c
/rk3399_rockchip-uboot/drivers/video/Kconfig
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/backlight-uclass.c
/rk3399_rockchip-uboot/drivers/video/bridge/video-bridge-uclass.c
/rk3399_rockchip-uboot/drivers/video/display-uclass.c
/rk3399_rockchip-uboot/drivers/video/panel-uclass.c
/rk3399_rockchip-uboot/drivers/video/pwm_backlight.c
/rk3399_rockchip-uboot/drivers/video/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_edp.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_hdmi.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_vop.c
/rk3399_rockchip-uboot/drivers/video/simple_panel.c
/rk3399_rockchip-uboot/drivers/video/tegra124/display.c
/rk3399_rockchip-uboot/drivers/video/tegra124/dp.c
/rk3399_rockchip-uboot/drivers/video/vidconsole-uclass.c
/rk3399_rockchip-uboot/drivers/video/video-uclass.c
/rk3399_rockchip-uboot/dts/Makefile
/rk3399_rockchip-uboot/include/backlight.h
/rk3399_rockchip-uboot/include/clk.h
/rk3399_rockchip-uboot/include/configs/chromebook_jerry.h
/rk3399_rockchip-uboot/include/configs/firefly-rk3288.h
/rk3399_rockchip-uboot/include/configs/kylin_rk3036.h
/rk3399_rockchip-uboot/include/configs/qemu-x86.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rock2.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/display.h
/rk3399_rockchip-uboot/include/dm/pinctrl.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/dm/uclass-internal.h
/rk3399_rockchip-uboot/include/edid.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/panel.h
/rk3399_rockchip-uboot/include/pch.h
/rk3399_rockchip-uboot/include/pci.h
/rk3399_rockchip-uboot/include/power/rk808_pmic.h
/rk3399_rockchip-uboot/include/pwm.h
/rk3399_rockchip-uboot/include/pwrseq.h
/rk3399_rockchip-uboot/include/syscon.h
/rk3399_rockchip-uboot/include/video.h
/rk3399_rockchip-uboot/lib/fdtdec.c
dm/syscon.c
/rk3399_rockchip-uboot/tools/rkmux.py
747440d019-Jan-2016 Simon Glass <sjg@chromium.org>

dm: video: test: Test that bitmap display works correctly

Add a test for the 'bmp' command. Test both the uncompressed and compressed
versions of the file, since they use different code paths.

Sign

dm: video: test: Test that bitmap display works correctly

Add a test for the 'bmp' command. Test both the uncompressed and compressed
versions of the file, since they use different code paths.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>

show more ...

85e08db819-Jan-2016 Simon Glass <sjg@chromium.org>

dm: video: test: Add tests for rotated consoles

Test that text is displayed correctly when the console is rotated.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@

dm: video: test: Add tests for rotated consoles

Test that text is displayed correctly when the console is rotated.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>

show more ...

3c97c4fb19-Jan-2016 Simon Glass <sjg@chromium.org>

dm: video: test: Add tests for the video uclass

Add tests that check that the video console is working correcty. Also check
that text output produces the expected result. Test coverage includes
char

dm: video: test: Add tests for the video uclass

Add tests that check that the video console is working correcty. Also check
that text output produces the expected result. Test coverage includes
character output, wrapping and scrolling.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>

show more ...


/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a-twr-duart.dts
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a-twr-lpuart.dts
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a-twr.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a.dtsi
/rk3399_rockchip-uboot/arch/sandbox/dts/sandbox.dts
/rk3399_rockchip-uboot/arch/sandbox/dts/test.dts
/rk3399_rockchip-uboot/board/sandbox/sandbox.c
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/cmd_bmp.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/lcd.c
/rk3399_rockchip-uboot/common/stdio.c
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_dtb_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_ddr4_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/pcm052_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_nand_defconfig
/rk3399_rockchip-uboot/doc/driver-model/serial-howto.txt
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/sandbox.c
/rk3399_rockchip-uboot/drivers/serial/serial_lpuart.c
/rk3399_rockchip-uboot/drivers/video/Kconfig
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/console_normal.c
/rk3399_rockchip-uboot/drivers/video/console_rotate.c
/rk3399_rockchip-uboot/drivers/video/sandbox_sdl.c
/rk3399_rockchip-uboot/drivers/video/vidconsole-uclass.c
/rk3399_rockchip-uboot/drivers/video/video-uclass.c
/rk3399_rockchip-uboot/drivers/video/video_bmp.c
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/dm/test.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/lcd.h
/rk3399_rockchip-uboot/include/video.h
/rk3399_rockchip-uboot/include/video_console.h
/rk3399_rockchip-uboot/lib/fdtdec.c
dm/Makefile
dm/video.c
1c8b4d5f15-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: add a test for the sleep command

Execute "sleep", and validate that it sleeps for approximately the correct
amount of time.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Sim

test/py: add a test for the sleep command

Execute "sleep", and validate that it sleeps for approximately the correct
amount of time.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

3045d7f015-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: test the ums command

This test invokes the "ums" command in U-Boot, and validates that a USB
storage device is enumerated on the test host system, and can be read
from.

Signed-off-by: Step

test/py: test the ums command

This test invokes the "ums" command in U-Boot, and validates that a USB
storage device is enumerated on the test host system, and can be read
from.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

cc156f3f15-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: test the shell if command

Migrate all most tests from command_ut.c into the Python test system.
This allows the tests to be run against any U-Boot binary that supports
the if command (i.e.

test/py: test the shell if command

Migrate all most tests from command_ut.c into the Python test system.
This allows the tests to be run against any U-Boot binary that supports
the if command (i.e. where hush is enabled) without requiring that
binary to be permanently bloated with the code from command_ut.

Some tests in command_ut.c can only be executed from C code, since they
test internal (more unit-level) features of various U-Boot APIs. The
migrated tests can all operate directly from the U-Boot console.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

8b86c60915-Jan-2016 Stephen Warren <swarren@nvidia.com>

test/py: add test of basic shell functionality

This tests whether the following features of the U-Boot shell:
- Execution of a directly entered command.
- Compound commands (; delimiter).
- Quoting

test/py: add test of basic shell functionality

This tests whether the following features of the U-Boot shell:
- Execution of a directly entered command.
- Compound commands (; delimiter).
- Quoting of arguments containing spaces.
- Executing commands from environment variables.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

98cee89b15-Jan-2016 Stephen Warren <swarren@wwwdotorg.org>

test/py: test the md/mw commands

This tests whether md/mw work, and affect each-other.

Command repeat is also tested.

test/cmd_repeat.sh is removed, since the new Python-based test does
everything

test/py: test the md/mw commands

This tests whether md/mw work, and affect each-other.

Command repeat is also tested.

test/cmd_repeat.sh is removed, since the new Python-based test does
everything it used to.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

5ab097ab15-Jan-2016 Stephen Warren <swarren@wwwdotorg.org>

test/py: add test of setenv/printenv/echo

This tests basic environment variable functionality.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Stephen Warren <swarren@nvidia.co

test/py: add test of setenv/printenv/echo

This tests basic environment variable functionality.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

472040d515-Jan-2016 Stephen Warren <swarren@wwwdotorg.org>

test/py: test that sandbox exits when asked

Test the sandbox port's implementation of the reset command and SIGHUP
handling. These should both cause the U-Boot process to exit gracefully.

Signed-of

test/py: test that sandbox exits when asked

Test the sandbox port's implementation of the reset command and SIGHUP
handling. These should both cause the U-Boot process to exit gracefully.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

d201506c15-Jan-2016 Stephen Warren <swarren@wwwdotorg.org>

test/py: Implement pytest infrastructure

This tool aims to test U-Boot by executing U-Boot shell commands using the
console interface. A single top-level script exists to execute or attach
to the U-

test/py: Implement pytest infrastructure

This tool aims to test U-Boot by executing U-Boot shell commands using the
console interface. A single top-level script exists to execute or attach
to the U-Boot console, run the entire script of tests against it, and
summarize the results. Advantages of this approach are:

- Testing is performed in the same way a user or script would interact
with U-Boot; there can be no disconnect.
- There is no need to write or embed test-related code into U-Boot itself.
It is asserted that writing test-related code in Python is simpler and
more flexible that writing it all in C.
- It is reasonably simple to interact with U-Boot in this way.

A few simple tests are provided as examples. Soon, we should convert as
many as possible of the other tests in test/* and test/cmd_ut.c too.

The hook scripts, relay control utilities, and udev rules I use for my
own HW setup are published at https://github.com/swarren/uboot-test-hooks.

See README.md for more details!

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Tested-by: Michal Simek <michal.simek@xilinx.com>
Tested-by: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org> #v3

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/lpc32xx/devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/utils.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache_v8.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fwcall.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/start.S
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/am335x-boneblack.dts
/rk3399_rockchip-uboot/arch/arm/dts/am335x-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/am437x-gp-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/am437x-sk-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-370-xp.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-388-clearfog.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-388-gp.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-38x.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-xp-gp.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-xp-maxbcm.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-xp-synology-ds414.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-xp.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/dra7-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/dra72-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/thunderx-88xx.dts
/rk3399_rockchip-uboot/arch/arm/dts/thunderx-88xx.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-lpc32xx/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap4/ehci.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7740-gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7740.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/funcmux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/tegra_i2c.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/clock-tables.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/flow.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/funcmux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/gp_padctrl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/pmu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/sysctr.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra124/mc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/clock-tables.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/flow.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/funcmux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/gp_padctrl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/pmu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/armv8/mmu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/atomic.h
/rk3399_rockchip-uboot/arch/arm/include/asm/bitops.h
/rk3399_rockchip-uboot/arch/arm/include/asm/ehci-omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/arm/include/asm/system.h
/rk3399_rockchip-uboot/arch/arm/lib/crt0_64.S
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/init.c
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/dram.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/soc.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/lowlevel_spl.S
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/mbus.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/serdes/axp/board_env_spec.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/serdes/axp/high_speed_env_lib.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/qts-filter.sh
/rk3399_rockchip-uboot/arch/arm/mach-stm32/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-stm32/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f1/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f1/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f1/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f1/flash.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f1/soc.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f1/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f4/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f4/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f4/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f4/flash.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f4/soc.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f4/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/cache.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/gpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/funcmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/funcmux.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cache_uniphier.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-regs.h
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/start.S
/rk3399_rockchip-uboot/arch/m68k/include/asm/fsl_i2c.h
/rk3399_rockchip-uboot/arch/mips/Kconfig
/rk3399_rockchip-uboot/arch/mips/Makefile
/rk3399_rockchip-uboot/arch/mips/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/start.S
/rk3399_rockchip-uboot/arch/mips/dts/.gitignore
/rk3399_rockchip-uboot/arch/mips/dts/Makefile
/rk3399_rockchip-uboot/arch/mips/dts/include/dt-bindings
/rk3399_rockchip-uboot/arch/mips/dts/skeleton.dtsi
/rk3399_rockchip-uboot/arch/mips/include/asm/addrspace.h
/rk3399_rockchip-uboot/arch/mips/include/asm/asm.h
/rk3399_rockchip-uboot/arch/mips/include/asm/bitops.h
/rk3399_rockchip-uboot/arch/mips/include/asm/byteorder.h
/rk3399_rockchip-uboot/arch/mips/include/asm/cache.h
/rk3399_rockchip-uboot/arch/mips/include/asm/cachectl.h
/rk3399_rockchip-uboot/arch/mips/include/asm/cacheops.h
/rk3399_rockchip-uboot/arch/mips/include/asm/const.h
/rk3399_rockchip-uboot/arch/mips/include/asm/cpu-features.h
/rk3399_rockchip-uboot/arch/mips/include/asm/gpio.h
/rk3399_rockchip-uboot/arch/mips/include/asm/io.h
/rk3399_rockchip-uboot/arch/mips/include/asm/isadep.h
/rk3399_rockchip-uboot/arch/mips/include/asm/mach-generic/cpu-feature-overrides.h
/rk3399_rockchip-uboot/arch/mips/include/asm/mach-generic/ioremap.h
/rk3399_rockchip-uboot/arch/mips/include/asm/mach-generic/mangle-port.h
/rk3399_rockchip-uboot/arch/mips/include/asm/mach-generic/spaces.h
/rk3399_rockchip-uboot/arch/mips/include/asm/mipsregs.h
/rk3399_rockchip-uboot/arch/mips/include/asm/pgtable-bits.h
/rk3399_rockchip-uboot/arch/mips/include/asm/posix_types.h
/rk3399_rockchip-uboot/arch/mips/include/asm/processor.h
/rk3399_rockchip-uboot/arch/mips/include/asm/ptrace.h
/rk3399_rockchip-uboot/arch/mips/include/asm/reboot.h
/rk3399_rockchip-uboot/arch/mips/include/asm/reg.h
/rk3399_rockchip-uboot/arch/mips/include/asm/regdef.h
/rk3399_rockchip-uboot/arch/mips/include/asm/sgidefs.h
/rk3399_rockchip-uboot/arch/mips/include/asm/string.h
/rk3399_rockchip-uboot/arch/mips/include/asm/system.h
/rk3399_rockchip-uboot/arch/mips/include/asm/types.h
/rk3399_rockchip-uboot/arch/mips/include/asm/unaligned.h
/rk3399_rockchip-uboot/arch/mips/lib/cache.c
/rk3399_rockchip-uboot/arch/mips/lib/cache_init.S
/rk3399_rockchip-uboot/arch/mips/mach-au1x00/au1x00_eth.c
/rk3399_rockchip-uboot/arch/mips/mach-au1x00/au1x00_serial.c
/rk3399_rockchip-uboot/arch/mips/mach-au1x00/au1x00_usb_ohci.c
/rk3399_rockchip-uboot/arch/mips/mach-au1x00/include/mach/au1x00.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/ether_scc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/law.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/fec.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/scc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/video.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/fsl_lbc.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_dma.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_i2c.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_law.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/mpc8xxx_spi.h
/rk3399_rockchip-uboot/arch/sandbox/cpu/eth-raw-os.c
/rk3399_rockchip-uboot/arch/sh/include/asm/mmc.h
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/fsp_configs.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/mp_init.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/fw_cfg.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/qemu.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/quark.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/fsp_configs.c
/rk3399_rockchip-uboot/arch/x86/dts/microcode/m12306a2_00000008.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/microcode/m12306a4_00000007.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/microcode/m12306a5_00000007.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/microcode/m12306a8_00000010.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/qemu-x86_i440fx.dts
/rk3399_rockchip-uboot/arch/x86/dts/qemu-x86_q35.dts
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-baytrail/fsp/fsp_configs.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-coreboot/timestamp.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/pch.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-queensbay/fsp/fsp_configs.h
/rk3399_rockchip-uboot/arch/x86/include/asm/fsp/fsp_api.h
/rk3399_rockchip-uboot/arch/x86/include/asm/fsp/fsp_support.h
/rk3399_rockchip-uboot/arch/x86/include/asm/fw_cfg.h
/rk3399_rockchip-uboot/arch/x86/lib/fsp/cmd_fsp.c
/rk3399_rockchip-uboot/arch/x86/lib/fsp/fsp_support.c
/rk3399_rockchip-uboot/arch/x86/lib/gcc.c
/rk3399_rockchip-uboot/board/Marvell/db-88f6820-gp/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/db-mv784mp-gp/db-mv784mp-gp.c
/rk3399_rockchip-uboot/board/Marvell/db-mv784mp-gp/kwbimage.cfg
/rk3399_rockchip-uboot/board/Synology/common/Makefile
/rk3399_rockchip-uboot/board/Synology/common/cmd_syno.c
/rk3399_rockchip-uboot/board/Synology/ds414/Makefile
/rk3399_rockchip-uboot/board/Synology/ds414/ds414.c
/rk3399_rockchip-uboot/board/Synology/ds414/kwbimage.cfg
/rk3399_rockchip-uboot/board/amcc/yucca/config.mk
/rk3399_rockchip-uboot/board/cavium/thunderx/Kconfig
/rk3399_rockchip-uboot/board/cavium/thunderx/MAINTAINERS
/rk3399_rockchip-uboot/board/cavium/thunderx/Makefile
/rk3399_rockchip-uboot/board/cavium/thunderx/atf.c
/rk3399_rockchip-uboot/board/cavium/thunderx/thunderx.c
/rk3399_rockchip-uboot/board/compal/paz00/paz00.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/omapl138_lcdk.c
/rk3399_rockchip-uboot/board/dbau1x00/dbau1x00.c
/rk3399_rockchip-uboot/board/dbau1x00/lowlevel_init.S
/rk3399_rockchip-uboot/board/freescale/b4860qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/eth_b4860qds.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/eth_hydra.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/eth_superhydra.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/p3041ds_ddr.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/p4080ds_ddr.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/p5020ds_ddr.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/p5040ds_ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8540ads/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8541cds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8544ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8548cds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8555cds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8560ads/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8568mds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8569mds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8610hpcd/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/ddr.c
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/ddr.c
/rk3399_rockchip-uboot/board/freescale/p2041rdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/eth_t102xqds.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/eth.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/eth_t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/eth.c
/rk3399_rockchip-uboot/board/gdsys/common/ihs_mdio.c
/rk3399_rockchip-uboot/board/gdsys/p1022/controlcenterd-id.c
/rk3399_rockchip-uboot/board/gdsys/p1022/controlcenterd-id.h
/rk3399_rockchip-uboot/board/gdsys/p1022/ddr.c
/rk3399_rockchip-uboot/board/gdsys/p1022/diu.c
/rk3399_rockchip-uboot/board/gdsys/p1022/law.c
/rk3399_rockchip-uboot/board/gdsys/p1022/tlb.c
/rk3399_rockchip-uboot/board/google/chromebook_link/Kconfig
/rk3399_rockchip-uboot/board/google/chromebox_panther/Kconfig
/rk3399_rockchip-uboot/board/highbank/ahci.c
/rk3399_rockchip-uboot/board/imgtec/malta/malta.c
/rk3399_rockchip-uboot/board/isee/igep00x0/igep00x0.c
/rk3399_rockchip-uboot/board/keymile/common/common.c
/rk3399_rockchip-uboot/board/lge/sniper/sniper.h
/rk3399_rockchip-uboot/board/maxbcm/kwbimage.cfg
/rk3399_rockchip-uboot/board/maxbcm/maxbcm.c
/rk3399_rockchip-uboot/board/micronas/vct/vct.h
/rk3399_rockchip-uboot/board/mpl/common/common_util.c
/rk3399_rockchip-uboot/board/nvidia/cardhu/pinmux-config-cardhu.h
/rk3399_rockchip-uboot/board/nvidia/dalmore/dalmore.c
/rk3399_rockchip-uboot/board/nvidia/dalmore/pinmux-config-dalmore.h
/rk3399_rockchip-uboot/board/pb1x00/lowlevel_init.S
/rk3399_rockchip-uboot/board/pb1x00/pb1x00.c
/rk3399_rockchip-uboot/board/samsung/universal_c210/universal.c
/rk3399_rockchip-uboot/board/sbc8548/ddr.c
/rk3399_rockchip-uboot/board/sbc8641d/ddr.c
/rk3399_rockchip-uboot/board/siemens/rut/board.c
/rk3399_rockchip-uboot/board/socrates/ddr.c
/rk3399_rockchip-uboot/board/solidrun/clearfog/MAINTAINERS
/rk3399_rockchip-uboot/board/solidrun/clearfog/Makefile
/rk3399_rockchip-uboot/board/solidrun/clearfog/README
/rk3399_rockchip-uboot/board/solidrun/clearfog/clearfog.c
/rk3399_rockchip-uboot/board/solidrun/clearfog/kwbimage.cfg
/rk3399_rockchip-uboot/board/toradex/apalis_t30/pinmux-config-apalis_t30.h
/rk3399_rockchip-uboot/board/toradex/colibri_t30/pinmux-config-colibri_t30.h
/rk3399_rockchip-uboot/board/vscom/baltos/board.c
/rk3399_rockchip-uboot/board/xes/xpedite520x/ddr.c
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/config.mk
/rk3399_rockchip-uboot/board/xilinx/zynq/MicroZed_hw_platform/ps7_init_gpl.c
/rk3399_rockchip-uboot/board/xilinx/zynq/MicroZed_hw_platform/ps7_init_gpl.h
/rk3399_rockchip-uboot/board/xilinx/zynq/ZC702_hw_platform/ps7_init_gpl.c
/rk3399_rockchip-uboot/board/xilinx/zynq/ZC702_hw_platform/ps7_init_gpl.h
/rk3399_rockchip-uboot/board/xilinx/zynq/ZC706_hw_platform/ps7_init_gpl.c
/rk3399_rockchip-uboot/board/xilinx/zynq/ZC706_hw_platform/ps7_init_gpl.h
/rk3399_rockchip-uboot/board/xilinx/zynq/zed_hw_platform/ps7_init_gpl.c
/rk3399_rockchip-uboot/board/xilinx/zynq/zed_hw_platform/ps7_init_gpl.h
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/cli_simple.c
/rk3399_rockchip-uboot/common/cmd_bmp.c
/rk3399_rockchip-uboot/common/cmd_boot.c
/rk3399_rockchip-uboot/common/cmd_elf.c
/rk3399_rockchip-uboot/common/cmd_fs.c
/rk3399_rockchip-uboot/common/cmd_i2c.c
/rk3399_rockchip-uboot/common/cmd_mtdparts.c
/rk3399_rockchip-uboot/common/ddr_spd.c
/rk3399_rockchip-uboot/common/env_flags.c
/rk3399_rockchip-uboot/common/image.c
/rk3399_rockchip-uboot/common/init/board_init.c
/rk3399_rockchip-uboot/common/usb.c
/rk3399_rockchip-uboot/common/usb_storage.c
/rk3399_rockchip-uboot/configs/M5208EVBE_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M5235EVB_Flash32_defconfig
/rk3399_rockchip-uboot/configs/M5235EVB_defconfig
/rk3399_rockchip-uboot/configs/M5249EVB_defconfig
/rk3399_rockchip-uboot/configs/M5253DEMO_defconfig
/rk3399_rockchip-uboot/configs/M5253EVBE_defconfig
/rk3399_rockchip-uboot/configs/M5272C3_defconfig
/rk3399_rockchip-uboot/configs/M5275EVB_defconfig
/rk3399_rockchip-uboot/configs/M5282EVB_defconfig
/rk3399_rockchip-uboot/configs/M53017EVB_defconfig
/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig
/rk3399_rockchip-uboot/configs/M5329BFEE_defconfig
/rk3399_rockchip-uboot/configs/M5373EVB_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_lowfreq_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_a66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_i66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_intel_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_stm33_defconfig
/rk3399_rockchip-uboot/configs/M5475AFE_defconfig
/rk3399_rockchip-uboot/configs/M5475BFE_defconfig
/rk3399_rockchip-uboot/configs/M5475CFE_defconfig
/rk3399_rockchip-uboot/configs/M5475DFE_defconfig
/rk3399_rockchip-uboot/configs/M5475EFE_defconfig
/rk3399_rockchip-uboot/configs/M5475FFE_defconfig
/rk3399_rockchip-uboot/configs/M5475GFE_defconfig
/rk3399_rockchip-uboot/configs/M5485AFE_defconfig
/rk3399_rockchip-uboot/configs/M5485BFE_defconfig
/rk3399_rockchip-uboot/configs/M5485CFE_defconfig
/rk3399_rockchip-uboot/configs/M5485DFE_defconfig
/rk3399_rockchip-uboot/configs/M5485EFE_defconfig
/rk3399_rockchip-uboot/configs/M5485FFE_defconfig
/rk3399_rockchip-uboot/configs/M5485GFE_defconfig
/rk3399_rockchip-uboot/configs/M5485HFE_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_gp_evm_defconfig
/rk3399_rockchip-uboot/configs/am437x_gp_evm_defconfig
/rk3399_rockchip-uboot/configs/am437x_sk_evm_defconfig
/rk3399_rockchip-uboot/configs/amcore_defconfig
/rk3399_rockchip-uboot/configs/axm_defconfig
/rk3399_rockchip-uboot/configs/bayleybay_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/clearfog_defconfig
/rk3399_rockchip-uboot/configs/cobra5272_defconfig
/rk3399_rockchip-uboot/configs/coreboot-x86_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-gp_defconfig
/rk3399_rockchip-uboot/configs/db-mv784mp-gp_defconfig
/rk3399_rockchip-uboot/configs/devkit3250_defconfig
/rk3399_rockchip-uboot/configs/dra72_evm_defconfig
/rk3399_rockchip-uboot/configs/dra74_evm_defconfig
/rk3399_rockchip-uboot/configs/ds414_defconfig
/rk3399_rockchip-uboot/configs/eb_cpu5282_defconfig
/rk3399_rockchip-uboot/configs/eb_cpu5282_internal_defconfig
/rk3399_rockchip-uboot/configs/galileo_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0020_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/maxbcm_defconfig
/rk3399_rockchip-uboot/configs/microblaze-generic_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_defconfig
/rk3399_rockchip-uboot/configs/rpi_2_defconfig
/rk3399_rockchip-uboot/configs/rpi_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/stm32f429-discovery_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/thunderx_88xx_defconfig
/rk3399_rockchip-uboot/configs/work_92105_defconfig
/rk3399_rockchip-uboot/disk/part.c
/rk3399_rockchip-uboot/disk/part_dos.c
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/disk/part_iso.c
/rk3399_rockchip-uboot/doc/README.arm64
/rk3399_rockchip-uboot/doc/README.x86
/rk3399_rockchip-uboot/doc/device-tree-bindings/chosen.txt
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/block/Makefile
/rk3399_rockchip-uboot/drivers/block/mvsata_ide.c
/rk3399_rockchip-uboot/drivers/block/sata_dwc.c
/rk3399_rockchip-uboot/drivers/block/sata_mv.c
/rk3399_rockchip-uboot/drivers/clk/Kconfig
/rk3399_rockchip-uboot/drivers/clk/clk-uclass.c
/rk3399_rockchip-uboot/drivers/clk/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/clk/clk_rk3288.c
/rk3399_rockchip-uboot/drivers/clk/clk_sandbox.c
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/ddr/altera/sdram.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr1_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr2_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr3_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/lc_common_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/mpc85xx_ddr_gen1.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/mpc85xx_ddr_gen2.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/mpc85xx_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/mpc86xx_ddr.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/util.c
/rk3399_rockchip-uboot/drivers/ddr/marvell/a38x/ddr3_debug.c
/rk3399_rockchip-uboot/drivers/ddr/marvell/a38x/ddr3_training_ip.h
/rk3399_rockchip-uboot/drivers/ddr/marvell/axp/ddr3_axp.h
/rk3399_rockchip-uboot/drivers/ddr/marvell/axp/ddr3_axp_config.h
/rk3399_rockchip-uboot/drivers/ddr/marvell/axp/ddr3_axp_mc_static.h
/rk3399_rockchip-uboot/drivers/ddr/marvell/axp/ddr3_write_leveling.c
/rk3399_rockchip-uboot/drivers/fpga/socfpga.c
/rk3399_rockchip-uboot/drivers/gpio/gpio-uclass.c
/rk3399_rockchip-uboot/drivers/gpio/pca953x.c
/rk3399_rockchip-uboot/drivers/i2c/fsl_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/mvtwsi.c
/rk3399_rockchip-uboot/drivers/misc/cbmem_console.c
/rk3399_rockchip-uboot/drivers/misc/ds4510.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/sh_mmcif.c
/rk3399_rockchip-uboot/drivers/mmc/sh_mmcif.h
/rk3399_rockchip-uboot/drivers/mtd/nand/nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/vf610_nfc.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf-uclass.c
/rk3399_rockchip-uboot/drivers/net/altera_tse.c
/rk3399_rockchip-uboot/drivers/net/at91_emac.c
/rk3399_rockchip-uboot/drivers/net/ax88180.c
/rk3399_rockchip-uboot/drivers/net/cpsw.c
/rk3399_rockchip-uboot/drivers/net/davinci_emac.c
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/dm9000x.c
/rk3399_rockchip-uboot/drivers/net/fm/memac_phy.c
/rk3399_rockchip-uboot/drivers/net/fm/tgec_phy.c
/rk3399_rockchip-uboot/drivers/net/fsl_mdio.c
/rk3399_rockchip-uboot/drivers/net/ftgmac100.c
/rk3399_rockchip-uboot/drivers/net/ftmac100.c
/rk3399_rockchip-uboot/drivers/net/greth.c
/rk3399_rockchip-uboot/drivers/net/keystone_net.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.c
/rk3399_rockchip-uboot/drivers/net/lpc32xx_eth.c
/rk3399_rockchip-uboot/drivers/net/mpc512x_fec.c
/rk3399_rockchip-uboot/drivers/net/mpc5xxx_fec.c
/rk3399_rockchip-uboot/drivers/net/mvgbe.c
/rk3399_rockchip-uboot/drivers/net/mvneta.c
/rk3399_rockchip-uboot/drivers/net/ne2000_base.c
/rk3399_rockchip-uboot/drivers/net/pch_gbe.c
/rk3399_rockchip-uboot/drivers/net/pcnet.c
/rk3399_rockchip-uboot/drivers/net/sh_eth.c
/rk3399_rockchip-uboot/drivers/net/tsec.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto_old.c
/rk3399_rockchip-uboot/drivers/pci/pci_mvebu.c
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-uclass.c
/rk3399_rockchip-uboot/drivers/power/regulator/max77686.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/arm_dcc.c
/rk3399_rockchip-uboot/drivers/serial/lpc32xx_hsuart.c
/rk3399_rockchip-uboot/drivers/serial/serial_pl01x.c
/rk3399_rockchip-uboot/drivers/spi/kirkwood_spi.c
/rk3399_rockchip-uboot/drivers/spi/rk_spi.c
/rk3399_rockchip-uboot/drivers/spi/sh_spi.c
/rk3399_rockchip-uboot/drivers/spi/sh_spi.h
/rk3399_rockchip-uboot/drivers/spi/tegra114_spi.c
/rk3399_rockchip-uboot/drivers/spi/tegra20_slink.c
/rk3399_rockchip-uboot/drivers/spi/ti_qspi.c
/rk3399_rockchip-uboot/drivers/timer/Kconfig
/rk3399_rockchip-uboot/drivers/timer/Makefile
/rk3399_rockchip-uboot/drivers/timer/omap-timer.c
/rk3399_rockchip-uboot/drivers/timer/sandbox_timer.c
/rk3399_rockchip-uboot/drivers/timer/timer-uclass.c
/rk3399_rockchip-uboot/drivers/usb/gadget/at91_udc.h
/rk3399_rockchip-uboot/drivers/usb/gadget/ci_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_fastboot.c
/rk3399_rockchip-uboot/drivers/usb/gadget/rndis.c
/rk3399_rockchip-uboot/drivers/usb/gadget/rndis.h
/rk3399_rockchip-uboot/drivers/usb/host/ehci-vf.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/am35x.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_core.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_core.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_debug.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_dma.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_dsps.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_gadget.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_gadget.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_gadget_ep0.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_host.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_host.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_io.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_regs.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/omap2430.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/omap2430.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/sunxi.c
/rk3399_rockchip-uboot/drivers/usb/musb/musb_core.h
/rk3399_rockchip-uboot/drivers/usb/ulpi/omap-ulpi-viewport.c
/rk3399_rockchip-uboot/drivers/usb/ulpi/ulpi-viewport.c
/rk3399_rockchip-uboot/drivers/video/da8xx-fb.c
/rk3399_rockchip-uboot/drivers/video/exynos_dp.c
/rk3399_rockchip-uboot/drivers/video/exynos_dp_lowlevel.c
/rk3399_rockchip-uboot/dts/Makefile
/rk3399_rockchip-uboot/fs/fs.c
/rk3399_rockchip-uboot/fs/ubifs/ubifs.c
/rk3399_rockchip-uboot/include/addr_map.h
/rk3399_rockchip-uboot/include/bzlib.h
/rk3399_rockchip-uboot/include/cavium/atf.h
/rk3399_rockchip-uboot/include/cavium/atf_part.h
/rk3399_rockchip-uboot/include/cavium/thunderx_svc.h
/rk3399_rockchip-uboot/include/clk.h
/rk3399_rockchip-uboot/include/command.h
/rk3399_rockchip-uboot/include/common_timing_params.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/bamboo.h
/rk3399_rockchip-uboot/include/configs/beaver.h
/rk3399_rockchip-uboot/include/configs/cardhu.h
/rk3399_rockchip-uboot/include/configs/clearfog.h
/rk3399_rockchip-uboot/include/configs/dalmore.h
/rk3399_rockchip-uboot/include/configs/db-88f6820-gp.h
/rk3399_rockchip-uboot/include/configs/db-mv784mp-gp.h
/rk3399_rockchip-uboot/include/configs/dbau1x00.h
/rk3399_rockchip-uboot/include/configs/devkit3250.h
/rk3399_rockchip-uboot/include/configs/ds414.h
/rk3399_rockchip-uboot/include/configs/iocon.h
/rk3399_rockchip-uboot/include/configs/malta.h
/rk3399_rockchip-uboot/include/configs/maxbcm.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/paz00.h
/rk3399_rockchip-uboot/include/configs/pb1x00.h
/rk3399_rockchip-uboot/include/configs/sniper.h
/rk3399_rockchip-uboot/include/configs/stm32f429-discovery.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tegra114-common.h
/rk3399_rockchip-uboot/include/configs/thunderx_88xx.h
/rk3399_rockchip-uboot/include/configs/ti_omap3_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/udoo.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/ddr_spd.h
/rk3399_rockchip-uboot/include/dm/platform_data/lpc32xx_hsuart.h
/rk3399_rockchip-uboot/include/ds4510.h
/rk3399_rockchip-uboot/include/dt-bindings/pinctrl/pinctrl-tegra.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/fs.h
/rk3399_rockchip-uboot/include/fsl_ddr.h
/rk3399_rockchip-uboot/include/fsl_ddr_dimm_params.h
/rk3399_rockchip-uboot/include/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/include/linux/bch.h
/rk3399_rockchip-uboot/include/linux/edd.h
/rk3399_rockchip-uboot/include/linux/input.h
/rk3399_rockchip-uboot/include/linux/psci.h
/rk3399_rockchip-uboot/include/mpc83xx.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/include/pca953x.h
/rk3399_rockchip-uboot/include/spi_flash.h
/rk3399_rockchip-uboot/include/timer.h
/rk3399_rockchip-uboot/include/u-boot/sha1.h
/rk3399_rockchip-uboot/include/usb/ulpi.h
/rk3399_rockchip-uboot/include/vsprintf.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/lib/addr_map.c
/rk3399_rockchip-uboot/lib/bch.c
/rk3399_rockchip-uboot/lib/bzip2/Makefile
/rk3399_rockchip-uboot/lib/bzip2/bzlib_blocksort.c
/rk3399_rockchip-uboot/lib/bzip2/bzlib_compress.c
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/gunzip.c
/rk3399_rockchip-uboot/lib/sha1.c
/rk3399_rockchip-uboot/lib/time.c
/rk3399_rockchip-uboot/lib/tiny-printf.c
/rk3399_rockchip-uboot/lib/vsprintf.c
/rk3399_rockchip-uboot/scripts/Makefile.autoconf
/rk3399_rockchip-uboot/scripts/Makefile.build
/rk3399_rockchip-uboot/scripts/Makefile.clean
/rk3399_rockchip-uboot/scripts/Makefile.extrawarn
/rk3399_rockchip-uboot/scripts/Makefile.host
/rk3399_rockchip-uboot/scripts/Makefile.lib
/rk3399_rockchip-uboot/scripts/Makefile.uncmd_spl
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/checklist.c
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/dialog.h
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/inputbox.c
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/menubox.c
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/textbox.c
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/util.c
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/yesno.c
/rk3399_rockchip-uboot/scripts/kconfig/mconf.c
py/.gitignore
py/README.md
py/conftest.py
py/multiplexed_log.css
py/multiplexed_log.py
py/pytest.ini
py/test.py
py/tests/test_000_version.py
py/tests/test_help.py
py/tests/test_unknown_cmd.py
py/u_boot_console_base.py
py/u_boot_console_exec_attach.py
py/u_boot_console_sandbox.py
py/u_boot_spawn.py
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/kwboot.c
/rk3399_rockchip-uboot/tools/microcode-tool.py
/rk3399_rockchip-uboot/tools/patman/gitutil.py
/rk3399_rockchip-uboot/tools/patman/patman.py
08eee27114-Dec-2015 Stephen Warren <swarren@nvidia.com>

test/fs: error case fixes/enhancements

- Use "mkdir -p" to avoid errors when intermediate directories are
missing.
- Fall back to "dd" when "fallocate" fails. For example, fallocate isn't
suppor

test/fs: error case fixes/enhancements

- Use "mkdir -p" to avoid errors when intermediate directories are
missing.
- Fall back to "dd" when "fallocate" fails. For example, fallocate isn't
supported on ext4.
- Add error checking for test image generation. Without this, the test
simply plows on spewing all kinds of errors which are hard to
immediately root-cause.

Signed-off-by: Stephen Warren <swarren@nvidia.com>

show more ...

7c4213f607-Dec-2015 Stephen Warren <swarren@nvidia.com>

block: pass block dev not num to read/write/erase()

This will allow the implementation to make use of data in the block_dev
structure beyond the base device number. This will be useful so that eMMC

block: pass block dev not num to read/write/erase()

This will allow the implementation to make use of data in the block_dev
structure beyond the base device number. This will be useful so that eMMC
block devices can encompass the HW partition ID rather than treating this
out-of-band. Equally, the existence of the priv field is crying out for
this patch to exist.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Tom Rini <trini@konsulko.com>

show more ...


/rk3399_rockchip-uboot/api/api_storage.c
/rk3399_rockchip-uboot/arch/arc/lib/start.S
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/dts/am4372.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/am437x-sk-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/dra7-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/dra7.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/dra72-evm.dts
/rk3399_rockchip-uboot/arch/arm/lib/crt0.S
/rk3399_rockchip-uboot/arch/arm/lib/crt0_64.S
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/arm-mpcore.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/bcu/bcu-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/bcu/bcu-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/bcu/bcu-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_common.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_early_init_f.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_early_init_r.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boards.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/boot-device.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/boot-mode-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/boot-mode-ph1-pro5.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/boot-mode-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/boot-mode-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/cmd_pinmon.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cache_uniphier.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/clk-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/clk-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/clk-ph1-pro5.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/clk-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cmd_ddrmphy.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/debug_ll.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/cmd_ddrphy.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrmphy-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-training.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/early-clk/early-clk-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/early-clk/early-clk-ph1-pro5.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/early-clk/early-clk-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ph1-pro5.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/late_lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/memconf/memconf-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/memconf/memconf-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/memconf/memconf.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/micro-support-card.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/micro-support-card.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-ph1-ld6b.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-ph1-pro5.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pinctrl/pinctrl-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pll/pll-init-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pll/pll-init-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pll/pll-init-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pll/pll-init-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pll/pll-spectrum-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/pll/pll-spectrum-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/print_misc_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sbc/sbc-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sbc/sbc-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sbc/sbc-ph1-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sbc/sbc-proxstream2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sbc/sbc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/sg-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/soc-info.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/soc_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ssc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/timer.c
/rk3399_rockchip-uboot/arch/microblaze/cpu/start.S
/rk3399_rockchip-uboot/arch/nios2/cpu/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/start.S
/rk3399_rockchip-uboot/arch/sandbox/cpu/eth-raw-os.c
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/valleyview.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/quark.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/topcliff.c
/rk3399_rockchip-uboot/arch/x86/cpu/start.S
/rk3399_rockchip-uboot/arch/x86/lib/fsp/fsp_common.c
/rk3399_rockchip-uboot/board/freescale/common/sdhc_boot.c
/rk3399_rockchip-uboot/board/gdsys/p1022/controlcenterd-id.c
/rk3399_rockchip-uboot/board/gdsys/p1022/sdhc_boot.c
/rk3399_rockchip-uboot/common/cmd_disk.c
/rk3399_rockchip-uboot/common/cmd_ide.c
/rk3399_rockchip-uboot/common/cmd_mmc.c
/rk3399_rockchip-uboot/common/cmd_read.c
/rk3399_rockchip-uboot/common/cmd_sata.c
/rk3399_rockchip-uboot/common/cmd_scsi.c
/rk3399_rockchip-uboot/common/cmd_usb.c
/rk3399_rockchip-uboot/common/cmd_usb_mass_storage.c
/rk3399_rockchip-uboot/common/env_mmc.c
/rk3399_rockchip-uboot/common/fb_mmc.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/hash.c
/rk3399_rockchip-uboot/common/image.c
/rk3399_rockchip-uboot/common/init/board_init.c
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/usb_storage.c
/rk3399_rockchip-uboot/configs/am437x_sk_evm_defconfig
/rk3399_rockchip-uboot/configs/dra72_evm_defconfig
/rk3399_rockchip-uboot/configs/dra74_evm_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3036_defconfig
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sr1500_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm011_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/disk/part_amiga.c
/rk3399_rockchip-uboot/disk/part_dos.c
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/disk/part_iso.c
/rk3399_rockchip-uboot/disk/part_mac.c
/rk3399_rockchip-uboot/doc/README.uniphier
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/block/sandbox.c
/rk3399_rockchip-uboot/drivers/block/systemace.c
/rk3399_rockchip-uboot/drivers/core/Kconfig
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/dfu/dfu_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc_spl.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/mmc_private.h
/rk3399_rockchip-uboot/drivers/mmc/mmc_write.c
/rk3399_rockchip-uboot/drivers/mmc/pci_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/sunxi_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf-uclass.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_internal.h
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_probe.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/net/e1000.c
/rk3399_rockchip-uboot/drivers/net/e1000.h
/rk3399_rockchip-uboot/drivers/net/e1000_spi.c
/rk3399_rockchip-uboot/drivers/net/fm/fm.c
/rk3399_rockchip-uboot/drivers/net/phy/cortina.c
/rk3399_rockchip-uboot/drivers/net/rtl8169.c
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pci_common.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/spi/ich.c
/rk3399_rockchip-uboot/drivers/spi/spi-uclass.c
/rk3399_rockchip-uboot/drivers/spi/ti_qspi.c
/rk3399_rockchip-uboot/drivers/usb/eth/mcs7830.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-pci.c
/rk3399_rockchip-uboot/fs/ext4/dev.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.c
/rk3399_rockchip-uboot/fs/fat/fat.c
/rk3399_rockchip-uboot/fs/fat/fat_write.c
/rk3399_rockchip-uboot/fs/reiserfs/dev.c
/rk3399_rockchip-uboot/fs/zfs/dev.c
/rk3399_rockchip-uboot/include/ahci.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/config_uncmd_spl.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/dm/device.h
/rk3399_rockchip-uboot/include/hash.h
/rk3399_rockchip-uboot/include/ide.h
/rk3399_rockchip-uboot/include/mmc.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/include/part.h
/rk3399_rockchip-uboot/include/pci.h
/rk3399_rockchip-uboot/include/power/pmic.h
/rk3399_rockchip-uboot/include/spi.h
/rk3399_rockchip-uboot/include/spi_flash.h
/rk3399_rockchip-uboot/lib/gunzip.c
dm/usb.c
c032241229-Nov-2015 Simon Glass <sjg@chromium.org>

dm: test: Convert PCI tests to use the DM PCI API

Update these tests to use driver model API functions.

Signed-off-by: Simon Glass <sjg@chromium.org>


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/bd82x6x.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/gma.c
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/bd82x6x.h
/rk3399_rockchip-uboot/arch/x86/lib/bios.c
/rk3399_rockchip-uboot/arch/x86/lib/bios_interrupts.c
/rk3399_rockchip-uboot/board/compulab/trimslice/trimslice.c
/rk3399_rockchip-uboot/board/nvidia/cardhu/cardhu.c
/rk3399_rockchip-uboot/board/nvidia/jetson-tk1/jetson-tk1.c
/rk3399_rockchip-uboot/board/nvidia/p2371-2180/p2371-2180.c
/rk3399_rockchip-uboot/board/toradex/apalis_t30/apalis_t30.c
/rk3399_rockchip-uboot/common/cmd_pci.c
/rk3399_rockchip-uboot/common/cmd_scsi.c
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/e1000.c
/rk3399_rockchip-uboot/drivers/net/pch_gbe.c
/rk3399_rockchip-uboot/drivers/net/rtl8169.c
/rk3399_rockchip-uboot/drivers/pci/Makefile
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pci.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto_old.c
/rk3399_rockchip-uboot/drivers/pci/pci_common.c
/rk3399_rockchip-uboot/drivers/pci/pci_compat.c
/rk3399_rockchip-uboot/drivers/pci/pci_internal.h
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-pci.c
/rk3399_rockchip-uboot/drivers/video/vesa_fb.c
/rk3399_rockchip-uboot/include/bios_emul.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/pci.h
/rk3399_rockchip-uboot/include/pci_rom.h
/rk3399_rockchip-uboot/lib/fdtdec.c
dm/pci.c
a57a817407-Jan-2016 Simon Glass <sjg@chromium.org>

dm: test: usb: Update the USB tests so that they all pass

Due to a limitation removed in an earlier patch, USB tests were not seeing
all the devices. Update the tests to pass now that all devices ar

dm: test: usb: Update the USB tests so that they all pass

Due to a limitation removed in an earlier patch, USB tests were not seeing
all the devices. Update the tests to pass now that all devices are visible.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/.mailmap
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/board.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/ecc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/pci.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/qe_io.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/spd_sdram.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/spl_minimal.c
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/README
/rk3399_rockchip-uboot/board/freescale/common/pfuze.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx25pdk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx28evk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx53ard/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx53smd/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd.c
/rk3399_rockchip-uboot/board/freescale/mx6slevk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/MAINTAINERS
/rk3399_rockchip-uboot/board/solidrun/mx6cuboxi/MAINTAINERS
/rk3399_rockchip-uboot/board/solidrun/mx6cuboxi/mx6cuboxi.c
/rk3399_rockchip-uboot/board/udoo/MAINTAINERS
/rk3399_rockchip-uboot/board/wandboard/MAINTAINERS
/rk3399_rockchip-uboot/board/wandboard/wandboard.c
/rk3399_rockchip-uboot/common/cmd_mem.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/usb_kbd.c
/rk3399_rockchip-uboot/common/usb_storage.c
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/doc/README.rockchip
/rk3399_rockchip-uboot/drivers/bootcount/bootcount.c
/rk3399_rockchip-uboot/drivers/gpio/mxs_gpio.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/net/phy/atheros.c
/rk3399_rockchip-uboot/drivers/net/sandbox.c
/rk3399_rockchip-uboot/drivers/pci/pcie_imx.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/drivers/thermal/imx_thermal.c
/rk3399_rockchip-uboot/drivers/watchdog/imx_watchdog.c
/rk3399_rockchip-uboot/fs/fs.c
/rk3399_rockchip-uboot/include/configs/chromebook_jerry.h
/rk3399_rockchip-uboot/include/configs/cyrus.h
/rk3399_rockchip-uboot/include/configs/mx6ul_14x14_evk.h
/rk3399_rockchip-uboot/include/configs/vexpress_aemv8a.h
/rk3399_rockchip-uboot/include/fsl_wdog.h
/rk3399_rockchip-uboot/include/misc.h
/rk3399_rockchip-uboot/include/usb.h
/rk3399_rockchip-uboot/net/eth.c
/rk3399_rockchip-uboot/net/net.c
/rk3399_rockchip-uboot/scripts/get_maintainer.pl
dm/usb.c
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/rkspi.c
b042566d03-Jan-2016 Simon Glass <sjg@chromium.org>

dm: Disable all SPI and SPI flash tests

This subsystem has been broken since commit:

4efad20a sf: Update status reg check in spi_flash_cmd_wait_ready

There has so far been no response from the

dm: Disable all SPI and SPI flash tests

This subsystem has been broken since commit:

4efad20a sf: Update status reg check in spi_flash_cmd_wait_ready

There has so far been no response from the maintainer, and a release is
imminent. For now, let's just disable the tests.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/.mailmap
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arc/dts/axs10x.dts
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/spl_power_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/ddr.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/ddr.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/boot-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun4i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun8i_a83t.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_sun8i_h3.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/pmic_bus.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch3_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/generic_timer.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_arria5_socdk.dts
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_de0_nano_soc.dts
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_mcvevk.dts
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_socdk.dts
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_sockit.dts
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_socrates.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun5i-a13-empire-electronix-d709.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-a83t-allwinner-h8homlet-v2.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-a83t.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-common32.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-ld4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-ld4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-ld6b-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-pro4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-pro4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-pro5-4kbox.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-pro5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-sld3-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-sld8-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-sld8.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-proxstream2-gentil.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-proxstream2-vodka.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-proxstream2.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zc706.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zed.dts
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zybo.dts
/rk3399_rockchip-uboot/arch/arm/imx-common/spl.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/ls102xa_soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mxs/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stm32f4/stm32.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram_sun8i_a83t.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/sdram_rk3036.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/board.c
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/include/mach/reset_manager.h
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/include/mach/system_manager.h
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/misc.c
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_late_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boards.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cmd_ddrphy.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-training.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ph1-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ph1-pro4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ph1-sld8.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/ddrphy-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/init.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/soc_info.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/soc_info.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/Kconfig
/rk3399_rockchip-uboot/arch/m68k/lib/Makefile
/rk3399_rockchip-uboot/arch/m68k/lib/ashldi3.c
/rk3399_rockchip-uboot/arch/m68k/lib/lshrdi3.c
/rk3399_rockchip-uboot/arch/m68k/lib/muldi3.c
/rk3399_rockchip-uboot/arch/microblaze/Kconfig
/rk3399_rockchip-uboot/arch/nios2/cpu/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cmd_errata.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/sandbox/dts/test.dts
/rk3399_rockchip-uboot/arch/x86/cpu/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/lpc.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/northbridge.c
/rk3399_rockchip-uboot/arch/x86/dts/crownbay.dts
/rk3399_rockchip-uboot/arch/x86/dts/galileo.dts
/rk3399_rockchip-uboot/board/altera/arria5-socdk/socfpga.c
/rk3399_rockchip-uboot/board/altera/cyclone5-socdk/qts/pinmux_config.h
/rk3399_rockchip-uboot/board/altera/cyclone5-socdk/qts/pll_config.h
/rk3399_rockchip-uboot/board/altera/cyclone5-socdk/socfpga.c
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/bcm28155_ap.c
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/MAINTAINERS
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/cgtqmx6eval.c
/rk3399_rockchip-uboot/board/denx/mcvevk/socfpga.c
/rk3399_rockchip-uboot/board/ebv/socrates/socfpga.c
/rk3399_rockchip-uboot/board/freescale/common/fman.c
/rk3399_rockchip-uboot/board/freescale/common/fsl_validate.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_rcw_nand.cfg
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_rcw_sd_ifc.cfg
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb_rcw_nand.cfg
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb_rcw_sd.cfg
/rk3399_rockchip-uboot/board/freescale/ls2080a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ls2080a.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb.c
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/mx6qsabreauto.c
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/mx6sxsabresd.c
/rk3399_rockchip-uboot/board/freescale/mx7dsabresd/mx7dsabresd.c
/rk3399_rockchip-uboot/board/freescale/qemu-ppce500/qemu-ppce500.c
/rk3399_rockchip-uboot/board/google/chromebook_link/Kconfig
/rk3399_rockchip-uboot/board/google/chromebox_panther/Kconfig
/rk3399_rockchip-uboot/board/kylin/kylin_rk3036/Kconfig
/rk3399_rockchip-uboot/board/kylin/kylin_rk3036/MAINTAINERS
/rk3399_rockchip-uboot/board/kylin/kylin_rk3036/Makefile
/rk3399_rockchip-uboot/board/kylin/kylin_rk3036/kylin_rk3036.c
/rk3399_rockchip-uboot/board/samsung/goni/goni.c
/rk3399_rockchip-uboot/board/samsung/odroid/odroid.c
/rk3399_rockchip-uboot/board/samsung/trats/trats.c
/rk3399_rockchip-uboot/board/samsung/trats2/trats2.c
/rk3399_rockchip-uboot/board/samsung/universal_c210/universal.c
/rk3399_rockchip-uboot/board/siemens/draco/board.c
/rk3399_rockchip-uboot/board/spear/spear600/spear600.c
/rk3399_rockchip-uboot/board/sr1500/socfpga.c
/rk3399_rockchip-uboot/board/st/stm32f429-discovery/stm32f429-discovery.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/terasic/de0-nano-soc/socfpga.c
/rk3399_rockchip-uboot/board/terasic/sockit/socfpga.c
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/microblaze-generic.c
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/xparameters.h
/rk3399_rockchip-uboot/board/xilinx/zynq/Makefile
/rk3399_rockchip-uboot/board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.c
/rk3399_rockchip-uboot/board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.h
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/bootm_os.c
/rk3399_rockchip-uboot/common/cli.c
/rk3399_rockchip-uboot/common/cli_hush.c
/rk3399_rockchip-uboot/common/cmd_bdinfo.c
/rk3399_rockchip-uboot/common/cmd_blob.c
/rk3399_rockchip-uboot/common/cmd_eeprom.c
/rk3399_rockchip-uboot/common/cmd_nvedit.c
/rk3399_rockchip-uboot/common/cmd_part.c
/rk3399_rockchip-uboot/common/env_callback.c
/rk3399_rockchip-uboot/common/env_flags.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/usb.c
/rk3399_rockchip-uboot/common/usb_kbd.c
/rk3399_rockchip-uboot/configs/10m50_defconfig
/rk3399_rockchip-uboot/configs/3c120_defconfig
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/A20-Olimex-SOM-EVB_defconfig
/rk3399_rockchip-uboot/configs/Ainol_AW1_defconfig
/rk3399_rockchip-uboot/configs/Ampe_A76_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T003_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Bananapro_defconfig
/rk3399_rockchip-uboot/configs/CHIP_defconfig
/rk3399_rockchip-uboot/configs/CSQ_CS908_defconfig
/rk3399_rockchip-uboot/configs/Chuwi_V7_CW0825_defconfig
/rk3399_rockchip-uboot/configs/Colombus_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Empire_electronix_d709_defconfig
/rk3399_rockchip-uboot/configs/Hummingbird_A31_defconfig
/rk3399_rockchip-uboot/configs/Hyundai_A7HD_defconfig
/rk3399_rockchip-uboot/configs/Lamobo_R1_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_Nano_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino_defconfig
/rk3399_rockchip-uboot/configs/MK808C_defconfig
/rk3399_rockchip-uboot/configs/MSI_Primo73_defconfig
/rk3399_rockchip-uboot/configs/MSI_Primo81_defconfig
/rk3399_rockchip-uboot/configs/Marsboard_A10_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_quad_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mele_I7_defconfig
/rk3399_rockchip-uboot/configs/Mele_M3_defconfig
/rk3399_rockchip-uboot/configs/Mele_M5_defconfig
/rk3399_rockchip-uboot/configs/Mele_M9_defconfig
/rk3399_rockchip-uboot/configs/Merrii_A80_Optimus_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_mini_defconfig
/rk3399_rockchip-uboot/configs/Sinlinx_SinA33_defconfig
/rk3399_rockchip-uboot/configs/Sinovoip_BPI_M2_defconfig
/rk3399_rockchip-uboot/configs/UTOO_P66_defconfig
/rk3399_rockchip-uboot/configs/Wexler_TAB7200_defconfig
/rk3399_rockchip-uboot/configs/Wits_Pro_A20_DKT_defconfig
/rk3399_rockchip-uboot/configs/Wobo_i5_defconfig
/rk3399_rockchip-uboot/configs/Yones_Toptech_BD1078_defconfig
/rk3399_rockchip-uboot/configs/axs101_defconfig
/rk3399_rockchip-uboot/configs/axs103_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/ga10h_v1_1_defconfig
/rk3399_rockchip-uboot/configs/gt90h_v4_defconfig
/rk3399_rockchip-uboot/configs/h8_homlet_v2_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/iNet_3F_defconfig
/rk3399_rockchip-uboot/configs/iNet_3W_defconfig
/rk3399_rockchip-uboot/configs/iNet_86VS_defconfig
/rk3399_rockchip-uboot/configs/inet1_defconfig
/rk3399_rockchip-uboot/configs/inet97fv2_defconfig
/rk3399_rockchip-uboot/configs/inet98v_rev2_defconfig
/rk3399_rockchip-uboot/configs/inet9f_rev03_defconfig
/rk3399_rockchip-uboot/configs/jesurun_q5_defconfig
/rk3399_rockchip-uboot/configs/kylin-rk3036_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/microblaze-generic_defconfig
/rk3399_rockchip-uboot/configs/mixtile_loftq_defconfig
/rk3399_rockchip-uboot/configs/mk802_a10s_defconfig
/rk3399_rockchip-uboot/configs/mk802_defconfig
/rk3399_rockchip-uboot/configs/mk802ii_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_defconfig
/rk3399_rockchip-uboot/configs/orangepi_plus_defconfig
/rk3399_rockchip-uboot/configs/pov_protab2_ips9_defconfig
/rk3399_rockchip-uboot/configs/q8_a13_tablet_defconfig
/rk3399_rockchip-uboot/configs/q8_a23_tablet_800x480_defconfig
/rk3399_rockchip-uboot/configs/q8_a33_tablet_1024x600_defconfig
/rk3399_rockchip-uboot/configs/q8_a33_tablet_800x480_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de0_nano_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sr1500_defconfig
/rk3399_rockchip-uboot/configs/sunxi_Gemei_G9_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld4_sld8_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pro4_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pro5_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pxs2_ld6b_defconfig
/rk3399_rockchip-uboot/configs/uniphier_sld3_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm011_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/doc/README.imx6
/rk3399_rockchip-uboot/doc/README.rockchip
/rk3399_rockchip-uboot/doc/README.uniphier
/rk3399_rockchip-uboot/doc/driver-model/serial-howto.txt
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/core/Kconfig
/rk3399_rockchip-uboot/drivers/crypto/fsl/jr.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_ddr_gen4.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/options.c
/rk3399_rockchip-uboot/drivers/i2c/muxes/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/mxc_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/mmc_write.c
/rk3399_rockchip-uboot/drivers/mmc/socfpga_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/altera_qspi.c
/rk3399_rockchip-uboot/drivers/mtd/spi/Makefile
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_internal.h
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_probe.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/io.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/e1000.c
/rk3399_rockchip-uboot/drivers/net/fec_mxc.c
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/ls1043.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_portal.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/phy/micrel.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/power/Kconfig
/rk3399_rockchip-uboot/drivers/power/Makefile
/rk3399_rockchip-uboot/drivers/power/axp818.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/serial/serial_mxc.c
/rk3399_rockchip-uboot/drivers/serial/serial_stm32.c
/rk3399_rockchip-uboot/drivers/spi/Kconfig
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/drivers/spi/spi-uclass.c
/rk3399_rockchip-uboot/drivers/spi/ti_qspi.c
/rk3399_rockchip-uboot/drivers/spi/xilinx_spi.c
/rk3399_rockchip-uboot/drivers/spi/zynq_qspi.c
/rk3399_rockchip-uboot/drivers/spi/zynq_spi.c
/rk3399_rockchip-uboot/drivers/timer/tsc_timer.c
/rk3399_rockchip-uboot/drivers/usb/gadget/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/bcm_udc_otg_phy.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_phy.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_priv.h
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_regs.h
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_xfer_dma.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-exynos.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-generic.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_host.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/usb-compat.h
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/axp818.h
/rk3399_rockchip-uboot/include/axp_pmic.h
/rk3399_rockchip-uboot/include/configs/10m50_devboard.h
/rk3399_rockchip-uboot/include/configs/3c120_devboard.h
/rk3399_rockchip-uboot/include/configs/axs101.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bf609-ezkit.h
/rk3399_rockchip-uboot/include/configs/exynos4-common.h
/rk3399_rockchip-uboot/include/configs/galileo.h
/rk3399_rockchip-uboot/include/configs/kylin_rk3036.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1043ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080aqds.h
/rk3399_rockchip-uboot/include/configs/ls2080ardb.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/mx7_common.h
/rk3399_rockchip-uboot/include/configs/mx7dsabresd.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/s5pc210_universal.h
/rk3399_rockchip-uboot/include/configs/smdkv310.h
/rk3399_rockchip-uboot/include/configs/socfpga_arria5_socdk.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/socfpga_cyclone5_socdk.h
/rk3399_rockchip-uboot/include/configs/socfpga_de0_nano_soc.h
/rk3399_rockchip-uboot/include/configs/socfpga_mcvevk.h
/rk3399_rockchip-uboot/include/configs/socfpga_sockit.h
/rk3399_rockchip-uboot/include/configs/socfpga_socrates.h
/rk3399_rockchip-uboot/include/configs/socfpga_sr1500.h
/rk3399_rockchip-uboot/include/configs/spear-common.h
/rk3399_rockchip-uboot/include/configs/stm32f429-discovery.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/sun8i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tb100.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/x86-chromebook.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/zynq_zybo.h
/rk3399_rockchip-uboot/include/dm/platform_data/serial_stm32.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/include/fsl_errata.h
/rk3399_rockchip-uboot/include/fsl_esdhc.h
/rk3399_rockchip-uboot/include/fsl_validate.h
/rk3399_rockchip-uboot/include/mmc.h
/rk3399_rockchip-uboot/include/usb.h
/rk3399_rockchip-uboot/include/usb/dwc2_udc.h
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/panic.c
/rk3399_rockchip-uboot/lib/strto.c
/rk3399_rockchip-uboot/lib/tiny-printf.c
/rk3399_rockchip-uboot/lib/vsprintf.c
/rk3399_rockchip-uboot/net/eth.c
/rk3399_rockchip-uboot/scripts/checkpatch.pl
dm/Makefile
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/buildman/README
/rk3399_rockchip-uboot/tools/env/fw_env.c
/rk3399_rockchip-uboot/tools/mkimage.c
/rk3399_rockchip-uboot/tools/rkcommon.c
/rk3399_rockchip-uboot/tools/rkcommon.h
/rk3399_rockchip-uboot/tools/rkimage.c
/rk3399_rockchip-uboot/tools/rksd.c
/rk3399_rockchip-uboot/tools/rkspi.c
/rk3399_rockchip-uboot/tools/zynqimage.c
cbb2df2007-Dec-2015 Tom Rini <trini@konsulko.com>

CONFIG_NEEDS_MANUAL_RELOC: Fix warnings when not set

Now that we may compile (but not link) code calling fixup_cmdtable when
this is not set, we need to always have the declaration available. We
sh

CONFIG_NEEDS_MANUAL_RELOC: Fix warnings when not set

Now that we may compile (but not link) code calling fixup_cmdtable when
this is not set, we need to always have the declaration available. We
should also make sure that anyone calling the function includes
<command.h> as that's where the function declaration is.

Signed-off-by: Tom Rini <trini@konsulko.com>

show more ...


/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_sr1500.dts
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/misc.c
/rk3399_rockchip-uboot/board/sr1500/MAINTAINERS
/rk3399_rockchip-uboot/board/sr1500/Makefile
/rk3399_rockchip-uboot/board/sr1500/qts/iocsr_config.h
/rk3399_rockchip-uboot/board/sr1500/qts/pinmux_config.h
/rk3399_rockchip-uboot/board/sr1500/qts/pll_config.h
/rk3399_rockchip-uboot/board/sr1500/qts/sdram_config.h
/rk3399_rockchip-uboot/board/sr1500/socfpga.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de0_nano_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sr1500_defconfig
/rk3399_rockchip-uboot/drivers/core/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/socfpga_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/altera_qspi.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/core.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-omap.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-generic.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-dwc3.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-fsl.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-omap.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-zynqmp.c
/rk3399_rockchip-uboot/include/command.h
/rk3399_rockchip-uboot/include/configs/socfpga_sr1500.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp_ep.h
/rk3399_rockchip-uboot/include/fsl_usb.h
/rk3399_rockchip-uboot/include/linux/usb/dwc3.h
dm/cmd_dm.c
d6df048b04-Dec-2015 Michal Simek <michal.simek@xilinx.com>

dm: cmd: Relocate subcommands when MANUAL_RELOC

Subcommands contain pointers to functions which are not updated when
MANUAL_RELOC is enabled. This patch fix it.

Signed-off-by: Michal Simek <michal.

dm: cmd: Relocate subcommands when MANUAL_RELOC

Subcommands contain pointers to functions which are not updated when
MANUAL_RELOC is enabled. This patch fix it.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ep93xx/led.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/spl_power_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_sun8i_h3.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f1/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f1/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f1/flash.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f1/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f1/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f4/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f4/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f4/flash.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f4/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/stm32f4/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache_v8.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/README.lsch3
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch3_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch3_speed.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/ls2080a_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/mp.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/spl.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/am33xx.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/am4372.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/dra7-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/dra7.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a-qds.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a-rdb.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2080a-qds.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2080a-rdb.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2080a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3036-sdk.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3036.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_arria5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_socrates.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun7i-a20-lamobo-r1.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-orangepi-pc.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-orangepi-plus.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zc702.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/fdt.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/fsl_serdes.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/ls2080a_stream_id.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-lpc32xx/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/timer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/uart.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stm32f1/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stm32f1/stm32.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stm32f4/fmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stm32f4/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram_sun8i_h3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynqmp/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/armv7m.h
/rk3399_rockchip-uboot/arch/arm/include/asm/armv8/mmu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/iomux-v3.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/lib/interrupts_m.c
/rk3399_rockchip-uboot/arch/arm/lib/vectors_m.S
/rk3399_rockchip-uboot/arch/arm/mach-at91/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-at91/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/sama5d2_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/sama5d4_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/atmel_sfr.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_pmc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/atmel_pio4.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/atmel_usba_udc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5_sfr.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5d2.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5d4.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/matrix.c
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/include/mach/mbox.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/reset_rk3036.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/save_boot_param.S
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/sdram_rk3036.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/syscon_rk3036.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk_early_print.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk_timer.c
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/cache.c
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/clk.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/clock.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/gpio.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/mmc.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/periph.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/pinmux.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/power.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/pwm.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/sromc.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/uart.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/include/mach/watchdog.h
/rk3399_rockchip-uboot/arch/arm/mach-s5pc1xx/reset.S
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/include/mach/base_addr_a10.h
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/include/mach/base_addr_ac5.h
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/include/mach/reset_manager.h
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board2.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-zynq/include/mach/sys_proto.h
/rk3399_rockchip-uboot/arch/nios2/dts/10m50_devboard.dts
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config.h
/rk3399_rockchip-uboot/arch/sandbox/dts/sandbox.dts
/rk3399_rockchip-uboot/arch/sparc/Kconfig
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/cpu.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/cpu_init.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/interrupts.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/prom.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/serial.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/start.S
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/ambapp.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/cpu.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/cpu_init.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/interrupts.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/prom.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/serial.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/start.S
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/usb_uhci.c
/rk3399_rockchip-uboot/arch/sparc/include/asm/config.h
/rk3399_rockchip-uboot/arch/sparc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/sparc/include/asm/irq.h
/rk3399_rockchip-uboot/arch/sparc/include/asm/leon3.h
/rk3399_rockchip-uboot/arch/sparc/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/sparc/lib/Makefile
/rk3399_rockchip-uboot/arch/sparc/lib/bootm.c
/rk3399_rockchip-uboot/arch/sparc/lib/interrupts.c
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/valleyview.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/timestamp.c
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/efi/efi.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/qemu.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/quark/quark.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/tnc.c
/rk3399_rockchip-uboot/arch/x86/dts/bayleybay.dts
/rk3399_rockchip-uboot/arch/x86/dts/broadwell_som-6896.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_link.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebox_panther.dts
/rk3399_rockchip-uboot/arch/x86/dts/crownbay.dts
/rk3399_rockchip-uboot/arch/x86/dts/efi.dts
/rk3399_rockchip-uboot/arch/x86/dts/galileo.dts
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/dts/qemu-x86_i440fx.dts
/rk3399_rockchip-uboot/arch/x86/dts/qemu-x86_q35.dts
/rk3399_rockchip-uboot/arch/x86/dts/serial.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/tsc_timer.dtsi
/rk3399_rockchip-uboot/arch/x86/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/board/armltd/vexpress64/Makefile
/rk3399_rockchip-uboot/board/armltd/vexpress64/pcie.c
/rk3399_rockchip-uboot/board/armltd/vexpress64/vexpress64.c
/rk3399_rockchip-uboot/board/atmel/sama5d2_xplained/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d2_xplained/MAINTAINERS
/rk3399_rockchip-uboot/board/atmel/sama5d2_xplained/Makefile
/rk3399_rockchip-uboot/board/atmel/sama5d2_xplained/sama5d2_xplained.c
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/README
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/cgtqmx6eval.c
/rk3399_rockchip-uboot/board/corscience/tricorder/tricorder-eeprom.c
/rk3399_rockchip-uboot/board/ebv/socrates/MAINTAINERS
/rk3399_rockchip-uboot/board/ebv/socrates/Makefile
/rk3399_rockchip-uboot/board/ebv/socrates/qts/iocsr_config.h
/rk3399_rockchip-uboot/board/ebv/socrates/qts/pinmux_config.h
/rk3399_rockchip-uboot/board/ebv/socrates/qts/pll_config.h
/rk3399_rockchip-uboot/board/ebv/socrates/qts/sdram_config.h
/rk3399_rockchip-uboot/board/ebv/socrates/socfpga.c
/rk3399_rockchip-uboot/board/evb_rk3036/evb_rk3036/Kconfig
/rk3399_rockchip-uboot/board/evb_rk3036/evb_rk3036/MAINTAINERS
/rk3399_rockchip-uboot/board/evb_rk3036/evb_rk3036/Makefile
/rk3399_rockchip-uboot/board/evb_rk3036/evb_rk3036/evb_rk3036.c
/rk3399_rockchip-uboot/board/freescale/common/vid.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/README
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_rcw_nand.cfg
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds_rcw_sd_ifc.cfg
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls2080a/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls2080a/Makefile
/rk3399_rockchip-uboot/board/freescale/ls2080a/README
/rk3399_rockchip-uboot/board/freescale/ls2080a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls2080a/ls2080a.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/Makefile
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/README
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/Makefile
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/README
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/eth_ls2080rdb.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb_qixis.h
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/common.c
/rk3399_rockchip-uboot/board/isee/igep00x0/igep00x0.c
/rk3399_rockchip-uboot/board/kosagi/novena/novena.c
/rk3399_rockchip-uboot/board/lge/sniper/sniper.c
/rk3399_rockchip-uboot/board/liebherr/lwmon5/Kconfig
/rk3399_rockchip-uboot/board/liebherr/lwmon5/MAINTAINERS
/rk3399_rockchip-uboot/board/liebherr/lwmon5/Makefile
/rk3399_rockchip-uboot/board/liebherr/lwmon5/config.mk
/rk3399_rockchip-uboot/board/liebherr/lwmon5/init.S
/rk3399_rockchip-uboot/board/liebherr/lwmon5/kbd.c
/rk3399_rockchip-uboot/board/liebherr/lwmon5/lwmon5.c
/rk3399_rockchip-uboot/board/liebherr/lwmon5/sdram.c
/rk3399_rockchip-uboot/board/logicpd/omap3som/omap3logic.c
/rk3399_rockchip-uboot/board/logicpd/zoom1/zoom1.c
/rk3399_rockchip-uboot/board/overo/overo.c
/rk3399_rockchip-uboot/board/quipos/cairo/cairo.c
/rk3399_rockchip-uboot/board/raspberrypi/rpi/rpi.c
/rk3399_rockchip-uboot/board/st/stm32f429-discovery/MAINTAINERS
/rk3399_rockchip-uboot/board/st/stm32f429-discovery/Makefile
/rk3399_rockchip-uboot/board/st/stm32f429-discovery/led.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/ti/am57xx/mux_data.h
/rk3399_rockchip-uboot/board/ti/beagle/beagle.c
/rk3399_rockchip-uboot/board/ti/dra7xx/mux_data.h
/rk3399_rockchip-uboot/board/timll/devkit8000/devkit8000.c
/rk3399_rockchip-uboot/board/toradex/colibri_vf/colibri_vf.c
/rk3399_rockchip-uboot/board/xilinx/zynq/board.c
/rk3399_rockchip-uboot/board/xilinx/zynqmp/zynqmp.c
/rk3399_rockchip-uboot/board/zyxel/nsa310s/Kconfig
/rk3399_rockchip-uboot/board/zyxel/nsa310s/MAINTAINERS
/rk3399_rockchip-uboot/board/zyxel/nsa310s/Makefile
/rk3399_rockchip-uboot/board/zyxel/nsa310s/kwbimage.cfg
/rk3399_rockchip-uboot/board/zyxel/nsa310s/nsa310s.c
/rk3399_rockchip-uboot/board/zyxel/nsa310s/nsa310s.h
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/cli_hush.c
/rk3399_rockchip-uboot/common/cmd_eeprom.c
/rk3399_rockchip-uboot/common/cmd_gpt.c
/rk3399_rockchip-uboot/common/cmd_i2c.c
/rk3399_rockchip-uboot/common/cmd_mmc.c
/rk3399_rockchip-uboot/common/cmd_pci.c
/rk3399_rockchip-uboot/common/console.c
/rk3399_rockchip-uboot/common/env_eeprom.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/miiphyutil.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/configs/10m50_defconfig
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/A20-Olimex-SOM-EVB_defconfig
/rk3399_rockchip-uboot/configs/Ainol_AW1_defconfig
/rk3399_rockchip-uboot/configs/Ampe_A76_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T003_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Bananapro_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NAND_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_defconfig
/rk3399_rockchip-uboot/configs/CHIP_defconfig
/rk3399_rockchip-uboot/configs/CPCI2DP_defconfig
/rk3399_rockchip-uboot/configs/CPCI4052_defconfig
/rk3399_rockchip-uboot/configs/CSQ_CS908_defconfig
/rk3399_rockchip-uboot/configs/Chuwi_V7_CW0825_defconfig
/rk3399_rockchip-uboot/configs/Colombus_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Cyrus_P5020_defconfig
/rk3399_rockchip-uboot/configs/Cyrus_P5040_defconfig
/rk3399_rockchip-uboot/configs/Hummingbird_A31_defconfig
/rk3399_rockchip-uboot/configs/Hyundai_A7HD_defconfig
/rk3399_rockchip-uboot/configs/Lamobo_R1_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_Nano_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_lowfreq_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_a66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_i66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_intel_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_stm33_defconfig
/rk3399_rockchip-uboot/configs/MIP405T_defconfig
/rk3399_rockchip-uboot/configs/MIP405_defconfig
/rk3399_rockchip-uboot/configs/MK808C_defconfig
/rk3399_rockchip-uboot/configs/MPC8308RDB_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_33_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_66_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_NAND_33_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_NAND_66_defconfig
/rk3399_rockchip-uboot/configs/MPC8315ERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC8323ERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_ATM_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_HOST_33_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_HOST_66_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_SLAVE_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8349EMDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITXGP_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITX_LOWBOOT_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITX_defconfig
/rk3399_rockchip-uboot/configs/MPC837XEMDS_HOST_defconfig
/rk3399_rockchip-uboot/configs/MPC837XEMDS_defconfig
/rk3399_rockchip-uboot/configs/MPC837XERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8540ADS_defconfig
/rk3399_rockchip-uboot/configs/MPC8541CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8541CDS_legacy_defconfig
/rk3399_rockchip-uboot/configs/MPC8544DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_legacy_defconfig
/rk3399_rockchip-uboot/configs/MPC8555CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8555CDS_legacy_defconfig
/rk3399_rockchip-uboot/configs/MPC8568MDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8569MDS_ATM_defconfig
/rk3399_rockchip-uboot/configs/MPC8569MDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8572DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8572DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8610HPCD_defconfig
/rk3399_rockchip-uboot/configs/MPC8641HPCN_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8641HPCN_defconfig
/rk3399_rockchip-uboot/configs/MSI_Primo73_defconfig
/rk3399_rockchip-uboot/configs/MSI_Primo81_defconfig
/rk3399_rockchip-uboot/configs/Marsboard_A10_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_quad_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mele_I7_defconfig
/rk3399_rockchip-uboot/configs/Mele_M3_defconfig
/rk3399_rockchip-uboot/configs/Mele_M5_defconfig
/rk3399_rockchip-uboot/configs/Mele_M9_defconfig
/rk3399_rockchip-uboot/configs/Merrii_A80_Optimus_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_mini_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_defconfig
/rk3399_rockchip-uboot/configs/P1023RDB_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_defconfig
/rk3399_rockchip-uboot/configs/PIP405_defconfig
/rk3399_rockchip-uboot/configs/PLU405_defconfig
/rk3399_rockchip-uboot/configs/PMC405DE_defconfig
/rk3399_rockchip-uboot/configs/PMC440_defconfig
/rk3399_rockchip-uboot/configs/Sinlinx_SinA33_defconfig
/rk3399_rockchip-uboot/configs/Sinovoip_BPI_M2_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_DDR4_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_DDR4_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_DDR4_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_defconfig
/rk3399_rockchip-uboot/configs/T4160RDB_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_defconfig
/rk3399_rockchip-uboot/configs/TQM834x_defconfig
/rk3399_rockchip-uboot/configs/TWR-P1025_defconfig
/rk3399_rockchip-uboot/configs/UCP1020_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/UCP1020_defconfig
/rk3399_rockchip-uboot/configs/UTOO_P66_defconfig
/rk3399_rockchip-uboot/configs/VOM405_defconfig
/rk3399_rockchip-uboot/configs/Wexler_TAB7200_defconfig
/rk3399_rockchip-uboot/configs/Wits_Pro_A20_DKT_defconfig
/rk3399_rockchip-uboot/configs/Wobo_i5_defconfig
/rk3399_rockchip-uboot/configs/Yones_Toptech_BD1078_defconfig
/rk3399_rockchip-uboot/configs/acadia_defconfig
/rk3399_rockchip-uboot/configs/adp-ag101p_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am335x_baltos_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_nor_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_norboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_spiboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_usbspl_defconfig
/rk3399_rockchip-uboot/configs/am335x_gp_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_igep0033_defconfig
/rk3399_rockchip-uboot/configs/am335x_sl50_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/am437x_gp_evm_defconfig
/rk3399_rockchip-uboot/configs/am437x_sk_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_ethboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_usbhost_boot_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_nodt_defconfig
/rk3399_rockchip-uboot/configs/apalis_t30_defconfig
/rk3399_rockchip-uboot/configs/arches_defconfig
/rk3399_rockchip-uboot/configs/aristainetos2_defconfig
/rk3399_rockchip-uboot/configs/aristainetos2b_defconfig
/rk3399_rockchip-uboot/configs/aristainetos_defconfig
/rk3399_rockchip-uboot/configs/aspenite_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_dataflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/atngw100_defconfig
/rk3399_rockchip-uboot/configs/atngw100mkii_defconfig
/rk3399_rockchip-uboot/configs/axm_defconfig
/rk3399_rockchip-uboot/configs/axs101_defconfig
/rk3399_rockchip-uboot/configs/axs103_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/bamboo_defconfig
/rk3399_rockchip-uboot/configs/bayleybay_defconfig
/rk3399_rockchip-uboot/configs/bcm11130_defconfig
/rk3399_rockchip-uboot/configs/bcm11130_nand_defconfig
/rk3399_rockchip-uboot/configs/bcm28155_ap_defconfig
/rk3399_rockchip-uboot/configs/bcm28155_w1d_defconfig
/rk3399_rockchip-uboot/configs/bcm911360_entphn-ns_defconfig
/rk3399_rockchip-uboot/configs/bcm911360_entphn_defconfig
/rk3399_rockchip-uboot/configs/bcm911360k_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k-ns_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k_defconfig
/rk3399_rockchip-uboot/configs/bcm958305k_defconfig
/rk3399_rockchip-uboot/configs/bcm958622hr_defconfig
/rk3399_rockchip-uboot/configs/beaver_defconfig
/rk3399_rockchip-uboot/configs/bf518f-ezbrd_defconfig
/rk3399_rockchip-uboot/configs/bf525-ucr2_defconfig
/rk3399_rockchip-uboot/configs/bf526-ezbrd_defconfig
/rk3399_rockchip-uboot/configs/bf527-ad7160-eval_defconfig
/rk3399_rockchip-uboot/configs/bf527-ezkit-v2_defconfig
/rk3399_rockchip-uboot/configs/bf527-ezkit_defconfig
/rk3399_rockchip-uboot/configs/bf527-sdp_defconfig
/rk3399_rockchip-uboot/configs/bf537-minotaur_defconfig
/rk3399_rockchip-uboot/configs/bf537-pnav_defconfig
/rk3399_rockchip-uboot/configs/bf537-srv1_defconfig
/rk3399_rockchip-uboot/configs/bf537-stamp_defconfig
/rk3399_rockchip-uboot/configs/bf548-ezkit_defconfig
/rk3399_rockchip-uboot/configs/bf561-acvilon_defconfig
/rk3399_rockchip-uboot/configs/bf609-ezkit_defconfig
/rk3399_rockchip-uboot/configs/bg0900_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/blackstamp_defconfig
/rk3399_rockchip-uboot/configs/blackvme_defconfig
/rk3399_rockchip-uboot/configs/br4_defconfig
/rk3399_rockchip-uboot/configs/bubinga_defconfig
/rk3399_rockchip-uboot/configs/caddy2_defconfig
/rk3399_rockchip-uboot/configs/cairo_defconfig
/rk3399_rockchip-uboot/configs/calimain_defconfig
/rk3399_rockchip-uboot/configs/canyonlands_defconfig
/rk3399_rockchip-uboot/configs/cardhu_defconfig
/rk3399_rockchip-uboot/configs/cgtqmx6eval_defconfig
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/cm_t335_defconfig
/rk3399_rockchip-uboot/configs/cm_t3517_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/cm_t43_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_TRAILBLAZER_DEVELOP_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_TRAILBLAZER_defconfig
/rk3399_rockchip-uboot/configs/coreboot-x86_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/d2net_v2_defconfig
/rk3399_rockchip-uboot/configs/da850_am18xxevm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_direct_nor_defconfig
/rk3399_rockchip-uboot/configs/dalmore_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-gp_defconfig
/rk3399_rockchip-uboot/configs/db-mv784mp-gp_defconfig
/rk3399_rockchip-uboot/configs/devconcenter_defconfig
/rk3399_rockchip-uboot/configs/devkit3250_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dlvision-10g_defconfig
/rk3399_rockchip-uboot/configs/dlvision_defconfig
/rk3399_rockchip-uboot/configs/dns325_defconfig
/rk3399_rockchip-uboot/configs/dockstar_defconfig
/rk3399_rockchip-uboot/configs/dra72_evm_defconfig
/rk3399_rockchip-uboot/configs/dra74_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_uart3_defconfig
/rk3399_rockchip-uboot/configs/draco_defconfig
/rk3399_rockchip-uboot/configs/dreamplug_defconfig
/rk3399_rockchip-uboot/configs/duovero_defconfig
/rk3399_rockchip-uboot/configs/e2220-1170_defconfig
/rk3399_rockchip-uboot/configs/ea20_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/edminiv2_defconfig
/rk3399_rockchip-uboot/configs/efi-x86_defconfig
/rk3399_rockchip-uboot/configs/ethernut5_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3036_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/fx12mm_defconfig
/rk3399_rockchip-uboot/configs/fx12mm_flash_defconfig
/rk3399_rockchip-uboot/configs/ga10h_v1_1_defconfig
/rk3399_rockchip-uboot/configs/galileo_defconfig
/rk3399_rockchip-uboot/configs/gdppc440etx_defconfig
/rk3399_rockchip-uboot/configs/glacier_defconfig
/rk3399_rockchip-uboot/configs/glacier_ramboot_defconfig
/rk3399_rockchip-uboot/configs/goflexhome_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/gplugd_defconfig
/rk3399_rockchip-uboot/configs/gt90h_v4_defconfig
/rk3399_rockchip-uboot/configs/guruplug_defconfig
/rk3399_rockchip-uboot/configs/haleakala_defconfig
/rk3399_rockchip-uboot/configs/harmony_defconfig
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/configs/hrcon_dh_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/iNet_3F_defconfig
/rk3399_rockchip-uboot/configs/iNet_3W_defconfig
/rk3399_rockchip-uboot/configs/iNet_86VS_defconfig
/rk3399_rockchip-uboot/configs/ib62x0_defconfig
/rk3399_rockchip-uboot/configs/icon_defconfig
/rk3399_rockchip-uboot/configs/iconnect_defconfig
/rk3399_rockchip-uboot/configs/ids8313_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0020_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0030_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/inet1_defconfig
/rk3399_rockchip-uboot/configs/inet97fv2_defconfig
/rk3399_rockchip-uboot/configs/inet98v_rev2_defconfig
/rk3399_rockchip-uboot/configs/inet9f_rev03_defconfig
/rk3399_rockchip-uboot/configs/inetspace_v2_defconfig
/rk3399_rockchip-uboot/configs/intip_defconfig
/rk3399_rockchip-uboot/configs/io64_defconfig
/rk3399_rockchip-uboot/configs/io_defconfig
/rk3399_rockchip-uboot/configs/iocon_defconfig
/rk3399_rockchip-uboot/configs/ip04_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/jesurun_q5_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/katmai_defconfig
/rk3399_rockchip-uboot/configs/kilauea_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_128m16_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_pci_defconfig
/rk3399_rockchip-uboot/configs/kmcoge4_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5ne_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5un_defconfig
/rk3399_rockchip-uboot/configs/kmeter1_defconfig
/rk3399_rockchip-uboot/configs/kmlion1_defconfig
/rk3399_rockchip-uboot/configs/kmnusa_defconfig
/rk3399_rockchip-uboot/configs/kmopti2_defconfig
/rk3399_rockchip-uboot/configs/kmsugp1_defconfig
/rk3399_rockchip-uboot/configs/kmsupx5_defconfig
/rk3399_rockchip-uboot/configs/kmsuv31_defconfig
/rk3399_rockchip-uboot/configs/kmtegr1_defconfig
/rk3399_rockchip-uboot/configs/kmtepr2_defconfig
/rk3399_rockchip-uboot/configs/kmvect1_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/kwb_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_ddr4_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nor_ddr3_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_emu_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_simu_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2085a_emu_defconfig
/rk3399_rockchip-uboot/configs/ls2085a_simu_defconfig
/rk3399_rockchip-uboot/configs/ls2085aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2085aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2085ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2085ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/lschlv2_defconfig
/rk3399_rockchip-uboot/configs/lsxhl_defconfig
/rk3399_rockchip-uboot/configs/luan_defconfig
/rk3399_rockchip-uboot/configs/lwmon5_defconfig
/rk3399_rockchip-uboot/configs/m28evk_defconfig
/rk3399_rockchip-uboot/configs/makalu_defconfig
/rk3399_rockchip-uboot/configs/malta_defconfig
/rk3399_rockchip-uboot/configs/maltael_defconfig
/rk3399_rockchip-uboot/configs/marsboard_defconfig
/rk3399_rockchip-uboot/configs/maxbcm_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/medcom-wide_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3un_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/mixtile_loftq_defconfig
/rk3399_rockchip-uboot/configs/mk802_a10s_defconfig
/rk3399_rockchip-uboot/configs/mk802_defconfig
/rk3399_rockchip-uboot/configs/mk802ii_defconfig
/rk3399_rockchip-uboot/configs/mpc8308_p1m_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_auart_console_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_nand_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_spi_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6qpsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabrelite_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/mx6slevk_defconfig
/rk3399_rockchip-uboot/configs/mx6slevk_spinor_defconfig
/rk3399_rockchip-uboot/configs/mx6slevk_spl_defconfig
/rk3399_rockchip-uboot/configs/nas220_defconfig
/rk3399_rockchip-uboot/configs/neo_defconfig
/rk3399_rockchip-uboot/configs/net2big_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_lite_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_max_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_mini_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_v2_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6dl2g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6dl_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6q2g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6q_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6s1g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6s_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/nsa310s_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_mmc_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_nand_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_overo_defconfig
/rk3399_rockchip-uboot/configs/omap3_pandora_defconfig
/rk3399_rockchip-uboot/configs/omap3_zoom1_defconfig
/rk3399_rockchip-uboot/configs/omap4_panda_defconfig
/rk3399_rockchip-uboot/configs/omap4_sdp4430_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/openrd_base_defconfig
/rk3399_rockchip-uboot/configs/openrd_client_defconfig
/rk3399_rockchip-uboot/configs/openrd_ultimate_defconfig
/rk3399_rockchip-uboot/configs/openrisc-generic_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_defconfig
/rk3399_rockchip-uboot/configs/orangepi_plus_defconfig
/rk3399_rockchip-uboot/configs/ot1200_defconfig
/rk3399_rockchip-uboot/configs/ot1200_spl_defconfig
/rk3399_rockchip-uboot/configs/p2371-0000_defconfig
/rk3399_rockchip-uboot/configs/p2371-2180_defconfig
/rk3399_rockchip-uboot/configs/p2571_defconfig
/rk3399_rockchip-uboot/configs/paz00_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/peach-pi_defconfig
/rk3399_rockchip-uboot/configs/peach-pit_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/plutux_defconfig
/rk3399_rockchip-uboot/configs/pogo_e02_defconfig
/rk3399_rockchip-uboot/configs/porter_defconfig
/rk3399_rockchip-uboot/configs/portl2_defconfig
/rk3399_rockchip-uboot/configs/pov_protab2_ips9_defconfig
/rk3399_rockchip-uboot/configs/pr1_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/q8_a13_tablet_defconfig
/rk3399_rockchip-uboot/configs/q8_a23_tablet_800x480_defconfig
/rk3399_rockchip-uboot/configs/q8_a33_tablet_1024x600_defconfig
/rk3399_rockchip-uboot/configs/q8_a33_tablet_800x480_defconfig
/rk3399_rockchip-uboot/configs/qemu-ppce500_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_defconfig
/rk3399_rockchip-uboot/configs/qemu_mips64_defconfig
/rk3399_rockchip-uboot/configs/qemu_mips64el_defconfig
/rk3399_rockchip-uboot/configs/qemu_mips_defconfig
/rk3399_rockchip-uboot/configs/qemu_mipsel_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/configs/rainier_defconfig
/rk3399_rockchip-uboot/configs/rainier_ramboot_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/redwood_defconfig
/rk3399_rockchip-uboot/configs/riotboard_defconfig
/rk3399_rockchip-uboot/configs/rut_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/sbc8349_PCI_33_defconfig
/rk3399_rockchip-uboot/configs/sbc8349_PCI_66_defconfig
/rk3399_rockchip-uboot/configs/sbc8349_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_33_PCIE_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_33_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_66_PCIE_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_66_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_defconfig
/rk3399_rockchip-uboot/configs/sbc8641d_defconfig
/rk3399_rockchip-uboot/configs/seaboard_defconfig
/rk3399_rockchip-uboot/configs/sequoia_defconfig
/rk3399_rockchip-uboot/configs/sequoia_ramboot_defconfig
/rk3399_rockchip-uboot/configs/sh7752evb_defconfig
/rk3399_rockchip-uboot/configs/sh7753evb_defconfig
/rk3399_rockchip-uboot/configs/sh7757lcr_defconfig
/rk3399_rockchip-uboot/configs/sheevaplug_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/configs/smdk5250_defconfig
/rk3399_rockchip-uboot/configs/smdk5420_defconfig
/rk3399_rockchip-uboot/configs/sniper_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de0_nano_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socrates_defconfig
/rk3399_rockchip-uboot/configs/spring_defconfig
/rk3399_rockchip-uboot/configs/stout_defconfig
/rk3399_rockchip-uboot/configs/strider_con_defconfig
/rk3399_rockchip-uboot/configs/strider_cpu_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/configs/sunxi_Gemei_G9_defconfig
/rk3399_rockchip-uboot/configs/suvd3_defconfig
/rk3399_rockchip-uboot/configs/sycamore_defconfig
/rk3399_rockchip-uboot/configs/t3corp_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tb100_defconfig
/rk3399_rockchip-uboot/configs/tec-ng_defconfig
/rk3399_rockchip-uboot/configs/tec_defconfig
/rk3399_rockchip-uboot/configs/thuban_defconfig
/rk3399_rockchip-uboot/configs/ti814x_evm_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_defconfig
/rk3399_rockchip-uboot/configs/tqma6q_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6q_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/tqma6s_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6s_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/tricorder_defconfig
/rk3399_rockchip-uboot/configs/tricorder_flash_defconfig
/rk3399_rockchip-uboot/configs/trimslice_defconfig
/rk3399_rockchip-uboot/configs/tseries_mmc_defconfig
/rk3399_rockchip-uboot/configs/tseries_nand_defconfig
/rk3399_rockchip-uboot/configs/tseries_spi_defconfig
/rk3399_rockchip-uboot/configs/tuge1_defconfig
/rk3399_rockchip-uboot/configs/tuxx1_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_small_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_small_defconfig
/rk3399_rockchip-uboot/configs/ve8313_defconfig
/rk3399_rockchip-uboot/configs/venice2_defconfig
/rk3399_rockchip-uboot/configs/ventana_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_dram_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_semi_defconfig
/rk3399_rockchip-uboot/configs/vme8349_defconfig
/rk3399_rockchip-uboot/configs/walnut_defconfig
/rk3399_rockchip-uboot/configs/whistler_defconfig
/rk3399_rockchip-uboot/configs/work_92105_defconfig
/rk3399_rockchip-uboot/configs/x600_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_ep_defconfig
/rk3399_rockchip-uboot/configs/xpedite1000_defconfig
/rk3399_rockchip-uboot/configs/xpedite517x_defconfig
/rk3399_rockchip-uboot/configs/xpedite520x_defconfig
/rk3399_rockchip-uboot/configs/xpedite537x_defconfig
/rk3399_rockchip-uboot/configs/xpedite550x_defconfig
/rk3399_rockchip-uboot/configs/yellowstone_defconfig
/rk3399_rockchip-uboot/configs/yosemite_defconfig
/rk3399_rockchip-uboot/configs/yucca_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm011_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/doc/README.fsl-trustzone-components
/rk3399_rockchip-uboot/doc/README.gpt
/rk3399_rockchip-uboot/doc/README.nand
/rk3399_rockchip-uboot/doc/README.rockchip
/rk3399_rockchip-uboot/doc/README.update
/rk3399_rockchip-uboot/doc/driver-model/serial-howto.txt
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/block/fsl_sata.c
/rk3399_rockchip-uboot/drivers/clk/Makefile
/rk3399_rockchip-uboot/drivers/clk/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/core/Kconfig
/rk3399_rockchip-uboot/drivers/core/Makefile
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_ddr_gen4.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/util.c
/rk3399_rockchip-uboot/drivers/gpio/Kconfig
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/atmel_pio4.c
/rk3399_rockchip-uboot/drivers/gpio/stm32_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/mmc/dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/socfpga_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/zynq_sdhci.c
/rk3399_rockchip-uboot/drivers/mtd/nand/pxa3xx_nand.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/fsl-mc/Makefile
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpbp.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/dpio.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpmac.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpni.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dprc.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc_sys.c
/rk3399_rockchip-uboot/drivers/net/greth.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/Makefile
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.h
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_wriop.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ls2080a.c
/rk3399_rockchip-uboot/drivers/net/phy/aquantia.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pci/Kconfig
/rk3399_rockchip-uboot/drivers/pci/Makefile
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto_common.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto_old.c
/rk3399_rockchip-uboot/drivers/pci/pci_common.c
/rk3399_rockchip-uboot/drivers/pci/pci_tegra.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/drivers/pinctrl/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3036.c
/rk3399_rockchip-uboot/drivers/power/Kconfig
/rk3399_rockchip-uboot/drivers/remoteproc/rproc-uclass.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/drivers/timer/Kconfig
/rk3399_rockchip-uboot/drivers/timer/Makefile
/rk3399_rockchip-uboot/drivers/timer/altera_timer.c
/rk3399_rockchip-uboot/drivers/timer/sandbox_timer.c
/rk3399_rockchip-uboot/drivers/timer/timer-uclass.c
/rk3399_rockchip-uboot/drivers/timer/tsc_timer.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/sunxi.c
/rk3399_rockchip-uboot/drivers/video/ipu_disp.c
/rk3399_rockchip-uboot/drivers/video/ipu_regs.h
/rk3399_rockchip-uboot/examples/api/libgenwrap.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.c
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/10m50_devboard.h
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/BSC9131RDB.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/C29XPCIE.h
/rk3399_rockchip-uboot/include/configs/CPCI2DP.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/M52277EVB.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/M54451EVB.h
/rk3399_rockchip-uboot/include/configs/M54455EVB.h
/rk3399_rockchip-uboot/include/configs/MIP405.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/MPC8313ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8315ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8323ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC832XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349EMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349ITX.h
/rk3399_rockchip-uboot/include/configs/MPC837XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC837XERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8540ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8541CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8544DS.h
/rk3399_rockchip-uboot/include/configs/MPC8548CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8555CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8568MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8569MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8572DS.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/P1023RDB.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/PIP405.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/PMC405DE.h
/rk3399_rockchip-uboot/include/configs/PMC440.h
/rk3399_rockchip-uboot/include/configs/T102xQDS.h
/rk3399_rockchip-uboot/include/configs/T102xRDB.h
/rk3399_rockchip-uboot/include/configs/T1040QDS.h
/rk3399_rockchip-uboot/include/configs/T104xRDB.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/T208xRDB.h
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/T4240RDB.h
/rk3399_rockchip-uboot/include/configs/TQM834x.h
/rk3399_rockchip-uboot/include/configs/UCP1020.h
/rk3399_rockchip-uboot/include/configs/VOM405.h
/rk3399_rockchip-uboot/include/configs/acadia.h
/rk3399_rockchip-uboot/include/configs/adp-ag101p.h
/rk3399_rockchip-uboot/include/configs/alt.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_sl50.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/apalis_t30.h
/rk3399_rockchip-uboot/include/configs/aristainetos-common.h
/rk3399_rockchip-uboot/include/configs/astro_mcf5373l.h
/rk3399_rockchip-uboot/include/configs/at91sam9n12ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/atngw100.h
/rk3399_rockchip-uboot/include/configs/atngw100mkii.h
/rk3399_rockchip-uboot/include/configs/axs101.h
/rk3399_rockchip-uboot/include/configs/baltos.h
/rk3399_rockchip-uboot/include/configs/bamboo.h
/rk3399_rockchip-uboot/include/configs/bav335x.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bcm_ep_board.h
/rk3399_rockchip-uboot/include/configs/beaver.h
/rk3399_rockchip-uboot/include/configs/bf506f-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf518f-ezbrd.h
/rk3399_rockchip-uboot/include/configs/bf525-ucr2.h
/rk3399_rockchip-uboot/include/configs/bf526-ezbrd.h
/rk3399_rockchip-uboot/include/configs/bf527-ad7160-eval.h
/rk3399_rockchip-uboot/include/configs/bf527-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf537-minotaur.h
/rk3399_rockchip-uboot/include/configs/bf537-pnav.h
/rk3399_rockchip-uboot/include/configs/bf537-srv1.h
/rk3399_rockchip-uboot/include/configs/bf548-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf561-acvilon.h
/rk3399_rockchip-uboot/include/configs/bfin_adi_common.h
/rk3399_rockchip-uboot/include/configs/bg0900.h
/rk3399_rockchip-uboot/include/configs/blackstamp.h
/rk3399_rockchip-uboot/include/configs/blackvme.h
/rk3399_rockchip-uboot/include/configs/br4.h
/rk3399_rockchip-uboot/include/configs/bur_am335x_common.h
/rk3399_rockchip-uboot/include/configs/calimain.h
/rk3399_rockchip-uboot/include/configs/canyonlands.h
/rk3399_rockchip-uboot/include/configs/cardhu.h
/rk3399_rockchip-uboot/include/configs/cgtqmx6eval.h
/rk3399_rockchip-uboot/include/configs/chromebook_jerry.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/cm_t3517.h
/rk3399_rockchip-uboot/include/configs/cm_t43.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/controlcenterd.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/crownbay.h
/rk3399_rockchip-uboot/include/configs/cyrus.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/dalmore.h
/rk3399_rockchip-uboot/include/configs/db-88f6820-gp.h
/rk3399_rockchip-uboot/include/configs/db-mv784mp-gp.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/dreamplug.h
/rk3399_rockchip-uboot/include/configs/e2220-1170.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/efi-x86.h
/rk3399_rockchip-uboot/include/configs/embestmx6boards.h
/rk3399_rockchip-uboot/include/configs/ethernut5.h
/rk3399_rockchip-uboot/include/configs/evb_rk3036.h
/rk3399_rockchip-uboot/include/configs/exynos5-common.h
/rk3399_rockchip-uboot/include/configs/firefly-rk3288.h
/rk3399_rockchip-uboot/include/configs/gdppc440etx.h
/rk3399_rockchip-uboot/include/configs/gose.h
/rk3399_rockchip-uboot/include/configs/gplugd.h
/rk3399_rockchip-uboot/include/configs/gr_cpci_ax2000.h
/rk3399_rockchip-uboot/include/configs/gr_ep2s60.h
/rk3399_rockchip-uboot/include/configs/gr_xc3s_1500.h
/rk3399_rockchip-uboot/include/configs/grsim.h
/rk3399_rockchip-uboot/include/configs/grsim_leon2.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/hrcon.h
/rk3399_rockchip-uboot/include/configs/icon.h
/rk3399_rockchip-uboot/include/configs/ids8313.h
/rk3399_rockchip-uboot/include/configs/imx6_spl.h
/rk3399_rockchip-uboot/include/configs/intip.h
/rk3399_rockchip-uboot/include/configs/iocon.h
/rk3399_rockchip-uboot/include/configs/ip04.h
/rk3399_rockchip-uboot/include/configs/ipam390.h
/rk3399_rockchip-uboot/include/configs/jetson-tk1.h
/rk3399_rockchip-uboot/include/configs/katmai.h
/rk3399_rockchip-uboot/include/configs/km/km-powerpc.h
/rk3399_rockchip-uboot/include/configs/km/km83xx-common.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/km/kmp204x-common.h
/rk3399_rockchip-uboot/include/configs/koelsch.h
/rk3399_rockchip-uboot/include/configs/lager.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1043ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080a_emu.h
/rk3399_rockchip-uboot/include/configs/ls2080a_simu.h
/rk3399_rockchip-uboot/include/configs/ls2080aqds.h
/rk3399_rockchip-uboot/include/configs/ls2080ardb.h
/rk3399_rockchip-uboot/include/configs/lsxl.h
/rk3399_rockchip-uboot/include/configs/luan.h
/rk3399_rockchip-uboot/include/configs/lwmon5.h
/rk3399_rockchip-uboot/include/configs/m28evk.h
/rk3399_rockchip-uboot/include/configs/malta.h
/rk3399_rockchip-uboot/include/configs/maxbcm.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/minnowmax.h
/rk3399_rockchip-uboot/include/configs/motionpro.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/mv-common.h
/rk3399_rockchip-uboot/include/configs/mx28evk.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/mx6slevk.h
/rk3399_rockchip-uboot/include/configs/mx6sxsabresd.h
/rk3399_rockchip-uboot/include/configs/mx6ul_14x14_evk.h
/rk3399_rockchip-uboot/include/configs/neo.h
/rk3399_rockchip-uboot/include/configs/nitrogen6x.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/nsa310s.h
/rk3399_rockchip-uboot/include/configs/nyan-big.h
/rk3399_rockchip-uboot/include/configs/omap3_evm_common.h
/rk3399_rockchip-uboot/include/configs/omap3_pandora.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/openrisc-generic.h
/rk3399_rockchip-uboot/include/configs/ot1200.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/p1_twr.h
/rk3399_rockchip-uboot/include/configs/p2371-0000.h
/rk3399_rockchip-uboot/include/configs/p2371-2180.h
/rk3399_rockchip-uboot/include/configs/p2571.h
/rk3399_rockchip-uboot/include/configs/pcm051.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/pengwyn.h
/rk3399_rockchip-uboot/include/configs/porter.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/qemu-mips.h
/rk3399_rockchip-uboot/include/configs/qemu-mips64.h
/rk3399_rockchip-uboot/include/configs/qemu-ppce500.h
/rk3399_rockchip-uboot/include/configs/qemu-x86.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/sama5d2_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d3xek.h
/rk3399_rockchip-uboot/include/configs/sama5d4_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d4ek.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/sbc8349.h
/rk3399_rockchip-uboot/include/configs/sbc8548.h
/rk3399_rockchip-uboot/include/configs/sbc8641d.h
/rk3399_rockchip-uboot/include/configs/sequoia.h
/rk3399_rockchip-uboot/include/configs/sh7752evb.h
/rk3399_rockchip-uboot/include/configs/sh7753evb.h
/rk3399_rockchip-uboot/include/configs/sh7757lcr.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/silk.h
/rk3399_rockchip-uboot/include/configs/sniper.h
/rk3399_rockchip-uboot/include/configs/socfpga_arria5_socdk.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/socfpga_cyclone5_socdk.h
/rk3399_rockchip-uboot/include/configs/socfpga_de0_nano_soc.h
/rk3399_rockchip-uboot/include/configs/socfpga_mcvevk.h
/rk3399_rockchip-uboot/include/configs/socfpga_sockit.h
/rk3399_rockchip-uboot/include/configs/socfpga_socrates.h
/rk3399_rockchip-uboot/include/configs/socrates.h
/rk3399_rockchip-uboot/include/configs/stout.h
/rk3399_rockchip-uboot/include/configs/strider.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/sun8i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/t3corp.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/tb100.h
/rk3399_rockchip-uboot/include/configs/tec-ng.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/ti814x_evm.h
/rk3399_rockchip-uboot/include/configs/ti816x_evm.h
/rk3399_rockchip-uboot/include/configs/ti_am335x_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/ti_omap3_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/configs/trimslice.h
/rk3399_rockchip-uboot/include/configs/tseries.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/ve8313.h
/rk3399_rockchip-uboot/include/configs/venice2.h
/rk3399_rockchip-uboot/include/configs/vexpress_aemv8a.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/configs/vme8349.h
/rk3399_rockchip-uboot/include/configs/walnut.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xilinx-ppc.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp_ep.h
/rk3399_rockchip-uboot/include/configs/xpedite1000.h
/rk3399_rockchip-uboot/include/configs/xpedite517x.h
/rk3399_rockchip-uboot/include/configs/xpedite520x.h
/rk3399_rockchip-uboot/include/configs/xpedite537x.h
/rk3399_rockchip-uboot/include/configs/xpedite550x.h
/rk3399_rockchip-uboot/include/configs/yosemite.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/configs/zynq_microzed.h
/rk3399_rockchip-uboot/include/configs/zynq_picozed.h
/rk3399_rockchip-uboot/include/configs/zynq_zc70x.h
/rk3399_rockchip-uboot/include/configs/zynq_zc770.h
/rk3399_rockchip-uboot/include/configs/zynq_zed.h
/rk3399_rockchip-uboot/include/configs/zynq_zybo.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3036-cru.h
/rk3399_rockchip-uboot/include/dwmmc.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/flash.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpbp.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpio.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmac.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpni.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dprc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc_private.h
/rk3399_rockchip-uboot/include/fsl-mc/ldpaa_wriop.h
/rk3399_rockchip-uboot/include/fsl_ddr.h
/rk3399_rockchip-uboot/include/i2c.h
/rk3399_rockchip-uboot/include/linux/usb/xhci-fsl.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/part.h
/rk3399_rockchip-uboot/include/pci.h
/rk3399_rockchip-uboot/include/timer.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/time.c
/rk3399_rockchip-uboot/lib/tiny-printf.c
/rk3399_rockchip-uboot/lib/vsprintf.c
dm/cmd_dm.c
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/kwbimage.c
/rk3399_rockchip-uboot/tools/kwbimage.h
/rk3399_rockchip-uboot/tools/mkimage.c
/rk3399_rockchip-uboot/tools/rkcommon.c
/rk3399_rockchip-uboot/tools/rkcommon.h
/rk3399_rockchip-uboot/tools/rkimage.c
/rk3399_rockchip-uboot/tools/rksd.c
/rk3399_rockchip-uboot/tools/rkspi.c
bff1a71e09-Nov-2015 Simon Glass <sjg@chromium.org>

dm: test: usb: sandbox: Add keyboard tests for sandbox

Add a test that verifies that USB keyboards work correctly on sandbox.
This verifies some additional parts of the USB stack.

Signed-off-by: Si

dm: test: usb: sandbox: Add keyboard tests for sandbox

Add a test that verifies that USB keyboards work correctly on sandbox.
This verifies some additional parts of the USB stack.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

cd71637209-Nov-2015 Simon Glass <sjg@chromium.org>

dm: test: usb: Add a test for device reordering

Add tests that 'usb tree' produces the right output when a device changes
order on the bus.

Signed-off-by: Simon Glass <sjg@chromium.org>

431cbd6d09-Nov-2015 Simon Glass <sjg@chromium.org>

dm: test: usb: Add tests for the 'usb tree' command

Add tests that this command produces the right output, even when a rescan
results in a device disappearing from the bus.

Signed-off-by: Simon Gla

dm: test: usb: Add tests for the 'usb tree' command

Add tests that this command produces the right output, even when a rescan
results in a device disappearing from the bus.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

1...<<1112131415161718