From patchwork Tue Aug 9 18:29:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marc Dietrich X-Patchwork-Id: 1050682 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p79ITYLu026819 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 9 Aug 2011 18:29:55 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qqr3R-0000DH-Q3; Tue, 09 Aug 2011 18:29:29 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qqr3R-0005s4-AD; Tue, 09 Aug 2011 18:29:29 +0000 Received: from mailout-de.gmx.net ([213.165.64.22]) by canuck.infradead.org with smtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qqr3O-0005rl-2X for linux-arm-kernel@lists.infradead.org; Tue, 09 Aug 2011 18:29:26 +0000 Received: (qmail invoked by alias); 09 Aug 2011 18:29:21 -0000 Received: from g226143067.adsl.alicedsl.de (EHLO ax2-5200p.localnet) [92.226.143.67] by mail.gmx.net (mp044) with SMTP; 09 Aug 2011 20:29:21 +0200 X-Authenticated: #9962044 X-Provags-ID: V01U2FsdGVkX1+8/XQpFOu8XV1/6VDITLROaMBUXSGexv0ptYWefr T4LincfpOxqtIE From: Marc Dietrich To: Colin Cross Subject: [PATCH 4/5 V2] ARM: tegra: paz00: add clocks required for usb operation Date: Tue, 9 Aug 2011 20:29:17 +0200 User-Agent: KMail/1.13.6 (Linux/3.0.0+; KDE/4.6.2; x86_64; ; ) References: <76f31183766f1edce1230a925ced1c986dbdf028.1312742856.git.marvin24@gmx.de> In-Reply-To: <76f31183766f1edce1230a925ced1c986dbdf028.1312742856.git.marvin24@gmx.de> MIME-Version: 1.0 Message-Id: <201108092029.17546.marvin24@gmx.de> X-Y-GMX-Trusted: 0 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110809_142926_421813_9128F1F2 X-CRM114-Status: GOOD ( 11.28 ) X-Spam-Score: 0.1 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (0.1 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (marvin24[at]gmx.de) 0.1 FREEMAIL_ENVFROM_END_DIGIT Envelope-from freemail username ends in digit (marvin24[at]gmx.de) -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [213.165.64.22 listed in list.dnswl.org] Cc: Olof Johansson , linux-tegra@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 09 Aug 2011 18:29:55 +0000 (UTC) These clocks are required for usb operation. --- arch/arm/mach-tegra/board-paz00.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-tegra/board-paz00.c b/arch/arm/mach-tegra/board-paz00.c index 45111f6..89a3dda 100644 --- a/arch/arm/mach-tegra/board-paz00.c +++ b/arch/arm/mach-tegra/board-paz00.c @@ -145,6 +145,12 @@ static __initdata struct tegra_clk_init_table paz00_clk_init_table[] = { /* name parent rate enabled */ { "uarta", "pll_p", 216000000, true }, { "uartd", "pll_p", 216000000, true }, + + { "pll_p_out4", "pll_p", 24000000, true }, + { "usbd", "clk_m", 12000000, true }, + { "usb2", "clk_m", 12000000, true }, + { "usb3", "clk_m", 12000000, true }, + { NULL, NULL, 0, 0}, };