Re: [U-Boot] [PATCH v2 1/9] am33xx: convert defines from am33xx-specific to generic names

2013-03-03 Thread Peter Korsgaard
> "Matt" == Matt Porter  writes:

 Matt> Eliminate AM33xx specific names to prepare for TI814x support
 Matt> within AM33xx-land.

 Matt> Signed-off-by: Matt Porter 
 Matt> Reviewed-by: Tom Rini 

Acked-by: Peter Korsgaard 

 Matt> ---
 Matt> v2: no changes
 Matt> ---
 Matt>  arch/arm/cpu/armv7/am33xx/board.c   |4 ++--
 Matt>  arch/arm/include/asm/arch-am33xx/hardware.h |   10 +-
 Matt>  board/ti/am335x/board.c |6 +++---
 Matt>  3 files changed, 10 insertions(+), 10 deletions(-)

 Matt> diff --git a/arch/arm/cpu/armv7/am33xx/board.c 
b/arch/arm/cpu/armv7/am33xx/board.c
 Matt> index ab31326..b186b32 100644
 Matt> --- a/arch/arm/cpu/armv7/am33xx/board.c
 Matt> +++ b/arch/arm/cpu/armv7/am33xx/board.c
 Matt> @@ -141,11 +141,11 @@ int arch_misc_init(void)
 Matt>  {
 Matt>  #ifdef CONFIG_AM335X_USB0
 Matt>  musb_register(&otg0_plat, &otg0_board_data,
 Matt> -(void *)AM335X_USB0_OTG_BASE);
 Matt> +(void *)USB0_OTG_BASE);
 Matt>  #endif
 Matt>  #ifdef CONFIG_AM335X_USB1
 Matt>  musb_register(&otg1_plat, &otg1_board_data,
 Matt> -(void *)AM335X_USB1_OTG_BASE);
 Matt> +(void *)USB1_OTG_BASE);
 Matt>  #endif
 Matt>  return 0;
 Matt>  }
 Matt> diff --git a/arch/arm/include/asm/arch-am33xx/hardware.h 
b/arch/arm/include/asm/arch-am33xx/hardware.h
 Matt> index 6dd3296..7016e25 100644
 Matt> --- a/arch/arm/include/asm/arch-am33xx/hardware.h
 Matt> +++ b/arch/arm/include/asm/arch-am33xx/hardware.h
 Matt> @@ -84,14 +84,14 @@
 Matt>  #define GPMC_BASE   0x5000
 
 Matt>  /* CPSW Config space */
 Matt> -#define AM335X_CPSW_BASE0x4A10
 Matt> -#define AM335X_CPSW_MDIO_BASE   0x4A101000
 Matt> +#define CPSW_BASE   0x4A10
 Matt> +#define CPSW_MDIO_BASE  0x4A101000
 
 Matt>  /* RTC base address */
 Matt> -#define AM335X_RTC_BASE 0x44E3E000
 Matt> +#define RTC_BASE0x44E3E000
 
 Matt>  /* OTG */
 Matt> -#define AM335X_USB0_OTG_BASE0x47401000
 Matt> -#define AM335X_USB1_OTG_BASE0x47401800
 Matt> +#define USB0_OTG_BASE   0x47401000
 Matt> +#define USB1_OTG_BASE   0x47401800
 
 Matt>  #endif /* __AM33XX_HARDWARE_H */
 Matt> diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c
 Matt> index 48e6896..0948889 100644
 Matt> --- a/board/ti/am335x/board.c
 Matt> +++ b/board/ti/am335x/board.c
 Matt> @@ -134,7 +134,7 @@ static int read_eeprom(void)
 
 Matt>  static void rtc32k_enable(void)
 Matt>  {
 Matt> -struct rtc_regs *rtc = (struct rtc_regs *)AM335X_RTC_BASE;
 Matt> +struct rtc_regs *rtc = (struct rtc_regs *)RTC_BASE;
 
 Matt>  /*
 Matt>   * Unlock the RTC's registers.  For more details please see the
 Matt> @@ -411,8 +411,8 @@ static struct cpsw_slave_data cpsw_slaves[] = {
 Matt>  };
 
 Matt>  static struct cpsw_platform_data cpsw_data = {
 Matt> -.mdio_base  = AM335X_CPSW_MDIO_BASE,
 Matt> -.cpsw_base  = AM335X_CPSW_BASE,
 Matt> +.mdio_base  = CPSW_MDIO_BASE,
 Matt> +.cpsw_base  = CPSW_BASE,
 Matt>  .mdio_div   = 0xff,
 Matt>  .channels   = 8,
 Matt>  .cpdma_reg_ofs  = 0x800,
 Matt> -- 
 Matt> 1.7.9.5



-- 
Bye, Peter Korsgaard
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 1/9] am33xx: convert defines from am33xx-specific to generic names

2013-02-28 Thread Matt Porter
Eliminate AM33xx specific names to prepare for TI814x support
within AM33xx-land.

Signed-off-by: Matt Porter 
Reviewed-by: Tom Rini 

---
v2: no changes
---
 arch/arm/cpu/armv7/am33xx/board.c   |4 ++--
 arch/arm/include/asm/arch-am33xx/hardware.h |   10 +-
 board/ti/am335x/board.c |6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/arch/arm/cpu/armv7/am33xx/board.c 
b/arch/arm/cpu/armv7/am33xx/board.c
index ab31326..b186b32 100644
--- a/arch/arm/cpu/armv7/am33xx/board.c
+++ b/arch/arm/cpu/armv7/am33xx/board.c
@@ -141,11 +141,11 @@ int arch_misc_init(void)
 {
 #ifdef CONFIG_AM335X_USB0
musb_register(&otg0_plat, &otg0_board_data,
-   (void *)AM335X_USB0_OTG_BASE);
+   (void *)USB0_OTG_BASE);
 #endif
 #ifdef CONFIG_AM335X_USB1
musb_register(&otg1_plat, &otg1_board_data,
-   (void *)AM335X_USB1_OTG_BASE);
+   (void *)USB1_OTG_BASE);
 #endif
return 0;
 }
diff --git a/arch/arm/include/asm/arch-am33xx/hardware.h 
b/arch/arm/include/asm/arch-am33xx/hardware.h
index 6dd3296..7016e25 100644
--- a/arch/arm/include/asm/arch-am33xx/hardware.h
+++ b/arch/arm/include/asm/arch-am33xx/hardware.h
@@ -84,14 +84,14 @@
 #define GPMC_BASE  0x5000
 
 /* CPSW Config space */
-#define AM335X_CPSW_BASE   0x4A10
-#define AM335X_CPSW_MDIO_BASE  0x4A101000
+#define CPSW_BASE  0x4A10
+#define CPSW_MDIO_BASE 0x4A101000
 
 /* RTC base address */
-#define AM335X_RTC_BASE0x44E3E000
+#define RTC_BASE   0x44E3E000
 
 /* OTG */
-#define AM335X_USB0_OTG_BASE   0x47401000
-#define AM335X_USB1_OTG_BASE   0x47401800
+#define USB0_OTG_BASE  0x47401000
+#define USB1_OTG_BASE  0x47401800
 
 #endif /* __AM33XX_HARDWARE_H */
diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c
index 48e6896..0948889 100644
--- a/board/ti/am335x/board.c
+++ b/board/ti/am335x/board.c
@@ -134,7 +134,7 @@ static int read_eeprom(void)
 
 static void rtc32k_enable(void)
 {
-   struct rtc_regs *rtc = (struct rtc_regs *)AM335X_RTC_BASE;
+   struct rtc_regs *rtc = (struct rtc_regs *)RTC_BASE;
 
/*
 * Unlock the RTC's registers.  For more details please see the
@@ -411,8 +411,8 @@ static struct cpsw_slave_data cpsw_slaves[] = {
 };
 
 static struct cpsw_platform_data cpsw_data = {
-   .mdio_base  = AM335X_CPSW_MDIO_BASE,
-   .cpsw_base  = AM335X_CPSW_BASE,
+   .mdio_base  = CPSW_MDIO_BASE,
+   .cpsw_base  = CPSW_BASE,
.mdio_div   = 0xff,
.channels   = 8,
.cpdma_reg_ofs  = 0x800,
-- 
1.7.9.5

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot