linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: JinGoo Han <jg1.han@samsung.com>
To: "K, Mythri P" <mythripk@ti.com>
Cc: JinGoo Han <jg1.han@samsung.com>,
	Kukjin Kim <kgene.kim@samsung.com>,
	Paul Mundt <lethal@linux-sh.org>,
	"linux-samsung-soc@vger.kernel.org"
	<linux-samsung-soc@vger.kernel.org>,
	"linux-fbdev@vger.kernel.org" <linux-fbdev@vger.kernel.org>,
	Jong-Hun Han <jonghun.han@samsung.com>,
	ANAND KUMAR N <anand.kn@samsung.com>,
	Sylwester Nawrocki <s.nawrocki@samsung.com>,
	THOMAS P ABRAHAM <thomas.ab@samsung.com>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Kyungmin Park <kmpark@infradead.org>,
	In-Ki Dae <inki.dae@samsung.com>,
	ARM Linux <linux@arm.linux.org.uk>,
	Ben Dooks <ben-linux@fluff.org>
Subject: Re: Re: [PATCH V4 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4
Date: Thu, 23 Jun 2011 11:08:58 +0000	[thread overview]
Message-ID: <3561939.168581308827336693.JavaMail.weblogic@epml08> (raw)
In-Reply-To: <11291403.110251308714504687.JavaMail.weblogic@epml08>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="windows-1254", Size: 3800 bytes --]


Hi, Mythri.
> -----Original Message-----
> From: linux-fbdev-owner@vger.kernel.org [mailto:linux-fbdev-
> owner@vger.kernel.org] On Behalf Of K, Mythri P
> Sent: Thursday, June 23, 2011 6:04 PM
> To: jg1.han@samsung.com
> Cc: Kukjin Kim; Paul Mundt; linux-samsung-soc@vger.kernel.org; linux-
> fbdev@vger.kernel.org; Jong-Hun Han; ANAND KUMAR N; Sylwester Nawrocki;
> THOMAS P ABRAHAM; Marek Szyprowski; Kyungmin Park; In-Ki Dae; ARM Linux;
> Ben Dooks
> Subject: Re: [PATCH V4 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4
> FIMD and LTE480WV platform-lcd
> 
> 2011/6/22 JinGoo Han <jg1.han@samsung.com>:
> > From: Jonghun Han <jonghun.han@samsung.com>
> >
> > This patch adds support EXYNOS4 FIMD0 and LTE480WV LCD pannel.
> >
> > Signed-off-by: Jonghun Han <jonghun.han@samsung.com>
> > Signed-off-by: Jingoo Han <jg1.han@samsung.com>
> > ---
> >  arch/arm/mach-exynos4/mach-smdkc210.c |  114
> +++++++++++++++++++++++++++++++++
> >  arch/arm/mach-exynos4/mach-smdkv310.c |  114
> +++++++++++++++++++++++++++++++++
> >  2 files changed, 228 insertions(+), 0 deletions(-)
> >
> <<snip>>
> > +static void lcd_lte480wv_set_power(struct plat_lcd_data *pd,
> > +                                  unsigned int power)
> > +{
> > +       if (power) {
> > +#if !defined(CONFIG_BACKLIGHT_PWM)
> > +               gpio_request(EXYNOS4_GPD0(1), "GPD0");
> > +               gpio_direction_output(EXYNOS4_GPD0(1), 1);
> > +               gpio_free(EXYNOS4_GPD0(1));
> > +#endif
> > +               /* fire nRESET on power up */
> > +               gpio_request(EXYNOS4_GPX0(6), "GPX0");
> > +
> > +               gpio_direction_output(EXYNOS4_GPX0(6), 1);
> > +               mdelay(100);
> > +
> > +               gpio_set_value(EXYNOS4_GPX0(6), 0);
> > +               mdelay(10);
> > +
> > +               gpio_set_value(EXYNOS4_GPX0(6), 1);
> > +               mdelay(10);
> > +
> > +               gpio_free(EXYNOS4_GPX0(6));
> > +       } else {
> > +#if !defined(CONFIG_BACKLIGHT_PWM)
> > +               gpio_request(EXYNOS4_GPD0(1), "GPD0");
> > +               gpio_direction_output(EXYNOS4_GPD0(1), 0);
> > +               gpio_free(EXYNOS4_GPD0(1));
> > +#endif
> > +       }
> > +}
> > +
> 
> have you considered using gpio_request_one instead ? It simplifies the
> three step API.
You're right. It seems to be very helpful.
I will apply it and send V7 patches, soon.
Thank you for your reply.
> 
> <<snip>>
> 
> > +       if (power) {
> > +#if !defined(CONFIG_BACKLIGHT_PWM)
> > +               gpio_request(EXYNOS4_GPD0(1), "GPD0");
> > +               gpio_direction_output(EXYNOS4_GPD0(1), 1);
> > +               gpio_free(EXYNOS4_GPD0(1));
> > +#endif
> > +               /* fire nRESET on power up */
> > +               gpio_request(EXYNOS4_GPX0(6), "GPX0");
> > +
> > +               gpio_direction_output(EXYNOS4_GPX0(6), 1);
> > +               mdelay(100);
> > +
> > +               gpio_set_value(EXYNOS4_GPX0(6), 0);
> > +               mdelay(10);
> > +
> > +               gpio_set_value(EXYNOS4_GPX0(6), 1);
> > +               mdelay(10);
> > +
> > +               gpio_free(EXYNOS4_GPX0(6));
> > +       } else {
> > +#if !defined(CONFIG_BACKLIGHT_PWM)
> > +               gpio_request(EXYNOS4_GPD0(1), "GPD0");
> > +               gpio_direction_output(EXYNOS4_GPD0(1), 0);
> > +               gpio_free(EXYNOS4_GPD0(1));
> > +#endif
> > +       }
> > +}
> 
> same comment as above.
> 
> <<snip>>
> 
> 
> 
> --
> Thanks and regards,
> Mythri.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±ýöÝzÿâžØ^n‡r¡ö¦zË\x1aëh™¨è­Ú&£ûàz¿äz¹Þ—ú+€Ê+zf£¢·hšˆ§~†­†Ûiÿÿïêÿ‘êçz_è®\x0fæj:+v‰¨þ)ߣøm

      parent reply	other threads:[~2011-06-23 11:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-22  3:48 [PATCH V4 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4 FIMD and JinGoo Han
2011-06-23  9:15 ` [PATCH V4 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4 FIMD K, Mythri P
2011-06-23 11:08 ` JinGoo Han [this message]

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=3561939.168581308827336693.JavaMail.weblogic@epml08 \
    --to=jg1.han@samsung.com \
    --cc=anand.kn@samsung.com \
    --cc=ben-linux@fluff.org \
    --cc=inki.dae@samsung.com \
    --cc=jonghun.han@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=kmpark@infradead.org \
    --cc=lethal@linux-sh.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=m.szyprowski@samsung.com \
    --cc=mythripk@ti.com \
    --cc=s.nawrocki@samsung.com \
    --cc=thomas.ab@samsung.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 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).