From patchwork Tue May 7 13:01:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Kachhap X-Patchwork-Id: 2533411 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id BB3603FE80 for ; Tue, 7 May 2013 13:04:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932580Ab3EGNC6 (ORCPT ); Tue, 7 May 2013 09:02:58 -0400 Received: from mail-da0-f46.google.com ([209.85.210.46]:39525 "EHLO mail-da0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932649Ab3EGNC4 (ORCPT ); Tue, 7 May 2013 09:02:56 -0400 Received: by mail-da0-f46.google.com with SMTP id e20so320299dak.5 for ; Tue, 07 May 2013 06:02:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=MSFHRYiPxOvkOuz4ff4dX5I5fIM8c+1hJkkpab0PkUk=; b=nBzeKHjg/36gtEoCoouj8HwaaE+XPZp6ZwAD+oaMXj3dKCOszdPRymFnNIAsj5BKXu C5ffO3/Di7/LnViwsNPqYFbVVJ05X/1jVpkr1/SLz/xsK5vfkfnloanXovHpUqauJK7V qsWkc0GGkLnTCWeGyi0TQrW+tHTfrMNiBo4Z2v+ytDIkIdykqgc2oE7+4Oc1AN5QVvRc n7NO5bvW3MBi8GnIPOSq7X9ZZze4yhzt5hwqiF4mNJA3PSsD0pn6O0wzmOTwIETZuq3L jed1PsEK7H1I+vRZvX9r8yvOqh2ddHNV0n4myW9XNSVTp/hrqb2vR87iwU+vBphEqSNj YhaA== X-Received: by 10.68.134.163 with SMTP id pl3mr2270067pbb.101.1367931775678; Tue, 07 May 2013 06:02:55 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPSA id l4sm28220809pbo.6.2013.05.07.06.02.50 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 07 May 2013 06:02:54 -0700 (PDT) From: Amit Daniel Kachhap To: linux-pm@vger.kernel.org Cc: Zhang Rui , linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, amit.kachhap@gmail.com, Kukjin Kim , Eduardo Valentin , Lukasz Majewski Subject: [PATCH V3 17/21] ARM: dts: thermal: exynos4: Add documentation for Exynos SoC thermal bindings Date: Tue, 7 May 2013 18:31:07 +0530 Message-Id: <1367931671-3906-18-git-send-email-amit.daniel@samsung.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1367931671-3906-1-git-send-email-amit.daniel@samsung.com> References: <1367931671-3906-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"; + };