From patchwork Tue Aug 12 16:44:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Javier Martinez Canillas X-Patchwork-Id: 4714181 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 B214FC0338 for ; Tue, 12 Aug 2014 16:46:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DB0B72014A for ; Tue, 12 Aug 2014 16:46:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0DB1420148 for ; Tue, 12 Aug 2014 16:46:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754226AbaHLQqn (ORCPT ); Tue, 12 Aug 2014 12:46:43 -0400 Received: from bhuna.collabora.co.uk ([93.93.135.160]:38269 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753341AbaHLQpL (ORCPT ); Tue, 12 Aug 2014 12:45:11 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: javier) with ESMTPSA id 305F41A88174 From: Javier Martinez Canillas To: Kukjin Kim Cc: Doug Anderson , Olof Johansson , Yuvaraj Kumar C D , Mark Brown , linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Javier Martinez Canillas Subject: [PATCH 1/6] ARM: dts: Create fragment for tps65090 PMU Date: Tue, 12 Aug 2014 18:44:23 +0200 Message-Id: <1407861868-20097-2-git-send-email-javier.martinez@collabora.co.uk> X-Mailer: git-send-email 2.0.0.rc2 In-Reply-To: <1407861868-20097-1-git-send-email-javier.martinez@collabora.co.uk> References: <1407861868-20097-1-git-send-email-javier.martinez@collabora.co.uk> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 The tps65090 is a Power Management Unit (PMU) used in several boards so the same information is described on different DTS. It is better to create a .dtsi fragment that can be included. Signed-off-by: Javier Martinez Canillas --- arch/arm/boot/dts/tps65090.dtsi | 57 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 arch/arm/boot/dts/tps65090.dtsi diff --git a/arch/arm/boot/dts/tps65090.dtsi b/arch/arm/boot/dts/tps65090.dtsi new file mode 100644 index 0000000..a2ff534 --- /dev/null +++ b/arch/arm/boot/dts/tps65090.dtsi @@ -0,0 +1,57 @@ +/* + * Copyright (C) 2014 Google, Inc + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +/* + * Integrated Power Management Chip + * http://www.ti.com/lit/ds/symlink/tps65090.pdf + */ +&tps { + compatible = "ti,tps65090"; + + regulators { + tps65090_dcdc1: dcdc1 { + }; + + tps65090_dcdc2: dcdc2 { + }; + + tps65090_dcdc3: dcdc3 { + }; + + tps65090_fet1: fet1 { + }; + + tps65090_fet2: fet2 { + }; + + tps65090_fet3: fet3 { + }; + + tps65090_fet4: fet4 { + }; + + tps65090_fet5: fet5 { + }; + + tps65090_fet6: fet6 { + }; + + tps65090_fet7: fet7 { + }; + + tps65090_ldo1: ldo1 { + }; + + tps65090_ldo2: ldo2 { + }; + }; + + tps65090_charger: charger { + compatible = "ti,tps65090-charger"; + }; +};