History log of /rk3399_rockchip-uboot/lib/ (Results 401 – 425 of 1133)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
70bfcdc620-Jun-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: disk: iterate only over valid block devices

The efi_loader currently stops iterating over the available
block devices stopping at the first device that fails.
This may imply that no bloc

efi_loader: disk: iterate only over valid block devices

The efi_loader currently stops iterating over the available
block devices stopping at the first device that fails.
This may imply that no block device is found.

With the patch efi_loader only iterates over valid devices.

It is based on patch
06d592bf52f6 (dm: core: Add uclass_first/next_device_check())
which is currently in u-boot-dm.git.

For testing I used an odroid-c2 with a dts including
&sd_emmc_a {
status = "okay";
};
This device does not exist on the board and cannot be initialized.

Without the patch:

=> bootefi hello
## Starting EFI application at 01000000 ...
WARNING: Invalid device tree, expect boot to fail
mmc_init: -95, time 1806
Found 0 disks
Hello, world!
## Application terminated, r = 0

With the patch:

=> bootefi hello
## Starting EFI application at 01000000 ...
WARNING: Invalid device tree, expect boot to fail
mmc_init: -95, time 1806
Scanning disk mmc@70000.blk...
Scanning disk mmc@72000.blk...
Card did not respond to voltage select!
mmc_init: -95, time 9
Scanning disk mmc@74000.blk...
Found 3 disks
Hello, world!
## Application terminated, r = 0

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

cc5b708111-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: implement EFI_DEVICE_PATH_TO_TEXT_PROTOCOL

ConvertPathToText is implemented for
* type 4 - media device path
* subtype 4 - file path

This is the kind of device path we hand out for b

efi_loader: implement EFI_DEVICE_PATH_TO_TEXT_PROTOCOL

ConvertPathToText is implemented for
* type 4 - media device path
* subtype 4 - file path

This is the kind of device path we hand out for block devices.

All other cases may be implemented later.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
[agraf: fix whitespace]
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

88adae5e11-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: reimplement efi_locate_protocol

The UEFI specification requires that LocateProtol finds the first
handle supporting the protocol and to return a pointer to its
interface.

So we have to

efi_loader: reimplement efi_locate_protocol

The UEFI specification requires that LocateProtol finds the first
handle supporting the protocol and to return a pointer to its
interface.

So we have to assign the protocols to an efi_object and not use
any separate storage.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

c2e703f911-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: implement LocateHandleBuffer

UEFI boot service LocateHandleBuffer is implemented by calling
efi_allocate_handle and efi_locate_handle.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gm

efi_loader: implement LocateHandleBuffer

UEFI boot service LocateHandleBuffer is implemented by calling
efi_allocate_handle and efi_locate_handle.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

2632958411-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: refactor efi_locate_handle

To implement LocateHandleBuffer we need to call efi_locate_handle
internally without running through EFI_EXIT.

So put EFI_ENTRY and EFI_EXIT into a new wrappe

efi_loader: refactor efi_locate_handle

To implement LocateHandleBuffer we need to call efi_locate_handle
internally without running through EFI_EXIT.

So put EFI_ENTRY and EFI_EXIT into a new wrapper function
efi_locate_handle_ext.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

58b8358611-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: implement InstallMultipleProtocolInterfaces

Implement InstallMultipleProtocolInterfaces in function
efi_install_multiple_protocol_interfaces by repeatedly
calling efi_install_protocol_in

efi_loader: implement InstallMultipleProtocolInterfaces

Implement InstallMultipleProtocolInterfaces in function
efi_install_multiple_protocol_interfaces by repeatedly
calling efi_install_protocol_interface.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

3d8e145611-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: refactor efi_uninstall_protocol_interface

For the implementation of UninstallMultipleProtocolInterfaces we
need to call efi_uninstall_protocol_interface. In internal calls
we should not

efi_loader: refactor efi_uninstall_protocol_interface

For the implementation of UninstallMultipleProtocolInterfaces we
need to call efi_uninstall_protocol_interface. In internal calls
we should not pass through EFI_EXIT.

The patch introduces a wrapper function
efi_uninstall_protocol_interface_ext.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

8bee5a3c11-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: refactor efi_install_protocol_interface

For the implementation of InstallMultipleProtocolInterfaces we
need to call efi_install_protocol_interface. In internal calls
we should not pass t

efi_loader: refactor efi_install_protocol_interface

For the implementation of InstallMultipleProtocolInterfaces we
need to call efi_install_protocol_interface. In internal calls
we should not pass through EFI_EXIT.

The patch introduces a wrapper function
efi_install_protocol_interface_ext.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

4b6ed0d711-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: implement UninstallProtocolInterface

Without the patch efi_uninstall_protocol_interface always returns an
error.

With the patch protocols without interface can be uninstalled.

Signed-o

efi_loader: implement UninstallProtocolInterface

Without the patch efi_uninstall_protocol_interface always returns an
error.

With the patch protocols without interface can be uninstalled.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

e0549f8a11-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: implement InstallProtocolInterface

efi_install_protocol_interface up to now only returned an error code.

The patch implements the UEFI specification for InstallProtocolInterface
with th

efi_loader: implement InstallProtocolInterface

efi_install_protocol_interface up to now only returned an error code.

The patch implements the UEFI specification for InstallProtocolInterface
with the exception that it will not create new handles.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

69baec6711-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: efi_open_protocol: parameter checks

Add all parameter checks for function efi_open_protocol that do not
depend on a locking table.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de

efi_loader: efi_open_protocol: parameter checks

Add all parameter checks for function efi_open_protocol that do not
depend on a locking table.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

b5349f7411-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: refactor efi_open_protocol

efi_open_protocol was implemented to call a protocol specific open
function to retrieve the protocol interface.

The UEFI specification does not know of such a

efi_loader: refactor efi_open_protocol

efi_open_protocol was implemented to call a protocol specific open
function to retrieve the protocol interface.

The UEFI specification does not know of such a function.

It is not possible to implement InstallProtocolInterface with the
current design.

With the patch the protocol interface itself is stored in the list
of installed protocols of an efi_object instead of an open function.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
[agraf: fix efi gop support]
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...


/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/rk3036.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3229-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk322x.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-phycore-rdk.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-phycore-som.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3368.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-firefly.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra114-dalmore.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-cei-tk1-som.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-jetson-tk1.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-venice2.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra186-p2771-0000.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-colibri.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-harmony.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-trimslice.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra210-e2220-1170.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra210-p2371-0000.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra210-p2371-2180.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra210-p2571.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-apalis.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-beaver.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-cardhu.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-colibri.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-tec-ng.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk322x.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/ddr_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk322x.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3368.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/pwm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_common.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/sdram_rk3036.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/sdram_rk3188.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk322x-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk322x-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk322x/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk322x/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk322x/clk_rk322x.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk322x/syscon_rk322x.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/sdram_rk3288.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/rk3328.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/sdram_rk3328.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/rk3368.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/sdram_rk3368.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/sdram_rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/sdram_common.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board2.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/clock.c
/rk3399_rockchip-uboot/board/geekbuying/geekbox/geekbox.c
/rk3399_rockchip-uboot/board/phytec/phycore_rk3288/Kconfig
/rk3399_rockchip-uboot/board/phytec/phycore_rk3288/MAINTAINERS
/rk3399_rockchip-uboot/board/phytec/phycore_rk3288/Makefile
/rk3399_rockchip-uboot/board/phytec/phycore_rk3288/phycore-rk3288.c
/rk3399_rockchip-uboot/board/rockchip/evb_px5/evb-px5.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3229/Kconfig
/rk3399_rockchip-uboot/board/rockchip/evb_rk3229/MAINTAINERS
/rk3399_rockchip-uboot/board/rockchip/evb_rk3229/Makefile
/rk3399_rockchip-uboot/board/rockchip/evb_rk3229/evb_rk3229.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/evb-rk3328.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3399/evb-rk3399.c
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/sheep_rk3368.c
/rk3399_rockchip-uboot/board/theobroma-systems/puma_rk3399/puma-rk3399.c
/rk3399_rockchip-uboot/cmd/bootefi.c
/rk3399_rockchip-uboot/cmd/fdt.c
/rk3399_rockchip-uboot/configs/evb-rk3036_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3229_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3328_defconfig
/rk3399_rockchip-uboot/configs/evb-rv1108_defconfig
/rk3399_rockchip-uboot/configs/fennec-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3399_defconfig
/rk3399_rockchip-uboot/configs/hikey_defconfig
/rk3399_rockchip-uboot/configs/kylin-rk3036_defconfig
/rk3399_rockchip-uboot/configs/miqi-rk3288_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/phycore-rk3288_defconfig
/rk3399_rockchip-uboot/configs/popmetal-rk3288_defconfig
/rk3399_rockchip-uboot/configs/rpi_2_defconfig
/rk3399_rockchip-uboot/configs/rpi_3_32b_defconfig
/rk3399_rockchip-uboot/configs/rpi_3_defconfig
/rk3399_rockchip-uboot/configs/rpi_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_de10_nano_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de1_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_vining_fpga_defconfig
/rk3399_rockchip-uboot/configs/tinker-rk3288_defconfig
/rk3399_rockchip-uboot/doc/README.rockchip
/rk3399_rockchip-uboot/drivers/clk/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk322x.c
/rk3399_rockchip-uboot/drivers/core/dump.c
/rk3399_rockchip-uboot/drivers/core/lists.c
/rk3399_rockchip-uboot/drivers/core/ofnode.c
/rk3399_rockchip-uboot/drivers/core/read.c
/rk3399_rockchip-uboot/drivers/core/util.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_sandbox.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_sdhci.c
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/gmac_rockchip.c
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pinctrl/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-uclass.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3036.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3188.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk322x.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3288.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3328.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3399.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rv1108.c
/rk3399_rockchip-uboot/drivers/power/regulator/rk8xx.c
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/spi/rk_spi.c
/rk3399_rockchip-uboot/drivers/sysreset/sysreset_rk322x.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-rockchip.c
/rk3399_rockchip-uboot/drivers/video/pwm_backlight.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_mipi.c
/rk3399_rockchip-uboot/drivers/video/simple_panel.c
/rk3399_rockchip-uboot/drivers/video/vidconsole-uclass.c
/rk3399_rockchip-uboot/include/configs/evb_rk3229.h
/rk3399_rockchip-uboot/include/configs/hikey.h
/rk3399_rockchip-uboot/include/configs/phycore_rk3288.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk3188_common.h
/rk3399_rockchip-uboot/include/configs/rk322x_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rk3368_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/configs/rpi.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/dm/ofnode.h
/rk3399_rockchip-uboot/include/dm/read.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3228-cru.h
/rk3399_rockchip-uboot/include/efi_loader.h
/rk3399_rockchip-uboot/include/power/rk8xx_pmic.h
efi_loader/efi_boottime.c
efi_loader/efi_disk.c
efi_loader/efi_gop.c
efi_loader/efi_image_loader.c
efi_loader/efi_net.c
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/tools/rkcommon.c
c1eb3d5912-Jun-2017 Simon Glass <sjg@chromium.org>

dm: Fix error handling when unflattening the DT

The error handling code does not current detect an error right away.
Adjust it to return immediately.

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

dm: Fix error handling when unflattening the DT

The error handling code does not current detect an error right away.
Adjust it to return immediately.

Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Tested-on: Beaver, Jetson-TK1

show more ...


/rk3399_rockchip-uboot/arch/sandbox/cpu/spl.c
/rk3399_rockchip-uboot/arch/sandbox/dts/sandbox.dts
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/console.c
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/drivers/core/Makefile
/rk3399_rockchip-uboot/drivers/core/of_access.c
/rk3399_rockchip-uboot/drivers/core/ofnode.c
/rk3399_rockchip-uboot/drivers/core/read.c
/rk3399_rockchip-uboot/drivers/core/read_extra.c
/rk3399_rockchip-uboot/drivers/core/regmap.c
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/video/tegra124/display.c
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/console.h
/rk3399_rockchip-uboot/include/dm/of_access.h
/rk3399_rockchip-uboot/include/dm/ofnode.h
/rk3399_rockchip-uboot/include/dm/read.h
of_live.c
/rk3399_rockchip-uboot/test/Makefile
/rk3399_rockchip-uboot/test/print_ut.c
/rk3399_rockchip-uboot/test/py/tests/test_ofplatdata.py
/rk3399_rockchip-uboot/tools/binman/binman.py
/rk3399_rockchip-uboot/tools/dtoc/dtb_platdata.py
/rk3399_rockchip-uboot/tools/dtoc/dtoc.py
/rk3399_rockchip-uboot/tools/dtoc/dtoc_test.dts
/rk3399_rockchip-uboot/tools/dtoc/dtoc_test_aliases.dts
/rk3399_rockchip-uboot/tools/dtoc/dtoc_test_empty.dts
/rk3399_rockchip-uboot/tools/dtoc/dtoc_test_phandle.dts
/rk3399_rockchip-uboot/tools/dtoc/dtoc_test_simple.dts
/rk3399_rockchip-uboot/tools/dtoc/test_dtoc.py
/rk3399_rockchip-uboot/tools/moveconfig.py
6c519f2d16-Jun-2017 Simon Glass <sjg@chromium.org>

display_options: Refactor to allow obtaining the banner

Move the display options code into a separate function so that the U-Boot
banner can be obtained from other code. Adjust the 'version' command

display_options: Refactor to allow obtaining the banner

Move the display options code into a separate function so that the U-Boot
banner can be obtained from other code. Adjust the 'version' command to
use it.

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

show more ...


/rk3399_rockchip-uboot/.gitignore
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_storage.c
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/ls102xa_sata.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/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/hi3798cv200-poplar.dts
/rk3399_rockchip-uboot/arch/arm/dts/hi3798cv200-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/hi3798cv200.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-evm-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-generic-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-generic.dts
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-ice-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-ice.dts
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g-netcp.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2g.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/omap5-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/imx-common/Makefile
/rk3399_rockchip-uboot/arch/arm/imx-common/cpu.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-hi3798cv200/dwmmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-hi3798cv200/hi3798cv200.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/config.mk
/rk3399_rockchip-uboot/arch/arm/mach-keystone/ddr3.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/ddr3.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/mon.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/boot-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap5/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/sata.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/Kconfig
/rk3399_rockchip-uboot/arch/sandbox/dts/test.dts
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/sata.c
/rk3399_rockchip-uboot/board/advantech/dms-ba16/dms-ba16.c
/rk3399_rockchip-uboot/board/bachmann/ot1200/ot1200.c
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6x.c
/rk3399_rockchip-uboot/board/congatec/Kconfig
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/cgtqmx6eval.c
/rk3399_rockchip-uboot/board/dfi/Kconfig
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana.c
/rk3399_rockchip-uboot/board/highbank/ahci.c
/rk3399_rockchip-uboot/board/highbank/highbank.c
/rk3399_rockchip-uboot/board/hisilicon/poplar/Kconfig
/rk3399_rockchip-uboot/board/hisilicon/poplar/MAINTAINERS
/rk3399_rockchip-uboot/board/hisilicon/poplar/Makefile
/rk3399_rockchip-uboot/board/hisilicon/poplar/README
/rk3399_rockchip-uboot/board/hisilicon/poplar/poplar.c
/rk3399_rockchip-uboot/board/kosagi/novena/novena.c
/rk3399_rockchip-uboot/board/sandbox/README.sandbox
/rk3399_rockchip-uboot/board/ti/common/board_detect.c
/rk3399_rockchip-uboot/board/ti/common/board_detect.h
/rk3399_rockchip-uboot/board/ti/ks2_evm/board.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board.h
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2e.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2g.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2hk.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2l.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/ddr3_k2g.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/mux-k2g.h
/rk3399_rockchip-uboot/board/toradex/apalis_imx6/apalis_imx6.c
/rk3399_rockchip-uboot/board/toradex/colibri_imx6/colibri_imx6.c
/rk3399_rockchip-uboot/board/udoo/udoo.c
/rk3399_rockchip-uboot/board/wandboard/wandboard.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/scsi.c
/rk3399_rockchip-uboot/cmd/version.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/spl/spl_sata.c
/rk3399_rockchip-uboot/common/splash_source.c
/rk3399_rockchip-uboot/common/usb_storage.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_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/Bananapi_M2_Ultra_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Bananapro_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Itead_Ibox_A20_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/MPC8315ERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITX_LOWBOOT_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITX_defconfig
/rk3399_rockchip-uboot/configs/MPC837XERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC8544DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8610HPCD_defconfig
/rk3399_rockchip-uboot/configs/Marsboard_A10_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mele_M5_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_mini_defconfig
/rk3399_rockchip-uboot/configs/Wits_Pro_A20_DKT_defconfig
/rk3399_rockchip-uboot/configs/bayleybay_defconfig
/rk3399_rockchip-uboot/configs/cgtqmx6eval_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link64_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebook_samus_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/cm_fx6_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/controlcenterdc_defconfig
/rk3399_rockchip-uboot/configs/cougarcanyon2_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/highbank_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/ls1012aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls2081ardb_defconfig
/rk3399_rockchip-uboot/configs/m53evk_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/mx53loco_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabrelite_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6q2g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6q_defconfig
/rk3399_rockchip-uboot/configs/novena_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/poplar_defconfig
/rk3399_rockchip-uboot/configs/som-db5800-som-6867_defconfig
/rk3399_rockchip-uboot/configs/tbs2910_defconfig
/rk3399_rockchip-uboot/configs/udoo_defconfig
/rk3399_rockchip-uboot/configs/wandboard_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_ep_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/rk3399_rockchip-uboot/doc/README.gpt
/rk3399_rockchip-uboot/doc/driver-model/of-plat.txt
/rk3399_rockchip-uboot/drivers/Kconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/ata/Kconfig
/rk3399_rockchip-uboot/drivers/ata/Makefile
/rk3399_rockchip-uboot/drivers/ata/ahci-uclass.c
/rk3399_rockchip-uboot/drivers/ata/ahci.c
/rk3399_rockchip-uboot/drivers/ata/dwc_ahci.c
/rk3399_rockchip-uboot/drivers/ata/dwc_ahsata.c
/rk3399_rockchip-uboot/drivers/ata/dwc_ahsata.h
/rk3399_rockchip-uboot/drivers/ata/fsl_sata.c
/rk3399_rockchip-uboot/drivers/ata/fsl_sata.h
/rk3399_rockchip-uboot/drivers/ata/libata.c
/rk3399_rockchip-uboot/drivers/ata/mvsata_ide.c
/rk3399_rockchip-uboot/drivers/ata/mxc_ata.c
/rk3399_rockchip-uboot/drivers/ata/sata.c
/rk3399_rockchip-uboot/drivers/ata/sata_ceva.c
/rk3399_rockchip-uboot/drivers/ata/sata_dwc.c
/rk3399_rockchip-uboot/drivers/ata/sata_dwc.h
/rk3399_rockchip-uboot/drivers/ata/sata_mv.c
/rk3399_rockchip-uboot/drivers/ata/sata_sandbox.c
/rk3399_rockchip-uboot/drivers/ata/sata_sil.c
/rk3399_rockchip-uboot/drivers/ata/sata_sil.h
/rk3399_rockchip-uboot/drivers/ata/sata_sil3114.c
/rk3399_rockchip-uboot/drivers/ata/sata_sil3114.h
/rk3399_rockchip-uboot/drivers/block/Kconfig
/rk3399_rockchip-uboot/drivers/block/Makefile
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/mmc/hi6220_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/stm32_flash.c
/rk3399_rockchip-uboot/drivers/phy/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl_stm32.c
/rk3399_rockchip-uboot/drivers/scsi/Kconfig
/rk3399_rockchip-uboot/drivers/scsi/Makefile
/rk3399_rockchip-uboot/drivers/scsi/sandbox_scsi.c
/rk3399_rockchip-uboot/drivers/scsi/scsi-uclass.c
/rk3399_rockchip-uboot/drivers/scsi/scsi.c
/rk3399_rockchip-uboot/drivers/usb/emul/sandbox_flash.c
/rk3399_rockchip-uboot/dts/Kconfig
/rk3399_rockchip-uboot/fs/fat/fat.c
/rk3399_rockchip-uboot/include/ahci.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/config_cmd_all.h
/rk3399_rockchip-uboot/include/config_distro_bootcmd.h
/rk3399_rockchip-uboot/include/config_fallbacks.h
/rk3399_rockchip-uboot/include/configs/MPC8315ERDB.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/MPC8544DS.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/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/P4080DS.h
/rk3399_rockchip-uboot/include/configs/T102xQDS.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/UCP1020.h
/rk3399_rockchip-uboot/include/configs/advantech_dms-ba16.h
/rk3399_rockchip-uboot/include/configs/am57xx_evm.h
/rk3399_rockchip-uboot/include/configs/apalis_imx6.h
/rk3399_rockchip-uboot/include/configs/cgtqmx6eval.h
/rk3399_rockchip-uboot/include/configs/cm_fx6.h
/rk3399_rockchip-uboot/include/configs/cm_t54.h
/rk3399_rockchip-uboot/include/configs/controlcenterd.h
/rk3399_rockchip-uboot/include/configs/controlcenterdc.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/cyrus.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/efi-x86.h
/rk3399_rockchip-uboot/include/configs/galileo.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/highbank.h
/rk3399_rockchip-uboot/include/configs/k2g_evm.h
/rk3399_rockchip-uboot/include/configs/ls1012aqds.h
/rk3399_rockchip-uboot/include/configs/ls1012ardb.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080aqds.h
/rk3399_rockchip-uboot/include/configs/ls2080ardb.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/mvebu_armada-37xx.h
/rk3399_rockchip-uboot/include/configs/mvebu_armada-8k.h
/rk3399_rockchip-uboot/include/configs/mx53loco.h
/rk3399_rockchip-uboot/include/configs/nitrogen6x.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/omap5_uevm.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/poplar.h
/rk3399_rockchip-uboot/include/configs/qemu-x86.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/configs/tbs2910.h
/rk3399_rockchip-uboot/include/configs/theadorable.h
/rk3399_rockchip-uboot/include/configs/udoo.h
/rk3399_rockchip-uboot/include/configs/wandboard.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/display_options.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/dm/uclass.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/histb-clock.h
/rk3399_rockchip-uboot/include/dt-bindings/reset/ti-syscon.h
/rk3399_rockchip-uboot/include/scsi.h
display_options.c
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/test/dm/test-fdt.c
/rk3399_rockchip-uboot/tools/dtoc/dtoc.py
/rk3399_rockchip-uboot/tools/moveconfig.py
2059ecf316-Jun-2017 Cooper Jr., Franklin <fcooper@ti.com>

fdt: Enable selecting correct DTB from appended FIT Image

This patch gives U-boot the runtime support to have the board specific
code decide which FDT to use. This is especially useful for devices
t

fdt: Enable selecting correct DTB from appended FIT Image

This patch gives U-boot the runtime support to have the board specific
code decide which FDT to use. This is especially useful for devices
that need this type of runtime determination and also doesn't use SPL.

Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>

show more ...

2bf9412010-Jul-2017 Simon Glass <sjg@chromium.org>

libfdt: Drop -FDT_ERR_TOODEEP

This error code has not been upstreamed and is not really needed since it
is unlikely to be triggered. Drop it to maintain compatability with
upstream.

Reported-by: Pe

libfdt: Drop -FDT_ERR_TOODEEP

This error code has not been upstreamed and is not really needed since it
is unlikely to be triggered. Drop it to maintain compatability with
upstream.

Reported-by: Peter Robinson <pbrobinson@gmail.com>

Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Peter Robinson <pbrobinson@gmail.com>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_platform-powerpc.c
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f7/soc.c
/rk3399_rockchip-uboot/arch/powerpc/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/immap.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/interrupts.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/reginfo.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/traps.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/8xx_immap.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/cache.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/interrupt.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/iopin_8xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/mmu.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/lib/Makefile
/rk3399_rockchip-uboot/arch/powerpc/lib/ppccache.S
/rk3399_rockchip-uboot/arch/powerpc/lib/time.c
/rk3399_rockchip-uboot/board/amlogic/odroid-c2/odroid-c2.c
/rk3399_rockchip-uboot/board/cssi/MAINTAINERS
/rk3399_rockchip-uboot/board/cssi/MCR3000/Kconfig
/rk3399_rockchip-uboot/board/cssi/MCR3000/MCR3000.c
/rk3399_rockchip-uboot/board/cssi/MCR3000/Makefile
/rk3399_rockchip-uboot/board/cssi/MCR3000/nand.c
/rk3399_rockchip-uboot/board/cssi/MCR3000/u-boot.lds
/rk3399_rockchip-uboot/board/gdsys/mpc8308/mpc8308.c
/rk3399_rockchip-uboot/board/isee/igep003x/board.c
/rk3399_rockchip-uboot/board/keymile/common/common.c
/rk3399_rockchip-uboot/board/raspberrypi/rpi/MAINTAINERS
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/bedbug.c
/rk3399_rockchip-uboot/cmd/reginfo.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/lynxkdi.c
/rk3399_rockchip-uboot/common/spl/spl_ubi.c
/rk3399_rockchip-uboot/common/usb.c
/rk3399_rockchip-uboot/common/usb_hub.c
/rk3399_rockchip-uboot/configs/CHIP_defconfig
/rk3399_rockchip-uboot/configs/CHIP_pro_defconfig
/rk3399_rockchip-uboot/configs/MCR3000_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_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_igep003x_defconfig
/rk3399_rockchip-uboot/configs/am335x_sl50_defconfig
/rk3399_rockchip-uboot/configs/dragonboard410c_defconfig
/rk3399_rockchip-uboot/configs/hikey_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_nand_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_geam_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_geam_nand_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_emmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_nand_defconfig
/rk3399_rockchip-uboot/configs/ma5d4evk_defconfig
/rk3399_rockchip-uboot/configs/odroid-c2_defconfig
/rk3399_rockchip-uboot/configs/odroid-xu3_defconfig
/rk3399_rockchip-uboot/configs/pico-imx7d_defconfig
/rk3399_rockchip-uboot/configs/rpi_2_defconfig
/rk3399_rockchip-uboot/configs/rpi_3_32b_defconfig
/rk3399_rockchip-uboot/configs/rpi_3_defconfig
/rk3399_rockchip-uboot/configs/rpi_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_defconfig
/rk3399_rockchip-uboot/configs/topic_miamilite_defconfig
/rk3399_rockchip-uboot/configs/topic_miamiplus_defconfig
/rk3399_rockchip-uboot/doc/README.atmel_mci
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/README.usb
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/block/Makefile
/rk3399_rockchip-uboot/drivers/bootcount/bootcount.c
/rk3399_rockchip-uboot/drivers/gpio/gpio-uclass.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/soft_i2c.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/mpc8xx_fec.c
/rk3399_rockchip-uboot/drivers/net/xilinx_ll_temac.c
/rk3399_rockchip-uboot/drivers/net/xilinx_ll_temac_sdma.c
/rk3399_rockchip-uboot/drivers/net/xilinx_ll_temac_sdma.h
/rk3399_rockchip-uboot/drivers/pci/pci_indirect.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_mpc8xx.c
/rk3399_rockchip-uboot/drivers/spi/Kconfig
/rk3399_rockchip-uboot/drivers/spi/Makefile
/rk3399_rockchip-uboot/drivers/spi/mpc8xx_spi.c
/rk3399_rockchip-uboot/drivers/usb/gadget/atmel_usba_udc.h
/rk3399_rockchip-uboot/drivers/usb/host/ohci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_io.h
/rk3399_rockchip-uboot/drivers/video/atmel_lcdfb.c
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/drivers/watchdog/designware_wdt.c
/rk3399_rockchip-uboot/drivers/watchdog/wdt-uclass.c
/rk3399_rockchip-uboot/examples/standalone/stubs.c
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/bedbug/regs.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/commproc.h
/rk3399_rockchip-uboot/include/configs/MCR3000.h
/rk3399_rockchip-uboot/include/configs/brppt1.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/linux/fb.h
/rk3399_rockchip-uboot/include/linux/stat.h
/rk3399_rockchip-uboot/include/mpc8xx.h
/rk3399_rockchip-uboot/include/post.h
/rk3399_rockchip-uboot/include/ppc_asm.tmpl
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/watchdog.h
libfdt/fdt_region.c
libfdt/libfdt.h
/rk3399_rockchip-uboot/post/Makefile
/rk3399_rockchip-uboot/post/lib_powerpc/cpu.c
/rk3399_rockchip-uboot/scripts/checkstack.pl
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/tools/buildman/README
/rk3399_rockchip-uboot/tools/mkimage.c
/rk3399_rockchip-uboot/tools/moveconfig.py
da684a6403-Jul-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: abort on unsupported relocation type

If a relocation type is not supported loading the EFI binary
should be aborted.

Writing a message only is insufficient.

Signed-off-by: Heinrich Sch

efi_loader: abort on unsupported relocation type

If a relocation type is not supported loading the EFI binary
should be aborted.

Writing a message only is insufficient.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
[agraf: use a() != b coding style]
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

8e1d329f29-Jun-2017 xypron.glpk@gmx.de <xypron.glpk@gmx.de>

efi_loader: efi_handle_protocol set attributes

UEFI spec 2.7 indicates that HandleProtocol can be implemented
by calling OpenProtocol with
attributes = EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL.

Current

efi_loader: efi_handle_protocol set attributes

UEFI spec 2.7 indicates that HandleProtocol can be implemented
by calling OpenProtocol with
attributes = EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL.

Currently we pass attributes = 0 to efi_open_protocol. 0 is not a
valid value when calling OpenProtocol. This does not cause any errors
yet because our implementation of OpenProtocol is incomplete.

We should pass the correct value to enable a fully compliant
implementation of OpenProtocol in the future.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

6e0bf8d822-Jun-2017 Masahiro Yamada <yamada.masahiro@socionext.com>

efi_loader: add static to local functions

These are locally used in lib/efi_loader/efi_boottime.c

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Bin Meng <bmeng.cn@gmai

efi_loader: add static to local functions

These are locally used in lib/efi_loader/efi_boottime.c

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

a95343b812-Mar-2017 Jonathan Gray <jsg@jsg.id.au>

efi_loader: check CreateEvent() parameters

Add some of the invalid parameter checks described in the UEFI
specification for CreateEvent(). This does not include checking
the validity of the type an

efi_loader: check CreateEvent() parameters

Add some of the invalid parameter checks described in the UEFI
specification for CreateEvent(). This does not include checking
the validity of the type and tpl parameters.

Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Acked-By: Heinrich Schuchardt <xypron.glpk@gmx.de>
[agraf: fix checkpatch.pl indent warning]
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

37a980b312-Mar-2017 Jonathan Gray <jsg@jsg.id.au>

efi_loader: run CreateEvent() notify function based on flags

The UEFI specification states that the tpl, function and context
arguments are to be ignored if neither EVT_NOTIFY_WAIT or
EVT_NOTIFY_SIG

efi_loader: run CreateEvent() notify function based on flags

The UEFI specification states that the tpl, function and context
arguments are to be ignored if neither EVT_NOTIFY_WAIT or
EVT_NOTIFY_SIGNAL are specified. This matches observed behaviour with
an AMI EDK2 based UEFI implementation.

Skip calling the notify function if neither flag is present.

Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Acked-By: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_storage.c
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arc/Kconfig
/rk3399_rockchip-uboot/arch/arc/dts/Makefile
/rk3399_rockchip-uboot/arch/arc/dts/hsdk.dts
/rk3399_rockchip-uboot/arch/arc/lib/cache.c
/rk3399_rockchip-uboot/arch/arc/lib/start.S
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mx25/generic.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/spl.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/am437x-gp-evm-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/at91sam9260-smartweb.dts
/rk3399_rockchip-uboot/arch/arm/dts/at91sam9g20-taurus.dts
/rk3399_rockchip-uboot/arch/arm/dts/at91sam9g45-corvus.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-origen.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-trats.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-universal_c210.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-odroid.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-trats2.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4x12.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/exynos5422-odroidxu3.dts
/rk3399_rockchip-uboot/arch/arm/dts/omap5-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld11-global.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld11-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld11.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld20-global.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld20-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld20.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld6b-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld6b.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4-ace.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4-sanji.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro5-4kbox.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs2-gentil.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs2-vodka.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs2.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ref-daughter.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld3-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld3.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld8-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld8.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-support-card.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/zynq-topic-miamilite.dts
/rk3399_rockchip-uboot/arch/arm/imx-common/cpu.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/emac_defs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/hardware_ti816x.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx25/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/boot-common.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/arm64/arm-cci500.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/arm64/smp_kick_cpus.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/pll-pxs3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-pxs2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init.h
/rk3399_rockchip-uboot/arch/arm/mach-zynq/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-zynq/ddrc.c
/rk3399_rockchip-uboot/arch/microblaze/dts/Makefile
/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/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/topcliff.c
/rk3399_rockchip-uboot/board/aries/ma5d4evk/Kconfig
/rk3399_rockchip-uboot/board/aries/ma5d4evk/MAINTAINERS
/rk3399_rockchip-uboot/board/aries/ma5d4evk/Makefile
/rk3399_rockchip-uboot/board/aries/ma5d4evk/ma5d4evk.c
/rk3399_rockchip-uboot/board/engicam/common/board.c
/rk3399_rockchip-uboot/board/engicam/geam6ul/Kconfig
/rk3399_rockchip-uboot/board/engicam/icorem6/Kconfig
/rk3399_rockchip-uboot/board/engicam/icorem6_rqs/Kconfig
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx25pdk/mx25pdk.c
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/README
/rk3399_rockchip-uboot/board/gdsys/p1022/controlcenterd-id.c
/rk3399_rockchip-uboot/board/intel/minnowmax/minnowmax.c
/rk3399_rockchip-uboot/board/qualcomm/dragonboard410c/u-boot.lds
/rk3399_rockchip-uboot/board/siemens/smartweb/smartweb.c
/rk3399_rockchip-uboot/board/siemens/taurus/taurus.c
/rk3399_rockchip-uboot/board/synopsys/hsdk/Kconfig
/rk3399_rockchip-uboot/board/synopsys/hsdk/MAINTAINERS
/rk3399_rockchip-uboot/board/synopsys/hsdk/Makefile
/rk3399_rockchip-uboot/board/synopsys/hsdk/hsdk.c
/rk3399_rockchip-uboot/board/technexion/pico-imx7d/Kconfig
/rk3399_rockchip-uboot/board/technexion/pico-imx7d/MAINTAINERS
/rk3399_rockchip-uboot/board/technexion/pico-imx7d/Makefile
/rk3399_rockchip-uboot/board/technexion/pico-imx7d/README
/rk3399_rockchip-uboot/board/technexion/pico-imx7d/imximage.cfg
/rk3399_rockchip-uboot/board/technexion/pico-imx7d/pico-imx7d.c
/rk3399_rockchip-uboot/board/ti/ti816x/evm.c
/rk3399_rockchip-uboot/board/topic/zynq/zynq-topic-miamilite/ps7_init_gpl.c
/rk3399_rockchip-uboot/board/topic/zynq/zynq-topic-miamilite/ps7_regs.txt
/rk3399_rockchip-uboot/board/xilinx/zynqmp/sleep.h
/rk3399_rockchip-uboot/board/xilinx/zynqmp/xil_io.h
/rk3399_rockchip-uboot/board/xilinx/zynqmp/zynqmp.c
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/bootefi.c
/rk3399_rockchip-uboot/configs/axs101_defconfig
/rk3399_rockchip-uboot/configs/axs103_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/ge_b450v3_defconfig
/rk3399_rockchip-uboot/configs/ge_b650v3_defconfig
/rk3399_rockchip-uboot/configs/ge_b850v3_defconfig
/rk3399_rockchip-uboot/configs/hsdk_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_nand_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_geam_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_geam_nand_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_emmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_nand_defconfig
/rk3399_rockchip-uboot/configs/ma5d4evk_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_defconfig
/rk3399_rockchip-uboot/configs/odroid-xu3_defconfig
/rk3399_rockchip-uboot/configs/odroid_defconfig
/rk3399_rockchip-uboot/configs/origen_defconfig
/rk3399_rockchip-uboot/configs/pico-imx7d_defconfig
/rk3399_rockchip-uboot/configs/r8a7795_salvator-x_defconfig
/rk3399_rockchip-uboot/configs/r8a7796_salvator-x_defconfig
/rk3399_rockchip-uboot/configs/s5pc210_universal_defconfig
/rk3399_rockchip-uboot/configs/smartweb_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_defconfig
/rk3399_rockchip-uboot/configs/topic_miamilite_defconfig
/rk3399_rockchip-uboot/configs/topic_miamiplus_defconfig
/rk3399_rockchip-uboot/configs/trats2_defconfig
/rk3399_rockchip-uboot/configs/trats_defconfig
/rk3399_rockchip-uboot/doc/README.fsl-clk
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/block/sata_ceva.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rv1108.c
/rk3399_rockchip-uboot/drivers/clk/uniphier/clk-uniphier-core.c
/rk3399_rockchip-uboot/drivers/fpga/zynqmppl.c
/rk3399_rockchip-uboot/drivers/misc/i2c_eeprom.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/pci_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/tegra_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_base.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_spl.c
/rk3399_rockchip-uboot/drivers/mtd/spi/Kconfig
/rk3399_rockchip-uboot/drivers/net/davinci_emac.c
/rk3399_rockchip-uboot/drivers/net/davinci_emac.h
/rk3399_rockchip-uboot/drivers/net/phy/Kconfig
/rk3399_rockchip-uboot/drivers/pci/pcie_imx.c
/rk3399_rockchip-uboot/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
/rk3399_rockchip-uboot/drivers/power/regulator/pfuze100.c
/rk3399_rockchip-uboot/drivers/reset/reset-uniphier.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/usb/gadget/at91_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/g_dnl.c
/rk3399_rockchip-uboot/include/configs/axs10x.h
/rk3399_rockchip-uboot/include/configs/conga-qeval20-qa3-e3845.h
/rk3399_rockchip-uboot/include/configs/corvus.h
/rk3399_rockchip-uboot/include/configs/dfi-bt700.h
/rk3399_rockchip-uboot/include/configs/hsdk.h
/rk3399_rockchip-uboot/include/configs/imx6-engicam.h
/rk3399_rockchip-uboot/include/configs/imx6_spl.h
/rk3399_rockchip-uboot/include/configs/ma5d4evk.h
/rk3399_rockchip-uboot/include/configs/minnowmax.h
/rk3399_rockchip-uboot/include/configs/mx7dsabresd.h
/rk3399_rockchip-uboot/include/configs/nsim.h
/rk3399_rockchip-uboot/include/configs/odroid.h
/rk3399_rockchip-uboot/include/configs/pico-imx7d.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/configs/smartweb.h
/rk3399_rockchip-uboot/include/configs/tb100.h
/rk3399_rockchip-uboot/include/configs/ti816x_evm.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/topic_miami.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/efi_api.h
/rk3399_rockchip-uboot/include/environment/ti/boot.h
/rk3399_rockchip-uboot/include/mmc.h
/rk3399_rockchip-uboot/include/pci.h
efi_loader/efi_boottime.c
/rk3399_rockchip-uboot/post/cpu/ppc4xx/denali_ecc.c
/rk3399_rockchip-uboot/scripts/build-whitelist.sh
/rk3399_rockchip-uboot/scripts/check-config.sh
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/tools/rkcommon.c
4ecc988320-Jun-2017 Emmanuel Vadot <manu@bidouilliste.com>

bch: Fix build on FreeBSD host

endian.h on FreeBSD system exist in sys/ subdirectory.
FreeBSD already have a fls function defined in strings.h which is included
in string.h if __BSD_VISIBLE is defin

bch: Fix build on FreeBSD host

endian.h on FreeBSD system exist in sys/ subdirectory.
FreeBSD already have a fls function defined in strings.h which is included
in string.h if __BSD_VISIBLE is defined, as a check for this.

Signed-off-by: Emmanuel Vadot <manu@bidouilliste.com>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_platform-powerpc.c
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fwcall.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/keystone-k2hk-evm-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-veyron-jerry.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-geekbox.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-px5-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-sheep.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3368.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-puma-ddr1333.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-puma-ddr1600.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-puma-ddr1866.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-puma.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-sdram-ddr3-1866.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1108-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rv1108.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stm32f746.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-a64-orangepi-win.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-h5-nanopi-neo2.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-h5-orangepi-zero-plus2.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-nanopi-m1-plus.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-nyan-big-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap4/omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3368.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rv1108.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3328.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3368.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rv1108.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/periph.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/display2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram_sunxi_dw.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/omap_common.h
/rk3399_rockchip-uboot/arch/arm/include/asm/spl.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/lib/cache-cp15.c
/rk3399_rockchip-uboot/arch/arm/lib/interrupts.c
/rk3399_rockchip-uboot/arch/arm/lib/vectors.S
/rk3399_rockchip-uboot/arch/arm/mach-omap2/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/hw_data.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/prcm-regs.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/sys_info.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/config_secure.mk
/rk3399_rockchip-uboot/arch/arm/mach-omap2/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/board.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/hw_data.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/prcm-regs.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/sys_info.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/sysinfo-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/utils.c
/rk3399_rockchip-uboot/arch/arm/mach-rmobile/include/mach/sh_sdhi.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/clk_rk3368.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/rk3368.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3368/syscon_rk3368.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/sdram_rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1108/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1108/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1108/clk_rv1108.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1108/rv1108.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1108/syscon_rv1108.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_sunxi_dw.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_timings/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_timings/ddr2_v3s.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_timings/ddr3_1333.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_timings/lpddr3_stock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board2.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/4xx_uart.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/interrupts.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/miiphy.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/uic.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/usb_ohci.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/usb_ohci.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/xilinx_irq.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/cache.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/lib/Makefile
/rk3399_rockchip-uboot/arch/powerpc/lib/bootm.c
/rk3399_rockchip-uboot/arch/powerpc/lib/kgdb.c
/rk3399_rockchip-uboot/arch/powerpc/lib/time.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/cpu.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/os.c
/rk3399_rockchip-uboot/board/BuR/common/common.c
/rk3399_rockchip-uboot/board/amcc/bamboo/bamboo.c
/rk3399_rockchip-uboot/board/amcc/luan/luan.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8541cds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8544ds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8548cds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8555cds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8568mds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8569mds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8610hpcd/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/p1010rdb/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/p1_twr/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/s32v234evb/clock.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/MAINTAINERS
/rk3399_rockchip-uboot/board/geekbuying/geekbox/Kconfig
/rk3399_rockchip-uboot/board/geekbuying/geekbox/MAINTAINERS
/rk3399_rockchip-uboot/board/geekbuying/geekbox/Makefile
/rk3399_rockchip-uboot/board/geekbuying/geekbox/README
/rk3399_rockchip-uboot/board/geekbuying/geekbox/geekbox.c
/rk3399_rockchip-uboot/board/hisilicon/hikey/README
/rk3399_rockchip-uboot/board/mpl/common/common_util.c
/rk3399_rockchip-uboot/board/mpl/common/pci.c
/rk3399_rockchip-uboot/board/rockchip/evb_px5/Kconfig
/rk3399_rockchip-uboot/board/rockchip/evb_px5/MAINTAINERS
/rk3399_rockchip-uboot/board/rockchip/evb_px5/Makefile
/rk3399_rockchip-uboot/board/rockchip/evb_px5/README
/rk3399_rockchip-uboot/board/rockchip/evb_px5/evb-px5.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/MAINTAINERS
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/evb-rk3328.c
/rk3399_rockchip-uboot/board/rockchip/evb_rv1108/Kconfig
/rk3399_rockchip-uboot/board/rockchip/evb_rv1108/MAINTAINERS
/rk3399_rockchip-uboot/board/rockchip/evb_rv1108/Makefile
/rk3399_rockchip-uboot/board/rockchip/evb_rv1108/README
/rk3399_rockchip-uboot/board/rockchip/evb_rv1108/evb_rv1108.c
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/Kconfig
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/MAINTAINERS
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/Makefile
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/README
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/sheep_rk3368.c
/rk3399_rockchip-uboot/board/st/stm32f746-disco/stm32f746-disco.c
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/theobroma-systems/puma_rk3399/README
/rk3399_rockchip-uboot/board/theobroma-systems/puma_rk3399/puma-rk3399.c
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am335x/board.h
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/am57xx/board.c
/rk3399_rockchip-uboot/board/ti/am57xx/mux_data.h
/rk3399_rockchip-uboot/board/ti/beagle/beagle.c
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/bedbug.c
/rk3399_rockchip-uboot/cmd/ethsw.c
/rk3399_rockchip-uboot/cmd/fdt.c
/rk3399_rockchip-uboot/cmd/ide.c
/rk3399_rockchip-uboot/cmd/jffs2.c
/rk3399_rockchip-uboot/cmd/mtdparts.c
/rk3399_rockchip-uboot/cmd/nvedit.c
/rk3399_rockchip-uboot/cmd/pcmcia.c
/rk3399_rockchip-uboot/cmd/reginfo.c
/rk3399_rockchip-uboot/cmd/source.c
/rk3399_rockchip-uboot/cmd/usb_mass_storage.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/bootm_os.c
/rk3399_rockchip-uboot/common/bootstage.c
/rk3399_rockchip-uboot/common/dlmalloc.c
/rk3399_rockchip-uboot/common/edid.c
/rk3399_rockchip-uboot/common/env_mmc.c
/rk3399_rockchip-uboot/common/fb_mmc.c
/rk3399_rockchip-uboot/common/lcd.c
/rk3399_rockchip-uboot/common/lynxkdi.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/Makefile
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_xip.c
/rk3399_rockchip-uboot/configs/MPC8536DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8544DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8568MDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8569MDS_ATM_defconfig
/rk3399_rockchip-uboot/configs/MPC8569MDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8641HPCN_defconfig
/rk3399_rockchip-uboot/configs/Sinovoip_BPI_M2_Plus_defconfig
/rk3399_rockchip-uboot/configs/UCP1020_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/UCP1020_defconfig
/rk3399_rockchip-uboot/configs/adp-ae3xx_defconfig
/rk3399_rockchip-uboot/configs/adp-ag101p_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_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_igep003x_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_ict_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_netboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_prompt_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/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/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/ap121_defconfig
/rk3399_rockchip-uboot/configs/ap143_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_dataflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_norflash_boot_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_norflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_2mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_2mmc_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9m10g45ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9m10g45ek_nandflash_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/at91sam9rlek_dataflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9rlek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9rlek_nandflash_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/at91sam9xeek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/bcm958622hr_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/blanche_defconfig
/rk3399_rockchip-uboot/configs/brppt1_mmc_defconfig
/rk3399_rockchip-uboot/configs/brppt1_nand_defconfig
/rk3399_rockchip-uboot/configs/brppt1_spi_defconfig
/rk3399_rockchip-uboot/configs/brxre1_defconfig
/rk3399_rockchip-uboot/configs/cairo_defconfig
/rk3399_rockchip-uboot/configs/chiliboard_defconfig
/rk3399_rockchip-uboot/configs/chromebit_mickey_defconfig
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link64_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebook_minnie_defconfig
/rk3399_rockchip-uboot/configs/chromebook_samus_defconfig
/rk3399_rockchip-uboot/configs/clearfog_defconfig
/rk3399_rockchip-uboot/configs/cm_fx6_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/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/comtrend_ar5387un_ram_defconfig
/rk3399_rockchip-uboot/configs/comtrend_ct5361_ram_defconfig
/rk3399_rockchip-uboot/configs/comtrend_vr3032u_ram_defconfig
/rk3399_rockchip-uboot/configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
/rk3399_rockchip-uboot/configs/conga-qeval20-qa3-e3845_defconfig
/rk3399_rockchip-uboot/configs/controlcenterdc_defconfig
/rk3399_rockchip-uboot/configs/db-88f6720_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-amc_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-gp_defconfig
/rk3399_rockchip-uboot/configs/db-mv784mp-gp_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dfi-bt700-q7x-151_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/draco_defconfig
/rk3399_rockchip-uboot/configs/ds414_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/efi-x86_defconfig
/rk3399_rockchip-uboot/configs/etamin_defconfig
/rk3399_rockchip-uboot/configs/evb-ast2500_defconfig
/rk3399_rockchip-uboot/configs/evb-px5_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3036_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3288_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3328_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/evb-rv1108_defconfig
/rk3399_rockchip-uboot/configs/fennec-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3399_defconfig
/rk3399_rockchip-uboot/configs/geekbox_defconfig
/rk3399_rockchip-uboot/configs/gwventana_emmc_defconfig
/rk3399_rockchip-uboot/configs/gwventana_gw5904_defconfig
/rk3399_rockchip-uboot/configs/gwventana_nand_defconfig
/rk3399_rockchip-uboot/configs/huawei_hg556a_ram_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6qdl_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/kmcoge4_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5ne_defconfig
/rk3399_rockchip-uboot/configs/kmeter1_defconfig
/rk3399_rockchip-uboot/configs/kmlion1_defconfig
/rk3399_rockchip-uboot/configs/kmopti2_defconfig
/rk3399_rockchip-uboot/configs/kmsupx5_defconfig
/rk3399_rockchip-uboot/configs/kmtegr1_defconfig
/rk3399_rockchip-uboot/configs/kmtepr2_defconfig
/rk3399_rockchip-uboot/configs/kmvect1_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2081ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2088ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/m53evk_defconfig
/rk3399_rockchip-uboot/configs/maxbcm_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/miqi-rk3288_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f3720_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f7040-nand_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f7040_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f8040_defconfig
/rk3399_rockchip-uboot/configs/mvebu_espressobin-88f3720_defconfig
/rk3399_rockchip-uboot/configs/mvebu_mcbin-88f8040_defconfig
/rk3399_rockchip-uboot/configs/mx51evk_defconfig
/rk3399_rockchip-uboot/configs/mx53cx9020_defconfig
/rk3399_rockchip-uboot/configs/mx53loco_defconfig
/rk3399_rockchip-uboot/configs/mx6cuboxi_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_defconfig
/rk3399_rockchip-uboot/configs/nanopi_m1_plus_defconfig
/rk3399_rockchip-uboot/configs/nanopi_neo2_defconfig
/rk3399_rockchip-uboot/configs/nanopi_neo_air_defconfig
/rk3399_rockchip-uboot/configs/nanopi_neo_defconfig
/rk3399_rockchip-uboot/configs/netgear_cg3100d_ram_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/novena_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/odroid-c2_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_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/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/opos6uldev_defconfig
/rk3399_rockchip-uboot/configs/orangepi_2_defconfig
/rk3399_rockchip-uboot/configs/orangepi_lite_defconfig
/rk3399_rockchip-uboot/configs/orangepi_one_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc2_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_plus_defconfig
/rk3399_rockchip-uboot/configs/orangepi_plus2e_defconfig
/rk3399_rockchip-uboot/configs/orangepi_plus_defconfig
/rk3399_rockchip-uboot/configs/orangepi_win_defconfig
/rk3399_rockchip-uboot/configs/orangepi_zero_defconfig
/rk3399_rockchip-uboot/configs/orangepi_zero_plus2_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/pine64_plus_defconfig
/rk3399_rockchip-uboot/configs/popmetal-rk3288_defconfig
/rk3399_rockchip-uboot/configs/puma-rk3399_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_64_defconfig
/rk3399_rockchip-uboot/configs/r8a7795_salvator-x_defconfig
/rk3399_rockchip-uboot/configs/r8a7796_salvator-x_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/rock2_defconfig
/rk3399_rockchip-uboot/configs/rock_defconfig
/rk3399_rockchip-uboot/configs/rut_defconfig
/rk3399_rockchip-uboot/configs/sagem_f@st1704_ram_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_nandflash_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/sandbox_flattree_defconfig
/rk3399_rockchip-uboot/configs/sandbox_noblk_defconfig
/rk3399_rockchip-uboot/configs/sandbox_spl_defconfig
/rk3399_rockchip-uboot/configs/sfr_nb4-ser_ram_defconfig
/rk3399_rockchip-uboot/configs/sheep-rk3368_defconfig
/rk3399_rockchip-uboot/configs/sniper_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/som-db5800-som-6867_defconfig
/rk3399_rockchip-uboot/configs/sopine_baseboard_defconfig
/rk3399_rockchip-uboot/configs/spring_defconfig
/rk3399_rockchip-uboot/configs/stm32f746-disco_defconfig
/rk3399_rockchip-uboot/configs/suvd3_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/tbs2910_defconfig
/rk3399_rockchip-uboot/configs/theadorable_debug_defconfig
/rk3399_rockchip-uboot/configs/theadorable_defconfig
/rk3399_rockchip-uboot/configs/thuban_defconfig
/rk3399_rockchip-uboot/configs/thunderx_88xx_defconfig
/rk3399_rockchip-uboot/configs/tinker-rk3288_defconfig
/rk3399_rockchip-uboot/configs/topic_miami_defconfig
/rk3399_rockchip-uboot/configs/topic_miamiplus_defconfig
/rk3399_rockchip-uboot/configs/tricorder_defconfig
/rk3399_rockchip-uboot/configs/tricorder_flash_defconfig
/rk3399_rockchip-uboot/configs/tuge1_defconfig
/rk3399_rockchip-uboot/configs/tuxx1_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_ep_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm016_dc2_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm018_dc4_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/doc/README.LED
/rk3399_rockchip-uboot/doc/README.chromium
/rk3399_rockchip-uboot/doc/README.generic_usb_ohci
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/README.serial_multi
/rk3399_rockchip-uboot/doc/chromium/chromebook_jerry.its
/rk3399_rockchip-uboot/doc/chromium/devkeys/kernel.keyblock
/rk3399_rockchip-uboot/doc/chromium/devkeys/kernel_data_key.vbprivk
/rk3399_rockchip-uboot/doc/chromium/nyan-big.its
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/block/blk-uclass.c
/rk3399_rockchip-uboot/drivers/block/ide.c
/rk3399_rockchip-uboot/drivers/block/sil680.c
/rk3399_rockchip-uboot/drivers/bootcount/bootcount.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3288.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3368.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rv1108.c
/rk3399_rockchip-uboot/drivers/core/of_access.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/interactive.c
/rk3399_rockchip-uboot/drivers/ddr/marvell/axp/ddr3_dqs.c
/rk3399_rockchip-uboot/drivers/dfu/dfu_sf.c
/rk3399_rockchip-uboot/drivers/gpio/bcm6345_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/i2c_core.c
/rk3399_rockchip-uboot/drivers/i2c/soft_i2c.c
/rk3399_rockchip-uboot/drivers/input/keyboard.c
/rk3399_rockchip-uboot/drivers/input/ps2ser.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/fsl_iim.c
/rk3399_rockchip-uboot/drivers/misc/rockchip-efuse.c
/rk3399_rockchip-uboot/drivers/mmc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/mmc-uclass.c
/rk3399_rockchip-uboot/drivers/mmc/sh_sdhi.c
/rk3399_rockchip-uboot/drivers/mtd/dataflash.c
/rk3399_rockchip-uboot/drivers/mtd/nand/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/nand/Makefile
/rk3399_rockchip-uboot/drivers/net/4xx_enet.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/fsl_mcdmafec.c
/rk3399_rockchip-uboot/drivers/net/ne2000_base.c
/rk3399_rockchip-uboot/drivers/net/phy/marvell.c
/rk3399_rockchip-uboot/drivers/pci/pci_indirect.c
/rk3399_rockchip-uboot/drivers/pcmcia/Makefile
/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/pinctrl/rockchip/pinctrl_rk3328.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3368.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rv1108.c
/rk3399_rockchip-uboot/drivers/power/pmic/Kconfig
/rk3399_rockchip-uboot/drivers/power/pmic/Makefile
/rk3399_rockchip-uboot/drivers/power/pmic/lp87565.c
/rk3399_rockchip-uboot/drivers/power/pmic/pmic_tps65218.c
/rk3399_rockchip-uboot/drivers/power/pmic/rk8xx.c
/rk3399_rockchip-uboot/drivers/power/regulator/Kconfig
/rk3399_rockchip-uboot/drivers/power/regulator/Makefile
/rk3399_rockchip-uboot/drivers/power/regulator/lp87565_regulator.c
/rk3399_rockchip-uboot/drivers/power/regulator/palmas_regulator.c
/rk3399_rockchip-uboot/drivers/power/regulator/pwm_regulator.c
/rk3399_rockchip-uboot/drivers/power/regulator/regulator-uclass.c
/rk3399_rockchip-uboot/drivers/power/regulator/rk8xx.c
/rk3399_rockchip-uboot/drivers/pwm/rk_pwm.c
/rk3399_rockchip-uboot/drivers/ram/stm32_sdram.c
/rk3399_rockchip-uboot/drivers/rtc/Makefile
/rk3399_rockchip-uboot/drivers/rtc/ds1337.c
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_stm32x7.c
/rk3399_rockchip-uboot/drivers/serial/serial_stm32x7.h
/rk3399_rockchip-uboot/drivers/spi/tegra114_spi.c
/rk3399_rockchip-uboot/drivers/sysreset/Makefile
/rk3399_rockchip-uboot/drivers/sysreset/sysreset_rk3368.c
/rk3399_rockchip-uboot/drivers/sysreset/sysreset_rv1108.c
/rk3399_rockchip-uboot/drivers/usb/gadget/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/at91_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/gadget_chips.h
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-pci.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci.h
/rk3399_rockchip-uboot/drivers/usb/host/ohci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci.h
/rk3399_rockchip-uboot/drivers/usb/host/xhci-rockchip.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/atmel_hlcdfb.c
/rk3399_rockchip-uboot/drivers/video/rockchip/Kconfig
/rk3399_rockchip-uboot/drivers/video/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/video/rockchip/rk3288_hdmi.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk3288_vop.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk3399_hdmi.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk3399_vop.c
/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_hdmi.h
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_vop.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_vop.h
/rk3399_rockchip-uboot/drivers/video/sunxi/Makefile
/rk3399_rockchip-uboot/drivers/video/sunxi/sunxi_de2.c
/rk3399_rockchip-uboot/drivers/video/sunxi/tve_common.c
/rk3399_rockchip-uboot/drivers/video/tegra124/sor.c
/rk3399_rockchip-uboot/examples/standalone/Makefile
/rk3399_rockchip-uboot/fs/ubifs/ubifs.c
/rk3399_rockchip-uboot/fs/yaffs2/yaffs_uboot_glue.c
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/blk.h
/rk3399_rockchip-uboot/include/bootstage.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/MIP405.h
/rk3399_rockchip-uboot/include/configs/MPC8544DS.h
/rk3399_rockchip-uboot/include/configs/MPC8568MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/PIP405.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/UCP1020.h
/rk3399_rockchip-uboot/include/configs/am57xx_evm.h
/rk3399_rockchip-uboot/include/configs/brxre1.h
/rk3399_rockchip-uboot/include/configs/bur_am335x_common.h
/rk3399_rockchip-uboot/include/configs/cm_t43.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/evb_px5.h
/rk3399_rockchip-uboot/include/configs/evb_rv1108.h
/rk3399_rockchip-uboot/include/configs/geekbox.h
/rk3399_rockchip-uboot/include/configs/omap5_uevm.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/puma_rk3399.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rk3368_common.h
/rk3399_rockchip-uboot/include/configs/rockchip-common.h
/rk3399_rockchip-uboot/include/configs/rv1108_common.h
/rk3399_rockchip-uboot/include/configs/sheep_rk3368.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/stm32f746-disco.h
/rk3399_rockchip-uboot/include/configs/tegra-common-post.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/tqma6_wru4.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3368-cru.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rv1108-cru.h
/rk3399_rockchip-uboot/include/environment/ti/dfu.h
/rk3399_rockchip-uboot/include/environment/ti/mmc.h
/rk3399_rockchip-uboot/include/i2c.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/keyboard.h
/rk3399_rockchip-uboot/include/lcd.h
/rk3399_rockchip-uboot/include/linux/compat.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/pcmcia.h
/rk3399_rockchip-uboot/include/post.h
/rk3399_rockchip-uboot/include/power/lp87565.h
/rk3399_rockchip-uboot/include/power/tps65217.h
/rk3399_rockchip-uboot/include/power/tps65218.h
/rk3399_rockchip-uboot/include/ppc_asm.tmpl
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/status_led.h
/rk3399_rockchip-uboot/include/usb/dwc2_udc.h
/rk3399_rockchip-uboot/include/usb/ehci-ci.h
/rk3399_rockchip-uboot/include/watchdog.h
bch.c
/rk3399_rockchip-uboot/post/Makefile
/rk3399_rockchip-uboot/post/drivers/memory.c
/rk3399_rockchip-uboot/post/tests.c
/rk3399_rockchip-uboot/scripts/Makefile.lib
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/test/README
/rk3399_rockchip-uboot/test/dm/blk.c
/rk3399_rockchip-uboot/test/dm/bus.c
/rk3399_rockchip-uboot/test/dm/pwm.c
/rk3399_rockchip-uboot/test/dm/wdt.c
/rk3399_rockchip-uboot/tools/buildman/builder.py
/rk3399_rockchip-uboot/tools/buildman/builderthread.py
/rk3399_rockchip-uboot/tools/buildman/func_test.py
/rk3399_rockchip-uboot/tools/buildman/test.py
/rk3399_rockchip-uboot/tools/buildman/toolchain.py
/rk3399_rockchip-uboot/tools/fdtgrep.c
/rk3399_rockchip-uboot/tools/img2srec.c
/rk3399_rockchip-uboot/tools/kwbimage.c
/rk3399_rockchip-uboot/tools/patman/cros_subprocess.py
/rk3399_rockchip-uboot/tools/patman/func_test.py
/rk3399_rockchip-uboot/tools/patman/gitutil.py
/rk3399_rockchip-uboot/tools/patman/patchstream.py
/rk3399_rockchip-uboot/tools/patman/patman.py
/rk3399_rockchip-uboot/tools/patman/series.py
/rk3399_rockchip-uboot/tools/patman/test.py
/rk3399_rockchip-uboot/tools/patman/test/0000-cover-letter.patch
/rk3399_rockchip-uboot/tools/patman/test/0001-pci-Correct-cast-for-sandbox.patch
/rk3399_rockchip-uboot/tools/patman/test/0002-fdt-Correct-cast-for-sandbox-in-fdtdec_setup_memory_.patch
/rk3399_rockchip-uboot/tools/patman/test/test01.txt
/rk3399_rockchip-uboot/tools/rkcommon.c
/rk3399_rockchip-uboot/tools/rkcommon.h
/rk3399_rockchip-uboot/tools/rksd.c
/rk3399_rockchip-uboot/tools/rkspi.c
9fb34b0122-May-2017 Simon Glass <sjg@chromium.org>

bootstage: Provide a default timer function

If CONFIG_SYS_TIMER_COUNTER is used we can provide a default microsecond
timer implementation.

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


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arc/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ep93xx/speed.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch3_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/lowlevel.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/ppa.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/cpu/armv8/sec_firmware.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/start.S
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/dm8168-evm.dts
/rk3399_rockchip-uboot/arch/arm/dts/dm816x-clocks.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/dm816x.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-a64-bananapi-m64.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-a64-pine64-plus-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-a64-pine64-plus.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-a64-pine64.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-a64.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-h5-orangepi-pc2.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-h5-orangepi-prime.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-h5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-nanopi-m1.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-nanopi-neo.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-nanopi.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/clocks_am33xx.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/ddr_defs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/clock.h
/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/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-imx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/bootm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/omap_common.h
/rk3399_rockchip-uboot/arch/arm/include/asm/u-boot-arm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/lib/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/davinci_misc.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-omap2/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/clock_ti816x.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/ddr.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/emif4.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/ti816x_emif4.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/utils.c
/rk3399_rockchip-uboot/arch/mips/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/nds32/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/nds32/lib/bootm.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/4xx_pci.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/miiphy.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/reginfo.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/4xx_pci.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc4xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/sandbox/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/early_uart.c
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/fsp_configs.c
/rk3399_rockchip-uboot/arch/x86/dts/bayleybay.dts
/rk3399_rockchip-uboot/arch/x86/dts/baytrail_som-db5800-som-6867.dts
/rk3399_rockchip-uboot/arch/x86/dts/conga-qeval20-qa3-e3845.dts
/rk3399_rockchip-uboot/arch/x86/dts/dfi-bt700.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-baytrail/fsp/fsp_configs.h
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-baytrail/fsp/fsp_vpd.h
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot-x86.h
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/x86/lib/fsp/fsp_support.c
/rk3399_rockchip-uboot/board/AndesTech/adp-ag101p/adp-ag101p.c
/rk3399_rockchip-uboot/board/Barix/ipam390/ipam390.c
/rk3399_rockchip-uboot/board/LaCie/edminiv2/edminiv2.c
/rk3399_rockchip-uboot/board/LaCie/net2big_v2/net2big_v2.c
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/netspace_v2.c
/rk3399_rockchip-uboot/board/Marvell/aspenite/aspenite.c
/rk3399_rockchip-uboot/board/Marvell/gplugd/gplugd.c
/rk3399_rockchip-uboot/board/Marvell/guruplug/guruplug.c
/rk3399_rockchip-uboot/board/Marvell/openrd/openrd.c
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/sheevaplug.c
/rk3399_rockchip-uboot/board/Seagate/dockstar/dockstar.c
/rk3399_rockchip-uboot/board/Seagate/goflexhome/goflexhome.c
/rk3399_rockchip-uboot/board/Seagate/nas220/nas220.c
/rk3399_rockchip-uboot/board/Synology/ds109/ds109.c
/rk3399_rockchip-uboot/board/amazon/kc1/kc1.c
/rk3399_rockchip-uboot/board/armltd/integrator/integrator.c
/rk3399_rockchip-uboot/board/armltd/vexpress/vexpress_common.c
/rk3399_rockchip-uboot/board/atmel/at91rm9200ek/at91rm9200ek.c
/rk3399_rockchip-uboot/board/atmel/at91sam9261ek/at91sam9261ek.c
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/at91sam9263ek.c
/rk3399_rockchip-uboot/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
/rk3399_rockchip-uboot/board/atmel/at91sam9rlek/at91sam9rlek.c
/rk3399_rockchip-uboot/board/atmel/at91sam9x5ek/at91sam9x5ek.c
/rk3399_rockchip-uboot/board/bluegiga/apx4devkit/apx4devkit.c
/rk3399_rockchip-uboot/board/bluewater/gurnard/gurnard.c
/rk3399_rockchip-uboot/board/bluewater/snapper9260/snapper9260.c
/rk3399_rockchip-uboot/board/cirrus/edb93xx/edb93xx.c
/rk3399_rockchip-uboot/board/compulab/cl-som-am57x/spl.c
/rk3399_rockchip-uboot/board/compulab/common/common.c
/rk3399_rockchip-uboot/board/compulab/common/eeprom.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/da850evm.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/omapl138_lcdk.c
/rk3399_rockchip-uboot/board/davinci/ea20/ea20.c
/rk3399_rockchip-uboot/board/esd/meesc/meesc.c
/rk3399_rockchip-uboot/board/freescale/common/ns_access.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ls2080a.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/README
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/eth_ls2080rdb.c
/rk3399_rockchip-uboot/board/freescale/mx35pdk/mx35pdk.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana.c
/rk3399_rockchip-uboot/board/gumstix/duovero/duovero.c
/rk3399_rockchip-uboot/board/h2200/h2200.c
/rk3399_rockchip-uboot/board/imx31_phycore/imx31_phycore.c
/rk3399_rockchip-uboot/board/lego/ev3/legoev3.c
/rk3399_rockchip-uboot/board/mini-box/picosam9g45/picosam9g45.c
/rk3399_rockchip-uboot/board/nvidia/seaboard/seaboard.c
/rk3399_rockchip-uboot/board/overo/common.c
/rk3399_rockchip-uboot/board/ronetix/pm9261/pm9261.c
/rk3399_rockchip-uboot/board/ronetix/pm9263/pm9263.c
/rk3399_rockchip-uboot/board/ronetix/pm9g45/pm9g45.c
/rk3399_rockchip-uboot/board/samsung/goni/goni.c
/rk3399_rockchip-uboot/board/samsung/smdkc100/smdkc100.c
/rk3399_rockchip-uboot/board/samsung/universal_c210/universal.c
/rk3399_rockchip-uboot/board/siemens/common/board.c
/rk3399_rockchip-uboot/board/spear/spear300/spear300.c
/rk3399_rockchip-uboot/board/spear/spear310/spear310.c
/rk3399_rockchip-uboot/board/spear/spear320/spear320.c
/rk3399_rockchip-uboot/board/spear/spear600/spear600.c
/rk3399_rockchip-uboot/board/spear/x600/x600.c
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/ti/common/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2g.c
/rk3399_rockchip-uboot/board/ti/omap5_uevm/evm.c
/rk3399_rockchip-uboot/board/ti/panda/panda.c
/rk3399_rockchip-uboot/board/ti/ti816x/evm.c
/rk3399_rockchip-uboot/board/toradex/colibri_pxa270/colibri_pxa270.c
/rk3399_rockchip-uboot/board/toradex/common/tdx-cfg-block.c
/rk3399_rockchip-uboot/board/toradex/common/tdx-common.c
/rk3399_rockchip-uboot/board/zipitz2/zipitz2.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/elf.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/configs/Sinlinx_SinA33_defconfig
/rk3399_rockchip-uboot/configs/am335x_baltos_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_nor_defconfig
/rk3399_rockchip-uboot/configs/am335x_igep003x_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_ict_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_netboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_sl50_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_nodt_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_nospl_com_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_nospl_it_defconfig
/rk3399_rockchip-uboot/configs/at91sam9m10g45ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9rlek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/bananapi_m64_defconfig
/rk3399_rockchip-uboot/configs/bcm958622hr_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/brppt1_mmc_defconfig
/rk3399_rockchip-uboot/configs/brppt1_nand_defconfig
/rk3399_rockchip-uboot/configs/brppt1_spi_defconfig
/rk3399_rockchip-uboot/configs/brxre1_defconfig
/rk3399_rockchip-uboot/configs/cairo_defconfig
/rk3399_rockchip-uboot/configs/chiliboard_defconfig
/rk3399_rockchip-uboot/configs/cl-som-am57x_defconfig
/rk3399_rockchip-uboot/configs/cm_t335_defconfig
/rk3399_rockchip-uboot/configs/cm_t43_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_nospl_defconfig
/rk3399_rockchip-uboot/configs/ds109_defconfig
/rk3399_rockchip-uboot/configs/duovero_defconfig
/rk3399_rockchip-uboot/configs/gurnard_defconfig
/rk3399_rockchip-uboot/configs/hikey_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/kzm9g_defconfig
/rk3399_rockchip-uboot/configs/ls1021aiot_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aiot_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_emmc_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/m28evk_defconfig
/rk3399_rockchip-uboot/configs/m53evk_defconfig
/rk3399_rockchip-uboot/configs/ma5d4evk_defconfig
/rk3399_rockchip-uboot/configs/mx7ulp_evk_defconfig
/rk3399_rockchip-uboot/configs/mx7ulp_evk_plugin_defconfig
/rk3399_rockchip-uboot/configs/nanopi_m1_defconfig
/rk3399_rockchip-uboot/configs/novena_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_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/orangepi_prime_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/pic32mzdask_defconfig
/rk3399_rockchip-uboot/configs/picosam9g45_defconfig
/rk3399_rockchip-uboot/configs/r8a7795_salvator-x_defconfig
/rk3399_rockchip-uboot/configs/r8a7796_salvator-x_defconfig
/rk3399_rockchip-uboot/configs/s5p_goni_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_ptc_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_ptc_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_nandflash_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/sama5d4ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/ti814x_evm_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_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/doc/device-tree-bindings/misc/intel,baytrail-fsp.txt
/rk3399_rockchip-uboot/drivers/ddr/fsl/arm_ddr_gen3.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/ddr/fsl/util.c
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/i2c/s3c24x0_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mtd/nand/Makefile
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/cpsw.c
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/fm/ls1043.c
/rk3399_rockchip-uboot/drivers/net/fm/ls1046.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/macb.c
/rk3399_rockchip-uboot/drivers/net/mvpp2.c
/rk3399_rockchip-uboot/drivers/net/pch_gbe.c
/rk3399_rockchip-uboot/drivers/net/phy/Kconfig
/rk3399_rockchip-uboot/drivers/net/phy/marvell.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape_fixup.c
/rk3399_rockchip-uboot/drivers/qe/qe.c
/rk3399_rockchip-uboot/drivers/reset/sti-reset.c
/rk3399_rockchip-uboot/drivers/usb/common/fsl-errata.c
/rk3399_rockchip-uboot/drivers/usb/gadget/gadget_chips.h
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mx6.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-hcd.c
/rk3399_rockchip-uboot/drivers/video/sm501.c
/rk3399_rockchip-uboot/fs/fat/Kconfig
/rk3399_rockchip-uboot/include/api.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/config_fallbacks.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/apalis-tk1.h
/rk3399_rockchip-uboot/include/configs/apalis_imx6.h
/rk3399_rockchip-uboot/include/configs/apalis_t30.h
/rk3399_rockchip-uboot/include/configs/at91-sama5_common.h
/rk3399_rockchip-uboot/include/configs/at91sam9m10g45ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9n12ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9rlek.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/bcm23550_w1d.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bcm_ep_board.h
/rk3399_rockchip-uboot/include/configs/brppt1.h
/rk3399_rockchip-uboot/include/configs/brxre1.h
/rk3399_rockchip-uboot/include/configs/calimain.h
/rk3399_rockchip-uboot/include/configs/cl-som-am57x.h
/rk3399_rockchip-uboot/include/configs/colibri_imx6.h
/rk3399_rockchip-uboot/include/configs/colibri_t20.h
/rk3399_rockchip-uboot/include/configs/colibri_t30.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/ds109.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/etamin.h
/rk3399_rockchip-uboot/include/configs/exynos-common.h
/rk3399_rockchip-uboot/include/configs/hikey.h
/rk3399_rockchip-uboot/include/configs/ipam390.h
/rk3399_rockchip-uboot/include/configs/k2e_evm.h
/rk3399_rockchip-uboot/include/configs/k2g_evm.h
/rk3399_rockchip-uboot/include/configs/k2hk_evm.h
/rk3399_rockchip-uboot/include/configs/k2l_evm.h
/rk3399_rockchip-uboot/include/configs/legoev3.h
/rk3399_rockchip-uboot/include/configs/ls1012a_common.h
/rk3399_rockchip-uboot/include/configs/ls1021aiot.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/ls1043ardb.h
/rk3399_rockchip-uboot/include/configs/ls1046a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080aqds.h
/rk3399_rockchip-uboot/include/configs/m28evk.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/ma5d4evk.h
/rk3399_rockchip-uboot/include/configs/meson-gxbb-common.h
/rk3399_rockchip-uboot/include/configs/mx7ulp_evk.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/pic32mzdask.h
/rk3399_rockchip-uboot/include/configs/picosam9g45.h
/rk3399_rockchip-uboot/include/configs/rcar-gen2-common.h
/rk3399_rockchip-uboot/include/configs/rcar-gen3-common.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk3188_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/configs/rpi.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/sama5d2_ptc.h
/rk3399_rockchip-uboot/include/configs/sama5d3_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d3xek.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/snapper9g45.h
/rk3399_rockchip-uboot/include/configs/socfpga_arria10_socdk.h
/rk3399_rockchip-uboot/include/configs/socfpga_arria5_socdk.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_de10_nano.h
/rk3399_rockchip-uboot/include/configs/socfpga_de1_soc.h
/rk3399_rockchip-uboot/include/configs/socfpga_is1.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/socfpga_vining_fpga.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tegra-common-post.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_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/sun50i-a64-ccu.h
/rk3399_rockchip-uboot/include/dt-bindings/reset/sun50i-a64-ccu.h
/rk3399_rockchip-uboot/include/fat.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc.h
/rk3399_rockchip-uboot/include/fsl_ifc.h
time.c
/rk3399_rockchip-uboot/net/eth-uclass.c
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/test/py/tests/test_hush_if_test.py
/rk3399_rockchip-uboot/tools/binman/control.py
/rk3399_rockchip-uboot/tools/binman/etype/u_boot_dtb_with_ucode.py
/rk3399_rockchip-uboot/tools/binman/fdt_test.py
/rk3399_rockchip-uboot/tools/binman/func_test.py
/rk3399_rockchip-uboot/tools/dtoc/dtoc.py
/rk3399_rockchip-uboot/tools/dtoc/fdt.py
727f153627-May-2017 Simon Glass <sjg@chromium.org>

fdt: Stop building the old python libfdt module

This is no-longer needed, so stop building it.

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

555ba48827-May-2017 Simon Glass <sjg@chromium.org>

fdt: Rename existing python libfdt module

Now that this module has been accepted upstream we should stop using the
local U-Boot one. In preparation for this, rename it to indicate it is for
legacy u

fdt: Rename existing python libfdt module

Now that this module has been accepted upstream we should stop using the
local U-Boot one. In preparation for this, rename it to indicate it is for
legacy use.

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

show more ...

1...<<11121314151617181920>>...46