
On 16/04/07 14:04 +0200, Stefan Roese wrote:
On Monday 16 April 2007 06:45, Grant Likely wrote:
On 4/3/07, Domen Puncer domen.puncer@telargo.com wrote:
U-Boot part of Lite5200b low power mode support. Puts SDRAM out of self-refresh and transfers control to address saved at physical 0x0.
Looks good; almost there. Only one thing missing... you need to add your "Signed-off-by" line. :-) See Documentation/SubmittingPatches in the Linux source tree. (You can just reply to this message, and whoever merges the patch will add the line to the commit message)
Acked-by: Grant Likely grant.likely@secretlab.ca
Stefan; since there is no 5200 custodian, can you please pick up this patch once Domen sends a Signed-of-by replay?
Done.
Thanks!
While at it, can you also take care of (Grant already agreed with the change):
G2 core reference manual says decrementer and time base are decreasing/increasing once every 4 bus clock cycles. Lets fix it, so time in Linux won't run twice as fast
Signed-off-by: Domen Puncer domen.puncer@telargo.com --- include/configs/IceCube.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Index: u-boot.git/include/configs/IceCube.h =================================================================== --- u-boot.git.orig/include/configs/IceCube.h +++ u-boot.git/include/configs/IceCube.h @@ -182,7 +182,7 @@
#define OF_CPU "PowerPC,5200@0" #define OF_SOC "soc5200@f0000000" -#define OF_TBCLK (bd->bi_busfreq / 8) +#define OF_TBCLK (bd->bi_busfreq / 4) #define OF_STDOUT_PATH "/soc5200@f0000000/serial@2000"
/*