From patchwork Mon Sep 7 13:49:26 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Reddy, Teerth" X-Patchwork-Id: 46111 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n87DncoO018215 for ; Mon, 7 Sep 2009 13:49:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753213AbZIGNte (ORCPT ); Mon, 7 Sep 2009 09:49:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753204AbZIGNte (ORCPT ); Mon, 7 Sep 2009 09:49:34 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:55290 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752565AbZIGNtd convert rfc822-to-8bit (ORCPT ); Mon, 7 Sep 2009 09:49:33 -0400 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id n87DnTau006936; Mon, 7 Sep 2009 08:49:35 -0500 Received: from dbde71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id n87DnSTV014133; Mon, 7 Sep 2009 19:19:28 +0530 (IST) Received: from dbde02.ent.ti.com ([172.24.170.145]) by dbde71.ent.ti.com ([172.24.170.149]) with mapi; Mon, 7 Sep 2009 19:19:28 +0530 From: "Reddy, Teerth" To: "linux-omap@vger.kernel.org" , "khilman@deeprootsystems.com" Date: Mon, 7 Sep 2009 19:19:26 +0530 Subject: [PATCH]PM: Initialization of SDRC params for DVFS on Zoom2 Thread-Topic: [PATCH]PM: Initialization of SDRC params for DVFS on Zoom2 Thread-Index: AcovwgPzXs4TvWHXTjGrbupzUQnVdQ== Message-ID: <5A47E75E594F054BAF48C5E4FC4B92AB030A007938@dbde02.ent.ti.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org This patch initializes the SDRC params for DVFS on Zoom2. Signed-off-by: Teerth Reddy --- arch/arm/mach-omap2/board-zoom2.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) -- 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 Index: linux-omap-pm/arch/arm/mach-omap2/board-zoom2.c =================================================================== --- linux-omap-pm.orig/arch/arm/mach-omap2/board-zoom2.c +++ linux-omap-pm/arch/arm/mach-omap2/board-zoom2.c @@ -23,6 +23,7 @@ #include "mmc-twl4030.h" #include "omap3-opp.h" +#include "sdram-micron-mt46h32m32lf-6.h" static struct omap_uart_config zoom2_uart_config __initdata = { .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)), @@ -36,8 +37,9 @@ 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, omap3_mpu_rate_table, - omap3_dsp_rate_table, omap3_l3_rate_table); + omap2_init_common_hw(mt46h32m32lf6_sdrc_params, NULL, + omap3_mpu_rate_table, omap3_dsp_rate_table, + omap3_l3_rate_table); omap_init_irq(); omap_gpio_init(); }