History log of /rk3399_rockchip-uboot/include/common.h (Results 476 – 500 of 698)
Revision Date Author Comments
# 4b7a6dd8 25-Apr-2008 Wolfgang Denk <wd@denx.de>

Merge branch 'master' of /home/wd/git/u-boot/lwmon5

Conflicts:

common/cmd_bootm.c
common/cmd_log.c
include/common.h
post/board/lwmon5/Makefile
post/board/lwmon5/dsp.c
post/board/lwmon5/dspic.

Merge branch 'master' of /home/wd/git/u-boot/lwmon5

Conflicts:

common/cmd_bootm.c
common/cmd_log.c
include/common.h
post/board/lwmon5/Makefile
post/board/lwmon5/dsp.c
post/board/lwmon5/dspic.c
post/board/lwmon5/fpga.c
post/board/lwmon5/gdc.c
post/board/lwmon5/sysmon.c
post/board/lwmon5/watchdog.c

Signed-off-by: Wolfgang Denk <wd@denx.de>

show more ...


# 215b01bb 22-Apr-2008 Bartlomiej Sieka <tur@semihalf.com>

Add support for calculating hashes with watchdog triggering

Implement watchodg-aware variants of hash calculation functions:
- crc32_wd()
- md5_wd()
- sha1_csum_wd()
The above functions calculate th

Add support for calculating hashes with watchdog triggering

Implement watchodg-aware variants of hash calculation functions:
- crc32_wd()
- md5_wd()
- sha1_csum_wd()
The above functions calculate the hash of the input buffer in chunks,
triggering the watchdog after processing each chunk. The chunk size
is given as a function call parameter.

Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>

show more ...


# 2ef1d9b6 19-Apr-2008 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

Fix show_boot_progress prototype

in commit fad634071 "make show_boot_progress () weak."
show_boot_progress is supposed to be declared as weak but declared as
inline instead.

Signed-off-by: Jean-Chr

Fix show_boot_progress prototype

in commit fad634071 "make show_boot_progress () weak."
show_boot_progress is supposed to be declared as weak but declared as
inline instead.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

show more ...


# 022f1216 21-Apr-2008 Kumar Gala <galak@kernel.crashing.org>

85xx: Round up frequency calculations to get reasonable output

eg. because of rounding error we can get 799Mhz instead of 800Mhz.

Introduced DIV_ROUND_UP and roundup taken from linux kernel.

Signe

85xx: Round up frequency calculations to get reasonable output

eg. because of rounding error we can get 799Mhz instead of 800Mhz.

Introduced DIV_ROUND_UP and roundup taken from linux kernel.

Signed-off-by: Dejan Minic <minic@freescale.com>
Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Andy Fleming <afleming@freescale.com>

show more ...


# 89cdab78 31-Mar-2008 Mike Frysinger <vapier@gentoo.org>

crc32: use uint32_t rather than unsigned long

The envcrc.c does sizeof(unsigned long) when calculating the crc, but
this is done with the build toolchain instead of the target tool
chain, so if the

crc32: use uint32_t rather than unsigned long

The envcrc.c does sizeof(unsigned long) when calculating the crc, but
this is done with the build toolchain instead of the target tool
chain, so if the build is a 64bit system but the target is 32bits,
the size will obviously be wrong. This converts all unsigned long
stuff related to crc32 to uint32_t types. Compile tested only: output
of ./tools/envcrc when run on a 32bit build system matches that of a
64bit build system.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

show more ...


# 2d2b994a 31-Mar-2008 Yuri Tikhonov <yur@emcraft.com>

POST: move CONFIG_POST to Makefiles

Introduce the new logical option CONFIG_HAS_POST which is set when the
platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
to determine shoul

POST: move CONFIG_POST to Makefiles

Introduce the new logical option CONFIG_HAS_POST which is set when the
platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
to determine should the POST libs be compiled for the selected target
platform, or not.

To avoid breaking u-boot linking process, the empty post/libpost.a file is
created for platforms which do not have POSTs.

Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>

show more ...


# c0559be3 14-Apr-2008 Joakim Tjernlund <joakim.tjernlund@transmode.se>

Change env_get_char from a global function ptr to a function.

This avoids an early global data reference.

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>


# 3596d55e 29-Mar-2008 Gerald Van Baren <vanbaren@cideas.com>

Merge git://www.denx.de/git/u-boot into uboot


# 38b189fe 26-Mar-2008 Wolfgang Denk <wd@denx.de>

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


# 79679d80 26-Mar-2008 Kumar Gala <galak@kernel.crashing.org>

85xx: Update multicore boot mechanism to ePAPR v0.81 spec

The following changes are needed to be inline with ePAPR v0.81:

* r4, r5 and now always set to 0 on boot release
* r7 is used to pass the s

85xx: Update multicore boot mechanism to ePAPR v0.81 spec

The following changes are needed to be inline with ePAPR v0.81:

* r4, r5 and now always set to 0 on boot release
* r7 is used to pass the size of the initial map area (IMA)
* EPAPR_MAGIC value changed for book-e processors
* changes in the spin table layout
* spin table supports a 64-bit physical release address

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

show more ...


# ec2b74ff 17-Jan-2008 Kumar Gala <galak@kernel.crashing.org>

85xx: Added support for multicore boot mechanism

Added the cpu command that provides a generic mechanism to get status,
reset, and release secondary cores in multicore processors.

Added support for

85xx: Added support for multicore boot mechanism

Added the cpu command that provides a generic mechanism to get status,
reset, and release secondary cores in multicore processors.

Added support for using the ePAPR defined spin-table mechanism on 85xx.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

show more ...


# b951f8d3 26-Mar-2008 Wolfgang Denk <wd@denx.de>

Merge branch 'master_merge_new-image' of /home/tur/git/u-boot


# 27f33e9f 26-Mar-2008 Bartlomiej Sieka <tur@semihalf.com>

Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing

Conflicts:

common/cmd_bootm.c
cpu/mpc8xx/cpu.c

Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>


# 6f2eb3f3 11-Mar-2008 Stefan Roese <sr@denx.de>

ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)

This patch adds basic support for the AMCC 460EX/460GT PPC's.

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


# 424c4abd 12-Mar-2008 Marian Balakowicz <m8@semihalf.com>

[new uImage] Add new uImage format support to autoscript routine

autoscript() routine is updated to accept second argument, which
is only used for FIT images and provides a FIT subimage unit name.

[new uImage] Add new uImage format support to autoscript routine

autoscript() routine is updated to accept second argument, which
is only used for FIT images and provides a FIT subimage unit name.

autoscript() routine callers must now pass two arguments. For
non-interactive use (like in cmd_load.c, cmd_net.c), new environment
variable 'autoscript_uname' is introduced and used as a FIT
subimage unit name source.

autoscript command accepts extended syntax of the addr argument:
addr:<subimg_uname>

Signed-off-by: Marian Balakowicz <m8@semihalf.com>

show more ...


# 2242f536 21-Feb-2008 Marian Balakowicz <m8@semihalf.com>

[new uImage] Rename and move print_image_hdr() routine

Signed-off-by: Marian Balakowicz <m8@semihalf.com>


# 20c93959 21-Feb-2008 Marian Balakowicz <m8@semihalf.com>

Merge branch 'master' of /home/git/u-boot


# 45da195c 14-Feb-2008 Wolfgang Denk <wd@denx.de>

Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master


# f33e9653 14-Feb-2008 Anatolij Gustschin <agust@denx.de>

Fix compile warning on lib_ppc/board.c

Signed-off-by: Anatolij Gustschin <agust@denx.de>


# 6f99eec3 14-Feb-2008 Wolfgang Denk <wd@denx.de>

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

Conflicts:

Makefile
doc/README.standalone

Signed-off-by: Wolfgang Denk <wd@denx.de>


# 746c4b94 14-Feb-2008 Jon Loeliger <jdl@freescale.com>

Merge commit 'wd/master'


# 3f2175fa 14-Feb-2008 Andy Fleming <afleming@freescale.com>

Merge branch 'denx'


# d1bcf9e5 14-Feb-2008 Andy Fleming <afleming@freescale.com>

Merge branch 'denx'


# 6d1b6f9f 28-Jan-2008 Mike Frysinger <vapier@gentoo.org>

Mark board_init_[fr] as noreturn

Signed-off-by: Mike Frysinger <vapier@gentoo.org>


# 3cfb0c51 17-Jan-2008 Kumar Gala <galak@kernel.crashing.org>

Remove duplicate defines for ARRAY_SIZE

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>


1...<<11121314151617181920>>...28