From patchwork Mon Jun 16 02:17:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Jeong X-Patchwork-Id: 4355751 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 0AB499F333 for ; Mon, 16 Jun 2014 02:18:17 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2324320270 for ; Mon, 16 Jun 2014 02:18:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9292B202A1 for ; Mon, 16 Jun 2014 02:18:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752798AbaFPCSF (ORCPT ); Sun, 15 Jun 2014 22:18:05 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:44641 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752727AbaFPCRy (ORCPT ); Sun, 15 Jun 2014 22:17:54 -0400 Received: by mail-pa0-f54.google.com with SMTP id et14so3954553pad.27 for ; Sun, 15 Jun 2014 19:17:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=/yrw4Lo4EdzeHcSMliuoSeXdkh75vR4Jh5TqKGVrkHg=; b=KQneAcYNNH01o/B0NBL2UTT+A073N3SzvMI0Msw3OZ6dMRMNyyIUNvTV+5yW3og7XA FmvimXYPQXHqz9vGjoccN/Xuz49cO9WZPxyEKNMUnqwb8ZqGa8FlNBEONp8k/80C4qd5 B7m8LAVrDOzAtZJmEzBgEnCzHymVVRILg+1gpep0Fx4Lqv42rzFW2iEkNs8+rsEgu7U1 T5C0GoIXYG4ydwxQqjcirgsT+QPgt+r9oWqktuYTwthI1gnJKbuB//2tBtQF8w8KrDc5 2Vjg4t1wVAy15FtpvmhRt0JO9GszDlPhtIAWPB5OavU97hAXYJgsLRz7a0Wv0FqLbqcf NyYQ== X-Received: by 10.66.66.202 with SMTP id h10mr20522151pat.70.1402885073327; Sun, 15 Jun 2014 19:17:53 -0700 (PDT) Received: from localhost.localdomain ([117.111.13.24]) by mx.google.com with ESMTPSA id ir10sm15601336pbc.59.2014.06.15.19.17.48 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 15 Jun 2014 19:17:52 -0700 (PDT) From: Daniel Jeong To: Jingoo Han , Bryan Wu , Lee Jones , Jean-Christophe Plagniol-Villard , Tomi Valkeinen , Grant Likely , Rob Herring , Randy Dunlap Cc: Daniel Jeong , , , , , Daniel Jeong Subject: [RFC 2/2] backlight: device tree: add new tps611xx backlight driver Date: Mon, 16 Jun 2014 11:17:23 +0900 Message-Id: <1402885043-3626-3-git-send-email-gshark.jeong@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1402885043-3626-1-git-send-email-gshark.jeong@gmail.com> References: <1402885043-3626-1-git-send-email-gshark.jeong@gmail.com> Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 This commit is about tps611xx device tree documentation. Signed-off-by: Daniel Jeong --- .../video/backlight/tps611xx-backlight.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Documentation/devicetree/bindings/video/backlight/tps611xx-backlight.txt diff --git a/Documentation/devicetree/bindings/video/backlight/tps611xx-backlight.txt b/Documentation/devicetree/bindings/video/backlight/tps611xx-backlight.txt new file mode 100644 index 0000000..8a0935d --- /dev/null +++ b/Documentation/devicetree/bindings/video/backlight/tps611xx-backlight.txt @@ -0,0 +1,16 @@ +TPS611xx family of backlight driver based on EasyScale. + +It supports tps61158, tps61161, tps61163 and tps61165. + +Required properties: +- compatible: "ti,tps61158_bl", "ti,tps61161_bl", "ti,tps61163_bl", "ti,tps61165_bl" +- rfa_en: enable request for acknowledge. +- en_gpio_num: gpio number for en pin. + +Example: + + backlight { + compatible = "ti,tps61163_bl"; + rfa_en = <1>; + en_gpio_num = <45>; + };