* [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx
@ 2016-03-09 8:47 Shubhrajyoti Datta
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 10+ messages in thread
From: Shubhrajyoti Datta @ 2016-03-09 8:47 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA
Cc: soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA,
broonie-DgEjT+Ai2ygdnm+yROfE0A, Shubhrajyoti Datta
Add a binding document for the spi/spi-xilinx
Signed-off-by: Shubhrajyoti Datta <shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
---
.../devicetree/bindings/spi/spi-xilinx.txt | 22 ++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
create mode 100644 Documentation/devicetree/bindings/spi/spi-xilinx.txt
diff --git a/Documentation/devicetree/bindings/spi/spi-xilinx.txt b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
new file mode 100644
index 0000000..c7b7856
--- /dev/null
+++ b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
@@ -0,0 +1,22 @@
+Xilinx SPI controller Device Tree Bindings
+-------------------------------------------------
+
+Required properties:
+- compatible : Should be "xlnx,xps-spi-2.00.a" or "xlnx,xps-spi-2.00.b"
+- reg : Physical base address and size of SPI registers map.
+- interrupts : Property with a value describing the interrupt
+ number.
+- interrupt-parent : Must be core interrupt controller
+
+Optional properties:
+- xlnx,num-ss-bits : Number of chip selects used.
+
+Example:
+ axi_quad_spi@41e00000 {
+ compatible = "xlnx,xps-spi-2.00.a";
+ interrupt-parent = <&intc>;
+ interrupts = <0 31 1>;
+ reg = <0x41e00000 0x10000>;
+ xlnx,num-ss-bits = <0x1>;
+ };
+
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCHv2 2/3] spi/spi-xilinx: Add clock support
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
@ 2016-03-09 8:47 ` Shubhrajyoti Datta
[not found] ` <1457513242-11202-2-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-09 8:47 ` [PATCHv2 3/3] bindings: spi: Add clock entries for spi-xilinx Shubhrajyoti Datta
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Shubhrajyoti Datta @ 2016-03-09 8:47 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA
Cc: soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA,
broonie-DgEjT+Ai2ygdnm+yROfE0A, Shubhrajyoti Datta
Add basic clock support. The clocks are requested at probe
and released at remove.
Acked-by: Sören Brinkmann <soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Shubhrajyoti Datta <shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
---
v2 changes
Add ack
drivers/spi/spi-xilinx.c | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c
index 3009121..7e12338 100644
--- a/drivers/spi/spi-xilinx.c
+++ b/drivers/spi/spi-xilinx.c
@@ -21,6 +21,7 @@
#include <linux/spi/spi_bitbang.h>
#include <linux/spi/xilinx_spi.h>
#include <linux/io.h>
+#include <linux/clk.h>
#define XILINX_SPI_MAX_CS 32
@@ -83,6 +84,7 @@ struct xilinx_spi {
struct spi_bitbang bitbang;
struct completion done;
void __iomem *regs; /* virt. address of the control registers */
+ struct clk *clk;
int irq;
@@ -428,6 +430,15 @@ static int xilinx_spi_probe(struct platform_device *pdev)
goto put_master;
}
+ xspi->clk = devm_clk_get(&pdev->dev, NULL);
+ if (IS_ERR(xspi->clk)) {
+ dev_err(&pdev->dev, "input clock not found.\n");
+ return PTR_ERR(xspi->clk);
+ }
+ ret = clk_prepare_enable(xspi->clk);
+ if (ret)
+ dev_err(&pdev->dev, "Unable to enable clock.\n");
+
master->bus_num = pdev->id;
master->num_chipselect = num_cs;
master->dev.of_node = pdev->dev.of_node;
@@ -485,6 +496,7 @@ static int xilinx_spi_probe(struct platform_device *pdev)
put_master:
spi_master_put(master);
+ clk_disable_unprepare(xspi->clk);
return ret;
}
@@ -503,6 +515,7 @@ static int xilinx_spi_remove(struct platform_device *pdev)
xspi->write_fn(0, regs_base + XIPIF_V123B_DGIER_OFFSET);
spi_master_put(xspi->bitbang.master);
+ clk_disable_unprepare(xspi->clk);
return 0;
}
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCHv2 3/3] bindings: spi: Add clock entries for spi-xilinx
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-09 8:47 ` [PATCHv2 2/3] spi/spi-xilinx: Add clock support Shubhrajyoti Datta
@ 2016-03-09 8:47 ` Shubhrajyoti Datta
2016-03-10 3:30 ` [PATCHv2 1/3] bindings: spi: Add devicetree binding " Mark Brown
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Shubhrajyoti Datta @ 2016-03-09 8:47 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA
Cc: soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA,
broonie-DgEjT+Ai2ygdnm+yROfE0A, Shubhrajyoti Datta
Add clock description for spi-xilinx
Signed-off-by: Shubhrajyoti Datta <shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
---
.../devicetree/bindings/spi/spi-xilinx.txt | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Documentation/devicetree/bindings/spi/spi-xilinx.txt b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
index c7b7856..9e683bb 100644
--- a/Documentation/devicetree/bindings/spi/spi-xilinx.txt
+++ b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
@@ -7,13 +7,16 @@ Required properties:
- interrupts : Property with a value describing the interrupt
number.
- interrupt-parent : Must be core interrupt controller
+- clocks: Input clock specifier. Refer to common clock bindings.
Optional properties:
- xlnx,num-ss-bits : Number of chip selects used.
+- clock-names: Input clock name
Example:
axi_quad_spi@41e00000 {
compatible = "xlnx,xps-spi-2.00.a";
+ clocks = <&clkc 15>;
interrupt-parent = <&intc>;
interrupts = <0 31 1>;
reg = <0x41e00000 0x10000>;
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCHv2 2/3] spi/spi-xilinx: Add clock support
[not found] ` <1457513242-11202-2-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
@ 2016-03-10 3:29 ` Mark Brown
[not found] ` <20160310032948.GI3898-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
0 siblings, 1 reply; 10+ messages in thread
From: Mark Brown @ 2016-03-10 3:29 UTC (permalink / raw)
To: Shubhrajyoti Datta
Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA,
soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA, Shubhrajyoti Datta
[-- Attachment #1: Type: text/plain, Size: 898 bytes --]
On Wed, Mar 09, 2016 at 02:17:21PM +0530, Shubhrajyoti Datta wrote:
> + xspi->clk = devm_clk_get(&pdev->dev, NULL);
> + if (IS_ERR(xspi->clk)) {
As someone pointed out on the previous version of the series this will
cause the driver to fail to probe with existing DTs. We probably need
to explicitly handle a -ENOENT as a "this clock will never appear" or
something.
This also requests a single nameless clock but someone pointed out on
the previous version there are multiple clocks into the IP. Even if
you only want to add one clock right now the clock should probably be
named so we can scale up.
> + }
> + ret = clk_prepare_enable(xspi->clk);
Missing blank line here.
> + if (ret)
> + dev_err(&pdev->dev, "Unable to enable clock.\n");
> +
This isn't really checking the return code - if we failed to enable the
clock we should be failing the probe, not just carrying on.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-09 8:47 ` [PATCHv2 2/3] spi/spi-xilinx: Add clock support Shubhrajyoti Datta
2016-03-09 8:47 ` [PATCHv2 3/3] bindings: spi: Add clock entries for spi-xilinx Shubhrajyoti Datta
@ 2016-03-10 3:30 ` Mark Brown
[not found] ` <20160310033027.GJ3898-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-03-10 3:39 ` Applied "spi: xilinx: Add devicetree binding for spi-xilinx" to the spi tree Mark Brown
2016-03-17 16:32 ` [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx Rob Herring
4 siblings, 1 reply; 10+ messages in thread
From: Mark Brown @ 2016-03-10 3:30 UTC (permalink / raw)
To: Shubhrajyoti Datta
Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA,
soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA, Shubhrajyoti Datta
[-- Attachment #1: Type: text/plain, Size: 180 bytes --]
On Wed, Mar 09, 2016 at 02:17:20PM +0530, Shubhrajyoti Datta wrote:
> Add a binding document for the spi/spi-xilinx
Please use subject lines matching the style for the subsystem.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Applied "spi: xilinx: Add devicetree binding for spi-xilinx" to the spi tree
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
` (2 preceding siblings ...)
2016-03-10 3:30 ` [PATCHv2 1/3] bindings: spi: Add devicetree binding " Mark Brown
@ 2016-03-10 3:39 ` Mark Brown
2016-03-17 16:32 ` [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx Rob Herring
4 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2016-03-10 3:39 UTC (permalink / raw)
To: Shubhrajyoti Datta, Mark Brown; +Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA
The patch
spi: xilinx: Add devicetree binding for spi-xilinx
has been applied to the spi tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From 82b3aea65f9fee161d8e07602e5a8c7b0b103fa3 Mon Sep 17 00:00:00 2001
From: Shubhrajyoti Datta <shubhrajyoti.datta-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
Date: Wed, 9 Mar 2016 14:17:20 +0530
Subject: [PATCH] spi: xilinx: Add devicetree binding for spi-xilinx
Add a binding document for the spi/spi-xilinx
Signed-off-by: Shubhrajyoti Datta <shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
.../devicetree/bindings/spi/spi-xilinx.txt | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 Documentation/devicetree/bindings/spi/spi-xilinx.txt
diff --git a/Documentation/devicetree/bindings/spi/spi-xilinx.txt b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
new file mode 100644
index 000000000000..c7b7856bd528
--- /dev/null
+++ b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
@@ -0,0 +1,22 @@
+Xilinx SPI controller Device Tree Bindings
+-------------------------------------------------
+
+Required properties:
+- compatible : Should be "xlnx,xps-spi-2.00.a" or "xlnx,xps-spi-2.00.b"
+- reg : Physical base address and size of SPI registers map.
+- interrupts : Property with a value describing the interrupt
+ number.
+- interrupt-parent : Must be core interrupt controller
+
+Optional properties:
+- xlnx,num-ss-bits : Number of chip selects used.
+
+Example:
+ axi_quad_spi@41e00000 {
+ compatible = "xlnx,xps-spi-2.00.a";
+ interrupt-parent = <&intc>;
+ interrupts = <0 31 1>;
+ reg = <0x41e00000 0x10000>;
+ xlnx,num-ss-bits = <0x1>;
+ };
+
--
2.7.0
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCHv2 2/3] spi/spi-xilinx: Add clock support
[not found] ` <20160310032948.GI3898-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
@ 2016-03-10 11:20 ` Shubhrajyoti Datta
0 siblings, 0 replies; 10+ messages in thread
From: Shubhrajyoti Datta @ 2016-03-10 11:20 UTC (permalink / raw)
To: Mark Brown
Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Soren Brinkmann,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Michal Simek
> -----Original Message-----
> From: Mark Brown [mailto:broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org]
> Sent: Thursday, March 10, 2016 9:00 AM
> To: Shubhrajyoti Datta
> Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Soren Brinkmann;
> devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Michal Simek; Shubhrajyoti Datta
> Subject: Re: [PATCHv2 2/3] spi/spi-xilinx: Add clock support
>
> On Wed, Mar 09, 2016 at 02:17:21PM +0530, Shubhrajyoti Datta wrote:
>
> > + xspi->clk = devm_clk_get(&pdev->dev, NULL);
> > + if (IS_ERR(xspi->clk)) {
>
> As someone pointed out on the previous version of the series this will cause
> the driver to fail to probe with existing DTs. We probably need to explicitly
> handle a -ENOENT as a "this clock will never appear" or something.
I got comments after I sent the v2.
I will update it with Lars comments.
>
> This also requests a single nameless clock but someone pointed out on the
> previous version there are multiple clocks into the IP. Even if you only want
> to add one clock right now the clock should probably be named so we can
> scale up
I will add a name.
.
>
> > + }
> > + ret = clk_prepare_enable(xspi->clk);
>
> Missing blank line here.
Will fix in next version
>
> > + if (ret)
> > + dev_err(&pdev->dev, "Unable to enable clock.\n");
> > +
>
> This isn't really checking the return code - if we failed to enable the clock we
> should be failing the probe, not just carrying on.
Will fix.
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
` (3 preceding siblings ...)
2016-03-10 3:39 ` Applied "spi: xilinx: Add devicetree binding for spi-xilinx" to the spi tree Mark Brown
@ 2016-03-17 16:32 ` Rob Herring
4 siblings, 0 replies; 10+ messages in thread
From: Rob Herring @ 2016-03-17 16:32 UTC (permalink / raw)
To: Shubhrajyoti Datta
Cc: linux-spi-u79uwXL29TY76Z2rM5mHXA,
soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA,
broonie-DgEjT+Ai2ygdnm+yROfE0A, Shubhrajyoti Datta
On Wed, Mar 09, 2016 at 02:17:20PM +0530, Shubhrajyoti Datta wrote:
> Add a binding document for the spi/spi-xilinx
>
> Signed-off-by: Shubhrajyoti Datta <shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
> ---
> .../devicetree/bindings/spi/spi-xilinx.txt | 22 ++++++++++++++++++++
> 1 files changed, 22 insertions(+), 0 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/spi/spi-xilinx.txt
>
> diff --git a/Documentation/devicetree/bindings/spi/spi-xilinx.txt b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
> new file mode 100644
> index 0000000..c7b7856
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/spi/spi-xilinx.txt
> @@ -0,0 +1,22 @@
> +Xilinx SPI controller Device Tree Bindings
> +-------------------------------------------------
> +
> +Required properties:
> +- compatible : Should be "xlnx,xps-spi-2.00.a" or "xlnx,xps-spi-2.00.b"
> +- reg : Physical base address and size of SPI registers map.
> +- interrupts : Property with a value describing the interrupt
> + number.
> +- interrupt-parent : Must be core interrupt controller
> +
> +Optional properties:
> +- xlnx,num-ss-bits : Number of chip selects used.
There's a standard property for this.
> +
> +Example:
> + axi_quad_spi@41e00000 {
Use generic spi@...
> + compatible = "xlnx,xps-spi-2.00.a";
> + interrupt-parent = <&intc>;
> + interrupts = <0 31 1>;
> + reg = <0x41e00000 0x10000>;
> + xlnx,num-ss-bits = <0x1>;
> + };
> +
> --
> 1.7.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx
[not found] ` <20160310033027.GJ3898-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
@ 2016-03-17 16:43 ` Rob Herring
2016-03-17 16:46 ` Mark Brown
0 siblings, 1 reply; 10+ messages in thread
From: Rob Herring @ 2016-03-17 16:43 UTC (permalink / raw)
To: Mark Brown
Cc: Shubhrajyoti Datta, linux-spi-u79uwXL29TY76Z2rM5mHXA,
soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA, Shubhrajyoti Datta
On Thu, Mar 10, 2016 at 10:30:27AM +0700, Mark Brown wrote:
> On Wed, Mar 09, 2016 at 02:17:20PM +0530, Shubhrajyoti Datta wrote:
> > Add a binding document for the spi/spi-xilinx
>
> Please use subject lines matching the style for the subsystem.
You are wanting "spi: ..."? This is bindings though and my preference
would be "dt-bindings: spi: "... That said, I don't really try to
enforce anything given bindings currently get merged thru many trees.
Rob
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx
2016-03-17 16:43 ` Rob Herring
@ 2016-03-17 16:46 ` Mark Brown
0 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2016-03-17 16:46 UTC (permalink / raw)
To: Rob Herring
Cc: Shubhrajyoti Datta, linux-spi-u79uwXL29TY76Z2rM5mHXA,
soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
michal.simek-gjFFaj9aHVfQT0dZR+AlfA, Shubhrajyoti Datta
[-- Attachment #1: Type: text/plain, Size: 545 bytes --]
On Thu, Mar 17, 2016 at 11:43:21AM -0500, Rob Herring wrote:
> On Thu, Mar 10, 2016 at 10:30:27AM +0700, Mark Brown wrote:
> > Please use subject lines matching the style for the subsystem.
> You are wanting "spi: ..."? This is bindings though and my preference
> would be "dt-bindings: spi: "... That said, I don't really try to
> enforce anything given bindings currently get merged thru many trees.
Yes, given that they go in with the driver I'd expect them to match the
style for the driver (the bulk of changes do do that).
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2016-03-17 16:46 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-09 8:47 [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx Shubhrajyoti Datta
[not found] ` <1457513242-11202-1-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-09 8:47 ` [PATCHv2 2/3] spi/spi-xilinx: Add clock support Shubhrajyoti Datta
[not found] ` <1457513242-11202-2-git-send-email-shubhraj-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-10 3:29 ` Mark Brown
[not found] ` <20160310032948.GI3898-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-03-10 11:20 ` Shubhrajyoti Datta
2016-03-09 8:47 ` [PATCHv2 3/3] bindings: spi: Add clock entries for spi-xilinx Shubhrajyoti Datta
2016-03-10 3:30 ` [PATCHv2 1/3] bindings: spi: Add devicetree binding " Mark Brown
[not found] ` <20160310033027.GJ3898-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-03-17 16:43 ` Rob Herring
2016-03-17 16:46 ` Mark Brown
2016-03-10 3:39 ` Applied "spi: xilinx: Add devicetree binding for spi-xilinx" to the spi tree Mark Brown
2016-03-17 16:32 ` [PATCHv2 1/3] bindings: spi: Add devicetree binding for spi-xilinx Rob Herring
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).