From: Lee Jones <lee.jones@linaro.org>
To: Beomho Seo <beomho.seo@samsung.com>
Cc: sre@kernel.org, robh+dt@kernel.org, pawel.moll@arm.com,
mark.rutland@arm.com, ijc+devicetree@hellion.org.uk,
galak@codeaurora.org, linux-kernel@vger.kernel.org,
linux-pm@vger.kernel.org, devicetree@vger.kernel.org,
cw00.choi@samsung.com, sangbae90.lee@samsung.com,
inki.dae@samsung.com, Jaewon Kim <jaewon02.kim@samsung.com>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>
Subject: Re: [PATCH v8 2/2] Documentation: Add device tree bindings document for max77843
Date: Tue, 28 Apr 2015 14:35:00 +0100 [thread overview]
Message-ID: <20150428133500.GE9169@x1> (raw)
In-Reply-To: <1427808215-19178-3-git-send-email-beomho.seo@samsung.com>
DT Ack please.
> From: Jaewon Kim <jaewon02.kim@samsung.com>
>
> Add document describing device tree bindings for max77843 MFD.
> Drivers: MFD core, regulator, extcon, charger and fuelgauge.
>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Pawel Moll <pawel.moll@arm.com>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk>
> Cc: Kumar Gala <galak@codeaurora.org>
> Cc: Lee Jones <lee.jones@linaro.org>
> Cc: Sebastian Reichel <sre@kernel.org>
> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
>
> Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com>
> Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
> ---
> Documentation/devicetree/bindings/mfd/max77843.txt | 100 ++++++++++++++++++++
> 1 file changed, 100 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/mfd/max77843.txt
>
> diff --git a/Documentation/devicetree/bindings/mfd/max77843.txt b/Documentation/devicetree/bindings/mfd/max77843.txt
> new file mode 100644
> index 0000000..4111f84
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/max77843.txt
> @@ -0,0 +1,100 @@
> +Maxim MAX77843 multi-function device
> +
> +MAX77843 is a Multi-Function Device with the following submodules:
> +- PMIC : 2 SAFEOUT LDOs for USB device
> +- CHARGER : Li+ battery charger with Fuel Gauge
> +- MUIC : Micro USB Interface Controller
> +- HAPTIC : Motor Controller for tactile feedback
> +
> +It is interfaced to host controller using I2C.
> +
> +Required properties:
> +- compatible : Must be "maxim,max77843".
> +- reg : I2C slave address of PMIC block.
> +- interrupts : I2C line for main SoCs.
> +- interrupt-parent : The parent of interrupt controller.
> +
> +Optional properties:
> +- regulators : The regulators of max77843 have to be instantiated under subnode
> + named "regulators" using the following format.
> +
> + [*]refer : Documentation/devicetree/bindings/regulator/regulator.txt
> +
> + regulators {
> + SAFEOUT {
> + regulator-name = "SAFEOUT";
> + };
> + }
> +
> + List of valid regulator names:
> + - SAFEOUT1, SAFEOUT2, CHARGER.
> +
> +- max77843-muic : This properties used by extcon consumers.
> + Required properties:
> + - compatible : Must be "maxim,max77842-muic".
> +
> +- max77843-charger : There battery charger of MAX77843 have to be instantiated
> + under sub-node named "max77843-charger" using the following format.
> + Required properties:
> + - compatible : Must be "maxim,max77842-charger".
> + - maxim,fast-charge-uamp : Fast charge current levels are
> + 100 mA to 3150 mA programmed by I2C per 100 mA.
> + - maxim,top-off-uamp : Top off current threshold levels are
> + 125 mA to 650 mA programmed by I2C per 75 mA.
> + - maxim,input-uamp-limit : Input current limit levels are
> + 100 mA to 3533 mA programmed by I2C per 33 mA.
> +
> +- max77843-haptic : The MAX77843 haptic device provides the tactile feedback
> + to the user by using PWM(Pulse Width Modulation) signal.
> + Required properties:
> + - compatible : Must be "maxim,max77843-hpatic".
> + - haptic-supply : Power supply for the haptic motor.
> + [*] refer Documentation/devicetree/
> + bindings/regulator/regulator.txt
> + - pwms : phandle for the PWM(Pulse Width Modulation) device.
> + PWM properties should be named "pwms".
> + [*] refer Documentation/devicetree/bindings/pwm/pwm.txt
> +
> +Example:
> + max77843@66 {
> + compatible = "samsung,max77843";
> + reg = <0x66>;
> + interrupt-parent = <&gpa1>;
> + interrupts = <5 2>;
> +
> + regulators {
> + SAFEOUT1 {
> + regulator-name = "SAFEOUT1";
> + regulator-min-microvolt = <3300000>;
> + regulator-max-microvolt = <4950000>;
> + };
> + SAFEOUT2 {
> + regulator-name = "SAFEOUT2";
> + regulator-min-microvolt = <3300000>;
> + regulator-max-microvolt = <4950000>;
> + };
> + CHARGER {
> + regulator-name = "CHARGER";
> + regulator-min-microamp = <100000>;
> + regulator-max-microamp = <3150000>;
> + };
> + };
> +
> + haptic {
> + compatible = "maxim,max77843-haptic";
> + haptic-supply = <&haptic_supply>;
> + pwms = <&pwm 0 40000 0>;
> + pwm-names = "haptic";
> + };
> +
> + max77843-muic {
> + compatible = "maxim,max77843-muic";
> + };
> +
> + max77843-charger {
> + compatible = "maxim,max77843-charger";
> + maxim,fast-charge-uamp = <450000>;
> + maxim,top-off-uamp = <125000>;
> + maxim,input-uamp-limit = <500000>;
> + };
> + };
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
prev parent reply other threads:[~2015-04-28 13:35 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-31 13:23 [PATCH v8 0/2] Add new MFD driver for MAX77843 Beomho Seo
2015-03-31 13:23 ` [PATCH v8 1/2] power: max77843_charger: Add Max77843 charger device driver Beomho Seo
2015-03-31 13:23 ` [PATCH v8 2/2] Documentation: Add device tree bindings document for max77843 Beomho Seo
2015-04-01 19:01 ` Rob Herring
2015-04-28 13:35 ` Lee Jones [this message]
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=20150428133500.GE9169@x1 \
--to=lee.jones@linaro.org \
--cc=beomho.seo@samsung.com \
--cc=cw00.choi@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.torokhov@gmail.com \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=inki.dae@samsung.com \
--cc=jaewon02.kim@samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=robh+dt@kernel.org \
--cc=sangbae90.lee@samsung.com \
--cc=sre@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).