Re: [U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-31 Thread Mark Norman
Hi Marek Vasut, >> >> I have attached an updated patch below which hopefully addresses the >> other issues you highlighted. > > Hehe, you should RTFM ;-) http://www.denx.de/wiki/U-Boot/Patches > > Generally, use git send-email to send the patch. > Thanks for your feedback. I have submitted an up

[U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-31 Thread Mark Norman
The s3c24x0 timer has been updated to avoid using static variables prior to BSS being made available. Restructured code based on other timer.c files. Updated comments and several parameters. Signed-off-by: Mark Norman --- Changes for v2: - Fixed multi-line comment format - Formatting update

Re: [U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-24 Thread Wolfgang Denk
Dear Mark Norman, In message you wrote: > Dear Wolfgang Denk, > > Thank you for your response. > > >> =A0Since the .rel.text section is required by the relocation code, I > >> assume that .bss global variables cannot be used until after > >> relocation? > > > > Why do you have to make such ass

Re: [U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-24 Thread Marek Vasut
> Dear Wolfgang Denk, > > Thank you for your response. > > >> Since the .rel.text section is required by the relocation code, I > >> assume that .bss global variables cannot be used until after > >> relocation? > > > > Why do you have to make such assumptions? That's documented > > behaviour.

Re: [U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-24 Thread Mark Norman
Dear Wolfgang Denk, Thank you for your response. >>  Since the .rel.text section is required by the relocation code, I >> assume that .bss global variables cannot be used until after >> relocation? > > Why do you have to make such assumptions?  That's documented > behaviour.  Didn't you RTFM? >

Re: [U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-23 Thread Wolfgang Denk
Dear Mark Norman, In message you wrote: > > Since the .rel.text section is required by the relocation code, I > assume that .bss global variables cannot be used until after > relocation? Why do you have to make such assumptions? That's documented behaviour. Didn't you RTFM? > After studying

[U-Boot] [PATCH] Update s3c24x0 timer implementation

2011-10-23 Thread Mark Norman
I have been doing some work to get U-Boot running on a samsung S3C2440 based SBC (QQ2440). I experienced several issues getting the board running including "raise: Signal # 8 caught" errors being printed to the console. After a bit of debugging with a JTAG debugger I found the problems were due t