From patchwork Wed Dec 18 01:17:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Tobias X-Patchwork-Id: 3367041 Return-Path: X-Original-To: patchwork-linux-mmc@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 7D0B89F37A for ; Wed, 18 Dec 2013 01:17:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9622B203B0 for ; Wed, 18 Dec 2013 01:17:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D1563203AF for ; Wed, 18 Dec 2013 01:17:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751522Ab3LRBRk (ORCPT ); Tue, 17 Dec 2013 20:17:40 -0500 Received: from mail-pd0-f182.google.com ([209.85.192.182]:38797 "EHLO mail-pd0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751293Ab3LRBRj (ORCPT ); Tue, 17 Dec 2013 20:17:39 -0500 Received: by mail-pd0-f182.google.com with SMTP id v10so7539705pde.13 for ; Tue, 17 Dec 2013 17:17:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=wu4ucxovuJEegvZOrpnwGLiYkBc4oEYBGLxkPd6fl3E=; b=tiqDLyeK5Yp1dxZwyhPXhpdp95gV6V1NLZ+GAMi+YvKe1p6GbjJumW5ficr7sCODSL qLnjarvdvvnRX93Zrm3cf25ZpUH8onp1MY5BhQuo9HBkf3+6CBk0aVCi8HYh52jQ6lxo IUOYAsICUjENrUmwnoMdUntcUbvOXmqUs2sfCrFuZ8OE9rAGR7j3HZH7Y58t8ute4a15 UQQIYmR362VN3l1VVJPlkwVK76OF6ntLwFB1SFRPuwPS7tIz1aezDGTU0a67Cb6MEziV wreM6vZDiqG3zPYBFUNZP+GV5ayoJY2gzMRgKPmbcw/HOOgOMfw19ML/TblkbHIec9Tx 9IYw== X-Received: by 10.66.226.46 with SMTP id rp14mr30519820pac.133.1387329458785; Tue, 17 Dec 2013 17:17:38 -0800 (PST) Received: from localhost.localdomain (morse-p.static.monkeybrains.net. [208.90.214.40]) by mx.google.com with ESMTPSA id rz6sm50095689pab.22.2013.12.17.17.17.37 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 17 Dec 2013 17:17:38 -0800 (PST) From: John Tobias To: linux-arm-kernel@lists.infradead.org, linux-mmc@vger.kernel.org, shawn.guo@linaro.org, festevam@gmail.com, cjb@laptop.org Cc: John Tobias Subject: [PATCH 1/4] iMX6SL frequency table Date: Tue, 17 Dec 2013 17:17:28 -0800 Message-Id: <1387329451-17480-1-git-send-email-john.tobias.ph@gmail.com> X-Mailer: git-send-email 1.8.3.2 Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Spam-Status: No, score=-7.3 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 Device tree for iMX6SL doesn't have an existing cpu frequency table. Signed-off-by: John Tobias --- arch/arm/boot/dts/imx6sl.dtsi | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/arch/arm/boot/dts/imx6sl.dtsi b/arch/arm/boot/dts/imx6sl.dtsi index 28558f1..0a2c73c 100644 --- a/arch/arm/boot/dts/imx6sl.dtsi +++ b/arch/arm/boot/dts/imx6sl.dtsi @@ -38,6 +38,20 @@ device_type = "cpu"; reg = <0x0>; next-level-cache = <&L2>; + operating-points = < + /* kHz uV */ + 996000 1250000 /* for consumer grade only */ + 792000 1150000 + 396000 1050000 + >; + clock-latency = <61036>; /* two CLK32 periods */ + clocks = <&clks IMX6SL_CLK_ARM>, <&clks IMX6SL_CLK_PLL2_PFD2>, <&clks IMX6SL_CLK_STEP>, + <&clks IMX6SL_CLK_PLL1_SW>, <&clks IMX6SL_CLK_PLL1_SYS>; + clock-names = "arm", "pll2_pfd2_396m", "step", + "pll1_sw", "pll1_sys"; + arm-supply = <®_arm>; + pu-supply = <®_pu>; + soc-supply = <®_soc>; }; };