From patchwork Tue Dec 13 10:19:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rajendra Nayak X-Patchwork-Id: 5625 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id A840123E11 for ; Tue, 13 Dec 2011 10:20:14 +0000 (UTC) Received: from mail-bw0-f52.google.com (mail-bw0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id 9724AA187DA for ; Tue, 13 Dec 2011 10:20:14 +0000 (UTC) Received: by mail-bw0-f52.google.com with SMTP id 17so8917428bke.11 for ; Tue, 13 Dec 2011 02:20:14 -0800 (PST) Received: by 10.204.157.12 with SMTP id z12mr9511892bkw.18.1323771614410; Tue, 13 Dec 2011 02:20:14 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.129.2 with SMTP id hg2cs75835bkc; Tue, 13 Dec 2011 02:20:14 -0800 (PST) Received: by 10.236.128.242 with SMTP id f78mr2435400yhi.7.1323771611841; Tue, 13 Dec 2011 02:20:11 -0800 (PST) Received: from bear.ext.ti.com (bear.ext.ti.com. [192.94.94.41]) by mx.google.com with ESMTPS id e39si426494yba.1.2011.12.13.02.20.11 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Dec 2011 02:20:11 -0800 (PST) Received-SPF: pass (google.com: domain of rnayak@ti.com designates 192.94.94.41 as permitted sender) client-ip=192.94.94.41; Authentication-Results: mx.google.com; spf=pass (google.com: domain of rnayak@ti.com designates 192.94.94.41 as permitted sender) smtp.mail=rnayak@ti.com Received: from dbdp20.itg.ti.com ([172.24.170.38]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id pBDAK75f030333 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 13 Dec 2011 04:20:09 -0600 Received: from DBDE70.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id pBDAK3a3003015; Tue, 13 Dec 2011 15:50:06 +0530 (IST) Received: from dbdp31.itg.ti.com (172.24.170.98) by dbde70.ent.ti.com (172.24.170.148) with Microsoft SMTP Server id 14.1.323.3; Tue, 13 Dec 2011 15:50:05 +0530 Received: from ula0131687.itg.ti.com (ula0131687-172024137230.apr.dhcp.ti.com [172.24.137.230]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id pBDAJwog016319; Tue, 13 Dec 2011 15:50:04 +0530 (IST) From: Rajendra Nayak To: , CC: , , , , , , , Rajendra Nayak Subject: [PATCH v2 3/3] omap4: panda: Pass regulator data from dt Date: Tue, 13 Dec 2011 15:49:35 +0530 Message-ID: <1323771575-3550-4-git-send-email-rnayak@ti.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1323771575-3550-1-git-send-email-rnayak@ti.com> References: <1323771575-3550-1-git-send-email-rnayak@ti.com> MIME-Version: 1.0 Pass the adjustable voltage regulator information for omap4panda board from device tree. Signed-off-by: Rajendra Nayak --- arch/arm/boot/dts/omap4-panda.dts | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/omap4-panda.dts b/arch/arm/boot/dts/omap4-panda.dts index b66bcd6..f6cc48a 100644 --- a/arch/arm/boot/dts/omap4-panda.dts +++ b/arch/arm/boot/dts/omap4-panda.dts @@ -40,6 +40,30 @@ compatible = "ti,twl4030-rtc"; interrupts = <11>; }; + + vaux2: regulator@0 { + compatible = "ti,twl6030-vaux2","ti,twl6030"; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <2800000>; + }; + + vaux3: regulator@1 { + compatible = "ti,twl6030-vaux3","ti,twl6030"; + regulator-min-microvolt = <1000000>; + regulator-max-microvolt = <3000000>; + }; + + vmmc: regulator@2 { + compatible = "ti,twl6030-vmmc","ti,twl6030"; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <3000000>; + }; + + vpp: regulator@3 { + compatible = "ti,twl6030-vpp","ti,twl6030"; + regulator-min-microvolt = <1800000>; + regulator-max-microvolt = <2500000>; + }; }; };