History log of /rk3399_rockchip-uboot/common/ (Results 2726 – 2750 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
b8521b7421-May-2013 Masahiro Yamada <yamada.m@jp.panasonic.com>

common: board_f: Do not call board_postclk_init twice

The generic-board board_init_f function called board_postclk_init twice.

The first one came from arch/arm/lib/board.c, while the second one
fro

common: board_f: Do not call board_postclk_init twice

The generic-board board_init_f function called board_postclk_init twice.

The first one came from arch/arm/lib/board.c, while the second one
from arch/powerpc/lib/board.c.

This commit deletes the first occurrence.
In addition, the second get_clocks call is moved after
board_postclk_init in order to keep the function call order
both for ARM and PowerPC.
ARM board calles get_clocks function after board_postclk_init.

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

show more ...

c6ac13bd16-May-2013 Simon Glass <sjg@chromium.org>

sandbox: image: Adjust FIT image printing to work with sandbox

Use map_sysmem() to convert from address to pointer, so that sandbox can
print FIT information without crashing.

Signed-off-by: Simon

sandbox: image: Adjust FIT image printing to work with sandbox

Use map_sysmem() to convert from address to pointer, so that sandbox can
print FIT information without crashing.

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

show more ...

4651800d16-May-2013 Simon Glass <sjg@chromium.org>

image: Use fit_image_load() to load kernel

Use the new common code to load a kernel. The functionality should not
change.

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

aed161e516-May-2013 Simon Glass <sjg@chromium.org>

sandbox: Adjust bootm command to work with sandbox

Use map_sysmem() when converting from addresses to pointers, so that
bootm can be used with sandbox.

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

53f375fa16-May-2013 Simon Glass <sjg@chromium.org>

image: Use fit_image_load() to load FDT

Use the new common code to load a flat device tree. Also fix up a few casts
so that this code works with sandbox. Other than that the functionality
should not

image: Use fit_image_load() to load FDT

Use the new common code to load a flat device tree. Also fix up a few casts
so that this code works with sandbox. Other than that the functionality
should not change.

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

show more ...

a51ec63b16-May-2013 Simon Glass <sjg@chromium.org>

image: Use fit_image_load() to load ramdisk

Use the new common code to load a ramdisk. The functionality should not
change.

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

782cfbb216-May-2013 Simon Glass <sjg@chromium.org>

image: Introduce fit_image_load() to load images from FITs

At present code to load an image from a FIT is duplicated in the three
places where it is needed (kernel, fdt, ramdisk).

The differences b

image: Introduce fit_image_load() to load images from FITs

At present code to load an image from a FIT is duplicated in the three
places where it is needed (kernel, fdt, ramdisk).

The differences between these different code copies is fairly minor.
Create a new function in the fit code which can handle any of the
requirements of those cases.

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

show more ...

d34d186e15-May-2013 Simon Glass <sjg@chromium.org>

main: Add debug_bootkeys to avoid #ifdefs

Define a simple debug condition at the top of the file, to avoid using
lots of #ifdefs later on.

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

main: Add debug_bootkeys to avoid #ifdefs

Define a simple debug condition at the top of the file, to avoid using
lots of #ifdefs later on.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

3e40887315-May-2013 Simon Glass <sjg@chromium.org>

main: Add debug_parser() to avoid #ifdefs

Define a simple debug condition at the top of the file, to avoid using
lots of #ifdefs later on.

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

main: Add debug_parser() to avoid #ifdefs

Define a simple debug condition at the top of the file, to avoid using
lots of #ifdefs later on.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

fbcdf32a15-May-2013 Simon Glass <sjg@chromium.org>

main: Correct header order

The headers are a bit out of order, so fix them.

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

4933381a15-May-2013 Simon Glass <sjg@chromium.org>

main: Fix typos and checkpatch warnings in command line reading

There are a few over-long lines and other checkpatch problems in this area
of the code. Prepare the ground for the next patch by tidyi

main: Fix typos and checkpatch warnings in command line reading

There are a few over-long lines and other checkpatch problems in this area
of the code. Prepare the ground for the next patch by tidying these up.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

f2abca8415-May-2013 Simon Glass <sjg@chromium.org>

main: Use get/setenv_ulong()

These functions are now available, so use them to avoid extra code here.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.

main: Use get/setenv_ulong()

These functions are now available, so use them to avoid extra code here.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

bc2b4c2715-May-2013 Simon Glass <sjg@chromium.org>

main: Move boot_delay code into its own function

Move this code into its own function, since it clutters up main_loop().

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

063ae00615-May-2013 Simon Glass <sjg@chromium.org>

main: Separate out the two abortboot() functions

There are two implementations of abortboot(). Turn these into two separate
functions, and create a single abortboot() which calls either one or the
o

main: Separate out the two abortboot() functions

There are two implementations of abortboot(). Turn these into two separate
functions, and create a single abortboot() which calls either one or the
other.

Also it seems that nothing uses abortboot() outside main, so make it static.

At this point there is no further use of CONFIG_MENU in main.c.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

ea5427e215-May-2013 Simon Glass <sjg@chromium.org>

net: Add prototype for update_tftp

This function should be declared in net.h.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

60b6614a26-May-2013 Jagannadha Sutradharudu Teki <jaganna@xilinx.com>

cmd_sf: Add print mesgs on sf read/write commands

This patch adds a print messages while using 'sf read' and
'sf write' commands to make sure that how many bytes read/written
from/into flash device.

cmd_sf: Add print mesgs on sf read/write commands

This patch adds a print messages while using 'sf read' and
'sf write' commands to make sure that how many bytes read/written
from/into flash device.

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Acked-by: Tom Rini <trini@ti.com>

show more ...

96bbf55625-May-2013 Jagannadha Sutradharudu Teki <jaganna@xilinx.com>

cmd_sf: Add print mesg for 'sf erase' command

This patch adds a print messages while using 'sf erase' command
to make sure that how many bytes erased in flash device.

Signed-off-by: Jagannadha Sutr

cmd_sf: Add print mesg for 'sf erase' command

This patch adds a print messages while using 'sf erase' command
to make sure that how many bytes erased in flash device.

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Acked-by: Tom Rini <trini@ti.com>

show more ...


/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ddr-gen3.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/portals.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/release.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t4240_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/main.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/board/freescale/b4860qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/eth.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t4qds/t4qds.c
/rk3399_rockchip-uboot/boards.cfg
cmd_sf.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/ftsdc010_mci.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spansion.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi_flash.c
/rk3399_rockchip-uboot/drivers/mtd/spi/winbond.c
/rk3399_rockchip-uboot/drivers/net/fm/Makefile
/rk3399_rockchip-uboot/drivers/net/fm/eth.c
/rk3399_rockchip-uboot/drivers/net/fm/fm.h
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/t4240.c
/rk3399_rockchip-uboot/drivers/net/phy/vitesse.c
/rk3399_rockchip-uboot/drivers/spi/exynos_spi.c
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/faraday/ftsdc010.h
/rk3399_rockchip-uboot/include/fm_eth.h
/rk3399_rockchip-uboot/include/phy.h
/rk3399_rockchip-uboot/include/spi.h
d6639d1031-May-2013 Tom Rini <trini@ti.com>

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


/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm925t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/s3c44b0/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/relocate.S
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/cam_enc_4xx.c
/rk3399_rockchip-uboot/board/freescale/mx31pdk/mx31pdk.c
/rk3399_rockchip-uboot/board/karo/tx25/tx25.c
cmd_nand.c
cmd_onenand.c
env_onenand.c
/rk3399_rockchip-uboot/drivers/mtd/Makefile
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.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/atmel_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/bfin_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/davinci_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/diskonchip.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/fsmc_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/jz4740_nand.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/mxs_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/nand/nomadik.c
/rk3399_rockchip-uboot/drivers/mtd/nand/omap_gpmc.c
/rk3399_rockchip-uboot/drivers/mtd/nand/s3c2410_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/tegra_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/tegra_nand.h
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_base.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_bbt.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/eba.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/vtbl.c
/rk3399_rockchip-uboot/fs/yaffs2/yaffs_mtdif.c
/rk3399_rockchip-uboot/fs/yaffs2/yaffs_mtdif2.c
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/linux/mtd/bbm.h
/rk3399_rockchip-uboot/include/linux/mtd/mtd.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/linux/string.h
/rk3399_rockchip-uboot/include/mtd/mtd-abi.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/lib/string.c
dfe64e2c14-Jan-2013 Sergey Lapin <slapin@ossfans.org>

mtd: resync with Linux-3.7.1

This patch is essentially an update of u-boot MTD subsystem to
the state of Linux-3.7.1 with exclusion of some bits:

- the update is concentrated on NAND, no onenand or

mtd: resync with Linux-3.7.1

This patch is essentially an update of u-boot MTD subsystem to
the state of Linux-3.7.1 with exclusion of some bits:

- the update is concentrated on NAND, no onenand or CFI/NOR/SPI
flashes interfaces are updated EXCEPT for API changes.

- new large NAND chips support is there, though some updates
have got in Linux-3.8.-rc1, (which will follow on top of this patch).

To produce this update I used tag v3.7.1 of linux-stable repository.

The update was made using application of relevant patches,
with changes relevant to U-Boot-only stuff sticked together
to keep bisectability. Then all changes were grouped together
to this patch.

Signed-off-by: Sergey Lapin <slapin@ossfans.org>
[scottwood@freescale.com: some eccstrength and build fixes]
Signed-off-by: Scott Wood <scottwood@freescale.com>

show more ...


/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/cam_enc_4xx.c
cmd_nand.c
cmd_onenand.c
env_onenand.c
/rk3399_rockchip-uboot/drivers/mtd/Makefile
/rk3399_rockchip-uboot/drivers/mtd/cfi_mtd.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/atmel_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/bfin_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/davinci_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/diskonchip.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/fsmc_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/jz4740_nand.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/mxs_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/nand/nomadik.c
/rk3399_rockchip-uboot/drivers/mtd/nand/omap_gpmc.c
/rk3399_rockchip-uboot/drivers/mtd/nand/s3c2410_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/tegra_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/tegra_nand.h
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_base.c
/rk3399_rockchip-uboot/drivers/mtd/onenand/onenand_bbt.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/eba.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/vtbl.c
/rk3399_rockchip-uboot/fs/yaffs2/yaffs_mtdif.c
/rk3399_rockchip-uboot/fs/yaffs2/yaffs_mtdif2.c
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/linux/mtd/bbm.h
/rk3399_rockchip-uboot/include/linux/mtd/mtd.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/linux/string.h
/rk3399_rockchip-uboot/include/mtd/mtd-abi.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/lib/string.c
a19b0dd630-May-2013 Albert ARIBAUD <albert.u.boot@aribaud.net>

Merge branch 'u-boot/master' into 'u-boot-arm/master'

Conflicts:
common/cmd_fpga.c
drivers/usb/host/ohci-at91.c


/rk3399_rockchip-uboot/.gitignore
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_platform-powerpc.c
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9n12_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/reset.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/sama5d3_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/at91/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/tegra-common/ap.c
/rk3399_rockchip-uboot/arch/arm/cpu/tegra-common/clock.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_common.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_dbu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91_pmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9_matrix.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9x5.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/at91sam9x5_matrix.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/clk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/sama5d3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/sama5d3_smc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/bootm.h
/rk3399_rockchip-uboot/arch/arm/include/asm/u-boot-arm.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/bootm-fdt.c
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/avr32/lib/board.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/Makefile
/rk3399_rockchip-uboot/arch/blackfin/cpu/cpu.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/gpio.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/initcode.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/start.S
/rk3399_rockchip-uboot/arch/blackfin/include/asm/clock.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/dma.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/gpio.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf561/BF561_def.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/mach-bf609/BF609_def.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/portmux.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/serial.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/serial1.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/serial4.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/soft_switch.h
/rk3399_rockchip-uboot/arch/blackfin/lib/board.c
/rk3399_rockchip-uboot/arch/blackfin/lib/clocks.c
/rk3399_rockchip-uboot/arch/blackfin/lib/string.c
/rk3399_rockchip-uboot/arch/m68k/lib/bootm.c
/rk3399_rockchip-uboot/arch/microblaze/include/asm/gpio.h
/rk3399_rockchip-uboot/arch/microblaze/lib/bootm.c
/rk3399_rockchip-uboot/arch/nds32/include/asm/u-boot-nds32.h
/rk3399_rockchip-uboot/arch/nds32/lib/board.c
/rk3399_rockchip-uboot/arch/openrisc/config.mk
/rk3399_rockchip-uboot/arch/openrisc/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init_early.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ddr-gen3.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mp.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/portals.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/release.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t1040_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t1040_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t4240_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/main.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_law.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_serdes.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/arch/powerpc/lib/bootm.c
/rk3399_rockchip-uboot/arch/sparc/lib/bootm.c
/rk3399_rockchip-uboot/arch/x86/cpu/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/coreboot.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/timestamp.c
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/interrupts.c
/rk3399_rockchip-uboot/arch/x86/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-coreboot/timestamp.h
/rk3399_rockchip-uboot/arch/x86/include/asm/init_helpers.h
/rk3399_rockchip-uboot/arch/x86/include/asm/pci.h
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot-x86.h
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/bootm.c
/rk3399_rockchip-uboot/arch/x86/lib/cmd_boot.c
/rk3399_rockchip-uboot/arch/x86/lib/init_helpers.c
/rk3399_rockchip-uboot/arch/x86/lib/pcat_timer.c
/rk3399_rockchip-uboot/arch/x86/lib/physmem.c
/rk3399_rockchip-uboot/arch/x86/lib/relocate.c
/rk3399_rockchip-uboot/arch/x86/lib/tsc_timer.c
/rk3399_rockchip-uboot/arch/x86/lib/zimage.c
/rk3399_rockchip-uboot/board/LaCie/net2big_v2/kwbimage.cfg
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/kwbimage-is2.cfg
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/kwbimage-ns2l.cfg
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/kwbimage.cfg
/rk3399_rockchip-uboot/board/LaCie/wireless_space/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/dreamplug/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/guruplug/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/openrd/kwbimage.cfg
/rk3399_rockchip-uboot/board/Marvell/rd6281a/kwbimage.cfg
/rk3399_rockchip-uboot/board/Seagate/dockstar/kwbimage.cfg
/rk3399_rockchip-uboot/board/Seagate/goflexhome/Makefile
/rk3399_rockchip-uboot/board/Seagate/goflexhome/goflexhome.c
/rk3399_rockchip-uboot/board/Seagate/goflexhome/kwbimage.cfg
/rk3399_rockchip-uboot/board/armltd/vexpress/Makefile
/rk3399_rockchip-uboot/board/armltd/vexpress/vexpress_common.c
/rk3399_rockchip-uboot/board/atmel/at91sam9260ek/at91sam9260ek.c
/rk3399_rockchip-uboot/board/atmel/at91sam9n12ek/Makefile
/rk3399_rockchip-uboot/board/atmel/at91sam9n12ek/at91sam9n12ek.c
/rk3399_rockchip-uboot/board/atmel/sama5d3xek/Makefile
/rk3399_rockchip-uboot/board/atmel/sama5d3xek/sama5d3xek.c
/rk3399_rockchip-uboot/board/bf609-ezkit/soft_switch.c
/rk3399_rockchip-uboot/board/bf609-ezkit/soft_switch.h
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6dl.cfg
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6dl2g.cfg
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6q.cfg
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6q2g.cfg
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6s.cfg
/rk3399_rockchip-uboot/board/boundary/nitrogen6x/nitrogen6s1g.cfg
/rk3399_rockchip-uboot/board/buffalo/lsxl/kwbimage-lschl.cfg
/rk3399_rockchip-uboot/board/buffalo/lsxl/kwbimage-lsxhl.cfg
/rk3399_rockchip-uboot/board/cloudengines/pogo_e02/kwbimage.cfg
/rk3399_rockchip-uboot/board/d-link/dns325/kwbimage.cfg
/rk3399_rockchip-uboot/board/esg/ima3-mx53/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds_crossbar_con.h
/rk3399_rockchip-uboot/board/freescale/b4860qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/eth_b4860qds.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/law.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/tlb.c
/rk3399_rockchip-uboot/board/freescale/common/qixis.h
/rk3399_rockchip-uboot/board/freescale/corenet_ds/eth_superhydra.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/pbi.cfg
/rk3399_rockchip-uboot/board/freescale/corenet_ds/rcw_p5040ds.cfg
/rk3399_rockchip-uboot/board/freescale/imx/ddr/mx6q_4x_mt41j128.cfg
/rk3399_rockchip-uboot/board/freescale/mx25pdk/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx51evk/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx53ard/imximage_dd3.cfg
/rk3399_rockchip-uboot/board/freescale/mx53evk/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx53loco/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx53smd/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx6qarm2/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/p2041rdb/p2041rdb.c
/rk3399_rockchip-uboot/board/freescale/t4qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/eth.c
/rk3399_rockchip-uboot/board/freescale/t4qds/law.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t4qds/t4_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t4qds/t4_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t4qds/t4qds.c
/rk3399_rockchip-uboot/board/freescale/t4qds/tlb.c
/rk3399_rockchip-uboot/board/genesi/mx51_efikamx/imximage_mx.cfg
/rk3399_rockchip-uboot/board/genesi/mx51_efikamx/imximage_sb.cfg
/rk3399_rockchip-uboot/board/iomega/iconnect/kwbimage.cfg
/rk3399_rockchip-uboot/board/karo/tk71/kwbimage.cfg
/rk3399_rockchip-uboot/board/keymile/km_arm/kwbimage-memphis.cfg
/rk3399_rockchip-uboot/board/keymile/km_arm/kwbimage.cfg
/rk3399_rockchip-uboot/board/keymile/km_arm/kwbimage_128M16_1.cfg
/rk3399_rockchip-uboot/board/keymile/km_arm/kwbimage_256M8_1.cfg
/rk3399_rockchip-uboot/board/nvidia/beaver/Makefile
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/kwbimage.cfg
/rk3399_rockchip-uboot/board/ttcontrol/vision2/imximage_hynix.cfg
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/microblaze-generic.c
/rk3399_rockchip-uboot/boards.cfg
Makefile
board_f.c
board_r.c
bootstage.c
cmd_bdinfo.c
cmd_bootm.c
cmd_fpga.c
cmd_mem.c
cmd_nvedit.c
cmd_softswitch.c
cmd_source.c
cmd_usb.c
cmd_ximg.c
fdt_support.c
hash.c
image-fdt.c
image-fit.c
image.c
spl/Makefile
spl/spl_mmc.c
update.c
usb.c
usb_hub.c
usb_kbd.c
usb_storage.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/doc/README.at91
/rk3399_rockchip-uboot/doc/README.b4860qds
/rk3399_rockchip-uboot/doc/README.fdt-control
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/README.t4240qds
/rk3399_rockchip-uboot/doc/README.ubi
/rk3399_rockchip-uboot/doc/README.watchdog
/rk3399_rockchip-uboot/doc/SPL/README.am335x-network
/rk3399_rockchip-uboot/doc/driver-model/UDM-pci.txt
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/adi_gpio2.c
/rk3399_rockchip-uboot/drivers/gpio/xilinx_gpio.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/davinci_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/ftsdc010_mci.c
/rk3399_rockchip-uboot/drivers/mmc/gen_atmel_mci.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/mv_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/s5p_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/spear_sdhci.c
/rk3399_rockchip-uboot/drivers/mtd/cfi_flash.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spansion.c
/rk3399_rockchip-uboot/drivers/net/bfin_mac.c
/rk3399_rockchip-uboot/drivers/net/fm/Makefile
/rk3399_rockchip-uboot/drivers/net/fm/b4860.c
/rk3399_rockchip-uboot/drivers/net/fm/eth.c
/rk3399_rockchip-uboot/drivers/net/fm/fm.h
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/t4240.c
/rk3399_rockchip-uboot/drivers/net/phy/teranetics.c
/rk3399_rockchip-uboot/drivers/net/phy/vitesse.c
/rk3399_rockchip-uboot/drivers/net/smc911x.h
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_bfin.c
/rk3399_rockchip-uboot/drivers/spi/atmel_spi.c
/rk3399_rockchip-uboot/drivers/spi/atmel_spi.h
/rk3399_rockchip-uboot/drivers/spi/bfin_spi.c
/rk3399_rockchip-uboot/drivers/usb/eth/smsc95xx.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-at91.c
/rk3399_rockchip-uboot/drivers/watchdog/Makefile
/rk3399_rockchip-uboot/drivers/watchdog/bfin_wdt.c
/rk3399_rockchip-uboot/fs/ext4/dev.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.h
/rk3399_rockchip-uboot/fs/ext4/ext4_journal.c
/rk3399_rockchip-uboot/fs/ext4/ext4_write.c
/rk3399_rockchip-uboot/fs/ext4/ext4fs.c
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/atmel_mci.h
/rk3399_rockchip-uboot/include/bootstage.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/at91sam9260ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9n12ek.h
/rk3399_rockchip-uboot/include/configs/bf527-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf537-stamp.h
/rk3399_rockchip-uboot/include/configs/bf548-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf561-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf609-ezkit.h
/rk3399_rockchip-uboot/include/configs/bfin_adi_common.h
/rk3399_rockchip-uboot/include/configs/coreboot.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/goflexhome.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/sama5d3xek.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/configs/tegra-common-post.h
/rk3399_rockchip-uboot/include/configs/tegra114-common.h
/rk3399_rockchip-uboot/include/configs/tegra20-common.h
/rk3399_rockchip-uboot/include/configs/tegra30-common.h
/rk3399_rockchip-uboot/include/configs/vexpress_ca15_tc2.h
/rk3399_rockchip-uboot/include/configs/vexpress_ca5x2.h
/rk3399_rockchip-uboot/include/configs/vexpress_ca9x4.h
/rk3399_rockchip-uboot/include/configs/vexpress_common.h
/rk3399_rockchip-uboot/include/ext4fs.h
/rk3399_rockchip-uboot/include/ext_common.h
/rk3399_rockchip-uboot/include/faraday/ftsdc010.h
/rk3399_rockchip-uboot/include/fdt.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/fm_eth.h
/rk3399_rockchip-uboot/include/hash.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/libfdt.h
/rk3399_rockchip-uboot/include/libfdt_env.h
/rk3399_rockchip-uboot/include/lmb.h
/rk3399_rockchip-uboot/include/mmc.h
/rk3399_rockchip-uboot/include/mtd/cfi_flash.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/phy.h
/rk3399_rockchip-uboot/include/ppc_asm.tmpl
/rk3399_rockchip-uboot/include/usb.h
/rk3399_rockchip-uboot/include/usb_defs.h
/rk3399_rockchip-uboot/include/watchdog.h
/rk3399_rockchip-uboot/lib/hashtable.c
/rk3399_rockchip-uboot/lib/libfdt/fdt.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_ro.c
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/aisimage.c
/rk3399_rockchip-uboot/tools/buildman/control.py
/rk3399_rockchip-uboot/tools/fit_image.c
/rk3399_rockchip-uboot/tools/image-host.c
/rk3399_rockchip-uboot/tools/mkimage.h
/rk3399_rockchip-uboot/tools/patman/gitutil.py
/rk3399_rockchip-uboot/tools/patman/patman.py
/rk3399_rockchip-uboot/tools/patman/series.py
e793946414-May-2013 York Sun <yorksun@freescale.com>

common: Update cmd_bdinfo for PPC

Add board detail function to print more individual board information.

Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Andy Fleming <afleming@freesca

common: Update cmd_bdinfo for PPC

Add board detail function to print more individual board information.

Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>

show more ...

53237afe20-May-2013 Masahiro Yamada <yamada.m@jp.panasonic.com>

cmd_mem: fix cp command

The "cp" command has not worked since
commit 0628ab8ec59834f98ede267edd21ddb8ba0bb57b,
because of the following lines, which set the destination
and the source to the same ad

cmd_mem: fix cp command

The "cp" command has not worked since
commit 0628ab8ec59834f98ede267edd21ddb8ba0bb57b,
because of the following lines, which set the destination
and the source to the same address.

buf = map_sysmem(addr, bytes);
src = map_sysmem(addr, bytes);

Tested-by: Tom Rini <trini@ti.com>
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

show more ...

e834402f26-Feb-2013 Harvey Chapman <hchapman@3gfp.com>

nand: adjust erase/read/write partition/chip size for bad blocks

Adjust the sizes calculated for whole partition/chip operations by
removing the size of bad blocks so we don't try to erase/read/writ

nand: adjust erase/read/write partition/chip size for bad blocks

Adjust the sizes calculated for whole partition/chip operations by
removing the size of bad blocks so we don't try to erase/read/write
past a partition/chip boundary.

Signed-off-by: Harvey Chapman <hchapman@3gfp.com>

show more ...

5e57454630-Apr-2013 Doug Anderson <dianders@chromium.org>

fdt_support: Use CONFIG_NR_DRAM_BANKS if defined

It appears that there are some cases where we have more than 4 banks
of memory. Use CONFIG_NR_DRAM_BANKS if it's defined to handle this.
This will t

fdt_support: Use CONFIG_NR_DRAM_BANKS if defined

It appears that there are some cases where we have more than 4 banks
of memory. Use CONFIG_NR_DRAM_BANKS if it's defined to handle this.
This will take up a little extra stack space (64 bytes extra if we go
up to 8 banks), but that seems OK.

Signed-off-by: Doug Anderson <dianders@chromium.org>

show more ...

a558ad7117-Jan-2012 Doug Anderson <dianders@chromium.org>

bootm: Avoid 256-byte overflow in fixup_silent_linux()

This makes fixup_silent_linux() use malloc() to allocate its
working space, meaning that our maximum kernel command line
should only be limited

bootm: Avoid 256-byte overflow in fixup_silent_linux()

This makes fixup_silent_linux() use malloc() to allocate its
working space, meaning that our maximum kernel command line
should only be limited by malloc(). Previously it was silently
overflowing the stack.

Note that nothing about this change increases the kernel's maximum
command line length. If you have a command line that is >256
bytes it's up to you to make sure that kernel can handle it.

Signed-off-by: Doug Anderson <dianders@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ddr-gen3.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/portals.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/release.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t4240_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/main.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/board/freescale/b4860qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/eth.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t4qds/t4qds.c
/rk3399_rockchip-uboot/boards.cfg
cmd_bootm.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/ftsdc010_mci.c
/rk3399_rockchip-uboot/drivers/net/fm/Makefile
/rk3399_rockchip-uboot/drivers/net/fm/eth.c
/rk3399_rockchip-uboot/drivers/net/fm/fm.h
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/t4240.c
/rk3399_rockchip-uboot/drivers/net/phy/vitesse.c
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/faraday/ftsdc010.h
/rk3399_rockchip-uboot/include/fm_eth.h
/rk3399_rockchip-uboot/include/phy.h

1...<<101102103104105106107108109110>>...211