From patchwork Wed Aug 20 13:02:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4751041 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 311F2C0338 for ; Wed, 20 Aug 2014 13:00:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E936920136 for ; Wed, 20 Aug 2014 13:00:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CAC6E2012F for ; Wed, 20 Aug 2014 13:00:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752484AbaHTNAI (ORCPT ); Wed, 20 Aug 2014 09:00:08 -0400 Received: from mail-pd0-f176.google.com ([209.85.192.176]:41621 "EHLO mail-pd0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752387AbaHTNAH (ORCPT ); Wed, 20 Aug 2014 09:00:07 -0400 Received: by mail-pd0-f176.google.com with SMTP id y10so11569915pdj.35 for ; Wed, 20 Aug 2014 06:00:01 -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=E/eZ1pOyUl20Bq0NKlXeWAL2FzeWtyTE+f60MNSp2Ro=; b=JjefdRiucr52aPQUDE7T3bBvZgv7MrwgbF1vOmLuLipvHCveatlTUZbZSul0RV5EGr eKlrDE98txCtU8UkXhje+LArisDBPvlmo2IBUbHh0NWcNMf0oORQj5PZIA3pYH95VMcQ /xshhzYSGrbLUQcQ50vl1x+JFKRfw0Lbu+3vuEVLtIFAF139yxf3dFxYoEca5ZEt+uKa pQhsjAN23ZVriGQG4PmktZ9nHdzWEo5K8p2QpFYcO5lh3nXkNx/b5ZwPsAbneI52Ayyc UJv08w0J1JomAl9yUjvXHD+nPqr9fIZeITdBZPoNFTKWgviZ+jjBIe7uZd/SaEKkXbIs 1hWg== X-Received: by 10.70.126.9 with SMTP id mu9mr8202930pdb.151.1408539601628; Wed, 20 Aug 2014 06:00:01 -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 fo6sm5414855pdb.15.2014.08.20.05.59.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Aug 2014 06:00:00 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Wed, 20 Aug 2014 22:02:19 +0900 Message-Id: <20140820130219.32075.81653.sendpatchset@w520> In-Reply-To: <20140820130201.32075.45257.sendpatchset@w520> References: <20140820130201.32075.45257.sendpatchset@w520> Subject: [PATCH 02/10] ARM: shmobile: sh73a0: Update 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.5 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 sh73a0 DTS file. This will allow us to use the shared C code on sh73a0 and KZM9G which reads out the clock frequency from DT and calculates the delay settings from there. Signed-off-by: Magnus Damm --- arch/arm/boot/dts/sh73a0.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/sh73a0.dtsi +++ work/arch/arm/boot/dts/sh73a0.dtsi 2014-08-20 21:10:17.000000000 +0900 @@ -23,11 +23,13 @@ device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <0>; + clock-frequency = <1196000000>; }; cpu@1 { device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <1>; + clock-frequency = <1196000000>; }; };