All of lore.kernel.org
 help / color / mirror / Atom feed
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 7/8] ARM: at91: at9sam9m10g45ek: add dt lcd support
Date: Tue, 16 Apr 2013 16:56:43 +0200	[thread overview]
Message-ID: <516D66AB.7050804@atmel.com> (raw)
In-Reply-To: <1365692422-9565-7-git-send-email-plagnioj@jcrosoft.com>

On 04/11/2013 05:00 PM, Jean-Christophe PLAGNIOL-VILLARD :
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  arch/arm/boot/dts/at91sam9m10g45ek.dts |   29 +++++++++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/at91sam9m10g45ek.dts b/arch/arm/boot/dts/at91sam9m10g45ek.dts
> index 20c3191..79dc034 100644
> --- a/arch/arm/boot/dts/at91sam9m10g45ek.dts
> +++ b/arch/arm/boot/dts/at91sam9m10g45ek.dts
> @@ -104,6 +104,35 @@
>  			};
>  		};
>  
> +		fb0: fb at 0x00500000 {
> +			display = <&display0>;
> +			status = "okay";
> +
> +			display0: display {
> +				bits-per-pixel = <32>;
> +				atmel,lcdcon-backlight;
> +				atmel,dmacon = <0x1>;
> +				atmel,lcdcon2 = <0x80008002>;
> +				atmel,guard-time = <9>;
> +				atmel,lcd-wiring-mode = "RGB";
> +
> +				display-timings {
> +					native-mode = <&timing0>;
> +					timing0: timing0 {
> +						clock-frequency = <9000000>;
> +						hactive = <480>;
> +						vactive = <272>;
> +						hback-porch = <1>;
> +						hfront-porch = <1>;
> +						vback-porch = <40>;
> +						vfront-porch = <1>;
> +						hsync-len = <45>;
> +						vsync-len = <1>;
> +					};
> +				};
> +			};
> +		};
> +

Seems good.

>  		nand0: nand at 40000000 {
>  			nand-bus-width = <8>;
>  			nand-ecc-mode = "soft";
> 


-- 
Nicolas Ferre

WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: devicetree-discuss@lists.ozlabs.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 7/8] ARM: at91: at9sam9m10g45ek: add dt lcd support
Date: Tue, 16 Apr 2013 16:56:43 +0200	[thread overview]
Message-ID: <516D66AB.7050804@atmel.com> (raw)
In-Reply-To: <1365692422-9565-7-git-send-email-plagnioj@jcrosoft.com>

On 04/11/2013 05:00 PM, Jean-Christophe PLAGNIOL-VILLARD :
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  arch/arm/boot/dts/at91sam9m10g45ek.dts |   29 +++++++++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/at91sam9m10g45ek.dts b/arch/arm/boot/dts/at91sam9m10g45ek.dts
> index 20c3191..79dc034 100644
> --- a/arch/arm/boot/dts/at91sam9m10g45ek.dts
> +++ b/arch/arm/boot/dts/at91sam9m10g45ek.dts
> @@ -104,6 +104,35 @@
>  			};
>  		};
>  
> +		fb0: fb@0x00500000 {
> +			display = <&display0>;
> +			status = "okay";
> +
> +			display0: display {
> +				bits-per-pixel = <32>;
> +				atmel,lcdcon-backlight;
> +				atmel,dmacon = <0x1>;
> +				atmel,lcdcon2 = <0x80008002>;
> +				atmel,guard-time = <9>;
> +				atmel,lcd-wiring-mode = "RGB";
> +
> +				display-timings {
> +					native-mode = <&timing0>;
> +					timing0: timing0 {
> +						clock-frequency = <9000000>;
> +						hactive = <480>;
> +						vactive = <272>;
> +						hback-porch = <1>;
> +						hfront-porch = <1>;
> +						vback-porch = <40>;
> +						vfront-porch = <1>;
> +						hsync-len = <45>;
> +						vsync-len = <1>;
> +					};
> +				};
> +			};
> +		};
> +

Seems good.

>  		nand0: nand@40000000 {
>  			nand-bus-width = <8>;
>  			nand-ecc-mode = "soft";
> 


-- 
Nicolas Ferre

  reply	other threads:[~2013-04-16 14:56 UTC|newest]

Thread overview: 91+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-11 14:57 [PATCH 0/8] ARM: at91: atmel_lcdc: add DT support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 14:57 ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00 ` [PATCH 1/8] video: atmel_lcdfb: fix platform data struct Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` [PATCH 2/8] video: atmel_lcdfb: introduce atmel_lcdfb_power_control Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 12:35     ` Nicolas Ferre
2013-04-16 12:35       ` Nicolas Ferre
2013-04-16 12:35       ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 3/8] video: atmel_lcdfb: pass the pdata as params Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 12:38     ` Nicolas Ferre
2013-04-16 12:38       ` Nicolas Ferre
2013-04-16 12:38       ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 4/8] video: atmel_lcdfb: add device tree suport Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:42     ` Nicolas Ferre
2013-04-16 13:42       ` Nicolas Ferre
2013-04-16 13:42       ` Nicolas Ferre
2013-04-16 13:44       ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:44         ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:44         ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 15:43         ` Nicolas Ferre
2013-04-16 15:43           ` Nicolas Ferre
2013-04-16 15:43           ` Nicolas Ferre
2013-05-29 15:01     ` Richard Genoud
2013-05-29 15:01       ` Richard Genoud
2013-05-29 15:01       ` Richard Genoud
2013-04-11 15:00   ` [PATCH 5/8] ARM: at91: sam9g45: add lcd support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:57     ` Nicolas Ferre
2013-04-16 13:57       ` Nicolas Ferre
2013-04-16 14:00     ` Nicolas Ferre
2013-04-16 14:00       ` Nicolas Ferre
2013-04-16 15:12       ` Nicolas Ferre
2013-04-16 15:12         ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 6/8] ARM: at91: sam9263: add fb dt support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:11     ` Nicolas Ferre
2013-04-16 14:11       ` Nicolas Ferre
2013-04-16 14:13       ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:13         ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 15:11         ` Nicolas Ferre
2013-04-16 15:11           ` Nicolas Ferre
2013-04-16 15:48           ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 15:48             ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` [PATCH 7/8] ARM: at91: at9sam9m10g45ek: add dt lcd support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:56     ` Nicolas Ferre [this message]
2013-04-16 14:56       ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 8/8] ARM: at91: sam9263ek: " Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:54     ` Nicolas Ferre
2013-04-16 14:54       ` Nicolas Ferre
2013-04-12  9:52   ` [PATCH 1/8] video: atmel_lcdfb: fix platform data struct Hans-Christian Egtvedt
2013-04-12  9:52     ` Hans-Christian Egtvedt
2013-04-12  9:52     ` Hans-Christian Egtvedt
2013-04-16 12:33   ` Nicolas Ferre
2013-04-16 12:33     ` Nicolas Ferre
2013-04-16 12:33     ` Nicolas Ferre
2013-05-29 14:36   ` Richard Genoud
2013-05-29 14:36     ` Richard Genoud
2013-05-29 14:36     ` Richard Genoud
2013-05-29 17:35     ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 17:35       ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 17:35       ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 17:44       ` Richard Genoud
2013-05-29 17:44         ` Richard Genoud
2013-05-29 17:44         ` Richard Genoud
2013-05-29 19:32         ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 19:32           ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 19:32           ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30  6:39           ` Richard Genoud
2013-05-30  6:39             ` Richard Genoud
2013-05-30  6:39             ` Richard Genoud
2013-05-30  7:23             ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30  7:23               ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30  7:23               ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30 14:05               ` Hans-Christian Egtvedt
2013-05-30 14:05                 ` Hans-Christian Egtvedt
2013-05-30 14:05                 ` Hans-Christian Egtvedt
2013-05-30 14:27               ` Andreas Bießmann
2013-05-30 14:27                 ` Andreas Bießmann
2013-05-30 14:27                 ` Andreas Bießmann
2013-05-30 14:59                 ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30 14:59                   ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30 14:59                   ` Jean-Christophe PLAGNIOL-VILLARD

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=516D66AB.7050804@atmel.com \
    --to=nicolas.ferre@atmel.com \
    --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.