History log of /rk3399_rockchip-uboot/common/ (Results 2126 – 2150 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
60296a8313-Nov-2014 Masahiro Yamada <yamada.m@jp.panasonic.com>

commands: add more command entries in Kconfig

This commit adds some of command entries (CONFIG_CMD_*) to
cover include/config_cmd_default.h and a little extra.

Because U-Boot supports lots of comma

commands: add more command entries in Kconfig

This commit adds some of command entries (CONFIG_CMD_*) to
cover include/config_cmd_default.h and a little extra.

Because U-Boot supports lots of commands, they should be categorized
according to their usage.

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

show more ...

6c77509013-Nov-2014 Masahiro Yamada <yamada.m@jp.panasonic.com>

hush: add CONFIG_HUSH_PARSER to Kconfig

The README file states that the macros beginning with "CONFIG_SYS_"
depend on the hardware etc. and should not be meddled with if you do
not what you're doing

hush: add CONFIG_HUSH_PARSER to Kconfig

The README file states that the macros beginning with "CONFIG_SYS_"
depend on the hardware etc. and should not be meddled with if you do
not what you're doing.
We have already screwed up with this policy; we have given the prefix
"CONFIG_SYS_" to many user-selectable configurations.
Here, "CONFIG_SYS_HUSH_PARSER" is one of them. Users can enable it
if they want to use a more powerful command line parser, or disable it
if they only need a simple one.

This commit attempts to rename CONFIG_SYS_HUSH_PARSER to
CONFIG_HUSH_PARSER and move it to Kconfig.

Every board maintainer is expected to enable CONFIG_HUSH_PARSER
(= add "CONFIG_HUSH_PARSER=y" to his defconfig file) and remove
"#define CONFIG_SYS_HUSH_PARSER" from his header file.

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

show more ...

4efe52bf13-Nov-2014 Thierry Reding <treding@nvidia.com>

pci: Honour pci_skip_dev()

When enumerating devices, honour the pci_skip_dev() function. This can
be used by PCI controller drivers to restrict which devices will be
probed.

This is required by the

pci: Honour pci_skip_dev()

When enumerating devices, honour the pci_skip_dev() function. This can
be used by PCI controller drivers to restrict which devices will be
probed.

This is required by the NVIDIA Tegra PCIe controller driver, which will
fail with a data abort exception if an access is attempted to a device
number larger than 0 outside of bus 0. pci_skip_dev() is therefore
implemented to prevent any such accesses.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

042b83d413-Nov-2014 Thierry Reding <treding@nvidia.com>

pci: Abort early if bus does not exist

When listing the devices on a PCI bus, the current code will blindly try
to access all devices. Internally this causes pci_bus_to_hose() to be
repeatedly calle

pci: Abort early if bus does not exist

When listing the devices on a PCI bus, the current code will blindly try
to access all devices. Internally this causes pci_bus_to_hose() to be
repeatedly called and output an error message every time. Prevent this
by calling pci_bus_to_hose() once and abort early if no bus was found.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

59e890ef12-Nov-2014 Christian Gmeiner <christian.gmeiner@gmail.com>

fs: make it possible to read the filesystem UUID

Some filesystems have a UUID stored in its superblock. To
allow using root=UUID=... for the kernel command line we
need a way to read-out the filesys

fs: make it possible to read the filesystem UUID

Some filesystems have a UUID stored in its superblock. To
allow using root=UUID=... for the kernel command line we
need a way to read-out the filesystem UUID.

changes rfc -> v1:
- make the environment variable an option parameter. If not
given, the UUID is printed out. If given, it is stored in the env
variable.
- corrected typos
- return error codes

changes v1 -> v2:
- fix return code of do_fs_uuid(..)
- document do_fs_uuid(..)
- implement fs_uuid_unsuported(..) be more consistent with the
way other optional functionality works

changes v2 -> v3:
- change ext4fs_uuid(..) to make use of #if .. #else .. #endif
construct to get rid of unreachable code

Hit any key to stop autoboot: 0
=> fsuuid
fsuuid - Look up a filesystem UUID

Usage:
fsuuid <interface> <dev>:<part>
- print filesystem UUID
fsuuid <interface> <dev>:<part> <varname>
- set environment variable to filesystem UUID

=> fsuuid mmc 0:1
d9f9fc05-45ae-4a36-a616-fccce0e4f887
=> fsuuid mmc 0:2
eb3db83c-7b28-499f-95ce-9e0bb21cda81
=> fsuuid mmc 0:1 uuid1
=> fsuuid mmc 0:2 uuid2
=> printenv uuid1
uuid1=d9f9fc05-45ae-4a36-a616-fccce0e4f887
=> printenv uuid2
uuid2=eb3db83c-7b28-499f-95ce-9e0bb21cda81
=>

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Acked-by: Stephen Warren <swarren@nvidia.com>

show more ...

18f26fdb11-Nov-2014 Stefan Roese <sr@denx.de>

spl: Change debug to printf for "Unsupported boot-device"

We had the problem on an AM33xx platform, that SPL detected an
unsupported boot-device. But since this message is a debug message
it took a

spl: Change debug to printf for "Unsupported boot-device"

We had the problem on an AM33xx platform, that SPL detected an
unsupported boot-device. But since this message is a debug message
it took a bit of time to really know, where the hangup in SPL
resulted from. So let's change this debug message to a printf
and also print the detected boot-device that is not supported.
This makes debugging of such cases much easier.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Tom Rini <trini@ti.com>
Acked-by: Heiko Schocher <hs@denx.de>

show more ...

b414119506-Nov-2014 Masahiro Yamada <yamada.m@jp.panasonic.com>

linux/kernel.h: sync min, max, min3, max3 macros with Linux

U-Boot has never cared about the type when we get max/min of two
values, but Linux Kernel does. This commit gets min, max, min3, max3
mac

linux/kernel.h: sync min, max, min3, max3 macros with Linux

U-Boot has never cared about the type when we get max/min of two
values, but Linux Kernel does. This commit gets min, max, min3, max3
macros synced with the kernel introducing type checks.

Many of references of those macros must be fixed to suppress warnings.
We have two options:
- Use min, max, min3, max3 only when the arguments have the same type
(or add casts to the arguments)
- Use min_t/max_t instead with the appropriate type for the first
argument

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Pavel Machek <pavel@denx.de>
Acked-by: Lukasz Majewski <l.majewski@samsung.com>
Tested-by: Lukasz Majewski <l.majewski@samsung.com>
[trini: Fixup arch/blackfin/lib/string.c]
Signed-off-by: Tom Rini <trini@ti.com>

show more ...


/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/tnetv107x/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/spl_power_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-core.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/spl_boot.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/abb.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra20/display.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armada100/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91rm9200.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9260.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9261.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9263.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9g45.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9rl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9x5.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/sama5d3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-lpc32xx/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-pantheon/config.h
/rk3399_rockchip-uboot/arch/arm/lib/cache.c
/rk3399_rockchip-uboot/arch/avr32/cpu/at32ap700x/clk.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/jtag-console.c
/rk3399_rockchip-uboot/arch/blackfin/lib/string.c
/rk3399_rockchip-uboot/arch/mips/cpu/mips32/au1x00/au1x00_usb_ohci.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/usb_ohci.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/tlb.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/usb_ohci.c
/rk3399_rockchip-uboot/arch/powerpc/lib/bootm.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/start.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/pci.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/sdram.c
/rk3399_rockchip-uboot/board/freescale/common/sys_eeprom.c
/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/gdsys/p1022/controlcenterd-id.c
/rk3399_rockchip-uboot/board/imgtec/malta/malta.c
cmd_elf.c
cmd_sf.c
env_nand.c
fdt_support.c
lcd.c
usb_hub.c
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/lc_common_dimm_params.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/dfu/dfu.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/adi_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/fsl_i2c.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_spi.c
/rk3399_rockchip-uboot/drivers/misc/mxc_ocotp.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/pxa_mmc_gen.c
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.c
/rk3399_rockchip-uboot/drivers/mtd/nand/denali_spl.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sandbox.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_ops.c
/rk3399_rockchip-uboot/drivers/net/netconsole.c
/rk3399_rockchip-uboot/drivers/pci/pci.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/serial/usbtty.c
/rk3399_rockchip-uboot/drivers/spi/fsl_espi.c
/rk3399_rockchip-uboot/drivers/spi/mxc_spi.c
/rk3399_rockchip-uboot/drivers/spi/spi-uclass.c
/rk3399_rockchip-uboot/drivers/tpm/tpm_tis_lpc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/composite.c
/rk3399_rockchip-uboot/drivers/usb/gadget/designware_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/pxa27x_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/isp116x-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-s3c24xx.c
/rk3399_rockchip-uboot/drivers/usb/host/r8a66597-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-ring.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci.c
/rk3399_rockchip-uboot/drivers/usb/musb/musb_hcd.h
/rk3399_rockchip-uboot/drivers/video/ati_radeon_fb.c
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/fs/ext4/dev.c
/rk3399_rockchip-uboot/fs/fat/fat.c
/rk3399_rockchip-uboot/fs/ubifs/ubifs.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/VCMA9.h
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.h
/rk3399_rockchip-uboot/include/configs/apf27.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bcm_ep_board.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/calimain.h
/rk3399_rockchip-uboot/include/configs/cam_enc_4xx.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/cpuat91.h
/rk3399_rockchip-uboot/include/configs/da830evm.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dm355evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dm355leopard.h
/rk3399_rockchip-uboot/include/configs/davinci_dm365evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dm6467evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dvevm.h
/rk3399_rockchip-uboot/include/configs/davinci_schmoogie.h
/rk3399_rockchip-uboot/include/configs/davinci_sffsdr.h
/rk3399_rockchip-uboot/include/configs/davinci_sonata.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/edb93xx.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/enbw_cmc.h
/rk3399_rockchip-uboot/include/configs/flea3.h
/rk3399_rockchip-uboot/include/configs/hawkboard.h
/rk3399_rockchip-uboot/include/configs/hrcon.h
/rk3399_rockchip-uboot/include/configs/imx27lite-common.h
/rk3399_rockchip-uboot/include/configs/imx31_litekit.h
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/ipam390.h
/rk3399_rockchip-uboot/include/configs/jadecpu.h
/rk3399_rockchip-uboot/include/configs/ks2_evm.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx31pdk.h
/rk3399_rockchip-uboot/include/configs/mx35pdk.h
/rk3399_rockchip-uboot/include/configs/nhk8815.h
/rk3399_rockchip-uboot/include/configs/omap3_mvblx.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/configs/rpi_b.h
/rk3399_rockchip-uboot/include/configs/scb9328.h
/rk3399_rockchip-uboot/include/configs/smdk2410.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/configs/tnetv107x_evm.h
/rk3399_rockchip-uboot/include/configs/tt01.h
/rk3399_rockchip-uboot/include/configs/versatile.h
/rk3399_rockchip-uboot/include/configs/woodburn_common.h
/rk3399_rockchip-uboot/include/configs/zmx25.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/gdsys_fpga.h
/rk3399_rockchip-uboot/include/linux/compat.h
/rk3399_rockchip-uboot/include/linux/kernel.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
/rk3399_rockchip-uboot/lib/strmhz.c
/rk3399_rockchip-uboot/lib/vsprintf.c
c1a6f37111-Nov-2014 Simon Glass <sjg@chromium.org>

dm: i2c: Move error reporting into a common function

Factor out the common code to make it easier to adjust it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@ti.com>
Ac

dm: i2c: Move error reporting into a common function

Factor out the common code to make it easier to adjust it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@ti.com>
Acked-by: Heiko Schocher <hs@denx.de>

show more ...

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

dm: spl: Allow driver model to be used

When enabled, set up driver model for SPL. This allows SPL to use the same
drivers as the main U-Boot.

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

dm: spl: Allow driver model to be used

When enabled, set up driver model for SPL. This allows SPL to use the same
drivers as the main U-Boot.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Tom Rini <trini@ti.com>

show more ...

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

dm: spl: Make simple malloc() available when enabled

Set up the simple malloc() implementation when requested, in preference to
the full malloc().

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

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

dm: Split the simple malloc() implementation into its own file

The simple malloc() implementation is used when memory is tight. It provides
a simple buffer with an incrementing pointer.

At present

dm: Split the simple malloc() implementation into its own file

The simple malloc() implementation is used when memory is tight. It provides
a simple buffer with an incrementing pointer.

At present the implementation is inside dlmalloc. Move it into its own file
so that it is easier to find.

Rather than using relocation as a signal that the full malloc() is
available, add a special GD_FLG_FULL_MALLOC_INIT flag. This signals that the
simple malloc() should no longer be used.

In some cases, such as SPL, even the code space used by the full malloc() is
wasteful. Add a CONFIG_SYS_MALLOC_SIMPLE option to provide only the simple
malloc. In this case the full malloc is not available at all. It saves about
1KB of code space and about 0.5KB of data on Thumb 2.

Acked-by: Tom Rini <trini@ti.com>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9260.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/atmel_serial.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/gpio.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/board/bluewater/snapper9260/MAINTAINERS
/rk3399_rockchip-uboot/board/bluewater/snapper9260/snapper9260.c
/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
Makefile
board_r.c
dlmalloc.c
malloc_simple.c
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/drivers/gpio/at91_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/adi_i2c.c
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.c
/rk3399_rockchip-uboot/drivers/serial/atmel_usart.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.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/hrcon.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/snapper9260.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/gdsys_fpga.h
/rk3399_rockchip-uboot/include/malloc.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
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>

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

Move early malloc() to before arch_cpu_init()

For some CPUs, having malloc() available very early is useful. There is no
reason to delay this since early malloc is allocated before board_init_f()
is

Move early malloc() to before arch_cpu_init()

For some CPUs, having malloc() available very early is useful. There is no
reason to delay this since early malloc is allocated before board_init_f()
is called.

Move early malloc() init nearer to the start of the init sequence.

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

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/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/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
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot-x86.h
/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
board_f.c
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/adi_i2c.c
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.c
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.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/hrcon.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/gdsys_fpga.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
933cdbb424-Oct-2014 Simon Glass <sjg@chromium.org>

fdt: Try to use fdt_address_cells()/fdt_size_cells()

Use these new functions where possible. They default to a value of 2 so we
cannot use them in some places where we need a default value of 1.

Si

fdt: Try to use fdt_address_cells()/fdt_size_cells()

Use these new functions where possible. They default to a value of 2 so we
cannot use them in some places where we need a default value of 1.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...

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

fdt: Change fdt_pack_reg() to static and fix types

This function is only called within this file so make it static. Also
fix its argument types to be consistent with its caller.

Signed-off-by: Simo

fdt: Change fdt_pack_reg() to static and fix types

This function is only called within this file so make it static. Also
fix its argument types to be consistent with its caller.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...

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

fdt: Add ft_system_setup() function for system device tree additions

Add an additional function for adding information to the device tree before
booting. This permits additions which are not board-s

fdt: Add ft_system_setup() function for system device tree additions

Add an additional function for adding information to the device tree before
booting. This permits additions which are not board-specific.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...

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

fdt: Tidy up error handling in image_setup_libfdt()

The message about needing to reset should be printed no matter what error
is printed. Also, an error should always be printed.

Signed-off-by: Sim

fdt: Tidy up error handling in image_setup_libfdt()

The message about needing to reset should be printed no matter what error
is printed. Also, an error should always be printed.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...

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

fdt: Export the fdt_find_or_add_subnode() function

This function is useful for ensuring that a node exists. Export it so it
can be used more widely.

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

fdt: Export the fdt_find_or_add_subnode() function

This function is useful for ensuring that a node exists. Export it so it
can be used more widely.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...

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

fdt: Report failure of ft_board_setup()

Since this function can fail, print a message when it does.

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

fdt: Report failure of ft_board_setup()

Since this function can fail, print a message when it does.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...


/rk3399_rockchip-uboot/arch/nios2/cpu/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/fdt.c
/rk3399_rockchip-uboot/board/a3m071/a3m071.c
/rk3399_rockchip-uboot/board/a4m072/a4m072.c
/rk3399_rockchip-uboot/board/amcc/canyonlands/canyonlands.c
/rk3399_rockchip-uboot/board/amcc/sequoia/sequoia.c
/rk3399_rockchip-uboot/board/cm5200/cm5200.c
/rk3399_rockchip-uboot/board/compulab/cm_fx6/cm_fx6.c
/rk3399_rockchip-uboot/board/compulab/cm_t54/cm_t54.c
/rk3399_rockchip-uboot/board/davedenx/aria/aria.c
/rk3399_rockchip-uboot/board/esd/cpci405/cpci405.c
/rk3399_rockchip-uboot/board/esd/mecp5123/mecp5123.c
/rk3399_rockchip-uboot/board/esd/pmc405de/pmc405de.c
/rk3399_rockchip-uboot/board/esd/pmc440/pmc440.c
/rk3399_rockchip-uboot/board/esd/vme8349/vme8349.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds.c
/rk3399_rockchip-uboot/board/freescale/bsc9131rdb/bsc9131rdb.c
/rk3399_rockchip-uboot/board/freescale/bsc9132qds/bsc9132qds.c
/rk3399_rockchip-uboot/board/freescale/c29xpcie/c29xpcie.c
/rk3399_rockchip-uboot/board/freescale/common/cds_pci_ft.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/corenet_ds.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/ls2085a.c
/rk3399_rockchip-uboot/board/freescale/mpc5121ads/mpc5121ads.c
/rk3399_rockchip-uboot/board/freescale/mpc7448hpc2/mpc7448hpc2.c
/rk3399_rockchip-uboot/board/freescale/mpc8308rdb/mpc8308rdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8313erdb/mpc8313erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8315erdb/mpc8315erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8323erdb/mpc8323erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc832xemds/mpc832xemds.c
/rk3399_rockchip-uboot/board/freescale/mpc8349emds/mpc8349emds.c
/rk3399_rockchip-uboot/board/freescale/mpc8349itx/mpc8349itx.c
/rk3399_rockchip-uboot/board/freescale/mpc8360emds/mpc8360emds.c
/rk3399_rockchip-uboot/board/freescale/mpc8360erdk/mpc8360erdk.c
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/mpc837xemds.c
/rk3399_rockchip-uboot/board/freescale/mpc837xerdb/mpc837xerdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/mpc8536ds.c
/rk3399_rockchip-uboot/board/freescale/mpc8540ads/mpc8540ads.c
/rk3399_rockchip-uboot/board/freescale/mpc8544ds/mpc8544ds.c
/rk3399_rockchip-uboot/board/freescale/mpc8560ads/mpc8560ads.c
/rk3399_rockchip-uboot/board/freescale/mpc8568mds/mpc8568mds.c
/rk3399_rockchip-uboot/board/freescale/mpc8569mds/mpc8569mds.c
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/mpc8572ds.c
/rk3399_rockchip-uboot/board/freescale/mpc8610hpcd/mpc8610hpcd.c
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/mpc8641hpcn.c
/rk3399_rockchip-uboot/board/freescale/p1010rdb/p1010rdb.c
/rk3399_rockchip-uboot/board/freescale/p1022ds/p1022ds.c
/rk3399_rockchip-uboot/board/freescale/p1023rdb/p1023rdb.c
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb/p1_p2_rdb.c
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c
/rk3399_rockchip-uboot/board/freescale/p1_twr/p1_twr.c
/rk3399_rockchip-uboot/board/freescale/p2020come/p2020come.c
/rk3399_rockchip-uboot/board/freescale/p2020ds/p2020ds.c
/rk3399_rockchip-uboot/board/freescale/p2041rdb/p2041rdb.c
/rk3399_rockchip-uboot/board/freescale/qemu-ppce500/qemu-ppce500.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/t1040qds.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/t104xrdb.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t208xrdb.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240emu.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/t4240rdb.c
/rk3399_rockchip-uboot/board/galaxy5200/galaxy5200.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana.c
/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/intip/intip.c
/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/gdsys/p1022/controlcenterd.c
/rk3399_rockchip-uboot/board/highbank/highbank.c
/rk3399_rockchip-uboot/board/icecube/icecube.c
/rk3399_rockchip-uboot/board/ids/ids8313/ids8313.c
/rk3399_rockchip-uboot/board/ifm/ac14xx/ac14xx.c
/rk3399_rockchip-uboot/board/ifm/o2dnt2/o2dnt2.c
/rk3399_rockchip-uboot/board/intercontrol/digsy_mtc/digsy_mtc.c
/rk3399_rockchip-uboot/board/ipek01/ipek01.c
/rk3399_rockchip-uboot/board/jupiter/jupiter.c
/rk3399_rockchip-uboot/board/keymile/km82xx/km82xx.c
/rk3399_rockchip-uboot/board/keymile/km83xx/km83xx.c
/rk3399_rockchip-uboot/board/keymile/kmp204x/kmp204x.c
/rk3399_rockchip-uboot/board/korat/korat.c
/rk3399_rockchip-uboot/board/kup/kup4k/kup4k.c
/rk3399_rockchip-uboot/board/manroland/mucmc52/mucmc52.c
/rk3399_rockchip-uboot/board/manroland/uc101/uc101.c
/rk3399_rockchip-uboot/board/motionpro/motionpro.c
/rk3399_rockchip-uboot/board/mpc8308_p1m/mpc8308_p1m.c
/rk3399_rockchip-uboot/board/muas3001/muas3001.c
/rk3399_rockchip-uboot/board/munices/munices.c
/rk3399_rockchip-uboot/board/pdm360ng/pdm360ng.c
/rk3399_rockchip-uboot/board/phytec/pcm030/pcm030.c
/rk3399_rockchip-uboot/board/raspberrypi/rpi_b/rpi_b.c
/rk3399_rockchip-uboot/board/sbc8349/sbc8349.c
/rk3399_rockchip-uboot/board/sbc8548/sbc8548.c
/rk3399_rockchip-uboot/board/sbc8641d/sbc8641d.c
/rk3399_rockchip-uboot/board/socrates/socrates.c
/rk3399_rockchip-uboot/board/stx/stxssa/stxssa.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board.c
/rk3399_rockchip-uboot/board/tqc/tqm5200/tqm5200.c
/rk3399_rockchip-uboot/board/tqc/tqm834x/tqm834x.c
/rk3399_rockchip-uboot/board/tqc/tqm8xx/tqm8xx.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6.c
/rk3399_rockchip-uboot/board/ve8313/ve8313.c
/rk3399_rockchip-uboot/board/xes/xpedite517x/xpedite517x.c
/rk3399_rockchip-uboot/board/xes/xpedite520x/xpedite520x.c
/rk3399_rockchip-uboot/board/xes/xpedite537x/xpedite537x.c
/rk3399_rockchip-uboot/board/xes/xpedite550x/xpedite550x.c
cmd_fdt.c
/rk3399_rockchip-uboot/configs/hrcon_defconfig
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/adi_i2c.c
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.c
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.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/hrcon.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/gdsys_fpga.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
f1cdde2813-Nov-2014 Dirk Eibach <dirk.eibach@gdsys.cc>

common: Fix cmd_fpgad addressing

Addressing was completely broken for cmd_fpgad.

Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc>
Signed-off-by: Stefan Roese <sr@denx.de>


/rk3399_rockchip-uboot/arch/arm/Kconfig
/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/armv7/at91/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/clock.c
/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/at91-common/Makefile
/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/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/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/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/siemens/corvus/board.c
/rk3399_rockchip-uboot/board/siemens/taurus/taurus.c
cmd_fpgad.c
/rk3399_rockchip-uboot/configs/corvus_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/taurus_defconfig
/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/net/macb.c
/rk3399_rockchip-uboot/include/configs/corvus.h
/rk3399_rockchip-uboot/include/configs/dlvision.h
/rk3399_rockchip-uboot/include/configs/sama5d4_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d4ek.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/flash.h
/rk3399_rockchip-uboot/include/nand.h
0c3117b131-Oct-2014 Heiko Schocher <hs@denx.de>

spl, nand: add option to boot raw u-boot.bin image only

enable to boot only a raw u-boot.bin image from nand with the
CONFIG_SPL_NAND_RAW_ONLY define. This option saves space on
boards where spl spa

spl, nand: add option to boot raw u-boot.bin image only

enable to boot only a raw u-boot.bin image from nand with the
CONFIG_SPL_NAND_RAW_ONLY define. This option saves space on
boards where spl space is low.

Signed-off-by: Heiko Schocher <hs@denx.de>
Reviewed-by: Andreas Bießmann <andreas.devel@googlemail.com>
Reviewed-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/soc.c
/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/pfc-r8a7793.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/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/psci.S
/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/spl.c
/rk3399_rockchip-uboot/arch/arm/imx-common/spl.c
/rk3399_rockchip-uboot/arch/arm/imx-common/video.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/atmel_mpddrc.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-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/p2wi.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/prcm.h
/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/include/asm/fsl_memac.h
/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/board/alphaproject/ap_sh4a_4a/Kconfig
/rk3399_rockchip-uboot/board/bachmann/ot1200/ot1200.c
/rk3399_rockchip-uboot/board/espt/Kconfig
/rk3399_rockchip-uboot/board/freescale/bsc9131rdb/bsc9131rdb.c
/rk3399_rockchip-uboot/board/freescale/bsc9132qds/bsc9132qds.c
/rk3399_rockchip-uboot/board/freescale/mx28evk/README
/rk3399_rockchip-uboot/board/freescale/mx53loco/mx53loco.c
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/mx6qsabreauto.c
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd.c
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd_spl.cfg
/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/mpr2/Kconfig
/rk3399_rockchip-uboot/board/ms7720se/Kconfig
/rk3399_rockchip-uboot/board/ms7722se/Kconfig
/rk3399_rockchip-uboot/board/ms7750se/Kconfig
/rk3399_rockchip-uboot/board/renesas/MigoR/Kconfig
/rk3399_rockchip-uboot/board/renesas/alt/alt.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/lager/lager.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/shmin/Kconfig
/rk3399_rockchip-uboot/board/siemens/taurus/taurus.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/sunxi/gmac.c
/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
spl/spl.c
spl/spl_nand.c
/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/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Colombus_defconfig
/rk3399_rockchip-uboot/configs/Mele_M9_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_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/tbs2910_defconfig
/rk3399_rockchip-uboot/drivers/net/fm/memac.c
/rk3399_rockchip-uboot/drivers/net/fm/memac_phy.c
/rk3399_rockchip-uboot/drivers/net/macb.c
/rk3399_rockchip-uboot/drivers/power/Kconfig
/rk3399_rockchip-uboot/drivers/power/Makefile
/rk3399_rockchip-uboot/drivers/power/axp221.c
/rk3399_rockchip-uboot/drivers/serial/serial_sh.h
/rk3399_rockchip-uboot/drivers/spi/atmel_spi.h
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/drivers/video/cfb_console.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/afeb9260.h
/rk3399_rockchip-uboot/include/configs/alt.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/ethernut5.h
/rk3399_rockchip-uboot/include/configs/gose.h
/rk3399_rockchip-uboot/include/configs/km/km83xx-common.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/lager.h
/rk3399_rockchip-uboot/include/configs/meesc.h
/rk3399_rockchip-uboot/include/configs/mx53loco.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/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/pm9261.h
/rk3399_rockchip-uboot/include/configs/pm9263.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/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/sun4i.h
/rk3399_rockchip-uboot/include/configs/sun6i.h
/rk3399_rockchip-uboot/include/configs/sun7i.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/tbs2910.h
/rk3399_rockchip-uboot/include/configs/tny_a9260.h
/rk3399_rockchip-uboot/include/configs/usb_a9263.h
/rk3399_rockchip-uboot/include/sh_tmu.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/scripts/Makefile.spl
3ad207a213-Nov-2014 Tom Rini <trini@ti.com>

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

ecfdcee511-Nov-2014 Nikita Kiryanov <nikita@compulab.co.il>

powerpc: remove orphaned boards mcc200 and prs200

mcc200 and prs200 are old and have no maintainer. Remove the boards.

This also removes the mcc200 specific 1bpp BMP support from
common/lcd.c

Cc:

powerpc: remove orphaned boards mcc200 and prs200

mcc200 and prs200 are old and have no maintainer. Remove the boards.

This also removes the mcc200 specific 1bpp BMP support from
common/lcd.c

Cc: Wolfgang Denk <wd@denx.de>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: York Sun <yorksun@freescale.com>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>

show more ...

1...<<81828384858687888990>>...211