From: lee.jones@linaro.org (Lee Jones)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 04/12] mfd: syscon: Add Atmel SMC binding doc
Date: Sun, 18 Jan 2015 12:54:15 +0000 [thread overview]
Message-ID: <20150118125415.GZ3574@x1> (raw)
In-Reply-To: <1421252524-24452-5-git-send-email-alexandre.belloni@free-electrons.com>
On Wed, 14 Jan 2015, Alexandre Belloni wrote:
> From: Boris Brezillon <boris.brezillon@free-electrons.com>
>
> The SMC registers are used to configure Atmel EBI (External Bus Interface)
> to interface with standard memory devices (NAND, NOR, SRAM or specialized
> devices like FPGAs).
>
> Declare this memory region as a syscon, so that different drivers can
> configure the SMC interface (mostly timing configuration) according to
> their need.
>
> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> Acked-by: Lee Jones <lee.jones@linaro.org>
> ---
> Documentation/devicetree/bindings/mfd/atmel-smc.txt | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/mfd/atmel-smc.txt
Applied, thanks.
> diff --git a/Documentation/devicetree/bindings/mfd/atmel-smc.txt b/Documentation/devicetree/bindings/mfd/atmel-smc.txt
> new file mode 100644
> index 000000000000..26eeed373934
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/atmel-smc.txt
> @@ -0,0 +1,19 @@
> +* Device tree bindings for Atmel SMC (Static Memory Controller)
> +
> +The SMC registers are used to configure Atmel EBI (External Bus Interface)
> +to interface with standard memory devices (NAND, NOR, SRAM or specialized
> +devices like FPGAs).
> +
> +Required properties:
> +- compatible: Should be one of the following
> + "atmel,at91sam9260-smc", "syscon"
> + "atmel,sama5d3-smc", "syscon"
> +- reg: Contains offset/length value of the SMC memory
> + region.
> +
> +Example:
> +
> +smc: smc at ffffc000 {
> + compatible = "atmel,sama5d3-smc", "syscon";
> + reg = <0xffffc000 0x1000>;
> +};
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee.jones@linaro.org>
To: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Felipe Balbi <balbi@ti.com>,
Boris Brezillon <boris.brezillon@free-electrons.com>,
Jean-Jacques Hiblot <jjhiblot@traphandler.com>,
Arnd Bergmann <arnd@arndb.de>,
linux-usb@vger.kernel.org,
Nicolas Ferre <nicolas.ferre@atmel.com>,
linux-kernel@vger.kernel.org,
Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 04/12] mfd: syscon: Add Atmel SMC binding doc
Date: Sun, 18 Jan 2015 12:54:15 +0000 [thread overview]
Message-ID: <20150118125415.GZ3574@x1> (raw)
In-Reply-To: <1421252524-24452-5-git-send-email-alexandre.belloni@free-electrons.com>
On Wed, 14 Jan 2015, Alexandre Belloni wrote:
> From: Boris Brezillon <boris.brezillon@free-electrons.com>
>
> The SMC registers are used to configure Atmel EBI (External Bus Interface)
> to interface with standard memory devices (NAND, NOR, SRAM or specialized
> devices like FPGAs).
>
> Declare this memory region as a syscon, so that different drivers can
> configure the SMC interface (mostly timing configuration) according to
> their need.
>
> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> Acked-by: Lee Jones <lee.jones@linaro.org>
> ---
> Documentation/devicetree/bindings/mfd/atmel-smc.txt | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/mfd/atmel-smc.txt
Applied, thanks.
> diff --git a/Documentation/devicetree/bindings/mfd/atmel-smc.txt b/Documentation/devicetree/bindings/mfd/atmel-smc.txt
> new file mode 100644
> index 000000000000..26eeed373934
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/atmel-smc.txt
> @@ -0,0 +1,19 @@
> +* Device tree bindings for Atmel SMC (Static Memory Controller)
> +
> +The SMC registers are used to configure Atmel EBI (External Bus Interface)
> +to interface with standard memory devices (NAND, NOR, SRAM or specialized
> +devices like FPGAs).
> +
> +Required properties:
> +- compatible: Should be one of the following
> + "atmel,at91sam9260-smc", "syscon"
> + "atmel,sama5d3-smc", "syscon"
> +- reg: Contains offset/length value of the SMC memory
> + region.
> +
> +Example:
> +
> +smc: smc@ffffc000 {
> + compatible = "atmel,sama5d3-smc", "syscon";
> + reg = <0xffffc000 0x1000>;
> +};
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2015-01-18 12:54 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-14 16:21 [PATCH 00/12] Atmel matrix, SMC and UDC rework Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-14 16:21 ` [PATCH 01/12] mfd: syscon: Add atmel-matrix registers definition Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-18 12:52 ` Lee Jones
2015-01-18 12:52 ` Lee Jones
2015-01-18 13:11 ` Boris Brezillon
2015-01-18 13:11 ` Boris Brezillon
2015-01-19 8:16 ` Lee Jones
2015-01-19 8:16 ` Lee Jones
2015-01-14 16:21 ` [PATCH 02/12] mfd: syscon: Add Atmel Matrix bus DT binding documentation Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-18 12:53 ` Lee Jones
2015-01-18 12:53 ` Lee Jones
2015-01-14 16:21 ` [PATCH 03/12] mfd: syscon: Add atmel-smc registers definition Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-18 12:53 ` Lee Jones
2015-01-18 12:53 ` Lee Jones
2015-01-14 16:21 ` [PATCH 04/12] mfd: syscon: Add Atmel SMC binding doc Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-18 12:54 ` Lee Jones [this message]
2015-01-18 12:54 ` Lee Jones
2015-01-14 16:21 ` [PATCH 05/12] usb: gadget: at91_udc: Fix clock names Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-14 17:37 ` Felipe Balbi
2015-01-14 17:37 ` Felipe Balbi
2015-01-14 16:21 ` [PATCH 06/12] usb: gadget: at91_udc: Drop uclk clock Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-14 17:37 ` Felipe Balbi
2015-01-14 17:37 ` Felipe Balbi
2015-01-14 16:21 ` [PATCH 07/12] usb: gadget: at91_udc: Document DT clocks and clock-names property Alexandre Belloni
2015-01-14 16:21 ` Alexandre Belloni
2015-01-14 16:22 ` [PATCH 08/12] usb: gadget: at91_udc: Remove non-DT handling code Alexandre Belloni
2015-01-14 16:22 ` Alexandre Belloni
2015-01-14 17:38 ` Felipe Balbi
2015-01-14 17:38 ` Felipe Balbi
2015-01-14 18:35 ` Alexandre Belloni
2015-01-14 18:35 ` Alexandre Belloni
2015-01-14 18:39 ` Felipe Balbi
2015-01-14 18:39 ` Felipe Balbi
2015-01-14 16:22 ` [PATCH 09/12] usb: gadget: at91_udc: Simplify probe and remove functions Alexandre Belloni
2015-01-14 16:22 ` Alexandre Belloni
2015-01-14 17:38 ` Felipe Balbi
2015-01-14 17:38 ` Felipe Balbi
2015-01-14 16:22 ` [PATCH 10/12] usb: gadget: at91_udc: Rework for multi-platform kernel support Alexandre Belloni
2015-01-14 16:22 ` Alexandre Belloni
2015-01-14 17:38 ` Felipe Balbi
2015-01-14 17:38 ` Felipe Balbi
2015-01-14 16:22 ` [PATCH 11/12] usb: gadget: at91_udc: Update DT binding documentation Alexandre Belloni
2015-01-14 16:22 ` Alexandre Belloni
2015-01-14 16:22 ` [PATCH 12/12] usb: gadget: at91_udc: Allocate udc instance Alexandre Belloni
2015-01-14 16:22 ` Alexandre Belloni
2015-01-14 17:39 ` Felipe Balbi
2015-01-14 17:39 ` Felipe Balbi
2015-01-15 13:30 ` [PATCH 00/12] Atmel matrix, SMC and UDC rework Nicolas Ferre
2015-01-15 13:30 ` Nicolas Ferre
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=20150118125415.GZ3574@x1 \
--to=lee.jones@linaro.org \
--cc=linux-arm-kernel@lists.infradead.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.