From patchwork Sun Mar 22 00:30:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Wahren X-Patchwork-Id: 6065951 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A35589F314 for ; Sun, 22 Mar 2015 00:35:13 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CDE5F20377 for ; Sun, 22 Mar 2015 00:35:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F15E520375 for ; Sun, 22 Mar 2015 00:35:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751605AbbCVAfL (ORCPT ); Sat, 21 Mar 2015 20:35:11 -0400 Received: from mout.kundenserver.de ([212.227.126.131]:61985 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751392AbbCVAfK (ORCPT ); Sat, 21 Mar 2015 20:35:10 -0400 Received: from localhost.localdomain ([178.25.105.80]) by mrelayeu.kundenserver.de (mreue002) with ESMTPSA (Nemesis) id 0MBvyp-1Ygw1i1BX5-00AjLS; Sun, 22 Mar 2015 01:30:30 +0100 From: Stefan Wahren To: , , , , , , , , , , Cc: , , , , , , , , , Stefan Wahren Subject: [PATCH 7/7] ARM: dts: add OPPs for i.MX23/i.MX28 Date: Sun, 22 Mar 2015 00:30:03 +0000 Message-Id: <1426984203-9133-8-git-send-email-stefan.wahren@i2se.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1426984203-9133-1-git-send-email-stefan.wahren@i2se.com> References: <1426984203-9133-1-git-send-email-stefan.wahren@i2se.com> X-Provags-ID: V03:K0:MIgRB6yG24wfEOeMh3vSJesYFnC6GwV3JHUEecctMZF+aIOXnKU Ds40MlbiYFckwJn9gwbu1niMNk0f8fVg95t9IOL88dRVTWDBRalTYcgaCX3YunhLTm/jC/M x6AG4TQOAeUycSU/eVGo9+VQ6Pl95b0KIDTq68Wnzfb7+/89YVblfrgw8eXNr0abgwaabAo zBH8hXQlgfLhyNP2Vfavg== X-UI-Out-Filterresults: notjunk:1; Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, 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 This patch adds the OPPs for i.MX23/i.MX28 which are necessary for cpufreq support. Signed-off-by: Stefan Wahren --- arch/arm/boot/dts/imx23.dtsi | 15 +++++++++++++-- arch/arm/boot/dts/imx28.dtsi | 15 +++++++++++++-- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/imx23.dtsi b/arch/arm/boot/dts/imx23.dtsi index be0aee8..885c79c 100644 --- a/arch/arm/boot/dts/imx23.dtsi +++ b/arch/arm/boot/dts/imx23.dtsi @@ -27,12 +27,23 @@ }; cpus { - #address-cells = <0>; + #address-cells = <1>; #size-cells = <0>; - cpu { + cpu@0 { compatible = "arm,arm926ej-s"; device_type = "cpu"; + reg = <0x0>; + operating-points = < + /* kHz uV */ + 261819 1350000 + 360000 1350000 + 392728 1450000 + 454737 1550000 + >; + clocks = <&clks 2>; + clock-latency = <61036>; /* two CLK32 periods */ + cpu-supply = <®_vddd>; }; }; diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi index 98c1be6..21c1921 100644 --- a/arch/arm/boot/dts/imx28.dtsi +++ b/arch/arm/boot/dts/imx28.dtsi @@ -38,12 +38,23 @@ }; cpus { - #address-cells = <0>; + #address-cells = <1>; #size-cells = <0>; - cpu { + cpu@0 { compatible = "arm,arm926ej-s"; device_type = "cpu"; + reg = <0x0>; + operating-points = < + /* kHz uV */ + 261819 1350000 + 360000 1350000 + 392728 1450000 + 454737 1550000 + >; + clocks = <&clks 4>; + clock-latency = <61036>; /* two CLK32 periods */ + cpu-supply = <®_vddd>; }; };