History log of /rk3399_rockchip-uboot/arch/arm/include/ (Results 1676 – 1700 of 3788)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
fc8fdc7603-Mar-2015 Simon Glass <sjg@chromium.org>

arm: spl: Avoid setting up a duplicate global data structure

This is already set up in crt0.S. We don't need a new structure and don't
really want one in the 'data' section of the image, since it wi

arm: spl: Avoid setting up a duplicate global data structure

This is already set up in crt0.S. We don't need a new structure and don't
really want one in the 'data' section of the image, since it will be empty
and crt0.S's changes will be ignored.

As an interim measure, remove it only if CONFIG_DM is not defined. This
allows us to press ahead with driver model in SPL and allow the stragglers
to catch up.

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

show more ...

27e780f124-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: add Tegra210 support

This patch incorporates a few fixes from Tom Warren <twarren@nvidia.com>.

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

ARM: tegra: pinmux: add Tegra210 support

This patch incorporates a few fixes from Tom Warren <twarren@nvidia.com>.

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

show more ...

f4d7c9dd24-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: support Tegra210's e_io_hv pin option

Tegra210 has a per-pin option named e_io_hv, which indicates that the
pin's input path should be configured to be 3.3v-tolerant. Add support

ARM: tegra: pinmux: support Tegra210's e_io_hv pin option

Tegra210 has a per-pin option named e_io_hv, which indicates that the
pin's input path should be configured to be 3.3v-tolerant. Add support
for this.

Note that this is very similar to previous chip's rcv_sel option.
However, since the Tegra TRM names this option differently for the
different chips, we support the new name so that the code exactly matches
the naming in the TRM, to avoid confusion.

This patch incorporates a few fixes from Tom Warren <twarren@nvidia.com>.

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

show more ...

790f771924-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: account for different drivegroup base registers

Tegra210 starts its drive group registers at a different offset from the
APB MISC register block that other SoCs. Update the code

ARM: tegra: pinmux: account for different drivegroup base registers

Tegra210 starts its drive group registers at a different offset from the
APB MISC register block that other SoCs. Update the code to handle this.

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

show more ...

f2c60eed24-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: support hsm/schmitt on pins

T210 support HSM and Schmitt options in the pinmux register (previous
chips placed these options in the drive group register). Update the
code to hand

ARM: tegra: pinmux: support hsm/schmitt on pins

T210 support HSM and Schmitt options in the pinmux register (previous
chips placed these options in the drive group register). Update the
code to handle this.

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

show more ...

bc13472824-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: move some type definitions

On some future SoCs, some per-drive-group features became per-pin
features. Move all type definitions early in the header so they can
be enabled irresp

ARM: tegra: pinmux: move some type definitions

On some future SoCs, some per-drive-group features became per-pin
features. Move all type definitions early in the header so they can
be enabled irrespective of the setting of TEGRA_PMX_SOC_HAS_DRVGRPS.

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

show more ...

439f576824-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: handle feature removal on newer SoCs

On some future SoCs, some of the per-drive-group features no longer
exist. Add some ifdefs to support this.

Signed-off-by: Stephen Warren <s

ARM: tegra: pinmux: handle feature removal on newer SoCs

On some future SoCs, some of the per-drive-group features no longer
exist. Add some ifdefs to support this.

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

show more ...

7a28441f24-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: pinmux: simplify some defines

Future SoCs have a slightly different combination of pinmux options per
pin. This will be simpler to handle if we simply have one define per
option, rather

ARM: tegra: pinmux: simplify some defines

Future SoCs have a slightly different combination of pinmux options per
pin. This will be simpler to handle if we simply have one define per
option, rather than grouping various options together, in combinations
that don't align with future chips.

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

show more ...

f799b03f18-Feb-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: add function to clear pinmux CLAMPING bit

This is needed to correctly apply the new Jetson TK1 pinmux config.

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

ARM: tegra: add function to clear pinmux CLAMPING bit

This is needed to correctly apply the new Jetson TK1 pinmux config.

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

show more ...

73c3893419-Jan-2015 Stephen Warren <swarren@nvidia.com>

ARM: tegra: support running in non-secure mode

When the CPU is in non-secure (NS) mode (when running U-Boot under a
secure monitor), certain actions cannot be taken, since they would need
to write t

ARM: tegra: support running in non-secure mode

When the CPU is in non-secure (NS) mode (when running U-Boot under a
secure monitor), certain actions cannot be taken, since they would need
to write to secure-only registers. One example is configuring the ARM
architectural timer's CNTFRQ register.

We could support this in one of two ways:
1) Compile twice, once for secure mode (in which case anything goes) and
once for non-secure mode (in which case certain actions are disabled).
This complicates things, since everyone needs to keep track of
different U-Boot binaries for different situations.
2) Detect NS mode at run-time, and optionally skip any impossible actions.
This has the advantage of a single U-Boot binary working in all cases.

(2) is not possible on ARM in general, since there's no architectural way
to detect secure-vs-non-secure. However, there is a Tegra-specific way to
detect this.

This patches uses that feature to detect secure vs. NS mode on Tegra, and
uses that to:

* Skip the ARM arch timer initialization.

* Set/clear an environment variable so that boot scripts can take
different action depending on which mode the CPU is in. This might be
something like:
if CPU is secure:
load secure monitor code into RAM.
boot secure monitor.
secure monitor will restart (a new copy of) U-Boot in NS mode.
else:
execute normal boot process

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

show more ...

7547f78c02-Mar-2015 Tom Rini <trini@konsulko.com>

Merge branch 'xnext/zynqmp' of git://www.denx.de/git/u-boot-microblaze

84c7204b15-Jan-2015 Michal Simek <michal.simek@xilinx.com>

arm64: Add Xilinx ZynqMP support

Add basic Xilinx ZynqMP arm64 support.
Serial and SD is supported.
It supports emulation platfrom ep108 and QEMU.

Signed-off-by: Michal Simek <michal.simek@xilinx.c

arm64: Add Xilinx ZynqMP support

Add basic Xilinx ZynqMP arm64 support.
Serial and SD is supported.
It supports emulation platfrom ep108 and QEMU.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>

show more ...

301c128302-Mar-2015 Tom Rini <trini@konsulko.com>

armv7.h: Add <asm/io.h>

With a389531 we now call readl() from this file so add <asm/io.h> so
that we have a prototype for the function.

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

0200020b27-Feb-2015 Raul Cardenas <Ulises.Cardenas@freescale.com>

imx6: Added DEK blob generator command

Freescale's SEC block has built-in Data Encryption
Key(DEK) Blob Protocol which provides a method for
protecting a DEK for non-secure memory storage.
SEC block

imx6: Added DEK blob generator command

Freescale's SEC block has built-in Data Encryption
Key(DEK) Blob Protocol which provides a method for
protecting a DEK for non-secure memory storage.
SEC block protects data in a data structure called
a Secret Key Blob, which provides both confidentiality
and integrity protection.
Every time the blob encapsulation is executed,
a AES-256 key is randomly generated to encrypt the DEK.
This key is encrypted with the OTP Secret key
from SoC. The resulting blob consists of the encrypted
AES-256 key, the encrypted DEK, and a 16-bit MAC.

During decapsulation, the reverse process is performed
to get back the original DEK. A caveat to the blob
decapsulation process, is that the DEK is decrypted
in secure-memory and can only be read by FSL SEC HW.
The DEK is used to decrypt data during encrypted boot.

Commands added
--------------
dek_blob - encapsulating DEK as a cryptgraphic blob

Commands Syntax
---------------
dek_blob src dst len

Encapsulate and create blob of a len-bits DEK at
address src and store the result at address dst.

Signed-off-by: Raul Cardenas <Ulises.Cardenas@freescale.com>
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>

Signed-off-by: Ulises Cardenas <ulises.cardenas@freescale.com>

Signed-off-by: Ulises Cardenas-B45798 <Ulises.Cardenas@freescale.com>

show more ...

b9cb648202-Mar-2015 Stefano Babic <sbabic@denx.de>

Merge branch 'master' of git://git.denx.de/u-boot


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arc/Kconfig
/rk3399_rockchip-uboot/arch/arc/config.mk
/rk3399_rockchip-uboot/arch/arc/cpu/arcv2/Makefile
/rk3399_rockchip-uboot/arch/arc/cpu/arcv2/start.S
/rk3399_rockchip-uboot/arch/arc/include/asm/cache.h
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/bcm2835/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/bcm2835/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock_am43xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm2835/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/power.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/spl_boot.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/emif-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/sdram.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/lowlevel_init_ca15.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/s5pc1xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_helpers.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/fel_utils.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache_v8.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/lowlevel.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/mp.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/mp.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/speed.c
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-odroid.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos5422-odroidxu3.dts
asm/arch-am33xx/cpu.h
asm/arch-bcm2835/gpio.h
asm/arch-bcm2835/mbox.h
asm/arch-bcm2835/sdhci.h
asm/arch-bcm2835/timer.h
asm/arch-bcm2835/wdog.h
asm/arch-exynos/clk.h
asm/arch-fsl-lsch3/config.h
asm/arch-fsl-lsch3/immap_lsch3.h
asm/arch-lpc32xx/config.h
asm/arch-ls102xa/config.h
asm/arch-ls102xa/immap_ls102xa.h
asm/arch-ls102xa/ls102xa_stream_id.h
asm/arch-sunxi/clock_sun4i.h
asm/arch-sunxi/dram.h
asm/arch-sunxi/sys_proto.h
asm/armv8/mmu.h
asm/emif.h
asm/global_data.h
asm/spl.h
asm/system.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/asm-offsets.c
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/lib/stack.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-at91/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/at91rm9200_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm920t/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9260_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9261_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9263_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9m10g45_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9n12_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9rl_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/at91sam9x5_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/eflash.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/led.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/sama5d3_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/sama5d4_devices.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/armv7/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/config.mk
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_common.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_dbu.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_eefc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_emac.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_gpbr.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_mc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_pdc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_pio.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_pit.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_pmc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_rstc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_rtt.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_spi.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_st.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_tc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91_wdt.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91rm9200.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9260.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9260_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9261.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9261_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9263.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9263_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9_sdramc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9_smc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9g45.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9g45_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9rl.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9rl_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9x5.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/at91sam9x5_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/atmel_mpddrc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/atmel_serial.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/atmel_usba_udc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/clk.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/gpio.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5_matrix.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5_sfr.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5d3.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5d3_smc.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/sama5d4.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/mpddrc.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/phy.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/sdram.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/spl_at91.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/spl_atmel.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/mach-davinci/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-davinci/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-davinci/config.mk
/rk3399_rockchip-uboot/arch/arm/mach-davinci/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/da830_pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/da850_lowlevel.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/da850_pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/dm355.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/dm365.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/dm365_lowlevel.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/dm644x.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/dm646x.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/dp83848.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/et1011c.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/aintc_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/da850_lowlevel.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/da8xx-usb.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/davinci_misc.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/ddr2_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/dm365_lowlevel.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/emac_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/gpio.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/i2c_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/pinmux_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/pll_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/psc_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/sdmmc_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/syscfg_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/timer_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-davinci/ksz8873.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-davinci/lxt972.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/misc.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/psc.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-highbank/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-highbank/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-highbank/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-keystone/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-keystone/clock-k2e.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/clock-k2hk.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/clock-k2l.c
/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/cmd_ddr3.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/include/mach/clock-k2e.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/clock-k2hk.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/clock-k2l.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/clock.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/clock_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/ddr3.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/hardware-k2e.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/hardware-k2hk.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/hardware-k2l.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/hardware.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/i2c_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/mon.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/msmc.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/psc_defs.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/xhci-keystone.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/init.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/keystone.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/msmc.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/psc.c
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/cache.c
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/gpio.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/kw88f6192.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/kw88f6281.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/mpp.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/soc.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/mpp.c
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/gpio.c
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/include/mach/gpio.h
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/include/mach/mtu.h
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/reset.S
/rk3399_rockchip-uboot/arch/arm/mach-nomadik/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/dram.c
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/include/mach/mv88f5182.h
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/include/mach/orion5x.h
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/timer.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/ap.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/cache.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/cmd_enterrcm.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-tegra/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-tegra/pinmux-common.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/powergate.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/sys_info.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/funcmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra114/pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/funcmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/xusb-padctl.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/crypto.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/crypto.h
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/display.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/emc.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/funcmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/pmu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/pwm.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/warmboot.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/warmboot_avp.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/warmboot_avp.h
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/clock.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/funcmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra30/pinmux.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/vpr.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/xusb-padctl.c
/rk3399_rockchip-uboot/arch/arm/mach-versatile/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-versatile/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-versatile/reset.S
/rk3399_rockchip-uboot/arch/arm/mach-versatile/timer.c
/rk3399_rockchip-uboot/arch/avr32/config.mk
/rk3399_rockchip-uboot/arch/avr32/cpu/Makefile
/rk3399_rockchip-uboot/arch/avr32/cpu/at32ap700x/mmu.c
/rk3399_rockchip-uboot/arch/avr32/cpu/cpu.c
/rk3399_rockchip-uboot/arch/avr32/cpu/exception.c
/rk3399_rockchip-uboot/arch/avr32/cpu/mmc.c
/rk3399_rockchip-uboot/arch/avr32/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/avr32/include/asm/arch-at32ap700x/mmu.h
/rk3399_rockchip-uboot/arch/avr32/include/asm/config.h
/rk3399_rockchip-uboot/arch/avr32/include/asm/dma-mapping.h
/rk3399_rockchip-uboot/arch/avr32/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/avr32/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/avr32/lib/Makefile
/rk3399_rockchip-uboot/arch/avr32/lib/board.c
/rk3399_rockchip-uboot/arch/avr32/lib/dram_init.c
/rk3399_rockchip-uboot/arch/avr32/lib/interrupts.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/dts/Makefile
/rk3399_rockchip-uboot/arch/powerpc/dts/arches.dts
/rk3399_rockchip-uboot/arch/powerpc/dts/canyonlands.dts
/rk3399_rockchip-uboot/arch/powerpc/dts/glacier.dts
/rk3399_rockchip-uboot/arch/powerpc/include/asm/arch-ppc4xx/gpio.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/linkage.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc460ex_gt.h
/rk3399_rockchip-uboot/arch/powerpc/lib/Makefile
/rk3399_rockchip-uboot/arch/powerpc/lib/stack.c
/rk3399_rockchip-uboot/arch/sandbox/Kconfig
/rk3399_rockchip-uboot/arch/sandbox/config.mk
/rk3399_rockchip-uboot/arch/sandbox/cpu/start.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/state.c
/rk3399_rockchip-uboot/arch/sandbox/include/asm/state.h
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/Kconfig
/rk3399_rockchip-uboot/board/BuS/vl_ma2sc/Kconfig
/rk3399_rockchip-uboot/board/afeb9260/Kconfig
/rk3399_rockchip-uboot/board/amcc/canyonlands/Kconfig
/rk3399_rockchip-uboot/board/amcc/canyonlands/MAINTAINERS
/rk3399_rockchip-uboot/board/amcc/canyonlands/config.mk
/rk3399_rockchip-uboot/board/amcc/canyonlands/u-boot-ram.lds
/rk3399_rockchip-uboot/board/atmel/at91rm9200ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9260ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9261ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9m10g45ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9n12ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9rlek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9x5ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/atngw100/atngw100.c
/rk3399_rockchip-uboot/board/atmel/atngw100mkii/atngw100mkii.c
/rk3399_rockchip-uboot/board/atmel/atstk1000/atstk1000.c
/rk3399_rockchip-uboot/board/atmel/sama5d3_xplained/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d3xek/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d4_xplained/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d4ek/Kconfig
/rk3399_rockchip-uboot/board/bluewater/snapper9260/Kconfig
/rk3399_rockchip-uboot/board/buffalo/lsxl/README
/rk3399_rockchip-uboot/board/calao/sbc35_a9g20/Kconfig
/rk3399_rockchip-uboot/board/calao/tny_a9260/Kconfig
/rk3399_rockchip-uboot/board/calao/usb_a9263/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t335/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/MAINTAINERS
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Makefile
/rk3399_rockchip-uboot/board/earthlcd/favr-32-ezkit/favr-32-ezkit.c
/rk3399_rockchip-uboot/board/egnite/ethernut5/Kconfig
/rk3399_rockchip-uboot/board/esd/meesc/Kconfig
/rk3399_rockchip-uboot/board/esd/otc570/Kconfig
/rk3399_rockchip-uboot/board/eukrea/cpu9260/Kconfig
/rk3399_rockchip-uboot/board/eukrea/cpuat91/Kconfig
/rk3399_rockchip-uboot/board/freescale/common/ls102xa_stream_id.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/ls2085a.c
/rk3399_rockchip-uboot/board/gumstix/pepper/Kconfig
/rk3399_rockchip-uboot/board/in-circuit/grasshopper/grasshopper.c
/rk3399_rockchip-uboot/board/isee/igep0033/Kconfig
/rk3399_rockchip-uboot/board/keymile/common/common.h
/rk3399_rockchip-uboot/board/keymile/common/ivm.c
/rk3399_rockchip-uboot/board/keymile/km82xx/km82xx.c
/rk3399_rockchip-uboot/board/keymile/km83xx/km83xx.c
/rk3399_rockchip-uboot/board/keymile/km_arm/km_arm.c
/rk3399_rockchip-uboot/board/keymile/kmp204x/kmp204x.c
/rk3399_rockchip-uboot/board/mimc/mimc200/mimc200.c
/rk3399_rockchip-uboot/board/miromico/hammerhead/hammerhead.c
/rk3399_rockchip-uboot/board/nokia/rx51/lowlevel_init.S
/rk3399_rockchip-uboot/board/phytec/pcm051/Kconfig
/rk3399_rockchip-uboot/board/raspberrypi/rpi/Makefile
/rk3399_rockchip-uboot/board/raspberrypi/rpi/rpi.c
/rk3399_rockchip-uboot/board/raspberrypi/rpi_2/Kconfig
/rk3399_rockchip-uboot/board/raspberrypi/rpi_2/MAINTAINERS
/rk3399_rockchip-uboot/board/raspberrypi/rpi_2/Makefile
/rk3399_rockchip-uboot/board/renesas/silk/Kconfig
/rk3399_rockchip-uboot/board/renesas/silk/MAINTAINERS
/rk3399_rockchip-uboot/board/renesas/silk/Makefile
/rk3399_rockchip-uboot/board/renesas/silk/qos.c
/rk3399_rockchip-uboot/board/renesas/silk/qos.h
/rk3399_rockchip-uboot/board/renesas/silk/silk.c
/rk3399_rockchip-uboot/board/ronetix/pm9261/Kconfig
/rk3399_rockchip-uboot/board/ronetix/pm9263/Kconfig
/rk3399_rockchip-uboot/board/ronetix/pm9g45/Kconfig
/rk3399_rockchip-uboot/board/samsung/common/board.c
/rk3399_rockchip-uboot/board/samsung/goni/Kconfig
/rk3399_rockchip-uboot/board/samsung/odroid/odroid.c
/rk3399_rockchip-uboot/board/samsung/smdk5420/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkc100/Kconfig
/rk3399_rockchip-uboot/board/siemens/corvus/Kconfig
/rk3399_rockchip-uboot/board/siemens/taurus/Kconfig
/rk3399_rockchip-uboot/board/silica/pengwyn/Kconfig
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/taskit/stamp9g20/Kconfig
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
/rk3399_rockchip-uboot/board/ti/beagle_x15/board.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/ddr3_k2e.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/ddr3_k2hk.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/ddr3_k2l.c
/rk3399_rockchip-uboot/board/warp/Kconfig
/rk3399_rockchip-uboot/board/warp/MAINTAINERS
/rk3399_rockchip-uboot/board/warp/Makefile
/rk3399_rockchip-uboot/board/warp/warp.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/cmd_bdinfo.c
/rk3399_rockchip-uboot/common/cmd_blob.c
/rk3399_rockchip-uboot/common/cmd_demo.c
/rk3399_rockchip-uboot/common/cmd_fdt.c
/rk3399_rockchip-uboot/common/cmd_i2c.c
/rk3399_rockchip-uboot/common/cmd_mmc.c
/rk3399_rockchip-uboot/common/hash.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/image-fit.c
/rk3399_rockchip-uboot/common/image-sig.c
/rk3399_rockchip-uboot/common/malloc_simple.c
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_nor.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/configs/Ampe_A76_defconfig
/rk3399_rockchip-uboot/configs/Chuwi_V7_CW0825_defconfig
/rk3399_rockchip-uboot/configs/Hyundai_A7HD_defconfig
/rk3399_rockchip-uboot/configs/Inet_86VS_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_fdt_defconfig
/rk3399_rockchip-uboot/configs/TZX-Q8-713B7_defconfig
/rk3399_rockchip-uboot/configs/UTOO_P66_defconfig
/rk3399_rockchip-uboot/configs/afeb9260_defconfig
/rk3399_rockchip-uboot/configs/am335x_igep0033_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/arches_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_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/axs103_defconfig
/rk3399_rockchip-uboot/configs/canyonlands_defconfig
/rk3399_rockchip-uboot/configs/cm_fx6_defconfig
/rk3399_rockchip-uboot/configs/cm_t335_defconfig
/rk3399_rockchip-uboot/configs/cm_t3517_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/cpu9260_128M_defconfig
/rk3399_rockchip-uboot/configs/cpu9260_defconfig
/rk3399_rockchip-uboot/configs/cpu9260_nand_128M_defconfig
/rk3399_rockchip-uboot/configs/cpu9260_nand_defconfig
/rk3399_rockchip-uboot/configs/cpu9G20_128M_defconfig
/rk3399_rockchip-uboot/configs/cpu9G20_defconfig
/rk3399_rockchip-uboot/configs/cpu9G20_nand_128M_defconfig
/rk3399_rockchip-uboot/configs/cpu9G20_nand_defconfig
/rk3399_rockchip-uboot/configs/cpuat91_defconfig
/rk3399_rockchip-uboot/configs/cpuat91_ram_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dig297_defconfig
/rk3399_rockchip-uboot/configs/eb_cpux9k2_defconfig
/rk3399_rockchip-uboot/configs/eb_cpux9k2_ram_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/ethernut5_defconfig
/rk3399_rockchip-uboot/configs/glacier_defconfig
/rk3399_rockchip-uboot/configs/glacier_ramboot_defconfig
/rk3399_rockchip-uboot/configs/gwventana_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/meesc_dataflash_defconfig
/rk3399_rockchip-uboot/configs/meesc_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabrelite_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/odroid_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_mmc_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_nand_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_mvblx_defconfig
/rk3399_rockchip-uboot/configs/omap3_pandora_defconfig
/rk3399_rockchip-uboot/configs/omap3_sdp3430_defconfig
/rk3399_rockchip-uboot/configs/otc570_dataflash_defconfig
/rk3399_rockchip-uboot/configs/otc570_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/peach-pi_defconfig
/rk3399_rockchip-uboot/configs/peach-pit_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/ph1_ld4_defconfig
/rk3399_rockchip-uboot/configs/ph1_pro4_defconfig
/rk3399_rockchip-uboot/configs/ph1_sld8_defconfig
/rk3399_rockchip-uboot/configs/pm9261_defconfig
/rk3399_rockchip-uboot/configs/pm9263_defconfig
/rk3399_rockchip-uboot/configs/pm9g45_defconfig
/rk3399_rockchip-uboot/configs/portuxg20_defconfig
/rk3399_rockchip-uboot/configs/rpi_2_defconfig
/rk3399_rockchip-uboot/configs/rpi_defconfig
/rk3399_rockchip-uboot/configs/s5p_goni_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/sbc35_a9g20_eeprom_defconfig
/rk3399_rockchip-uboot/configs/sbc35_a9g20_nandflash_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/configs/smdkc100_defconfig
/rk3399_rockchip-uboot/configs/snapper9260_defconfig
/rk3399_rockchip-uboot/configs/snapper9g20_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/stamp9g20_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tny_a9260_eeprom_defconfig
/rk3399_rockchip-uboot/configs/tny_a9260_nandflash_defconfig
/rk3399_rockchip-uboot/configs/tny_a9g20_eeprom_defconfig
/rk3399_rockchip-uboot/configs/tny_a9g20_nandflash_defconfig
/rk3399_rockchip-uboot/configs/tricorder_defconfig
/rk3399_rockchip-uboot/configs/tricorder_flash_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/usb_a9263_dataflash_defconfig
/rk3399_rockchip-uboot/configs/vl_ma2sc_defconfig
/rk3399_rockchip-uboot/configs/vl_ma2sc_ram_defconfig
/rk3399_rockchip-uboot/configs/warp_defconfig
/rk3399_rockchip-uboot/doc/README.fsl-trustzone-components
/rk3399_rockchip-uboot/doc/README.kconfig
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/device-tree-bindings/exynos/emmc-reset.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/gpio/gpio.txt
/rk3399_rockchip-uboot/doc/driver-model/spi-howto.txt
/rk3399_rockchip-uboot/drivers/Kconfig
/rk3399_rockchip-uboot/drivers/core/Kconfig
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_blob.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_hash.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_hash.h
/rk3399_rockchip-uboot/drivers/ddr/fsl/arm_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr1_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr2_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr3_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr4_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_ddr_gen4.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/lc_common_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/mpc85xx_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/options.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/util.c
/rk3399_rockchip-uboot/drivers/demo/Kconfig
/rk3399_rockchip-uboot/drivers/gpio/Kconfig
/rk3399_rockchip-uboot/drivers/gpio/at91_gpio.c
/rk3399_rockchip-uboot/drivers/gpio/mxc_gpio.c
/rk3399_rockchip-uboot/drivers/gpio/omap_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/adi_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/i2c-uclass.c
/rk3399_rockchip-uboot/drivers/i2c/kona_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/mv_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/s3c24x0_i2c.c
/rk3399_rockchip-uboot/drivers/input/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/exynos_dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/sunxi_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/nand/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/nand/omap_gpmc.c
/rk3399_rockchip-uboot/drivers/mtd/spi/Kconfig
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/fsl-mc/Makefile
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpmng.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/fsl_dpmng_cmd.h
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc_sys.c
/rk3399_rockchip-uboot/drivers/net/keystone_net.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.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-uclass.c
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_ppc.c
/rk3399_rockchip-uboot/drivers/serial/serial_sh.c
/rk3399_rockchip-uboot/drivers/serial/serial_sh.h
/rk3399_rockchip-uboot/drivers/spi/Kconfig
/rk3399_rockchip-uboot/drivers/thermal/Kconfig
/rk3399_rockchip-uboot/drivers/usb/musb-new/sunxi.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/sunxi_display.c
/rk3399_rockchip-uboot/drivers/watchdog/Makefile
/rk3399_rockchip-uboot/dts/Kconfig
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/config_defaults.h
/rk3399_rockchip-uboot/include/config_distro_bootcmd.h
/rk3399_rockchip-uboot/include/config_uncmd_spl.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/atngw100.h
/rk3399_rockchip-uboot/include/configs/atngw100mkii.h
/rk3399_rockchip-uboot/include/configs/atstk1002.h
/rk3399_rockchip-uboot/include/configs/atstk1006.h
/rk3399_rockchip-uboot/include/configs/canyonlands.h
/rk3399_rockchip-uboot/include/configs/cm_fx6.h
/rk3399_rockchip-uboot/include/configs/exynos-common.h
/rk3399_rockchip-uboot/include/configs/exynos5-common.h
/rk3399_rockchip-uboot/include/configs/exynos5-dt-common.h
/rk3399_rockchip-uboot/include/configs/favr-32-ezkit.h
/rk3399_rockchip-uboot/include/configs/grasshopper.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/hammerhead.h
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/km82xx.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls2085a_common.h
/rk3399_rockchip-uboot/include/configs/ls2085a_emu.h
/rk3399_rockchip-uboot/include/configs/ls2085a_simu.h
/rk3399_rockchip-uboot/include/configs/lsxl.h
/rk3399_rockchip-uboot/include/configs/mimc200.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/mx6sxsabresd.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/odroid.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/peach-pi.h
/rk3399_rockchip-uboot/include/configs/peach-pit.h
/rk3399_rockchip-uboot/include/configs/rpi-common.h
/rk3399_rockchip-uboot/include/configs/rpi.h
/rk3399_rockchip-uboot/include/configs/rpi_2.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/sama5d3_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d3xek.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/silk.h
/rk3399_rockchip-uboot/include/configs/smdkc100.h
/rk3399_rockchip-uboot/include/configs/snapper9260.h
/rk3399_rockchip-uboot/include/configs/snow.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/sun4i.h
/rk3399_rockchip-uboot/include/configs/sun5i.h
/rk3399_rockchip-uboot/include/configs/sun7i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/ti_am335x_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap3_common.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/warp.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/zmx25.h
/rk3399_rockchip-uboot/include/debug_uart.h
/rk3399_rockchip-uboot/include/dm/device-internal.h
/rk3399_rockchip-uboot/include/dm/device.h
/rk3399_rockchip-uboot/include/dm/platform_data/serial_sh.h
/rk3399_rockchip-uboot/include/dwmmc.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmng.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc_cmd.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc_sys.h
/rk3399_rockchip-uboot/include/fsl_ddr.h
/rk3399_rockchip-uboot/include/fsl_ddr_dimm_params.h
/rk3399_rockchip-uboot/include/fsl_esdhc.h
/rk3399_rockchip-uboot/include/fsl_sec.h
/rk3399_rockchip-uboot/include/hw_sha.h
/rk3399_rockchip-uboot/include/i2c.h
/rk3399_rockchip-uboot/include/mmc.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/net/net.c
/rk3399_rockchip-uboot/net/ping.c
/rk3399_rockchip-uboot/scripts/Makefile.autoconf
/rk3399_rockchip-uboot/scripts/Makefile.build
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/Makefile.uncmd_spl
/rk3399_rockchip-uboot/scripts/multiconfig.sh
/rk3399_rockchip-uboot/test/Kconfig
/rk3399_rockchip-uboot/test/dm/Kconfig
/rk3399_rockchip-uboot/test/dm/i2c.c
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/buildman/toolchain.py
/rk3399_rockchip-uboot/tools/env/fw_env.config
/rk3399_rockchip-uboot/tools/imagetool.c
/rk3399_rockchip-uboot/tools/imagetool.h
/rk3399_rockchip-uboot/tools/mksunxiboot.c
/rk3399_rockchip-uboot/tools/patman/gitutil.py
/rk3399_rockchip-uboot/tools/patman/settings.py
6fa3619002-Mar-2015 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-samsung

1da7ce4102-Mar-2015 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-uniphier


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-ld4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-pro4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-pro4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-sld3.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ph1-sld8.dtsi
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_common.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_early_init_f.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_early_init_r.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_late_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cache_uniphier.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cmd_ddrphy.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cmd_pinmon.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ddrphy_training.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/arm-mpcore.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/bcu-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/board.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/boot-device.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/ddrphy-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/debug-uart.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/led.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/mio-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/platdevice.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/sbc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/sc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/sg-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/ssc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/umc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init_page_table.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/memconf.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/bcu_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/ddrphy_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/early_clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/lowlevel_debug.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/platdevice.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/pll_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/pll_spectrum.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/sbc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/sbc_init_3cs.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/sg_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/umc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/ddrphy_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/early_clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/lowlevel_debug.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/platdevice.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/pll_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/pll_spectrum.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/sbc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/sbc_init_3cs.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/sg_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/umc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/bcu_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/ddrphy_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/early_clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/lowlevel_debug.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/platdevice.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/pll_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/pll_spectrum.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/sbc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/sbc_init_3cs.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/sg_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/umc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/print_misc_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/smp.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/support_card.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/timer.c
/rk3399_rockchip-uboot/configs/ph1_ld4_defconfig
/rk3399_rockchip-uboot/configs/ph1_pro4_defconfig
/rk3399_rockchip-uboot/configs/ph1_sld8_defconfig
/rk3399_rockchip-uboot/doc/README.uniphier
/rk3399_rockchip-uboot/drivers/serial/serial_uniphier.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-uniphier.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-uniphier.c
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/lib/fdtdec.c
fc83410002-Mar-2015 Tom Rini <trini@konsulko.com>

Merge branch 'rmobile' of git://git.denx.de/u-boot-sh


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-r8a7790.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-r8a7794.c
asm/arch-rmobile/r8a7794-gpio.h
/rk3399_rockchip-uboot/arch/sh/Kconfig
/rk3399_rockchip-uboot/arch/sh/lib/Makefile
/rk3399_rockchip-uboot/arch/sh/lib/ashlsi3.S
/rk3399_rockchip-uboot/arch/sh/lib/ashrdi3.c
/rk3399_rockchip-uboot/arch/sh/lib/lshrsi3.S
/rk3399_rockchip-uboot/arch/sh/lib/udiv_qrnnd.S
/rk3399_rockchip-uboot/arch/sh/lib/udivsi3.S
/rk3399_rockchip-uboot/arch/sh/lib/udivsi3_i4i-Os.S
/rk3399_rockchip-uboot/arch/sh/lib/udivsi3_i4i.S
/rk3399_rockchip-uboot/board/renesas/alt/alt.c
/rk3399_rockchip-uboot/board/renesas/gose/gose.c
/rk3399_rockchip-uboot/board/renesas/koelsch/koelsch.c
/rk3399_rockchip-uboot/board/renesas/lager/lager.c
/rk3399_rockchip-uboot/board/renesas/porter/Kconfig
/rk3399_rockchip-uboot/board/renesas/porter/MAINTAINERS
/rk3399_rockchip-uboot/board/renesas/porter/Makefile
/rk3399_rockchip-uboot/board/renesas/porter/porter.c
/rk3399_rockchip-uboot/board/renesas/porter/qos.c
/rk3399_rockchip-uboot/board/renesas/porter/qos.h
/rk3399_rockchip-uboot/board/renesas/silk/silk.c
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/porter_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/drivers/serial/serial_sh.c
/rk3399_rockchip-uboot/drivers/serial/serial_sh.h
/rk3399_rockchip-uboot/include/configs/alt.h
/rk3399_rockchip-uboot/include/configs/gose.h
/rk3399_rockchip-uboot/include/configs/koelsch.h
/rk3399_rockchip-uboot/include/configs/lager.h
/rk3399_rockchip-uboot/include/configs/porter.h
/rk3399_rockchip-uboot/include/configs/rcar-gen2-common.h
/rk3399_rockchip-uboot/include/configs/silk.h
9eb7acef26-Feb-2015 Masahiro Yamada <yamada.m@jp.panasonic.com>

ARM: UniPhier: move SoC headers to mach-uniphier/include/mach

Move arch/arm/include/asm/arch-uniphier/*
-> arch/arm/mach-uniphier/include/mach/*

Signed-off-by: Masahiro Yamada <yamada.m@jp.panaso

ARM: UniPhier: move SoC headers to mach-uniphier/include/mach

Move arch/arm/include/asm/arch-uniphier/*
-> arch/arm/mach-uniphier/include/mach/*

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_common.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_early_init_f.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_early_init_r.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_late_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cache_uniphier.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cmd_ddrphy.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cmd_pinmon.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ddrphy_training.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/arm-mpcore.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/bcu-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/board.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/boot-device.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/ddrphy-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/debug-uart.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/ehci-uniphier.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/led.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/mio-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/platdevice.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/sbc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/sc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/sg-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/ssc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/include/mach/umc-regs.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init_page_table.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/bcu_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/ddrphy_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/lowlevel_debug.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/platdevice.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/pll_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/pll_spectrum.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/sbc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/sg_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-ld4/umc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/ddrphy_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/lowlevel_debug.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/platdevice.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/pll_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/pll_spectrum.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/sbc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/sg_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-pro4/umc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/bcu_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/clkrst_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/ddrphy_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/lowlevel_debug.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/platdevice.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/pll_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/pll_spectrum.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/sbc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/sg_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/ph1-sld8/umc_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/print_misc_info.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/reset.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/smp.S
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/support_card.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/timer.c
306f527e20-Feb-2015 Doug Anderson <dianders@chromium.org>

Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800

It was found that the L2 cache timings that we had before could cause
freezes and hangs. We should make things more robust with better
timi

Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800

It was found that the L2 cache timings that we had before could cause
freezes and hangs. We should make things more robust with better
timings. Currently the production ChromeOS kernel applies these
timings, but it's nice to fixup firmware too (and upstream probably
won't take our kernel hacks).

This also provides a big cleanup of the L2 cache init code avoiding
some duplication. The way things used to work:
* low_power_start() was installed by the SPL (both at boot and resume
time) and left resident in iRAM for the kernel to use when bringing
up additional CPUs. It used configure_l2_ctlr() and
configure_l2_actlr() when it detected it was on an A15. This was
needed (despite the L2 cache registers being shared among all A15s)
because we might have been the first man in after the whole A15
cluster was shutdown.
* secondary_cores_configure() was called on at boot time and at resume
time. Strangely this called configure_l2_ctlr() but not
configure_l2_actlr() which was almost certainly wrong. Given that
we'll call both (see next bullet) later in the boot process it
didn't matter for normal boot, but I guess this is how L2 cache
settings got set on 5420/5800 (but not 5250?) at resume time.
* exynos5_set_l2cache_params() was called as part of cache enablement.
This should happen at boot time (normally in the SPL except for USB
boot where it happens in main U-Boot).

Note that the old code wasn't setting ECC/parity in the cache
enablement code but we happened to get it anyway because we'd call
secondary_cores_configure() at boot time. For resume time we'd get it
anyway when the 2nd A15 core came up.

Let's make this a whole lot simpler. Now we always set these
parameters in the same place for all boots and use the same code for
setting up secondary CPUs.

Intended net effects of this change (other than cleanup):
* Timings go from before:
data: 0 cycle setup, 3 cycles (0x2) latency
tag: 0 cycle setup, 3 cycles (0x2) latency
after:
data: 1 cycle setup, 4 cycles (0x3) latency
tag: 1 cycle setup, 4 cycles (0x3) latency
* L2ACTLR is properly initted on 5420/5800 in all cases.

One note is that we're still relying on luck to keep low_power_start()
working. The compiler is being nice and not storing anything on the
stack.

Another note is that on its own this patch won't help to fix cache
settings in an RW U-Boot update where we still have the RO SPL. The
plan for that is:
* Have RW U-Boot re-init the cache right before calling the kernel
(after it has turned the L2 cache off). This is why the functions
are in a header file instead of lowlevel_init.c.

* Have the kernel save the L2 cache settings of the boot CPU and apply
them to all other CPUs. We get a little lucky here because the old
code was using "|=" to modify the registers and all of the bits that
it's setting are also present in the new settings (!). That means
that when the 2nd CPU in the A15 cluster comes up it doesn't
actually mess up the settings of the 1st CPU in the A15 cluster. An
alternative option is to have the kernel write its own
low_power_start() code.

Signed-off-by: Doug Anderson <dianders@chromium.org>
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>

show more ...

cecf2db220-Feb-2015 Akshay Saraswat <akshay.s@samsung.com>

Exynos542x: Fix secondary core booting for thumb

When compiled SPL for Thumb secondary cores failed to boot
at the kernel boot up. Only one core came up out of 4.
This was happening because the code

Exynos542x: Fix secondary core booting for thumb

When compiled SPL for Thumb secondary cores failed to boot
at the kernel boot up. Only one core came up out of 4.
This was happening because the code relocated to the
address 0x02073000 by the primary core was an ARM asm
code which was executed by the secondary cores as if it
was a thumb code.
This patch fixes the issue of secondary cores considering
relocated code as Thumb instructions and not ARM instructions
by jumping to the relocated with the help of "bx" ARM instruction.
"bx" instruction changes the 5th bit of CPSR which allows
execution unit to consider the following instructions as ARM
instructions.

Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>

show more ...

a389531420-Feb-2015 Akshay Saraswat <akshay.s@samsung.com>

Exynos542x: Add workaround for ARM errata 799270

This patch adds workaround for the ARM errata 799270 which says
"If the L2 cache logic clock is stopped because of L2 inactivity,
setting or clearing

Exynos542x: Add workaround for ARM errata 799270

This patch adds workaround for the ARM errata 799270 which says
"If the L2 cache logic clock is stopped because of L2 inactivity,
setting or clearing the ACTLR.SMP bit might not be effective. The bit is
modified in the ACTLR, meaning a read of the register returns the
updated value. However the logic that uses that bit retains the previous
value."

Signed-off-by: Kimoon Kim <kimoon.kim@samsung.com>
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>

show more ...

0c08baf020-Feb-2015 Akshay Saraswat <akshay.s@samsung.com>

Exynos542x: Add workaround for ARM errata 798870

This patch adds workaround for ARM errata 798870 which says
"If back-to-back speculative cache line fills (fill A and fill B) are
issued from the L1

Exynos542x: Add workaround for ARM errata 798870

This patch adds workaround for ARM errata 798870 which says
"If back-to-back speculative cache line fills (fill A and fill B) are
issued from the L1 data cache of a CPU to the L2 cache, the second
request (fill B) is then cancelled, and the second request would have
detected a hazard against a recent write or eviction (write B) to the
same cache line as fill B then the L2 logic might deadlock."

Signed-off-by: Kimoon Kim <kimoon.kim@samsung.com>
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>

show more ...

ac0d98cd20-Feb-2015 Akshay Saraswat <akshay.s@samsung.com>

Exynos542x: CPU: Power down all secondary cores

This patch adds code to shutdown secondary cores.
When U-boot comes up, all secondary cores appear powered on,
which is undesirable and causes side ef

Exynos542x: CPU: Power down all secondary cores

This patch adds code to shutdown secondary cores.
When U-boot comes up, all secondary cores appear powered on,
which is undesirable and causes side effects while
initializing these cores in kernel.

Secondary core power down happens in following steps:

Step-1: After Exynos power-on, primary core starts executing first.
Step-2: In iROM code every core has to check 2 flags i.e.
addresses 0x02020028 & 0x02020004.
Step-3: Initially 0x02020028 is 0 for all cores and 0x02020004 has a
jump address for primary core and 0 for all secondary cores.
Step-4: Therefore, primary core follows normal iROM execution and jumps
to BL1 eventually, whereas all secondary cores enter WFE.
Step-5: When primary core comes into function secondary_cores_configure,
it puts pointer to function power_down_core into 0x02020004
and provides DSB and SEV for all cores so that they may come out
of WFE and jump to power_down_core function.
Step-6: And ultimately because of power_down_core all
secondary cores shut-down.

Signed-off-by: Kimoon Kim <kimoon.kim@samsung.com>
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>

show more ...

1606b34a25-Feb-2015 Tom Rini <trini@ti.com>

Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache_v8.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/lowlevel.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/mp.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/mp.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/speed.c
asm/arch-fsl-lsch3/config.h
asm/arch-fsl-lsch3/immap_lsch3.h
asm/arch-ls102xa/config.h
asm/arch-ls102xa/immap_ls102xa.h
asm/arch-ls102xa/ls102xa_stream_id.h
asm/armv8/mmu.h
asm/global_data.h
asm/system.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/MAINTAINERS
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Makefile
/rk3399_rockchip-uboot/board/freescale/common/ls102xa_stream_id.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/ls2085a.c
/rk3399_rockchip-uboot/common/cmd_blob.c
/rk3399_rockchip-uboot/common/hash.c
/rk3399_rockchip-uboot/doc/README.fsl-trustzone-components
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_blob.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_hash.c
/rk3399_rockchip-uboot/drivers/crypto/fsl/fsl_hash.h
/rk3399_rockchip-uboot/drivers/ddr/fsl/arm_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr1_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr2_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr3_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ddr4_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/fsl_ddr_gen4.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/lc_common_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/mpc85xx_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/options.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/util.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/fsl-mc/Makefile
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpmng.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/fsl_dpmng_cmd.h
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc_sys.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls2085a_common.h
/rk3399_rockchip-uboot/include/configs/ls2085a_emu.h
/rk3399_rockchip-uboot/include/configs/ls2085a_simu.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/zmx25.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmng.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc_cmd.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc_sys.h
/rk3399_rockchip-uboot/include/fsl_ddr.h
/rk3399_rockchip-uboot/include/fsl_ddr_dimm_params.h
/rk3399_rockchip-uboot/include/fsl_esdhc.h
/rk3399_rockchip-uboot/include/fsl_sec.h
/rk3399_rockchip-uboot/include/hw_sha.h
/rk3399_rockchip-uboot/lib/Kconfig

1...<<61626364656667686970>>...152