All of lore.kernel.org
 help / color / mirror / Atom feed
From: maitysanchayan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
To: Srinivas Kandagatla
	<srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	arnd-r2nGTMty4D4@public.gmane.org,
	Greg Kroah-Hartman
	<gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>,
	s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org,
	sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	pantelis.antoniou-OWPKS81ov/FWk0Htik3J/w@public.gmane.org,
	Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	mporter-OWPKS81ov/FWk0Htik3J/w@public.gmane.org,
	Maxime Ripard
	<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
	linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>
Subject: Re: [PATCH v5 06/11] nvmem: Add bindings for simple nvmem framework
Date: Fri, 19 Jun 2015 16:06:47 +0530	[thread overview]
Message-ID: <20150619103647.GA3913@Sanchayan-Arch> (raw)
In-Reply-To: <1432226652-8947-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Hello Srinivas,

On 15-05-21 17:44:12, Srinivas Kandagatla wrote:
> This patch adds bindings for simple nvmem framework which allows nvmem
> consumers to talk to nvmem providers to get access to nvmem cell data.
> 
> Signed-off-by: Maxime Ripard <maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
> [Maxime Ripard: intial version of eeprom framework]
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> ---
>  Documentation/devicetree/bindings/nvmem/nvmem.txt | 84 +++++++++++++++++++++++
>  1 file changed, 84 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/nvmem/nvmem.txt
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/nvmem.txt b/Documentation/devicetree/bindings/nvmem/nvmem.txt
> new file mode 100644
> index 0000000..ecea654
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/nvmem.txt
> @@ -0,0 +1,84 @@
> += NVMEM Data Device Tree Bindings =
> +
> +This binding is intended to represent the location of hardware
> +configuration data stored in NVMEMs.
> +
> +On a significant proportion of boards, the manufacturer has stored
> +some data on NVMEM, for the OS to be able to retrieve these information
> +and act upon it. Obviously, the OS has to know about where to retrieve
> +these data from, and where they are stored on the storage device.
> +
> +This document is here to document this.
> +
> += Data providers =
> +Contains bindings specific to provider drivers and data cells as children
> +to this node.
> +
> +Optional properties:
> + read-only: Mark the provider as read only.
> +
> += Data cells =
> +These are the child nodes of the provider which contain data cell
> +information like offset and size in nvmem provider.
> +
> +Required properties:
> +reg:	specifies the offset in byte within that storage device, start bit
> +	in the byte and the length in bits of the data we care about.
> +	There could be more then one offset-length pairs in this property.
> +
> +Optional properties:
> +
> +bit-offset: specifies the offset in bit within the address range specified
> +	by reg property. Can take values from 0-7.
> +nbits: specifies number of bits this cell occupies starting from bit-offset.
> +
> +For example:
> +
> +	/* Provider */
> +	qfprom: qfprom@00700000 {
> +		...
> +
> +		/* Data cells */
> +		tsens_calibration: calib@404 {
> +			reg = <0x404 0x10>;
> +		};
> +
> +		tsens_calibration_bckp: calib_bckp@504 {
> +			reg = <0x504 0x11>;
> +			bit-offset = 6;
> +			nbits = 128;
> +		};
> +
> +		pvs_version: pvs-version@6 {
> +			reg = <0x6 0x2>
> +			bit-offset = 7;
> +			nbits = 2;
> +		};
> +
> +		speed_bin: speed-bin@c{
> +			reg = <0xc 0x1>;
> +			bit-offset = 2;
> +			nbits	= 3;
> +
> +		};
> +		...
> +	};

We have a need of exposing information like SoC ID, revision and such
which is what this nvmem framework proposes to be suitable for. Till
now I was trying a different approach for the same [1].

The On Chip One Time Programmable block on the Vybrid can be handled
nicely with this nvmem framework however I had a few queries with
regards to the framework after trying it on a Vybrid VF61 SoC. 

1. From what I understand, getting the information in hex is the only
way possible as of now? Would it be possible to expose the information
as strings from different paths under /sys/class/nvmem/*/nvmem/?

For example, if I have a sub node as below

ocotp: ocotp@400a5000 {
	compatible = "fsl,vf610-ocotp";
	reg = <0x400a5000 0x1000>;

	ocotp_cfg0: cfg0@410 {
		reg = <0x410 0x1>;
	};

	ocotp_cfg1: cfg1@420 {
		reg = <0x420 0x1>;
	};
};

The values from the above register locations represented by the two
sub nodes above can perhaps be exposed as strings? Even if they are
not exposed as strings, making them available in separate paths, is
that something which can be done? So depending on the sub node as
above, /sys/class/nvmem/ocotp0/nvmem/cfg0/ would give values from
the registers specified.

Basically the output of /sys/class/nvmem/*/nvmem being restricted
to only the subnodes specified is what I was hoping to get along
with separate paths.

2. What if the required information is scattered across different memory
regions? In my case, the SoC ID is available from one OCOTP peripheral
block, the revision is in a separate ROM area at the start of the memory
map and some CPU information I am interested in is in another memory
region. I am not sure what would be the right way to approach it with
the nvmem framework.

[1] https://lkml.org/lkml/2015/6/5/189

Thanks & Regards,
Sanchayan Maity.

<snip>

WARNING: multiple messages have this Message-ID (diff)
From: maitysanchayan@gmail.com
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	arnd@arndb.de, Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	s.hauer@pengutronix.de, sboyd@codeaurora.org,
	linux-kernel@vger.kernel.org, pantelis.antoniou@konsulko.com,
	Rob Herring <robh+dt@kernel.org>, Mark Brown <broonie@kernel.org>,
	Kumar Gala <galak@codeaurora.org>,
	mporter@konsulko.com,
	Maxime Ripard <maxime.ripard@free-electrons.com>,
	linux-api@vger.kernel.org, linux-arm-msm@vger.kernel.org,
	Stefan Agner <stefan@agner.ch>
Subject: Re: [PATCH v5 06/11] nvmem: Add bindings for simple nvmem framework
Date: Fri, 19 Jun 2015 16:06:47 +0530	[thread overview]
Message-ID: <20150619103647.GA3913@Sanchayan-Arch> (raw)
In-Reply-To: <1432226652-8947-1-git-send-email-srinivas.kandagatla@linaro.org>

Hello Srinivas,

On 15-05-21 17:44:12, Srinivas Kandagatla wrote:
> This patch adds bindings for simple nvmem framework which allows nvmem
> consumers to talk to nvmem providers to get access to nvmem cell data.
> 
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> [Maxime Ripard: intial version of eeprom framework]
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> ---
>  Documentation/devicetree/bindings/nvmem/nvmem.txt | 84 +++++++++++++++++++++++
>  1 file changed, 84 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/nvmem/nvmem.txt
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/nvmem.txt b/Documentation/devicetree/bindings/nvmem/nvmem.txt
> new file mode 100644
> index 0000000..ecea654
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/nvmem.txt
> @@ -0,0 +1,84 @@
> += NVMEM Data Device Tree Bindings =
> +
> +This binding is intended to represent the location of hardware
> +configuration data stored in NVMEMs.
> +
> +On a significant proportion of boards, the manufacturer has stored
> +some data on NVMEM, for the OS to be able to retrieve these information
> +and act upon it. Obviously, the OS has to know about where to retrieve
> +these data from, and where they are stored on the storage device.
> +
> +This document is here to document this.
> +
> += Data providers =
> +Contains bindings specific to provider drivers and data cells as children
> +to this node.
> +
> +Optional properties:
> + read-only: Mark the provider as read only.
> +
> += Data cells =
> +These are the child nodes of the provider which contain data cell
> +information like offset and size in nvmem provider.
> +
> +Required properties:
> +reg:	specifies the offset in byte within that storage device, start bit
> +	in the byte and the length in bits of the data we care about.
> +	There could be more then one offset-length pairs in this property.
> +
> +Optional properties:
> +
> +bit-offset: specifies the offset in bit within the address range specified
> +	by reg property. Can take values from 0-7.
> +nbits: specifies number of bits this cell occupies starting from bit-offset.
> +
> +For example:
> +
> +	/* Provider */
> +	qfprom: qfprom@00700000 {
> +		...
> +
> +		/* Data cells */
> +		tsens_calibration: calib@404 {
> +			reg = <0x404 0x10>;
> +		};
> +
> +		tsens_calibration_bckp: calib_bckp@504 {
> +			reg = <0x504 0x11>;
> +			bit-offset = 6;
> +			nbits = 128;
> +		};
> +
> +		pvs_version: pvs-version@6 {
> +			reg = <0x6 0x2>
> +			bit-offset = 7;
> +			nbits = 2;
> +		};
> +
> +		speed_bin: speed-bin@c{
> +			reg = <0xc 0x1>;
> +			bit-offset = 2;
> +			nbits	= 3;
> +
> +		};
> +		...
> +	};

We have a need of exposing information like SoC ID, revision and such
which is what this nvmem framework proposes to be suitable for. Till
now I was trying a different approach for the same [1].

The On Chip One Time Programmable block on the Vybrid can be handled
nicely with this nvmem framework however I had a few queries with
regards to the framework after trying it on a Vybrid VF61 SoC. 

1. From what I understand, getting the information in hex is the only
way possible as of now? Would it be possible to expose the information
as strings from different paths under /sys/class/nvmem/*/nvmem/?

For example, if I have a sub node as below

ocotp: ocotp@400a5000 {
	compatible = "fsl,vf610-ocotp";
	reg = <0x400a5000 0x1000>;

	ocotp_cfg0: cfg0@410 {
		reg = <0x410 0x1>;
	};

	ocotp_cfg1: cfg1@420 {
		reg = <0x420 0x1>;
	};
};

The values from the above register locations represented by the two
sub nodes above can perhaps be exposed as strings? Even if they are
not exposed as strings, making them available in separate paths, is
that something which can be done? So depending on the sub node as
above, /sys/class/nvmem/ocotp0/nvmem/cfg0/ would give values from
the registers specified.

Basically the output of /sys/class/nvmem/*/nvmem being restricted
to only the subnodes specified is what I was hoping to get along
with separate paths.

2. What if the required information is scattered across different memory
regions? In my case, the SoC ID is available from one OCOTP peripheral
block, the revision is in a separate ROM area at the start of the memory
map and some CPU information I am interested in is in another memory
region. I am not sure what would be the right way to approach it with
the nvmem framework.

[1] https://lkml.org/lkml/2015/6/5/189

Thanks & Regards,
Sanchayan Maity.

<snip>

WARNING: multiple messages have this Message-ID (diff)
From: maitysanchayan@gmail.com (maitysanchayan at gmail.com)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 06/11] nvmem: Add bindings for simple nvmem framework
Date: Fri, 19 Jun 2015 16:06:47 +0530	[thread overview]
Message-ID: <20150619103647.GA3913@Sanchayan-Arch> (raw)
In-Reply-To: <1432226652-8947-1-git-send-email-srinivas.kandagatla@linaro.org>

Hello Srinivas,

On 15-05-21 17:44:12, Srinivas Kandagatla wrote:
> This patch adds bindings for simple nvmem framework which allows nvmem
> consumers to talk to nvmem providers to get access to nvmem cell data.
> 
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> [Maxime Ripard: intial version of eeprom framework]
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> ---
>  Documentation/devicetree/bindings/nvmem/nvmem.txt | 84 +++++++++++++++++++++++
>  1 file changed, 84 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/nvmem/nvmem.txt
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/nvmem.txt b/Documentation/devicetree/bindings/nvmem/nvmem.txt
> new file mode 100644
> index 0000000..ecea654
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/nvmem.txt
> @@ -0,0 +1,84 @@
> += NVMEM Data Device Tree Bindings =
> +
> +This binding is intended to represent the location of hardware
> +configuration data stored in NVMEMs.
> +
> +On a significant proportion of boards, the manufacturer has stored
> +some data on NVMEM, for the OS to be able to retrieve these information
> +and act upon it. Obviously, the OS has to know about where to retrieve
> +these data from, and where they are stored on the storage device.
> +
> +This document is here to document this.
> +
> += Data providers =
> +Contains bindings specific to provider drivers and data cells as children
> +to this node.
> +
> +Optional properties:
> + read-only: Mark the provider as read only.
> +
> += Data cells =
> +These are the child nodes of the provider which contain data cell
> +information like offset and size in nvmem provider.
> +
> +Required properties:
> +reg:	specifies the offset in byte within that storage device, start bit
> +	in the byte and the length in bits of the data we care about.
> +	There could be more then one offset-length pairs in this property.
> +
> +Optional properties:
> +
> +bit-offset: specifies the offset in bit within the address range specified
> +	by reg property. Can take values from 0-7.
> +nbits: specifies number of bits this cell occupies starting from bit-offset.
> +
> +For example:
> +
> +	/* Provider */
> +	qfprom: qfprom at 00700000 {
> +		...
> +
> +		/* Data cells */
> +		tsens_calibration: calib at 404 {
> +			reg = <0x404 0x10>;
> +		};
> +
> +		tsens_calibration_bckp: calib_bckp at 504 {
> +			reg = <0x504 0x11>;
> +			bit-offset = 6;
> +			nbits = 128;
> +		};
> +
> +		pvs_version: pvs-version at 6 {
> +			reg = <0x6 0x2>
> +			bit-offset = 7;
> +			nbits = 2;
> +		};
> +
> +		speed_bin: speed-bin at c{
> +			reg = <0xc 0x1>;
> +			bit-offset = 2;
> +			nbits	= 3;
> +
> +		};
> +		...
> +	};

We have a need of exposing information like SoC ID, revision and such
which is what this nvmem framework proposes to be suitable for. Till
now I was trying a different approach for the same [1].

The On Chip One Time Programmable block on the Vybrid can be handled
nicely with this nvmem framework however I had a few queries with
regards to the framework after trying it on a Vybrid VF61 SoC. 

1. From what I understand, getting the information in hex is the only
way possible as of now? Would it be possible to expose the information
as strings from different paths under /sys/class/nvmem/*/nvmem/?

For example, if I have a sub node as below

ocotp: ocotp at 400a5000 {
	compatible = "fsl,vf610-ocotp";
	reg = <0x400a5000 0x1000>;

	ocotp_cfg0: cfg0 at 410 {
		reg = <0x410 0x1>;
	};

	ocotp_cfg1: cfg1 at 420 {
		reg = <0x420 0x1>;
	};
};

The values from the above register locations represented by the two
sub nodes above can perhaps be exposed as strings? Even if they are
not exposed as strings, making them available in separate paths, is
that something which can be done? So depending on the sub node as
above, /sys/class/nvmem/ocotp0/nvmem/cfg0/ would give values from
the registers specified.

Basically the output of /sys/class/nvmem/*/nvmem being restricted
to only the subnodes specified is what I was hoping to get along
with separate paths.

2. What if the required information is scattered across different memory
regions? In my case, the SoC ID is available from one OCOTP peripheral
block, the revision is in a separate ROM area at the start of the memory
map and some CPU information I am interested in is in another memory
region. I am not sure what would be the right way to approach it with
the nvmem framework.

[1] https://lkml.org/lkml/2015/6/5/189

Thanks & Regards,
Sanchayan Maity.

<snip>

  parent reply	other threads:[~2015-06-19 10:36 UTC|newest]

Thread overview: 385+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-19 17:07 [RFC PATCH 0/3] Add simple EEPROM Framework via regmap Srinivas Kandagatla
2015-02-19 17:07 ` Srinivas Kandagatla
2015-02-19 17:08 ` [RFC PATCH 1/3] eeprom: Add a simple EEPROM framework Srinivas Kandagatla
2015-02-19 17:08   ` Srinivas Kandagatla
2015-02-19 18:12   ` Andrew Lunn
2015-02-19 18:12     ` Andrew Lunn
2015-02-19 18:12     ` Andrew Lunn
2015-02-20  8:27     ` Srinivas Kandagatla
2015-02-20  8:27       ` Srinivas Kandagatla
2015-02-20  8:27       ` Srinivas Kandagatla
2015-02-20  2:36   ` Stephen Boyd
2015-02-20  2:36     ` Stephen Boyd
2015-02-20  2:36     ` Stephen Boyd
2015-02-20  8:14     ` Srinivas Kandagatla
2015-02-20  8:14       ` Srinivas Kandagatla
2015-02-20 10:24       ` Srinivas Kandagatla
2015-02-20 10:24         ` Srinivas Kandagatla
2015-02-20 10:24         ` Srinivas Kandagatla
2015-02-20 17:21   ` Rob Herring
2015-02-20 17:21     ` Rob Herring
2015-02-20 17:21     ` Rob Herring
2015-02-20 19:25     ` Srinivas Kandagatla
2015-02-20 19:25       ` Srinivas Kandagatla
2015-02-20 19:25       ` Srinivas Kandagatla
2015-02-20 22:01       ` Rob Herring
2015-02-20 22:01         ` Rob Herring
2015-02-20 22:01         ` Rob Herring
2015-02-21 11:31         ` Srinivas Kandagatla
2015-02-21 11:31           ` Srinivas Kandagatla
2015-02-21 11:31           ` Srinivas Kandagatla
2015-02-22 14:34           ` Maxime Ripard
2015-02-22 14:34             ` Maxime Ripard
2015-02-22 14:34             ` Maxime Ripard
2015-02-22 14:32         ` Maxime Ripard
2015-02-22 14:32           ` Maxime Ripard
2015-02-22 14:32           ` Maxime Ripard
2015-02-23  0:57           ` Rob Herring
2015-02-23  0:57             ` Rob Herring
2015-02-23  0:57             ` Rob Herring
2015-02-23 23:11             ` Stephen Boyd
2015-02-23 23:11               ` Stephen Boyd
2015-02-23 23:11               ` Stephen Boyd
2015-02-24  7:08               ` Srinivas Kandagatla
2015-02-24  7:08                 ` Srinivas Kandagatla
2015-02-24  7:08                 ` Srinivas Kandagatla
2015-02-24  9:21               ` Maxime Ripard
2015-02-24  9:21                 ` Maxime Ripard
2015-02-24  9:21                 ` Maxime Ripard
2015-02-25  1:30                 ` Stephen Boyd
2015-02-25  1:30                   ` Stephen Boyd
2015-02-25  1:30                   ` Stephen Boyd
2015-02-26  9:16                   ` Srinivas Kandagatla
2015-02-26  9:16                     ` Srinivas Kandagatla
2015-02-26  9:16                     ` Srinivas Kandagatla
2015-02-26 13:21                     ` Maxime Ripard
2015-02-26 13:21                       ` Maxime Ripard
2015-02-26 13:21                       ` Maxime Ripard
2015-02-26 14:56                       ` Srinivas Kandagatla
2015-02-26 14:56                         ` Srinivas Kandagatla
2015-02-26 14:56                         ` Srinivas Kandagatla
2015-02-26 13:18                   ` Maxime Ripard
2015-02-26 13:18                     ` Maxime Ripard
2015-02-26 13:18                     ` Maxime Ripard
2015-02-23  9:15         ` Sascha Hauer
2015-02-23  9:15           ` Sascha Hauer
2015-02-23  9:15           ` Sascha Hauer
2015-02-20 17:46   ` Russell King - ARM Linux
2015-02-20 17:46     ` Russell King - ARM Linux
2015-02-20 17:46     ` Russell King - ARM Linux
2015-02-20 19:00     ` Srinivas Kandagatla
2015-02-20 19:00       ` Srinivas Kandagatla
2015-02-23 15:04   ` Mark Brown
2015-02-23 15:04     ` Mark Brown
2015-02-23 15:04     ` Mark Brown
2015-02-23 15:38     ` Srinivas Kandagatla
2015-02-23 15:38       ` Srinivas Kandagatla
2015-02-23 15:38       ` Srinivas Kandagatla
2015-02-19 17:08 ` [RFC PATCH 2/3] eeprom: sunxi: Move the SID driver to the eeprom framework Srinivas Kandagatla
2015-02-19 17:08   ` Srinivas Kandagatla
2015-02-20 17:47   ` Russell King - ARM Linux
2015-02-20 17:47     ` Russell King - ARM Linux
2015-02-20 17:47     ` Russell King - ARM Linux
2015-02-19 17:08 ` [RFC PATCH 3/3] eeprom: qfprom: Add Qualcomm QFPROM support Srinivas Kandagatla
2015-02-19 17:08   ` Srinivas Kandagatla
2015-02-20 17:48   ` Russell King - ARM Linux
2015-02-20 17:48     ` Russell King - ARM Linux
2015-03-05  9:44 ` [PATCH v1 0/6] Add simple EEPROM Framework via regmap Srinivas Kandagatla
2015-03-05  9:44   ` Srinivas Kandagatla
2015-03-05  9:45   ` [PATCH v1 1/6] eeprom: Add a simple EEPROM framework for eeprom providers Srinivas Kandagatla
2015-03-05  9:45     ` Srinivas Kandagatla
2015-03-05 10:23     ` Paul Bolle
2015-03-05 10:23       ` Paul Bolle
2015-03-05 10:35       ` Srinivas Kandagatla
2015-03-05 10:35         ` Srinivas Kandagatla
2015-03-05 10:35         ` Srinivas Kandagatla
2015-03-07 15:00     ` Mark Brown
2015-03-07 15:00       ` Mark Brown
2015-03-07 15:00       ` Mark Brown
2015-03-09  7:13       ` Srinivas Kandagatla
2015-03-09  7:13         ` Srinivas Kandagatla
2015-03-09  7:13         ` Srinivas Kandagatla
2015-03-05  9:45   ` [PATCH v1 2/6] eeprom: Add a simple EEPROM framework for eeprom consumers Srinivas Kandagatla
2015-03-05  9:45     ` Srinivas Kandagatla
2015-03-05  9:46   ` [PATCH v1 3/6] eeprom: Add bindings for simple eeprom framework Srinivas Kandagatla
2015-03-05  9:46     ` Srinivas Kandagatla
2015-03-05 20:11     ` Rob Herring
2015-03-05 20:11       ` Rob Herring
2015-03-05 20:11       ` Rob Herring
2015-03-05 22:34       ` Srinivas Kandagatla
2015-03-05 22:34         ` Srinivas Kandagatla
2015-03-05 22:34         ` Srinivas Kandagatla
2015-03-08 22:19         ` Rob Herring
2015-03-05  9:46   ` [PATCH v1 4/6] eeprom: sunxi: Move the SID driver to the " Srinivas Kandagatla
2015-03-05  9:46     ` Srinivas Kandagatla
2015-03-05 10:15     ` Paul Bolle
2015-03-05 10:15       ` Paul Bolle
2015-03-05 10:15       ` Paul Bolle
2015-03-05 18:36       ` Maxime Ripard
2015-03-05 18:36         ` Maxime Ripard
2015-03-05 18:36         ` Maxime Ripard
2015-03-05  9:46   ` [PATCH v1 5/6] eeprom: qfprom: Add Qualcomm QFPROM support Srinivas Kandagatla
2015-03-05  9:46     ` Srinivas Kandagatla
2015-03-05 10:02     ` Paul Bolle
2015-03-05 10:02       ` Paul Bolle
2015-03-05 10:02       ` Paul Bolle
2015-03-05 10:10       ` Srinivas Kandagatla
2015-03-05 10:10         ` Srinivas Kandagatla
2015-03-05 10:10         ` Srinivas Kandagatla
2015-03-05  9:46   ` [PATCH v1 6/6] eeprom: Add to MAINTAINERS for eeprom framework Srinivas Kandagatla
2015-03-05  9:46     ` Srinivas Kandagatla
2015-03-13  9:49   ` [PATCH v2 0/7] Add simple EEPROM Framework via regmap Srinivas Kandagatla
2015-03-13  9:49     ` Srinivas Kandagatla
2015-03-13  9:50     ` [PATCH v2 2/7] eeprom: Add a simple EEPROM framework for eeprom consumers Srinivas Kandagatla
2015-03-13  9:50       ` Srinivas Kandagatla
2015-03-13  9:50     ` [PATCH v2 3/7] eeprom: Add bindings for simple eeprom framework Srinivas Kandagatla
2015-03-13  9:50       ` Srinivas Kandagatla
2015-03-13  9:50     ` [PATCH v2 4/7] eeprom: sunxi: Move the SID driver to the " Srinivas Kandagatla
2015-03-13  9:50       ` Srinivas Kandagatla
     [not found]     ` <1426240157-2383-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-03-13  9:50       ` [PATCH v2 1/7] eeprom: Add a simple EEPROM framework for eeprom providers Srinivas Kandagatla
2015-03-13  9:50         ` Srinivas Kandagatla
2015-03-13  9:50         ` Srinivas Kandagatla
     [not found]         ` <1426240214-2434-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-03-23 21:09           ` Mark Brown
2015-03-23 21:09             ` Mark Brown
2015-03-23 21:09             ` Mark Brown
     [not found]             ` <20150323210918.GS14954-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2015-03-23 22:05               ` Srinivas Kandagatla
2015-03-23 22:05                 ` Srinivas Kandagatla
2015-03-23 22:05                 ` Srinivas Kandagatla
     [not found]                 ` <55108E2B.7050305-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-03-24  9:18                   ` Srinivas Kandagatla
2015-03-24  9:18                     ` Srinivas Kandagatla
2015-03-24  9:18                     ` Srinivas Kandagatla
2015-03-24 17:23                     ` Mark Brown
2015-03-24 17:23                       ` Mark Brown
2015-03-24 18:34                       ` Srinivas Kandagatla
2015-03-24 18:34                         ` Srinivas Kandagatla
2015-03-24 19:02                         ` Mark Brown
2015-03-24 19:02                           ` Mark Brown
2015-03-24 19:26                           ` Srinivas Kandagatla
2015-03-24 19:26                             ` Srinivas Kandagatla
2015-03-24 20:55                             ` Mark Brown
2015-03-24 20:55                               ` Mark Brown
2015-03-13  9:50       ` [PATCH v2 5/7] eeprom: qfprom: Add Qualcomm QFPROM support Srinivas Kandagatla
2015-03-13  9:50         ` Srinivas Kandagatla
2015-03-13  9:50         ` Srinivas Kandagatla
2015-03-13  9:50     ` [PATCH v2 6/7] eeprom: qfprom: Add bindings for qfprom Srinivas Kandagatla
2015-03-13  9:50       ` Srinivas Kandagatla
2015-03-13  9:51     ` [PATCH v2 7/7] eeprom: Add to MAINTAINERS for eeprom framework Srinivas Kandagatla
2015-03-13  9:51       ` Srinivas Kandagatla
2015-03-24 22:28     ` [PATCH v3 0/9] Add simple EEPROM Framework via regmap Srinivas Kandagatla
2015-03-24 22:28       ` Srinivas Kandagatla
2015-03-24 22:29       ` [PATCH v3 1/9] regmap: Introduce regmap_get_max_register Srinivas Kandagatla
2015-03-24 22:29         ` Srinivas Kandagatla
2015-03-24 22:36         ` Mark Brown
2015-03-24 22:36           ` Mark Brown
2015-03-24 23:05           ` Srinivas Kandagatla
2015-03-24 23:05             ` Srinivas Kandagatla
2015-03-24 23:23             ` Joe Perches
2015-03-24 23:23               ` Joe Perches
     [not found]       ` <1427236116-18531-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-03-24 22:30         ` [PATCH v3 2/9] regmap: Introduce regmap_get_reg_stride Srinivas Kandagatla
2015-03-24 22:30           ` Srinivas Kandagatla
2015-03-24 22:30           ` Srinivas Kandagatla
2015-03-24 22:37           ` Mark Brown
2015-03-24 22:37             ` Mark Brown
     [not found]             ` <20150324223745.GC28997-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2015-03-24 23:07               ` Srinivas Kandagatla
2015-03-24 23:07                 ` Srinivas Kandagatla
2015-03-24 23:07                 ` Srinivas Kandagatla
2015-03-24 22:30         ` [PATCH v3 7/9] eeprom: qfprom: Add Qualcomm QFPROM support Srinivas Kandagatla
2015-03-24 22:30           ` Srinivas Kandagatla
2015-03-24 22:30           ` Srinivas Kandagatla
2015-03-24 22:30       ` [PATCH v3 3/9] eeprom: Add a simple EEPROM framework for eeprom providers Srinivas Kandagatla
2015-03-24 22:30         ` Srinivas Kandagatla
2015-03-24 22:53         ` Mark Brown
2015-03-24 22:53           ` Mark Brown
     [not found]           ` <20150324225317.GD28997-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2015-03-26 16:23             ` Srinivas Kandagatla
2015-03-26 16:23               ` Srinivas Kandagatla
2015-03-26 16:23               ` Srinivas Kandagatla
2015-03-24 22:30       ` [PATCH v3 4/9] eeprom: Add a simple EEPROM framework for eeprom consumers Srinivas Kandagatla
2015-03-24 22:30         ` Srinivas Kandagatla
     [not found]         ` <1427236219-18709-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-03-25  7:16           ` Sascha Hauer
2015-03-25  7:16             ` Sascha Hauer
2015-03-25  7:16             ` Sascha Hauer
2015-03-25 12:29             ` Srinivas Kandagatla
2015-03-25 12:29               ` Srinivas Kandagatla
2015-03-24 22:30       ` [PATCH v3 5/9] eeprom: Add bindings for simple eeprom framework Srinivas Kandagatla
2015-03-24 22:30         ` Srinivas Kandagatla
2015-03-25  7:10         ` Sascha Hauer
2015-03-25  7:10           ` Sascha Hauer
2015-03-25  7:10           ` Sascha Hauer
2015-03-25 16:40           ` Maxime Ripard
2015-03-25 16:40             ` Maxime Ripard
2015-03-24 22:30       ` [PATCH v3 6/9] eeprom: sunxi: Move the SID driver to the " Srinivas Kandagatla
2015-03-24 22:30         ` Srinivas Kandagatla
2015-03-24 22:31       ` [PATCH v3 8/9] eeprom: qfprom: Add bindings for qfprom Srinivas Kandagatla
2015-03-24 22:31         ` Srinivas Kandagatla
2015-03-25  0:28         ` Bjorn Andersson
2015-03-25  0:28           ` Bjorn Andersson
2015-03-25  0:28           ` Bjorn Andersson
2015-03-24 22:31       ` [PATCH v3 9/9] eeprom: Add to MAINTAINERS for eeprom framework Srinivas Kandagatla
2015-03-24 22:31         ` Srinivas Kandagatla
2015-03-30 21:54       ` [PATCH v4 00/10] Add simple EEPROM Framework via regmap Srinivas Kandagatla
2015-03-30 21:54         ` Srinivas Kandagatla
2015-03-30 21:56         ` [PATCH v4 01/10] regmap: Introduce regmap_get_max_register Srinivas Kandagatla
2015-03-30 21:56           ` Srinivas Kandagatla
2015-05-04 12:05           ` Mark Brown
2015-05-04 12:05             ` Mark Brown
2015-03-30 21:57         ` [PATCH v4 02/10] regmap: Introduce regmap_get_reg_stride Srinivas Kandagatla
2015-03-30 21:57           ` Srinivas Kandagatla
2015-03-30 21:57         ` [PATCH v4 03/10] eeprom: Add a simple EEPROM framework for eeprom providers Srinivas Kandagatla
2015-03-30 21:57           ` Srinivas Kandagatla
     [not found]         ` <1427752492-17039-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-03-30 21:57           ` [PATCH v4 04/10] eeprom: Add a simple EEPROM framework for eeprom consumers Srinivas Kandagatla
2015-03-30 21:57             ` Srinivas Kandagatla
2015-03-30 21:57             ` Srinivas Kandagatla
2015-04-07 18:45             ` Stephen Boyd
2015-04-07 18:45               ` Stephen Boyd
2015-04-07 20:09               ` Srinivas Kandagatla
2015-04-07 20:09                 ` Srinivas Kandagatla
2015-04-09 14:45                 ` Stephen Boyd
2015-04-09 14:45                   ` Stephen Boyd
2015-04-10 11:45                   ` Maxime Ripard
2015-04-10 11:45                     ` Maxime Ripard
     [not found]                   ` <20150409144522.GB9663-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-05-05 11:46                     ` Srinivas Kandagatla
2015-05-05 11:46                       ` Srinivas Kandagatla
2015-05-05 11:46                       ` Srinivas Kandagatla
2015-05-08  5:23                       ` Sascha Hauer
2015-05-08  5:23                         ` Sascha Hauer
2015-05-06 17:28             ` Mark Brown
2015-05-06 17:28               ` Mark Brown
2015-03-30 21:57           ` [PATCH v4 05/10] eeprom: Add bindings for simple eeprom framework Srinivas Kandagatla
2015-03-30 21:57             ` Srinivas Kandagatla
2015-03-30 21:57             ` Srinivas Kandagatla
     [not found]             ` <1427752679-17261-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-04-06 13:32               ` Matt Porter
2015-04-06 13:32                 ` Matt Porter
2015-04-06 13:32                 ` Matt Porter
2015-04-06 14:11                 ` Rob Herring
2015-04-06 14:11                   ` Rob Herring
2015-04-06 14:11                   ` Rob Herring
     [not found]                   ` <CAL_Jsq++9pyJMLXssgyz2WRU4e7ikT_6FwzWMo1fKS82FJvEyg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-04-06 15:04                     ` Matt Porter
2015-04-06 15:04                       ` Matt Porter
2015-04-06 15:04                       ` Matt Porter
2015-04-07 17:35                       ` Srinivas Kandagatla
2015-04-07 17:35                         ` Srinivas Kandagatla
2015-04-07 17:35                         ` Srinivas Kandagatla
2015-04-07 17:46                         ` Mark Brown
2015-04-07 17:46                           ` Mark Brown
2015-04-07 17:46                           ` Mark Brown
2015-04-07 18:03                           ` Srinivas Kandagatla
2015-04-07 18:03                             ` Srinivas Kandagatla
2015-04-07 18:03                             ` Srinivas Kandagatla
2015-04-07 19:46                             ` Matt Porter
2015-04-07 19:46                               ` Matt Porter
2015-04-07 19:46                               ` Matt Porter
2015-04-08  9:24                               ` Srinivas Kandagatla
2015-04-08  9:24                                 ` Srinivas Kandagatla
2015-04-08  9:24                                 ` Srinivas Kandagatla
2015-03-30 21:58           ` [PATCH v4 06/10] eeprom: Add simple eeprom-mmio consumer helper functions Srinivas Kandagatla
2015-03-30 21:58             ` Srinivas Kandagatla
2015-03-30 21:58             ` Srinivas Kandagatla
2015-03-30 21:58         ` [PATCH v4 07/10] eeprom: qfprom: Add Qualcomm QFPROM support Srinivas Kandagatla
2015-03-30 21:58           ` Srinivas Kandagatla
2015-03-30 21:58         ` [PATCH v4 08/10] eeprom: qfprom: Add bindings for qfprom Srinivas Kandagatla
2015-03-30 21:58           ` Srinivas Kandagatla
2015-03-30 21:58         ` [PATCH v4 09/10] eeprom: sunxi: Move the SID driver to the eeprom framework Srinivas Kandagatla
2015-03-30 21:58           ` Srinivas Kandagatla
2015-03-30 21:58         ` [PATCH v4 10/10] eeprom: Add to MAINTAINERS for " Srinivas Kandagatla
2015-03-30 21:58           ` Srinivas Kandagatla
2015-05-21 16:42         ` [PATCH v5 00/11] Add simple NVMEM Framework via regmap Srinivas Kandagatla
2015-05-21 16:42           ` Srinivas Kandagatla
2015-05-21 16:42           ` [PATCH v5 01/11] regmap: Introduce regmap_get_max_register Srinivas Kandagatla
2015-05-21 16:42             ` Srinivas Kandagatla
2015-05-22 11:18             ` Mark Brown
2015-05-22 11:18               ` Mark Brown
2015-05-21 16:42           ` [PATCH v5 02/11] regmap: Introduce regmap_get_reg_stride Srinivas Kandagatla
2015-05-21 16:42             ` Srinivas Kandagatla
2015-05-22 11:19             ` Mark Brown
2015-05-22 11:19               ` Mark Brown
2015-05-21 16:43           ` [PATCH v5 03/11] nvmem: Add a simple NVMEM framework for nvmem providers Srinivas Kandagatla
2015-05-21 16:43             ` Srinivas Kandagatla
     [not found]             ` <1432226583-8775-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-06-16 22:43               ` Stephen Boyd
2015-06-16 22:43                 ` Stephen Boyd
2015-06-16 22:43                 ` Stephen Boyd
     [not found]                 ` <5580A678.4080304-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-06-18 12:46                   ` Srinivas Kandagatla
2015-06-18 12:46                     ` Srinivas Kandagatla
2015-06-18 12:46                     ` Srinivas Kandagatla
     [not found]                     ` <5582BDAE.5040008-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-06-24  0:24                       ` Stephen Boyd
2015-06-24  0:24                         ` Stephen Boyd
2015-06-24  0:24                         ` Stephen Boyd
2015-06-24 10:05                         ` Srinivas Kandagatla
2015-06-24 10:05                           ` Srinivas Kandagatla
2015-05-21 16:43           ` [PATCH v5 05/11] nvmem: Add nvmem_device based consumer apis Srinivas Kandagatla
2015-05-21 16:43             ` Srinivas Kandagatla
2015-06-16 22:49             ` Stephen Boyd
2015-06-16 22:49               ` Stephen Boyd
     [not found]               ` <5580A7EA.2090909-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-06-18 12:57                 ` Srinivas Kandagatla
2015-06-18 12:57                   ` Srinivas Kandagatla
2015-06-18 12:57                   ` Srinivas Kandagatla
2015-05-21 16:44           ` [PATCH v5 06/11] nvmem: Add bindings for simple nvmem framework Srinivas Kandagatla
2015-05-21 16:44             ` Srinivas Kandagatla
2015-06-16 22:53             ` Stephen Boyd
2015-06-16 22:53               ` Stephen Boyd
     [not found]               ` <5580A900.9070902-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-06-18 13:01                 ` Srinivas Kandagatla
2015-06-18 13:01                   ` Srinivas Kandagatla
2015-06-18 13:01                   ` Srinivas Kandagatla
     [not found]             ` <1432226652-8947-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-06-19 10:36               ` maitysanchayan-Re5JQEeQqe8AvxtiuMwx3w [this message]
2015-06-19 10:36                 ` maitysanchayan at gmail.com
2015-06-19 10:36                 ` maitysanchayan
2015-06-19 10:59                 ` Srinivas Kandagatla
2015-06-19 10:59                   ` Srinivas Kandagatla
2015-06-19 10:59                   ` Srinivas Kandagatla
2015-05-21 16:44           ` [PATCH v5 08/11] nvmem: qfprom: Add Qualcomm QFPROM support Srinivas Kandagatla
2015-05-21 16:44             ` Srinivas Kandagatla
2015-06-16 23:00             ` Stephen Boyd
2015-06-16 23:00               ` Stephen Boyd
     [not found]               ` <5580AA9B.7040001-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-06-18 13:22                 ` Srinivas Kandagatla
2015-06-18 13:22                   ` Srinivas Kandagatla
2015-06-18 13:22                   ` Srinivas Kandagatla
     [not found]           ` <1432226535-8640-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-05-21 16:43             ` [PATCH v5 04/11] nvmem: Add a simple NVMEM framework for consumers Srinivas Kandagatla
2015-05-21 16:43               ` Srinivas Kandagatla
2015-05-21 16:43               ` Srinivas Kandagatla
2015-06-16 22:29               ` Stephen Boyd
2015-06-16 22:29                 ` Stephen Boyd
2015-06-17  8:00                 ` Sascha Hauer
2015-06-17  8:00                   ` Sascha Hauer
2015-06-18 12:56                 ` Srinivas Kandagatla
2015-06-18 12:56                   ` Srinivas Kandagatla
2015-05-21 16:44             ` [PATCH v5 07/11] nvmem: Add simple nvmem-mmio consumer helper functions Srinivas Kandagatla
2015-05-21 16:44               ` Srinivas Kandagatla
2015-05-21 16:44               ` Srinivas Kandagatla
     [not found]               ` <1432226665-8994-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-06-16 22:58                 ` Stephen Boyd
2015-06-16 22:58                   ` Stephen Boyd
2015-06-16 22:58                   ` Stephen Boyd
     [not found]                   ` <5580AA05.90709-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-06-18 13:08                     ` Srinivas Kandagatla
2015-06-18 13:08                       ` Srinivas Kandagatla
2015-06-18 13:08                       ` Srinivas Kandagatla
2015-05-21 16:44             ` [PATCH v5 09/11] nvmem: qfprom: Add bindings for qfprom Srinivas Kandagatla
2015-05-21 16:44               ` Srinivas Kandagatla
2015-05-21 16:44               ` Srinivas Kandagatla
     [not found]               ` <1432226685-9081-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-06-16 23:01                 ` Stephen Boyd
2015-06-16 23:01                   ` Stephen Boyd
2015-06-16 23:01                   ` Stephen Boyd
2015-05-21 16:45             ` [PATCH v5 11/11] nvmem: Add to MAINTAINERS for nvmem framework Srinivas Kandagatla
2015-05-21 16:45               ` Srinivas Kandagatla
2015-05-21 16:45               ` Srinivas Kandagatla
2015-05-21 16:45           ` [PATCH v5 10/11] nvmem: sunxi: Move the SID driver to the " Srinivas Kandagatla
2015-05-21 16:45             ` Srinivas Kandagatla
     [not found]             ` <1432226733-9243-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-06-16 23:04               ` Stephen Boyd
2015-06-16 23:04                 ` Stephen Boyd
2015-06-16 23:04                 ` Stephen Boyd
2015-06-18 13:09                 ` Srinivas Kandagatla
2015-06-18 13:09                   ` Srinivas Kandagatla
2015-05-25 16:51           ` [PATCH v5 00/11] Add simple NVMEM Framework via regmap Pantelis Antoniou
2015-05-25 16:51             ` Pantelis Antoniou
2015-05-26  9:12             ` Srinivas Kandagatla
2015-05-26  9:12               ` Srinivas Kandagatla
2015-05-26  9:12               ` Srinivas Kandagatla
     [not found]               ` <556438FF.7020105-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-05-26 17:54                 ` Pantelis Antoniou
2015-05-26 17:54                   ` Pantelis Antoniou
2015-05-26 17:54                   ` Pantelis Antoniou
2015-05-29  1:20           ` Dan Williams
2015-05-29  1:20             ` Dan Williams
2015-05-29  1:20             ` Dan Williams
     [not found]             ` <CAA9_cmetqnqTQPCd8ya5AJPKQw8ary8CwsE6TUv=f57O=_MH5w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-29  7:09               ` Srinivas Kandagatla
2015-05-29  7:09                 ` Srinivas Kandagatla
2015-05-29  7:09                 ` Srinivas Kandagatla
2015-05-29 21:44                 ` Dan Williams
2015-05-29 21:44                   ` Dan Williams
2015-05-29 21:44                   ` Dan Williams

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=20150619103647.GA3913@Sanchayan-Arch \
    --to=maitysanchayan-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
    --cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
    --cc=linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org \
    --cc=mporter-OWPKS81ov/FWk0Htik3J/w@public.gmane.org \
    --cc=pantelis.antoniou-OWPKS81ov/FWk0Htik3J/w@public.gmane.org \
    --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org \
    --cc=sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
    --cc=srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=stefan-XLVq0VzYD2Y@public.gmane.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 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.