From patchwork Thu Jun 5 05:31:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4303321 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 3A2929F326 for ; Thu, 5 Jun 2014 05:29:55 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7B5B3201F7 for ; Thu, 5 Jun 2014 05:29:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9B92F201B9 for ; Thu, 5 Jun 2014 05:29:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751926AbaFEF3x (ORCPT ); Thu, 5 Jun 2014 01:29:53 -0400 Received: from mail-pb0-f41.google.com ([209.85.160.41]:38472 "EHLO mail-pb0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751676AbaFEF3x (ORCPT ); Thu, 5 Jun 2014 01:29:53 -0400 Received: by mail-pb0-f41.google.com with SMTP id uo5so582506pbc.28 for ; Wed, 04 Jun 2014 22:29:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=0m72btPJGbz7Hu8O9lvlOq1lvFTyycljVFiUG9enCr0=; b=EgtpAL51ENjcYd83QHj8MxlcJt6jnApRLpIeR9ySQuxe+l1tuy/9CeDXtFcCIIHqhX rxhKDedDSD5R0M7FTAAoe43s5v3uLvpcBlZGTawjibhau1LFDQXa+liUrg0nD1XnTrCt LdWCT2HYInlUkqsuacJjv8zvzXQaJwPSLivgtAFIGG5By7eTqZDWLsBYPaTvHYRG8d3i PuJd4fWwZMklf3Rk+LCvhjzbspe2061qeVwKJZTmt6FSIdQ2eBVnsuTo5jYKuBorV3tP ViQe4hziDzGIzQ5c/sHaNBcpjlWgWbrP8GEfhY8j37Z9a3GZrsAfZLEQdg9dn3dA63NC sgqA== X-Received: by 10.68.223.202 with SMTP id qw10mr35874153pbc.163.1401946192557; Wed, 04 Jun 2014 22:29:52 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id og3sm17840647pbc.48.2014.06.04.22.29.51 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 04 Jun 2014 22:29:51 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Thu, 05 Jun 2014 14:31:56 +0900 Message-Id: <20140605053156.19066.68800.sendpatchset@w520> In-Reply-To: <20140605053149.19066.90593.sendpatchset@w520> References: <20140605053149.19066.90593.sendpatchset@w520> Subject: [PATCH 01/03] ARM: shmobile: Update EMEV2 DTS to include CPU frequency Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Add CPU Frequency information to the EMEV2 DTS file. This will allow us to use the shared C code to on EMEV2 which reads out the clock frequency from DT and calculates the delay settings from there. Signed-off-by: Magnus Damm --- arch/arm/boot/dts/emev2.dtsi | 2 ++ 1 file changed, 2 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/arch/arm/boot/dts/emev2.dtsi +++ work/arch/arm/boot/dts/emev2.dtsi 2014-05-29 17:06:48.000000000 +0900 @@ -31,11 +31,13 @@ device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <0>; + clock-frequency = <533000000>; }; cpu@1 { device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <1>; + clock-frequency = <533000000>; }; };