linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]ZOOM2: Initialization of SDRC params on Zoom2
@ 2009-10-07  9:07 Reddy, Teerth
  2009-10-07 13:30 ` Kevin Hilman
  0 siblings, 1 reply; 4+ messages in thread
From: Reddy, Teerth @ 2009-10-07  9:07 UTC (permalink / raw)
  To: linux-omap@vger.kernel.org

From: Teerth Reddy <teerth@ti.com>

This patch initializes the SDRC params for Zoom2

Signed-off-by: Teerth Reddy <teerth@ti.com>
---
 arch/arm/mach-omap2/board-zoom2.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)

Index: linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
===================================================================
--- linux-omap-2.6.orig/arch/arm/mach-omap2/board-zoom2.c
+++ linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
@@ -25,6 +25,7 @@
 #include <mach/keypad.h>
 
 #include "mmc-twl4030.h"
+#include "sdram-micron-mt46h32m32lf-6.h"
 
 /* Zoom2 has Qwerty keyboard*/
 static int board_keymap[] = {
@@ -213,7 +214,8 @@ static void __init omap_zoom2_init_irq(v
 {
 	omap_board_config = zoom2_config;
 	omap_board_config_size = ARRAY_SIZE(zoom2_config);
-	omap2_init_common_hw(NULL, NULL);
+	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
+				 mt46h32m32lf6_sdrc_params);
 	omap_init_irq();
 	omap_gpio_init();
 }

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH]ZOOM2: Initialization of SDRC params on Zoom2
  2009-10-07  9:07 [PATCH]ZOOM2: Initialization of SDRC params on Zoom2 Reddy, Teerth
@ 2009-10-07 13:30 ` Kevin Hilman
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Hilman @ 2009-10-07 13:30 UTC (permalink / raw)
  To: Reddy, Teerth; +Cc: linux-omap@vger.kernel.org

"Reddy, Teerth" <teerth@ti.com> writes:

> From: Teerth Reddy <teerth@ti.com>
>
> This patch initializes the SDRC params for Zoom2

Not a very useful changelog.  Something about *why* the changes are
neede should be present in each changelog.  Something like the need of
correct SDRC settings for DVFS.

Other than that, looks good.  Thanks.

Kevin

> Signed-off-by: Teerth Reddy <teerth@ti.com>
> ---
>  arch/arm/mach-omap2/board-zoom2.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletion(-)
>
> Index: linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
> ===================================================================
> --- linux-omap-2.6.orig/arch/arm/mach-omap2/board-zoom2.c
> +++ linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
> @@ -25,6 +25,7 @@
>  #include <mach/keypad.h>
>  
>  #include "mmc-twl4030.h"
> +#include "sdram-micron-mt46h32m32lf-6.h"
>  
>  /* Zoom2 has Qwerty keyboard*/
>  static int board_keymap[] = {
> @@ -213,7 +214,8 @@ static void __init omap_zoom2_init_irq(v
>  {
>  	omap_board_config = zoom2_config;
>  	omap_board_config_size = ARRAY_SIZE(zoom2_config);
> -	omap2_init_common_hw(NULL, NULL);
> +	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
> +				 mt46h32m32lf6_sdrc_params);
>  	omap_init_irq();
>  	omap_gpio_init();
>  }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH]ZOOM2: Initialization of SDRC params on Zoom2
@ 2009-10-08  8:26 Reddy, Teerth
  2009-10-09 16:32 ` Kevin Hilman
  0 siblings, 1 reply; 4+ messages in thread
From: Reddy, Teerth @ 2009-10-08  8:26 UTC (permalink / raw)
  To: linux-omap@vger.kernel.org

From: Teerth Reddy <teerth@ti.com>

This patch initializes the correct SDRC settings required 
for DVFS on Zoom2.

Signed-off-by: Teerth Reddy <teerth@ti.com>
---
 arch/arm/mach-omap2/board-zoom2.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)

Index: linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
===================================================================
--- linux-omap-2.6.orig/arch/arm/mach-omap2/board-zoom2.c
+++ linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
@@ -25,6 +25,7 @@
 #include <mach/keypad.h>
 
 #include "mmc-twl4030.h"
+#include "sdram-micron-mt46h32m32lf-6.h"
 
 /* Zoom2 has Qwerty keyboard*/
 static int board_keymap[] = {
@@ -213,7 +214,8 @@ static void __init omap_zoom2_init_irq(v
 {
 	omap_board_config = zoom2_config;
 	omap_board_config_size = ARRAY_SIZE(zoom2_config);
-	omap2_init_common_hw(NULL, NULL);
+	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
+				 mt46h32m32lf6_sdrc_params);
 	omap_init_irq();
 	omap_gpio_init();
 }

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH]ZOOM2: Initialization of SDRC params on Zoom2
  2009-10-08  8:26 Reddy, Teerth
@ 2009-10-09 16:32 ` Kevin Hilman
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Hilman @ 2009-10-09 16:32 UTC (permalink / raw)
  To: Reddy, Teerth; +Cc: linux-omap@vger.kernel.org

"Reddy, Teerth" <teerth@ti.com> writes:

> From: Teerth Reddy <teerth@ti.com>
>
> This patch initializes the correct SDRC settings required 
> for DVFS on Zoom2.
>
> Signed-off-by: Teerth Reddy <teerth@ti.com>

Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>

Tony, this could get queued in -fixes too.

Thanks,

Kevin

> ---
>  arch/arm/mach-omap2/board-zoom2.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletion(-)
>
> Index: linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
> ===================================================================
> --- linux-omap-2.6.orig/arch/arm/mach-omap2/board-zoom2.c
> +++ linux-omap-2.6/arch/arm/mach-omap2/board-zoom2.c
> @@ -25,6 +25,7 @@
>  #include <mach/keypad.h>
>  
>  #include "mmc-twl4030.h"
> +#include "sdram-micron-mt46h32m32lf-6.h"
>  
>  /* Zoom2 has Qwerty keyboard*/
>  static int board_keymap[] = {
> @@ -213,7 +214,8 @@ static void __init omap_zoom2_init_irq(v
>  {
>  	omap_board_config = zoom2_config;
>  	omap_board_config_size = ARRAY_SIZE(zoom2_config);
> -	omap2_init_common_hw(NULL, NULL);
> +	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
> +				 mt46h32m32lf6_sdrc_params);
>  	omap_init_irq();
>  	omap_gpio_init();
>  }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-09 16:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-07  9:07 [PATCH]ZOOM2: Initialization of SDRC params on Zoom2 Reddy, Teerth
2009-10-07 13:30 ` Kevin Hilman
  -- strict thread matches above, loose matches on Subject: below --
2009-10-08  8:26 Reddy, Teerth
2009-10-09 16:32 ` Kevin Hilman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).