All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: ludovic.desroches@atmel.com
Cc: linux-mmc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	plagnioj@jcrosoft.com,
	devicetree-discuss <devicetree-discuss@lists.ozlabs.org>
Subject: Re: [PATCH 3/4] arm: at91: dt: sam9x5 add mci support
Date: Thu, 22 Mar 2012 15:52:13 +0100	[thread overview]
Message-ID: <4F6B3C9D.60300@atmel.com> (raw)
In-Reply-To: <1332352994-20983-4-git-send-email-ludovic.desroches@atmel.com>

On 03/21/2012 07:03 PM, ludovic.desroches@atmel.com :
> From: Ludovic Desroches <ludovic.desroches@atmel.com>
> 
> Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>  arch/arm/boot/dts/at91sam9x5.dtsi |   14 ++++++++++++++
>  1 files changed, 14 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi
> index c111001..5846f99 100644
> --- a/arch/arm/boot/dts/at91sam9x5.dtsi
> +++ b/arch/arm/boot/dts/at91sam9x5.dtsi
> @@ -191,6 +191,20 @@
>  				interrupts = <27 4>;
>  				status = "disabled";
>  			};
> +
> +			mmc0: mmc@f0008000 {
> +				compatible = "atmel,hsmci";
> +				reg = <0xf0008000 0x600>;
> +				interrupts = <12 4>;
> +				status = "disabled";
> +			};
> +
> +			mmc1: mmc@f000c000 {
> +				compatible = "atmel,hsmci";
> +				reg = <0xf000c000 0x600>;
> +				interrupts = <26 4>;
> +				status = "disabled";
> +			};
>  		};
>  
>  		nand0: nand@40000000 {


-- 
Nicolas Ferre

WARNING: multiple messages have this Message-ID (diff)
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/4] arm: at91: dt: sam9x5 add mci support
Date: Thu, 22 Mar 2012 15:52:13 +0100	[thread overview]
Message-ID: <4F6B3C9D.60300@atmel.com> (raw)
In-Reply-To: <1332352994-20983-4-git-send-email-ludovic.desroches@atmel.com>

On 03/21/2012 07:03 PM, ludovic.desroches at atmel.com :
> From: Ludovic Desroches <ludovic.desroches@atmel.com>
> 
> Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>  arch/arm/boot/dts/at91sam9x5.dtsi |   14 ++++++++++++++
>  1 files changed, 14 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi
> index c111001..5846f99 100644
> --- a/arch/arm/boot/dts/at91sam9x5.dtsi
> +++ b/arch/arm/boot/dts/at91sam9x5.dtsi
> @@ -191,6 +191,20 @@
>  				interrupts = <27 4>;
>  				status = "disabled";
>  			};
> +
> +			mmc0: mmc at f0008000 {
> +				compatible = "atmel,hsmci";
> +				reg = <0xf0008000 0x600>;
> +				interrupts = <12 4>;
> +				status = "disabled";
> +			};
> +
> +			mmc1: mmc at f000c000 {
> +				compatible = "atmel,hsmci";
> +				reg = <0xf000c000 0x600>;
> +				interrupts = <26 4>;
> +				status = "disabled";
> +			};
>  		};
>  
>  		nand0: nand at 40000000 {


-- 
Nicolas Ferre

  reply	other threads:[~2012-03-22 14:52 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-21 18:03 [PATCH 0/4] atmel-mci device tree support ludovic.desroches
2012-03-21 18:03 ` ludovic.desroches at atmel.com
2012-03-21 18:03 ` [PATCH 1/4] mmc: atmel-mci: add " ludovic.desroches
2012-03-21 18:03   ` ludovic.desroches at atmel.com
2012-03-22 14:50   ` Nicolas Ferre
2012-03-22 14:50     ` Nicolas Ferre
2012-03-23 10:38     ` Ludovic Desroches
2012-03-23 10:38       ` Ludovic Desroches
2012-03-21 18:03 ` [PATCH 2/4] arm: at91: at91sam9x5 add mci clk_lookup ludovic.desroches
2012-03-21 18:03   ` ludovic.desroches at atmel.com
2012-03-22 14:51   ` Nicolas Ferre
2012-03-22 14:51     ` Nicolas Ferre
2012-03-21 18:03 ` [PATCH 3/4] arm: at91: dt: sam9x5 add mci support ludovic.desroches
2012-03-21 18:03   ` ludovic.desroches at atmel.com
2012-03-22 14:52   ` Nicolas Ferre [this message]
2012-03-22 14:52     ` Nicolas Ferre
2012-03-21 18:03 ` [PATCH 4/4] arm: at91: dt: sam9g25ek " ludovic.desroches
2012-03-21 18:03   ` ludovic.desroches at atmel.com
2012-03-22 14:53   ` Nicolas Ferre
2012-03-22 14:53     ` Nicolas Ferre
2012-03-24 19:10     ` Grant Likely
2012-03-24 19:10       ` Grant Likely
2012-04-01  3:49 ` [PATCH 0/4] atmel-mci device tree support Chris Ball
2012-04-01  3:49   ` Chris Ball
2012-04-02  6:51   ` Ludovic Desroches
2012-04-02  6:51     ` Ludovic Desroches

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=4F6B3C9D.60300@atmel.com \
    --to=nicolas.ferre@atmel.com \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=ludovic.desroches@atmel.com \
    --cc=plagnioj@jcrosoft.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.