linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM.
@ 2013-04-03 14:09 Manjunathappa, Prakash
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-03 14:09 UTC (permalink / raw)
  To: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: linux-lFZ/pmaqli7XmaaqVzeoHQ, linux-doc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	rob.herring-bsGFqQB8/DxBDgjK7y7TUQ,
	grant.likely-s3s/WqlpOiPyB63q8FvJNQ, rob-VoJi6FS/r0vR7s880joybQ,
	hs-ynQEQJNshbs, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

Testing information:
da850-evm comes with partitions specified in DT blob.
Able to mount/umount and create/delete files on filesystem partition.

Applies on top of linux_davinci/master tree:
git://gitorious.org/linux-davinci/linux-davinci.git

Since v4:
Separate out chip_select pinmuxing so as to allow boards choose
accordingly.

Since v3:
Minor nit, fix tabs and commit message of 2/5.

Since v2:
Fix compatible property DT naming convention.

Since v1:
Look for m25p64 instead of m25p80 flash chip and correct partition information.
Dropped below accepted patch:
"spi/davinci: fix module build error"
Considered below missed out patch:
spi/davinci: add DT binding documentation

Manjunathappa, Prakash (4):
  spi/davinci: no wildcards in DT compatible property
  ARM: davinci: da850: add SPI1 DT node
  ARM: davinci: da850: override SPI DT node device name
  ARM: davinci: da850-evm: add SPI flash support

Murali Karicheri (1):
  spi/davinci: add DT binding documentation

 .../devicetree/bindings/spi/spi-davinci.txt        |   51 ++++++++++++++++++++
 arch/arm/boot/dts/da850-evm.dts                    |   40 +++++++++++++++
 arch/arm/boot/dts/da850.dtsi                       |   22 ++++++++
 arch/arm/mach-davinci/da8xx-dt.c                   |    1 +
 drivers/spi/spi-davinci.c                          |    4 +-
 5 files changed, 116 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/spi/spi-davinci.txt

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v5 1/5] spi/davinci: no wildcards in DT compatible property
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
@ 2013-04-03 14:09   ` Manjunathappa, Prakash
  2013-04-03 14:09   ` [PATCH v5 2/5] spi/davinci: add DT binding documentation Manjunathappa, Prakash
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-03 14:09 UTC (permalink / raw)
  To: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: linux-lFZ/pmaqli7XmaaqVzeoHQ, linux-doc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, nsekhar-l0cyMroinI0,
	rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, Manjunathappa, Prakash,
	rob-VoJi6FS/r0vR7s880joybQ, hs-ynQEQJNshbs,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

Follow DT naming convention for compatible property of the blob.
Use first chip name that introduced the specific version of the
device.

Signed-off-by: Manjunathappa, Prakash <prakash.pm-l0cyMroinI0@public.gmane.org>
---
 drivers/spi/spi-davinci.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/spi/spi-davinci.c b/drivers/spi/spi-davinci.c
index 8234d22..2e8f24a 100644
--- a/drivers/spi/spi-davinci.c
+++ b/drivers/spi/spi-davinci.c
@@ -776,10 +776,10 @@ rx_dma_failed:
 #if defined(CONFIG_OF)
 static const struct of_device_id davinci_spi_of_match[] = {
 	{
-		.compatible = "ti,dm644x-spi",
+		.compatible = "ti,dm6441-spi",
 	},
 	{
-		.compatible = "ti,da8xx-spi",
+		.compatible = "ti,da830-spi",
 		.data = (void *)SPI_VERSION_2,
 	},
 	{ },
-- 
1.7.4.1


------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v5 2/5] spi/davinci: add DT binding documentation
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
  2013-04-03 14:09   ` [PATCH v5 1/5] spi/davinci: no wildcards in DT compatible property Manjunathappa, Prakash
@ 2013-04-03 14:09   ` Manjunathappa, Prakash
  2013-04-03 14:09   ` [PATCH v5 3/5] ARM: davinci: da850: add SPI1 DT node Manjunathappa, Prakash
  2013-04-03 14:09   ` [PATCH v5 4/5] ARM: davinci: da850: override SPI DT node device name Manjunathappa, Prakash
  3 siblings, 0 replies; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-03 14:09 UTC (permalink / raw)
  To: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: linux-lFZ/pmaqli7XmaaqVzeoHQ, linux-doc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	rob.herring-bsGFqQB8/DxBDgjK7y7TUQ,
	grant.likely-s3s/WqlpOiPyB63q8FvJNQ, rob-VoJi6FS/r0vR7s880joybQ,
	hs-ynQEQJNshbs, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

From: Murali Karicheri <m-karicheri2-l0cyMroinI0@public.gmane.org>

Add binding documentation for spi-davinci module.

[prakash.pm-l0cyMroinI0@public.gmane.org: Follow DT naming convention for compatible property]
Signed-off-by: Murali Karicheri <m-karicheri2-l0cyMroinI0@public.gmane.org>
Reviewed-by: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
Reviewed-by: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
Signed-off-by: Manjunathappa, Prakash <prakash.pm-l0cyMroinI0@public.gmane.org>
---
Since v3:
Changed the commit message and fixed alignment issues.

 .../devicetree/bindings/spi/spi-davinci.txt        |   51 ++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/spi/spi-davinci.txt

diff --git a/Documentation/devicetree/bindings/spi/spi-davinci.txt b/Documentation/devicetree/bindings/spi/spi-davinci.txt
new file mode 100644
index 0000000..6d0ac8d
--- /dev/null
+++ b/Documentation/devicetree/bindings/spi/spi-davinci.txt
@@ -0,0 +1,51 @@
+Davinci SPI controller device bindings
+
+Required properties:
+- #address-cells: number of cells required to define a chip select
+	address on the SPI bus. Should be set to 1.
+- #size-cells: should be zero.
+- compatible:
+	- "ti,dm6441-spi" for SPI used similar to that on DM644x SoC family
+	- "ti,da830-spi" for SPI used similar to that on DA8xx SoC family
+- reg: Offset and length of SPI controller register space
+- num-cs: Number of chip selects
+- ti,davinci-spi-intr-line: interrupt line used to connect the SPI
+	IP to the interrupt controller within the SoC. Possible values
+	are 0 and 1. Manual says one of the two possible interrupt
+	lines can be tied to the interrupt controller. Set this
+	based on a specifc SoC configuration.
+- interrupts: interrupt number mapped to CPU.
+- clocks: spi clk phandle
+
+Example of a NOR flash slave device (n25q032) connected to DaVinci
+SPI controller device over the SPI bus.
+
+spi0:spi@20BF0000 {
+	#address-cells			= <1>;
+	#size-cells			= <0>;
+	compatible			= "ti,dm6446-spi";
+	reg				= <0x20BF0000 0x1000>;
+	num-cs				= <4>;
+	ti,davinci-spi-intr-line	= <0>;
+	interrupts			= <338>;
+	clocks				= <&clkspi>;
+
+	flash: n25q032@0 {
+		#address-cells = <1>;
+		#size-cells = <1>;
+		compatible = "st,m25p32";
+		spi-max-frequency = <25000000>;
+		reg = <0>;
+
+		partition@0 {
+			label = "u-boot-spl";
+			reg = <0x0 0x80000>;
+			read-only;
+		};
+
+		partition@1 {
+			label = "test";
+			reg = <0x80000 0x380000>;
+		};
+	};
+};
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v5 3/5] ARM: davinci: da850: add SPI1 DT node
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
  2013-04-03 14:09   ` [PATCH v5 1/5] spi/davinci: no wildcards in DT compatible property Manjunathappa, Prakash
  2013-04-03 14:09   ` [PATCH v5 2/5] spi/davinci: add DT binding documentation Manjunathappa, Prakash
@ 2013-04-03 14:09   ` Manjunathappa, Prakash
  2013-04-03 14:09   ` [PATCH v5 4/5] ARM: davinci: da850: override SPI DT node device name Manjunathappa, Prakash
  3 siblings, 0 replies; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-03 14:09 UTC (permalink / raw)
  To: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: linux-lFZ/pmaqli7XmaaqVzeoHQ, linux-doc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, nsekhar-l0cyMroinI0,
	rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, Manjunathappa, Prakash,
	rob-VoJi6FS/r0vR7s880joybQ, hs-ynQEQJNshbs,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

Patch adds SPI1 DT node along with pinmux data.

Signed-off-by: Manjunathappa, Prakash <prakash.pm-l0cyMroinI0@public.gmane.org>
---
Since v4:
Separate out chip_select pinmuxing so as to allow boards choose
what to configure. Dropped unused CS1 and ENA pinmuxing.

 arch/arm/boot/dts/da850.dtsi |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
index 3ec1bda..1d445cd 100644
--- a/arch/arm/boot/dts/da850.dtsi
+++ b/arch/arm/boot/dts/da850.dtsi
@@ -62,6 +62,18 @@
 					0x10 0x00002200 0x0000ff00
 				>;
 			};
+			spi1_pins: pinmux_spi_pins {
+				pinctrl-single,bits = <
+					/* SIMO, SOMI, CLK */
+					0x14 0x00110100 0x00ff0f00
+				>;
+			};
+			spi1_cs0_pin: pinmux_spi1_cs0 {
+				pinctrl-single,bits = <
+					/* CS0 */
+					0x14 0x00000010 0x000000f0
+				>;
+			};
 		};
 		serial0: serial@1c42000 {
 			compatible = "ns16550a";
@@ -107,6 +119,16 @@
 			reg = <0x21000 0x1000>;
 			status = "disabled";
 		};
+		spi1: spi@1f0e000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "ti,da830-spi";
+			reg = <0x30e000 0x1000>;
+			num-cs = <4>;
+			ti,davinci-spi-intr-line = <1>;
+			interrupts = <56>;
+			status = "disabled";
+		};
 	};
 	nand_cs3@62000000 {
 		compatible = "ti,davinci-nand";
-- 
1.7.4.1


------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v5 4/5] ARM: davinci: da850: override SPI DT node device name
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
                     ` (2 preceding siblings ...)
  2013-04-03 14:09   ` [PATCH v5 3/5] ARM: davinci: da850: add SPI1 DT node Manjunathappa, Prakash
@ 2013-04-03 14:09   ` Manjunathappa, Prakash
  3 siblings, 0 replies; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-03 14:09 UTC (permalink / raw)
  To: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: linux-lFZ/pmaqli7XmaaqVzeoHQ, linux-doc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, nsekhar-l0cyMroinI0,
	rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, Manjunathappa, Prakash,
	rob-VoJi6FS/r0vR7s880joybQ, hs-ynQEQJNshbs,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

Populate OF_DEV_AUXDATA with desired device name expected by spi-davinci
driver. Without this clk_get of spi-davinci DT driver fails.

Signed-off-by: Manjunathappa, Prakash <prakash.pm-l0cyMroinI0@public.gmane.org>
---
 arch/arm/mach-davinci/da8xx-dt.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-davinci/da8xx-dt.c b/arch/arm/mach-davinci/da8xx-dt.c
index 6b7a0a2..24146de 100644
--- a/arch/arm/mach-davinci/da8xx-dt.c
+++ b/arch/arm/mach-davinci/da8xx-dt.c
@@ -40,6 +40,7 @@ static void __init da8xx_init_irq(void)
 struct of_dev_auxdata da850_auxdata_lookup[] __initdata = {
 	OF_DEV_AUXDATA("ti,davinci-i2c", 0x01c22000, "i2c_davinci.1", NULL),
 	OF_DEV_AUXDATA("ti,davinci-wdt", 0x01c21000, "watchdog", NULL),
+	OF_DEV_AUXDATA("ti,da830-spi", 0x01f0e000, "spi_davinci.1", NULL),
 	{}
 };
 
-- 
1.7.4.1


------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v5 5/5] ARM: davinci: da850-evm: add SPI flash support
  2013-04-03 14:09 [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM Manjunathappa, Prakash
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
@ 2013-04-03 14:09 ` Manjunathappa, Prakash
  2013-04-09  5:44 ` [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM Manjunathappa, Prakash
  2 siblings, 0 replies; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-03 14:09 UTC (permalink / raw)
  To: davinci-linux-open-source, spi-devel-general
  Cc: grant.likely, rob.herring, rob, linux, nsekhar, hs,
	devicetree-discuss, linux-doc, linux-arm-kernel,
	Manjunathappa, Prakash

Enable m25p64 SPI flash support on da850-EVM. Also
add partition information of SPI flash.

Signed-off-by: Manjunathappa, Prakash <prakash.pm@ti.com>
---
Since v2:
Fixed partition sizes.

Since v1:
Look for m25p64 instead of m25p80.
Corrected the filesystem partition information.

 arch/arm/boot/dts/da850-evm.dts |   40 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/da850-evm.dts b/arch/arm/boot/dts/da850-evm.dts
index c359872..8fbde9a 100644
--- a/arch/arm/boot/dts/da850-evm.dts
+++ b/arch/arm/boot/dts/da850-evm.dts
@@ -41,6 +41,46 @@
 		wdt: wdt@1c21000 {
 			status = "okay";
 		};
+		spi1: spi@1f0e000 {
+			status = "okay";
+			pinctrl-names = "default";
+			pinctrl-0 = <&spi1_pins &spi1_cs0_pin>;
+			flash: m25p80@0 {
+				#address-cells = <1>;
+				#size-cells = <1>;
+				compatible = "m25p64";
+				spi-max-frequency = <30000000>;
+				reg = <0>;
+				partition@0 {
+					label = "U-Boot-SPL";
+					reg = <0x00000000 0x00010000>;
+					read-only;
+				};
+				partition@1 {
+					label = "U-Boot";
+					reg = <0x00010000 0x00080000>;
+					read-only;
+				};
+				partition@2 {
+					label = "U-Boot-Env";
+					reg = <0x00090000 0x00010000>;
+					read-only;
+				};
+				partition@3 {
+					label = "Kernel";
+					reg = <0x000a0000 0x00280000>;
+				};
+				partition@4 {
+					label = "Filesystem";
+					reg = <0x00320000 0x00400000>;
+				};
+				partition@5 {
+					label = "MAC-Address";
+					reg = <0x007f0000 0x00010000>;
+					read-only;
+				};
+			};
+		};
 	};
 	nand_cs3@62000000 {
 		status = "okay";
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* RE: [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM.
  2013-04-03 14:09 [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM Manjunathappa, Prakash
       [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
  2013-04-03 14:09 ` [PATCH v5 5/5] ARM: davinci: da850-evm: add SPI flash support Manjunathappa, Prakash
@ 2013-04-09  5:44 ` Manjunathappa, Prakash
  2013-04-15 11:48   ` Sekhar Nori
  2 siblings, 1 reply; 10+ messages in thread
From: Manjunathappa, Prakash @ 2013-04-09  5:44 UTC (permalink / raw)
  To: grant.likely@secretlab.ca
  Cc: davinci-linux-open-source@linux.davincidsp.com,
	linux@arm.linux.org.uk, linux-doc@vger.kernel.org,
	devicetree-discuss@lists.ozlabs.org, Nori, Sekhar,
	rob.herring@calxeda.com, rob@landley.net,
	spi-devel-general@lists.sourceforge.net, hs@denx.de,
	linux-arm-kernel@lists.infradead.org

Hi Grant,

On Wed, Apr 03, 2013 at 19:39:05, Manjunathappa, Prakash wrote:
> Testing information:
> da850-evm comes with partitions specified in DT blob.
> Able to mount/umount and create/delete files on filesystem partition.
> 

Could you please ack the driver(1/5) and documentation(2/5) changes so
that Sekhar can merge the platform changes, he doesn't have any
objection on this series.
http://marc.info/?l=linux-doc&m=136489750130615&w=1

Thanks,
Prakash

> Applies on top of linux_davinci/master tree:
> git://gitorious.org/linux-davinci/linux-davinci.git
> 
> Since v4:
> Separate out chip_select pinmuxing so as to allow boards choose
> accordingly.
> 
> Since v3:
> Minor nit, fix tabs and commit message of 2/5.
> 
> Since v2:
> Fix compatible property DT naming convention.
> 
> Since v1:
> Look for m25p64 instead of m25p80 flash chip and correct partition information.
> Dropped below accepted patch:
> "spi/davinci: fix module build error"
> Considered below missed out patch:
> spi/davinci: add DT binding documentation
> 
> Manjunathappa, Prakash (4):
>   spi/davinci: no wildcards in DT compatible property
>   ARM: davinci: da850: add SPI1 DT node
>   ARM: davinci: da850: override SPI DT node device name
>   ARM: davinci: da850-evm: add SPI flash support
> 
> Murali Karicheri (1):
>   spi/davinci: add DT binding documentation
> 
>  .../devicetree/bindings/spi/spi-davinci.txt        |   51 ++++++++++++++++++++
>  arch/arm/boot/dts/da850-evm.dts                    |   40 +++++++++++++++
>  arch/arm/boot/dts/da850.dtsi                       |   22 ++++++++
>  arch/arm/mach-davinci/da8xx-dt.c                   |    1 +
>  drivers/spi/spi-davinci.c                          |    4 +-
>  5 files changed, 116 insertions(+), 2 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/spi/spi-davinci.txt
> 
> -- 
> 1.7.4.1
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM.
  2013-04-09  5:44 ` [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM Manjunathappa, Prakash
@ 2013-04-15 11:48   ` Sekhar Nori
  2013-04-16 10:20     ` Grant Likely
  0 siblings, 1 reply; 10+ messages in thread
From: Sekhar Nori @ 2013-04-15 11:48 UTC (permalink / raw)
  To: Manjunathappa, Prakash
  Cc: grant.likely@secretlab.ca, rob.herring@calxeda.com,
	rob@landley.net, linux@arm.linux.org.uk, hs@denx.de,
	devicetree-discuss@lists.ozlabs.org, linux-doc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	davinci-linux-open-source@linux.davincidsp.com,
	spi-devel-general@lists.sourceforge.net

On 4/9/2013 11:14 AM, Manjunathappa, Prakash wrote:
> Hi Grant,
> 
> On Wed, Apr 03, 2013 at 19:39:05, Manjunathappa, Prakash wrote:
>> Testing information:
>> da850-evm comes with partitions specified in DT blob.
>> Able to mount/umount and create/delete files on filesystem partition.
>>
> 
> Could you please ack the driver(1/5) and documentation(2/5) changes so
> that Sekhar can merge the platform changes, he doesn't have any
> objection on this series.
> http://marc.info/?l=linux-doc&m=136489750130615&w=1

I am planning to queue these patches for ARM-SoC today. Grant has not
acked these but 1/5 just fixes the binding name to not use wild cards
and 2/5 just documents existing bindings and is something that should
have been merge last merge window itself (when the bindings were
accepted). So, the patches pending on Grant's ack seem very low risk to
me and we are much delayed already to wait further.

Thanks,
Sekhar

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM.
  2013-04-15 11:48   ` Sekhar Nori
@ 2013-04-16 10:20     ` Grant Likely
  2013-04-16 10:36       ` Sekhar Nori
  0 siblings, 1 reply; 10+ messages in thread
From: Grant Likely @ 2013-04-16 10:20 UTC (permalink / raw)
  To: Sekhar Nori, Manjunathappa, Prakash
  Cc: rob.herring@calxeda.com, rob@landley.net, linux@arm.linux.org.uk,
	hs@denx.de, devicetree-discuss@lists.ozlabs.org,
	linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	davinci-linux-open-source@linux.davincidsp.com,
	spi-devel-general@lists.sourceforge.net

On Mon, 15 Apr 2013 17:18:59 +0530, Sekhar Nori <nsekhar@ti.com> wrote:
> On 4/9/2013 11:14 AM, Manjunathappa, Prakash wrote:
> > Hi Grant,
> > 
> > On Wed, Apr 03, 2013 at 19:39:05, Manjunathappa, Prakash wrote:
> >> Testing information:
> >> da850-evm comes with partitions specified in DT blob.
> >> Able to mount/umount and create/delete files on filesystem partition.
> >>
> > 
> > Could you please ack the driver(1/5) and documentation(2/5) changes so
> > that Sekhar can merge the platform changes, he doesn't have any
> > objection on this series.
> > http://marc.info/?l=linux-doc&m=136489750130615&w=1
> 
> I am planning to queue these patches for ARM-SoC today. Grant has not
> acked these but 1/5 just fixes the binding name to not use wild cards
> and 2/5 just documents existing bindings and is something that should
> have been merge last merge window itself (when the bindings were
> accepted). So, the patches pending on Grant's ack seem very low risk to
> me and we are much delayed already to wait further.

For both of those patches:
Acked-by: Grant Likely <grant.likely@secretlab.ca>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM.
  2013-04-16 10:20     ` Grant Likely
@ 2013-04-16 10:36       ` Sekhar Nori
  0 siblings, 0 replies; 10+ messages in thread
From: Sekhar Nori @ 2013-04-16 10:36 UTC (permalink / raw)
  To: Grant Likely
  Cc: davinci-linux-open-source@linux.davincidsp.com,
	linux@arm.linux.org.uk, linux-doc@vger.kernel.org,
	devicetree-discuss@lists.ozlabs.org, rob.herring@calxeda.com,
	Manjunathappa, Prakash, rob@landley.net, Olof Johansson,
	spi-devel-general@lists.sourceforge.net, hs@denx.de,
	linux-arm-kernel@lists.infradead.org

On 4/16/2013 3:50 PM, Grant Likely wrote:
> On Mon, 15 Apr 2013 17:18:59 +0530, Sekhar Nori <nsekhar@ti.com> wrote:
>> On 4/9/2013 11:14 AM, Manjunathappa, Prakash wrote:
>>> Hi Grant,
>>>
>>> On Wed, Apr 03, 2013 at 19:39:05, Manjunathappa, Prakash wrote:
>>>> Testing information:
>>>> da850-evm comes with partitions specified in DT blob.
>>>> Able to mount/umount and create/delete files on filesystem partition.
>>>>
>>>
>>> Could you please ack the driver(1/5) and documentation(2/5) changes so
>>> that Sekhar can merge the platform changes, he doesn't have any
>>> objection on this series.
>>> http://marc.info/?l=linux-doc&m=136489750130615&w=1
>>
>> I am planning to queue these patches for ARM-SoC today. Grant has not
>> acked these but 1/5 just fixes the binding name to not use wild cards
>> and 2/5 just documents existing bindings and is something that should
>> have been merge last merge window itself (when the bindings were
>> accepted). So, the patches pending on Grant's ack seem very low risk to
>> me and we are much delayed already to wait further.
> 
> For both of those patches:
> Acked-by: Grant Likely <grant.likely@secretlab.ca>

Thanks Grant. I sent my pull request already. CCing Olof to see if
adding your ack locally when he pulls is something he is open to.

Thanks,
Sekhar

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-04-16 10:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-03 14:09 [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM Manjunathappa, Prakash
     [not found] ` <1364998150-5980-1-git-send-email-prakash.pm-l0cyMroinI0@public.gmane.org>
2013-04-03 14:09   ` [PATCH v5 1/5] spi/davinci: no wildcards in DT compatible property Manjunathappa, Prakash
2013-04-03 14:09   ` [PATCH v5 2/5] spi/davinci: add DT binding documentation Manjunathappa, Prakash
2013-04-03 14:09   ` [PATCH v5 3/5] ARM: davinci: da850: add SPI1 DT node Manjunathappa, Prakash
2013-04-03 14:09   ` [PATCH v5 4/5] ARM: davinci: da850: override SPI DT node device name Manjunathappa, Prakash
2013-04-03 14:09 ` [PATCH v5 5/5] ARM: davinci: da850-evm: add SPI flash support Manjunathappa, Prakash
2013-04-09  5:44 ` [PATCH v5 0/5] Patch enables support for m25p64 SPI flash support on da850-EVM Manjunathappa, Prakash
2013-04-15 11:48   ` Sekhar Nori
2013-04-16 10:20     ` Grant Likely
2013-04-16 10:36       ` Sekhar Nori

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).