History log of /rk3399_rockchip-uboot/arch/x86/include/ (Results 326 – 350 of 436)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
77f9b1fb13-Nov-2014 Simon Glass <sjg@chromium.org>

x86: ivybridge: Perform Intel microcode update on boot

Microcode updates are stored in the device tree. Work through these and
apply any that are needed.

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

x86: ivybridge: Perform Intel microcode update on boot

Microcode updates are stored in the device tree. Work through these and
apply any that are needed.

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

show more ...

f5fbbe9513-Nov-2014 Simon Glass <sjg@chromium.org>

x86: ivybridge: Perform initial CPU setup

Set up the flex ratio (controls speed versus heat output) and a few other
very early things.

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

eddbad2213-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Add msr read/write functions that use a structure

It is convenient to be able to adjust MSRs with a structure that splits the
two 32-bit halves into separate fields, as they are often dealt wit

x86: Add msr read/write functions that use a structure

It is convenient to be able to adjust MSRs with a structure that splits the
two 32-bit halves into separate fields, as they are often dealt with
separately. Add a few functions to support this.

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

show more ...

3f70a6f513-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Add clr/setbits functions

These are available on other architectures. Make them available on x86 also.

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

2b60515413-Nov-2014 Simon Glass <sjg@chromium.org>

x86: ivybridge: Add early LPC init so that serial works

The PCH (Platform Controller Hub) includes an LPC (Low Pin Count) device
which provides a serial port. This is accessible on Chromebooks, so e

x86: ivybridge: Add early LPC init so that serial works

The PCH (Platform Controller Hub) includes an LPC (Low Pin Count) device
which provides a serial port. This is accessible on Chromebooks, so enable
it early in the boot process.

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

show more ...

6fb3b72e13-Nov-2014 Simon Glass <sjg@chromium.org>

x86: pci: Allow configuration before relocation

Add simple PCI access routines for x86 which permit use before relocation.
The normal PCI stack is still used, but for pre-relocation use there can
on

x86: pci: Allow configuration before relocation

Add simple PCI access routines for x86 which permit use before relocation.
The normal PCI stack is still used, but for pre-relocation use there can
only ever be a single hose. After relocation, fall back to the normal
access, although even then on x86 machines there is normally only a single
PCI bus.

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

show more ...

7430f10813-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Support use of PCI before relocation

Add support for using PCI before SDRAM is available, using early malloc()
and global_data.

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

x86: Support use of PCI before relocation

Add support for using PCI before SDRAM is available, using early malloc()
and global_data.

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

show more ...

d188b18f13-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Refactor PCI to permit alternate init

We want access PCI earlier in the init sequence, so refactor the code so
that it does not require use of a BSS variable to work. This will allow us
to use

x86: Refactor PCI to permit alternate init

We want access PCI earlier in the init sequence, so refactor the code so
that it does not require use of a BSS variable to work. This will allow us
to use early malloc() to store information about a PCI hose.

Common PCI code moves to arch/x86/cpu/pci.c and a new
board_pci_setup_hose() function is provided by boards to set up the (single)
hose used by that board.

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

show more ...

70a09c6c13-Nov-2014 Simon Glass <sjg@chromium.org>

x86: chromebook_link: Implement CAR support (cache as RAM)

Add support for CAR so that we have memory to use prior to DRAM init.
On link there is a total of 128KB of CAR available, although some is

x86: chromebook_link: Implement CAR support (cache as RAM)

Add support for CAR so that we have memory to use prior to DRAM init.
On link there is a total of 128KB of CAR available, although some is
used for the memory reference code.

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

show more ...

d1cd045913-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Emit post codes in startup code for Chromebooks

On x86 it is common to use 'post codes' which are 8-bit hex values emitted
from the code and visible to the user. Traditionally two 7-segment dis

x86: Emit post codes in startup code for Chromebooks

On x86 it is common to use 'post codes' which are 8-bit hex values emitted
from the code and visible to the user. Traditionally two 7-segment displays
were made available on the motherboard to show the last post code that was
emitted. This allows diagnosis of a boot problem since it is possible to
see where the code got to before it died.

On modern hardware these codes are not normally visible. On Chromebooks
they are displayed by the Embedded Controller (EC), so it is useful to emit
them. We must enable this feature for the EC to see the codes, so add an
option for this.

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

show more ...

8ef0757113-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Add chromebook_link board

This board is a 'bare' version of the existing 'link 'board. It does not
require coreboot to run, but is intended to start directly from the reset
vector.

This initia

x86: Add chromebook_link board

This board is a 'bare' version of the existing 'link 'board. It does not
require coreboot to run, but is intended to start directly from the reset
vector.

This initial commit has place holders for a wide range of features. These
will be added in follow-on patches and series. So far it cannot be booted
as there is no ROM image produced, but it does build without errors.

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

show more ...

727c1a9811-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Replace fill_processor_name() with cpu_get_name()

This implementation has a 'cpu' prefix and returns a pointer to the string,
avoiding the need for copying.

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

x86: Replace fill_processor_name() with cpu_get_name()

This implementation has a 'cpu' prefix and returns a pointer to the string,
avoiding the need for copying.

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

show more ...

003504b611-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Remove unnecessary find_fdt(), prepare_fdt() functions

These are no-longer needed so drop them.

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

21b9b14b11-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Add processor functions to halt and get stack pointer

Add a function to get the stack pointer and another to halt the CPU.

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

x86: Add processor functions to halt and get stack pointer

Add a function to get the stack pointer and another to halt the CPU.

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

show more ...

258b135709-Nov-2014 Bin Meng <bmeng.cn@gmail.com>

x86: Save TSC frequency in the global data

Return the saved TSC frequency in get_tbclk_mhz().

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

x86: Save TSC frequency in the global data

Return the saved TSC frequency in get_tbclk_mhz().

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

show more ...

80de049509-Nov-2014 Bin Meng <bmeng.cn@gmail.com>

x86: Add quick TSC calibration via PIT

Use the same way that Linux does for quick TSC calibration via PIT
when calibration via MSR fails.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simo

x86: Add quick TSC calibration via PIT

Use the same way that Linux does for quick TSC calibration via PIT
when calibration via MSR fails.

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

show more ...

52f952bf09-Nov-2014 Bin Meng <bmeng.cn@gmail.com>

x86: Do CPU identification in the early phase

The CPU identification happens in x86_cpu_init_f() and corresponding
fields are saved in the global data for later use.

Signed-off-by: Bin Meng <bmeng.

x86: Do CPU identification in the early phase

The CPU identification happens in x86_cpu_init_f() and corresponding
fields are saved in the global data for later use.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

show more ...

f67cd51e06-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Save the BIST value on reset

The built in self test value is available in register eax on start-up. Save
it so that it can be accessed later. Unfortunately we must wait until the
global_data is

x86: Save the BIST value on reset

The built in self test value is available in register eax on start-up. Save
it so that it can be accessed later. Unfortunately we must wait until the
global_data is available before we can do this, so there is a little bit of
shuffling to keep it around.

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

show more ...

e1ffd81706-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Fix up some missing prototypes

Some functions are missing prototypes. Fix those that are specific to x86.

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

x86: Fix up some missing prototypes

Some functions are missing prototypes. Fix those that are specific to x86.

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

show more ...

8b37c76906-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Use the standard arch_cpu_init() function

Instead of an x86-specific cpu_init_f() function, use the normal U-Boot one
for this purpose. Also remove a useless/misleading comment.

Signed-off-by:

x86: Use the standard arch_cpu_init() function

Instead of an x86-specific cpu_init_f() function, use the normal U-Boot one
for this purpose. Also remove a useless/misleading comment.

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

show more ...

07387d1706-Nov-2014 Simon Glass <sjg@chromium.org>

x86: Use the standard dram_init() function

Instead of having an x86-specific DRAM init function, adjust things so we
can use the normal one.

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

x86: Use the standard dram_init() function

Instead of having an x86-specific DRAM init function, adjust things so we
can use the normal one.

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

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig.debug
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/cache.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/davinci/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/mxs.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/spl_boot.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/nomadik/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/spear/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/versatile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/sys_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/sama5d4_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/cache_v7.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/highbank/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/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/omap3/Kconfig
/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/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/lowlevel_init_ca15.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-r8a7793.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/s5pc1xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/clock_manager.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/misc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/reset_manager.c
/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/clock_sun4i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_sun4i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/p2wi.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/pinmux.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra-common/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/board_postclk_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/dram_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-ld4/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-ld4/platdevice.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-ld4/umc_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-pro4/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-pro4/pinctrl.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-pro4/platdevice.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-pro4/umc_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-sld8/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-sld8/platdevice.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/ph1-sld8/umc_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/uniphier/reset.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/ddrc.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/mpddrc.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/sdram.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/spl.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/spl_at91.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/spl_atmel.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-trats.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-universal_c210.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-odroid.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-trats2.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/exynos4x12-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/socfpga.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/socfpga_cyclone5_socrates.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun7i-a20-pcduino3.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun7i-a20.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sunxi-common-regulators.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/zynq-zybo.dts
/rk3399_rockchip-uboot/arch/arm/imx-common/iomux-v3.c
/rk3399_rockchip-uboot/arch/arm/imx-common/spl.c
/rk3399_rockchip-uboot/arch/arm/imx-common/timer.c
/rk3399_rockchip-uboot/arch/arm/imx-common/video.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_common.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_pmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9260.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9260_matrix.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9_sdramc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/atmel_mpddrc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/clk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/sama5d4.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/hardware-k2e.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/hardware-k2hk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/hardware-k2l.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/crm_regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6sl_pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7790.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7791.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7793-gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7793.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7794.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/rcar-base.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/rmobile.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/reset_manager.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun4i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/cpucfg_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram_sun4i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/mmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/p2wi.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/prcm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/timer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/watchdog.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-uniphier/ehci-uniphier.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-uniphier/mio-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-uniphier/platdevice.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-uniphier/sg-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/iomux-v3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/macro.h
/rk3399_rockchip-uboot/arch/arm/include/asm/system.h
/rk3399_rockchip-uboot/arch/arm/include/debug/8250.S
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/lib/cache-cp15.c
/rk3399_rockchip-uboot/arch/arm/lib/debug.S
/rk3399_rockchip-uboot/arch/arm/lib/interrupts.c
/rk3399_rockchip-uboot/arch/arm/lib/relocate.S
/rk3399_rockchip-uboot/arch/arm/lib/vectors.S
/rk3399_rockchip-uboot/arch/blackfin/cpu/initcode.c
/rk3399_rockchip-uboot/arch/blackfin/include/asm/config.h
/rk3399_rockchip-uboot/arch/mips/Kconfig
/rk3399_rockchip-uboot/arch/mips/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/mips32/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/mips64/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/b4860_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init_early.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_memac.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc4xx-i2c.h
/rk3399_rockchip-uboot/arch/sandbox/cpu/start.c
/rk3399_rockchip-uboot/arch/sh/Kconfig
/rk3399_rockchip-uboot/arch/sh/cpu/sh2/config.mk
/rk3399_rockchip-uboot/arch/sh/cpu/sh3/config.mk
/rk3399_rockchip-uboot/arch/sh/cpu/sh4/config.mk
/rk3399_rockchip-uboot/arch/sh/include/asm/cache.h
/rk3399_rockchip-uboot/arch/sh/include/asm/processor.h
/rk3399_rockchip-uboot/arch/sh/lib/Makefile
/rk3399_rockchip-uboot/arch/sh/lib/zimageboot.c
/rk3399_rockchip-uboot/arch/sparc/Kconfig
/rk3399_rockchip-uboot/arch/sparc/config.mk
/rk3399_rockchip-uboot/arch/x86/config.mk
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/start.S
/rk3399_rockchip-uboot/arch/x86/cpu/start16.S
asm/u-boot-x86.h
/rk3399_rockchip-uboot/arch/x86/lib/bootm.c
/rk3399_rockchip-uboot/arch/x86/lib/zimage.c
/rk3399_rockchip-uboot/board/BuR/kwb/Kconfig
/rk3399_rockchip-uboot/board/BuR/tseries/Kconfig
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/Kconfig
/rk3399_rockchip-uboot/board/BuS/vl_ma2sc/Kconfig
/rk3399_rockchip-uboot/board/CarMediaLab/flea3/Kconfig
/rk3399_rockchip-uboot/board/Marvell/aspenite/Kconfig
/rk3399_rockchip-uboot/board/Marvell/db-mv784mp-gp/Kconfig
/rk3399_rockchip-uboot/board/Marvell/dkb/Kconfig
/rk3399_rockchip-uboot/board/Marvell/gplugd/Kconfig
/rk3399_rockchip-uboot/board/afeb9260/Kconfig
/rk3399_rockchip-uboot/board/alphaproject/ap_sh4a_4a/Kconfig
/rk3399_rockchip-uboot/board/altera/socfpga/Kconfig
/rk3399_rockchip-uboot/board/altera/socfpga/socfpga_cyclone5.c
/rk3399_rockchip-uboot/board/aristainetos/Kconfig
/rk3399_rockchip-uboot/board/aristainetos/aristainetos.c
/rk3399_rockchip-uboot/board/armadeus/apf27/Kconfig
/rk3399_rockchip-uboot/board/armltd/integrator/Kconfig
/rk3399_rockchip-uboot/board/armltd/vexpress/Kconfig
/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/sama5d3_xplained/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d3xek/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d4_xplained/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d4_xplained/MAINTAINERS
/rk3399_rockchip-uboot/board/atmel/sama5d4_xplained/Makefile
/rk3399_rockchip-uboot/board/atmel/sama5d4_xplained/sama5d4_xplained.c
/rk3399_rockchip-uboot/board/atmel/sama5d4ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d4ek/MAINTAINERS
/rk3399_rockchip-uboot/board/atmel/sama5d4ek/Makefile
/rk3399_rockchip-uboot/board/atmel/sama5d4ek/sama5d4ek.c
/rk3399_rockchip-uboot/board/bachmann/ot1200/Kconfig
/rk3399_rockchip-uboot/board/bachmann/ot1200/ot1200.c
/rk3399_rockchip-uboot/board/balloon3/Kconfig
/rk3399_rockchip-uboot/board/barco/titanium/Kconfig
/rk3399_rockchip-uboot/board/bluegiga/apx4devkit/Kconfig
/rk3399_rockchip-uboot/board/bluewater/snapper9260/Kconfig
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm958300k/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm958622hr/Kconfig
/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/cirrus/edb93xx/Kconfig
/rk3399_rockchip-uboot/board/cm4008/Kconfig
/rk3399_rockchip-uboot/board/cm41xx/Kconfig
/rk3399_rockchip-uboot/board/cogent/lcd.c
/rk3399_rockchip-uboot/board/compulab/cm_fx6/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_fx6/cm_fx6.c
/rk3399_rockchip-uboot/board/compulab/cm_fx6/spl.c
/rk3399_rockchip-uboot/board/compulab/cm_t335/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t35/cm_t35.c
/rk3399_rockchip-uboot/board/compulab/cm_t3517/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t3517/MAINTAINERS
/rk3399_rockchip-uboot/board/compulab/cm_t3517/Makefile
/rk3399_rockchip-uboot/board/compulab/cm_t3517/cm_t3517.c
/rk3399_rockchip-uboot/board/compulab/cm_t3517/mux.c
/rk3399_rockchip-uboot/board/compulab/cm_t54/cm_t54.c
/rk3399_rockchip-uboot/board/compulab/common/Makefile
/rk3399_rockchip-uboot/board/compulab/common/common.c
/rk3399_rockchip-uboot/board/compulab/common/common.h
/rk3399_rockchip-uboot/board/compulab/common/eeprom.c
/rk3399_rockchip-uboot/board/compulab/common/omap3_smc911x.c
/rk3399_rockchip-uboot/board/compulab/common/splash.c
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/Kconfig
/rk3399_rockchip-uboot/board/creative/xfi3/Kconfig
/rk3399_rockchip-uboot/board/davedenx/qong/Kconfig
/rk3399_rockchip-uboot/board/dbau1x00/Kconfig
/rk3399_rockchip-uboot/board/denx/m28evk/Kconfig
/rk3399_rockchip-uboot/board/denx/m53evk/Kconfig
/rk3399_rockchip-uboot/board/egnite/ethernut5/Kconfig
/rk3399_rockchip-uboot/board/embest/mx6boards/Kconfig
/rk3399_rockchip-uboot/board/esd/common/auto_update.c
/rk3399_rockchip-uboot/board/esd/meesc/Kconfig
/rk3399_rockchip-uboot/board/esd/otc570/Kconfig
/rk3399_rockchip-uboot/board/esd/pci405/cmd_pci405.c
/rk3399_rockchip-uboot/board/esg/ima3-mx53/Kconfig
/rk3399_rockchip-uboot/board/espt/Kconfig
/rk3399_rockchip-uboot/board/eukrea/cpu9260/Kconfig
/rk3399_rockchip-uboot/board/eukrea/cpuat91/Kconfig
/rk3399_rockchip-uboot/board/faraday/a320evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/bsc9131rdb/bsc9131rdb.c
/rk3399_rockchip-uboot/board/freescale/bsc9132qds/bsc9132qds.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx23evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx25pdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx28evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx28evk/README
/rk3399_rockchip-uboot/board/freescale/mx31ads/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx31pdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx35pdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx51evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53ard/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53loco/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53loco/mx53loco.c
/rk3399_rockchip-uboot/board/freescale/mx53smd/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6qarm2/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/mx6qsabreauto.c
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd.c
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd_spl.cfg
/rk3399_rockchip-uboot/board/freescale/mx6slevk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6slevk/mx6slevk.c
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/Kconfig
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t104x_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t4rdb/Makefile
/rk3399_rockchip-uboot/board/freescale/t4rdb/cpld.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/cpld.h
/rk3399_rockchip-uboot/board/freescale/t4rdb/law.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/t4240rdb.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/tlb.c
/rk3399_rockchip-uboot/board/freescale/vf610twr/Kconfig
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/Kconfig
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/Kconfig
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/Kconfig
/rk3399_rockchip-uboot/board/gaisler/grsim/Kconfig
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/Kconfig
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/Kconfig
/rk3399_rockchip-uboot/board/gdsys/405ep/iocon.c
/rk3399_rockchip-uboot/board/gdsys/common/Makefile
/rk3399_rockchip-uboot/board/gdsys/common/cmd_ioloop.c
/rk3399_rockchip-uboot/board/gdsys/common/ihs_mdio.c
/rk3399_rockchip-uboot/board/gdsys/common/ihs_mdio.h
/rk3399_rockchip-uboot/board/gdsys/common/osd.c
/rk3399_rockchip-uboot/board/gdsys/common/phy.c
/rk3399_rockchip-uboot/board/gdsys/common/phy.h
/rk3399_rockchip-uboot/board/gdsys/mpc8308/Kconfig
/rk3399_rockchip-uboot/board/gdsys/mpc8308/MAINTAINERS
/rk3399_rockchip-uboot/board/gdsys/mpc8308/Makefile
/rk3399_rockchip-uboot/board/gdsys/mpc8308/hrcon.c
/rk3399_rockchip-uboot/board/gdsys/mpc8308/mpc8308.c
/rk3399_rockchip-uboot/board/gdsys/mpc8308/mpc8308.h
/rk3399_rockchip-uboot/board/gdsys/mpc8308/sdram.c
/rk3399_rockchip-uboot/board/genesi/mx51_efikamx/Kconfig
/rk3399_rockchip-uboot/board/gumstix/pepper/Kconfig
/rk3399_rockchip-uboot/board/h2200/Kconfig
/rk3399_rockchip-uboot/board/hale/tt01/Kconfig
/rk3399_rockchip-uboot/board/icpdas/lp8x4x/Kconfig
/rk3399_rockchip-uboot/board/imgtec/malta/Kconfig
/rk3399_rockchip-uboot/board/imx31_phycore/Kconfig
/rk3399_rockchip-uboot/board/isee/igep0033/Kconfig
/rk3399_rockchip-uboot/board/jornada/Kconfig
/rk3399_rockchip-uboot/board/karo/tx25/Kconfig
/rk3399_rockchip-uboot/board/keymile/common/common.c
/rk3399_rockchip-uboot/board/kosagi/novena/Kconfig
/rk3399_rockchip-uboot/board/kosagi/novena/MAINTAINERS
/rk3399_rockchip-uboot/board/kosagi/novena/Makefile
/rk3399_rockchip-uboot/board/kosagi/novena/novena.c
/rk3399_rockchip-uboot/board/kosagi/novena/novena_spl.c
/rk3399_rockchip-uboot/board/kosagi/novena/setup.cfg
/rk3399_rockchip-uboot/board/logicpd/imx27lite/Kconfig
/rk3399_rockchip-uboot/board/logicpd/imx31_litekit/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvblx/sys_eeprom.c
/rk3399_rockchip-uboot/board/maxbcm/Kconfig
/rk3399_rockchip-uboot/board/micronas/vct/Kconfig
/rk3399_rockchip-uboot/board/mpl/vcma9/Kconfig
/rk3399_rockchip-uboot/board/mpr2/Kconfig
/rk3399_rockchip-uboot/board/ms7720se/Kconfig
/rk3399_rockchip-uboot/board/ms7722se/Kconfig
/rk3399_rockchip-uboot/board/ms7750se/Kconfig
/rk3399_rockchip-uboot/board/olimex/mx23_olinuxino/Kconfig
/rk3399_rockchip-uboot/board/palmld/Kconfig
/rk3399_rockchip-uboot/board/palmtc/Kconfig
/rk3399_rockchip-uboot/board/palmtreo680/Kconfig
/rk3399_rockchip-uboot/board/pb1x00/Kconfig
/rk3399_rockchip-uboot/board/phytec/pcm051/Kconfig
/rk3399_rockchip-uboot/board/ppcag/bg0900/Kconfig
/rk3399_rockchip-uboot/board/pxa255_idp/Kconfig
/rk3399_rockchip-uboot/board/qemu-mips/Kconfig
/rk3399_rockchip-uboot/board/raspberrypi/rpi_b/Kconfig
/rk3399_rockchip-uboot/board/renesas/MigoR/Kconfig
/rk3399_rockchip-uboot/board/renesas/alt/alt.c
/rk3399_rockchip-uboot/board/renesas/alt/qos.c
/rk3399_rockchip-uboot/board/renesas/ap325rxa/Kconfig
/rk3399_rockchip-uboot/board/renesas/ecovec/Kconfig
/rk3399_rockchip-uboot/board/renesas/ecovec/ecovec.c
/rk3399_rockchip-uboot/board/renesas/gose/Kconfig
/rk3399_rockchip-uboot/board/renesas/gose/MAINTAINERS
/rk3399_rockchip-uboot/board/renesas/gose/Makefile
/rk3399_rockchip-uboot/board/renesas/gose/gose.c
/rk3399_rockchip-uboot/board/renesas/gose/qos.c
/rk3399_rockchip-uboot/board/renesas/gose/qos.h
/rk3399_rockchip-uboot/board/renesas/koelsch/koelsch.c
/rk3399_rockchip-uboot/board/renesas/koelsch/qos.c
/rk3399_rockchip-uboot/board/renesas/lager/lager.c
/rk3399_rockchip-uboot/board/renesas/lager/qos.c
/rk3399_rockchip-uboot/board/renesas/r0p7734/Kconfig
/rk3399_rockchip-uboot/board/renesas/r2dplus/Kconfig
/rk3399_rockchip-uboot/board/renesas/r7780mp/Kconfig
/rk3399_rockchip-uboot/board/renesas/rsk7203/Kconfig
/rk3399_rockchip-uboot/board/renesas/rsk7264/Kconfig
/rk3399_rockchip-uboot/board/renesas/rsk7269/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7752evb/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7753evb/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7757lcr/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7763rdp/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7785lcr/Kconfig
/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/goni/Kconfig
/rk3399_rockchip-uboot/board/samsung/odroid/odroid.c
/rk3399_rockchip-uboot/board/samsung/smdk2410/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkc100/Kconfig
/rk3399_rockchip-uboot/board/samsung/universal_c210/universal.c
/rk3399_rockchip-uboot/board/sandisk/sansa_fuze_plus/Kconfig
/rk3399_rockchip-uboot/board/scb9328/Kconfig
/rk3399_rockchip-uboot/board/scb9328/flash.c
/rk3399_rockchip-uboot/board/schulercontrol/sc_sps_1/Kconfig
/rk3399_rockchip-uboot/board/shmin/Kconfig
/rk3399_rockchip-uboot/board/siemens/corvus/Kconfig
/rk3399_rockchip-uboot/board/siemens/corvus/board.c
/rk3399_rockchip-uboot/board/siemens/draco/Kconfig
/rk3399_rockchip-uboot/board/siemens/pxm2/Kconfig
/rk3399_rockchip-uboot/board/siemens/pxm2/board.c
/rk3399_rockchip-uboot/board/siemens/rut/Kconfig
/rk3399_rockchip-uboot/board/siemens/taurus/Kconfig
/rk3399_rockchip-uboot/board/siemens/taurus/taurus.c
/rk3399_rockchip-uboot/board/silica/pengwyn/Kconfig
/rk3399_rockchip-uboot/board/solidrun/hummingboard/Kconfig
/rk3399_rockchip-uboot/board/spear/spear300/Kconfig
/rk3399_rockchip-uboot/board/spear/spear310/Kconfig
/rk3399_rockchip-uboot/board/spear/spear320/Kconfig
/rk3399_rockchip-uboot/board/spear/spear600/Kconfig
/rk3399_rockchip-uboot/board/spear/x600/Kconfig
/rk3399_rockchip-uboot/board/st-ericsson/snowball/Kconfig
/rk3399_rockchip-uboot/board/st-ericsson/u8500/Kconfig
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/Makefile
/rk3399_rockchip-uboot/board/sunxi/ahci.c
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/sunxi/gmac.c
/rk3399_rockchip-uboot/board/syteco/jadecpu/Kconfig
/rk3399_rockchip-uboot/board/syteco/zmx25/Kconfig
/rk3399_rockchip-uboot/board/taskit/stamp9g20/Kconfig
/rk3399_rockchip-uboot/board/tbs/tbs2910/Kconfig
/rk3399_rockchip-uboot/board/tbs/tbs2910/MAINTAINERS
/rk3399_rockchip-uboot/board/tbs/tbs2910/Makefile
/rk3399_rockchip-uboot/board/tbs/tbs2910/tbs2910.c
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
/rk3399_rockchip-uboot/board/ti/am43xx/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/README
/rk3399_rockchip-uboot/board/ti/ks2_evm/board.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2l.c
/rk3399_rockchip-uboot/board/ti/ti814x/Kconfig
/rk3399_rockchip-uboot/board/ti/ti816x/Kconfig
/rk3399_rockchip-uboot/board/ti/tnetv107xevm/Kconfig
/rk3399_rockchip-uboot/board/timll/devkit3250/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_pxa270/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6_bb.h
/rk3399_rockchip-uboot/board/trizepsiv/Kconfig
/rk3399_rockchip-uboot/board/ttcontrol/vision2/Kconfig
/rk3399_rockchip-uboot/board/udoo/Kconfig
/rk3399_rockchip-uboot/board/vpac270/Kconfig
/rk3399_rockchip-uboot/board/wandboard/Kconfig
/rk3399_rockchip-uboot/board/woodburn/Kconfig
/rk3399_rockchip-uboot/board/xaeniax/Kconfig
/rk3399_rockchip-uboot/board/xilinx/zynq/.gitignore
/rk3399_rockchip-uboot/board/xilinx/zynq/Makefile
/rk3399_rockchip-uboot/board/xilinx/zynq/legacy.c
/rk3399_rockchip-uboot/board/xilinx/zynq/xil_io.h
/rk3399_rockchip-uboot/board/zipitz2/Kconfig
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/cli_hush.c
/rk3399_rockchip-uboot/common/cmd_fitupd.c
/rk3399_rockchip-uboot/common/cmd_fpgad.c
/rk3399_rockchip-uboot/common/dlmalloc.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/image-fit.c
/rk3399_rockchip-uboot/common/image.c
/rk3399_rockchip-uboot/common/lcd.c
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_nand.c
/rk3399_rockchip-uboot/common/stdio.c
/rk3399_rockchip-uboot/common/usb.c
/rk3399_rockchip-uboot/common/usb_hub.c
/rk3399_rockchip-uboot/common/usb_kbd.c
/rk3399_rockchip-uboot/common/usb_storage.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Colombus_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Ippo_q8h_v5_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_fdt_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mele_M3_defconfig
/rk3399_rockchip-uboot/configs/Mele_M9_defconfig
/rk3399_rockchip-uboot/configs/Mini-X-1Gb_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_nor_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_norboot_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/cm_t3517_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/dbau1000_defconfig
/rk3399_rockchip-uboot/configs/dbau1100_defconfig
/rk3399_rockchip-uboot/configs/dbau1500_defconfig
/rk3399_rockchip-uboot/configs/dbau1550_defconfig
/rk3399_rockchip-uboot/configs/dbau1550_el_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/gr_cpci_ax2000_defconfig
/rk3399_rockchip-uboot/configs/gr_ep2s60_defconfig
/rk3399_rockchip-uboot/configs/gr_xc3s_1500_defconfig
/rk3399_rockchip-uboot/configs/grsim_defconfig
/rk3399_rockchip-uboot/configs/grsim_leon2_defconfig
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/malta_defconfig
/rk3399_rockchip-uboot/configs/maltael_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/novena_defconfig
/rk3399_rockchip-uboot/configs/pb1000_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/qemu_mips64_defconfig
/rk3399_rockchip-uboot/configs/qemu_mips64el_defconfig
/rk3399_rockchip-uboot/configs/qemu_mips_defconfig
/rk3399_rockchip-uboot/configs/qemu_mipsel_defconfig
/rk3399_rockchip-uboot/configs/qt840a_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_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/sh7752evb_defconfig
/rk3399_rockchip-uboot/configs/sh7753evb_defconfig
/rk3399_rockchip-uboot/configs/sh7757lcr_defconfig
/rk3399_rockchip-uboot/configs/sh7785lcr_32bit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tbs2910_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinum_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_platinumavc_small_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_onenand_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_onenand_small_defconfig
/rk3399_rockchip-uboot/configs/vct_premium_small_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/doc/README.kwbimage
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/SPI/README.altera_spi
/rk3399_rockchip-uboot/doc/mkimage.1
/rk3399_rockchip-uboot/drivers/block/dwc_ahsata.c
/rk3399_rockchip-uboot/drivers/dma/keystone_nav.c
/rk3399_rockchip-uboot/drivers/gpio/sunxi_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/adi_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/designware_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/fsl_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/i2c_core.c
/rk3399_rockchip-uboot/drivers/i2c/mxs_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/ppc4xx_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/rcar_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/omap_hsmmc.c
/rk3399_rockchip-uboot/drivers/mmc/s5p_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/sunxi_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.c
/rk3399_rockchip-uboot/drivers/mtd/jedec_flash.c
/rk3399_rockchip-uboot/drivers/mtd/nand/atmel_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/atmel_nand_ecc.h
/rk3399_rockchip-uboot/drivers/mtd/nand/mxs_nand.c
/rk3399_rockchip-uboot/drivers/net/fm/memac.c
/rk3399_rockchip-uboot/drivers/net/fm/memac_phy.c
/rk3399_rockchip-uboot/drivers/net/keystone_net.c
/rk3399_rockchip-uboot/drivers/net/macb.c
/rk3399_rockchip-uboot/drivers/net/phy/marvell.c
/rk3399_rockchip-uboot/drivers/net/sh_eth.c
/rk3399_rockchip-uboot/drivers/net/sh_eth.h
/rk3399_rockchip-uboot/drivers/net/smc911x.c
/rk3399_rockchip-uboot/drivers/net/uli526x.c
/rk3399_rockchip-uboot/drivers/power/Kconfig
/rk3399_rockchip-uboot/drivers/power/Makefile
/rk3399_rockchip-uboot/drivers/power/axp221.c
/rk3399_rockchip-uboot/drivers/power/power_spi.c
/rk3399_rockchip-uboot/drivers/power/twl4030.c
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_dw.c
/rk3399_rockchip-uboot/drivers/serial/serial_sh.h
/rk3399_rockchip-uboot/drivers/serial/serial_uniphier.c
/rk3399_rockchip-uboot/drivers/spi/altera_spi.c
/rk3399_rockchip-uboot/drivers/spi/atmel_spi.h
/rk3399_rockchip-uboot/drivers/spi/mxc_spi.c
/rk3399_rockchip-uboot/drivers/usb/Kconfig
/rk3399_rockchip-uboot/drivers/usb/eth/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/s3c_udc_otg.c
/rk3399_rockchip-uboot/drivers/usb/gadget/s3c_udc_otg_phy.c
/rk3399_rockchip-uboot/drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-rmobile.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-uniphier.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci.h
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/fs/zfs/zfs.c
/rk3399_rockchip-uboot/include/axp221.h
/rk3399_rockchip-uboot/include/configs/BSC9131RDB.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/P1022DS.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/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/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.h
/rk3399_rockchip-uboot/include/configs/afeb9260.h
/rk3399_rockchip-uboot/include/configs/alt.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/aristainetos.h
/rk3399_rockchip-uboot/include/configs/at91rm9200ek.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/at91sam9rlek.h
/rk3399_rockchip-uboot/include/configs/axs101.h
/rk3399_rockchip-uboot/include/configs/bct-brettl2.h
/rk3399_rockchip-uboot/include/configs/bf518f-ezbrd.h
/rk3399_rockchip-uboot/include/configs/bf526-ezbrd.h
/rk3399_rockchip-uboot/include/configs/bf527-ad7160-eval.h
/rk3399_rockchip-uboot/include/configs/bf527-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf527-sdp.h
/rk3399_rockchip-uboot/include/configs/bf537-minotaur.h
/rk3399_rockchip-uboot/include/configs/bf537-pnav.h
/rk3399_rockchip-uboot/include/configs/bf537-srv1.h
/rk3399_rockchip-uboot/include/configs/bf537-stamp.h
/rk3399_rockchip-uboot/include/configs/bf538f-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf548-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf609-ezkit.h
/rk3399_rockchip-uboot/include/configs/bfin_adi_common.h
/rk3399_rockchip-uboot/include/configs/br4.h
/rk3399_rockchip-uboot/include/configs/cm-bf527.h
/rk3399_rockchip-uboot/include/configs/cm-bf537e.h
/rk3399_rockchip-uboot/include/configs/cm-bf537u.h
/rk3399_rockchip-uboot/include/configs/cm-bf548.h
/rk3399_rockchip-uboot/include/configs/cm_t3517.h
/rk3399_rockchip-uboot/include/configs/coreboot.h
/rk3399_rockchip-uboot/include/configs/corvus.h
/rk3399_rockchip-uboot/include/configs/dlvision.h
/rk3399_rockchip-uboot/include/configs/ethernut5.h
/rk3399_rockchip-uboot/include/configs/exynos-common.h
/rk3399_rockchip-uboot/include/configs/exynos4-common.h
/rk3399_rockchip-uboot/include/configs/gose.h
/rk3399_rockchip-uboot/include/configs/hrcon.h
/rk3399_rockchip-uboot/include/configs/imx6_spl.h
/rk3399_rockchip-uboot/include/configs/k2e_evm.h
/rk3399_rockchip-uboot/include/configs/k2hk_evm.h
/rk3399_rockchip-uboot/include/configs/k2l_evm.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/koelsch.h
/rk3399_rockchip-uboot/include/configs/ks2_evm.h
/rk3399_rockchip-uboot/include/configs/lager.h
/rk3399_rockchip-uboot/include/configs/m28evk.h
/rk3399_rockchip-uboot/include/configs/meesc.h
/rk3399_rockchip-uboot/include/configs/mx53loco.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx6qsabreauto.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/mx6sabresd.h
/rk3399_rockchip-uboot/include/configs/mx6slevk.h
/rk3399_rockchip-uboot/include/configs/mxs.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/o2dnt-common.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/ot1200.h
/rk3399_rockchip-uboot/include/configs/otc570.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/ph1_ld4.h
/rk3399_rockchip-uboot/include/configs/ph1_pro4.h
/rk3399_rockchip-uboot/include/configs/ph1_sld8.h
/rk3399_rockchip-uboot/include/configs/pm9261.h
/rk3399_rockchip-uboot/include/configs/pm9263.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/rcar-gen2-common.h
/rk3399_rockchip-uboot/include/configs/rsk7203.h
/rk3399_rockchip-uboot/include/configs/rsk7264.h
/rk3399_rockchip-uboot/include/configs/rsk7269.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/s5pc210_universal.h
/rk3399_rockchip-uboot/include/configs/sama5d4_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d4ek.h
/rk3399_rockchip-uboot/include/configs/sbc35_a9g20.h
/rk3399_rockchip-uboot/include/configs/sbc8548.h
/rk3399_rockchip-uboot/include/configs/sh7752evb.h
/rk3399_rockchip-uboot/include/configs/sh7753evb.h
/rk3399_rockchip-uboot/include/configs/sh7757lcr.h
/rk3399_rockchip-uboot/include/configs/smdkv310.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/socfpga_cyclone5.h
/rk3399_rockchip-uboot/include/configs/spear-common.h
/rk3399_rockchip-uboot/include/configs/sun4i.h
/rk3399_rockchip-uboot/include/configs/sun5i.h
/rk3399_rockchip-uboot/include/configs/sun6i.h
/rk3399_rockchip-uboot/include/configs/sun7i.h
/rk3399_rockchip-uboot/include/configs/sun8i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/tbs2910.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/tny_a9260.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/include/configs/uniphier-common.h
/rk3399_rockchip-uboot/include/configs/usb_a9263.h
/rk3399_rockchip-uboot/include/configs/wandboard.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/zynq_zybo.h
/rk3399_rockchip-uboot/include/dt-bindings/input/input.h
/rk3399_rockchip-uboot/include/dt-bindings/reset/altr,rst-mgr.h
/rk3399_rockchip-uboot/include/flash.h
/rk3399_rockchip-uboot/include/gdsys_fpga.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/lcd.h
/rk3399_rockchip-uboot/include/linux/serial_reg.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/sh_tmu.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/include/twl4030.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
/rk3399_rockchip-uboot/include/usb.h
/rk3399_rockchip-uboot/include/usb/s3c_udc.h
/rk3399_rockchip-uboot/scripts/Kbuild.include
/rk3399_rockchip-uboot/scripts/Makefile.autoconf
/rk3399_rockchip-uboot/scripts/Makefile.build
/rk3399_rockchip-uboot/scripts/Makefile.clean
/rk3399_rockchip-uboot/scripts/Makefile.extrawarn
/rk3399_rockchip-uboot/scripts/Makefile.host
/rk3399_rockchip-uboot/scripts/Makefile.lib
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/binutils-version.sh
/rk3399_rockchip-uboot/scripts/dtc-version.sh
/rk3399_rockchip-uboot/scripts/gcc-stack-usage.sh
/rk3399_rockchip-uboot/scripts/gcc-version.sh
/rk3399_rockchip-uboot/scripts/kconfig/Makefile
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/check-lxdialog.sh
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/dialog.h
/rk3399_rockchip-uboot/scripts/kconfig/streamline_config.pl
/rk3399_rockchip-uboot/scripts/kernel-doc
/rk3399_rockchip-uboot/scripts/mkmakefile
/rk3399_rockchip-uboot/scripts/multiconfig.sh
/rk3399_rockchip-uboot/test/command_ut.c
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/env/fw_env.c
/rk3399_rockchip-uboot/tools/imximage.c
/rk3399_rockchip-uboot/tools/kwbimage.c
/rk3399_rockchip-uboot/tools/mkenvimage.c
7653938310-Oct-2014 Simon Glass <sjg@chromium.org>

x86: Move kernel boot function to arch/x86/lib/bootm.c

The boot_zimage() function is badly named it can also boot a raw kernel.
Rename it, and try to avoid pointers for memory addresses as it involv

x86: Move kernel boot function to arch/x86/lib/bootm.c

The boot_zimage() function is badly named it can also boot a raw kernel.
Rename it, and try to avoid pointers for memory addresses as it involves
lots of casting.

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

show more ...

200182a710-Oct-2014 Simon Glass <sjg@chromium.org>

x86: Add support for starting 64-bit kernel

Add code to jump to a 64-bit Linux kernel. We need to set up a flat page
table structure, a new GDT and then go through a few hoops in the right
order.

S

x86: Add support for starting 64-bit kernel

Add code to jump to a 64-bit Linux kernel. We need to set up a flat page
table structure, a new GDT and then go through a few hoops in the right
order.

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

show more ...

92cc94a110-Oct-2014 Simon Glass <sjg@chromium.org>

x86: Display basic CPU information on boot

Display the type of CPU (x86 or x86_64) when starting up.

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

dc68584b10-Oct-2014 Simon Glass <sjg@chromium.org>

x86: Bring in msr-index.h from linux 3.8

Update this file to include x86_64 fields.

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

1...<<1112131415161718