diff mbox

[U-Boot] ARM: make timer variables in gt_t available for all ARM platforms

Message ID 1291205812-5491-1-git-send-email-prafulla@marvell.com
State Accepted
Commit f9de0997d773699fb4bda1c1ad7462aa2fcd00e9
Delegated to: Wolfgang Denk
Headers show

Commit Message

Prafulla Wadaskar Dec. 1, 2010, 12:16 p.m. UTC
After ARM relocation,
any code executed directly or indirectly by board_init_f() have
global (BSS) variables need to be fixed. mostly timer.c needs to
fix on most of the ARM platforms.

This patch makes timer related variables in gd_t available for
all ARM implementation

Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
---
 arch/arm/include/asm/global_data.h |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

Comments

Nick Thompson Dec. 2, 2010, 11:54 a.m. UTC | #1
On 01/12/10 12:16, Prafulla Wadaskar wrote:
> After ARM relocation,
> any code executed directly or indirectly by board_init_f() have
> global (BSS) variables need to be fixed. mostly timer.c needs to
> fix on most of the ARM platforms.
> 
> This patch makes timer related variables in gd_t available for
> all ARM implementation
> 
> Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
> ---
>  arch/arm/include/asm/global_data.h |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
> index ada3fbb..efb502e 100644
> --- a/arch/arm/include/asm/global_data.h
> +++ b/arch/arm/include/asm/global_data.h
> @@ -55,7 +55,9 @@ typedef	struct	global_data {
>  	unsigned long	plla_rate_hz;
>  	unsigned long	pllb_rate_hz;
>  	unsigned long	at91_pllb_usb_init;
> -	/* "static data" needed by at91's timer.c */
> +#endif
> +#ifdef CONFIG_ARM
> +	/* "static data" needed by most of timer.c on ARM platforms */
>  	unsigned long	timer_rate_hz;
>  	unsigned long	tbl;
>  	unsigned long	tbu;

This file is ARM specific. Doesn't this mean CONFIG_ARM is always defined here?

Regards,
Nick.
Prafulla Wadaskar Dec. 7, 2010, 12:24 p.m. UTC | #2
> -----Original Message-----
> From: Prafulla Wadaskar [mailto:prafulla@marvell.com]
> Sent: Wednesday, December 01, 2010 5:47 PM
> To: u-boot@lists.denx.de
> Cc: Manas Saksena; Prabhanjan Sarnaik; Ashish Karkare; Prafulla Wadaskar
> Subject: [PATCH] ARM: make timer variables in gt_t available for all ARM
> platforms
> 
> After ARM relocation,
> any code executed directly or indirectly by board_init_f() have
> global (BSS) variables need to be fixed. mostly timer.c needs to
> fix on most of the ARM platforms.
> 
> This patch makes timer related variables in gd_t available for
> all ARM implementation
> 
> Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
> ---
>  arch/arm/include/asm/global_data.h |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/include/asm/global_data.h
> b/arch/arm/include/asm/global_data.h
> index ada3fbb..efb502e 100644
> --- a/arch/arm/include/asm/global_data.h
> +++ b/arch/arm/include/asm/global_data.h
> @@ -55,7 +55,9 @@ typedef	struct	global_data {
>  	unsigned long	plla_rate_hz;
>  	unsigned long	pllb_rate_hz;
>  	unsigned long	at91_pllb_usb_init;
> -	/* "static data" needed by at91's timer.c */
> +#endif
> +#ifdef CONFIG_ARM
> +	/* "static data" needed by most of timer.c on ARM platforms */
>  	unsigned long	timer_rate_hz;
>  	unsigned long	tbl;
>  	unsigned long	tbu;
> --

Applied to u-boot-marvell.git master branch

Regards..
Prafulla ..
Wolfgang Denk Dec. 7, 2010, 1:10 p.m. UTC | #3
Dear Prafulla Wadaskar,

In message <F766E4F80769BD478052FB6533FA745D19A948E86B@SC-VEXCH4.marvell.com> you wrote:
> 
> > This patch makes timer related variables in gd_t available for
> > all ARM implementation
---^^^^^^^^^

> Applied to u-boot-marvell.git master branch

Thisis NOT a Marvell specific commit.  It is not supposed to go
through the Marvell repository.  It is a common ARM patch and should
go through the ARM repo.

Thanks.

Best regards,

Wolfgang Denk
Wolfgang Denk Dec. 8, 2010, 11:03 p.m. UTC | #4
Dear Prafulla Wadaskar,

In message <1291205812-5491-1-git-send-email-prafulla@marvell.com> you wrote:
> After ARM relocation,
> any code executed directly or indirectly by board_init_f() have
> global (BSS) variables need to be fixed. mostly timer.c needs to
> fix on most of the ARM platforms.
> 
> This patch makes timer related variables in gd_t available for
> all ARM implementation
> 
> Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
> ---
>  arch/arm/include/asm/global_data.h |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
index ada3fbb..efb502e 100644
--- a/arch/arm/include/asm/global_data.h
+++ b/arch/arm/include/asm/global_data.h
@@ -55,7 +55,9 @@  typedef	struct	global_data {
 	unsigned long	plla_rate_hz;
 	unsigned long	pllb_rate_hz;
 	unsigned long	at91_pllb_usb_init;
-	/* "static data" needed by at91's timer.c */
+#endif
+#ifdef CONFIG_ARM
+	/* "static data" needed by most of timer.c on ARM platforms */
 	unsigned long	timer_rate_hz;
 	unsigned long	tbl;
 	unsigned long	tbu;