All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tushar Behera <tushar.behera@linaro.org>
To: Ajay Kumar <ajaykumar.rs@samsung.com>
Cc: kgene.kim@samsung.com, linux-samsung-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, lethal@linux-sh.org,
	jg1.han@samsung.com
Subject: Re: [PATCH 0/6] ARM: S5P64X0: Add Framebuffer support
Date: Fri, 15 Jul 2011 11:42:30 +0530	[thread overview]
Message-ID: <4E1FDA4E.9010800@linaro.org> (raw)
In-Reply-To: <1310650036-28836-1-git-send-email-ajaykumar.rs@samsung.com>

On Thursday 14 July 2011 06:57 PM, Ajay Kumar wrote:
> 	The patches are created against "for-next" branch of Kukjin Kim's tree at:
> 	git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
>
> 	Patch [1/6]
> 	-- add "s5p64x0-fb" type driver_data(s3c_fb_driverdata).
> 	-- Display controller in S5P64X0 supports 3 windows.
>
> 	Patch [2/6]
> 	-- Resource definitions(_MEM, _IRQ).
>
> 	Patch [3/6]
> 	-- Set s3c_device_fb name as "s5p64x0-fb"
> 	   for S5P6440 and S5P6450.
>
> 	Patch [4/6]
> 	-- GPIO settings for LCD in S5P6440 and S5P6450.
> 	-- Select LCD interface type (RGB/i80)
>
> 	Patch [5/6]
> 	-- Add support for LCD-LTE480 platform device in SMDK6440.
> 	-- Platform data for FB and a basic window definition.
> 	-- Enables FB support and platform-lcd support.
> 	-- Add support for window 0 with 24 BPP.
>
> 	Patch [6/6]
> 	-- Add support for LCD-LTE480 platform device in SMDK6450.
> 	-- Platform data for FB and a basic window definition.
> 	-- Enables FB support and platform-lcd support.
> 	-- Add support for window 0 with 24 BPP.
>
Some of the patches have got some coding syntax (DOS LINE ending etc.). 
Consider running scripts/checkpatch.pl on the patches before sending the 
next version.

scripts/cleanpatch can help you in fixing many of the style problems.

>   o To Paul Mundt, Jingoo Han
>     [Patch 1/6] video: s3c-fb: Add S5P64X0 specific s3c_fb_driverdata
>
>   o To Kukjin Kim
>     [Patch 2/6] ARM: S5P64X0: Add register base and IRQ for Framebuffer
>     [Patch 3/6] ARM: S5P64X0: Set s3c_device_fb name
>     [Patch 4/6] ARM: S5P64X0: Add GPIO and SPCON settings for LCD
>     [Patch 5/6] ARM: S5P6440: Add LCD-LTE480 and enable Framebuffer support
>     [Patch 6/6] ARM: S5P6450: Add LCD-LTE480 and enable Framebuffer support
>
>
>   arch/arm/mach-s5p64x0/Kconfig                  |   10 ++++
>   arch/arm/mach-s5p64x0/Makefile                 |    1 +
>   arch/arm/mach-s5p64x0/cpu.c                    |    3 +
>   arch/arm/mach-s5p64x0/include/mach/irqs.h      |    4 ++
>   arch/arm/mach-s5p64x0/include/mach/map.h       |    3 +
>   arch/arm/mach-s5p64x0/include/mach/regs-fb.h   |   19 +++++++
>   arch/arm/mach-s5p64x0/include/mach/regs-gpio.h |    4 ++
>   arch/arm/mach-s5p64x0/mach-smdk6440.c          |   63 +++++++++++++++++++++++
>   arch/arm/mach-s5p64x0/mach-smdk6450.c          |   63 +++++++++++++++++++++++
>   arch/arm/mach-s5p64x0/setup-fb.c               |   48 ++++++++++++++++++
>   arch/arm/plat-samsung/include/plat/fb.h        |   14 +++++
>   drivers/video/s3c-fb.c                         |   64 ++++++++++++++++++++++++
>   12 files changed, 296 insertions(+), 0 deletions(-)
>   create mode 100644 arch/arm/mach-s5p64x0/include/mach/regs-fb.h
>   create mode 100644 arch/arm/mach-s5p64x0/setup-fb.c
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


-- 
Tushar Behera

WARNING: multiple messages have this Message-ID (diff)
From: tushar.behera@linaro.org (Tushar Behera)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] ARM: S5P64X0: Add Framebuffer support
Date: Fri, 15 Jul 2011 11:42:30 +0530	[thread overview]
Message-ID: <4E1FDA4E.9010800@linaro.org> (raw)
In-Reply-To: <1310650036-28836-1-git-send-email-ajaykumar.rs@samsung.com>

On Thursday 14 July 2011 06:57 PM, Ajay Kumar wrote:
> 	The patches are created against "for-next" branch of Kukjin Kim's tree at:
> 	git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
>
> 	Patch [1/6]
> 	-- add "s5p64x0-fb" type driver_data(s3c_fb_driverdata).
> 	-- Display controller in S5P64X0 supports 3 windows.
>
> 	Patch [2/6]
> 	-- Resource definitions(_MEM, _IRQ).
>
> 	Patch [3/6]
> 	-- Set s3c_device_fb name as "s5p64x0-fb"
> 	   for S5P6440 and S5P6450.
>
> 	Patch [4/6]
> 	-- GPIO settings for LCD in S5P6440 and S5P6450.
> 	-- Select LCD interface type (RGB/i80)
>
> 	Patch [5/6]
> 	-- Add support for LCD-LTE480 platform device in SMDK6440.
> 	-- Platform data for FB and a basic window definition.
> 	-- Enables FB support and platform-lcd support.
> 	-- Add support for window 0 with 24 BPP.
>
> 	Patch [6/6]
> 	-- Add support for LCD-LTE480 platform device in SMDK6450.
> 	-- Platform data for FB and a basic window definition.
> 	-- Enables FB support and platform-lcd support.
> 	-- Add support for window 0 with 24 BPP.
>
Some of the patches have got some coding syntax (DOS LINE ending etc.). 
Consider running scripts/checkpatch.pl on the patches before sending the 
next version.

scripts/cleanpatch can help you in fixing many of the style problems.

>   o To Paul Mundt, Jingoo Han
>     [Patch 1/6] video: s3c-fb: Add S5P64X0 specific s3c_fb_driverdata
>
>   o To Kukjin Kim
>     [Patch 2/6] ARM: S5P64X0: Add register base and IRQ for Framebuffer
>     [Patch 3/6] ARM: S5P64X0: Set s3c_device_fb name
>     [Patch 4/6] ARM: S5P64X0: Add GPIO and SPCON settings for LCD
>     [Patch 5/6] ARM: S5P6440: Add LCD-LTE480 and enable Framebuffer support
>     [Patch 6/6] ARM: S5P6450: Add LCD-LTE480 and enable Framebuffer support
>
>
>   arch/arm/mach-s5p64x0/Kconfig                  |   10 ++++
>   arch/arm/mach-s5p64x0/Makefile                 |    1 +
>   arch/arm/mach-s5p64x0/cpu.c                    |    3 +
>   arch/arm/mach-s5p64x0/include/mach/irqs.h      |    4 ++
>   arch/arm/mach-s5p64x0/include/mach/map.h       |    3 +
>   arch/arm/mach-s5p64x0/include/mach/regs-fb.h   |   19 +++++++
>   arch/arm/mach-s5p64x0/include/mach/regs-gpio.h |    4 ++
>   arch/arm/mach-s5p64x0/mach-smdk6440.c          |   63 +++++++++++++++++++++++
>   arch/arm/mach-s5p64x0/mach-smdk6450.c          |   63 +++++++++++++++++++++++
>   arch/arm/mach-s5p64x0/setup-fb.c               |   48 ++++++++++++++++++
>   arch/arm/plat-samsung/include/plat/fb.h        |   14 +++++
>   drivers/video/s3c-fb.c                         |   64 ++++++++++++++++++++++++
>   12 files changed, 296 insertions(+), 0 deletions(-)
>   create mode 100644 arch/arm/mach-s5p64x0/include/mach/regs-fb.h
>   create mode 100644 arch/arm/mach-s5p64x0/setup-fb.c
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


-- 
Tushar Behera

  parent reply	other threads:[~2011-07-15  6:12 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-14 13:27 [PATCH 0/6] ARM: S5P64X0: Add Framebuffer support Ajay Kumar
2011-07-14 13:27 ` Ajay Kumar
2011-07-14 13:27 ` [PATCH 1/6] video: s3c-fb: Add S5P64X0 specific s3c_fb_driverdata Ajay Kumar
2011-07-14 13:27   ` Ajay Kumar
2011-07-14 13:27 ` [PATCH 2/6] ARM: S5P64X0: Add register base and IRQ for Framebuffer Ajay Kumar
2011-07-14 13:27   ` Ajay Kumar
2011-07-14 11:17   ` Marek Szyprowski
2011-07-14 11:17     ` Marek Szyprowski
2011-07-15  5:56     ` Ajay kumar
2011-07-15  5:56       ` Ajay kumar
2011-07-21  1:07   ` Kukjin Kim
2011-07-21  1:07     ` Kukjin Kim
2011-07-14 13:27 ` [PATCH 3/6] ARM: S5P64X0: Set s3c_device_fb name Ajay Kumar
2011-07-14 13:27   ` Ajay Kumar
2011-07-14 13:27 ` [PATCH 4/6] ARM: S5P64X0: Add GPIO and SPCON settings for LCD Ajay Kumar
2011-07-14 13:27   ` Ajay Kumar
2011-07-21  1:21   ` Kukjin Kim
2011-07-21  1:21     ` Kukjin Kim
2011-07-14 13:27 ` [PATCH 5/6] ARM: S5P6440: Add LCD-LTE480 and enable Framebuffer support Ajay Kumar
2011-07-14 13:27   ` Ajay Kumar
2011-07-14 13:27 ` [PATCH 6/6] ARM: S5P6450: " Ajay Kumar
2011-07-14 13:27   ` Ajay Kumar
2011-07-15  6:12 ` Tushar Behera [this message]
2011-07-15  6:12   ` [PATCH 0/6] ARM: S5P64X0: Add " Tushar Behera
2011-07-15  6:27   ` Ajay kumar
2011-07-15  6:27     ` Ajay kumar
2011-07-15 10:05     ` Tushar Behera
2011-07-15 10:05       ` Tushar Behera

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=4E1FDA4E.9010800@linaro.org \
    --to=tushar.behera@linaro.org \
    --cc=ajaykumar.rs@samsung.com \
    --cc=jg1.han@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=lethal@linux-sh.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.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.