devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Milo Kim <milo.kim@ti.com>
To: devicetree@vger.kernel.org, lee.jones@linaro.org,
	linux-kernel@vger.kernel.org
Cc: Milo Kim <milo.kim@ti.com>
Subject: [PATCH 01/16] Documentation: dt-bindings: mfd: add TI LMU device binding information
Date: Mon, 2 Nov 2015 14:01:08 +0900	[thread overview]
Message-ID: <1446440483-6948-2-git-send-email-milo.kim@ti.com> (raw)
In-Reply-To: <1446440483-6948-1-git-send-email-milo.kim@ti.com>

This patch describes overall binding for TI LMU MFD devices.

Cc: devicetree@vger.kernel.org
Cc: Lee Jones <lee.jones@linaro.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Milo Kim <milo.kim@ti.com>
---
 Documentation/devicetree/bindings/mfd/ti-lmu.txt | 282 +++++++++++++++++++++++
 1 file changed, 282 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mfd/ti-lmu.txt

diff --git a/Documentation/devicetree/bindings/mfd/ti-lmu.txt b/Documentation/devicetree/bindings/mfd/ti-lmu.txt
new file mode 100644
index 0000000..7ccf07e
--- /dev/null
+++ b/Documentation/devicetree/bindings/mfd/ti-lmu.txt
@@ -0,0 +1,282 @@
+TI LMU(Lighting Management Unit) device tree bindings
+
+TI LMU driver supports lighting devices belows.
+
+   Name              Child nodes
+  ------      -------------------------
+  LM3532       Backlight
+  LM3631       Backlight and regulator
+  LM3632       Backlight and regulator
+  LM3633       Backlight, LED and HWMON
+  LM3695       Backlight
+  LM3697       Backlight and HWMON
+
+Required properties:
+  - compatible: Should be one of lists below.
+                "ti,lm3532"
+                "ti,lm3631"
+                "ti,lm3632"
+                "ti,lm3633"
+                "ti,lm3695"
+                "ti,lm3697"
+  - reg: I2C slave address.
+         0x11 is LM3632
+         0x29 is LM3631
+         0x36 is LM3633, LM3697
+         0x38 is LM3532
+         0x63 is LM3695
+
+Optional properties:
+  - enable-gpios: A GPIO specifier for hardware enable pin.
+
+Required node:
+  - backlight: All LMU devices have backlight child nodes.
+               For the properties, please refer to [1].
+
+Optional nodes:
+  - hwmon: Hardware fault monitoring driver for LM3633 and LM3697.
+           For the property, please refer to [2].
+  - leds: LED properties for LM3633. Please refer to [3].
+  - regulators: Regulator properties for LM3631 and LM3632.
+          Please refer to [4].
+
+[1] Documentation/devicetree/bindings/video/backlight/ti-lmu-backlight.txt
+[2] Documentation/devicetree/bindings/hwm/ti-lmu-hwmon.txt
+[3] Documentation/devicetree/bindings/leds/leds-lm3633.txt
+[4] Documentation/devicetree/bindings/regulator/lm363x-regulator.txt
+
+Examples:
+
+LM3532 has a backlight device. External GPIO is used for enabling LM3532.
+
+lm3532@38 {
+	compatible = "ti,lm3532";
+	reg = <0x38>;
+
+	enable-gpios = <&pioC 2 GPIO_ACTIVE_HIGH>;
+
+	backlight {
+		compatible = "ti,lm3532-backlight";
+
+		lcd {
+			hvled1-used;
+			hvled2-used;
+			hvled3-used;
+
+			ramp-up-msec = <30>;
+			ramp-down-msec = <0>;
+
+			backlight-max-microamp = <5000>;
+		};
+	};
+};
+
+LM3631 has 5 regulators with one backlight device.
+
+lm3631@29 {
+	compatible = "ti,lm3631";
+	reg = <0x29>;
+
+	regulators {
+		compatible = "ti,lm363x-regulator";
+
+		vboost {
+			regulator-name = "lcd_boost";
+			regulator-min-microvolt = <4500000>;
+			regulator-max-microvolt = <6350000>;
+			regulator-always-on;
+		};
+
+		vcont {
+			regulator-name = "lcd_vcont";
+			regulator-min-microvolt = <1800000>;
+			regulator-max-microvolt = <3300000>;
+		};
+
+		voref {
+			regulator-name = "lcd_voref";
+			regulator-min-microvolt = <4000000>;
+			regulator-max-microvolt = <6000000>;
+		};
+
+		vpos {
+			regulator-name = "lcd_vpos";
+			regulator-min-microvolt = <4000000>;
+			regulator-max-microvolt = <6000000>;
+			regulator-boot-on;
+		};
+
+		vneg {
+			regulator-name = "lcd_vneg";
+			regulator-min-microvolt = <4000000>;
+			regulator-max-microvolt = <6000000>;
+			regulator-boot-on;
+		};
+	};
+
+	backlight {
+		compatible = "ti,lm3631-backlight";
+
+		lcd {
+			backlight-name = "lcd_bl";
+			hvled1-used;
+			hvled2-used;
+
+			ramp-up-msec = <300>;
+		};
+	};
+};
+
+LM3632 has 3 regulators with one backlight device. External GPIO is
+used for enabling LM3632.
+
+lm3632@11 {
+	compatible = "ti,lm3632";
+	reg = <0x11>;
+
+	enable-gpios = <&pioC 2 GPIO_ACTIVE_HIGH>;
+
+	regulators {
+		compatible = "ti,lm363x-regulator";
+
+		ti,lcm-en1-gpio = <&pioC 0 GPIO_ACTIVE_HIGH>;
+		ti,lcm-en2-gpio = <&pioC 1 GPIO_ACTIVE_HIGH>;
+
+		vboost {
+			regulator-name = "lcd_boost";
+			regulator-min-microvolt = <4500000>;
+			regulator-max-microvolt = <6400000>;
+			regulator-always-on;
+		};
+
+		vpos {
+			regulator-name = "lcd_vpos";
+			regulator-min-microvolt = <4000000>;
+			regulator-max-microvolt = <6000000>;
+		};
+
+		vneg {
+			regulator-name = "lcd_vneg";
+			regulator-min-microvolt = <4000000>;
+			regulator-max-microvolt = <6000000>;
+		};
+	};
+
+	backlight {
+		compatible = "ti,lm3632-backlight";
+
+		lcd {
+			backlight-name = "lcd";
+			hvled1-used;
+			hvled2-used;
+		};
+	};
+};
+
+LM3633 has multiple backlight channels, LED channels and hardware fault
+monitoring driver. External GPIO is used for enabling LM3633.
+
+lm3633@36 {
+	compatible = "ti,lm3633";
+	reg = <0x36>;
+
+	enable-gpios = <&pioC 2 GPIO_ACTIVE_HIGH>;
+
+	backlight {
+		compatible = "ti,lm3633-backlight";
+
+		pwms = <&pwm0 0 10000 0>; /* pwm number, period, polarity */
+		pwm-names = "lmu-backlight";
+
+		main {
+			backlight-name = "main_lcd";
+			hvled2-used;
+			hvled3-used;
+			backlight-max-microamp = <20000>;
+
+			ramp-up-msec = <500>;
+			ramp-down-msec = <500>;
+		};
+
+		front {
+			backlight-name = "front_lcd";
+			hvled1-used;
+
+			ramp-up-msec = <1000>;
+			ramp-down-msec = <0>;
+
+			pwm-period = <10000>;
+		};
+	};
+
+	leds {
+		compatible = "ti,lm3633-leds";
+
+		chan2 {
+			channel-name = "status";
+			lvled2-used;
+			led-max-microamp = <6000>;
+		};
+
+		chan456 {
+			channel-name = "rgb";
+			lvled4-used;
+			lvled5-used;
+			lvled6-used;
+		};
+	};
+
+	hwmon {
+		compatible = "ti,lm3633-hwmon";
+	};
+};
+
+LM3695 is single backlight device.
+
+lm3695@63 {
+	compatible = "ti,lm3695";
+	reg = <0x63>;
+
+	backlight {
+		compatible = "ti,lm3695-backlight";
+
+		lcd {
+			hvled1-used;
+			hvled2-used;
+			backlight-max-microamp = <20000>;
+		};
+	};
+};
+
+LM3697 has one backlight device and hardware fault monitoring driver.
+External GPIO is used for enabling LM3697.
+
+lm3697@36 {
+	compatible = "ti,lm3697";
+	reg = <0x36>;
+
+	enable-gpios = <&pioC 2 GPIO_ACTIVE_HIGH>;
+
+	backlight {
+		compatible = "ti,lm3697-backlight";
+
+		pwms = <&pwm0 0 10000 0>; /* pwm number, period, polarity */
+		pwm-names = "lmu-backlight";
+
+		lcd {
+			backlight-name = "bl";
+			hvled1-used;
+			hvled2-used;
+			hvled3-used;
+			backlight-max-microamp = <20000>;
+
+			ramp-up-msec = <500>;
+			ramp-down-msec = <500>;
+			pwm-period = <10000>;
+		};
+	};
+
+	hwmon {
+		compatible = "ti,lm3697-hwmon";
+	};
+};
-- 
1.9.1

  reply	other threads:[~2015-11-02  5:01 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-02  5:01 [PATCH 00/16] Support TI LMU devices Milo Kim
2015-11-02  5:01 ` Milo Kim [this message]
2015-11-02  5:01   ` [PATCH 02/16] Documentation: dt-bindings: backlight: add TI LMU backlight binding information Milo Kim
2015-11-02  5:01     ` [PATCH 03/16] Documentation: dt-bindings: hwmon: add TI LMU HWMON " Milo Kim
2015-11-02  5:01       ` [PATCH 04/16] Documentation: dt-bindings: leds: add LM3633 LED " Milo Kim
2015-11-02  5:01         ` [PATCH 05/16] Documentation: dt-bindings: regulator: add LM363x regulator " Milo Kim
2015-11-02  5:01           ` [PATCH 06/16] mfd: add TI LMU driver Milo Kim
2015-11-02  5:01             ` [PATCH 07/16] backlight: add TI LMU backlight common driver Milo Kim
2015-11-02  5:01               ` [PATCH 08/16] backlight: ti-lmu-backlight: add LM3532 driver Milo Kim
2015-11-02  5:01                 ` [PATCH 09/16] backlight: ti-lmu-backlight: add LM3631 driver Milo Kim
2015-11-02  5:01                   ` [PATCH 10/16] backlight: ti-lmu-backlight: add LM3632 driver Milo Kim
     [not found]                     ` <1446440483-6948-11-git-send-email-milo.kim-l0cyMroinI0@public.gmane.org>
2015-11-02  5:01                       ` [PATCH 11/16] backlight: ti-lmu-backlight: add LM3633 driver Milo Kim
2015-11-02  5:01                         ` [PATCH 12/16] backlight: ti-lmu-backlight: add LM3695 driver Milo Kim
2015-11-02  5:01                           ` [PATCH 13/16] backlight: ti-lmu-backlight: add LM3697 driver Milo Kim
2015-11-02  5:01                             ` [PATCH 14/16] hwmon: add TI LMU hardware fault monitoring driver Milo Kim
2015-11-02  5:01                               ` [PATCH 15/16] leds: add LM3633 driver Milo Kim
2015-11-02  5:01                                 ` [PATCH 16/16] regulator: add LM363X driver Milo Kim
     [not found]         ` <1446440483-6948-5-git-send-email-milo.kim-l0cyMroinI0@public.gmane.org>
2015-11-02 14:53           ` [PATCH 04/16] Documentation: dt-bindings: leds: add LM3633 LED binding information Rob Herring
2015-11-03  7:05             ` Kim, Milo
     [not found] ` <1446440483-6948-1-git-send-email-milo.kim-l0cyMroinI0@public.gmane.org>
2015-11-02  5:32   ` [PATCH 00/16] Support TI LMU devices Kim, Milo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1446440483-6948-2-git-send-email-milo.kim@ti.com \
    --to=milo.kim@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).