From patchwork Fri Apr 26 10:37:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Kachhap X-Patchwork-Id: 2492391 X-Patchwork-Delegate: rui.zhang@intel.com Return-Path: X-Original-To: patchwork-linux-pm@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 735C2DF230 for ; Fri, 26 Apr 2013 10:41:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760118Ab3DZKj3 (ORCPT ); Fri, 26 Apr 2013 06:39:29 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:48432 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760111Ab3DZKjZ (ORCPT ); Fri, 26 Apr 2013 06:39:25 -0400 Received: by mail-pa0-f52.google.com with SMTP id fb10so7043pad.11 for ; Fri, 26 Apr 2013 03:39:24 -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=ABhXbJpQtbKFSCHC+6hKVqZCECnj2WwKWBsiBFJoLXsObXuYH5ydPOl53SrxuyHXOG WA56rGt8WBPEDkPLfP2upYy9uZWNBe1OZ3wVQr8sV5ks4B6fF7k+wRw+qml8Oc8Ei5In e6hSqxhICCDphN7MTGu/1n6s7BKWCRiiUDxcd0jzz9tIZVs3GhNh7JJ3FqDjmzaNpLwN x1+hibwLsuCKMenDpvOdzxDE9wOvUIMHxBoUhGSX8nP45xvwFV3C0L6kWVqu5CRBREZ3 VBjHJ00nLiUbmnzYrWBjSxmoZWZg/NaFsqyfkjFDp3gY3mdtbCfWqrNdJRlF0UQaz/qa yY0w== X-Received: by 10.68.170.3 with SMTP id ai3mr58145044pbc.206.1366972764751; Fri, 26 Apr 2013 03:39:24 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPSA id at4sm11172333pbc.40.2013.04.26.03.39.19 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 26 Apr 2013 03:39:23 -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 V2 17/20] ARM: dts: thermal: exynos4: Add documentation for Exynos SoC thermal bindings Date: Fri, 26 Apr 2013 16:07:48 +0530 Message-Id: <1366972671-9227-18-git-send-email-amit.daniel@samsung.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1366972671-9227-1-git-send-email-amit.daniel@samsung.com> References: <1366972671-9227-1-git-send-email-amit.daniel@samsung.com> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@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"; + };