public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Anatolij Gustschin <agust@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] LCD: drawing 32bpp uncompressed bitmap image
Date: Tue, 24 Apr 2012 17:55:12 +0200	[thread overview]
Message-ID: <20120424175512.5818dba2@wker> (raw)
In-Reply-To: <4F94B49B.3070101@samsung.com>

Hi,

On Mon, 23 Apr 2012 10:47:07 +0900
Donghwa Lee <dh09.lee@samsung.com> wrote:

> This patch supports drawing 32bpp uncompressed bitmap image.
> 
> Signed-off-by: Donghwa Lee <dh09.lee@samsung.com>
> Signed-off-by: Kyungmin.park <kyungmin.park@samsung.com>
> ---
>  common/lcd.c |   26 ++++++++++++++++++++++----
>  1 files changed, 22 insertions(+), 4 deletions(-)
> 
> diff --git a/common/lcd.c b/common/lcd.c
> index bf1a6a9..a7b04d2 100644
> --- a/common/lcd.c
> +++ b/common/lcd.c
...
> @@ -739,8 +739,14 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y)
>  		height = panel_info.vl_row - y;
>  
>  	bmap = (uchar *)bmp + le32_to_cpu (bmp->header.data_offset);
> +
> +#ifndef CONFIG_EXYNOS_FB
>  	fb   = (uchar *) (lcd_base +
>  		(y + height - 1) * lcd_line_length + x * bpix / 8);
> +#else
> +	fb = (uchar *) (lcd_base + (y + height) *
> +			(panel_info.vl_col * (bpix / 8)) + x * (bpix / 8));
> +#endif

This ifndef shouldn't be needed. Better pass needed 'y' position
to the lcd_display_bitmap() function.

>  
>  	switch (bmp_bpix) {
>  	case 1: /* pass through */
> @@ -788,9 +794,21 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y)
>  			bmap += (padded_line - width) * 2;
>  			fb   -= (width * 2 + lcd_line_length);
>  		}
> +

Please do not add this empty line here.

>  		break;
>  #endif /* CONFIG_BMP_16BPP */
> -
> +	case 32:
> +		for (i = 0; i < height; ++i) {
> +			for (j = 0; j < width; j++) {
> +				*(fb++) = *(bmap++);
> +				*(fb++) = *(bmap++);
> +				*(fb++) = *(bmap++);
> +				*(fb++) = *(bmap++);
> +			}
> +			fb  -= ((panel_info.vl_col *
> +				(bpix / 8)) + width * (bpix / 8));

you can use lcd_line_lenght instead of (panel_info.vl_col * (bpix / 8))
here, i think.

> +		}
> +		break;

Please surround by
#ifdef CONFIG_BMP_32BPP
...
#endif

so that boards not using 32bpp do not suffer from code size
increase.

Thanks,
Anatolij

      reply	other threads:[~2012-04-24 15:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-23  1:47 [U-Boot] [PATCH 1/2] LCD: drawing 32bpp uncompressed bitmap image Donghwa Lee
2012-04-24 15:55 ` Anatolij Gustschin [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=20120424175512.5818dba2@wker \
    --to=agust@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox