All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Vishwanathrao Badarkhe, Manish" <manishv.b@ti.com>
To: "Vishwanathrao Badarkhe, Manish" <manishv.b@ti.com>,
	"devicetree-discuss@lists.ozlabs.org" 
	<devicetree-discuss@lists.ozlabs.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"davinci-linux-open-source@linux.davincidsp.com" 
	<davinci-linux-open-source@linux.davincidsp.com>
Cc: "AnilKumar, Chimata" <anilkumar@ti.com>,
	"tony@atomide.com" <tony@atomide.com>, "hs@denx.de" <hs@denx.de>,
	"broonie@opensource.wolfsonmicro.com" 
	<broonie@opensource.wolfsonmicro.com>,
	"sameo@linux.intel.com" <sameo@linux.intel.com>,
	"khilman@deeprootsystems.com" <khilman@deeprootsystems.com>,
	"Nori, Sekhar" <nsekhar@ti.com>,
	"linus.walleij@linaro.org" <linus.walleij@linaro.org>,
	"linux@arm.linux.org.uk" <linux@arm.linux.org.uk>,
	"rob@landley.net" <rob@landley.net>,
	"rob.herring@calxeda.com" <rob.herring@calxeda.com>,
	"grant.likely@secretlab.ca" <grant.likely@secretlab.ca>
Subject: RE: [PATCH V2 5/6] ARM: regulator: add tps6507x device tree data
Date: Thu, 7 Feb 2013 10:21:09 +0000	[thread overview]
Message-ID: <A4887BF146CD57468F700B415D2F4701583311@DBDE01.ent.ti.com> (raw)
In-Reply-To: <1359445134-13323-6-git-send-email-manishv.b@ti.com>

Hi Mark,

On Tue, Jan 29, 2013 at 13:08:53, Vishwanathrao Badarkhe, Manish wrote:
> Add device tree data for tps6507x regulator by adding all tps6507x regulator nodes. Regulators are initialized based on compatible name provided in tps6507x DT file.
> 
> All tps6507x PMIC regulator device tree nodes are placed in a separate device tree include file (tps6507x.dtsi).
> tps6507x.dtsi file is created using datasheet http://www.ti.com/lit/ds/symlink/tps65070.pdf
> 
> Tested on da850-evm.
> 
> Signed-off-by: Vishwanathrao Badarkhe, Manish <manishv.b@ti.com>
> ---
> Changes since V1:
>  - Updated Copyright information.
> 
> :000000 100644 0000000... 4c326e5... A	arch/arm/boot/dts/tps6507x.dtsi
>  arch/arm/boot/dts/tps6507x.dtsi |   47 +++++++++++++++++++++++++++++++++++++++
>  1 files changed, 47 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/tps6507x.dtsi b/arch/arm/boot/dts/tps6507x.dtsi new file mode 100644 index 0000000..4c326e5
> --- /dev/null
> +++ b/arch/arm/boot/dts/tps6507x.dtsi
> @@ -0,0 +1,47 @@
> +/*
> + * Copyright (C) 2013 Texas Instruments Incorporated - 
> +http://www.ti.com/
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +/*
> + * Integrated Power Management Chip
> + * http://www.ti.com/lit/ds/symlink/tps65070.pdf
> + */
> +
> +&tps {
> +	compatible = "ti,tps6507x";
> +
> +	regulators {
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		vdcdc1_reg: regulator@0 {
> +			reg = <0>;
> +			regulator-compatible = "VDCDC1";
> +		};
> +
> +		vdcdc2_reg: regulator@1 {
> +			reg = <1>;
> +			regulator-compatible = "VDCDC2";
> +		};
> +
> +		vdcdc3_reg: regulator@2 {
> +			reg = <2>;
> +			regulator-compatible = "VDCDC3";
> +		};
> +
> +		ldo1_reg: regulator@3 {
> +			reg = <3>;
> +			regulator-compatible = "LDO1";
> +		};
> +
> +		ldo2_reg: regulator@4 {
> +			reg = <4>;
> +			regulator-compatible = "LDO2";
> +		};
> +
> +	};
> +};
> --
> 1.7.4.1
> 
> 

If there are not any comments on this patch, Could you please 
accept this patch?

Regards, 
Manish

WARNING: multiple messages have this Message-ID (diff)
From: manishv.b@ti.com (Vishwanathrao Badarkhe, Manish)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V2 5/6] ARM: regulator: add tps6507x device tree data
Date: Thu, 7 Feb 2013 10:21:09 +0000	[thread overview]
Message-ID: <A4887BF146CD57468F700B415D2F4701583311@DBDE01.ent.ti.com> (raw)
In-Reply-To: <1359445134-13323-6-git-send-email-manishv.b@ti.com>

Hi Mark,

On Tue, Jan 29, 2013 at 13:08:53, Vishwanathrao Badarkhe, Manish wrote:
> Add device tree data for tps6507x regulator by adding all tps6507x regulator nodes. Regulators are initialized based on compatible name provided in tps6507x DT file.
> 
> All tps6507x PMIC regulator device tree nodes are placed in a separate device tree include file (tps6507x.dtsi).
> tps6507x.dtsi file is created using datasheet http://www.ti.com/lit/ds/symlink/tps65070.pdf
> 
> Tested on da850-evm.
> 
> Signed-off-by: Vishwanathrao Badarkhe, Manish <manishv.b@ti.com>
> ---
> Changes since V1:
>  - Updated Copyright information.
> 
> :000000 100644 0000000... 4c326e5... A	arch/arm/boot/dts/tps6507x.dtsi
>  arch/arm/boot/dts/tps6507x.dtsi |   47 +++++++++++++++++++++++++++++++++++++++
>  1 files changed, 47 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/tps6507x.dtsi b/arch/arm/boot/dts/tps6507x.dtsi new file mode 100644 index 0000000..4c326e5
> --- /dev/null
> +++ b/arch/arm/boot/dts/tps6507x.dtsi
> @@ -0,0 +1,47 @@
> +/*
> + * Copyright (C) 2013 Texas Instruments Incorporated - 
> +http://www.ti.com/
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +/*
> + * Integrated Power Management Chip
> + * http://www.ti.com/lit/ds/symlink/tps65070.pdf
> + */
> +
> +&tps {
> +	compatible = "ti,tps6507x";
> +
> +	regulators {
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		vdcdc1_reg: regulator at 0 {
> +			reg = <0>;
> +			regulator-compatible = "VDCDC1";
> +		};
> +
> +		vdcdc2_reg: regulator at 1 {
> +			reg = <1>;
> +			regulator-compatible = "VDCDC2";
> +		};
> +
> +		vdcdc3_reg: regulator at 2 {
> +			reg = <2>;
> +			regulator-compatible = "VDCDC3";
> +		};
> +
> +		ldo1_reg: regulator at 3 {
> +			reg = <3>;
> +			regulator-compatible = "LDO1";
> +		};
> +
> +		ldo2_reg: regulator at 4 {
> +			reg = <4>;
> +			regulator-compatible = "LDO2";
> +		};
> +
> +	};
> +};
> --
> 1.7.4.1
> 
> 

If there are not any comments on this patch, Could you please 
accept this patch?

Regards, 
Manish

  reply	other threads:[~2013-02-07 10:21 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-29  7:38 [PATCH V2 0/6] davinci: DT support for i2c0 and tps6507x Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` [PATCH V2 1/6] pinctrl: pinctrl-single: use arch_initcall and module_exit Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29 10:59   ` Linus Walleij
2013-01-29 10:59     ` Linus Walleij
2013-01-29 12:02     ` Vishwanathrao Badarkhe, Manish
2013-01-29 12:02       ` Vishwanathrao Badarkhe, Manish
2013-01-29 12:02       ` Vishwanathrao Badarkhe, Manish
2013-02-01  7:05     ` Sekhar Nori
2013-02-01  7:05       ` Sekhar Nori
2013-02-01  7:05       ` Sekhar Nori
2013-02-01 17:09     ` Tony Lindgren
2013-02-01 17:09       ` Tony Lindgren
2013-02-01 17:11       ` Tony Lindgren
2013-02-01 17:11         ` Tony Lindgren
2013-02-05  6:36         ` Vishwanathrao Badarkhe, Manish
2013-02-05  6:36           ` Vishwanathrao Badarkhe, Manish
2013-02-05  6:36           ` Vishwanathrao Badarkhe, Manish
2013-02-05 11:27           ` Russell King - ARM Linux
2013-02-05 11:27             ` Russell King - ARM Linux
2013-02-05 11:27             ` Russell King - ARM Linux
2013-02-06  6:04             ` Vishwanathrao Badarkhe, Manish
2013-02-06  6:04               ` Vishwanathrao Badarkhe, Manish
2013-02-06  6:04               ` Vishwanathrao Badarkhe, Manish
2013-02-05 13:00           ` Linus Walleij
2013-02-05 13:00             ` Linus Walleij
2013-02-05 13:00             ` Linus Walleij
2013-02-06  4:57             ` Vishwanathrao Badarkhe, Manish
2013-02-06  4:57               ` Vishwanathrao Badarkhe, Manish
2013-02-06  4:57               ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` [PATCH V2 2/6] ARM: davinci: da850: add OF_DEV_AUXDATA entry for I2C0 Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` [PATCH V2 3/6] ARM: davinci: da850: add DT node " Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-02-03 12:49   ` Sekhar Nori
2013-02-03 12:49     ` Sekhar Nori
2013-02-03 12:49     ` Sekhar Nori
2013-02-04  3:07     ` Vishwanathrao Badarkhe, Manish
2013-02-04  3:07       ` Vishwanathrao Badarkhe, Manish
2013-02-04  3:07       ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` [PATCH V2 4/6] mfd: tps6507x: add device-tree support Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-02-03 22:31   ` Samuel Ortiz
2013-02-03 22:31     ` Samuel Ortiz
2013-01-29  7:38 ` [PATCH V2 5/6] ARM: regulator: add tps6507x device tree data Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-02-07 10:21   ` Vishwanathrao Badarkhe, Manish [this message]
2013-02-07 10:21     ` Vishwanathrao Badarkhe, Manish
2013-02-07 10:21     ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38 ` [PATCH V2 6/6] ARM: davinci: da850: add tps6507x regulator DT data Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-01-29  7:38   ` Vishwanathrao Badarkhe, Manish
2013-02-07 10:22   ` Vishwanathrao Badarkhe, Manish
2013-02-07 10:22     ` Vishwanathrao Badarkhe, Manish
2013-02-07 10:22     ` Vishwanathrao Badarkhe, Manish

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=A4887BF146CD57468F700B415D2F4701583311@DBDE01.ent.ti.com \
    --to=manishv.b@ti.com \
    --cc=anilkumar@ti.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=grant.likely@secretlab.ca \
    --cc=hs@denx.de \
    --cc=khilman@deeprootsystems.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=nsekhar@ti.com \
    --cc=rob.herring@calxeda.com \
    --cc=rob@landley.net \
    --cc=sameo@linux.intel.com \
    --cc=tony@atomide.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.