History log of /rk3399_rockchip-uboot/common/ (Results 2251 – 2275 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f9f040b201-Sep-2014 Peng Fan <van.freenix@gmail.com>

kgdb: Remove first_entry for kgdb

There are two ways to run into handle_exception, run command 'kgdb' and
encounter a breakpoint which triggers exception handling.

The origin source code only saves

kgdb: Remove first_entry for kgdb

There are two ways to run into handle_exception, run command 'kgdb' and
encounter a breakpoint which triggers exception handling.

The origin source code only saves regs when first run command 'kgdb'.
Take the following for example, When run 'kgdb', regs is saved to entry_regs.
When run 'bootz', regs is not saved. However, if we set a breakpoint, then
continue. When breakpoint is reached, run `quit`, and Now return to the
instruction which follows kgdb, but not bootz.This may cause errors. So,
save regs for each handle_exception call to return to the correct place.
Example:
Target | Host
=>kgdb | (gdb)b bootz
| (gdb)c
=>bootz |
| (gdb)Here stop because of breakpoint
| (gdb)q

Signed-off-by: Peng Fan <van.freenix@gmail.com>

show more ...


/rk3399_rockchip-uboot/Licenses/README
/rk3399_rockchip-uboot/Licenses/isc.txt
/rk3399_rockchip-uboot/Makefile
kgdb.c
/rk3399_rockchip-uboot/drivers/mtd/mtdconcat.c
/rk3399_rockchip-uboot/drivers/mtd/mtdcore.c
/rk3399_rockchip-uboot/drivers/mtd/mtdpart.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_base.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_bbt.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_ids.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/attach.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/crc32.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/debug.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/debug.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/eba.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/fastmap.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/io.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/kapi.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/ubi.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/upd.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/vmt.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/vtbl.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/wl.c
/rk3399_rockchip-uboot/drivers/net/ethoc.c
/rk3399_rockchip-uboot/drivers/net/rtl8169.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/am35x.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_core.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_dsps.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_gadget.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_gadget_ep0.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_host.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_uboot.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/omap2430.c
/rk3399_rockchip-uboot/fs/ubifs/budget.c
/rk3399_rockchip-uboot/fs/ubifs/debug.c
/rk3399_rockchip-uboot/fs/ubifs/debug.h
/rk3399_rockchip-uboot/fs/ubifs/io.c
/rk3399_rockchip-uboot/fs/ubifs/log.c
/rk3399_rockchip-uboot/fs/ubifs/lprops.c
/rk3399_rockchip-uboot/fs/ubifs/lpt.c
/rk3399_rockchip-uboot/fs/ubifs/lpt_commit.c
/rk3399_rockchip-uboot/fs/ubifs/master.c
/rk3399_rockchip-uboot/fs/ubifs/misc.h
/rk3399_rockchip-uboot/fs/ubifs/recovery.c
/rk3399_rockchip-uboot/fs/ubifs/replay.c
/rk3399_rockchip-uboot/fs/ubifs/sb.c
/rk3399_rockchip-uboot/fs/ubifs/scan.c
/rk3399_rockchip-uboot/fs/ubifs/super.c
/rk3399_rockchip-uboot/fs/ubifs/tnc.c
/rk3399_rockchip-uboot/fs/ubifs/tnc_misc.c
/rk3399_rockchip-uboot/fs/ubifs/ubifs.c
/rk3399_rockchip-uboot/fs/ubifs/ubifs.h
/rk3399_rockchip-uboot/include/linux/mtd/flashchip.h
/rk3399_rockchip-uboot/include/linux/mtd/mtd.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/linux/mtd/ubi.h
/rk3399_rockchip-uboot/include/linux/rbtree.h
/rk3399_rockchip-uboot/include/mtd/mtd-abi.h
/rk3399_rockchip-uboot/lib/list_sort.c
/rk3399_rockchip-uboot/lib/rbtree.c
/rk3399_rockchip-uboot/tools/buildman/kconfiglib.py
/rk3399_rockchip-uboot/tools/genboardscfg.py
5d69a5d126-Aug-2014 Vasili Galka <vvv444@gmail.com>

Fix a few printf argument verification warnings

The parameters of size_t type shall be formatted using "%zu" and not
using "%d".

Precision argument for the "%.*s" parameters shall be of int type.

Fix a few printf argument verification warnings

The parameters of size_t type shall be formatted using "%zu" and not
using "%d".

Precision argument for the "%.*s" parameters shall be of int type.

Signed-off-by: Vasili Galka <vvv444@gmail.com>

show more ...


/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arc/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/davinci/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/nomadik/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/versatile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/highbank/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra-common/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra114/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra124/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra20/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra30/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/Kconfig
/rk3399_rockchip-uboot/arch/avr32/Kconfig
/rk3399_rockchip-uboot/arch/blackfin/Kconfig
/rk3399_rockchip-uboot/arch/m68k/Kconfig
/rk3399_rockchip-uboot/arch/microblaze/Kconfig
/rk3399_rockchip-uboot/arch/mips/Kconfig
/rk3399_rockchip-uboot/arch/nds32/Kconfig
/rk3399_rockchip-uboot/arch/nios2/Kconfig
/rk3399_rockchip-uboot/arch/openrisc/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/74xx_7xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc512x/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc824x/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/Kconfig
/rk3399_rockchip-uboot/arch/sandbox/Kconfig
/rk3399_rockchip-uboot/arch/sh/Kconfig
/rk3399_rockchip-uboot/arch/sparc/Kconfig
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/board/8dtech/eco5pk/Kconfig
/rk3399_rockchip-uboot/board/AndesTech/adp-ag101/Kconfig
/rk3399_rockchip-uboot/board/AndesTech/adp-ag101p/Kconfig
/rk3399_rockchip-uboot/board/AndesTech/adp-ag102/Kconfig
/rk3399_rockchip-uboot/board/Barix/ipam390/Kconfig
/rk3399_rockchip-uboot/board/BuR/kwb/Kconfig
/rk3399_rockchip-uboot/board/BuR/tseries/Kconfig
/rk3399_rockchip-uboot/board/BuS/eb_cpu5282/Kconfig
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/Kconfig
/rk3399_rockchip-uboot/board/BuS/vl_ma2sc/Kconfig
/rk3399_rockchip-uboot/board/CarMediaLab/flea3/Kconfig
/rk3399_rockchip-uboot/board/LEOX/elpt860/Kconfig
/rk3399_rockchip-uboot/board/LaCie/edminiv2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/net2big_v2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/wireless_space/Kconfig
/rk3399_rockchip-uboot/board/Marvell/aspenite/Kconfig
/rk3399_rockchip-uboot/board/Marvell/db64360/Kconfig
/rk3399_rockchip-uboot/board/Marvell/db64460/Kconfig
/rk3399_rockchip-uboot/board/Marvell/dkb/Kconfig
/rk3399_rockchip-uboot/board/Marvell/dreamplug/Kconfig
/rk3399_rockchip-uboot/board/Marvell/gplugd/Kconfig
/rk3399_rockchip-uboot/board/Marvell/guruplug/Kconfig
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/Kconfig
/rk3399_rockchip-uboot/board/Marvell/openrd/Kconfig
/rk3399_rockchip-uboot/board/Marvell/rd6281a/Kconfig
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/Kconfig
/rk3399_rockchip-uboot/board/RRvision/Kconfig
/rk3399_rockchip-uboot/board/Seagate/dockstar/Kconfig
/rk3399_rockchip-uboot/board/Seagate/goflexhome/Kconfig
/rk3399_rockchip-uboot/board/a3000/Kconfig
/rk3399_rockchip-uboot/board/a3m071/Kconfig
/rk3399_rockchip-uboot/board/a4m072/Kconfig
/rk3399_rockchip-uboot/board/abilis/tb100/Kconfig
/rk3399_rockchip-uboot/board/afeb9260/Kconfig
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/Kconfig
/rk3399_rockchip-uboot/board/alphaproject/ap_sh4a_4a/Kconfig
/rk3399_rockchip-uboot/board/altera/nios2-generic/Kconfig
/rk3399_rockchip-uboot/board/altera/socfpga/Kconfig
/rk3399_rockchip-uboot/board/amcc/acadia/Kconfig
/rk3399_rockchip-uboot/board/amcc/bamboo/Kconfig
/rk3399_rockchip-uboot/board/amcc/bluestone/Kconfig
/rk3399_rockchip-uboot/board/amcc/bubinga/Kconfig
/rk3399_rockchip-uboot/board/amcc/canyonlands/Kconfig
/rk3399_rockchip-uboot/board/amcc/ebony/Kconfig
/rk3399_rockchip-uboot/board/amcc/katmai/Kconfig
/rk3399_rockchip-uboot/board/amcc/kilauea/Kconfig
/rk3399_rockchip-uboot/board/amcc/luan/Kconfig
/rk3399_rockchip-uboot/board/amcc/makalu/Kconfig
/rk3399_rockchip-uboot/board/amcc/ocotea/Kconfig
/rk3399_rockchip-uboot/board/amcc/redwood/Kconfig
/rk3399_rockchip-uboot/board/amcc/sequoia/Kconfig
/rk3399_rockchip-uboot/board/amcc/taihu/Kconfig
/rk3399_rockchip-uboot/board/amcc/taishan/Kconfig
/rk3399_rockchip-uboot/board/amcc/walnut/Kconfig
/rk3399_rockchip-uboot/board/amcc/yosemite/Kconfig
/rk3399_rockchip-uboot/board/amcc/yucca/Kconfig
/rk3399_rockchip-uboot/board/aristainetos/Kconfig
/rk3399_rockchip-uboot/board/armadeus/apf27/Kconfig
/rk3399_rockchip-uboot/board/armltd/integrator/Kconfig
/rk3399_rockchip-uboot/board/armltd/vexpress/Kconfig
/rk3399_rockchip-uboot/board/armltd/vexpress64/Kconfig
/rk3399_rockchip-uboot/board/astro/mcf5373l/Kconfig
/rk3399_rockchip-uboot/board/atc/Kconfig
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91rm9200ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9260ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9261ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9m10g45ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9n12ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9rlek/Kconfig
/rk3399_rockchip-uboot/board/atmel/at91sam9x5ek/Kconfig
/rk3399_rockchip-uboot/board/atmel/atngw100/Kconfig
/rk3399_rockchip-uboot/board/atmel/atngw100mkii/Kconfig
/rk3399_rockchip-uboot/board/atmel/atstk1000/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d3_xplained/Kconfig
/rk3399_rockchip-uboot/board/atmel/sama5d3xek/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/medcom-wide/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/plutux/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/tec-ng/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/tec/Kconfig
/rk3399_rockchip-uboot/board/avnet/fx12mm/Kconfig
/rk3399_rockchip-uboot/board/avnet/v5fx30teval/Kconfig
/rk3399_rockchip-uboot/board/balloon3/Kconfig
/rk3399_rockchip-uboot/board/barco/titanium/Kconfig
/rk3399_rockchip-uboot/board/bc3450/Kconfig
/rk3399_rockchip-uboot/board/bct-brettl2/Kconfig
/rk3399_rockchip-uboot/board/bf506f-ezkit/Kconfig
/rk3399_rockchip-uboot/board/bf518f-ezbrd/Kconfig
/rk3399_rockchip-uboot/board/bf525-ucr2/Kconfig
/rk3399_rockchip-uboot/board/bf526-ezbrd/Kconfig
/rk3399_rockchip-uboot/board/bf527-ad7160-eval/Kconfig
/rk3399_rockchip-uboot/board/bf527-ezkit/Kconfig
/rk3399_rockchip-uboot/board/bf527-sdp/Kconfig
/rk3399_rockchip-uboot/board/bf533-ezkit/Kconfig
/rk3399_rockchip-uboot/board/bf533-stamp/Kconfig
/rk3399_rockchip-uboot/board/bf537-minotaur/Kconfig
/rk3399_rockchip-uboot/board/bf537-pnav/Kconfig
/rk3399_rockchip-uboot/board/bf537-srv1/Kconfig
/rk3399_rockchip-uboot/board/bf537-stamp/Kconfig
/rk3399_rockchip-uboot/board/bf538f-ezkit/Kconfig
/rk3399_rockchip-uboot/board/bf548-ezkit/Kconfig
/rk3399_rockchip-uboot/board/bf561-acvilon/Kconfig
/rk3399_rockchip-uboot/board/bf561-ezkit/Kconfig
/rk3399_rockchip-uboot/board/bf609-ezkit/Kconfig
/rk3399_rockchip-uboot/board/blackstamp/Kconfig
/rk3399_rockchip-uboot/board/blackvme/Kconfig
/rk3399_rockchip-uboot/board/bluegiga/apx4devkit/Kconfig
/rk3399_rockchip-uboot/board/bluewater/snapper9260/Kconfig
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/Kconfig
/rk3399_rockchip-uboot/board/br4/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm958300k/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm958622hr/Kconfig
/rk3399_rockchip-uboot/board/buffalo/lsxl/Kconfig
/rk3399_rockchip-uboot/board/calao/sbc35_a9g20/Kconfig
/rk3399_rockchip-uboot/board/calao/tny_a9260/Kconfig
/rk3399_rockchip-uboot/board/calao/usb_a9263/Kconfig
/rk3399_rockchip-uboot/board/canmb/Kconfig
/rk3399_rockchip-uboot/board/chromebook-x86/coreboot/Kconfig
/rk3399_rockchip-uboot/board/cirrus/edb93xx/Kconfig
/rk3399_rockchip-uboot/board/cloudengines/pogo_e02/Kconfig
/rk3399_rockchip-uboot/board/cm-bf527/Kconfig
/rk3399_rockchip-uboot/board/cm-bf533/Kconfig
/rk3399_rockchip-uboot/board/cm-bf537e/Kconfig
/rk3399_rockchip-uboot/board/cm-bf537u/Kconfig
/rk3399_rockchip-uboot/board/cm-bf548/Kconfig
/rk3399_rockchip-uboot/board/cm-bf561/Kconfig
/rk3399_rockchip-uboot/board/cm4008/Kconfig
/rk3399_rockchip-uboot/board/cm41xx/Kconfig
/rk3399_rockchip-uboot/board/cm5200/Kconfig
/rk3399_rockchip-uboot/board/cmi/Kconfig
/rk3399_rockchip-uboot/board/cobra5272/Kconfig
/rk3399_rockchip-uboot/board/cogent/Kconfig
/rk3399_rockchip-uboot/board/comelit/dig297/Kconfig
/rk3399_rockchip-uboot/board/compal/paz00/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t335/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t35/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t54/Kconfig
/rk3399_rockchip-uboot/board/compulab/trimslice/Kconfig
/rk3399_rockchip-uboot/board/congatec/cgtqmx6eval/Kconfig
/rk3399_rockchip-uboot/board/corscience/tricorder/Kconfig
/rk3399_rockchip-uboot/board/cpc45/Kconfig
/rk3399_rockchip-uboot/board/cpu86/Kconfig
/rk3399_rockchip-uboot/board/cpu87/Kconfig
/rk3399_rockchip-uboot/board/cray/L1/Kconfig
/rk3399_rockchip-uboot/board/creative/xfi3/Kconfig
/rk3399_rockchip-uboot/board/csb272/Kconfig
/rk3399_rockchip-uboot/board/csb472/Kconfig
/rk3399_rockchip-uboot/board/cu824/Kconfig
/rk3399_rockchip-uboot/board/d-link/dns325/Kconfig
/rk3399_rockchip-uboot/board/dave/PPChameleonEVB/Kconfig
/rk3399_rockchip-uboot/board/davedenx/aria/Kconfig
/rk3399_rockchip-uboot/board/davedenx/qong/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm355evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm355leopard/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm365evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm6467evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dvevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/ea20/Kconfig
/rk3399_rockchip-uboot/board/davinci/schmoogie/Kconfig
/rk3399_rockchip-uboot/board/davinci/sffsdr/Kconfig
/rk3399_rockchip-uboot/board/davinci/sonata/Kconfig
/rk3399_rockchip-uboot/board/dbau1x00/Kconfig
/rk3399_rockchip-uboot/board/denx/m28evk/Kconfig
/rk3399_rockchip-uboot/board/denx/m53evk/Kconfig
/rk3399_rockchip-uboot/board/dnp5370/Kconfig
/rk3399_rockchip-uboot/board/eXalion/Kconfig
/rk3399_rockchip-uboot/board/earthlcd/favr-32-ezkit/Kconfig
/rk3399_rockchip-uboot/board/egnite/ethernut5/Kconfig
/rk3399_rockchip-uboot/board/eltec/elppc/Kconfig
/rk3399_rockchip-uboot/board/eltec/mhpc/Kconfig
/rk3399_rockchip-uboot/board/embest/mx6boards/Kconfig
/rk3399_rockchip-uboot/board/emk/top5200/Kconfig
/rk3399_rockchip-uboot/board/emk/top860/Kconfig
/rk3399_rockchip-uboot/board/emk/top9000/Kconfig
/rk3399_rockchip-uboot/board/enbw/enbw_cmc/Kconfig
/rk3399_rockchip-uboot/board/ep8260/Kconfig
/rk3399_rockchip-uboot/board/ep82xxm/Kconfig
/rk3399_rockchip-uboot/board/esd/apc405/Kconfig
/rk3399_rockchip-uboot/board/esd/ar405/Kconfig
/rk3399_rockchip-uboot/board/esd/ash405/Kconfig
/rk3399_rockchip-uboot/board/esd/cms700/Kconfig
/rk3399_rockchip-uboot/board/esd/cpci2dp/Kconfig
/rk3399_rockchip-uboot/board/esd/cpci405/Kconfig
/rk3399_rockchip-uboot/board/esd/cpci5200/Kconfig
/rk3399_rockchip-uboot/board/esd/cpci750/Kconfig
/rk3399_rockchip-uboot/board/esd/cpciiser4/Kconfig
/rk3399_rockchip-uboot/board/esd/dp405/Kconfig
/rk3399_rockchip-uboot/board/esd/du405/Kconfig
/rk3399_rockchip-uboot/board/esd/du440/Kconfig
/rk3399_rockchip-uboot/board/esd/hh405/Kconfig
/rk3399_rockchip-uboot/board/esd/hub405/Kconfig
/rk3399_rockchip-uboot/board/esd/mecp5123/Kconfig
/rk3399_rockchip-uboot/board/esd/mecp5200/Kconfig
/rk3399_rockchip-uboot/board/esd/meesc/Kconfig
/rk3399_rockchip-uboot/board/esd/ocrtc/Kconfig
/rk3399_rockchip-uboot/board/esd/otc570/Kconfig
/rk3399_rockchip-uboot/board/esd/pci405/Kconfig
/rk3399_rockchip-uboot/board/esd/pf5200/Kconfig
/rk3399_rockchip-uboot/board/esd/plu405/Kconfig
/rk3399_rockchip-uboot/board/esd/pmc405/Kconfig
/rk3399_rockchip-uboot/board/esd/pmc405de/Kconfig
/rk3399_rockchip-uboot/board/esd/pmc440/Kconfig
/rk3399_rockchip-uboot/board/esd/tasreg/Kconfig
/rk3399_rockchip-uboot/board/esd/vme8349/Kconfig
/rk3399_rockchip-uboot/board/esd/voh405/Kconfig
/rk3399_rockchip-uboot/board/esd/vom405/Kconfig
/rk3399_rockchip-uboot/board/esd/wuh405/Kconfig
/rk3399_rockchip-uboot/board/esg/ima3-mx53/Kconfig
/rk3399_rockchip-uboot/board/espt/Kconfig
/rk3399_rockchip-uboot/board/esteem192e/Kconfig
/rk3399_rockchip-uboot/board/eukrea/cpu9260/Kconfig
/rk3399_rockchip-uboot/board/eukrea/cpuat91/Kconfig
/rk3399_rockchip-uboot/board/evb64260/Kconfig
/rk3399_rockchip-uboot/board/exmeritus/hww1u1a/Kconfig
/rk3399_rockchip-uboot/board/faraday/a320evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/b4860qds/Kconfig
/rk3399_rockchip-uboot/board/freescale/bsc9131rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/bsc9132qds/Kconfig
/rk3399_rockchip-uboot/board/freescale/c29xpcie/Kconfig
/rk3399_rockchip-uboot/board/freescale/corenet_ds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls2085a/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5208evbe/Kconfig
/rk3399_rockchip-uboot/board/freescale/m52277evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5235evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5249evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5253demo/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5253evbe/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5272c3/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5275evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5282evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m53017evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5329evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m5373evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m54418twr/Kconfig
/rk3399_rockchip-uboot/board/freescale/m54451evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m54455evb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m547xevb/Kconfig
/rk3399_rockchip-uboot/board/freescale/m548xevb/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc5121ads/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc7448hpc2/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8266ads/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8308rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8313erdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8315erdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8323erdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc832xemds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8349emds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8360emds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8360erdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc837xerdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8540ads/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8541cds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8544ds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8548cds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8555cds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8560ads/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8568mds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8569mds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8610hpcd/Kconfig
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx23evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx25pdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx28evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx31ads/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx31pdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx35pdk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx51evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53ard/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53loco/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx53smd/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6qarm2/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6slevk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/Kconfig
/rk3399_rockchip-uboot/board/freescale/p1010rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/p1022ds/Kconfig
/rk3399_rockchip-uboot/board/freescale/p1023rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/Kconfig
/rk3399_rockchip-uboot/board/freescale/p1_twr/Kconfig
/rk3399_rockchip-uboot/board/freescale/p2020come/Kconfig
/rk3399_rockchip-uboot/board/freescale/p2020ds/Kconfig
/rk3399_rockchip-uboot/board/freescale/p2041rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/qemu-ppce500/Kconfig
/rk3399_rockchip-uboot/board/freescale/t1040qds/Kconfig
/rk3399_rockchip-uboot/board/freescale/t104xrdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/t208xqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/t208xrdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/t4qds/Kconfig
/rk3399_rockchip-uboot/board/freescale/t4rdb/Kconfig
/rk3399_rockchip-uboot/board/freescale/vf610twr/Kconfig
/rk3399_rockchip-uboot/board/funkwerk/vovpn-gw/Kconfig
/rk3399_rockchip-uboot/board/g2000/Kconfig
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/Kconfig
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/Kconfig
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/Kconfig
/rk3399_rockchip-uboot/board/gaisler/grsim/Kconfig
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/Kconfig
/rk3399_rockchip-uboot/board/galaxy5200/Kconfig
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/Kconfig
/rk3399_rockchip-uboot/board/gdsys/405ep/Kconfig
/rk3399_rockchip-uboot/board/gdsys/405ex/Kconfig
/rk3399_rockchip-uboot/board/gdsys/dlvision/Kconfig
/rk3399_rockchip-uboot/board/gdsys/gdppc440etx/Kconfig
/rk3399_rockchip-uboot/board/gdsys/intip/Kconfig
/rk3399_rockchip-uboot/board/gdsys/p1022/Kconfig
/rk3399_rockchip-uboot/board/genesi/mx51_efikamx/Kconfig
/rk3399_rockchip-uboot/board/gumstix/duovero/Kconfig
/rk3399_rockchip-uboot/board/gumstix/pepper/Kconfig
/rk3399_rockchip-uboot/board/gw8260/Kconfig
/rk3399_rockchip-uboot/board/h2200/Kconfig
/rk3399_rockchip-uboot/board/hale/tt01/Kconfig
/rk3399_rockchip-uboot/board/hermes/Kconfig
/rk3399_rockchip-uboot/board/htkw/mcx/Kconfig
/rk3399_rockchip-uboot/board/hymod/Kconfig
/rk3399_rockchip-uboot/board/ibf-dsp561/Kconfig
/rk3399_rockchip-uboot/board/icecube/Kconfig
/rk3399_rockchip-uboot/board/icpdas/lp8x4x/Kconfig
/rk3399_rockchip-uboot/board/icu862/Kconfig
/rk3399_rockchip-uboot/board/ids/ids8247/Kconfig
/rk3399_rockchip-uboot/board/ids/ids8313/Kconfig
/rk3399_rockchip-uboot/board/ifm/ac14xx/Kconfig
/rk3399_rockchip-uboot/board/ifm/o2dnt2/Kconfig
/rk3399_rockchip-uboot/board/imgtec/malta/Kconfig
/rk3399_rockchip-uboot/board/imx31_phycore/Kconfig
/rk3399_rockchip-uboot/board/in-circuit/grasshopper/Kconfig
/rk3399_rockchip-uboot/board/inka4x0/Kconfig
/rk3399_rockchip-uboot/board/intercontrol/digsy_mtc/Kconfig
/rk3399_rockchip-uboot/board/iomega/iconnect/Kconfig
/rk3399_rockchip-uboot/board/ip04/Kconfig
/rk3399_rockchip-uboot/board/ip860/Kconfig
/rk3399_rockchip-uboot/board/ipek01/Kconfig
/rk3399_rockchip-uboot/board/iphase4539/Kconfig
/rk3399_rockchip-uboot/board/isee/igep0033/Kconfig
/rk3399_rockchip-uboot/board/isee/igep00x0/Kconfig
/rk3399_rockchip-uboot/board/ivm/Kconfig
/rk3399_rockchip-uboot/board/jornada/Kconfig
/rk3399_rockchip-uboot/board/jse/Kconfig
/rk3399_rockchip-uboot/board/jupiter/Kconfig
/rk3399_rockchip-uboot/board/karo/tk71/Kconfig
/rk3399_rockchip-uboot/board/karo/tx25/Kconfig
/rk3399_rockchip-uboot/board/keymile/km82xx/Kconfig
/rk3399_rockchip-uboot/board/keymile/km83xx/Kconfig
/rk3399_rockchip-uboot/board/keymile/km_arm/Kconfig
/rk3399_rockchip-uboot/board/keymile/kmp204x/Kconfig
/rk3399_rockchip-uboot/board/kmc/kzm9g/Kconfig
/rk3399_rockchip-uboot/board/korat/Kconfig
/rk3399_rockchip-uboot/board/kup/kup4k/Kconfig
/rk3399_rockchip-uboot/board/kup/kup4x/Kconfig
/rk3399_rockchip-uboot/board/logicpd/am3517evm/Kconfig
/rk3399_rockchip-uboot/board/logicpd/imx27lite/Kconfig
/rk3399_rockchip-uboot/board/logicpd/imx31_litekit/Kconfig
/rk3399_rockchip-uboot/board/logicpd/omap3som/Kconfig
/rk3399_rockchip-uboot/board/logicpd/zoom1/Kconfig
/rk3399_rockchip-uboot/board/lwmon/Kconfig
/rk3399_rockchip-uboot/board/lwmon5/Kconfig
/rk3399_rockchip-uboot/board/manroland/hmi1001/Kconfig
/rk3399_rockchip-uboot/board/manroland/mucmc52/Kconfig
/rk3399_rockchip-uboot/board/manroland/uc100/Kconfig
/rk3399_rockchip-uboot/board/manroland/uc101/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mergerbox/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvbc_p/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvblm7/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvblx/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/Kconfig
/rk3399_rockchip-uboot/board/mcc200/Kconfig
/rk3399_rockchip-uboot/board/micronas/vct/Kconfig
/rk3399_rockchip-uboot/board/mimc/mimc200/Kconfig
/rk3399_rockchip-uboot/board/miromico/hammerhead/Kconfig
/rk3399_rockchip-uboot/board/mosaixtech/icon/Kconfig
/rk3399_rockchip-uboot/board/motionpro/Kconfig
/rk3399_rockchip-uboot/board/mpc8308_p1m/Kconfig
/rk3399_rockchip-uboot/board/mpl/mip405/Kconfig
/rk3399_rockchip-uboot/board/mpl/pati/Kconfig
/rk3399_rockchip-uboot/board/mpl/pip405/Kconfig
/rk3399_rockchip-uboot/board/mpl/vcma9/Kconfig
/rk3399_rockchip-uboot/board/mpr2/Kconfig
/rk3399_rockchip-uboot/board/ms7720se/Kconfig
/rk3399_rockchip-uboot/board/ms7722se/Kconfig
/rk3399_rockchip-uboot/board/ms7750se/Kconfig
/rk3399_rockchip-uboot/board/muas3001/Kconfig
/rk3399_rockchip-uboot/board/munices/Kconfig
/rk3399_rockchip-uboot/board/musenki/Kconfig
/rk3399_rockchip-uboot/board/mvblue/Kconfig
/rk3399_rockchip-uboot/board/netvia/Kconfig
/rk3399_rockchip-uboot/board/nokia/rx51/Kconfig
/rk3399_rockchip-uboot/board/nvidia/beaver/Kconfig
/rk3399_rockchip-uboot/board/nvidia/cardhu/Kconfig
/rk3399_rockchip-uboot/board/nvidia/dalmore/Kconfig
/rk3399_rockchip-uboot/board/nvidia/harmony/Kconfig
/rk3399_rockchip-uboot/board/nvidia/jetson-tk1/Kconfig
/rk3399_rockchip-uboot/board/nvidia/seaboard/Kconfig
/rk3399_rockchip-uboot/board/nvidia/venice2/Kconfig
/rk3399_rockchip-uboot/board/nvidia/ventana/Kconfig
/rk3399_rockchip-uboot/board/nvidia/whistler/Kconfig
/rk3399_rockchip-uboot/board/olimex/mx23_olinuxino/Kconfig
/rk3399_rockchip-uboot/board/omicron/calimain/Kconfig
/rk3399_rockchip-uboot/board/openrisc/openrisc-generic/Kconfig
/rk3399_rockchip-uboot/board/overo/Kconfig
/rk3399_rockchip-uboot/board/palmld/Kconfig
/rk3399_rockchip-uboot/board/palmtc/Kconfig
/rk3399_rockchip-uboot/board/palmtreo680/Kconfig
/rk3399_rockchip-uboot/board/pandora/Kconfig
/rk3399_rockchip-uboot/board/pb1x00/Kconfig
/rk3399_rockchip-uboot/board/pcs440ep/Kconfig
/rk3399_rockchip-uboot/board/pdm360ng/Kconfig
/rk3399_rockchip-uboot/board/phytec/pcm030/Kconfig
/rk3399_rockchip-uboot/board/phytec/pcm051/Kconfig
/rk3399_rockchip-uboot/board/pm520/Kconfig
/rk3399_rockchip-uboot/board/pm826/Kconfig
/rk3399_rockchip-uboot/board/pm828/Kconfig
/rk3399_rockchip-uboot/board/ppcag/bg0900/Kconfig
/rk3399_rockchip-uboot/board/ppmc7xx/Kconfig
/rk3399_rockchip-uboot/board/ppmc8260/Kconfig
/rk3399_rockchip-uboot/board/pr1/Kconfig
/rk3399_rockchip-uboot/board/prodrive/alpr/Kconfig
/rk3399_rockchip-uboot/board/prodrive/p3mx/Kconfig
/rk3399_rockchip-uboot/board/prodrive/p3p440/Kconfig
/rk3399_rockchip-uboot/board/pxa255_idp/Kconfig
/rk3399_rockchip-uboot/board/qemu-mips/Kconfig
/rk3399_rockchip-uboot/board/r360mpi/Kconfig
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/Kconfig
/rk3399_rockchip-uboot/board/raspberrypi/rpi_b/Kconfig
/rk3399_rockchip-uboot/board/renesas/MigoR/Kconfig
/rk3399_rockchip-uboot/board/renesas/alt/Kconfig
/rk3399_rockchip-uboot/board/renesas/ap325rxa/Kconfig
/rk3399_rockchip-uboot/board/renesas/ecovec/Kconfig
/rk3399_rockchip-uboot/board/renesas/koelsch/Kconfig
/rk3399_rockchip-uboot/board/renesas/lager/Kconfig
/rk3399_rockchip-uboot/board/renesas/r0p7734/Kconfig
/rk3399_rockchip-uboot/board/renesas/r2dplus/Kconfig
/rk3399_rockchip-uboot/board/renesas/r7780mp/Kconfig
/rk3399_rockchip-uboot/board/renesas/rsk7203/Kconfig
/rk3399_rockchip-uboot/board/renesas/rsk7264/Kconfig
/rk3399_rockchip-uboot/board/renesas/rsk7269/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7752evb/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7753evb/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7757lcr/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7763rdp/Kconfig
/rk3399_rockchip-uboot/board/renesas/sh7785lcr/Kconfig
/rk3399_rockchip-uboot/board/ronetix/pm9261/Kconfig
/rk3399_rockchip-uboot/board/ronetix/pm9263/Kconfig
/rk3399_rockchip-uboot/board/ronetix/pm9g45/Kconfig
/rk3399_rockchip-uboot/board/sacsng/Kconfig
/rk3399_rockchip-uboot/board/samsung/arndale/Kconfig
/rk3399_rockchip-uboot/board/samsung/goni/Kconfig
/rk3399_rockchip-uboot/board/samsung/odroid/Kconfig
/rk3399_rockchip-uboot/board/samsung/origen/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk2410/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk5250/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk5420/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkc100/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkv310/Kconfig
/rk3399_rockchip-uboot/board/samsung/trats/Kconfig
/rk3399_rockchip-uboot/board/samsung/trats2/Kconfig
/rk3399_rockchip-uboot/board/samsung/universal_c210/Kconfig
/rk3399_rockchip-uboot/board/sandburst/karef/Kconfig
/rk3399_rockchip-uboot/board/sandburst/metrobox/Kconfig
/rk3399_rockchip-uboot/board/sandisk/sansa_fuze_plus/Kconfig
/rk3399_rockchip-uboot/board/sandpoint/Kconfig
/rk3399_rockchip-uboot/board/sbc405/Kconfig
/rk3399_rockchip-uboot/board/sbc8349/Kconfig
/rk3399_rockchip-uboot/board/sbc8548/Kconfig
/rk3399_rockchip-uboot/board/sbc8641d/Kconfig
/rk3399_rockchip-uboot/board/sc3/Kconfig
/rk3399_rockchip-uboot/board/scb9328/Kconfig
/rk3399_rockchip-uboot/board/schulercontrol/sc_sps_1/Kconfig
/rk3399_rockchip-uboot/board/shmin/Kconfig
/rk3399_rockchip-uboot/board/siemens/corvus/Kconfig
/rk3399_rockchip-uboot/board/siemens/draco/Kconfig
/rk3399_rockchip-uboot/board/siemens/pxm2/Kconfig
/rk3399_rockchip-uboot/board/siemens/rut/Kconfig
/rk3399_rockchip-uboot/board/siemens/taurus/Kconfig
/rk3399_rockchip-uboot/board/silica/pengwyn/Kconfig
/rk3399_rockchip-uboot/board/socrates/Kconfig
/rk3399_rockchip-uboot/board/solidrun/hummingboard/Kconfig
/rk3399_rockchip-uboot/board/spd8xx/Kconfig
/rk3399_rockchip-uboot/board/spear/spear300/Kconfig
/rk3399_rockchip-uboot/board/spear/spear310/Kconfig
/rk3399_rockchip-uboot/board/spear/spear320/Kconfig
/rk3399_rockchip-uboot/board/spear/spear600/Kconfig
/rk3399_rockchip-uboot/board/spear/x600/Kconfig
/rk3399_rockchip-uboot/board/st-ericsson/snowball/Kconfig
/rk3399_rockchip-uboot/board/st-ericsson/u8500/Kconfig
/rk3399_rockchip-uboot/board/st/nhk8815/Kconfig
/rk3399_rockchip-uboot/board/stx/stxgp3/Kconfig
/rk3399_rockchip-uboot/board/stx/stxssa/Kconfig
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/synopsys/Kconfig
/rk3399_rockchip-uboot/board/synopsys/axs101/Kconfig
/rk3399_rockchip-uboot/board/syteco/jadecpu/Kconfig
/rk3399_rockchip-uboot/board/syteco/zmx25/Kconfig
/rk3399_rockchip-uboot/board/t3corp/Kconfig
/rk3399_rockchip-uboot/board/taskit/stamp9g20/Kconfig
/rk3399_rockchip-uboot/board/tcm-bf518/Kconfig
/rk3399_rockchip-uboot/board/tcm-bf537/Kconfig
/rk3399_rockchip-uboot/board/technexion/tao3530/Kconfig
/rk3399_rockchip-uboot/board/technexion/twister/Kconfig
/rk3399_rockchip-uboot/board/teejet/mt_ventoux/Kconfig
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
/rk3399_rockchip-uboot/board/ti/am3517crane/Kconfig
/rk3399_rockchip-uboot/board/ti/am43xx/Kconfig
/rk3399_rockchip-uboot/board/ti/beagle/Kconfig
/rk3399_rockchip-uboot/board/ti/dra7xx/Kconfig
/rk3399_rockchip-uboot/board/ti/evm/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/Kconfig
/rk3399_rockchip-uboot/board/ti/omap5_uevm/Kconfig
/rk3399_rockchip-uboot/board/ti/panda/Kconfig
/rk3399_rockchip-uboot/board/ti/sdp3430/Kconfig
/rk3399_rockchip-uboot/board/ti/sdp4430/Kconfig
/rk3399_rockchip-uboot/board/ti/ti814x/Kconfig
/rk3399_rockchip-uboot/board/ti/ti816x/Kconfig
/rk3399_rockchip-uboot/board/ti/tnetv107xevm/Kconfig
/rk3399_rockchip-uboot/board/timll/devkit3250/Kconfig
/rk3399_rockchip-uboot/board/timll/devkit8000/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_pxa270/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t20_iris/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t30/Kconfig
/rk3399_rockchip-uboot/board/total5200/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqm5200/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqm8260/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqm8272/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqm834x/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqm8xx/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Kconfig
/rk3399_rockchip-uboot/board/trizepsiv/Kconfig
/rk3399_rockchip-uboot/board/ttcontrol/vision2/Kconfig
/rk3399_rockchip-uboot/board/udoo/Kconfig
/rk3399_rockchip-uboot/board/utx8245/Kconfig
/rk3399_rockchip-uboot/board/v38b/Kconfig
/rk3399_rockchip-uboot/board/ve8313/Kconfig
/rk3399_rockchip-uboot/board/vpac270/Kconfig
/rk3399_rockchip-uboot/board/w7o/Kconfig
/rk3399_rockchip-uboot/board/wandboard/Kconfig
/rk3399_rockchip-uboot/board/woodburn/Kconfig
/rk3399_rockchip-uboot/board/xaeniax/Kconfig
/rk3399_rockchip-uboot/board/xes/xpedite1000/Kconfig
/rk3399_rockchip-uboot/board/xes/xpedite517x/Kconfig
/rk3399_rockchip-uboot/board/xes/xpedite520x/Kconfig
/rk3399_rockchip-uboot/board/xes/xpedite537x/Kconfig
/rk3399_rockchip-uboot/board/xes/xpedite550x/Kconfig
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/Kconfig
/rk3399_rockchip-uboot/board/xilinx/ml507/Kconfig
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/Kconfig
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/Kconfig
/rk3399_rockchip-uboot/board/zeus/Kconfig
/rk3399_rockchip-uboot/board/zipitz2/Kconfig
bouncebuf.c
cmd_mtdparts.c
spl/spl.c
/rk3399_rockchip-uboot/doc/README.scrapyard
8d028d4013-Sep-2014 Tom Rini <trini@ti.com>

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


/rk3399_rockchip-uboot/Kbuild
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/ls102xa_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/timer.c
/rk3399_rockchip-uboot/arch/arm/dts/tegra114-dalmore.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra114.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-jetson-tk1.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-venice2.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra124.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-colibri_t20_iris.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-harmony.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-medcom-wide.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-paz00.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-plutux.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-seaboard.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-tec.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-trimslice.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-ventana.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20-whistler.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra20.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-beaver.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-cardhu.dts
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-tamonten.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra30.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/fsl_serdes.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/arm/include/asm/io.h
/rk3399_rockchip-uboot/arch/arm/lib/eabi_compat.c
/rk3399_rockchip-uboot/arch/arm/lib/spl.c
/rk3399_rockchip-uboot/arch/arm/lib/vectors.S
/rk3399_rockchip-uboot/arch/microblaze/include/asm/posix_types.h
/rk3399_rockchip-uboot/arch/sandbox/dts/sandbox.dts
/rk3399_rockchip-uboot/board/freescale/common/Makefile
/rk3399_rockchip-uboot/board/freescale/common/dcu_sii9022a.c
/rk3399_rockchip-uboot/board/freescale/common/dcu_sii9022a.h
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/README
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/README
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/dcu.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/mpc8360emds/mpc8360emds.c
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/mpc837xemds.c
/rk3399_rockchip-uboot/board/nvidia/seaboard/seaboard.c
board_f.c
board_r.c
stdio.c
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_defconfig
/rk3399_rockchip-uboot/doc/README.clang
/rk3399_rockchip-uboot/doc/README.fsl-esdhc
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/ns16550.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/sandbox-serial.txt
/rk3399_rockchip-uboot/drivers/core/lists.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/arm_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/interactive.c
/rk3399_rockchip-uboot/drivers/gpio/tegra_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/mxc_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/net/fm/dtsec.c
/rk3399_rockchip-uboot/drivers/net/fm/fm.h
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/memac.c
/rk3399_rockchip-uboot/drivers/net/fm/tgec.c
/rk3399_rockchip-uboot/drivers/net/fsl_mdio.c
/rk3399_rockchip-uboot/drivers/net/tsec.c
/rk3399_rockchip-uboot/drivers/qe/uec.h
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/sandbox.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_lpuart.c
/rk3399_rockchip-uboot/drivers/serial/serial_ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_tegra.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/fsl_dcu_fb.c
/rk3399_rockchip-uboot/drivers/watchdog/Makefile
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/dm/lists.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra114-car.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra124-car.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra20-car.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/tegra30-car.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/fm_eth.h
/rk3399_rockchip-uboot/include/fsl_dcu_fb.h
/rk3399_rockchip-uboot/include/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/include/fsl_esdhc.h
/rk3399_rockchip-uboot/include/fsl_mdio.h
/rk3399_rockchip-uboot/include/linux/kbuild.h
/rk3399_rockchip-uboot/include/ns16550.h
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/stdio_dev.h
/rk3399_rockchip-uboot/include/systemace.h
/rk3399_rockchip-uboot/include/tsec.h
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/scripts/Kbuild.include
/rk3399_rockchip-uboot/tools/buildman/README
/rk3399_rockchip-uboot/tools/buildman/board.py
/rk3399_rockchip-uboot/tools/buildman/bsettings.py
/rk3399_rockchip-uboot/tools/buildman/builder.py
/rk3399_rockchip-uboot/tools/buildman/builderthread.py
/rk3399_rockchip-uboot/tools/buildman/buildman.py
/rk3399_rockchip-uboot/tools/buildman/cmdline.py
/rk3399_rockchip-uboot/tools/buildman/control.py
/rk3399_rockchip-uboot/tools/buildman/func_test.py
/rk3399_rockchip-uboot/tools/buildman/test.py
/rk3399_rockchip-uboot/tools/buildman/toolchain.py
/rk3399_rockchip-uboot/tools/patman/command.py
/rk3399_rockchip-uboot/tools/patman/gitutil.py
/rk3399_rockchip-uboot/tools/patman/patchstream.py
/rk3399_rockchip-uboot/tools/patman/patman.py
/rk3399_rockchip-uboot/tools/patman/terminal.py
/rk3399_rockchip-uboot/tools/patman/test.py
9fb0249103-Sep-2014 Simon Glass <sjg@chromium.org>

dm: Make driver model available before board_init()

For some boards board_init() will change GPIOs, so we need to have driver
model available before then. Adjust the board init to arrange this, but

dm: Make driver model available before board_init()

For some boards board_init() will change GPIOs, so we need to have driver
model available before then. Adjust the board init to arrange this, but
enable it for driver model only, just to be safe.

This does create additional #ifdef logic, but it is safer than trying to
make a pervasive change which may cause some boards to break.

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

show more ...

294b91a503-Sep-2014 Simon Glass <sjg@chromium.org>

Set up stdio earlier when using driver model

Since driver model registers itself with the stdio subsystem, and we
want to avoid delayed registration and other complexity associated with
the current

Set up stdio earlier when using driver model

Since driver model registers itself with the stdio subsystem, and we
want to avoid delayed registration and other complexity associated with
the current serial console, move the stdio subsystem init earlier when
driver model is used for serial.

This simplifies the implementation. Should there be any problems with
this approach they can be dealt with as boards are converted over to
use driver model for serial.

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

show more ...

3ea0953d03-Sep-2014 Simon Glass <sjg@chromium.org>

dm: Move pre-reloc init earlier to cope with board_early_init_f()

In order to support GPIO access in board_early_init_f() we must set up
driver model before this function is called. In any case, ear

dm: Move pre-reloc init earlier to cope with board_early_init_f()

In order to support GPIO access in board_early_init_f() we must set up
driver model before this function is called. In any case, earlier is
better since driver model is (or will become) a key function for most
init.

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

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/ls102xa_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/timer.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/fsl_serdes.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/io.h
/rk3399_rockchip-uboot/arch/microblaze/include/asm/posix_types.h
/rk3399_rockchip-uboot/board/freescale/common/Makefile
/rk3399_rockchip-uboot/board/freescale/common/dcu_sii9022a.c
/rk3399_rockchip-uboot/board/freescale/common/dcu_sii9022a.h
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/README
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/Makefile
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/README
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/dcu.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/mpc8360emds/mpc8360emds.c
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/mpc837xemds.c
board_f.c
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_defconfig
/rk3399_rockchip-uboot/doc/README.fsl-esdhc
/rk3399_rockchip-uboot/drivers/ddr/fsl/arm_ddr_gen3.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/interactive.c
/rk3399_rockchip-uboot/drivers/i2c/mxc_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/net/fm/dtsec.c
/rk3399_rockchip-uboot/drivers/net/fm/fm.h
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/memac.c
/rk3399_rockchip-uboot/drivers/net/fm/tgec.c
/rk3399_rockchip-uboot/drivers/net/fsl_mdio.c
/rk3399_rockchip-uboot/drivers/net/tsec.c
/rk3399_rockchip-uboot/drivers/qe/uec.h
/rk3399_rockchip-uboot/drivers/serial/serial_lpuart.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/fsl_dcu_fb.c
/rk3399_rockchip-uboot/drivers/watchdog/Makefile
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/fm_eth.h
/rk3399_rockchip-uboot/include/fsl_dcu_fb.h
/rk3399_rockchip-uboot/include/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/include/fsl_esdhc.h
/rk3399_rockchip-uboot/include/fsl_mdio.h
/rk3399_rockchip-uboot/include/systemace.h
/rk3399_rockchip-uboot/include/tsec.h
/rk3399_rockchip-uboot/tools/buildman/README
/rk3399_rockchip-uboot/tools/buildman/board.py
/rk3399_rockchip-uboot/tools/buildman/bsettings.py
/rk3399_rockchip-uboot/tools/buildman/builder.py
/rk3399_rockchip-uboot/tools/buildman/builderthread.py
/rk3399_rockchip-uboot/tools/buildman/buildman.py
/rk3399_rockchip-uboot/tools/buildman/cmdline.py
/rk3399_rockchip-uboot/tools/buildman/control.py
/rk3399_rockchip-uboot/tools/buildman/func_test.py
/rk3399_rockchip-uboot/tools/buildman/test.py
/rk3399_rockchip-uboot/tools/buildman/toolchain.py
/rk3399_rockchip-uboot/tools/patman/command.py
/rk3399_rockchip-uboot/tools/patman/gitutil.py
/rk3399_rockchip-uboot/tools/patman/patchstream.py
/rk3399_rockchip-uboot/tools/patman/patman.py
/rk3399_rockchip-uboot/tools/patman/terminal.py
/rk3399_rockchip-uboot/tools/patman/test.py
47a602ea30-Jul-2014 Jeroen Hofstee <jeroen@myspectrum.nl>

board_r: ARM[64] do not set gd again

For ARM / ARM64 the relocation routines already updated
gd to the new value. Don't set it again. This allows
compilation with clang as it cannot update gd direct

board_r: ARM[64] do not set gd again

For ARM / ARM64 the relocation routines already updated
gd to the new value. Don't set it again. This allows
compilation with clang as it cannot update gd directly.

cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/clock_init.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/clock_init_exynos5.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/exynos5_setup.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/pinmux.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/power.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/spl_boot.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/psc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/hw_data.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/sdram.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-odroid.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos5420-peach-pit.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos54xx.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/clk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/power.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-exynos/system.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/emac_defs.h
/rk3399_rockchip-uboot/arch/arm/lib/reset.c
/rk3399_rockchip-uboot/board/samsung/arndale/MAINTAINERS
/rk3399_rockchip-uboot/board/samsung/common/board.c
/rk3399_rockchip-uboot/board/samsung/common/misc.c
/rk3399_rockchip-uboot/board/samsung/odroid/Kconfig
/rk3399_rockchip-uboot/board/samsung/odroid/MAINTAINERS
/rk3399_rockchip-uboot/board/samsung/odroid/Makefile
/rk3399_rockchip-uboot/board/samsung/odroid/odroid.c
/rk3399_rockchip-uboot/board/samsung/odroid/setup.h
/rk3399_rockchip-uboot/board/samsung/smdk5420/smdk5420.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/Makefile
/rk3399_rockchip-uboot/board/sunxi/dram_a20_olinuxino_l.c
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
board_r.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mini-X-1Gb_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/gwventana_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/odroid_defconfig
/rk3399_rockchip-uboot/configs/qt840a_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/doc/README.odroid
/rk3399_rockchip-uboot/doc/device-tree-bindings/video/exynos-fb.txt
/rk3399_rockchip-uboot/drivers/mtd/nand/davinci_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/omap_gpmc.c
/rk3399_rockchip-uboot/drivers/net/keystone_net.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/exynos_fb.c
/rk3399_rockchip-uboot/drivers/video/exynos_fimd.c
/rk3399_rockchip-uboot/drivers/video/parade.c
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/am335x_igep0033.h
/rk3399_rockchip-uboot/include/configs/exynos5250-dt.h
/rk3399_rockchip-uboot/include/configs/odroid.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/peach-pit.h
/rk3399_rockchip-uboot/include/configs/s5pc210_universal.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/trats.h
/rk3399_rockchip-uboot/include/configs/trats2.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/samsung/misc.h
/rk3399_rockchip-uboot/lib/fdtdec.c
48f892dc02-Sep-2014 Tom Rini <trini@ti.com>

Merge git://git.denx.de/u-boot-usb

1cc03c5c25-Aug-2014 Lukasz Majewski <l.majewski@samsung.com>

dfu: Provide means to find difference between dfu-util -e and -R

This commit provides distinction between DFU device detach and reset.
The -R behavior is preserved with proper handling of the dfu-ut

dfu: Provide means to find difference between dfu-util -e and -R

This commit provides distinction between DFU device detach and reset.
The -R behavior is preserved with proper handling of the dfu-util's -e
switch, which detach the DFU device.

By running dfu-util -e; one can force device to finish the execution of
dfu command on target and execute some other scripted commands.

Moreover, some naming has been changed - the dfu_reset() method now is known
as dfu_detach(). New name better reflects the purpose of the code.

It was also necessary to increase the number of usb_gadget_handle_interrupts()
calls since we also must wait for detection of the USB reset event.

Example usage:
1. -e (detach) switch
dfu-util -a0 -D file1.bin;dfu-util -a3 -D uImage;dfu-util -e

access to u-boot prompt.

2. -R (reset) switch
dfu-util -a0 -D file1.bin;dfu-util -R -a3 -D uImage

target board reset

Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Tested-by: Stephen Warren <swarren@nvidia.com>

show more ...


/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/davinci/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/nomadik/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/versatile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/highbank/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra-common/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra114/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra124/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra20/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra30/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra124/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra20/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/tegra.h
/rk3399_rockchip-uboot/arch/nios2/cpu/cpu.c
/rk3399_rockchip-uboot/arch/nios2/cpu/interrupts.c
/rk3399_rockchip-uboot/arch/nios2/cpu/sysid.c
/rk3399_rockchip-uboot/arch/nios2/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/nios2/include/asm/nios2.h
/rk3399_rockchip-uboot/board/8dtech/eco5pk/Kconfig
/rk3399_rockchip-uboot/board/Barix/ipam390/Kconfig
/rk3399_rockchip-uboot/board/Barix/ipam390/u-boot-spl-ipam390.lds
/rk3399_rockchip-uboot/board/LaCie/edminiv2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/net2big_v2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/wireless_space/Kconfig
/rk3399_rockchip-uboot/board/Marvell/dreamplug/Kconfig
/rk3399_rockchip-uboot/board/Marvell/guruplug/Kconfig
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/Kconfig
/rk3399_rockchip-uboot/board/Marvell/openrd/Kconfig
/rk3399_rockchip-uboot/board/Marvell/rd6281a/Kconfig
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/Kconfig
/rk3399_rockchip-uboot/board/Seagate/dockstar/Kconfig
/rk3399_rockchip-uboot/board/Seagate/goflexhome/Kconfig
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/Kconfig
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/u-boot-spl.lds
/rk3399_rockchip-uboot/board/altera/nios2-generic/Makefile
/rk3399_rockchip-uboot/board/altera/nios2-generic/custom_fpga.h
/rk3399_rockchip-uboot/board/altera/nios2-generic/nios2-generic.c
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/medcom-wide/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/plutux/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/tec-ng/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/tec/Kconfig
/rk3399_rockchip-uboot/board/buffalo/lsxl/Kconfig
/rk3399_rockchip-uboot/board/cloudengines/pogo_e02/Kconfig
/rk3399_rockchip-uboot/board/comelit/dig297/Kconfig
/rk3399_rockchip-uboot/board/compal/paz00/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t35/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t54/Kconfig
/rk3399_rockchip-uboot/board/compulab/trimslice/Kconfig
/rk3399_rockchip-uboot/board/corscience/tricorder/Kconfig
/rk3399_rockchip-uboot/board/d-link/dns325/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-hawk.lds
/rk3399_rockchip-uboot/board/davinci/dm355evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm355leopard/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm365evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm6467evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dvevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/ea20/Kconfig
/rk3399_rockchip-uboot/board/davinci/schmoogie/Kconfig
/rk3399_rockchip-uboot/board/davinci/sffsdr/Kconfig
/rk3399_rockchip-uboot/board/davinci/sonata/Kconfig
/rk3399_rockchip-uboot/board/enbw/enbw_cmc/Kconfig
/rk3399_rockchip-uboot/board/gumstix/duovero/Kconfig
/rk3399_rockchip-uboot/board/htkw/mcx/Kconfig
/rk3399_rockchip-uboot/board/iomega/iconnect/Kconfig
/rk3399_rockchip-uboot/board/isee/igep00x0/Kconfig
/rk3399_rockchip-uboot/board/karo/tk71/Kconfig
/rk3399_rockchip-uboot/board/keymile/km_arm/Kconfig
/rk3399_rockchip-uboot/board/kmc/kzm9g/Kconfig
/rk3399_rockchip-uboot/board/logicpd/am3517evm/Kconfig
/rk3399_rockchip-uboot/board/logicpd/omap3som/Kconfig
/rk3399_rockchip-uboot/board/logicpd/zoom1/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvblx/Kconfig
/rk3399_rockchip-uboot/board/nokia/rx51/Kconfig
/rk3399_rockchip-uboot/board/nvidia/beaver/Kconfig
/rk3399_rockchip-uboot/board/nvidia/cardhu/Kconfig
/rk3399_rockchip-uboot/board/nvidia/dalmore/Kconfig
/rk3399_rockchip-uboot/board/nvidia/harmony/Kconfig
/rk3399_rockchip-uboot/board/nvidia/jetson-tk1/Kconfig
/rk3399_rockchip-uboot/board/nvidia/seaboard/Kconfig
/rk3399_rockchip-uboot/board/nvidia/venice2/Kconfig
/rk3399_rockchip-uboot/board/nvidia/ventana/Kconfig
/rk3399_rockchip-uboot/board/nvidia/whistler/Kconfig
/rk3399_rockchip-uboot/board/omicron/calimain/Kconfig
/rk3399_rockchip-uboot/board/overo/Kconfig
/rk3399_rockchip-uboot/board/pandora/Kconfig
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/Kconfig
/rk3399_rockchip-uboot/board/renesas/alt/Kconfig
/rk3399_rockchip-uboot/board/renesas/koelsch/Kconfig
/rk3399_rockchip-uboot/board/renesas/lager/Kconfig
/rk3399_rockchip-uboot/board/samsung/arndale/Kconfig
/rk3399_rockchip-uboot/board/samsung/common/exynos-uboot-spl.lds
/rk3399_rockchip-uboot/board/samsung/origen/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk5250/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk5420/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkv310/Kconfig
/rk3399_rockchip-uboot/board/samsung/trats/Kconfig
/rk3399_rockchip-uboot/board/samsung/trats2/Kconfig
/rk3399_rockchip-uboot/board/samsung/universal_c210/Kconfig
/rk3399_rockchip-uboot/board/st/nhk8815/Kconfig
/rk3399_rockchip-uboot/board/technexion/tao3530/Kconfig
/rk3399_rockchip-uboot/board/technexion/twister/Kconfig
/rk3399_rockchip-uboot/board/teejet/mt_ventoux/Kconfig
/rk3399_rockchip-uboot/board/ti/am3517crane/Kconfig
/rk3399_rockchip-uboot/board/ti/beagle/Kconfig
/rk3399_rockchip-uboot/board/ti/dra7xx/Kconfig
/rk3399_rockchip-uboot/board/ti/evm/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/Kconfig
/rk3399_rockchip-uboot/board/ti/omap5_uevm/Kconfig
/rk3399_rockchip-uboot/board/ti/panda/Kconfig
/rk3399_rockchip-uboot/board/ti/sdp3430/Kconfig
/rk3399_rockchip-uboot/board/ti/sdp4430/Kconfig
/rk3399_rockchip-uboot/board/timll/devkit8000/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t20_iris/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t30/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/MAINTAINERS
/rk3399_rockchip-uboot/board/vpac270/u-boot-spl.lds
/rk3399_rockchip-uboot/board/xilinx/zynq/MAINTAINERS
cmd_dfu.c
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/armadillo-800eva_defconfig
/rk3399_rockchip-uboot/configs/arndale_defconfig
/rk3399_rockchip-uboot/configs/beaver_defconfig
/rk3399_rockchip-uboot/configs/calimain_defconfig
/rk3399_rockchip-uboot/configs/cam_enc_4xx_defconfig
/rk3399_rockchip-uboot/configs/cardhu_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_iris_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/d2net_v2_defconfig
/rk3399_rockchip-uboot/configs/da830evm_defconfig
/rk3399_rockchip-uboot/configs/da850_am18xxevm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_direct_nor_defconfig
/rk3399_rockchip-uboot/configs/dalmore_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm355evm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm355leopard_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm365evm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm6467Tevm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm6467evm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dvevm_defconfig
/rk3399_rockchip-uboot/configs/davinci_schmoogie_defconfig
/rk3399_rockchip-uboot/configs/davinci_sffsdr_defconfig
/rk3399_rockchip-uboot/configs/davinci_sonata_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dig297_defconfig
/rk3399_rockchip-uboot/configs/dns325_defconfig
/rk3399_rockchip-uboot/configs/dockstar_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_uart3_defconfig
/rk3399_rockchip-uboot/configs/dreamplug_defconfig
/rk3399_rockchip-uboot/configs/duovero_defconfig
/rk3399_rockchip-uboot/configs/ea20_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/edminiv2_defconfig
/rk3399_rockchip-uboot/configs/enbw_cmc_defconfig
/rk3399_rockchip-uboot/configs/goflexhome_defconfig
/rk3399_rockchip-uboot/configs/guruplug_defconfig
/rk3399_rockchip-uboot/configs/harmony_defconfig
/rk3399_rockchip-uboot/configs/hawkboard_defconfig
/rk3399_rockchip-uboot/configs/hawkboard_uart_defconfig
/rk3399_rockchip-uboot/configs/highbank_defconfig
/rk3399_rockchip-uboot/configs/ib62x0_defconfig
/rk3399_rockchip-uboot/configs/iconnect_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0020_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0030_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/inetspace_v2_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_128m16_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_pci_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5un_defconfig
/rk3399_rockchip-uboot/configs/kmnusa_defconfig
/rk3399_rockchip-uboot/configs/kmsugp1_defconfig
/rk3399_rockchip-uboot/configs/kmsuv31_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/kzm9g_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/lschlv2_defconfig
/rk3399_rockchip-uboot/configs/lsxhl_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/medcom-wide_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3un_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mv88f6281gtw_ge_defconfig
/rk3399_rockchip-uboot/configs/net2big_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_lite_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_max_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_mini_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_v2_defconfig
/rk3399_rockchip-uboot/configs/nhk8815_defconfig
/rk3399_rockchip-uboot/configs/nhk8815_onenand_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_mmc_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_nand_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_mvblx_defconfig
/rk3399_rockchip-uboot/configs/omap3_overo_defconfig
/rk3399_rockchip-uboot/configs/omap3_pandora_defconfig
/rk3399_rockchip-uboot/configs/omap3_sdp3430_defconfig
/rk3399_rockchip-uboot/configs/omap3_zoom1_defconfig
/rk3399_rockchip-uboot/configs/omap4_panda_defconfig
/rk3399_rockchip-uboot/configs/omap4_sdp4430_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/openrd_base_defconfig
/rk3399_rockchip-uboot/configs/openrd_client_defconfig
/rk3399_rockchip-uboot/configs/openrd_ultimate_defconfig
/rk3399_rockchip-uboot/configs/origen_defconfig
/rk3399_rockchip-uboot/configs/paz00_defconfig
/rk3399_rockchip-uboot/configs/peach-pit_defconfig
/rk3399_rockchip-uboot/configs/plutux_defconfig
/rk3399_rockchip-uboot/configs/pogo_e02_defconfig
/rk3399_rockchip-uboot/configs/portl2_defconfig
/rk3399_rockchip-uboot/configs/rd6281a_defconfig
/rk3399_rockchip-uboot/configs/s5pc210_universal_defconfig
/rk3399_rockchip-uboot/configs/seaboard_defconfig
/rk3399_rockchip-uboot/configs/sheevaplug_defconfig
/rk3399_rockchip-uboot/configs/smdk5250_defconfig
/rk3399_rockchip-uboot/configs/smdk5420_defconfig
/rk3399_rockchip-uboot/configs/smdkv310_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/tec-ng_defconfig
/rk3399_rockchip-uboot/configs/tec_defconfig
/rk3399_rockchip-uboot/configs/tk71_defconfig
/rk3399_rockchip-uboot/configs/tqma6q_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6q_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/tqma6s_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6s_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/trats2_defconfig
/rk3399_rockchip-uboot/configs/trats_defconfig
/rk3399_rockchip-uboot/configs/tricorder_defconfig
/rk3399_rockchip-uboot/configs/tricorder_flash_defconfig
/rk3399_rockchip-uboot/configs/trimslice_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/venice2_defconfig
/rk3399_rockchip-uboot/configs/ventana_defconfig
/rk3399_rockchip-uboot/configs/versatileab_defconfig
/rk3399_rockchip-uboot/configs/versatilepb_defconfig
/rk3399_rockchip-uboot/configs/versatileqemu_defconfig
/rk3399_rockchip-uboot/configs/whistler_defconfig
/rk3399_rockchip-uboot/configs/wireless_space_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc70x_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/drivers/dfu/dfu.c
/rk3399_rockchip-uboot/drivers/mtd/nand/kirkwood_nand.c
/rk3399_rockchip-uboot/drivers/serial/altera_jtag_uart.c
/rk3399_rockchip-uboot/drivers/serial/altera_uart.c
/rk3399_rockchip-uboot/drivers/serial/opencores_yanu.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_dfu.c
/rk3399_rockchip-uboot/include/configs/alt.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/dig297.h
/rk3399_rockchip-uboot/include/configs/dns325.h
/rk3399_rockchip-uboot/include/configs/dockstar.h
/rk3399_rockchip-uboot/include/configs/dreamplug.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/goflexhome.h
/rk3399_rockchip-uboot/include/configs/guruplug.h
/rk3399_rockchip-uboot/include/configs/ib62x0.h
/rk3399_rockchip-uboot/include/configs/iconnect.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/km_kirkwood.h
/rk3399_rockchip-uboot/include/configs/koelsch.h
/rk3399_rockchip-uboot/include/configs/kzm9g.h
/rk3399_rockchip-uboot/include/configs/lacie_kw.h
/rk3399_rockchip-uboot/include/configs/lager.h
/rk3399_rockchip-uboot/include/configs/lsxl.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mv88f6281gtw_ge.h
/rk3399_rockchip-uboot/include/configs/nhk8815.h
/rk3399_rockchip-uboot/include/configs/nios2-generic.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/omap3_evm_common.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_mvblx.h
/rk3399_rockchip-uboot/include/configs/omap3_pandora.h
/rk3399_rockchip-uboot/include/configs/omap3_sdp3430.h
/rk3399_rockchip-uboot/include/configs/openrd.h
/rk3399_rockchip-uboot/include/configs/pogo_e02.h
/rk3399_rockchip-uboot/include/configs/rd6281a.h
/rk3399_rockchip-uboot/include/configs/sheevaplug.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/ti_omap3_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/tk71.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/configs/vexpress_aemv8a.h
/rk3399_rockchip-uboot/include/configs/wireless_space.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/dfu.h
9165e84211-Aug-2014 Simon Glass <sjg@chromium.org>

dm: gpio: Allow gpio command to adjust GPIOs that are busy

The gpio command mostly relies on gpio_request() and gpio_free() being
nops, in that you can request a GPIO twice. With driver model this i

dm: gpio: Allow gpio command to adjust GPIOs that are busy

The gpio command mostly relies on gpio_request() and gpio_free() being
nops, in that you can request a GPIO twice. With driver model this is
now implemented correctly, so it fails.

Change the command to deal with a failure to claim the GPIO.

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

show more ...

89e6405411-Aug-2014 Simon Glass <sjg@chromium.org>

dm: gpio: Enhance gpio command to show only active GPIOs

The GPIO list is very long in many cases and most of them are not used.
By default, show only the GPIOs that are in use, and provide a flag t

dm: gpio: Enhance gpio command to show only active GPIOs

The GPIO list is very long in many cases and most of them are not used.
By default, show only the GPIOs that are in use, and provide a flag to show
all of them. This makes the 'gpio status' command much more pleasant.

In order to do this, driver model now exposes a method for obtaining the
'function' of a GPIO, which describes whether it is an input or output, for
example. Implementation of this method is optional.

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

show more ...


/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/davinci/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/nomadik/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/versatile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/highbank/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra-common/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra114/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra124/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra20/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/tegra30/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra124/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra20/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/tegra.h
/rk3399_rockchip-uboot/arch/nios2/cpu/cpu.c
/rk3399_rockchip-uboot/arch/nios2/cpu/interrupts.c
/rk3399_rockchip-uboot/arch/nios2/cpu/sysid.c
/rk3399_rockchip-uboot/arch/nios2/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/nios2/include/asm/nios2.h
/rk3399_rockchip-uboot/board/8dtech/eco5pk/Kconfig
/rk3399_rockchip-uboot/board/Barix/ipam390/Kconfig
/rk3399_rockchip-uboot/board/Barix/ipam390/u-boot-spl-ipam390.lds
/rk3399_rockchip-uboot/board/LaCie/edminiv2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/net2big_v2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/Kconfig
/rk3399_rockchip-uboot/board/LaCie/wireless_space/Kconfig
/rk3399_rockchip-uboot/board/Marvell/dreamplug/Kconfig
/rk3399_rockchip-uboot/board/Marvell/guruplug/Kconfig
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/Kconfig
/rk3399_rockchip-uboot/board/Marvell/openrd/Kconfig
/rk3399_rockchip-uboot/board/Marvell/rd6281a/Kconfig
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/Kconfig
/rk3399_rockchip-uboot/board/Seagate/dockstar/Kconfig
/rk3399_rockchip-uboot/board/Seagate/goflexhome/Kconfig
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/Kconfig
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/u-boot-spl.lds
/rk3399_rockchip-uboot/board/altera/nios2-generic/Makefile
/rk3399_rockchip-uboot/board/altera/nios2-generic/custom_fpga.h
/rk3399_rockchip-uboot/board/altera/nios2-generic/nios2-generic.c
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/medcom-wide/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/plutux/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/tec-ng/Kconfig
/rk3399_rockchip-uboot/board/avionic-design/tec/Kconfig
/rk3399_rockchip-uboot/board/buffalo/lsxl/Kconfig
/rk3399_rockchip-uboot/board/cloudengines/pogo_e02/Kconfig
/rk3399_rockchip-uboot/board/comelit/dig297/Kconfig
/rk3399_rockchip-uboot/board/compal/paz00/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t35/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t54/Kconfig
/rk3399_rockchip-uboot/board/compulab/trimslice/Kconfig
/rk3399_rockchip-uboot/board/corscience/tricorder/Kconfig
/rk3399_rockchip-uboot/board/d-link/dns325/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-hawk.lds
/rk3399_rockchip-uboot/board/davinci/dm355evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm355leopard/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm365evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dm6467evm/Kconfig
/rk3399_rockchip-uboot/board/davinci/dvevm/Kconfig
/rk3399_rockchip-uboot/board/davinci/ea20/Kconfig
/rk3399_rockchip-uboot/board/davinci/schmoogie/Kconfig
/rk3399_rockchip-uboot/board/davinci/sffsdr/Kconfig
/rk3399_rockchip-uboot/board/davinci/sonata/Kconfig
/rk3399_rockchip-uboot/board/enbw/enbw_cmc/Kconfig
/rk3399_rockchip-uboot/board/gumstix/duovero/Kconfig
/rk3399_rockchip-uboot/board/htkw/mcx/Kconfig
/rk3399_rockchip-uboot/board/iomega/iconnect/Kconfig
/rk3399_rockchip-uboot/board/isee/igep00x0/Kconfig
/rk3399_rockchip-uboot/board/karo/tk71/Kconfig
/rk3399_rockchip-uboot/board/keymile/km_arm/Kconfig
/rk3399_rockchip-uboot/board/kmc/kzm9g/Kconfig
/rk3399_rockchip-uboot/board/logicpd/am3517evm/Kconfig
/rk3399_rockchip-uboot/board/logicpd/omap3som/Kconfig
/rk3399_rockchip-uboot/board/logicpd/zoom1/Kconfig
/rk3399_rockchip-uboot/board/matrix_vision/mvblx/Kconfig
/rk3399_rockchip-uboot/board/nokia/rx51/Kconfig
/rk3399_rockchip-uboot/board/nvidia/beaver/Kconfig
/rk3399_rockchip-uboot/board/nvidia/cardhu/Kconfig
/rk3399_rockchip-uboot/board/nvidia/dalmore/Kconfig
/rk3399_rockchip-uboot/board/nvidia/harmony/Kconfig
/rk3399_rockchip-uboot/board/nvidia/jetson-tk1/Kconfig
/rk3399_rockchip-uboot/board/nvidia/seaboard/Kconfig
/rk3399_rockchip-uboot/board/nvidia/venice2/Kconfig
/rk3399_rockchip-uboot/board/nvidia/ventana/Kconfig
/rk3399_rockchip-uboot/board/nvidia/whistler/Kconfig
/rk3399_rockchip-uboot/board/omicron/calimain/Kconfig
/rk3399_rockchip-uboot/board/overo/Kconfig
/rk3399_rockchip-uboot/board/pandora/Kconfig
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/Kconfig
/rk3399_rockchip-uboot/board/renesas/alt/Kconfig
/rk3399_rockchip-uboot/board/renesas/koelsch/Kconfig
/rk3399_rockchip-uboot/board/renesas/lager/Kconfig
/rk3399_rockchip-uboot/board/samsung/arndale/Kconfig
/rk3399_rockchip-uboot/board/samsung/common/exynos-uboot-spl.lds
/rk3399_rockchip-uboot/board/samsung/origen/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk5250/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdk5420/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkv310/Kconfig
/rk3399_rockchip-uboot/board/samsung/trats/Kconfig
/rk3399_rockchip-uboot/board/samsung/trats2/Kconfig
/rk3399_rockchip-uboot/board/samsung/universal_c210/Kconfig
/rk3399_rockchip-uboot/board/st/nhk8815/Kconfig
/rk3399_rockchip-uboot/board/technexion/tao3530/Kconfig
/rk3399_rockchip-uboot/board/technexion/twister/Kconfig
/rk3399_rockchip-uboot/board/teejet/mt_ventoux/Kconfig
/rk3399_rockchip-uboot/board/ti/am3517crane/Kconfig
/rk3399_rockchip-uboot/board/ti/beagle/Kconfig
/rk3399_rockchip-uboot/board/ti/dra7xx/Kconfig
/rk3399_rockchip-uboot/board/ti/evm/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/Kconfig
/rk3399_rockchip-uboot/board/ti/omap5_uevm/Kconfig
/rk3399_rockchip-uboot/board/ti/panda/Kconfig
/rk3399_rockchip-uboot/board/ti/sdp3430/Kconfig
/rk3399_rockchip-uboot/board/ti/sdp4430/Kconfig
/rk3399_rockchip-uboot/board/timll/devkit8000/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t20_iris/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t30/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/MAINTAINERS
/rk3399_rockchip-uboot/board/vpac270/u-boot-spl.lds
/rk3399_rockchip-uboot/board/xilinx/zynq/MAINTAINERS
cmd_gpio.c
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/armadillo-800eva_defconfig
/rk3399_rockchip-uboot/configs/arndale_defconfig
/rk3399_rockchip-uboot/configs/beaver_defconfig
/rk3399_rockchip-uboot/configs/calimain_defconfig
/rk3399_rockchip-uboot/configs/cam_enc_4xx_defconfig
/rk3399_rockchip-uboot/configs/cardhu_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_iris_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/d2net_v2_defconfig
/rk3399_rockchip-uboot/configs/da830evm_defconfig
/rk3399_rockchip-uboot/configs/da850_am18xxevm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_direct_nor_defconfig
/rk3399_rockchip-uboot/configs/dalmore_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm355evm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm355leopard_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm365evm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm6467Tevm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dm6467evm_defconfig
/rk3399_rockchip-uboot/configs/davinci_dvevm_defconfig
/rk3399_rockchip-uboot/configs/davinci_schmoogie_defconfig
/rk3399_rockchip-uboot/configs/davinci_sffsdr_defconfig
/rk3399_rockchip-uboot/configs/davinci_sonata_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dig297_defconfig
/rk3399_rockchip-uboot/configs/dns325_defconfig
/rk3399_rockchip-uboot/configs/dockstar_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_uart3_defconfig
/rk3399_rockchip-uboot/configs/dreamplug_defconfig
/rk3399_rockchip-uboot/configs/duovero_defconfig
/rk3399_rockchip-uboot/configs/ea20_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/edminiv2_defconfig
/rk3399_rockchip-uboot/configs/enbw_cmc_defconfig
/rk3399_rockchip-uboot/configs/goflexhome_defconfig
/rk3399_rockchip-uboot/configs/guruplug_defconfig
/rk3399_rockchip-uboot/configs/harmony_defconfig
/rk3399_rockchip-uboot/configs/hawkboard_defconfig
/rk3399_rockchip-uboot/configs/hawkboard_uart_defconfig
/rk3399_rockchip-uboot/configs/highbank_defconfig
/rk3399_rockchip-uboot/configs/ib62x0_defconfig
/rk3399_rockchip-uboot/configs/iconnect_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0020_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0030_nand_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/inetspace_v2_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_128m16_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_pci_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5un_defconfig
/rk3399_rockchip-uboot/configs/kmnusa_defconfig
/rk3399_rockchip-uboot/configs/kmsugp1_defconfig
/rk3399_rockchip-uboot/configs/kmsuv31_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/kzm9g_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/lschlv2_defconfig
/rk3399_rockchip-uboot/configs/lsxhl_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/medcom-wide_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3un_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mv88f6281gtw_ge_defconfig
/rk3399_rockchip-uboot/configs/net2big_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_lite_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_max_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_mini_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_v2_defconfig
/rk3399_rockchip-uboot/configs/nhk8815_defconfig
/rk3399_rockchip-uboot/configs/nhk8815_onenand_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_mmc_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_nand_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_mvblx_defconfig
/rk3399_rockchip-uboot/configs/omap3_overo_defconfig
/rk3399_rockchip-uboot/configs/omap3_pandora_defconfig
/rk3399_rockchip-uboot/configs/omap3_sdp3430_defconfig
/rk3399_rockchip-uboot/configs/omap3_zoom1_defconfig
/rk3399_rockchip-uboot/configs/omap4_panda_defconfig
/rk3399_rockchip-uboot/configs/omap4_sdp4430_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/openrd_base_defconfig
/rk3399_rockchip-uboot/configs/openrd_client_defconfig
/rk3399_rockchip-uboot/configs/openrd_ultimate_defconfig
/rk3399_rockchip-uboot/configs/origen_defconfig
/rk3399_rockchip-uboot/configs/paz00_defconfig
/rk3399_rockchip-uboot/configs/peach-pit_defconfig
/rk3399_rockchip-uboot/configs/plutux_defconfig
/rk3399_rockchip-uboot/configs/pogo_e02_defconfig
/rk3399_rockchip-uboot/configs/portl2_defconfig
/rk3399_rockchip-uboot/configs/rd6281a_defconfig
/rk3399_rockchip-uboot/configs/s5pc210_universal_defconfig
/rk3399_rockchip-uboot/configs/seaboard_defconfig
/rk3399_rockchip-uboot/configs/sheevaplug_defconfig
/rk3399_rockchip-uboot/configs/smdk5250_defconfig
/rk3399_rockchip-uboot/configs/smdk5420_defconfig
/rk3399_rockchip-uboot/configs/smdkv310_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/tec-ng_defconfig
/rk3399_rockchip-uboot/configs/tec_defconfig
/rk3399_rockchip-uboot/configs/tk71_defconfig
/rk3399_rockchip-uboot/configs/tqma6q_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6q_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/tqma6s_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6s_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/trats2_defconfig
/rk3399_rockchip-uboot/configs/trats_defconfig
/rk3399_rockchip-uboot/configs/tricorder_defconfig
/rk3399_rockchip-uboot/configs/tricorder_flash_defconfig
/rk3399_rockchip-uboot/configs/trimslice_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/venice2_defconfig
/rk3399_rockchip-uboot/configs/ventana_defconfig
/rk3399_rockchip-uboot/configs/versatileab_defconfig
/rk3399_rockchip-uboot/configs/versatilepb_defconfig
/rk3399_rockchip-uboot/configs/versatileqemu_defconfig
/rk3399_rockchip-uboot/configs/whistler_defconfig
/rk3399_rockchip-uboot/configs/wireless_space_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc70x_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/drivers/mtd/nand/kirkwood_nand.c
/rk3399_rockchip-uboot/drivers/serial/altera_jtag_uart.c
/rk3399_rockchip-uboot/drivers/serial/altera_uart.c
/rk3399_rockchip-uboot/drivers/serial/opencores_yanu.c
/rk3399_rockchip-uboot/include/asm-generic/gpio.h
/rk3399_rockchip-uboot/include/configs/alt.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/dig297.h
/rk3399_rockchip-uboot/include/configs/dns325.h
/rk3399_rockchip-uboot/include/configs/dockstar.h
/rk3399_rockchip-uboot/include/configs/dreamplug.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/goflexhome.h
/rk3399_rockchip-uboot/include/configs/guruplug.h
/rk3399_rockchip-uboot/include/configs/ib62x0.h
/rk3399_rockchip-uboot/include/configs/iconnect.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/km_kirkwood.h
/rk3399_rockchip-uboot/include/configs/koelsch.h
/rk3399_rockchip-uboot/include/configs/kzm9g.h
/rk3399_rockchip-uboot/include/configs/lacie_kw.h
/rk3399_rockchip-uboot/include/configs/lager.h
/rk3399_rockchip-uboot/include/configs/lsxl.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mv88f6281gtw_ge.h
/rk3399_rockchip-uboot/include/configs/nhk8815.h
/rk3399_rockchip-uboot/include/configs/nios2-generic.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/omap3_evm_common.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_mvblx.h
/rk3399_rockchip-uboot/include/configs/omap3_pandora.h
/rk3399_rockchip-uboot/include/configs/omap3_sdp3430.h
/rk3399_rockchip-uboot/include/configs/openrd.h
/rk3399_rockchip-uboot/include/configs/pogo_e02.h
/rk3399_rockchip-uboot/include/configs/rd6281a.h
/rk3399_rockchip-uboot/include/configs/sheevaplug.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/ti_omap3_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/tk71.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/configs/vexpress_aemv8a.h
/rk3399_rockchip-uboot/include/configs/wireless_space.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
d2b2ffe314-Aug-2014 Tom Rini <trini@ti.com>

cmd_bootm.c: Add 'booti' for ARM64 Linux kernel Images

The default format for arm64 Linux kernels is the "Image" format,
described in Documentation/arm64/booting.txt. This, along with an
optional g

cmd_bootm.c: Add 'booti' for ARM64 Linux kernel Images

The default format for arm64 Linux kernels is the "Image" format,
described in Documentation/arm64/booting.txt. This, along with an
optional gzip compression on top is all that is generated by default.
The Image format has a magic number within the header for verification,
a text_offset where the Image must be run from, an image_size that
includes the BSS and reserved fields.

This does not support automatic detection of a gzip compressed image.

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

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-bcm281xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-eth.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcmcygnus/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcmcygnus/reset.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcmnsp/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcmnsp/reset.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/iproc-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/iproc-common/armpll.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/iproc-common/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/iproc-common/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/clock_manager.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/misc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/spl.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcm281xx/sysmap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcmcygnus/configs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcmnsp/configs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/clock_manager.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/scan_manager.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/socfpga_base_addrs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/crm_regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/iomux-vf610.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/iomux-v3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/io.h
/rk3399_rockchip-uboot/arch/arm/include/asm/iproc-common/armpll.h
/rk3399_rockchip-uboot/arch/arm/include/asm/iproc-common/configs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/iproc-common/sysmap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/iproc-common/timer.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/lib/cache-cp15.c
/rk3399_rockchip-uboot/arch/arm/lib/vectors.S
/rk3399_rockchip-uboot/board/altera/socfpga/Makefile
/rk3399_rockchip-uboot/board/altera/socfpga/socfpga_cyclone5.c
/rk3399_rockchip-uboot/board/armltd/vexpress/MAINTAINERS
/rk3399_rockchip-uboot/board/broadcom/bcm28155_w1d/MAINTAINERS
/rk3399_rockchip-uboot/board/broadcom/bcm958300k/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm958300k/MAINTAINERS
/rk3399_rockchip-uboot/board/broadcom/bcm958622hr/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcm958622hr/MAINTAINERS
/rk3399_rockchip-uboot/board/broadcom/bcm_ep/Makefile
/rk3399_rockchip-uboot/board/broadcom/bcm_ep/board.c
/rk3399_rockchip-uboot/board/cirrus/edb93xx/u-boot.lds
/rk3399_rockchip-uboot/board/samsung/arndale/arndale.c
cmd_bootm.c
/rk3399_rockchip-uboot/configs/bcm28155_w1d_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k_defconfig
/rk3399_rockchip-uboot/configs/bcm958622hr_defconfig
/rk3399_rockchip-uboot/drivers/mmc/socfpga_dw_mmc.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth-gmac.c
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth-gmac.h
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth.c
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth.h
/rk3399_rockchip-uboot/include/bootm.h
/rk3399_rockchip-uboot/include/configs/arndale.h
/rk3399_rockchip-uboot/include/configs/bcm_ep_board.h
/rk3399_rockchip-uboot/include/configs/socfpga_cyclone5.h
/rk3399_rockchip-uboot/include/netdev.h
6defdc0b29-Aug-2014 Tom Rini <trini@ti.com>

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


/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/clock-k2e.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/clock-k2hk.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/keystone/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/emif-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/hw_data.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/sdram.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/clock-k2e.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/clock-k2hk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-keystone/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/mem.h
/rk3399_rockchip-uboot/board/compulab/cm_t54/cm_t54.c
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am335x/mux.c
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/mux.c
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/board/ti/dra7xx/mux_data.h
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2e.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2hk.c
Makefile
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_nor_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_norboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_spiboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_usbspl_defconfig
/rk3399_rockchip-uboot/doc/README.cfi
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/cm_t54.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/pcm051.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/tseries.h
8f005b3929-Aug-2014 Tom Rini <trini@ti.com>

Merge git://git.denx.de/u-boot-usb


/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/spl.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/tegra-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/tegra-common/ap.c
/rk3399_rockchip-uboot/arch/arm/cpu/tegra-common/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/tegra-common/vpr.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/tegra30-colibri.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/ap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra124/mc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynq/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/mach-types.h
/rk3399_rockchip-uboot/arch/arm/include/asm/spl.h
/rk3399_rockchip-uboot/board/nvidia/venice2/as3722_init.h
/rk3399_rockchip-uboot/board/toradex/colibri_t30/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_t30/MAINTAINERS
/rk3399_rockchip-uboot/board/toradex/colibri_t30/Makefile
/rk3399_rockchip-uboot/board/toradex/colibri_t30/colibri_t30.c
/rk3399_rockchip-uboot/board/toradex/colibri_t30/pinmux-config-colibri_t30.h
usb.c
usb_hub.c
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/include/configs/beaver.h
/rk3399_rockchip-uboot/include/configs/colibri_t30.h
/rk3399_rockchip-uboot/include/configs/jetson-tk1.h
/rk3399_rockchip-uboot/include/configs/tegra-common-usb-gadget.h
/rk3399_rockchip-uboot/include/configs/venice2.h
5a1095a829-Aug-2014 Tom Rini <trini@ti.com>

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


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/ddr.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/mp.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/dram.c
/rk3399_rockchip-uboot/arch/arm/imx-common/cpu.c
/rk3399_rockchip-uboot/arch/arm/imx-common/sata.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-imx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx5/crm_regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/crm_regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/iomux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6-ddr.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6-pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6sx-ddr.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6sx_pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram.h
/rk3399_rockchip-uboot/board/aristainetos/Kconfig
/rk3399_rockchip-uboot/board/aristainetos/MAINTAINERS
/rk3399_rockchip-uboot/board/aristainetos/Makefile
/rk3399_rockchip-uboot/board/aristainetos/aristainetos.c
/rk3399_rockchip-uboot/board/aristainetos/aristainetos.cfg
/rk3399_rockchip-uboot/board/aristainetos/clocks.cfg
/rk3399_rockchip-uboot/board/aristainetos/ddr-setup.cfg
/rk3399_rockchip-uboot/board/aristainetos/mt41j128M.cfg
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6x.c
/rk3399_rockchip-uboot/board/embest/mx6boards/mx6boards.c
/rk3399_rockchip-uboot/board/freescale/mx31pdk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6sabresd/mx6sabresd.c
/rk3399_rockchip-uboot/board/freescale/mx6slevk/mx6slevk.c
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/Makefile
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx6sxsabresd/mx6sxsabresd.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/eeprom.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gsc.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/ventana_eeprom.h
/rk3399_rockchip-uboot/board/solidrun/hummingboard/hummingboard.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Makefile
/rk3399_rockchip-uboot/board/tqc/tqma6/README
/rk3399_rockchip-uboot/board/tqc/tqma6/clocks.cfg
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6_bb.h
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6_mba6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6q.cfg
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6s.cfg
board_f.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mini-X-1Gb_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/aristainetos_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_defconfig
/rk3399_rockchip-uboot/configs/qt840a_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/doc/README.kconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_internal.h
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_probe.c
/rk3399_rockchip-uboot/drivers/net/cpsw.c
/rk3399_rockchip-uboot/drivers/pci/pcie_imx.c
/rk3399_rockchip-uboot/drivers/power/pmic/pmic_pfuze100.c
/rk3399_rockchip-uboot/drivers/pwm/Makefile
/rk3399_rockchip-uboot/drivers/pwm/pwm-imx-util.c
/rk3399_rockchip-uboot/drivers/pwm/pwm-imx-util.h
/rk3399_rockchip-uboot/drivers/pwm/pwm-imx.c
/rk3399_rockchip-uboot/include/configs/aristainetos.h
/rk3399_rockchip-uboot/include/configs/embestmx6boards.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/imx6_spl.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/mx31pdk.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx6sxsabresd.h
/rk3399_rockchip-uboot/include/configs/mxs.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/scripts/multiconfig.sh
/rk3399_rockchip-uboot/test/image/test-fit.py
/rk3399_rockchip-uboot/tools/genboardscfg.py
74c0d75607-Aug-2014 Stephen Warren <swarren@nvidia.com>

usb: hub: don't check CONNECTION in hub_port_reset()

One specific USB 3.0 device behaves strangely when reset by
usb_new_device()'s call to hub_port_reset(). For some reason, the device
appears to b

usb: hub: don't check CONNECTION in hub_port_reset()

One specific USB 3.0 device behaves strangely when reset by
usb_new_device()'s call to hub_port_reset(). For some reason, the device
appears to briefly drop off the bus when this second bus reset is
executed, yet if we retry this loop, it'll eventually come back after
another two resets.

If USB bus reset is executed over and over within usb_new_device()'s call
to hub_port_reset(), I see the following sequence of results, which
repeats as long as you want:

1) STAT_C_CONNECTION = 1 STAT_CONNECTION = 0 USB_PORT_STAT_ENABLE 0
2) STAT_C_CONNECTION = 1 STAT_CONNECTION = 1 USB_PORT_STAT_ENABLE 0
3) STAT_C_CONNECTION = 1 STAT_CONNECTION = 1 USB_PORT_STAT_ENABLE 1

The device in question is a SanDisk Ultra USB 3.0 16GB memory stick with
USB VID/PID 0x0781/0x5581.

In order to allow this device to work with U-Boot, ignore the
{C_,}CONNECTION bits in the status/change registers, and only use the
ENABLE bit to determine if the reset was successful.

To be honest, extensive investigation has failed to determine why this
problem occurs. I'd love to know! I don't know if it's caused by:
* A HW bug in the device
* A HW bug in the Tegra USB controller
* A SW bug in the U-Boot Tegra USB driver
* A SW bug in the U-Boot USB core

This issue only occurs when the device's USB3 pins are attached to the
host; if only the USB2 pins are connected the issue does not occur. The
USB3 controller on Tegra is in reset, so is not actively communicating
with the device at all - a USB3 analyzer confirms this. Slightly
unplugging the device (so the USB3 pins don't contact) or using a USB2
cable or hub as an intermediary avoids the problem. For some reason,
the Linux kernel (either on the same Tegra board, or on an x86 host)
has no issue with the device, and I observe no disconnections during
reset.

This change won't affect any USB device that already works, since such
devices could not currently be triggering the error return this patch
removes, or they wouldn't be working currently.

However, this patch is quite reliable in practice, hence I hope it's
acceptable to solve the problem.

The only potential fallout I can see from this patch is:

* A broken device that triggers C_CONNECTION/!CONNECTION now causes the
loop in hub_port_reset() to run multiple times. If it never succeeds,
this will cause "usb start" to take roughly 1s extra to execute.

* If the user unplugs a device while hub_port_reset() is executing, and
very quickly swaps in a new device, hub_port_reset() might succeed on
the new device. This would mean that any information cached about the
original device (from the descriptor read in usb_new_device(), which
simply caches the max packet size) might be invalid, which would cause
problems talking to the new device. However, without this change, the
new device wouldn't work anyway, so this is probably not much of a
loss.

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

show more ...

97b9eb9e01-Aug-2014 Marek Vasut <marex@denx.de>

usb: Handle -ENODEV from usb_lowlevel_init()

As we support both Host and Device mode operation, an OTG controller
can return -ENODEV on a port which it found to be in Device mode during
Host mode sc

usb: Handle -ENODEV from usb_lowlevel_init()

As we support both Host and Device mode operation, an OTG controller
can return -ENODEV on a port which it found to be in Device mode during
Host mode scan for devices. In case -ENODEV is returned, print that the
port is not available and continue instead of screaming a bloody error
message.

Signed-off-by: Marek Vasut <marex@denx.de>

show more ...


/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun4i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun4i.h
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/Makefile
/rk3399_rockchip-uboot/board/sunxi/ahci.c
/rk3399_rockchip-uboot/board/sunxi/dram_a10_olinuxino_l.c
/rk3399_rockchip-uboot/board/sunxi/dram_a10s_olinuxino_m.c
/rk3399_rockchip-uboot/board/sunxi/dram_a13_olinuxino.c
/rk3399_rockchip-uboot/board/sunxi/dram_bananapi.c
/rk3399_rockchip-uboot/board/sunxi/dram_linksprite_pcduino3.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_1024_iow16.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_1024_iow8.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_512.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_384_1024_iow8.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun7i_384_1024_iow16.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun7i_384_512_busw16_iow16.c
usb.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mini-X-1Gb_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/qt840a_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/mtd/mtdcore.c
/rk3399_rockchip-uboot/drivers/mtd/mtdpart.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_base.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_ids.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/ubi.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/wl.c
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/fs/ubifs/super.c
/rk3399_rockchip-uboot/include/ahci.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/sun4i.h
/rk3399_rockchip-uboot/include/configs/sun5i.h
/rk3399_rockchip-uboot/include/configs/sun7i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/linux/mtd/mtd.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/mtd/ubi-user.h
/rk3399_rockchip-uboot/tools/patman/gitutil.py
fe20a81a22-Aug-2014 Simon Glass <sjg@chromium.org>

Fix test failure caused by bad handling of ramdisk

Commit e3a5bbce broke the FIT image tests by not loading a ramdisk even if
a load address is provided in the FIT. The rationale was that a load add

Fix test failure caused by bad handling of ramdisk

Commit e3a5bbce broke the FIT image tests by not loading a ramdisk even if
a load address is provided in the FIT. The rationale was that a load address
of 0 should be considered to mean 'do not load'.

Add a new load operation which supports this feature, so that the ramdisk
will be loaded if a non-zero load address is provided.

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

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun4i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun4i.h
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/Makefile
/rk3399_rockchip-uboot/board/sunxi/ahci.c
/rk3399_rockchip-uboot/board/sunxi/dram_a10_olinuxino_l.c
/rk3399_rockchip-uboot/board/sunxi/dram_a10s_olinuxino_m.c
/rk3399_rockchip-uboot/board/sunxi/dram_a13_olinuxino.c
/rk3399_rockchip-uboot/board/sunxi/dram_bananapi.c
/rk3399_rockchip-uboot/board/sunxi/dram_linksprite_pcduino3.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_1024_iow16.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_1024_iow8.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_512.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_384_1024_iow8.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun7i_384_1024_iow16.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun7i_384_512_busw16_iow16.c
image-fit.c
image.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mini-X-1Gb_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/qt840a_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/mtd/mtdcore.c
/rk3399_rockchip-uboot/drivers/mtd/mtdpart.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_base.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_ids.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/ubi.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/wl.c
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/fs/ubifs/super.c
/rk3399_rockchip-uboot/include/ahci.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/sun4i.h
/rk3399_rockchip-uboot/include/configs/sun5i.h
/rk3399_rockchip-uboot/include/configs/sun7i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/linux/mtd/mtd.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/mtd/ubi-user.h
/rk3399_rockchip-uboot/scripts/setlocalversion
/rk3399_rockchip-uboot/tools/buildman/control.py
/rk3399_rockchip-uboot/tools/genboardscfg.py
/rk3399_rockchip-uboot/tools/patman/gitutil.py
ff94bc4024-Jun-2014 Heiko Schocher <hs@denx.de>

mtd, ubi, ubifs: resync with Linux-3.14

resync ubi subsystem with linux:

commit 455c6fdbd219161bd09b1165f11699d6d73de11c
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Sun Mar 30 20

mtd, ubi, ubifs: resync with Linux-3.14

resync ubi subsystem with linux:

commit 455c6fdbd219161bd09b1165f11699d6d73de11c
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Sun Mar 30 20:40:15 2014 -0700

Linux 3.14

A nice side effect of this, is we introduce UBI Fastmap support
to U-Boot.

Signed-off-by: Heiko Schocher <hs@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Sergey Lapin <slapin@ossfans.org>
Cc: Scott Wood <scottwood@freescale.com>
Cc: Joerg Krause <jkrause@posteo.de>

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/board/prodrive/alpr/nand.c
/rk3399_rockchip-uboot/board/socrates/nand.c
/rk3399_rockchip-uboot/board/tqc/tqm8272/nand.c
cmd_ubi.c
cmd_ubifs.c
/rk3399_rockchip-uboot/drivers/mtd/mtdconcat.c
/rk3399_rockchip-uboot/drivers/mtd/mtdcore.c
/rk3399_rockchip-uboot/drivers/mtd/mtdcore.h
/rk3399_rockchip-uboot/drivers/mtd/mtdpart.c
/rk3399_rockchip-uboot/drivers/mtd/nand/fsl_elbc_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/fsl_ifc_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/fsl_upm.c
/rk3399_rockchip-uboot/drivers/mtd/nand/mpc5121_nfc.c
/rk3399_rockchip-uboot/drivers/mtd/nand/mxc_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_base.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_bbt.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_ids.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_util.c
/rk3399_rockchip-uboot/drivers/mtd/nand/ndfc.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_base.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_bbt.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/samsung.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/Makefile
/rk3399_rockchip-uboot/drivers/mtd/ubi/attach.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/crc32.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/crc32table.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/debug.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/debug.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/eba.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/fastmap.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/io.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/kapi.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/misc.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/ubi-media.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/ubi.h
/rk3399_rockchip-uboot/drivers/mtd/ubi/upd.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/vmt.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/vtbl.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/wl.c
/rk3399_rockchip-uboot/drivers/usb/gadget/ether.c
/rk3399_rockchip-uboot/drivers/usb/gadget/storage_common.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/linux-compat.h
/rk3399_rockchip-uboot/drivers/video/exynos_dp.c
/rk3399_rockchip-uboot/drivers/video/exynos_mipi_dsi.c
/rk3399_rockchip-uboot/fs/ubifs/budget.c
/rk3399_rockchip-uboot/fs/ubifs/debug.c
/rk3399_rockchip-uboot/fs/ubifs/debug.h
/rk3399_rockchip-uboot/fs/ubifs/io.c
/rk3399_rockchip-uboot/fs/ubifs/key.h
/rk3399_rockchip-uboot/fs/ubifs/log.c
/rk3399_rockchip-uboot/fs/ubifs/lprops.c
/rk3399_rockchip-uboot/fs/ubifs/lpt.c
/rk3399_rockchip-uboot/fs/ubifs/lpt_commit.c
/rk3399_rockchip-uboot/fs/ubifs/master.c
/rk3399_rockchip-uboot/fs/ubifs/misc.h
/rk3399_rockchip-uboot/fs/ubifs/orphan.c
/rk3399_rockchip-uboot/fs/ubifs/recovery.c
/rk3399_rockchip-uboot/fs/ubifs/replay.c
/rk3399_rockchip-uboot/fs/ubifs/sb.c
/rk3399_rockchip-uboot/fs/ubifs/scan.c
/rk3399_rockchip-uboot/fs/ubifs/super.c
/rk3399_rockchip-uboot/fs/ubifs/tnc.c
/rk3399_rockchip-uboot/fs/ubifs/tnc_misc.c
/rk3399_rockchip-uboot/fs/ubifs/ubifs-media.h
/rk3399_rockchip-uboot/fs/ubifs/ubifs.c
/rk3399_rockchip-uboot/fs/ubifs/ubifs.h
/rk3399_rockchip-uboot/fs/yaffs2/ydirectenv.h
/rk3399_rockchip-uboot/include/linux/compat.h
/rk3399_rockchip-uboot/include/linux/err.h
/rk3399_rockchip-uboot/include/linux/list_sort.h
/rk3399_rockchip-uboot/include/linux/mtd/bbm.h
/rk3399_rockchip-uboot/include/linux/mtd/concat.h
/rk3399_rockchip-uboot/include/linux/mtd/flashchip.h
/rk3399_rockchip-uboot/include/linux/mtd/mtd.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/linux/mtd/partitions.h
/rk3399_rockchip-uboot/include/linux/mtd/ubi.h
/rk3399_rockchip-uboot/include/linux/rbtree.h
/rk3399_rockchip-uboot/include/linux/rbtree_augmented.h
/rk3399_rockchip-uboot/include/linux/usb/gadget.h
/rk3399_rockchip-uboot/include/mtd/mtd-abi.h
/rk3399_rockchip-uboot/include/mtd/ubi-user.h
/rk3399_rockchip-uboot/include/ubi_uboot.h
/rk3399_rockchip-uboot/include/usb/lin_gadget_compat.h
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/lib/linux_compat.c
/rk3399_rockchip-uboot/lib/list_sort.c
/rk3399_rockchip-uboot/lib/rbtree.c
00e3853218-Jul-2014 Tom Rini <trini@ti.com>

common/Makefile: Consolidate SPL ENV options, correct inclusion

CONFIG_SPL_NET_SUPPORT is not the only time we want SPL to ahve
environment, CONFIG_SPL_ENV_SUPPORT is when we want it.

Signed-off-by

common/Makefile: Consolidate SPL ENV options, correct inclusion

CONFIG_SPL_NET_SUPPORT is not the only time we want SPL to ahve
environment, CONFIG_SPL_ENV_SUPPORT is when we want it.

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

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/clock_sun4i.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun4i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/config.h
/rk3399_rockchip-uboot/arch/arm/lib/crt0.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/interrupts.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/board/keymile/kmp204x/kmp204x.c
/rk3399_rockchip-uboot/board/keymile/kmp204x/kmp204x.h
/rk3399_rockchip-uboot/board/keymile/kmp204x/qrio.c
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/Makefile
/rk3399_rockchip-uboot/board/sunxi/ahci.c
/rk3399_rockchip-uboot/board/sunxi/dram_a10_olinuxino_l.c
/rk3399_rockchip-uboot/board/sunxi/dram_a10s_olinuxino_m.c
/rk3399_rockchip-uboot/board/sunxi/dram_a13_olinuxino.c
/rk3399_rockchip-uboot/board/sunxi/dram_bananapi.c
/rk3399_rockchip-uboot/board/sunxi/dram_linksprite_pcduino3.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_1024_iow16.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_1024_iow8.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_360_512.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun4i_384_1024_iow8.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun7i_384_1024_iow16.c
/rk3399_rockchip-uboot/board/sunxi/dram_sun7i_384_512_busw16_iow16.c
Makefile
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXinoM_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_FEL_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000G_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mini-X-1Gb_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/qt840a_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/doc/README.SPL
/rk3399_rockchip-uboot/doc/device-tree-bindings/spi/spi-bus.txt
/rk3399_rockchip-uboot/doc/feature-removal-schedule.txt
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_spi.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_ops.c
/rk3399_rockchip-uboot/drivers/net/fm/memac_phy.c
/rk3399_rockchip-uboot/drivers/net/fm/tgec_phy.c
/rk3399_rockchip-uboot/drivers/spi/exynos_spi.c
/rk3399_rockchip-uboot/drivers/spi/mxc_spi.c
/rk3399_rockchip-uboot/drivers/spi/spi.c
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/include/ahci.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/km/kmp204x-common.h
/rk3399_rockchip-uboot/include/configs/sun4i.h
/rk3399_rockchip-uboot/include/configs/sun5i.h
/rk3399_rockchip-uboot/include/configs/sun7i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/tseries.h
/rk3399_rockchip-uboot/include/phy.h
/rk3399_rockchip-uboot/include/watchdog.h
7bee1c9125-Aug-2014 Tom Rini <trini@ti.com>

Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging

5ff10aa722-Aug-2014 Thomas Chou <thomas@wytron.com.tw>

nios2: add generic board support

This patch implements the generic board init as described in
doc/README.generic-board.

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Signed-off-by: Scott McNutt

nios2: add generic board support

This patch implements the generic board init as described in
doc/README.generic-board.

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Signed-off-by: Scott McNutt <smcnutt@psyent.com>
Reviewed-by: Stefan Roese <sr@denx.de>

show more ...

e6c88a6b15-Aug-2014 Bryan Wu <cooloney@gmail.com>

bootm: make sure pass NULL when argc < 1

arg[0] might not be NULL even if argc < 1, so fix this as before.

Signed-off-by: Bryan Wu <pengw@nvidia.com>

6c454fed15-Aug-2014 Bryan Wu <cooloney@gmail.com>

image: fix bootm failure for FIT image

Commit b3dd64f5d537 "bootm: use genimg_get_kernel_addr()" introduced
a bug for booting FIT image. It's because calling fit_parse_config()
twice will give us wr

image: fix bootm failure for FIT image

Commit b3dd64f5d537 "bootm: use genimg_get_kernel_addr()" introduced
a bug for booting FIT image. It's because calling fit_parse_config()
twice will give us wrong value in img_addr.

Add a new function genimg_get_kernel_addr_fit() whichl will always
return fit_uname_config and fit_uname_kernel for CONFIG_FIT.
genimg_get_kernel_addr() will ignore those to parameters.

Reported-by: York Sun <yorksun@freescale.com>
Signed-off-by: Bryan Wu <pengw@nvidia.com>

show more ...

b1ba62d406-Aug-2014 Hans de Goede <hdegoede@redhat.com>

pxe: Allow use of environment variables in append string

Use cli_simple_process_macros, so that environment
variables (e.g. ${console}) can be used in append strings.

Signed-off-by: Hans de Goede <

pxe: Allow use of environment variables in append string

Use cli_simple_process_macros, so that environment
variables (e.g. ${console}) can be used in append strings.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>

show more ...

1...<<919293949596979899100>>...211