History log of /rk3399_rockchip-uboot/lib/ (Results 501 – 525 of 1133)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
488bf12d18-Aug-2016 Alexander Graf <agraf@suse.de>

efi_loader: Expose efi_install_configuration_table

We want to be able to add configuration table entries from our own code as
well as from EFI payload code. Export the boot service function internal

efi_loader: Expose efi_install_configuration_table

We want to be able to add configuration table entries from our own code as
well as from EFI payload code. Export the boot service function internally
too, so that we can reuse it.

Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

4b6dddc218-Aug-2016 Alexander Graf <agraf@suse.de>

x86: Move smbios generation into arch independent directory

We will need the SMBIOS generation function on ARM as well going forward,
so let's move it into a non arch specific location.

Signed-off-

x86: Move smbios generation into arch independent directory

We will need the SMBIOS generation function on ARM as well going forward,
so let's move it into a non arch specific location.

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

show more ...

1befb38b18-Aug-2016 Alexander Graf <agraf@suse.de>

x86: Move table csum into separate file

We need the checksum function without all the other table functionality
soon, so let's split it out into its own C file.

Signed-off-by: Alexander Graf <agraf

x86: Move table csum into separate file

We need the checksum function without all the other table functionality
soon, so let's split it out into its own C file.

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

show more ...

8f661a5b06-Jun-2016 Alexander Graf <agraf@suse.de>

efi_loader: gop: Expose fb when 32bpp

When we're running in 32bpp mode, expose the frame buffer address
to our payloads so that Linux efifb can pick it up.

Signed-off-by: Alexander Graf <agraf@suse

efi_loader: gop: Expose fb when 32bpp

When we're running in 32bpp mode, expose the frame buffer address
to our payloads so that Linux efifb can pick it up.

Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

712cd29806-Sep-2016 Alexander Graf <agraf@suse.de>

efi_loader: Allow bouncing for network

So far bounce buffers were only used for disk I/O, but network I/O
may suffer from the same problem.

On platforms that have problems doing DMA on high address

efi_loader: Allow bouncing for network

So far bounce buffers were only used for disk I/O, but network I/O
may suffer from the same problem.

On platforms that have problems doing DMA on high addresses, let's
also bounce outgoing network packets. Incoming ones always already
get bounced.

This patch fixes EFI PXE boot on ZynqMP for me.

Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

80a4800e16-Aug-2016 Alexander Graf <agraf@suse.de>

efi_loader: Allow boards to implement get_time and reset_system

EFI allows an OS to leverage firmware drivers while the OS is running. In the
generic code we so far had to stub those implementations

efi_loader: Allow boards to implement get_time and reset_system

EFI allows an OS to leverage firmware drivers while the OS is running. In the
generic code we so far had to stub those implementations out, because we would
need board specific knowledge about MMIO setups for it.

However, boards can easily implement those themselves. This patch provides the
framework so that a board can implement its own versions of get_time and
reset_system which would actually do something useful.

While at it we also introduce a simple way for code to reserve MMIO pointers
as runtime available.

Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

511d0b9701-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Do not leak memory when unlinking a mapping

As soon as a mapping is unlinked from the list, there are no further
references to it, so it should be freed. If it not unlinked,
update the s

efi_loader: Do not leak memory when unlinking a mapping

As soon as a mapping is unlinked from the list, there are no further
references to it, so it should be freed. If it not unlinked,
update the start address and length.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

b6a9517201-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Keep memory mapping sorted when splitting an entry

The code assumes sorted mappings in descending address order. When
splitting a mapping, insert the new part next to the current mapping

efi_loader: Keep memory mapping sorted when splitting an entry

The code assumes sorted mappings in descending address order. When
splitting a mapping, insert the new part next to the current mapping.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

b61d857b01-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Readd freed pages to memory pool

Currently each allocation creates a new mapping. Readding the mapping
as free memory (EFI_CONVENTIONAL_MEMORY) potentially allows to hand out
an existing

efi_loader: Readd freed pages to memory pool

Currently each allocation creates a new mapping. Readding the mapping
as free memory (EFI_CONVENTIONAL_MEMORY) potentially allows to hand out
an existing mapping, thus limiting the number of mapping descriptors in
the memory map.

Mitigates a problem with current (4.8rc7) linux kernels when doing an
efi_get_memory map, resulting in an infinite loop. Space for the memory
map is reserved with allocate_pool (implicitly creating a new mapping) and
filled. If there is insufficient slack space (8 entries) in the map, the
space is freed and a new round is started, with space for one more entry.
As each round increases requirement and allocation by exactly one, there
is never enough slack space. (At least 32 entries are allocated, so as
long as there are less than 24 entries, there is enough slack).
Earlier kernels reserved no slack, and did less allocations, so this
problem was not visible.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

42417bc809-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Track size of pool allocations to allow freeing

We need a functional free_pool implementation, as otherwise each
allocate_pool causes growth of the memory descriptor table.

Different to

efi_loader: Track size of pool allocations to allow freeing

We need a functional free_pool implementation, as otherwise each
allocate_pool causes growth of the memory descriptor table.

Different to free_pages, free_pool does not provide the size for the
to be freed allocation, thus we have to track the size ourselves.

As the only EFI requirement for pool allocation is an alignment of
8 bytes, we can keep allocating a range using the page allocator,
reserve the first 8 bytes for our bookkeeping and hand out the
remainder to the caller. This saves us from having to use any
independent data structures for tracking.

To simplify the conversion between pool allocations and the corresponding
page allocation, we create an auxiliary struct efi_pool_allocation.

Given the allocation size free_pool size can handoff freeing the page
range, which was indirectly allocated by a call to allocate_pool,
to free_pages.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

ead1274b09-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Move efi_allocate_pool implementation to efi_memory.c

We currently handle efi_allocate_pool() in our boot time service
file. In the following patch, pool allocation will receive addition

efi_loader: Move efi_allocate_pool implementation to efi_memory.c

We currently handle efi_allocate_pool() in our boot time service
file. In the following patch, pool allocation will receive additional
internal semantics that we should preserve inside efi_memory.c instead.

As foundation for those changes, split the function into an externally
facing efi_allocate_pool_ext() for use by payloads and an internal helper
efi_allocate_pool() in efi_memory.c that handles the actual allocation.

While at it, change the magic 0xfff / 12 constants to the more obvious
EFI_PAGE_MASK/SHIFT defines.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

991d62fa13-Sep-2016 Robin Randhawa <robin.randhawa@arm.com>

efi_loader: Fix crash on 32-bit systems

A type mismatch in the efi_allocate_pool boot service flow causes
hazardous memory scribbling on 32-bit systems.

This is efi_allocate_pool's prototype:

stat

efi_loader: Fix crash on 32-bit systems

A type mismatch in the efi_allocate_pool boot service flow causes
hazardous memory scribbling on 32-bit systems.

This is efi_allocate_pool's prototype:

static efi_status_t EFIAPI efi_allocate_pool(int pool_type,
unsigned long size,
void **buffer);

Internally, it invokes efi_allocate_pages as follows:

efi_allocate_pages(0, pool_type, (size + 0xfff) >> 12,
(void*)buffer);

This is efi_allocate_pages' prototype:

efi_status_t efi_allocate_pages(int type, int memory_type,
unsigned long pages,
uint64_t *memory);

The problem: efi_allocate_pages does this internally:

*memory = addr;

This fix in efi_allocate_pool uses a transitional uintptr_t cast to
ensure the correct outcome, irrespective of the system's native word
size.

This was observed when bootefi'ing the EFI instance of FreeBSD's first
stage bootstrap (boot1.efi) on a 32-bit ARM platform (Qemu VExpress +
Cortex-a9).

Signed-off-by: Robin Randhawa <robin.randhawa@arm.com>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

bdf5c1b309-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Fix memory map size check to avoid out-of-bounds access

The current efi_get_memory_map() function overwrites the map_size
property before reading its value. That way the sanity check whe

efi_loader: Fix memory map size check to avoid out-of-bounds access

The current efi_get_memory_map() function overwrites the map_size
property before reading its value. That way the sanity check whether our
memory map fits into the given array always succeeds, potentially
overwriting arbitrary payload memory.

This patch moves the property update write after its sanity check, so
that the check actually verifies the correct value.

So far this has not triggered any known bugs, but we're better off safe
than sorry.

If the buffer is to small, the returned memory_map_size indicates the
required size to the caller.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

852efbf501-Oct-2016 Stefan Brüns <stefan.bruens@rwth-aachen.de>

efi_loader: Update description of internal efi_mem_carve_out

In 74c16acce30bb882ad5951829d8dafef8eea564c the return values where
changed, but the description was kept.

Signed-off-by: Stefan Brüns <

efi_loader: Update description of internal efi_mem_carve_out

In 74c16acce30bb882ad5951829d8dafef8eea564c the return values where
changed, but the description was kept.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/fdt.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/t1024_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xqds/t1024_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xqds/t1024_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t1023_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t1023_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t1023_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t1024_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t1024_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t1024_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1040_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1040_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1040_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1040d4_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1040d4_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1040d4_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042_pi_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042_pi_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042_pi_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042d4_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042d4_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t1042d4_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2080_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2080_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2080_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2081_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2081_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2081_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208x_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t2080_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t2080_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t2080_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t2080_spi_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t4qds/t4_nand_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t4qds/t4_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t4qds/t4_sd_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t4rdb/t4_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t4rdb/t4_sd_rcw.cfg
/rk3399_rockchip-uboot/include/configs/T102xQDS.h
/rk3399_rockchip-uboot/include/configs/T102xRDB.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
efi_loader/efi_memory.c
/rk3399_rockchip-uboot/tools/pblimage.c
ebf7fff206-Oct-2016 Heiko Schocher <hs@denx.de>

spl: move FDT_FIXUP_PARTITIONS to Kconfig

Move FDT_FIXUP_PARTITIONS to Kconfig and cleanup existing
uses.

Signed-off-by: Heiko Schocher <hs@denx.de>


/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/cmd/net.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/a3m071_defconfig
/rk3399_rockchip-uboot/configs/a4m2k_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_usbspl_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_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_ethboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_usbhost_boot_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_nodt_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/cairo_defconfig
/rk3399_rockchip-uboot/configs/cm_fx6_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/gwventana_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0030_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/microblaze-generic_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_overo_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/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/pdm360ng_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_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_zc1751_xm019_dc5_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm011_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/drivers/net/cpsw.c
/rk3399_rockchip-uboot/drivers/net/mvneta.c
/rk3399_rockchip-uboot/drivers/net/phy/atheros.c
/rk3399_rockchip-uboot/drivers/net/phy/mv88e61xx.c
/rk3399_rockchip-uboot/drivers/net/rtl8169.c
/rk3399_rockchip-uboot/drivers/usb/eth/smsc95xx.c
/rk3399_rockchip-uboot/include/configs/BSC9131RDB.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_igep0033.h
/rk3399_rockchip-uboot/include/configs/baltos.h
/rk3399_rockchip-uboot/include/configs/bav335x.h
/rk3399_rockchip-uboot/include/configs/brppt1.h
/rk3399_rockchip-uboot/include/configs/cm_fx6.h
/rk3399_rockchip-uboot/include/configs/cm_t335.h
/rk3399_rockchip-uboot/include/configs/cm_t43.h
/rk3399_rockchip-uboot/include/configs/cm_t54.h
/rk3399_rockchip-uboot/include/configs/duovero.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/ipam390.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/omap3_zoom1.h
/rk3399_rockchip-uboot/include/configs/pdm360ng.h
/rk3399_rockchip-uboot/include/configs/pepper.h
/rk3399_rockchip-uboot/include/configs/smartweb.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/twister.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/cpsw.h
Kconfig
/rk3399_rockchip-uboot/net/eth-uclass.c
/rk3399_rockchip-uboot/test/py/tests/test_net.py
/rk3399_rockchip-uboot/test/py/tests/test_sleep.py
42b7600d02-Oct-2016 Simon Glass <sjg@chromium.org>

libfdt: Drop inlining of fdt_path_offset()

The fdt_path_offset() function is not inlined in upstream libfdt. Adjust
U-Boot's version to match.

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

df87e6b102-Oct-2016 Simon Glass <sjg@chromium.org>

libfdt: Sync fdt_for_each_subnode() with upstream

The signature for this macro has changed. Bring in the upstream version and
adjust U-Boot's usages to suit.

Signed-off-by: Simon Glass <sjg@chromiu

libfdt: Sync fdt_for_each_subnode() with upstream

The signature for this macro has changed. Bring in the upstream version and
adjust U-Boot's usages to suit.

Signed-off-by: Simon Glass <sjg@chromium.org>
Update to drivers/power/pmic/palmas.c:
Signed-off-by: Keerthy <j-keerthy@ti.com>

Change-Id: I6cc9021339bfe686f9df21d61a1095ca2b3776e8

show more ...

b02e404402-Oct-2016 Simon Glass <sjg@chromium.org>

libfdt: Bring in upstream stringlist functions

These have now landed upstream. The naming is different and in one case the
function signature has changed. Update the code to match.

This applies the

libfdt: Bring in upstream stringlist functions

These have now landed upstream. The naming is different and in one case the
function signature has changed. Update the code to match.

This applies the following upstream commits by
Thierry Reding <treding@nvidia.com> :

604e61e fdt: Add functions to retrieve strings
8702bd1 fdt: Add a function to get the index of a string
2218387 fdt: Add a function to count strings

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

show more ...

9c07b98702-Oct-2016 Simon Glass <sjg@chromium.org>

libfdt: Sync up with upstream

This includes small changes to the following functions, from upstream
commit 6d1832c:

- fdt_get_max_phandle() (upstream commit 84e0e134)
- fdt_node_check_compatible (u

libfdt: Sync up with upstream

This includes small changes to the following functions, from upstream
commit 6d1832c:

- fdt_get_max_phandle() (upstream commit 84e0e134)
- fdt_node_check_compatible (upstream commit 53bf130b)
- fdt_setprop_inplace_namelen_partial() to remove useless brackets and
use idx instead of index
- _fdt_resize_property() to use idx instead of index
- _fdt_splice() (upstream commit d4c7c25c)

It also includes various typo fixes in libfdt.h

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

show more ...

491c7b6f02-Oct-2016 David Gibson <david@gibson.dropbear.id.au>

libfdt: Fix undefined behaviour in fdt_offset_ptr()

Using pointer arithmetic to generate a pointer outside a known object is,
technically, undefined behaviour in C. Unfortunately, we were using tha

libfdt: Fix undefined behaviour in fdt_offset_ptr()

Using pointer arithmetic to generate a pointer outside a known object is,
technically, undefined behaviour in C. Unfortunately, we were using that
in fdt_offset_ptr() to detect overflows.

To fix this we need to do our bounds / overflow checking on the offsets
before constructing pointers from them.

Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/soc.c
/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/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/mp.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1043a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2080a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-colibri.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/mp.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_sun8i_h3.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/arm64-mmu.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/pll-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/ddrphy-ld20-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ld20.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init/init-ld20.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/micro-support-card.c
/rk3399_rockchip-uboot/arch/blackfin/include/asm/config.h
/rk3399_rockchip-uboot/arch/sandbox/cpu/os.c
/rk3399_rockchip-uboot/arch/sandbox/include/asm/io.h
/rk3399_rockchip-uboot/arch/x86/cpu/broadwell/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/interrupts.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/bd82x6x.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/early_me.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/lpc.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/model_206ax.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/sata.c
/rk3399_rockchip-uboot/arch/x86/dts/bayleybay.dts
/rk3399_rockchip-uboot/arch/x86/dts/broadwell_som-6896.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_link.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_samus.dts
/rk3399_rockchip-uboot/arch/x86/dts/chromebox_panther.dts
/rk3399_rockchip-uboot/arch/x86/dts/coreboot_fb.dtsi
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/include/asm/cpu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/init_helpers.h
/rk3399_rockchip-uboot/arch/x86/lib/init_helpers.c
/rk3399_rockchip-uboot/arch/x86/lib/mrccache.c
/rk3399_rockchip-uboot/board/Synology/ds109/Kconfig
/rk3399_rockchip-uboot/board/Synology/ds109/MAINTAINERS
/rk3399_rockchip-uboot/board/Synology/ds109/Makefile
/rk3399_rockchip-uboot/board/Synology/ds109/ds109.c
/rk3399_rockchip-uboot/board/Synology/ds109/ds109.h
/rk3399_rockchip-uboot/board/Synology/ds109/kwbimage.cfg
/rk3399_rockchip-uboot/board/Synology/ds109/openocd.cfg
/rk3399_rockchip-uboot/board/amcc/acadia/Kconfig
/rk3399_rockchip-uboot/board/amcc/bamboo/Kconfig
/rk3399_rockchip-uboot/board/amcc/bubinga/Kconfig
/rk3399_rockchip-uboot/board/amcc/canyonlands/Kconfig
/rk3399_rockchip-uboot/board/amcc/katmai/Kconfig
/rk3399_rockchip-uboot/board/amcc/kilauea/Kconfig
/rk3399_rockchip-uboot/board/amcc/luan/Kconfig
/rk3399_rockchip-uboot/board/amcc/makalu/Kconfig
/rk3399_rockchip-uboot/board/amcc/redwood/Kconfig
/rk3399_rockchip-uboot/board/amcc/sequoia/Kconfig
/rk3399_rockchip-uboot/board/amcc/walnut/Kconfig
/rk3399_rockchip-uboot/board/amcc/yosemite/Kconfig
/rk3399_rockchip-uboot/board/amcc/yucca/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_fx6/cm_fx6.c
/rk3399_rockchip-uboot/board/freescale/common/fsl_validate.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/README
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/README
/rk3399_rockchip-uboot/board/liebherr/lwmon5/Kconfig
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/cros_ec.c
/rk3399_rockchip-uboot/cmd/fdt.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/stdio.c
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/M5208EVBE_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M5235EVB_Flash32_defconfig
/rk3399_rockchip-uboot/configs/M5235EVB_defconfig
/rk3399_rockchip-uboot/configs/M5249EVB_defconfig
/rk3399_rockchip-uboot/configs/M5253DEMO_defconfig
/rk3399_rockchip-uboot/configs/M5253EVBE_defconfig
/rk3399_rockchip-uboot/configs/M5272C3_defconfig
/rk3399_rockchip-uboot/configs/M5275EVB_defconfig
/rk3399_rockchip-uboot/configs/M5282EVB_defconfig
/rk3399_rockchip-uboot/configs/M53017EVB_defconfig
/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig
/rk3399_rockchip-uboot/configs/M5329BFEE_defconfig
/rk3399_rockchip-uboot/configs/M5373EVB_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_lowfreq_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_rmii_defconfig
/rk3399_rockchip-uboot/configs/MIP405T_defconfig
/rk3399_rockchip-uboot/configs/MIP405_defconfig
/rk3399_rockchip-uboot/configs/PATI_defconfig
/rk3399_rockchip-uboot/configs/PIP405_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_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/amcore_defconfig
/rk3399_rockchip-uboot/configs/ap121_defconfig
/rk3399_rockchip-uboot/configs/ap143_defconfig
/rk3399_rockchip-uboot/configs/apalis_t30_defconfig
/rk3399_rockchip-uboot/configs/apx4devkit_defconfig
/rk3399_rockchip-uboot/configs/aspenite_defconfig
/rk3399_rockchip-uboot/configs/astro_mcf5373l_defconfig
/rk3399_rockchip-uboot/configs/at91rm9200ek_defconfig
/rk3399_rockchip-uboot/configs/at91rm9200ek_ram_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/at91sam9261ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_dataflash_cs3_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_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/at91sam9g10ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_dataflash_cs3_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_nandflash_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/axm_defconfig
/rk3399_rockchip-uboot/configs/bayleybay_defconfig
/rk3399_rockchip-uboot/configs/bcm11130_defconfig
/rk3399_rockchip-uboot/configs/bcm11130_nand_defconfig
/rk3399_rockchip-uboot/configs/bcm23550_w1d_defconfig
/rk3399_rockchip-uboot/configs/bcm28155_ap_defconfig
/rk3399_rockchip-uboot/configs/bcm28155_w1d_defconfig
/rk3399_rockchip-uboot/configs/bcm911360_entphn-ns_defconfig
/rk3399_rockchip-uboot/configs/bcm911360_entphn_defconfig
/rk3399_rockchip-uboot/configs/bcm911360k_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k-ns_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k_defconfig
/rk3399_rockchip-uboot/configs/bcm958305k_defconfig
/rk3399_rockchip-uboot/configs/bcm958622hr_defconfig
/rk3399_rockchip-uboot/configs/beaver_defconfig
/rk3399_rockchip-uboot/configs/bg0900_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/calimain_defconfig
/rk3399_rockchip-uboot/configs/cardhu_defconfig
/rk3399_rockchip-uboot/configs/cei-tk1-som_defconfig
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/clearfog_defconfig
/rk3399_rockchip-uboot/configs/cm_t43_defconfig
/rk3399_rockchip-uboot/configs/cobra5272_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/colibri_pxa270_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_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/controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_TRAILBLAZER_DEVELOP_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_TRAILBLAZER_defconfig
/rk3399_rockchip-uboot/configs/coreboot-x86_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/d2net_v2_defconfig
/rk3399_rockchip-uboot/configs/da850_am18xxevm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_direct_nor_defconfig
/rk3399_rockchip-uboot/configs/dalmore_defconfig
/rk3399_rockchip-uboot/configs/db-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/devconcenter_defconfig
/rk3399_rockchip-uboot/configs/devkit3250_defconfig
/rk3399_rockchip-uboot/configs/dfi-bt700-q7x-151_defconfig
/rk3399_rockchip-uboot/configs/dlvision-10g_defconfig
/rk3399_rockchip-uboot/configs/dlvision_defconfig
/rk3399_rockchip-uboot/configs/dns325_defconfig
/rk3399_rockchip-uboot/configs/dockstar_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/draco_defconfig
/rk3399_rockchip-uboot/configs/dragonboard410c_defconfig
/rk3399_rockchip-uboot/configs/dreamplug_defconfig
/rk3399_rockchip-uboot/configs/ds109_defconfig
/rk3399_rockchip-uboot/configs/ds414_defconfig
/rk3399_rockchip-uboot/configs/e2220-1170_defconfig
/rk3399_rockchip-uboot/configs/ea20_defconfig
/rk3399_rockchip-uboot/configs/eb_cpu5282_defconfig
/rk3399_rockchip-uboot/configs/eb_cpu5282_internal_defconfig
/rk3399_rockchip-uboot/configs/edb9315a_defconfig
/rk3399_rockchip-uboot/configs/edminiv2_defconfig
/rk3399_rockchip-uboot/configs/espresso7420_defconfig
/rk3399_rockchip-uboot/configs/etamin_defconfig
/rk3399_rockchip-uboot/configs/ethernut5_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3036_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3288_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/fennec-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/flea3_defconfig
/rk3399_rockchip-uboot/configs/gdppc440etx_defconfig
/rk3399_rockchip-uboot/configs/goflexhome_defconfig
/rk3399_rockchip-uboot/configs/gplugd_defconfig
/rk3399_rockchip-uboot/configs/gurnard_defconfig
/rk3399_rockchip-uboot/configs/guruplug_defconfig
/rk3399_rockchip-uboot/configs/gwventana_defconfig
/rk3399_rockchip-uboot/configs/h2200_defconfig
/rk3399_rockchip-uboot/configs/harmony_defconfig
/rk3399_rockchip-uboot/configs/highbank_defconfig
/rk3399_rockchip-uboot/configs/hikey_defconfig
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/configs/hrcon_dh_defconfig
/rk3399_rockchip-uboot/configs/ib62x0_defconfig
/rk3399_rockchip-uboot/configs/icon_defconfig
/rk3399_rockchip-uboot/configs/iconnect_defconfig
/rk3399_rockchip-uboot/configs/ids8313_defconfig
/rk3399_rockchip-uboot/configs/imgtec_xilfpga_defconfig
/rk3399_rockchip-uboot/configs/inetspace_v2_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm720t_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm920t_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm926ejs_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm946es_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm1136_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm920t_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm926ejs_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm946es_defconfig
/rk3399_rockchip-uboot/configs/intip_defconfig
/rk3399_rockchip-uboot/configs/io64_defconfig
/rk3399_rockchip-uboot/configs/io_defconfig
/rk3399_rockchip-uboot/configs/iocon_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_128m16_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_pci_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5un_defconfig
/rk3399_rockchip-uboot/configs/kmnusa_defconfig
/rk3399_rockchip-uboot/configs/kmsugp1_defconfig
/rk3399_rockchip-uboot/configs/kmsuv31_defconfig
/rk3399_rockchip-uboot/configs/kylin-rk3036_defconfig
/rk3399_rockchip-uboot/configs/legoev3_defconfig
/rk3399_rockchip-uboot/configs/ls1012afrdm_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1012aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1012ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_ddr4_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_ddr4_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nor_ddr3_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_emu_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_simu_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/lschlv2_defconfig
/rk3399_rockchip-uboot/configs/lsxhl_defconfig
/rk3399_rockchip-uboot/configs/m28evk_defconfig
/rk3399_rockchip-uboot/configs/ma5d4evk_defconfig
/rk3399_rockchip-uboot/configs/maxbcm_defconfig
/rk3399_rockchip-uboot/configs/medcom-wide_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3un_defconfig
/rk3399_rockchip-uboot/configs/miniarm-rk3288_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f3720_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f7040_defconfig
/rk3399_rockchip-uboot/configs/mx23_olinuxino_defconfig
/rk3399_rockchip-uboot/configs/mx23evk_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_auart_console_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_nand_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_spi_defconfig
/rk3399_rockchip-uboot/configs/mx35pdk_defconfig
/rk3399_rockchip-uboot/configs/mx53loco_defconfig
/rk3399_rockchip-uboot/configs/mx6ull_14x14_evk_defconfig
/rk3399_rockchip-uboot/configs/nas220_defconfig
/rk3399_rockchip-uboot/configs/neo_defconfig
/rk3399_rockchip-uboot/configs/net2big_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_lite_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_max_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_mini_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_v2_defconfig
/rk3399_rockchip-uboot/configs/nsa310s_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/odroid-c2_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/openrd_base_defconfig
/rk3399_rockchip-uboot/configs/openrd_client_defconfig
/rk3399_rockchip-uboot/configs/openrd_ultimate_defconfig
/rk3399_rockchip-uboot/configs/p2371-0000_defconfig
/rk3399_rockchip-uboot/configs/p2371-2180_defconfig
/rk3399_rockchip-uboot/configs/p2571_defconfig
/rk3399_rockchip-uboot/configs/p2771-0000-000_defconfig
/rk3399_rockchip-uboot/configs/p2771-0000-500_defconfig
/rk3399_rockchip-uboot/configs/paz00_defconfig
/rk3399_rockchip-uboot/configs/pic32mzdask_defconfig
/rk3399_rockchip-uboot/configs/picosam9g45_defconfig
/rk3399_rockchip-uboot/configs/plutux_defconfig
/rk3399_rockchip-uboot/configs/pm9261_defconfig
/rk3399_rockchip-uboot/configs/pm9g45_defconfig
/rk3399_rockchip-uboot/configs/pogo_e02_defconfig
/rk3399_rockchip-uboot/configs/popmetal-rk3288_defconfig
/rk3399_rockchip-uboot/configs/portl2_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/qemu-ppce500_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_efi_payload32_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_efi_payload64_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/rock2_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/rut_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/sama5d2_xplained_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_noblk_defconfig
/rk3399_rockchip-uboot/configs/sansa_fuze_plus_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_33_PCIE_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_33_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_66_PCIE_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_66_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_defconfig
/rk3399_rockchip-uboot/configs/sbc8641d_defconfig
/rk3399_rockchip-uboot/configs/sc_sps_1_defconfig
/rk3399_rockchip-uboot/configs/seaboard_defconfig
/rk3399_rockchip-uboot/configs/sheevaplug_defconfig
/rk3399_rockchip-uboot/configs/smartweb_defconfig
/rk3399_rockchip-uboot/configs/smdk2410_defconfig
/rk3399_rockchip-uboot/configs/snapper9260_defconfig
/rk3399_rockchip-uboot/configs/snapper9g20_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_is1_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sr1500_defconfig
/rk3399_rockchip-uboot/configs/socfpga_vining_fpga_defconfig
/rk3399_rockchip-uboot/configs/som-db5800-som-6867_defconfig
/rk3399_rockchip-uboot/configs/spear300_defconfig
/rk3399_rockchip-uboot/configs/spear300_nand_defconfig
/rk3399_rockchip-uboot/configs/spear300_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear300_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_defconfig
/rk3399_rockchip-uboot/configs/spear310_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear320_defconfig
/rk3399_rockchip-uboot/configs/spear320_nand_defconfig
/rk3399_rockchip-uboot/configs/spear320_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear600_defconfig
/rk3399_rockchip-uboot/configs/spear600_nand_defconfig
/rk3399_rockchip-uboot/configs/spear600_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear600_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/stm32f429-discovery_defconfig
/rk3399_rockchip-uboot/configs/stm32f746-disco_defconfig
/rk3399_rockchip-uboot/configs/strider_con_defconfig
/rk3399_rockchip-uboot/configs/strider_con_dp_defconfig
/rk3399_rockchip-uboot/configs/strider_cpu_defconfig
/rk3399_rockchip-uboot/configs/strider_cpu_dp_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/configs/t3corp_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tec-ng_defconfig
/rk3399_rockchip-uboot/configs/tec_defconfig
/rk3399_rockchip-uboot/configs/theadorable-x86-dfi-bt700_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/ti814x_evm_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_defconfig
/rk3399_rockchip-uboot/configs/tplink_wdr4300_defconfig
/rk3399_rockchip-uboot/configs/trimslice_defconfig
/rk3399_rockchip-uboot/configs/usb_a9263_dataflash_defconfig
/rk3399_rockchip-uboot/configs/venice2_defconfig
/rk3399_rockchip-uboot/configs/ventana_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_dram_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_juno_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_semi_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca15_tc2_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca5x2_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca9x4_defconfig
/rk3399_rockchip-uboot/configs/vinco_defconfig
/rk3399_rockchip-uboot/configs/whistler_defconfig
/rk3399_rockchip-uboot/configs/woodburn_defconfig
/rk3399_rockchip-uboot/configs/woodburn_sd_defconfig
/rk3399_rockchip-uboot/configs/work_92105_defconfig
/rk3399_rockchip-uboot/configs/x600_defconfig
/rk3399_rockchip-uboot/configs/xfi3_defconfig
/rk3399_rockchip-uboot/configs/xilinx-ppc405-generic_defconfig
/rk3399_rockchip-uboot/configs/xilinx-ppc440-generic_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_zc1751_xm019_dc5_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/rk3399_rockchip-uboot/configs/zipitz2_defconfig
/rk3399_rockchip-uboot/configs/zmx25_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm011_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/doc/README.x86
/rk3399_rockchip-uboot/drivers/bios_emulator/atibios.c
/rk3399_rockchip-uboot/drivers/block/Kconfig
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/i2c/intel_i2c.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec.c
/rk3399_rockchip-uboot/drivers/misc/fsl_sec_mon.c
/rk3399_rockchip-uboot/drivers/mmc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/atmel_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/bcm2835_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/exynos_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/ftsdc021_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/kona_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/mmc-uclass.c
/rk3399_rockchip-uboot/drivers/mmc/mmc_private.h
/rk3399_rockchip-uboot/drivers/mmc/mmc_write.c
/rk3399_rockchip-uboot/drivers/mmc/msm_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/mv_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/pci_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/s5p_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/socfpga_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/spear_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/zynq_sdhci.c
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/power/pmic/Kconfig
/rk3399_rockchip-uboot/drivers/power/pmic/Makefile
/rk3399_rockchip-uboot/drivers/power/pmic/lp873x.c
/rk3399_rockchip-uboot/drivers/power/pmic/palmas.c
/rk3399_rockchip-uboot/drivers/power/regulator/Kconfig
/rk3399_rockchip-uboot/drivers/power/regulator/Makefile
/rk3399_rockchip-uboot/drivers/power/regulator/fixed.c
/rk3399_rockchip-uboot/drivers/power/regulator/gpio-regulator.c
/rk3399_rockchip-uboot/drivers/power/regulator/lp873x_regulator.c
/rk3399_rockchip-uboot/drivers/power/regulator/palmas_regulator.c
/rk3399_rockchip-uboot/drivers/reset/Kconfig
/rk3399_rockchip-uboot/drivers/reset/Makefile
/rk3399_rockchip-uboot/drivers/reset/reset-uniphier.c
/rk3399_rockchip-uboot/drivers/rtc/mc146818.c
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis_lpc.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-pci.c
/rk3399_rockchip-uboot/drivers/video/Kconfig
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/broadwell_igd.c
/rk3399_rockchip-uboot/drivers/video/coreboot.c
/rk3399_rockchip-uboot/drivers/video/ivybridge_igd.c
/rk3399_rockchip-uboot/drivers/video/simple_panel.c
/rk3399_rockchip-uboot/drivers/video/vesa.c
/rk3399_rockchip-uboot/drivers/video/video-uclass.c
/rk3399_rockchip-uboot/fs/sandbox/sandboxfs.c
/rk3399_rockchip-uboot/include/_exports.h
/rk3399_rockchip-uboot/include/asm-generic/sections.h
/rk3399_rockchip-uboot/include/configs/10m50_devboard.h
/rk3399_rockchip-uboot/include/configs/3c120_devboard.h
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/BSC9131RDB.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/C29XPCIE.h
/rk3399_rockchip-uboot/include/configs/CPCI2DP.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/M54451EVB.h
/rk3399_rockchip-uboot/include/configs/M54455EVB.h
/rk3399_rockchip-uboot/include/configs/M5475EVB.h
/rk3399_rockchip-uboot/include/configs/M5485EVB.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/MPC8313ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8315ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8323ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC832XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349EMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349ITX.h
/rk3399_rockchip-uboot/include/configs/MPC837XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC837XERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8540ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8541CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8544DS.h
/rk3399_rockchip-uboot/include/configs/MPC8548CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8555CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8560ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8568MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8569MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8572DS.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/P1023RDB.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/PMC405DE.h
/rk3399_rockchip-uboot/include/configs/PMC440.h
/rk3399_rockchip-uboot/include/configs/T102xQDS.h
/rk3399_rockchip-uboot/include/configs/T102xRDB.h
/rk3399_rockchip-uboot/include/configs/T1040QDS.h
/rk3399_rockchip-uboot/include/configs/T104xRDB.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/T208xRDB.h
/rk3399_rockchip-uboot/include/configs/T4240RDB.h
/rk3399_rockchip-uboot/include/configs/TQM5200.h
/rk3399_rockchip-uboot/include/configs/TQM823L.h
/rk3399_rockchip-uboot/include/configs/TQM823M.h
/rk3399_rockchip-uboot/include/configs/TQM834x.h
/rk3399_rockchip-uboot/include/configs/TQM850L.h
/rk3399_rockchip-uboot/include/configs/TQM850M.h
/rk3399_rockchip-uboot/include/configs/TQM855L.h
/rk3399_rockchip-uboot/include/configs/TQM855M.h
/rk3399_rockchip-uboot/include/configs/TQM860L.h
/rk3399_rockchip-uboot/include/configs/TQM860M.h
/rk3399_rockchip-uboot/include/configs/TQM862L.h
/rk3399_rockchip-uboot/include/configs/TQM862M.h
/rk3399_rockchip-uboot/include/configs/TQM866M.h
/rk3399_rockchip-uboot/include/configs/TQM885D.h
/rk3399_rockchip-uboot/include/configs/UCP1020.h
/rk3399_rockchip-uboot/include/configs/VCMA9.h
/rk3399_rockchip-uboot/include/configs/VOM405.h
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.h
/rk3399_rockchip-uboot/include/configs/ac14xx.h
/rk3399_rockchip-uboot/include/configs/advantech_dms-ba16.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/ap121.h
/rk3399_rockchip-uboot/include/configs/ap143.h
/rk3399_rockchip-uboot/include/configs/apf27.h
/rk3399_rockchip-uboot/include/configs/apx4devkit.h
/rk3399_rockchip-uboot/include/configs/aria.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/at91-sama5_common.h
/rk3399_rockchip-uboot/include/configs/at91sam9260ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9261ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9263ek.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/bayleybay.h
/rk3399_rockchip-uboot/include/configs/bg0900.h
/rk3399_rockchip-uboot/include/configs/boston.h
/rk3399_rockchip-uboot/include/configs/canmb.h
/rk3399_rockchip-uboot/include/configs/cm5200.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/cm_t3517.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/corvus.h
/rk3399_rockchip-uboot/include/configs/cougarcanyon2.h
/rk3399_rockchip-uboot/include/configs/crownbay.h
/rk3399_rockchip-uboot/include/configs/cyrus.h
/rk3399_rockchip-uboot/include/configs/dbau1x00.h
/rk3399_rockchip-uboot/include/configs/devkit3250.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/digsy_mtc.h
/rk3399_rockchip-uboot/include/configs/dns325.h
/rk3399_rockchip-uboot/include/configs/draco.h
/rk3399_rockchip-uboot/include/configs/ds109.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/efi-x86.h
/rk3399_rockchip-uboot/include/configs/etamin.h
/rk3399_rockchip-uboot/include/configs/ethernut5.h
/rk3399_rockchip-uboot/include/configs/exynos-common.h
/rk3399_rockchip-uboot/include/configs/exynos7420-common.h
/rk3399_rockchip-uboot/include/configs/flea3.h
/rk3399_rockchip-uboot/include/configs/galileo.h
/rk3399_rockchip-uboot/include/configs/ge_bx50v3.h
/rk3399_rockchip-uboot/include/configs/gr_cpci_ax2000.h
/rk3399_rockchip-uboot/include/configs/gr_ep2s60.h
/rk3399_rockchip-uboot/include/configs/gr_xc3s_1500.h
/rk3399_rockchip-uboot/include/configs/grsim.h
/rk3399_rockchip-uboot/include/configs/grsim_leon2.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/imx27lite-common.h
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/inka4x0.h
/rk3399_rockchip-uboot/include/configs/ipek01.h
/rk3399_rockchip-uboot/include/configs/jupiter.h
/rk3399_rockchip-uboot/include/configs/kc1.h
/rk3399_rockchip-uboot/include/configs/km/km8309-common.h
/rk3399_rockchip-uboot/include/configs/km/km8321-common.h
/rk3399_rockchip-uboot/include/configs/km/km83xx-common.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/km/kmp204x-common.h
/rk3399_rockchip-uboot/include/configs/km82xx.h
/rk3399_rockchip-uboot/include/configs/km8360.h
/rk3399_rockchip-uboot/include/configs/kzm9g.h
/rk3399_rockchip-uboot/include/configs/ls1012a_common.h
/rk3399_rockchip-uboot/include/configs/ls1012afrdm.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1043ardb.h
/rk3399_rockchip-uboot/include/configs/ls1046a_common.h
/rk3399_rockchip-uboot/include/configs/ls1046aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080aqds.h
/rk3399_rockchip-uboot/include/configs/ls2080ardb.h
/rk3399_rockchip-uboot/include/configs/m28evk.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/malta.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mecp5123.h
/rk3399_rockchip-uboot/include/configs/meesc.h
/rk3399_rockchip-uboot/include/configs/minnowmax.h
/rk3399_rockchip-uboot/include/configs/motionpro.h
/rk3399_rockchip-uboot/include/configs/mpc5121ads.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/munices.h
/rk3399_rockchip-uboot/include/configs/mv-common.h
/rk3399_rockchip-uboot/include/configs/mx23_olinuxino.h
/rk3399_rockchip-uboot/include/configs/mx23evk.h
/rk3399_rockchip-uboot/include/configs/mx25pdk.h
/rk3399_rockchip-uboot/include/configs/mx28evk.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx31pdk.h
/rk3399_rockchip-uboot/include/configs/mx35pdk.h
/rk3399_rockchip-uboot/include/configs/mx51evk.h
/rk3399_rockchip-uboot/include/configs/mx53ard.h
/rk3399_rockchip-uboot/include/configs/mx53evk.h
/rk3399_rockchip-uboot/include/configs/mx53loco.h
/rk3399_rockchip-uboot/include/configs/mx53smd.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx6ul_14x14_evk.h
/rk3399_rockchip-uboot/include/configs/mx6ullevk.h
/rk3399_rockchip-uboot/include/configs/mx7_common.h
/rk3399_rockchip-uboot/include/configs/mx7dsabresd.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/o2dnt-common.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_cairo.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap3_pandora.h
/rk3399_rockchip-uboot/include/configs/omap3_zoom1.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/p1_twr.h
/rk3399_rockchip-uboot/include/configs/pb1x00.h
/rk3399_rockchip-uboot/include/configs/pcm030.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/pdm360ng.h
/rk3399_rockchip-uboot/include/configs/pepper.h
/rk3399_rockchip-uboot/include/configs/pic32mzdask.h
/rk3399_rockchip-uboot/include/configs/pico-imx6ul.h
/rk3399_rockchip-uboot/include/configs/picosam9g45.h
/rk3399_rockchip-uboot/include/configs/pm9261.h
/rk3399_rockchip-uboot/include/configs/pm9263.h
/rk3399_rockchip-uboot/include/configs/pxa-common.h
/rk3399_rockchip-uboot/include/configs/qemu-mips.h
/rk3399_rockchip-uboot/include/configs/qemu-mips64.h
/rk3399_rockchip-uboot/include/configs/qemu-x86.h
/rk3399_rockchip-uboot/include/configs/rastaban.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/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/configs/s32v234evb.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/sansa_fuze_plus.h
/rk3399_rockchip-uboot/include/configs/sbc8349.h
/rk3399_rockchip-uboot/include/configs/sc_sps_1.h
/rk3399_rockchip-uboot/include/configs/smartweb.h
/rk3399_rockchip-uboot/include/configs/smdk2410.h
/rk3399_rockchip-uboot/include/configs/smdkc100.h
/rk3399_rockchip-uboot/include/configs/snapper9260.h
/rk3399_rockchip-uboot/include/configs/snapper9g45.h
/rk3399_rockchip-uboot/include/configs/sniper.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/socrates.h
/rk3399_rockchip-uboot/include/configs/som-6896.h
/rk3399_rockchip-uboot/include/configs/som-db5800-som-6867.h
/rk3399_rockchip-uboot/include/configs/spear-common.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/tegra-common-usb-gadget.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/thuban.h
/rk3399_rockchip-uboot/include/configs/ti816x_evm.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/tplink_wdr4300.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/configs/ts4800.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/usb_a9263.h
/rk3399_rockchip-uboot/include/configs/usbarmory.h
/rk3399_rockchip-uboot/include/configs/v38b.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/ve8313.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/configs/vme8349.h
/rk3399_rockchip-uboot/include/configs/warp7.h
/rk3399_rockchip-uboot/include/configs/woodburn_common.h
/rk3399_rockchip-uboot/include/configs/work_92105.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/x86-chromebook.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xfi3.h
/rk3399_rockchip-uboot/include/configs/xpedite1000.h
/rk3399_rockchip-uboot/include/configs/xpedite517x.h
/rk3399_rockchip-uboot/include/configs/xpedite520x.h
/rk3399_rockchip-uboot/include/configs/xpedite537x.h
/rk3399_rockchip-uboot/include/configs/xpedite550x.h
/rk3399_rockchip-uboot/include/configs/xpress.h
/rk3399_rockchip-uboot/include/configs/xtfpga.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/cros_ec.h
/rk3399_rockchip-uboot/include/dm/uclass.h
/rk3399_rockchip-uboot/include/dwmmc.h
/rk3399_rockchip-uboot/include/elf.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/fsl_sec_mon.h
/rk3399_rockchip-uboot/include/fsl_sfp.h
/rk3399_rockchip-uboot/include/linux/list.h
/rk3399_rockchip-uboot/include/os.h
/rk3399_rockchip-uboot/include/power/lp873x.h
/rk3399_rockchip-uboot/include/power/palmas.h
/rk3399_rockchip-uboot/include/power/regulator.h
/rk3399_rockchip-uboot/include/reset-uclass.h
/rk3399_rockchip-uboot/include/vbe.h
libfdt/fdt.c
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/tools/buildman/README
/rk3399_rockchip-uboot/tools/buildman/builder.py
/rk3399_rockchip-uboot/tools/buildman/builderthread.py
/rk3399_rockchip-uboot/tools/buildman/buildman.py
/rk3399_rockchip-uboot/tools/buildman/test.py
/rk3399_rockchip-uboot/tools/buildman/toolchain.py
/rk3399_rockchip-uboot/tools/dtoc/dtoc.py
/rk3399_rockchip-uboot/tools/dtoc/fdt_fallback.py
/rk3399_rockchip-uboot/tools/dtoc/fdt_normal.py
/rk3399_rockchip-uboot/tools/dtoc/fdt_select.py
/rk3399_rockchip-uboot/tools/dtoc/fdt_util.py
/rk3399_rockchip-uboot/tools/patman/checkpatch.py
/rk3399_rockchip-uboot/tools/patman/command.py
/rk3399_rockchip-uboot/tools/patman/cros_subprocess.py
/rk3399_rockchip-uboot/tools/patman/get_maintainer.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/settings.py
/rk3399_rockchip-uboot/tools/patman/terminal.py
/rk3399_rockchip-uboot/tools/patman/test.py
b91c6a1206-Oct-2016 Simon Glass <sjg@chromium.org>

Fix return value in trailing_strtoln()

This function should return -1 if there is no trailing integer in the
string. Instead it returns 0. Fix it by checking for this condition at the
start.

Signed

Fix return value in trailing_strtoln()

This function should return -1 if there is no trailing integer in the
string. Instead it returns 0. Fix it by checking for this condition at the
start.

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

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/sys_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/generic.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/bk4r1.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-pinfunc.h
/rk3399_rockchip-uboot/arch/arm/dts/imx6ull-14x14-evk.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ull-pinfunc-snvs.h
/rk3399_rockchip-uboot/arch/arm/dts/imx6ull-pinfunc.h
/rk3399_rockchip-uboot/arch/arm/dts/imx6ull.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx7-colibri.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx7.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx7d-pinfunc.h
/rk3399_rockchip-uboot/arch/arm/dts/vf.dtsi
/rk3399_rockchip-uboot/arch/arm/imx-common/cpu.c
/rk3399_rockchip-uboot/arch/arm/imx-common/init.c
/rk3399_rockchip-uboot/arch/arm/imx-common/iomux-v3.c
/rk3399_rockchip-uboot/arch/arm/imx-common/timer.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-imx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/crm_regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6-pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6ull_pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/iomux-v3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/sys_proto.h
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/valleyview.c
/rk3399_rockchip-uboot/arch/x86/include/asm/bootparam.h
/rk3399_rockchip-uboot/arch/x86/include/asm/string.h
/rk3399_rockchip-uboot/arch/x86/lib/string.c
/rk3399_rockchip-uboot/board/congatec/conga-qeval20-qa3-e3845/README
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd.c
/rk3399_rockchip-uboot/board/freescale/mx6ullevk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6ullevk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6ullevk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx6ullevk/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx6ullevk/mx6ullevk.c
/rk3399_rockchip-uboot/board/phytec/pcm052/Kconfig
/rk3399_rockchip-uboot/board/phytec/pcm052/pcm052.c
/rk3399_rockchip-uboot/board/toradex/colibri_imx7/colibri_imx7.c
/rk3399_rockchip-uboot/board/udoo/README
/rk3399_rockchip-uboot/board/wandboard/spl.c
/rk3399_rockchip-uboot/common/image.c
/rk3399_rockchip-uboot/configs/bk4r1_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/mx6ull_14x14_evk_defconfig
/rk3399_rockchip-uboot/doc/README.imx6
/rk3399_rockchip-uboot/doc/device-tree-bindings/pmic/rn5t567.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/mxc-serial.txt
/rk3399_rockchip-uboot/drivers/gpio/intel_broadwell_gpio.c
/rk3399_rockchip-uboot/drivers/misc/mxc_ocotp.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx.c
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx6.c
/rk3399_rockchip-uboot/drivers/power/pmic/Kconfig
/rk3399_rockchip-uboot/drivers/power/pmic/Makefile
/rk3399_rockchip-uboot/drivers/power/pmic/rn5t567.c
/rk3399_rockchip-uboot/drivers/serial/serial_mxc.c
/rk3399_rockchip-uboot/drivers/watchdog/imx_watchdog.c
/rk3399_rockchip-uboot/include/configs/bk4r1.h
/rk3399_rockchip-uboot/include/configs/colibri_imx7.h
/rk3399_rockchip-uboot/include/configs/ge_bx50v3.h
/rk3399_rockchip-uboot/include/configs/mx6ullevk.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/tbs2910.h
/rk3399_rockchip-uboot/include/configs/wandboard.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/imx6ul-clock.h
/rk3399_rockchip-uboot/include/fsl_wdog.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/pci_ids.h
/rk3399_rockchip-uboot/include/power/rn5t567_pmic.h
strto.c
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/vybridimage.c
d2d9bdfc28-Sep-2016 B, Ravi <ravibabu@ti.com>

spl: saveenv: adding saveenv support in SPL

By default saveenv option is not supported for SPL. This patch
enable the support for save environment variable for SPL build.

Enable save environment su

spl: saveenv: adding saveenv support in SPL

By default saveenv option is not supported for SPL. This patch
enable the support for save environment variable for SPL build.

Enable save environment support in SPL after setenv. By default
the saveenv option is not provided in SPL, but some boards need
this support in 'Falcon' boot, where SPL need to boot from
different images based on environment variable set by OS. For
example OS may set "reboot_image" environment variable to
"recovery" inorder to boot recovery image by SPL. The SPL read
"reboot_image" and act accordingly and change the reboot_image
to default mode using setenv and save the environemnt.

Signed-off-by: Ravi Babu <ravibabu@ti.com>
Reviewed-by: Simon Glass <sig@chromium.org>

change in v1:
- dropped SUPPORT, use CONFIG_SPL_SAVEENV
- updates the comments in mmc_private.h

show more ...

692fcdd827-Sep-2016 Alexander Graf <agraf@suse.de>

arm: Add return value argument to longjmp

The normal longjmp command allows for a caller to pass the return value
of the setjmp() invocation. This patch adds that semantic to the arm
implementation

arm: Add return value argument to longjmp

The normal longjmp command allows for a caller to pass the return value
of the setjmp() invocation. This patch adds that semantic to the arm
implementation of it and adjusts the efi_loader call respectively.

Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/omap-cache.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/hardware_am33xx.h
/rk3399_rockchip-uboot/arch/arm/include/asm/atomic.h
/rk3399_rockchip-uboot/arch/arm/include/asm/setjmp.h
/rk3399_rockchip-uboot/arch/arm/include/asm/system.h
/rk3399_rockchip-uboot/arch/arm/include/asm/ti-common/keystone_net.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/cmd_clock.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/clock.h
/rk3399_rockchip-uboot/board/armltd/vexpress/vexpress_tc2.c
/rk3399_rockchip-uboot/cmd/onenand.c
/rk3399_rockchip-uboot/common/console.c
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca15_tc2_defconfig
/rk3399_rockchip-uboot/doc/mkimage.1
/rk3399_rockchip-uboot/drivers/pwm/pwm-imx-util.c
/rk3399_rockchip-uboot/drivers/pwm/pwm-imx-util.h
/rk3399_rockchip-uboot/drivers/pwm/pwm-imx.c
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/include/clk.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/search.h
efi_loader/efi_boottime.c
/rk3399_rockchip-uboot/scripts/Makefile.autoconf
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/build-whitelist.sh
/rk3399_rockchip-uboot/scripts/check-config.sh
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/scripts/get_default_envs.sh
/rk3399_rockchip-uboot/tools/env/fw_env.h
/rk3399_rockchip-uboot/tools/env/fw_env_main.c
fc0b594807-Sep-2016 Robert P. J. Day <rpjday@crashcourse.ca>

Various, accumulated typos collected from around the tree.

Fix various misspellings of:

* deprecated
* partition
* preceding,preceded
* preparation
* its versus it's
* export
* existing
* s

Various, accumulated typos collected from around the tree.

Fix various misspellings of:

* deprecated
* partition
* preceding,preceded
* preparation
* its versus it's
* export
* existing
* scenario
* redundant
* remaining
* value
* architecture

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Reviewed-by: Stefan Roese <sr@denx.de>

show more ...

d025021e29-Aug-2016 Clemens Gruber <clemens.gruber@pqgruber.com>

gunzip: cache-align write buffer memory

When using gzwrite to eMMC on an i.MX6Q board, the following warning
occurs repeatedly:
CACHE: Misaligned operation at range [4fd63318, 4fe63318]

This patch

gunzip: cache-align write buffer memory

When using gzwrite to eMMC on an i.MX6Q board, the following warning
occurs repeatedly:
CACHE: Misaligned operation at range [4fd63318, 4fe63318]

This patch cache-aligns the memory allocation for the gzwrite writebuf,
therefore avoiding the misaligned dcache flush and the warning from
check_cache_range.

Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
Reviewed-by: Eric Nelson <eric@nelint.com>
Reviewed-by: Stefan Agner <stefan.agner@toradex.com>

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_epu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_epu.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/psci.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/boot-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/emif-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/sec-fxns.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/psci.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_speed.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/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/armada-371x.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-3720-db.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-372x.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-37xx.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-385-amc.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-7040-db.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-7040.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-ap806-quad.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-ap806.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-cp110-master.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1046a-qds-duart.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1046a-qds.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1046a-rdb.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1046a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-miniarm.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra114-dalmore.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra114.dtsi
/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-nyan-big.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-nyan.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-venice2.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124.dtsi
/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-medcom-wide.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-paz00.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-plutux.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-seaboard.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-tec.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-trimslice.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-ventana.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-whistler.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20.dtsi
/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/tegra210.dtsi
/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-tamonten.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra30.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/vf-colibri.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/vf.dtsi
/rk3399_rockchip-uboot/arch/arm/imx-common/rdc-sema.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/fsl_serdes.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/ns_access.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/fsl_serdes.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/ls102xa_soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/boot_mode.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3399.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/pwm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/tegra_mmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/arm/include/asm/omap_sec_common.h
/rk3399_rockchip-uboot/arch/arm/include/asm/psci.h
/rk3399_rockchip-uboot/arch/arm/include/asm/spl.h
/rk3399_rockchip-uboot/arch/arm/lib/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/cmd_mon.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/ddr3.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/psc.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/arm64-common.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/armada3700/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/armada3700/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/armada8k/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/armada8k/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/soc.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/sata.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.c
/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/rk3288-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/sdram_rk3288.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board186.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/tegra114/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra186/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra186/cache.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra210/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-mode/spl_board.c
/rk3399_rockchip-uboot/arch/microblaze/cpu/spl.c
/rk3399_rockchip-uboot/arch/nds32/config.mk
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/ag101/lowlevel_init.S
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/start.S
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/u-boot.lds
/rk3399_rockchip-uboot/arch/nds32/include/asm/config.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/c29x_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p1010_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p1021_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p1022_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p1023_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p2020_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_serdes.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/lib/spl.c
/rk3399_rockchip-uboot/arch/sandbox/Kconfig
/rk3399_rockchip-uboot/arch/sandbox/cpu/spl.c
/rk3399_rockchip-uboot/arch/sandbox/include/asm/spl.h
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/board/Arcturus/ucp1020/spl.c
/rk3399_rockchip-uboot/board/Arcturus/ucp1020/ucp1020.c
/rk3399_rockchip-uboot/board/Marvell/db-88f6820-amc/MAINTAINERS
/rk3399_rockchip-uboot/board/Marvell/db-88f6820-amc/Makefile
/rk3399_rockchip-uboot/board/Marvell/db-88f6820-amc/db-88f6820-amc.c
/rk3399_rockchip-uboot/board/Marvell/db-88f6820-amc/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/mvebu_db-88f3720/MAINTAINERS
/rk3399_rockchip-uboot/board/Marvell/mvebu_db-88f3720/Makefile
/rk3399_rockchip-uboot/board/Marvell/mvebu_db-88f3720/board.c
/rk3399_rockchip-uboot/board/Marvell/mvebu_db-88f7040/MAINTAINERS
/rk3399_rockchip-uboot/board/Marvell/mvebu_db-88f7040/Makefile
/rk3399_rockchip-uboot/board/Marvell/mvebu_db-88f7040/board.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds.c
/rk3399_rockchip-uboot/board/freescale/bsc9131rdb/bsc9131rdb.c
/rk3399_rockchip-uboot/board/freescale/bsc9132qds/bsc9132qds.c
/rk3399_rockchip-uboot/board/freescale/common/arm_sleep.c
/rk3399_rockchip-uboot/board/freescale/common/ns_access.c
/rk3399_rockchip-uboot/board/freescale/common/spl.h
/rk3399_rockchip-uboot/board/freescale/common/vid.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/corenet_ds.c
/rk3399_rockchip-uboot/board/freescale/ls1012afrdm/ls1012afrdm.c
/rk3399_rockchip-uboot/board/freescale/ls1012aqds/ls1012aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1012ardb/ls1012ardb.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/README
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds_rcw_nand.cfg
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds_rcw_sd_ifc.cfg
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds_rcw_sd_qspi.cfg
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/README
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/cpld.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/cpld.h
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/eth.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ls1046ardb.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ls1046ardb_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ls1046ardb_rcw_emmc.cfg
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ls1046ardb_rcw_sd.cfg
/rk3399_rockchip-uboot/board/freescale/ls2080a/ls2080a.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb.c
/rk3399_rockchip-uboot/board/freescale/mpc8308rdb/mpc8308rdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8315erdb/mpc8315erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/mpc837xemds.c
/rk3399_rockchip-uboot/board/freescale/mpc837xerdb/mpc837xerdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/mpc8536ds.c
/rk3399_rockchip-uboot/board/freescale/p1010rdb/p1010rdb.c
/rk3399_rockchip-uboot/board/freescale/p1010rdb/spl.c
/rk3399_rockchip-uboot/board/freescale/p1022ds/p1022ds.c
/rk3399_rockchip-uboot/board/freescale/p1022ds/spl.c
/rk3399_rockchip-uboot/board/freescale/p1023rdb/p1023rdb.c
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/spl.c
/rk3399_rockchip-uboot/board/freescale/p1_twr/p1_twr.c
/rk3399_rockchip-uboot/board/freescale/p2041rdb/p2041rdb.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/spl.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/t102xqds.c
/rk3399_rockchip-uboot/board/freescale/t102xrdb/spl.c
/rk3399_rockchip-uboot/board/freescale/t102xrdb/t102xrdb.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/t1040qds.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/spl.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t104xrdb.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/spl.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/spl.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t208xrdb.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240emu.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/t4240rdb.c
/rk3399_rockchip-uboot/board/gdsys/mpc8308/hrcon.c
/rk3399_rockchip-uboot/board/gdsys/mpc8308/strider.c
/rk3399_rockchip-uboot/board/gdsys/p1022/controlcenterd.c
/rk3399_rockchip-uboot/board/keymile/kmp204x/kmp204x.c
/rk3399_rockchip-uboot/board/mpc8308_p1m/mpc8308_p1m.c
/rk3399_rockchip-uboot/board/nvidia/seaboard/seaboard.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3036/evb_rk3036.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3399/evb-rk3399.c
/rk3399_rockchip-uboot/board/rockchip/kylin_rk3036/kylin_rk3036.c
/rk3399_rockchip-uboot/board/rockchip/miniarm_rk3288/miniarm-rk3288.c
/rk3399_rockchip-uboot/board/sysam/amcore/amcore.c
/rk3399_rockchip-uboot/board/theadorable/theadorable.c
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board.c
/rk3399_rockchip-uboot/board/varisys/cyrus/cyrus.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/dfu.c
/rk3399_rockchip-uboot/cmd/fastboot/Kconfig
/rk3399_rockchip-uboot/cmd/ubi.c
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/dfu.c
/rk3399_rockchip-uboot/common/fb_mmc.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_dfu.c
/rk3399_rockchip-uboot/common/spl/spl_ext.c
/rk3399_rockchip-uboot/common/spl/spl_fat.c
/rk3399_rockchip-uboot/common/spl/spl_fit.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/spl/spl_nand.c
/rk3399_rockchip-uboot/common/spl/spl_net.c
/rk3399_rockchip-uboot/common/spl/spl_nor.c
/rk3399_rockchip-uboot/common/spl/spl_onenand.c
/rk3399_rockchip-uboot/common/spl/spl_sata.c
/rk3399_rockchip-uboot/common/spl/spl_spi.c
/rk3399_rockchip-uboot/common/spl/spl_ubi.c
/rk3399_rockchip-uboot/common/spl/spl_usb.c
/rk3399_rockchip-uboot/common/spl/spl_ymodem.c
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/CHIP_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/PLU405_defconfig
/rk3399_rockchip-uboot/configs/Sinlinx_SinA33_defconfig
/rk3399_rockchip-uboot/configs/VCMA9_defconfig
/rk3399_rockchip-uboot/configs/a3m071_defconfig
/rk3399_rockchip-uboot/configs/a4m2k_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_igep0033_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_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/amcore_defconfig
/rk3399_rockchip-uboot/configs/apalis_t30_defconfig
/rk3399_rockchip-uboot/configs/apf27_defconfig
/rk3399_rockchip-uboot/configs/apx4devkit_defconfig
/rk3399_rockchip-uboot/configs/aristainetos2_defconfig
/rk3399_rockchip-uboot/configs/aristainetos2b_defconfig
/rk3399_rockchip-uboot/configs/aristainetos_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/beaver_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/cei-tk1-som_defconfig
/rk3399_rockchip-uboot/configs/cgtqmx6eval_defconfig
/rk3399_rockchip-uboot/configs/cm_t335_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/dalmore_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-amc_defconfig
/rk3399_rockchip-uboot/configs/dns325_defconfig
/rk3399_rockchip-uboot/configs/dockstar_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/e2220-1170_defconfig
/rk3399_rockchip-uboot/configs/ea20_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/etamin_defconfig
/rk3399_rockchip-uboot/configs/ethernut5_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/goflexhome_defconfig
/rk3399_rockchip-uboot/configs/guruplug_defconfig
/rk3399_rockchip-uboot/configs/gwventana_defconfig
/rk3399_rockchip-uboot/configs/ib62x0_defconfig
/rk3399_rockchip-uboot/configs/iconnect_defconfig
/rk3399_rockchip-uboot/configs/ids8313_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0030_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_128m16_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_pci_defconfig
/rk3399_rockchip-uboot/configs/kmcoge4_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5ne_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5un_defconfig
/rk3399_rockchip-uboot/configs/kmeter1_defconfig
/rk3399_rockchip-uboot/configs/kmlion1_defconfig
/rk3399_rockchip-uboot/configs/kmnusa_defconfig
/rk3399_rockchip-uboot/configs/kmopti2_defconfig
/rk3399_rockchip-uboot/configs/kmsugp1_defconfig
/rk3399_rockchip-uboot/configs/kmsupx5_defconfig
/rk3399_rockchip-uboot/configs/kmsuv31_defconfig
/rk3399_rockchip-uboot/configs/kmtegr1_defconfig
/rk3399_rockchip-uboot/configs/kmtepr2_defconfig
/rk3399_rockchip-uboot/configs/kmvect1_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_qspi_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_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/m28evk_defconfig
/rk3399_rockchip-uboot/configs/m53evk_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3ne_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3un_defconfig
/rk3399_rockchip-uboot/configs/mgcoge_defconfig
/rk3399_rockchip-uboot/configs/microblaze-generic_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f3720_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f7040_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_auart_console_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_nand_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_spi_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6qpsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_secure_defconfig
/rk3399_rockchip-uboot/configs/nas220_defconfig
/rk3399_rockchip-uboot/configs/nsa310s_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/odroid-xu3_defconfig
/rk3399_rockchip-uboot/configs/odroid_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/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/openrd_base_defconfig
/rk3399_rockchip-uboot/configs/openrd_client_defconfig
/rk3399_rockchip-uboot/configs/openrd_ultimate_defconfig
/rk3399_rockchip-uboot/configs/origen_defconfig
/rk3399_rockchip-uboot/configs/p2371-0000_defconfig
/rk3399_rockchip-uboot/configs/p2371-2180_defconfig
/rk3399_rockchip-uboot/configs/p2571_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/pcm052_defconfig
/rk3399_rockchip-uboot/configs/pcm058_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/pico-imx6ul_defconfig
/rk3399_rockchip-uboot/configs/platinum_picon_defconfig
/rk3399_rockchip-uboot/configs/platinum_titanium_defconfig
/rk3399_rockchip-uboot/configs/pogo_e02_defconfig
/rk3399_rockchip-uboot/configs/portl2_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/rock2_defconfig
/rk3399_rockchip-uboot/configs/rut_defconfig
/rk3399_rockchip-uboot/configs/s5p_goni_defconfig
/rk3399_rockchip-uboot/configs/s5pc210_universal_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/seaboard_defconfig
/rk3399_rockchip-uboot/configs/sheevaplug_defconfig
/rk3399_rockchip-uboot/configs/smartweb_defconfig
/rk3399_rockchip-uboot/configs/smdk2410_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_is1_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sr1500_defconfig
/rk3399_rockchip-uboot/configs/socfpga_vining_fpga_defconfig
/rk3399_rockchip-uboot/configs/suvd3_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/thuban_defconfig
/rk3399_rockchip-uboot/configs/titanium_defconfig
/rk3399_rockchip-uboot/configs/trats2_defconfig
/rk3399_rockchip-uboot/configs/trats_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/vct_platinum_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/venice2_defconfig
/rk3399_rockchip-uboot/configs/ventana_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_nand_defconfig
/rk3399_rockchip-uboot/configs/warp7_defconfig
/rk3399_rockchip-uboot/configs/warp7_secure_defconfig
/rk3399_rockchip-uboot/configs/warp_defconfig
/rk3399_rockchip-uboot/configs/x600_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_zcu102_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/disk/part.c
/rk3399_rockchip-uboot/disk/part_amiga.c
/rk3399_rockchip-uboot/disk/part_dos.c
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/disk/part_iso.c
/rk3399_rockchip-uboot/disk/part_mac.c
/rk3399_rockchip-uboot/doc/README.JFFS2
/rk3399_rockchip-uboot/doc/README.JFFS2_NAND
/rk3399_rockchip-uboot/doc/README.android-fastboot
/rk3399_rockchip-uboot/doc/README.mpc83xxads
/rk3399_rockchip-uboot/doc/README.nand
/rk3399_rockchip-uboot/doc/README.ti-secure
/rk3399_rockchip-uboot/drivers/Kconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/clk/tegra/Kconfig
/rk3399_rockchip-uboot/drivers/clk/tegra/Makefile
/rk3399_rockchip-uboot/drivers/clk/tegra/tegra-car-clk.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_blob.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_hash.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/Makefile
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_ddr_gen4.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_mmdc.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/interactive.c
/rk3399_rockchip-uboot/drivers/dfu/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/mv_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/mv_i2c.h
/rk3399_rockchip-uboot/drivers/i2c/mvtwsi.c
/rk3399_rockchip-uboot/drivers/i2c/tegra_i2c.c
/rk3399_rockchip-uboot/drivers/input/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/tegra_car.c
/rk3399_rockchip-uboot/drivers/mmc/hi6220_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/tegra_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/spi/Makefile
/rk3399_rockchip-uboot/drivers/mtd/spi/fsl_espi_spl.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sunxi_spi_spl.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/Kconfig
/rk3399_rockchip-uboot/drivers/net/fm/Makefile
/rk3399_rockchip-uboot/drivers/net/fm/fm.c
/rk3399_rockchip-uboot/drivers/net/macb.c
/rk3399_rockchip-uboot/drivers/net/mvneta.c
/rk3399_rockchip-uboot/drivers/net/xilinx_emaclite.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/phy/marvell/Kconfig
/rk3399_rockchip-uboot/drivers/phy/marvell/Makefile
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy.h
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy_a3700.c
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy_a3700.h
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy_core.c
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy_cp110.c
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy_hpipe.h
/rk3399_rockchip-uboot/drivers/phy/marvell/comphy_mux.c
/rk3399_rockchip-uboot/drivers/phy/marvell/sata.h
/rk3399_rockchip-uboot/drivers/phy/marvell/utmi_phy.h
/rk3399_rockchip-uboot/drivers/power/regulator/Kconfig
/rk3399_rockchip-uboot/drivers/power/regulator/Makefile
/rk3399_rockchip-uboot/drivers/power/regulator/pwm_regulator.c
/rk3399_rockchip-uboot/drivers/reset/Kconfig
/rk3399_rockchip-uboot/drivers/reset/Makefile
/rk3399_rockchip-uboot/drivers/reset/tegra-car-reset.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_mvebu_a3700.c
/rk3399_rockchip-uboot/drivers/spi/Kconfig
/rk3399_rockchip-uboot/drivers/spi/Makefile
/rk3399_rockchip-uboot/drivers/spi/mvebu_a3700_spi.c
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis_infineon.c
/rk3399_rockchip-uboot/drivers/usb/common/fsl-dt-fixup.c
/rk3399_rockchip-uboot/drivers/usb/common/fsl-errata.c
/rk3399_rockchip-uboot/drivers/usb/eth/asix.c
/rk3399_rockchip-uboot/drivers/usb/gadget/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/rndis.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-exynos.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-generic.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-marvell.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-tegra.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-vf.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-exynos5.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-fsl.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-keystone.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-mem.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-mvebu.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-omap.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-ring.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-rockchip.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-zynqmp.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci.c
/rk3399_rockchip-uboot/drivers/usb/phy/omap_usb_phy.c
/rk3399_rockchip-uboot/drivers/video/exynos/exynos_fb.c
/rk3399_rockchip-uboot/examples/standalone/mem_to_mem_idma2intr.c
/rk3399_rockchip-uboot/include/_exports.h
/rk3399_rockchip-uboot/include/config_cmd_all.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/VCMA9.h
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/adp-ag101p.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_shc.h
/rk3399_rockchip-uboot/include/configs/am335x_sl50.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/amcore.h
/rk3399_rockchip-uboot/include/configs/apalis_t30.h
/rk3399_rockchip-uboot/include/configs/apf27.h
/rk3399_rockchip-uboot/include/configs/apx4devkit.h
/rk3399_rockchip-uboot/include/configs/aristainetos-common.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/baltos.h
/rk3399_rockchip-uboot/include/configs/bav335x.h
/rk3399_rockchip-uboot/include/configs/cgtqmx6eval.h
/rk3399_rockchip-uboot/include/configs/colibri_imx7.h
/rk3399_rockchip-uboot/include/configs/colibri_t20.h
/rk3399_rockchip-uboot/include/configs/colibri_t30.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/corvus.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/db-88f6820-amc.h
/rk3399_rockchip-uboot/include/configs/dockstar.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/ethernut5.h
/rk3399_rockchip-uboot/include/configs/exynos4-common.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/iconnect.h
/rk3399_rockchip-uboot/include/configs/ids8313.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/km/keymile-common.h
/rk3399_rockchip-uboot/include/configs/kylin_rk3036.h
/rk3399_rockchip-uboot/include/configs/ls1012a_common.h
/rk3399_rockchip-uboot/include/configs/ls1012afrdm.h
/rk3399_rockchip-uboot/include/configs/ls1012aqds.h
/rk3399_rockchip-uboot/include/configs/ls1012ardb.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046a_common.h
/rk3399_rockchip-uboot/include/configs/ls1046aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080a_simu.h
/rk3399_rockchip-uboot/include/configs/m28evk.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/miniarm_rk3288.h
/rk3399_rockchip-uboot/include/configs/mv-common.h
/rk3399_rockchip-uboot/include/configs/mvebu_db-88f3720.h
/rk3399_rockchip-uboot/include/configs/mvebu_db-88f7040.h
/rk3399_rockchip-uboot/include/configs/mx28evk.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/mx7dsabresd.h
/rk3399_rockchip-uboot/include/configs/nas220.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/odroid_xu3.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap3_pandora.h
/rk3399_rockchip-uboot/include/configs/omap5_uevm.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/pcm058.h
/rk3399_rockchip-uboot/include/configs/pico-imx6ul.h
/rk3399_rockchip-uboot/include/configs/platinum.h
/rk3399_rockchip-uboot/include/configs/pogo_e02.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rock2.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/sama5d3_xplained.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/smartweb.h
/rk3399_rockchip-uboot/include/configs/smdk2410.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/socfpga_vining_fpga.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/tegra-common-usb-gadget.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/ti_am335x_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/titanium.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/configs/warp.h
/rk3399_rockchip-uboot/include/configs/warp7.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra114-car.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra20-car.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra210-car.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra30-car.h
/rk3399_rockchip-uboot/include/dt-bindings/comphy/comphy_data.h
/rk3399_rockchip-uboot/include/dt-bindings/memory/tegra114-mc.h
/rk3399_rockchip-uboot/include/dt-bindings/memory/tegra210-mc.h
/rk3399_rockchip-uboot/include/dt-bindings/memory/tegra30-mc.h
/rk3399_rockchip-uboot/include/dt-bindings/thermal/tegra124-soctherm.h
/rk3399_rockchip-uboot/include/errno.h
/rk3399_rockchip-uboot/include/exports.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/fsl_csu.h
/rk3399_rockchip-uboot/include/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/include/fsl_immap.h
/rk3399_rockchip-uboot/include/fsl_mmdc.h
/rk3399_rockchip-uboot/include/fsl_usb.h
/rk3399_rockchip-uboot/include/g_dnl.h
/rk3399_rockchip-uboot/include/linux/compat.h
/rk3399_rockchip-uboot/include/linux/errno.h
/rk3399_rockchip-uboot/include/linux/usb/dwc3.h
/rk3399_rockchip-uboot/include/linux/usb/xhci-fsl.h
/rk3399_rockchip-uboot/include/part.h
/rk3399_rockchip-uboot/include/part_efi.h
/rk3399_rockchip-uboot/include/reset.h
/rk3399_rockchip-uboot/include/spi_flash.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
/rk3399_rockchip-uboot/include/usb/lin_gadget_compat.h
gunzip.c
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/config_whitelist.txt

1...<<21222324252627282930>>...46