All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] MX5: Make IPU display output and pixel format configurable
Date: Tue, 27 Sep 2011 14:28:54 +0200	[thread overview]
Message-ID: <4E81C186.6000802@denx.de> (raw)
In-Reply-To: <1317125366-16059-1-git-send-email-marek.vasut@gmail.com>

On 09/27/2011 02:09 PM, Marek Vasut wrote:
> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> Cc: Stefano Babic <sbabic@denx.de>
> ---
>  drivers/video/mxc_ipuv3_fb.c |   14 ++++++++++++--
>  1 files changed, 12 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c
> index a66981c..c4443e8 100644
> --- a/drivers/video/mxc_ipuv3_fb.c
> +++ b/drivers/video/mxc_ipuv3_fb.c
> @@ -42,6 +42,16 @@
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> +/* Use DISP #1 by default. */
> +#ifndef	CONFIG_VIDEO_MX5_OUTPUT
> +#define	CONFIG_VIDEO_MX5_OUTPUT	0
> +#endif
> +
> +/* Use RGB666 pixel format by default. */
> +#ifndef	CONFIG_VIDEO_MX5_PIXFMT
> +#define	CONFIG_VIDEO_MX5_PIXFMT	IPU_PIX_FMT_RGB666
> +#endif
> +
>  void *lcd_base;			/* Start of framebuffer memory	*/
>  void *lcd_console_address;	/* Start of console buffer	*/
>  
> @@ -550,7 +560,7 @@ static int mxcfb_probe(u32 interface_pix_fmt, struct fb_videomode *mode)
>  		mxcfbi->blank = FB_BLANK_POWERDOWN;
>  	}
>  
> -	mxcfbi->ipu_di = 0;
> +	mxcfbi->ipu_di = CONFIG_VIDEO_MX5_OUTPUT;
>  
>  	ipu_disp_set_global_alpha(mxcfbi->ipu_ch, 1, 0x80);
>  	ipu_disp_set_color_key(mxcfbi->ipu_ch, 0, 0);
> @@ -636,7 +646,7 @@ int mx51_fb_init(struct fb_videomode *mode)
>  	lcd_base += 56;
>  
>  	debug("Framebuffer at 0x%x\n", (unsigned int)lcd_base);
> -	ret = mxcfb_probe(IPU_PIX_FMT_RGB666, mode);
> +	ret = mxcfb_probe(CONFIG_VIDEO_MX5_PIXFMT, mode);
>  

What about to not use a CONFIG_ ? at the moment, the board code calls
mx51_fb_init() to initialize the display parameter. We can add a second
parameter (display_id) to the initialization and the board code is
responsible to do that. And it is not required to recompile u-boot if
the board as the mx51evk more as one display has or can have.

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

  parent reply	other threads:[~2011-09-27 12:28 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-27 12:09 [U-Boot] [PATCH] MX5: Make IPU display output and pixel format configurable Marek Vasut
2011-09-27 12:22 ` Fabio Estevam
2011-09-27 12:31   ` Marek Vasut
2011-09-27 12:28 ` Stefano Babic [this message]
2011-09-27 12:43 ` [U-Boot] [PATCH V2] " Marek Vasut
2011-09-27 12:50   ` Stefano Babic
2011-09-27 12:58     ` Marek Vasut
2011-09-27 13:07       ` Stefano Babic
2011-09-27 13:19         ` Marek Vasut
2011-10-06 21:20   ` Wolfgang Denk
2011-10-06 21:32     ` Anatolij Gustschin

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=4E81C186.6000802@denx.de \
    --to=sbabic@denx.de \
    --cc=u-boot@lists.denx.de \
    /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.