History log of /rk3399_rockchip-uboot/common/ (Results 3726 – 3750 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
758b399713-Oct-2010 John Rigby <john.rigby@linaro.org>

common/image.c fix length calculation in boot_relocate_fdt

boot_relocate_fdt is called on platforms with CONFIG_SYS_BOOTMAPSZ
defined to relocate the device tree blob to be inside the
boot map area

common/image.c fix length calculation in boot_relocate_fdt

boot_relocate_fdt is called on platforms with CONFIG_SYS_BOOTMAPSZ
defined to relocate the device tree blob to be inside the
boot map area between bootmap_base and bootmap_base+CONFIG_SYS_BOOTMAPSZ.

For the case where the blob needs to be relocated, space is
allocated inside the bootmap by calling lmb_alloc_base with
size passed in plus some padding:

of_len = *of_size + CONFIG_SYS_FDT_PAD;

For the case where the blob is already inside the bounds of the boot map
area, lmb_reserve is called to reserve the the space where the blob is
already residing. The calculation for this case is currently:

of_len = (CONFIG_SYS_BOOTMAPSZ + bootmap_base) - (ulong)fdt_blob;

This is wrong because it reserves all the space in the boot map area
from the blob to the end ignoring completely the actual size. The
worst case is where the blob is at the beginning and the entire boot map
area get reserved. Fix this by changing the length calculation to this:

of_len = *of_size + CONFIG_SYS_FDT_PAD;

This bug has likely never manifested itself because bootm has never
been called with the fdt blob already in the bootmap area. In my
testing on an OMAP3 beagle board I initially worked around the bug
by simply moving the initial location of the fdt blob. I have tested
with the new calculation with the fdt blob both inside and outside
the boot map area.

Signed-off-by: John Rigby <john.rigby@linaro.org>

show more ...

1ba91ba214-Oct-2010 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>

dlmalloc.c: Fix gcc alias warning

Fix these warnings:
dlmalloc.c: In function 'free':
dlmalloc.c:2507: warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules
dlmalloc.c:2507

dlmalloc.c: Fix gcc alias warning

Fix these warnings:
dlmalloc.c: In function 'free':
dlmalloc.c:2507: warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules
dlmalloc.c:2507: warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules
dlmalloc.c:2507: warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules

Some page(http://blog.worldofcoding.com/2010/02/solving-gcc-44-strict-aliasing-problems.html)
suggests adding __attribute__((__may_alias__)). Doing so makes the warnings go away.

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Acked-by: Mike Frysinger <vapier@gentoo.org>

show more ...


/rk3399_rockchip-uboot/CREDITS
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/at91/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/at91rm9200/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm925t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/lh7a40x/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/s3c44b0/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/i386/lib/board.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5227x/start.S
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf52x2/start.S
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/start.S
/rk3399_rockchip-uboot/arch/microblaze/cpu/start.S
/rk3399_rockchip-uboot/arch/microblaze/lib/board.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/74xx_7xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc512x/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8220/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc824x/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_512x.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/arch/sh/config.mk
/rk3399_rockchip-uboot/arch/sh/lib/board.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/Makefile
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/prom.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon2/start.S
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/Makefile
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/prom.c
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/start.S
/rk3399_rockchip-uboot/arch/sparc/include/asm/asmmacro.h
/rk3399_rockchip-uboot/board/BuS/EB+MCF-EV123/EB+MCF-EV123.c
/rk3399_rockchip-uboot/board/BuS/EB+MCF-EV123/config.mk
/rk3399_rockchip-uboot/board/BuS/EB+MCF-EV123/textbase.mk
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/config.mk
/rk3399_rockchip-uboot/board/LaCie/edminiv2/config.mk
/rk3399_rockchip-uboot/board/Marvell/guruplug/config.mk
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/config.mk
/rk3399_rockchip-uboot/board/Marvell/openrd_base/config.mk
/rk3399_rockchip-uboot/board/Marvell/rd6281a/config.mk
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/config.mk
/rk3399_rockchip-uboot/board/actux1/config.mk
/rk3399_rockchip-uboot/board/actux2/config.mk
/rk3399_rockchip-uboot/board/actux3/config.mk
/rk3399_rockchip-uboot/board/actux4/config.mk
/rk3399_rockchip-uboot/board/afeb9260/config.mk
/rk3399_rockchip-uboot/board/altera/nios2-generic/config.mk
/rk3399_rockchip-uboot/board/amcc/acadia/config.mk
/rk3399_rockchip-uboot/board/amcc/bamboo/config.mk
/rk3399_rockchip-uboot/board/amcc/bluestone/config.mk
/rk3399_rockchip-uboot/board/amcc/canyonlands/config.mk
/rk3399_rockchip-uboot/board/amcc/ebony/config.mk
/rk3399_rockchip-uboot/board/amcc/katmai/config.mk
/rk3399_rockchip-uboot/board/amcc/kilauea/config.mk
/rk3399_rockchip-uboot/board/amcc/luan/config.mk
/rk3399_rockchip-uboot/board/amcc/ocotea/config.mk
/rk3399_rockchip-uboot/board/amcc/redwood/config.mk
/rk3399_rockchip-uboot/board/amcc/sequoia/config.mk
/rk3399_rockchip-uboot/board/amcc/taishan/config.mk
/rk3399_rockchip-uboot/board/amcc/yosemite/config.mk
/rk3399_rockchip-uboot/board/amcc/yucca/config.mk
/rk3399_rockchip-uboot/board/amirix/ap1000/config.mk
/rk3399_rockchip-uboot/board/apollon/config.mk
/rk3399_rockchip-uboot/board/apollon/lowlevel_init.S
/rk3399_rockchip-uboot/board/armadillo/config.mk
/rk3399_rockchip-uboot/board/armltd/integrator/config.mk
/rk3399_rockchip-uboot/board/armltd/versatile/config.mk
/rk3399_rockchip-uboot/board/assabet/config.mk
/rk3399_rockchip-uboot/board/astro/mcf5373l/config.mk
/rk3399_rockchip-uboot/board/atc/config.mk
/rk3399_rockchip-uboot/board/atmel/at91cap9adk/config.mk
/rk3399_rockchip-uboot/board/atmel/at91rm9200dk/config.mk
/rk3399_rockchip-uboot/board/atmel/at91rm9200ek/config.mk
/rk3399_rockchip-uboot/board/atmel/at91sam9260ek/config.mk
/rk3399_rockchip-uboot/board/atmel/at91sam9261ek/config.mk
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/config.mk
/rk3399_rockchip-uboot/board/atmel/at91sam9m10g45ek/config.mk
/rk3399_rockchip-uboot/board/atmel/at91sam9rlek/config.mk
/rk3399_rockchip-uboot/board/atmel/atngw100/config.mk
/rk3399_rockchip-uboot/board/atmel/atstk1000/config.mk
/rk3399_rockchip-uboot/board/avnet/fx12mm/config.mk
/rk3399_rockchip-uboot/board/avnet/v5fx30teval/config.mk
/rk3399_rockchip-uboot/board/bct-brettl2/config.mk
/rk3399_rockchip-uboot/board/bf518f-ezbrd/config.mk
/rk3399_rockchip-uboot/board/bf526-ezbrd/config.mk
/rk3399_rockchip-uboot/board/bf527-ad7160-eval/config.mk
/rk3399_rockchip-uboot/board/bf527-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf527-ezkit/video.c
/rk3399_rockchip-uboot/board/bf527-sdp/config.mk
/rk3399_rockchip-uboot/board/bf533-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf533-stamp/config.mk
/rk3399_rockchip-uboot/board/bf537-minotaur/config.mk
/rk3399_rockchip-uboot/board/bf537-pnav/config.mk
/rk3399_rockchip-uboot/board/bf537-srv1/config.mk
/rk3399_rockchip-uboot/board/bf537-stamp/config.mk
/rk3399_rockchip-uboot/board/bf538f-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf548-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf561-acvilon/config.mk
/rk3399_rockchip-uboot/board/bf561-ezkit/config.mk
/rk3399_rockchip-uboot/board/blackstamp/config.mk
/rk3399_rockchip-uboot/board/blackvme/config.mk
/rk3399_rockchip-uboot/board/bmw/config.mk
/rk3399_rockchip-uboot/board/calao/sbc35_a9g20/config.mk
/rk3399_rockchip-uboot/board/calao/tny_a9260/config.mk
/rk3399_rockchip-uboot/board/cerf250/config.mk
/rk3399_rockchip-uboot/board/cm-bf527/config.mk
/rk3399_rockchip-uboot/board/cm-bf533/config.mk
/rk3399_rockchip-uboot/board/cm-bf537e/config.mk
/rk3399_rockchip-uboot/board/cm-bf537u/config.mk
/rk3399_rockchip-uboot/board/cm-bf548/config.mk
/rk3399_rockchip-uboot/board/cm-bf561/config.mk
/rk3399_rockchip-uboot/board/cm4008/config.mk
/rk3399_rockchip-uboot/board/cm41xx/config.mk
/rk3399_rockchip-uboot/board/cmc_pu2/config.mk
/rk3399_rockchip-uboot/board/cmi/config.mk
/rk3399_rockchip-uboot/board/cobra5272/config.mk
/rk3399_rockchip-uboot/board/cogent/README
/rk3399_rockchip-uboot/board/cogent/config.mk
/rk3399_rockchip-uboot/board/colibri_pxa270/config.mk
/rk3399_rockchip-uboot/board/cpc45/config.mk
/rk3399_rockchip-uboot/board/cpu86/config.mk
/rk3399_rockchip-uboot/board/cpu87/config.mk
/rk3399_rockchip-uboot/board/cradle/config.mk
/rk3399_rockchip-uboot/board/csb226/config.mk
/rk3399_rockchip-uboot/board/csb226/lowlevel_init.S
/rk3399_rockchip-uboot/board/csb272/config.mk
/rk3399_rockchip-uboot/board/csb472/config.mk
/rk3399_rockchip-uboot/board/csb637/config.mk
/rk3399_rockchip-uboot/board/dave/B2/config.mk
/rk3399_rockchip-uboot/board/davedenx/qong/config.mk
/rk3399_rockchip-uboot/board/davinci/da8xxevm/config.mk
/rk3399_rockchip-uboot/board/davinci/dm355evm/config.mk
/rk3399_rockchip-uboot/board/davinci/dm355leopard/config.mk
/rk3399_rockchip-uboot/board/davinci/dm365evm/config.mk
/rk3399_rockchip-uboot/board/davinci/dm6467evm/config.mk
/rk3399_rockchip-uboot/board/davinci/dvevm/config.mk
/rk3399_rockchip-uboot/board/davinci/schmoogie/config.mk
/rk3399_rockchip-uboot/board/davinci/schmoogie/schmoogie.c
/rk3399_rockchip-uboot/board/davinci/sffsdr/config.mk
/rk3399_rockchip-uboot/board/davinci/sonata/config.mk
/rk3399_rockchip-uboot/board/dbau1x00/README
/rk3399_rockchip-uboot/board/dbau1x00/config.mk
/rk3399_rockchip-uboot/board/delta/config.mk
/rk3399_rockchip-uboot/board/dnp1110/config.mk
/rk3399_rockchip-uboot/board/eNET/config.mk
/rk3399_rockchip-uboot/board/earthlcd/favr-32-ezkit/config.mk
/rk3399_rockchip-uboot/board/edb93xx/config.mk
/rk3399_rockchip-uboot/board/ep7312/config.mk
/rk3399_rockchip-uboot/board/ep8260/config.mk
/rk3399_rockchip-uboot/board/esd/dasa_sim/config.mk
/rk3399_rockchip-uboot/board/esd/du440/config.mk
/rk3399_rockchip-uboot/board/esd/meesc/config.mk
/rk3399_rockchip-uboot/board/esd/otc570/config.mk
/rk3399_rockchip-uboot/board/esd/pmc440/config.mk
/rk3399_rockchip-uboot/board/esd/tasreg/config.mk
/rk3399_rockchip-uboot/board/espt/config.mk
/rk3399_rockchip-uboot/board/eukrea/cpu9260/config.mk
/rk3399_rockchip-uboot/board/eukrea/cpuat91/config.mk
/rk3399_rockchip-uboot/board/evb4510/config.mk
/rk3399_rockchip-uboot/board/fads/fads.h
/rk3399_rockchip-uboot/board/faraday/a320evb/config.mk
/rk3399_rockchip-uboot/board/freescale/corenet_ds/config.mk
/rk3399_rockchip-uboot/board/freescale/m5208evbe/config.mk
/rk3399_rockchip-uboot/board/freescale/m52277evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5235evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5249evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5253demo/config.mk
/rk3399_rockchip-uboot/board/freescale/m5253evbe/config.mk
/rk3399_rockchip-uboot/board/freescale/m5271evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5272c3/config.mk
/rk3399_rockchip-uboot/board/freescale/m5275evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5282evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m53017evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5329evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m5373evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m54451evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m54455evb/config.mk
/rk3399_rockchip-uboot/board/freescale/m547xevb/config.mk
/rk3399_rockchip-uboot/board/freescale/m548xevb/config.mk
/rk3399_rockchip-uboot/board/freescale/mpc5121ads/mpc5121ads.c
/rk3399_rockchip-uboot/board/freescale/mpc7448hpc2/config.mk
/rk3399_rockchip-uboot/board/freescale/mpc832xemds/pci.c
/rk3399_rockchip-uboot/board/freescale/mpc8360emds/pci.c
/rk3399_rockchip-uboot/board/freescale/mpc8360erdk/mpc8360erdk.c
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/pci.c
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/config.mk
/rk3399_rockchip-uboot/board/freescale/mpc8569mds/config.mk
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/config.mk
/rk3399_rockchip-uboot/board/freescale/mx31ads/config.mk
/rk3399_rockchip-uboot/board/freescale/mx31pdk/config.mk
/rk3399_rockchip-uboot/board/freescale/mx51evk/config.mk
/rk3399_rockchip-uboot/board/freescale/p1022ds/config.mk
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb/config.mk
/rk3399_rockchip-uboot/board/freescale/p2020ds/config.mk
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/config.mk
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/config.mk
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/config.mk
/rk3399_rockchip-uboot/board/gaisler/grsim/config.mk
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/config.mk
/rk3399_rockchip-uboot/board/gcplus/config.mk
/rk3399_rockchip-uboot/board/gdsys/gdppc440etx/config.mk
/rk3399_rockchip-uboot/board/gdsys/intip/config.mk
/rk3399_rockchip-uboot/board/genietv/config.mk
/rk3399_rockchip-uboot/board/gth2/config.mk
/rk3399_rockchip-uboot/board/hymod/config.mk
/rk3399_rockchip-uboot/board/ibf-dsp561/config.mk
/rk3399_rockchip-uboot/board/icu862/config.mk
/rk3399_rockchip-uboot/board/idmr/config.mk
/rk3399_rockchip-uboot/board/ids8247/config.mk
/rk3399_rockchip-uboot/board/impa7/config.mk
/rk3399_rockchip-uboot/board/imx31_phycore/config.mk
/rk3399_rockchip-uboot/board/incaip/config.mk
/rk3399_rockchip-uboot/board/inka4x0/config.mk
/rk3399_rockchip-uboot/board/innokom/config.mk
/rk3399_rockchip-uboot/board/innokom/lowlevel_init.S
/rk3399_rockchip-uboot/board/ip04/config.mk
/rk3399_rockchip-uboot/board/ixdp425/config.mk
/rk3399_rockchip-uboot/board/karo/tx25/config.mk
/rk3399_rockchip-uboot/board/kb9202/config.mk
/rk3399_rockchip-uboot/board/keymile/km_arm/config.mk
/rk3399_rockchip-uboot/board/korat/config.mk
/rk3399_rockchip-uboot/board/lart/config.mk
/rk3399_rockchip-uboot/board/logicpd/am3517evm/config.mk
/rk3399_rockchip-uboot/board/logicpd/imx27lite/config.mk
/rk3399_rockchip-uboot/board/logicpd/imx31_litekit/config.mk
/rk3399_rockchip-uboot/board/logicpd/zoom1/config.mk
/rk3399_rockchip-uboot/board/logicpd/zoom2/config.mk
/rk3399_rockchip-uboot/board/lpc2292sodimm/config.mk
/rk3399_rockchip-uboot/board/lpc2292sodimm/lowlevel_init.S
/rk3399_rockchip-uboot/board/lpd7a40x/config.mk
/rk3399_rockchip-uboot/board/lpd7a40x/lowlevel_init.S
/rk3399_rockchip-uboot/board/lubbock/config.mk
/rk3399_rockchip-uboot/board/lwmon5/config.mk
/rk3399_rockchip-uboot/board/m501sk/config.mk
/rk3399_rockchip-uboot/board/manroland/hmi1001/config.mk
/rk3399_rockchip-uboot/board/manroland/uc101/config.mk
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/config.mk
/rk3399_rockchip-uboot/board/micronas/vct/config.mk
/rk3399_rockchip-uboot/board/mimc/mimc200/config.mk
/rk3399_rockchip-uboot/board/miromico/hammerhead/config.mk
/rk3399_rockchip-uboot/board/ml2/config.mk
/rk3399_rockchip-uboot/board/modnet50/config.mk
/rk3399_rockchip-uboot/board/modnet50/lowlevel_init.S
/rk3399_rockchip-uboot/board/mosaixtech/icon/config.mk
/rk3399_rockchip-uboot/board/mousse/config.mk
/rk3399_rockchip-uboot/board/mp2usb/config.mk
/rk3399_rockchip-uboot/board/mpl/pati/config.mk
/rk3399_rockchip-uboot/board/mpl/vcma9/config.mk
/rk3399_rockchip-uboot/board/mpl/vcma9/lowlevel_init.S
/rk3399_rockchip-uboot/board/mpr2/config.mk
/rk3399_rockchip-uboot/board/ms7720se/config.mk
/rk3399_rockchip-uboot/board/ms7722se/config.mk
/rk3399_rockchip-uboot/board/ms7750se/config.mk
/rk3399_rockchip-uboot/board/mx1ads/config.mk
/rk3399_rockchip-uboot/board/mx1ads/lowlevel_init.S
/rk3399_rockchip-uboot/board/mx1fs2/config.mk
/rk3399_rockchip-uboot/board/netstal/hcu4/config.mk
/rk3399_rockchip-uboot/board/netstal/hcu5/config.mk
/rk3399_rockchip-uboot/board/netstal/mcu25/config.mk
/rk3399_rockchip-uboot/board/netstar/config.mk
/rk3399_rockchip-uboot/board/netstar/setup.S
/rk3399_rockchip-uboot/board/ns9750dev/config.mk
/rk3399_rockchip-uboot/board/ns9750dev/lowlevel_init.S
/rk3399_rockchip-uboot/board/overo/config.mk
/rk3399_rockchip-uboot/board/pandora/config.mk
/rk3399_rockchip-uboot/board/pb1x00/README
/rk3399_rockchip-uboot/board/pb1x00/config.mk
/rk3399_rockchip-uboot/board/pcs440ep/config.mk
/rk3399_rockchip-uboot/board/pleb2/config.mk
/rk3399_rockchip-uboot/board/pm826/config.mk
/rk3399_rockchip-uboot/board/pm828/config.mk
/rk3399_rockchip-uboot/board/ppmc7xx/config.mk
/rk3399_rockchip-uboot/board/ppmc8260/config.mk
/rk3399_rockchip-uboot/board/prodrive/alpr/config.mk
/rk3399_rockchip-uboot/board/prodrive/p3p440/config.mk
/rk3399_rockchip-uboot/board/prodrive/pdnb3/config.mk
/rk3399_rockchip-uboot/board/psyent/pci5441/config.mk
/rk3399_rockchip-uboot/board/psyent/pk1c20/config.mk
/rk3399_rockchip-uboot/board/purple/config.mk
/rk3399_rockchip-uboot/board/purple/purple.c
/rk3399_rockchip-uboot/board/pxa255_idp/config.mk
/rk3399_rockchip-uboot/board/qemu-mips/config.mk
/rk3399_rockchip-uboot/board/renesas/MigoR/config.mk
/rk3399_rockchip-uboot/board/renesas/ap325rxa/config.mk
/rk3399_rockchip-uboot/board/renesas/r2dplus/config.mk
/rk3399_rockchip-uboot/board/renesas/r7780mp/config.mk
/rk3399_rockchip-uboot/board/renesas/rsk7203/config.mk
/rk3399_rockchip-uboot/board/renesas/sh7763rdp/config.mk
/rk3399_rockchip-uboot/board/renesas/sh7785lcr/config.mk
/rk3399_rockchip-uboot/board/ronetix/pm9261/config.mk
/rk3399_rockchip-uboot/board/ronetix/pm9263/config.mk
/rk3399_rockchip-uboot/board/ronetix/pm9g45/config.mk
/rk3399_rockchip-uboot/board/rsdproto/config.mk
/rk3399_rockchip-uboot/board/samsung/goni/config.mk
/rk3399_rockchip-uboot/board/samsung/goni/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdk2400/config.mk
/rk3399_rockchip-uboot/board/samsung/smdk2400/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdk2410/config.mk
/rk3399_rockchip-uboot/board/samsung/smdk2410/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdk6400/config.mk
/rk3399_rockchip-uboot/board/samsung/smdk6400/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdkc100/config.mk
/rk3399_rockchip-uboot/board/samsung/smdkc100/lowlevel_init.S
/rk3399_rockchip-uboot/board/sandburst/karef/config.mk
/rk3399_rockchip-uboot/board/sandburst/metrobox/config.mk
/rk3399_rockchip-uboot/board/sbc2410x/config.mk
/rk3399_rockchip-uboot/board/sbc2410x/lowlevel_init.S
/rk3399_rockchip-uboot/board/scb9328/config.mk
/rk3399_rockchip-uboot/board/shannon/config.mk
/rk3399_rockchip-uboot/board/sheldon/simpc8313/config.mk
/rk3399_rockchip-uboot/board/siemens/SCM/config.mk
/rk3399_rockchip-uboot/board/siemens/SMN42/config.mk
/rk3399_rockchip-uboot/board/siemens/SMN42/lowlevel_init.S
/rk3399_rockchip-uboot/board/spear/spear300/config.mk
/rk3399_rockchip-uboot/board/spear/spear310/config.mk
/rk3399_rockchip-uboot/board/spear/spear320/config.mk
/rk3399_rockchip-uboot/board/spear/spear600/config.mk
/rk3399_rockchip-uboot/board/st/nhk8815/config.mk
/rk3399_rockchip-uboot/board/sx1/config.mk
/rk3399_rockchip-uboot/board/sx1/lowlevel_init.S
/rk3399_rockchip-uboot/board/syteco/jadecpu/config.mk
/rk3399_rockchip-uboot/board/t3corp/config.mk
/rk3399_rockchip-uboot/board/tb0229/config.mk
/rk3399_rockchip-uboot/board/tcm-bf518/config.mk
/rk3399_rockchip-uboot/board/tcm-bf537/config.mk
/rk3399_rockchip-uboot/board/ti/beagle/config.mk
/rk3399_rockchip-uboot/board/ti/evm/config.mk
/rk3399_rockchip-uboot/board/ti/omap1510inn/config.mk
/rk3399_rockchip-uboot/board/ti/omap1510inn/lowlevel_init.S
/rk3399_rockchip-uboot/board/ti/omap1610inn/config.mk
/rk3399_rockchip-uboot/board/ti/omap1610inn/lowlevel_init.S
/rk3399_rockchip-uboot/board/ti/omap2420h4/config.mk
/rk3399_rockchip-uboot/board/ti/omap2420h4/lowlevel_init.S
/rk3399_rockchip-uboot/board/ti/omap5912osk/config.mk
/rk3399_rockchip-uboot/board/ti/omap5912osk/lowlevel_init.S
/rk3399_rockchip-uboot/board/ti/omap730p2/config.mk
/rk3399_rockchip-uboot/board/ti/omap730p2/lowlevel_init.S
/rk3399_rockchip-uboot/board/ti/panda/config.mk
/rk3399_rockchip-uboot/board/ti/sdp3430/config.mk
/rk3399_rockchip-uboot/board/ti/sdp4430/config.mk
/rk3399_rockchip-uboot/board/ti/tnetv107xevm/config.mk
/rk3399_rockchip-uboot/board/timll/devkit8000/config.mk
/rk3399_rockchip-uboot/board/tqc/tqm8260/config.mk
/rk3399_rockchip-uboot/board/tqc/tqm8272/config.mk
/rk3399_rockchip-uboot/board/trab/config.mk
/rk3399_rockchip-uboot/board/trab/lowlevel_init.S
/rk3399_rockchip-uboot/board/trizepsiv/config.mk
/rk3399_rockchip-uboot/board/voiceblue/config.mk
/rk3399_rockchip-uboot/board/voiceblue/setup.S
/rk3399_rockchip-uboot/board/vpac270/config.mk
/rk3399_rockchip-uboot/board/wepep250/config.mk
/rk3399_rockchip-uboot/board/westel/amx860/config.mk
/rk3399_rockchip-uboot/board/xaeniax/config.mk
/rk3399_rockchip-uboot/board/xes/xpedite1000/config.mk
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/config.mk
/rk3399_rockchip-uboot/board/xilinx/ml507/config.mk
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/config.mk
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/u-boot-ram.lds
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/u-boot-rom.lds
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/config.mk
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/u-boot-ram.lds
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/u-boot-rom.lds
/rk3399_rockchip-uboot/board/xm250/config.mk
/rk3399_rockchip-uboot/board/xsengine/config.mk
/rk3399_rockchip-uboot/board/zipitz2/config.mk
/rk3399_rockchip-uboot/board/zylonite/config.mk
/rk3399_rockchip-uboot/boards.cfg
dlmalloc.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/doc/README.ARM-memory-map
/rk3399_rockchip-uboot/doc/README.COBRA5272
/rk3399_rockchip-uboot/doc/README.arm-relocation
/rk3399_rockchip-uboot/doc/README.korat
/rk3399_rockchip-uboot/doc/README.m68k
/rk3399_rockchip-uboot/doc/README.phytec.pcm030
/rk3399_rockchip-uboot/drivers/fpga/fpga.c
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-fsl.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mpc512x.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci.h
/rk3399_rockchip-uboot/include/configs/A3000.h
/rk3399_rockchip-uboot/include/configs/ADCIOP.h
/rk3399_rockchip-uboot/include/configs/ADS860.h
/rk3399_rockchip-uboot/include/configs/AMX860.h
/rk3399_rockchip-uboot/include/configs/AP1000.h
/rk3399_rockchip-uboot/include/configs/APC405.h
/rk3399_rockchip-uboot/include/configs/AR405.h
/rk3399_rockchip-uboot/include/configs/ASH405.h
/rk3399_rockchip-uboot/include/configs/ATUM8548.h
/rk3399_rockchip-uboot/include/configs/Adder.h
/rk3399_rockchip-uboot/include/configs/Alaska8220.h
/rk3399_rockchip-uboot/include/configs/BAB7xx.h
/rk3399_rockchip-uboot/include/configs/BC3450.h
/rk3399_rockchip-uboot/include/configs/BMW.h
/rk3399_rockchip-uboot/include/configs/CANBT.h
/rk3399_rockchip-uboot/include/configs/CATcenter.h
/rk3399_rockchip-uboot/include/configs/CMS700.h
/rk3399_rockchip-uboot/include/configs/CPC45.h
/rk3399_rockchip-uboot/include/configs/CPCI2DP.h
/rk3399_rockchip-uboot/include/configs/CPCI405.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/CPCI405AB.h
/rk3399_rockchip-uboot/include/configs/CPCI405DT.h
/rk3399_rockchip-uboot/include/configs/CPCI750.h
/rk3399_rockchip-uboot/include/configs/CPCIISER4.h
/rk3399_rockchip-uboot/include/configs/CPU86.h
/rk3399_rockchip-uboot/include/configs/CPU87.h
/rk3399_rockchip-uboot/include/configs/CRAYL1.h
/rk3399_rockchip-uboot/include/configs/CU824.h
/rk3399_rockchip-uboot/include/configs/DASA_SIM.h
/rk3399_rockchip-uboot/include/configs/DB64360.h
/rk3399_rockchip-uboot/include/configs/DB64460.h
/rk3399_rockchip-uboot/include/configs/DP405.h
/rk3399_rockchip-uboot/include/configs/DU405.h
/rk3399_rockchip-uboot/include/configs/DU440.h
/rk3399_rockchip-uboot/include/configs/EB+MCF-EV123.h
/rk3399_rockchip-uboot/include/configs/ELPPC.h
/rk3399_rockchip-uboot/include/configs/ELPT860.h
/rk3399_rockchip-uboot/include/configs/EP88x.h
/rk3399_rockchip-uboot/include/configs/ERIC.h
/rk3399_rockchip-uboot/include/configs/ESTEEM192E.h
/rk3399_rockchip-uboot/include/configs/ETX094.h
/rk3399_rockchip-uboot/include/configs/EVB64260.h
/rk3399_rockchip-uboot/include/configs/EXBITGEN.h
/rk3399_rockchip-uboot/include/configs/FADS823.h
/rk3399_rockchip-uboot/include/configs/FADS850SAR.h
/rk3399_rockchip-uboot/include/configs/FADS860T.h
/rk3399_rockchip-uboot/include/configs/FLAGADM.h
/rk3399_rockchip-uboot/include/configs/FPS850L.h
/rk3399_rockchip-uboot/include/configs/FPS860L.h
/rk3399_rockchip-uboot/include/configs/G2000.h
/rk3399_rockchip-uboot/include/configs/GEN860T.h
/rk3399_rockchip-uboot/include/configs/GENIETV.h
/rk3399_rockchip-uboot/include/configs/HH405.h
/rk3399_rockchip-uboot/include/configs/HIDDEN_DRAGON.h
/rk3399_rockchip-uboot/include/configs/HUB405.h
/rk3399_rockchip-uboot/include/configs/IAD210.h
/rk3399_rockchip-uboot/include/configs/ICU862.h
/rk3399_rockchip-uboot/include/configs/IDS8247.h
/rk3399_rockchip-uboot/include/configs/IP860.h
/rk3399_rockchip-uboot/include/configs/IPHASE4539.h
/rk3399_rockchip-uboot/include/configs/ISPAN.h
/rk3399_rockchip-uboot/include/configs/IVML24.h
/rk3399_rockchip-uboot/include/configs/IVMS8.h
/rk3399_rockchip-uboot/include/configs/IceCube.h
/rk3399_rockchip-uboot/include/configs/JSE.h
/rk3399_rockchip-uboot/include/configs/KAREF.h
/rk3399_rockchip-uboot/include/configs/KUP4K.h
/rk3399_rockchip-uboot/include/configs/KUP4X.h
/rk3399_rockchip-uboot/include/configs/LANTEC.h
/rk3399_rockchip-uboot/include/configs/M52277EVB.h
/rk3399_rockchip-uboot/include/configs/M5282EVB.h
/rk3399_rockchip-uboot/include/configs/M54451EVB.h
/rk3399_rockchip-uboot/include/configs/M54455EVB.h
/rk3399_rockchip-uboot/include/configs/MBX.h
/rk3399_rockchip-uboot/include/configs/MBX860T.h
/rk3399_rockchip-uboot/include/configs/METROBOX.h
/rk3399_rockchip-uboot/include/configs/MHPC.h
/rk3399_rockchip-uboot/include/configs/MIP405.h
/rk3399_rockchip-uboot/include/configs/ML2.h
/rk3399_rockchip-uboot/include/configs/MOUSSE.h
/rk3399_rockchip-uboot/include/configs/MPC8260ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8266ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/MPC8313ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8315ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8323ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC832XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349EMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349ITX.h
/rk3399_rockchip-uboot/include/configs/MPC8360EMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8360ERDK.h
/rk3399_rockchip-uboot/include/configs/MPC837XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC837XERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8540ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8540EVAL.h
/rk3399_rockchip-uboot/include/configs/MPC8541CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8544DS.h
/rk3399_rockchip-uboot/include/configs/MPC8548CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8555CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8560ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8568MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8569MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8572DS.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/MPC86xADS.h
/rk3399_rockchip-uboot/include/configs/MPC885ADS.h
/rk3399_rockchip-uboot/include/configs/MUSENKI.h
/rk3399_rockchip-uboot/include/configs/MVBC_P.h
/rk3399_rockchip-uboot/include/configs/MVBLM7.h
/rk3399_rockchip-uboot/include/configs/MVBLUE.h
/rk3399_rockchip-uboot/include/configs/MVS1.h
/rk3399_rockchip-uboot/include/configs/MVSMR.h
/rk3399_rockchip-uboot/include/configs/NC650.h
/rk3399_rockchip-uboot/include/configs/NETPHONE.h
/rk3399_rockchip-uboot/include/configs/NETTA.h
/rk3399_rockchip-uboot/include/configs/NETTA2.h
/rk3399_rockchip-uboot/include/configs/NETVIA.h
/rk3399_rockchip-uboot/include/configs/NSCU.h
/rk3399_rockchip-uboot/include/configs/NX823.h
/rk3399_rockchip-uboot/include/configs/OCRTC.h
/rk3399_rockchip-uboot/include/configs/ORSG.h
/rk3399_rockchip-uboot/include/configs/OXC.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/P1_P2_RDB.h
/rk3399_rockchip-uboot/include/configs/P2020DS.h
/rk3399_rockchip-uboot/include/configs/P3G4.h
/rk3399_rockchip-uboot/include/configs/P4080DS.h
/rk3399_rockchip-uboot/include/configs/PATI.h
/rk3399_rockchip-uboot/include/configs/PCI405.h
/rk3399_rockchip-uboot/include/configs/PCI5441.h
/rk3399_rockchip-uboot/include/configs/PCIPPC2.h
/rk3399_rockchip-uboot/include/configs/PCIPPC6.h
/rk3399_rockchip-uboot/include/configs/PIP405.h
/rk3399_rockchip-uboot/include/configs/PK1C20.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/PM520.h
/rk3399_rockchip-uboot/include/configs/PM826.h
/rk3399_rockchip-uboot/include/configs/PM828.h
/rk3399_rockchip-uboot/include/configs/PM854.h
/rk3399_rockchip-uboot/include/configs/PM856.h
/rk3399_rockchip-uboot/include/configs/PMC405.h
/rk3399_rockchip-uboot/include/configs/PMC405DE.h
/rk3399_rockchip-uboot/include/configs/PMC440.h
/rk3399_rockchip-uboot/include/configs/PN62.h
/rk3399_rockchip-uboot/include/configs/PPChameleonEVB.h
/rk3399_rockchip-uboot/include/configs/QS823.h
/rk3399_rockchip-uboot/include/configs/QS850.h
/rk3399_rockchip-uboot/include/configs/QS860T.h
/rk3399_rockchip-uboot/include/configs/R360MPI.h
/rk3399_rockchip-uboot/include/configs/RBC823.h
/rk3399_rockchip-uboot/include/configs/RPXClassic.h
/rk3399_rockchip-uboot/include/configs/RPXlite.h
/rk3399_rockchip-uboot/include/configs/RPXlite_DW.h
/rk3399_rockchip-uboot/include/configs/RPXsuper.h
/rk3399_rockchip-uboot/include/configs/RRvision.h
/rk3399_rockchip-uboot/include/configs/Rattler.h
/rk3399_rockchip-uboot/include/configs/SBC8540.h
/rk3399_rockchip-uboot/include/configs/SCM.h
/rk3399_rockchip-uboot/include/configs/SIMPC8313.h
/rk3399_rockchip-uboot/include/configs/SM850.h
/rk3399_rockchip-uboot/include/configs/SPD823TS.h
/rk3399_rockchip-uboot/include/configs/SXNI855T.h
/rk3399_rockchip-uboot/include/configs/Sandpoint8240.h
/rk3399_rockchip-uboot/include/configs/Sandpoint8245.h
/rk3399_rockchip-uboot/include/configs/TB5200.h
/rk3399_rockchip-uboot/include/configs/TK885D.h
/rk3399_rockchip-uboot/include/configs/TOP5200.h
/rk3399_rockchip-uboot/include/configs/TOP860.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/TQM8260.h
/rk3399_rockchip-uboot/include/configs/TQM8272.h
/rk3399_rockchip-uboot/include/configs/TQM834x.h
/rk3399_rockchip-uboot/include/configs/TQM850L.h
/rk3399_rockchip-uboot/include/configs/TQM850M.h
/rk3399_rockchip-uboot/include/configs/TQM855L.h
/rk3399_rockchip-uboot/include/configs/TQM855M.h
/rk3399_rockchip-uboot/include/configs/TQM85xx.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/Total5200.h
/rk3399_rockchip-uboot/include/configs/VOH405.h
/rk3399_rockchip-uboot/include/configs/VOM405.h
/rk3399_rockchip-uboot/include/configs/VoVPN-GW.h
/rk3399_rockchip-uboot/include/configs/W7OLMC.h
/rk3399_rockchip-uboot/include/configs/W7OLMG.h
/rk3399_rockchip-uboot/include/configs/WUH405.h
/rk3399_rockchip-uboot/include/configs/XPEDITE1000.h
/rk3399_rockchip-uboot/include/configs/XPEDITE5170.h
/rk3399_rockchip-uboot/include/configs/XPEDITE5200.h
/rk3399_rockchip-uboot/include/configs/XPEDITE5370.h
/rk3399_rockchip-uboot/include/configs/Yukon8220.h
/rk3399_rockchip-uboot/include/configs/ZPC1900.h
/rk3399_rockchip-uboot/include/configs/ZUMA.h
/rk3399_rockchip-uboot/include/configs/a4m072.h
/rk3399_rockchip-uboot/include/configs/acadia.h
/rk3399_rockchip-uboot/include/configs/aev.h
/rk3399_rockchip-uboot/include/configs/alpr.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/aria.h
/rk3399_rockchip-uboot/include/configs/assabet.h
/rk3399_rockchip-uboot/include/configs/astro_mcf5373l.h
/rk3399_rockchip-uboot/include/configs/atc.h
/rk3399_rockchip-uboot/include/configs/bamboo.h
/rk3399_rockchip-uboot/include/configs/barco.h
/rk3399_rockchip-uboot/include/configs/bf527-ezkit.h
/rk3399_rockchip-uboot/include/configs/bluestone.h
/rk3399_rockchip-uboot/include/configs/bubinga.h
/rk3399_rockchip-uboot/include/configs/c2mon.h
/rk3399_rockchip-uboot/include/configs/canmb.h
/rk3399_rockchip-uboot/include/configs/canyonlands.h
/rk3399_rockchip-uboot/include/configs/cm5200.h
/rk3399_rockchip-uboot/include/configs/cmi_mpc5xx.h
/rk3399_rockchip-uboot/include/configs/cobra5272.h
/rk3399_rockchip-uboot/include/configs/cogent_mpc8260.h
/rk3399_rockchip-uboot/include/configs/cogent_mpc8xx.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/cpci5200.h
/rk3399_rockchip-uboot/include/configs/csb272.h
/rk3399_rockchip-uboot/include/configs/csb472.h
/rk3399_rockchip-uboot/include/configs/davinci_sonata.h
/rk3399_rockchip-uboot/include/configs/dbau1x00.h
/rk3399_rockchip-uboot/include/configs/debris.h
/rk3399_rockchip-uboot/include/configs/digsy_mtc.h
/rk3399_rockchip-uboot/include/configs/dlvision.h
/rk3399_rockchip-uboot/include/configs/eNET.h
/rk3399_rockchip-uboot/include/configs/eXalion.h
/rk3399_rockchip-uboot/include/configs/ebony.h
/rk3399_rockchip-uboot/include/configs/edb93xx.h
/rk3399_rockchip-uboot/include/configs/ep8248.h
/rk3399_rockchip-uboot/include/configs/ep8260.h
/rk3399_rockchip-uboot/include/configs/ep82xxm.h
/rk3399_rockchip-uboot/include/configs/galaxy5200.h
/rk3399_rockchip-uboot/include/configs/gdppc440etx.h
/rk3399_rockchip-uboot/include/configs/gr_cpci_ax2000.h
/rk3399_rockchip-uboot/include/configs/gr_ep2s60.h
/rk3399_rockchip-uboot/include/configs/gr_xc3s_1500.h
/rk3399_rockchip-uboot/include/configs/grsim.h
/rk3399_rockchip-uboot/include/configs/grsim_leon2.h
/rk3399_rockchip-uboot/include/configs/gth2.h
/rk3399_rockchip-uboot/include/configs/gw8260.h
/rk3399_rockchip-uboot/include/configs/hcu4.h
/rk3399_rockchip-uboot/include/configs/hcu5.h
/rk3399_rockchip-uboot/include/configs/hermes.h
/rk3399_rockchip-uboot/include/configs/hmi1001.h
/rk3399_rockchip-uboot/include/configs/hymod.h
/rk3399_rockchip-uboot/include/configs/icon.h
/rk3399_rockchip-uboot/include/configs/incaip.h
/rk3399_rockchip-uboot/include/configs/inka4x0.h
/rk3399_rockchip-uboot/include/configs/intip.h
/rk3399_rockchip-uboot/include/configs/ipek01.h
/rk3399_rockchip-uboot/include/configs/jupiter.h
/rk3399_rockchip-uboot/include/configs/katmai.h
/rk3399_rockchip-uboot/include/configs/kilauea.h
/rk3399_rockchip-uboot/include/configs/km8xx.h
/rk3399_rockchip-uboot/include/configs/kmeter1.h
/rk3399_rockchip-uboot/include/configs/kmsupx4.h
/rk3399_rockchip-uboot/include/configs/korat.h
/rk3399_rockchip-uboot/include/configs/kvme080.h
/rk3399_rockchip-uboot/include/configs/linkstation.h
/rk3399_rockchip-uboot/include/configs/luan.h
/rk3399_rockchip-uboot/include/configs/lwmon.h
/rk3399_rockchip-uboot/include/configs/lwmon5.h
/rk3399_rockchip-uboot/include/configs/makalu.h
/rk3399_rockchip-uboot/include/configs/manroland/common.h
/rk3399_rockchip-uboot/include/configs/manroland/mpc5200-common.h
/rk3399_rockchip-uboot/include/configs/mcc200.h
/rk3399_rockchip-uboot/include/configs/mcu25.h
/rk3399_rockchip-uboot/include/configs/mecp5123.h
/rk3399_rockchip-uboot/include/configs/mecp5200.h
/rk3399_rockchip-uboot/include/configs/mgcoge.h
/rk3399_rockchip-uboot/include/configs/mgsuvd.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/motionpro.h
/rk3399_rockchip-uboot/include/configs/mpc5121ads.h
/rk3399_rockchip-uboot/include/configs/mpc7448hpc2.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/ms7750se.h
/rk3399_rockchip-uboot/include/configs/muas3001.h
/rk3399_rockchip-uboot/include/configs/mucmc52.h
/rk3399_rockchip-uboot/include/configs/munices.h
/rk3399_rockchip-uboot/include/configs/neo.h
/rk3399_rockchip-uboot/include/configs/netstal-common.h
/rk3399_rockchip-uboot/include/configs/o2dnt.h
/rk3399_rockchip-uboot/include/configs/ocotea.h
/rk3399_rockchip-uboot/include/configs/p3mx.h
/rk3399_rockchip-uboot/include/configs/p3p440.h
/rk3399_rockchip-uboot/include/configs/pb1x00.h
/rk3399_rockchip-uboot/include/configs/pcm030.h
/rk3399_rockchip-uboot/include/configs/pcs440ep.h
/rk3399_rockchip-uboot/include/configs/pdm360ng.h
/rk3399_rockchip-uboot/include/configs/pf5200.h
/rk3399_rockchip-uboot/include/configs/ppmc7xx.h
/rk3399_rockchip-uboot/include/configs/ppmc8260.h
/rk3399_rockchip-uboot/include/configs/purple.h
/rk3399_rockchip-uboot/include/configs/qemu-mips.h
/rk3399_rockchip-uboot/include/configs/quad100hd.h
/rk3399_rockchip-uboot/include/configs/quantum.h
/rk3399_rockchip-uboot/include/configs/r2dplus.h
/rk3399_rockchip-uboot/include/configs/r7780mp.h
/rk3399_rockchip-uboot/include/configs/redwood.h
/rk3399_rockchip-uboot/include/configs/rmu.h
/rk3399_rockchip-uboot/include/configs/rsdproto.h
/rk3399_rockchip-uboot/include/configs/sacsng.h
/rk3399_rockchip-uboot/include/configs/sbc405.h
/rk3399_rockchip-uboot/include/configs/sbc8240.h
/rk3399_rockchip-uboot/include/configs/sbc8260.h
/rk3399_rockchip-uboot/include/configs/sbc8349.h
/rk3399_rockchip-uboot/include/configs/sbc8548.h
/rk3399_rockchip-uboot/include/configs/sbc8560.h
/rk3399_rockchip-uboot/include/configs/sbc8641d.h
/rk3399_rockchip-uboot/include/configs/sc3.h
/rk3399_rockchip-uboot/include/configs/sequoia.h
/rk3399_rockchip-uboot/include/configs/smdk6400.h
/rk3399_rockchip-uboot/include/configs/smdkc100.h
/rk3399_rockchip-uboot/include/configs/socrates.h
/rk3399_rockchip-uboot/include/configs/sorcery.h
/rk3399_rockchip-uboot/include/configs/spc1920.h
/rk3399_rockchip-uboot/include/configs/spear3xx.h
/rk3399_rockchip-uboot/include/configs/spieval.h
/rk3399_rockchip-uboot/include/configs/stxgp3.h
/rk3399_rockchip-uboot/include/configs/stxssa.h
/rk3399_rockchip-uboot/include/configs/stxxtc.h
/rk3399_rockchip-uboot/include/configs/svm_sc8xx.h
/rk3399_rockchip-uboot/include/configs/t3corp.h
/rk3399_rockchip-uboot/include/configs/taihu.h
/rk3399_rockchip-uboot/include/configs/taishan.h
/rk3399_rockchip-uboot/include/configs/tb0229.h
/rk3399_rockchip-uboot/include/configs/tnetv107x_evm.h
/rk3399_rockchip-uboot/include/configs/uc100.h
/rk3399_rockchip-uboot/include/configs/uc101.h
/rk3399_rockchip-uboot/include/configs/utx8245.h
/rk3399_rockchip-uboot/include/configs/v37.h
/rk3399_rockchip-uboot/include/configs/v38b.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/ve8313.h
/rk3399_rockchip-uboot/include/configs/virtlab2.h
/rk3399_rockchip-uboot/include/configs/vme8349.h
/rk3399_rockchip-uboot/include/configs/walnut.h
/rk3399_rockchip-uboot/include/configs/xilinx-ppc.h
/rk3399_rockchip-uboot/include/configs/yosemite.h
/rk3399_rockchip-uboot/include/configs/yucca.h
/rk3399_rockchip-uboot/include/configs/zeus.h
/rk3399_rockchip-uboot/include/usb/ehci-fsl.h
/rk3399_rockchip-uboot/mkconfig
/rk3399_rockchip-uboot/nand_spl/board/amcc/acadia/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/acadia/config.mk
/rk3399_rockchip-uboot/nand_spl/board/amcc/bamboo/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/bamboo/config.mk
/rk3399_rockchip-uboot/nand_spl/board/amcc/canyonlands/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/canyonlands/config.mk
/rk3399_rockchip-uboot/nand_spl/board/amcc/kilauea/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/kilauea/config.mk
/rk3399_rockchip-uboot/nand_spl/board/amcc/sequoia/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/sequoia/config.mk
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8313erdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8315erdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8536ds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8569mds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mx31pdk/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/p1_p2_rdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/karo/tx25/Makefile
/rk3399_rockchip-uboot/nand_spl/board/samsung/smdk6400/Makefile
/rk3399_rockchip-uboot/nand_spl/board/samsung/smdk6400/config.mk
/rk3399_rockchip-uboot/nand_spl/board/sheldon/simpc8313/Makefile
/rk3399_rockchip-uboot/nand_spl/nand_boot.c
/rk3399_rockchip-uboot/nand_spl/nand_boot_fsl_nfc.c
/rk3399_rockchip-uboot/onenand_ipl/board/apollon/Makefile
/rk3399_rockchip-uboot/onenand_ipl/board/apollon/config.mk
/rk3399_rockchip-uboot/onenand_ipl/board/apollon/low_levelinit.S
/rk3399_rockchip-uboot/onenand_ipl/board/vpac270/Makefile
/rk3399_rockchip-uboot/onenand_ipl/board/vpac270/config.mk
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/scripts/define2mk.sed
16e0099213-Oct-2010 Scott Wood <scottwood@freescale.com>

Fix warning in nand unlock command

Commit ea533c260a801c4e51f92f75165cebe6d7b01e35 changed
arg_off_size to take a pointer to a device index, rather than
to the device itself. When updating callers,

Fix warning in nand unlock command

Commit ea533c260a801c4e51f92f75165cebe6d7b01e35 changed
arg_off_size to take a pointer to a device index, rather than
to the device itself. When updating callers, the nand unlock
code was missed.

Signed-off-by: Scott Wood <scottwood@freescale.com>

show more ...

cacc342d17-Oct-2010 Wolfgang Denk <wd@denx.de>

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


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/mx31/generic.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/sdrc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/board.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/mx31-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/mem.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/mmc_host_def.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap4/mmc_host_def.h
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/initcode.c
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf518/anomaly.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf527/anomaly.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf533/anomaly.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf537/anomaly.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf538/anomaly.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf548/anomaly.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf561/anomaly.h
/rk3399_rockchip-uboot/board/davedenx/qong/Makefile
/rk3399_rockchip-uboot/board/davedenx/qong/fpga.c
/rk3399_rockchip-uboot/board/davedenx/qong/qong.c
/rk3399_rockchip-uboot/board/davedenx/qong/qong_fpga.h
/rk3399_rockchip-uboot/board/davinci/da8xxevm/da850evm.c
/rk3399_rockchip-uboot/board/freescale/mx51evk/config.mk
/rk3399_rockchip-uboot/board/isee/igep0020/Makefile
/rk3399_rockchip-uboot/board/isee/igep0020/config.mk
/rk3399_rockchip-uboot/board/isee/igep0020/igep0020.c
/rk3399_rockchip-uboot/board/isee/igep0020/igep0020.h
/rk3399_rockchip-uboot/board/isee/igep0030/Makefile
/rk3399_rockchip-uboot/board/isee/igep0030/config.mk
/rk3399_rockchip-uboot/board/isee/igep0030/igep0030.c
/rk3399_rockchip-uboot/board/isee/igep0030/igep0030.h
/rk3399_rockchip-uboot/board/overo/config.mk
/rk3399_rockchip-uboot/board/overo/overo.c
/rk3399_rockchip-uboot/board/ti/beagle/beagle.c
/rk3399_rockchip-uboot/board/ti/panda/config.mk
/rk3399_rockchip-uboot/board/ti/panda/panda.c
/rk3399_rockchip-uboot/board/ti/sdp4430/config.mk
/rk3399_rockchip-uboot/board/ti/sdp4430/sdp.c
/rk3399_rockchip-uboot/boards.cfg
env_mmc.c
/rk3399_rockchip-uboot/drivers/fpga/Makefile
/rk3399_rockchip-uboot/drivers/fpga/fpga.c
/rk3399_rockchip-uboot/drivers/fpga/ivm_core.c
/rk3399_rockchip-uboot/drivers/fpga/lattice.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/omap_hsmmc.c
/rk3399_rockchip-uboot/drivers/mtd/nand/davinci_nand.c
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mxc.c
/rk3399_rockchip-uboot/drivers/video/mx3fb.c
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/igep0020.h
/rk3399_rockchip-uboot/include/configs/igep0030.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap4_panda.h
/rk3399_rockchip-uboot/include/configs/omap4_sdp4430.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/fpga.h
/rk3399_rockchip-uboot/include/lattice.h
e79f483913-Oct-2010 Lei Wen <leiwen@marvell.com>

env_mmc: fix cannot save env issue

The env change its implementation after this log, while env mmc
didn't change it immediately, which cause issue. Follow to the
new style to fix it.

commit ea882ba

env_mmc: fix cannot save env issue

The env change its implementation after this log, while env mmc
didn't change it immediately, which cause issue. Follow to the
new style to fix it.

commit ea882baf9c17cd142c99e3ff640d3ab01daa5cec
Author: Wolfgang Denk <wd@denx.de>
Date: Sun Jun 20 23:33:59 2010 +0200

New implementation for internal handling of environment variables.

Signed-off-by: Lei Wen <leiwen@marvell.com>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm925t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/dram.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/syslib.c
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/lh7a40x/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/s3c44b0/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/sysctrl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/systimer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/wdt.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_emac.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/mx31-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/mx31.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx51/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx51/mx51_pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx51/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap24xx/omap2420.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-orion5x/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/sizes.h
/rk3399_rockchip-uboot/arch/powerpc/lib/Makefile
/rk3399_rockchip-uboot/board/Marvell/guruplug/guruplug.c
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c
/rk3399_rockchip-uboot/board/Marvell/openrd_base/openrd_base.c
/rk3399_rockchip-uboot/board/Marvell/rd6281a/rd6281a.c
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/sheevaplug.c
/rk3399_rockchip-uboot/board/armltd/integrator/split_by_variant.sh
/rk3399_rockchip-uboot/board/armltd/vexpress/Makefile
/rk3399_rockchip-uboot/board/armltd/vexpress/ca9x4_ct_vxp.c
/rk3399_rockchip-uboot/board/armltd/vexpress/config.mk
/rk3399_rockchip-uboot/board/armltd/vexpress/u-boot.lds
/rk3399_rockchip-uboot/board/davedenx/qong/qong.c
/rk3399_rockchip-uboot/board/freescale/mpc5121ads/mpc5121ads.c
/rk3399_rockchip-uboot/board/freescale/mx51evk/mx51evk.c
/rk3399_rockchip-uboot/board/ttcontrol/vision2/Makefile
/rk3399_rockchip-uboot/board/ttcontrol/vision2/config.mk
/rk3399_rockchip-uboot/board/ttcontrol/vision2/imximage_hynix.cfg
/rk3399_rockchip-uboot/board/ttcontrol/vision2/vision2.c
/rk3399_rockchip-uboot/boards.cfg
env_mmc.c
/rk3399_rockchip-uboot/drivers/block/mvsata_ide.c
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/mxc_gpio.c
/rk3399_rockchip-uboot/drivers/misc/fsl_pmic.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/net/at91_emac.c
/rk3399_rockchip-uboot/drivers/serial/atmel_usart.c
/rk3399_rockchip-uboot/drivers/serial/atmel_usart.h
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_mxc.c
/rk3399_rockchip-uboot/drivers/serial/serial_pl01x.c
/rk3399_rockchip-uboot/drivers/spi/mxc_spi.c
/rk3399_rockchip-uboot/include/configs/Alaska8220.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/XPEDITE5170.h
/rk3399_rockchip-uboot/include/configs/Yukon8220.h
/rk3399_rockchip-uboot/include/configs/ca9x4_ct_vxp.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/guruplug.h
/rk3399_rockchip-uboot/include/configs/h2_p2_dbg_board.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/keymile-common.h
/rk3399_rockchip-uboot/include/configs/km_arm.h
/rk3399_rockchip-uboot/include/configs/mv-common.h
/rk3399_rockchip-uboot/include/configs/mv88f6281gtw_ge.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx31pdk.h
/rk3399_rockchip-uboot/include/configs/mx51evk.h
/rk3399_rockchip-uboot/include/configs/omap1510.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap730.h
/rk3399_rockchip-uboot/include/configs/openrd_base.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/configs/rd6281a.h
/rk3399_rockchip-uboot/include/configs/sbc8641d.h
/rk3399_rockchip-uboot/include/configs/sheevaplug.h
/rk3399_rockchip-uboot/include/configs/tx25.h
/rk3399_rockchip-uboot/include/configs/vision2.h
/rk3399_rockchip-uboot/include/mc13892.h
/rk3399_rockchip-uboot/include/mxc_gpio.h
d470a6f611-Oct-2010 Steve Sakoman <steve@sakoman.com>

env_mmc: Fix crashing bug encountered after enabling ARM relocation

The crash was occuring in env_relocate because it was being called prior
to mmc_initialize. This patch moves the MMC initializati

env_mmc: Fix crashing bug encountered after enabling ARM relocation

The crash was occuring in env_relocate because it was being called prior
to mmc_initialize. This patch moves the MMC initialization earlier in
the init process.

This patch also cleans up the env_relocate_spec code in env_mmc.c

Signed-off-by: Steve Sakoman <steve.sakoman@linaro.org>
Acked-by: Stefano Babic <sbabic@denx.de>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm925t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/dram.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/syslib.c
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/lh7a40x/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/s3c44b0/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/sysctrl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/systimer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/wdt.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_emac.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/mx31-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/mx31.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx51/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx51/mx51_pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx51/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap24xx/omap2420.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-orion5x/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/sizes.h
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/board/Marvell/guruplug/guruplug.c
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c
/rk3399_rockchip-uboot/board/Marvell/openrd_base/openrd_base.c
/rk3399_rockchip-uboot/board/Marvell/rd6281a/rd6281a.c
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/sheevaplug.c
/rk3399_rockchip-uboot/board/armltd/integrator/split_by_variant.sh
/rk3399_rockchip-uboot/board/armltd/vexpress/Makefile
/rk3399_rockchip-uboot/board/armltd/vexpress/ca9x4_ct_vxp.c
/rk3399_rockchip-uboot/board/armltd/vexpress/config.mk
/rk3399_rockchip-uboot/board/armltd/vexpress/u-boot.lds
/rk3399_rockchip-uboot/board/davedenx/qong/qong.c
/rk3399_rockchip-uboot/board/freescale/mx51evk/mx51evk.c
/rk3399_rockchip-uboot/board/ttcontrol/vision2/Makefile
/rk3399_rockchip-uboot/board/ttcontrol/vision2/config.mk
/rk3399_rockchip-uboot/board/ttcontrol/vision2/imximage_hynix.cfg
/rk3399_rockchip-uboot/board/ttcontrol/vision2/vision2.c
/rk3399_rockchip-uboot/boards.cfg
env_mmc.c
/rk3399_rockchip-uboot/drivers/block/mvsata_ide.c
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/mxc_gpio.c
/rk3399_rockchip-uboot/drivers/misc/fsl_pmic.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/net/at91_emac.c
/rk3399_rockchip-uboot/drivers/serial/atmel_usart.c
/rk3399_rockchip-uboot/drivers/serial/atmel_usart.h
/rk3399_rockchip-uboot/drivers/serial/serial_mxc.c
/rk3399_rockchip-uboot/drivers/serial/serial_pl01x.c
/rk3399_rockchip-uboot/drivers/spi/mxc_spi.c
/rk3399_rockchip-uboot/include/configs/ca9x4_ct_vxp.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/guruplug.h
/rk3399_rockchip-uboot/include/configs/h2_p2_dbg_board.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/keymile-common.h
/rk3399_rockchip-uboot/include/configs/km_arm.h
/rk3399_rockchip-uboot/include/configs/mv-common.h
/rk3399_rockchip-uboot/include/configs/mv88f6281gtw_ge.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx31pdk.h
/rk3399_rockchip-uboot/include/configs/mx51evk.h
/rk3399_rockchip-uboot/include/configs/omap1510.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap730.h
/rk3399_rockchip-uboot/include/configs/openrd_base.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/configs/rd6281a.h
/rk3399_rockchip-uboot/include/configs/sheevaplug.h
/rk3399_rockchip-uboot/include/configs/tx25.h
/rk3399_rockchip-uboot/include/configs/vision2.h
/rk3399_rockchip-uboot/include/mc13892.h
/rk3399_rockchip-uboot/include/mxc_gpio.h
9de9932613-Oct-2010 Wolfgang Denk <wd@denx.de>

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

cb2707af13-Oct-2010 Matthew McClintock <msm@freescale.com>

common/fdt_support.c: fix compile error

Fix build error introduced in beca5a5f5bf0d88125580e5e9c1730469cd50ab8

common/libcommon.a(fdt_support.o): In function `fdt_add_edid':
/local/hudson/jobs/mirr

common/fdt_support.c: fix compile error

Fix build error introduced in beca5a5f5bf0d88125580e5e9c1730469cd50ab8

common/libcommon.a(fdt_support.o): In function `fdt_add_edid':
/local/hudson/jobs/mirrors-u-boot.git/workspace/common/fdt_support.c:1205: undefined reference to `fdt_increase_size'
make: *** [u-boot] Error 1

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>

show more ...

99e9ed1f05-Oct-2010 Ludovic Courtès <ludo@gnu.org>

usb: Add support for multiple-LUN mass storage devices

This patch changes `usb_stor_scan' to scan all the LUNs of each mass
storage device. It also fixes the various commands to correctly set
the L

usb: Add support for multiple-LUN mass storage devices

This patch changes `usb_stor_scan' to scan all the LUNs of each mass
storage device. It also fixes the various commands to correctly set
the LUN field.

Notably, it allows each LUN of GuruPlug's microSD card reader to be
accessed.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Acked-by: Prafulla Wadaskar <prafulla@marvell.com>

show more ...

076f1be829-Sep-2010 Brent Darley <bdarley@xes-inc.com>

TSI148: Fix argument parsing

This patch does 2 things:
- Fix the argument number assigned to the vdw (VME data width) value.
Previously, a nonexistent 7th arument was read as the vdw variable.

TSI148: Fix argument parsing

This patch does 2 things:
- Fix the argument number assigned to the vdw (VME data width) value.
Previously, a nonexistent 7th arument was read as the vdw variable.

- Reduce the size of the argument array for the tsi148 command from
8 to 7. The tsi148 command itself is argument index 0, and the
maximum number arguments passed to the command is 6, making a total
of 7 for the array.

Signed-off-by: Brent Darley <bdarley@xes-inc.com>
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>

show more ...

eaadb44e13-Sep-2010 Stefan Roese <sr@denx.de>

cp/cmp: Add WATCHDOG_RESET in copy and compare loop

On some boards with a very short watchdog timeout, the "cp" and
"cmp" commands may reset the board. This patch adds some
watchdog resets inside th

cp/cmp: Add WATCHDOG_RESET in copy and compare loop

On some boards with a very short watchdog timeout, the "cp" and
"cmp" commands may reset the board. This patch adds some
watchdog resets inside the loops. Otherwise for example the lwmon5
board will reset while doing something like this:

=> cp.b fc000000 1000000 100000

Signed-off-by: Stefan Roese <sr@denx.de>

show more ...

7f0d241d09-Sep-2010 Ilya Yanok <yanok@emcraft.com>

led_display: split led display support into generic and hw-dependent parts

Split the display command into generic interface and hardware-specific
realization for PDSP188x LED display found on hmi100

led_display: split led display support into generic and hw-dependent parts

Split the display command into generic interface and hardware-specific
realization for PDSP188x LED display found on hmi1001 and manroland
boards. Simple interface for LED displays is defined in
include/led-display.h and described in doc/README.LED_display.
Driver-specific implementation was moved into drivers/misc/pdsp188x.c
file (enabled with CONFIG_PDSP188x set).

Signed-off-by: Ilya Yanok <yanok@emcraft.com>

show more ...

d259079d10-Oct-2010 Lei Wen <leiwen@marvell.com>

env: don't set to default env twice when use CONFIG_ENV_IS_NOWHERE

When use the CONFIG_ENV_IS_NOWHERE, I met such issue:

DRAM: 256 MiB
Using default environment

*** Warning - bad CRC, using de

env: don't set to default env twice when use CONFIG_ENV_IS_NOWHERE

When use the CONFIG_ENV_IS_NOWHERE, I met such issue:

DRAM: 256 MiB
Using default environment

*** Warning - bad CRC, using default environment

Signed-off-by: Lei Wen <leiwen@marvell.com>

show more ...

beca5a5f18-Aug-2010 Anatolij Gustschin <agust@denx.de>

fdt_support: support adding EDID property to FDT display nodes

Boards can pass display timing info for drivers using EDID
block. Provide common function to add board specific EDID
data to the device

fdt_support: support adding EDID property to FDT display nodes

Boards can pass display timing info for drivers using EDID
block. Provide common function to add board specific EDID
data to the device tree. Subsequent patch makes use of this
functionality.

Detailed timing descriptor data from EDID is used for
programming the display controller. This is currently
implemented on the Linux side by the fsl-diu-fb frame
buffer driver and it is documented there in
Documentation/powerpc/dts-bindings/fsl/diu.txt.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
Acked-by: Detlev Zundel <dzu@denx.de>
Cc: Gerald Van Baren <vanbaren@cideas.com>

show more ...

c000808b11-Aug-2010 Alexander Stein <alexander.stein@systec-electronic.com>

CONFIG_CMD_JFFS2 is not necessary to use mtdparts on erase & protect on/off

The include <jffs2/jffs2.h> is still necessary though.

Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.

CONFIG_CMD_JFFS2 is not necessary to use mtdparts on erase & protect on/off

The include <jffs2/jffs2.h> is still necessary though.

Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
Acked-by: Stefan Roese <sr@denx.de>

show more ...

0ee8746a12-Oct-2010 Wolfgang Denk <wd@denx.de>

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

bf6cb24730-Sep-2010 Peter Tyser <ptyser@xes-inc.com>

rarp: Condtionally compile rarp support

Most people don't use the 'rarpboot' command, so only enable it when
CONFIG_CMD_RARP is defined.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Signed-off-b

rarp: Condtionally compile rarp support

Most people don't use the 'rarpboot' command, so only enable it when
CONFIG_CMD_RARP is defined.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>

show more ...

36650ca909-Sep-2010 Scott Wood <scottwood@freescale.com>

Followup fixes on the mtdparts spread patchset

Consolidate some code in mtd_get_len_incl_bad(), and fix a condition
where a valid partition could be reported as truncated if it has a
good block at t

Followup fixes on the mtdparts spread patchset

Consolidate some code in mtd_get_len_incl_bad(), and fix a condition
where a valid partition could be reported as truncated if it has a
good block at the end of the device (unlikely, since the BBT is usually
there).

Fix mid-block declarations in net_part_size().

Signed-off-by: Scott Wood <scottwood@freescale.com>
Reviewed-by: Ben Gardiner <bengardiner@nanometrics.ca>

show more ...

59a50d2d31-Aug-2010 Ben Gardiner <bengardiner@nanometrics.ca>

mtdparts: new add.spread: add part skipping bad blocks

This patch adds a new 'mtdparts add' variant: add.spread. This command variant
adds a new partition to the mtdparts variable but also increases

mtdparts: new add.spread: add part skipping bad blocks

This patch adds a new 'mtdparts add' variant: add.spread. This command variant
adds a new partition to the mtdparts variable but also increases the partitions
size by skipping bad blocks and aggregating any additional bad blocks found at
the end of the partition.

Signed-off-by: Ben Gardiner <bengardiner@nanometrics.ca>
CC: Wolfgang Denk <wd@denx.de>
CC: Scott Wood <scottwood@freescale.com>

show more ...

ca75b20e31-Aug-2010 Ben Gardiner <bengardiner@nanometrics.ca>

mtdparts: add new sub-command "spread"

This patch introduces the 'spread' sub-command of the mtdparts command.
This command will modify the existing mtdparts variable by increasing
the size of the p

mtdparts: add new sub-command "spread"

This patch introduces the 'spread' sub-command of the mtdparts command.
This command will modify the existing mtdparts variable by increasing
the size of the partitions such that 1) each partition's net size is at
least as large as the size specified in the mtdparts variable and 2)
each partition starts on a good block.

The new subcommand is implemented by iterating over the mtd device
partitions and collecting a bad blocks count in each -- including any
trailing bad blocks -- and then modifying that partitions's part_info
structure and checking if the modification affects the next partition.

This patch is based on a port of the 'dynnamic partitions' feature by
Harald Welte <laforge@gnumonks.org>; ported from commit
e05835df019027391f58f9d8ce5e1257d6924798 of
git://git.openmoko.org/u-boot.git. Whereas Harald's feature used a
compile-time array to specify partitions, the feature introduced by
this patch uses the mtdparts environment variable.

Signed-off-by: Ben Gardiner <bengardiner@nanometrics.ca>
Signed-off-by: Harald Welte <laforge@gnumonks.org>
CC: Wolfgang Denk <wd@denx.de>
CC: Scott Wood <scottwood@freescale.com>

show more ...

04ac380231-Aug-2010 Ben Gardiner <bengardiner@nanometrics.ca>

mtdparts: show net size in mtdparts list

This patch adds an additional column to the output of list_partitions. The
additional column will contain the net size and a '(!)' beside it if the net
size

mtdparts: show net size in mtdparts list

This patch adds an additional column to the output of list_partitions. The
additional column will contain the net size and a '(!)' beside it if the net
size is not equal to the partition size.

Signed-off-by: Ben Gardiner <bengardiner@nanometrics.ca>
CC: Wolfgang Denk <wd@denx.de>
CC: Scott Wood <scottwood@freescale.com>

show more ...

0a026d3e31-Aug-2010 Ben Gardiner <bengardiner@nanometrics.ca>

mtdparts: regroup calls to get_mtd_device_nm

The get_mtd_device_nm function is called in a couple places and the
string that is passed to it is not really used after the calls.

This patch regroups

mtdparts: regroup calls to get_mtd_device_nm

The get_mtd_device_nm function is called in a couple places and the
string that is passed to it is not really used after the calls.

This patch regroups the calls to this function into a new function,
get_mtd_info.

Signed-off-by: Ben Gardiner <bengardiner@nanometrics.ca>
Acked-by: Stefan Roese <sr@denx.de>
CC: Wolfgang Denk <wd@denx.de>

show more ...

8c5659a625-Aug-2010 Scott Wood <scottwood@freescale.com>

nand commands: make only "dump" repeatable.

The dump command is made to increment its address on repeat,
as md does. Other commands do not make sense to issue repeatedly,
and can be irritating when

nand commands: make only "dump" repeatable.

The dump command is made to increment its address on repeat,
as md does. Other commands do not make sense to issue repeatedly,
and can be irritating when it happens accidentally, so don't.

Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>

show more ...

3048632225-Aug-2010 Scott Wood <scottwood@freescale.com>

nand erase: .spread, .part, .chip subcommands

A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
reques

nand erase: .spread, .part, .chip subcommands

A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.

Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.

While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.

While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.

Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>

show more ...

ea533c2602-Aug-2010 Scott Wood <scottwood@freescale.com>

cmd_nand: some infrastructure fixes and refactoring

- If the current device is overridden by a named partition,
- update the caller's pointer/index, rather than copy over the
nand_info struct,

cmd_nand: some infrastructure fixes and refactoring

- If the current device is overridden by a named partition,
- update the caller's pointer/index, rather than copy over the
nand_info struct, and
- be sure to call board_nand_select_device even when the device
is overridden by a named partition.
- Support 64-bit offsets/sizes in a few more places.
- Refactor arg_off_size for added readability and flexibility,
and some added checks such as partition size.
- Remove redundant check for bad subcommands -- if there's no match
it'll print usage when it gets to the end anyway.

Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>

show more ...

1...<<141142143144145146147148149150>>...211