From patchwork Tue Jun 11 12:53:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Kachhap X-Patchwork-Id: 2703301 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 8CAE7E0172 for ; Tue, 11 Jun 2013 12:56:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755553Ab3FKMzh (ORCPT ); Tue, 11 Jun 2013 08:55:37 -0400 Received: from mail-pa0-f48.google.com ([209.85.220.48]:48912 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751720Ab3FKMzd (ORCPT ); Tue, 11 Jun 2013 08:55:33 -0400 Received: by mail-pa0-f48.google.com with SMTP id kp12so3818375pab.21 for ; Tue, 11 Jun 2013 05:55:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=MSFHRYiPxOvkOuz4ff4dX5I5fIM8c+1hJkkpab0PkUk=; b=Sz2eJSr8FTgjswbODo+PWDd4qyegQw2M4O0z9soEBLXNPITSj90Mawc+R+Obi9I4Q5 2HRBb2XpN4jiRu4B+fCcXHwvYARuvJj1nkwb/J/WGXc3e4Iu6EnRx1PFjfw6fWZG/Cr7 ZgAf+0dzUEJ81XS7KLk5RS/t3Ta4flNbx1sJ+qq5Oji1z9W4x2ivu4UVfacVQkAd3CEz jCdDtCqK4m5pHCCnxVqul6i1glVlzc4XygM3tI4h8iCfQ1Zrvx9FwGfqdIh5XWXKV+ri rZseeJnBpjYf53mgse+3DRMRjdFWI4YdybT67qmm4b8k4Ixogrrmf7W7grV14DF+5mc8 9i0A== X-Received: by 10.68.3.107 with SMTP id b11mr14767231pbb.118.1370955332758; Tue, 11 Jun 2013 05:55:32 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPSA id wi6sm14599807pbc.22.2013.06.11.05.55.28 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 11 Jun 2013 05:55:31 -0700 (PDT) From: Amit Daniel Kachhap To: linux-pm@vger.kernel.org, Zhang Rui , Eduardo Valentin Cc: linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, amit.kachhap@gmail.com, Kukjin Kim , jonghwa3.lee@samsung.com, Lukasz Majewski Subject: [PATCH V5 21/30] ARM: dts: thermal: exynos4: Add documentation for Exynos SoC thermal bindings Date: Tue, 11 Jun 2013 18:23:31 +0530 Message-Id: <1370955220-2949-22-git-send-email-amit.daniel@samsung.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1370955220-2949-1-git-send-email-amit.daniel@samsung.com> References: <1370955220-2949-1-git-send-email-amit.daniel@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org From: Lukasz Majewski Proper description for Exynos4 bindings added to Documentation/devicetree/ bindings Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park --- .../devicetree/bindings/thermal/exynos-thermal.txt | 25 ++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) create mode 100644 Documentation/devicetree/bindings/thermal/exynos-thermal.txt diff --git a/Documentation/devicetree/bindings/thermal/exynos-thermal.txt b/Documentation/devicetree/bindings/thermal/exynos-thermal.txt new file mode 100644 index 0000000..535fd0e --- /dev/null +++ b/Documentation/devicetree/bindings/thermal/exynos-thermal.txt @@ -0,0 +1,25 @@ +* Exynos Thermal Management Unit (TMU) + +** Required properties: + +- compatible : One of the following: + "samsung,exynos4412-tmu" + "samsung,exynos4210-tmu" + "samsung,exynos5250-tmu" +- interrupt-parent : The phandle for the interrupt controller +- reg : Address range of the thermal registers +- interrupts : Should contain interrupt for thermal system +- clocks : The main clock for TMU device +- clock-names : Thermal system clock name + +Example: + + tmu@100C0000 { + compatible = "samsung,exynos4412-tmu"; + interrupt-parent = <&combiner>; + reg = <0x100C0000 0x100>; + interrupts = <2 4>; + clocks = <&clock 383>; + clock-names = "tmu_apbif"; + status = "disabled"; + };