mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 14:56:03 +00:00
tools: logo: split bmp arrays from bmp_logo.h
The generated header bmp_logo.h is useful even outside common/lcd.c for the logo dimension. However, the problem is, the generated bmp_logo.h cannot be included multiple times because bmp_logo_palette[] and bmp_logo_bitmap[] are defined in the bmp_logo.h. This patch fixes this by defining these arrays in another header bmp_logo_data.h and in bmp_logo.h only declaring these arrays. Signed-off-by: Che-Liang Chiou <clchiou@chromium.org> Acked-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
02110903a8
commit
c270730f58
6 changed files with 71 additions and 21 deletions
1
Makefile
1
Makefile
|
@ -763,6 +763,7 @@ clean:
|
||||||
$(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
|
$(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
|
||||||
$(obj)arch/blackfin/cpu/init.{lds,elf}
|
$(obj)arch/blackfin/cpu/init.{lds,elf}
|
||||||
@rm -f $(obj)include/bmp_logo.h
|
@rm -f $(obj)include/bmp_logo.h
|
||||||
|
@rm -f $(obj)include/bmp_logo_data.h
|
||||||
@rm -f $(obj)lib/asm-offsets.s
|
@rm -f $(obj)lib/asm-offsets.s
|
||||||
@rm -f $(obj)include/generated/asm-offsets.h
|
@rm -f $(obj)include/generated/asm-offsets.h
|
||||||
@rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
|
@rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
#ifdef CONFIG_LCD_LOGO
|
#ifdef CONFIG_LCD_LOGO
|
||||||
# include <bmp_logo.h> /* Get logo data, width and height */
|
# include <bmp_logo.h> /* Get logo data, width and height */
|
||||||
|
# include <bmp_logo_data.h>
|
||||||
# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
|
# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
|
||||||
# error Default Color Map overlaps with Logo Color Map
|
# error Default Color Map overlaps with Logo Color Map
|
||||||
# endif
|
# endif
|
||||||
|
|
|
@ -286,6 +286,7 @@ void console_cursor(int state);
|
||||||
#ifdef CONFIG_VIDEO_LOGO
|
#ifdef CONFIG_VIDEO_LOGO
|
||||||
#ifdef CONFIG_VIDEO_BMP_LOGO
|
#ifdef CONFIG_VIDEO_BMP_LOGO
|
||||||
#include <bmp_logo.h>
|
#include <bmp_logo.h>
|
||||||
|
#include <bmp_logo_data.h>
|
||||||
#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
|
#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
|
||||||
#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
|
#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
|
||||||
#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
|
#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
|
||||||
|
|
1
include/.gitignore
vendored
1
include/.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
/autoconf.mk*
|
/autoconf.mk*
|
||||||
/asm
|
/asm
|
||||||
/bmp_logo.h
|
/bmp_logo.h
|
||||||
|
/bmp_logo_data.h
|
||||||
/config.h
|
/config.h
|
||||||
/config.mk
|
/config.mk
|
||||||
|
|
|
@ -111,8 +111,11 @@ LIBFDT_OBJ_FILES-y += fdt_wip.o
|
||||||
|
|
||||||
# Generated LCD/video logo
|
# Generated LCD/video logo
|
||||||
LOGO_H = $(OBJTREE)/include/bmp_logo.h
|
LOGO_H = $(OBJTREE)/include/bmp_logo.h
|
||||||
|
LOGO_DATA_H = $(OBJTREE)/include/bmp_logo_data.h
|
||||||
LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_H)
|
LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_H)
|
||||||
|
LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_DATA_H)
|
||||||
LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_H)
|
LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_H)
|
||||||
|
LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_DATA_H)
|
||||||
|
|
||||||
ifeq ($(LOGO_BMP),)
|
ifeq ($(LOGO_BMP),)
|
||||||
LOGO_BMP= logos/denx.bmp
|
LOGO_BMP= logos/denx.bmp
|
||||||
|
@ -236,7 +239,10 @@ else
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(LOGO_H): $(obj)bmp_logo $(LOGO_BMP)
|
$(LOGO_H): $(obj)bmp_logo $(LOGO_BMP)
|
||||||
$(obj)./bmp_logo $(LOGO_BMP) >$@
|
$(obj)./bmp_logo --gen-info $(LOGO_BMP) > $@
|
||||||
|
|
||||||
|
$(LOGO_DATA_H): $(obj)bmp_logo $(LOGO_BMP)
|
||||||
|
$(obj)./bmp_logo --gen-data $(LOGO_BMP) > $@
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
#include "compiler.h"
|
#include "compiler.h"
|
||||||
|
|
||||||
|
enum {
|
||||||
|
MODE_GEN_INFO,
|
||||||
|
MODE_GEN_DATA
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct bitmap_s { /* bitmap description */
|
typedef struct bitmap_s { /* bitmap description */
|
||||||
uint16_t width;
|
uint16_t width;
|
||||||
uint16_t height;
|
uint16_t height;
|
||||||
|
@ -9,6 +14,11 @@ typedef struct bitmap_s { /* bitmap description */
|
||||||
|
|
||||||
#define DEFAULT_CMAP_SIZE 16 /* size of default color map */
|
#define DEFAULT_CMAP_SIZE 16 /* size of default color map */
|
||||||
|
|
||||||
|
void usage(const char *prog)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "Usage: %s [--gen-info|--gen-data] file\n", prog);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Neutralize little endians.
|
* Neutralize little endians.
|
||||||
*/
|
*/
|
||||||
|
@ -39,21 +49,52 @@ int error (char * msg, FILE *fp)
|
||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gen_info(bitmap_t *b, uint16_t n_colors)
|
||||||
|
{
|
||||||
|
printf("/*\n"
|
||||||
|
" * Automatically generated by \"tools/bmp_logo\"\n"
|
||||||
|
" *\n"
|
||||||
|
" * DO NOT EDIT\n"
|
||||||
|
" *\n"
|
||||||
|
" */\n\n\n"
|
||||||
|
"#ifndef __BMP_LOGO_H__\n"
|
||||||
|
"#define __BMP_LOGO_H__\n\n"
|
||||||
|
"#define BMP_LOGO_WIDTH\t\t%d\n"
|
||||||
|
"#define BMP_LOGO_HEIGHT\t\t%d\n"
|
||||||
|
"#define BMP_LOGO_COLORS\t\t%d\n"
|
||||||
|
"#define BMP_LOGO_OFFSET\t\t%d\n\n"
|
||||||
|
"extern unsigned short bmp_logo_palette[];\n"
|
||||||
|
"extern unsigned char bmp_logo_bitmap[];\n\n"
|
||||||
|
"#endif /* __BMP_LOGO_H__ */\n",
|
||||||
|
b->width, b->height, n_colors,
|
||||||
|
DEFAULT_CMAP_SIZE);
|
||||||
|
}
|
||||||
|
|
||||||
int main (int argc, char *argv[])
|
int main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int i, x;
|
int mode, i, x;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
bitmap_t bmp;
|
bitmap_t bmp;
|
||||||
bitmap_t *b = &bmp;
|
bitmap_t *b = &bmp;
|
||||||
uint16_t data_offset, n_colors;
|
uint16_t data_offset, n_colors;
|
||||||
|
|
||||||
if (argc < 2) {
|
if (argc < 3) {
|
||||||
fprintf (stderr, "Usage: %s file\n", argv[0]);
|
usage(argv[0]);
|
||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((fp = fopen (argv[1], "rb")) == NULL) {
|
if (!strcmp(argv[1], "--gen-info"))
|
||||||
perror (argv[1]);
|
mode = MODE_GEN_INFO;
|
||||||
|
else if (!strcmp(argv[1], "--gen-data"))
|
||||||
|
mode = MODE_GEN_DATA;
|
||||||
|
else {
|
||||||
|
usage(argv[0]);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
fp = fopen(argv[2], "rb");
|
||||||
|
if (!fp) {
|
||||||
|
perror(argv[2]);
|
||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,21 +133,19 @@ int main (int argc, char *argv[])
|
||||||
n_colors = 256 - DEFAULT_CMAP_SIZE;
|
n_colors = 256 - DEFAULT_CMAP_SIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mode == MODE_GEN_INFO) {
|
||||||
|
gen_info(b, n_colors);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
printf("/*\n"
|
printf("/*\n"
|
||||||
" * Automatically generated by \"tools/bmp_logo\"\n"
|
" * Automatically generated by \"tools/bmp_logo\"\n"
|
||||||
" *\n"
|
" *\n"
|
||||||
" * DO NOT EDIT\n"
|
" * DO NOT EDIT\n"
|
||||||
" *\n"
|
" *\n"
|
||||||
" */\n\n\n"
|
" */\n\n\n"
|
||||||
"#ifndef __BMP_LOGO_H__\n"
|
"#ifndef __BMP_LOGO_DATA_H__\n"
|
||||||
"#define __BMP_LOGO_H__\n\n"
|
"#define __BMP_LOGO_DATA_H__\n\n");
|
||||||
"#define BMP_LOGO_WIDTH\t\t%d\n"
|
|
||||||
"#define BMP_LOGO_HEIGHT\t\t%d\n"
|
|
||||||
"#define BMP_LOGO_COLORS\t\t%d\n"
|
|
||||||
"#define BMP_LOGO_OFFSET\t\t%d\n"
|
|
||||||
"\n",
|
|
||||||
b->width, b->height, n_colors,
|
|
||||||
DEFAULT_CMAP_SIZE);
|
|
||||||
|
|
||||||
/* allocate memory */
|
/* allocate memory */
|
||||||
if ((b->data = (uint8_t *)malloc(b->width * b->height)) == NULL)
|
if ((b->data = (uint8_t *)malloc(b->width * b->height)) == NULL)
|
||||||
|
@ -144,7 +183,6 @@ int main (int argc, char *argv[])
|
||||||
+ DEFAULT_CMAP_SIZE;
|
+ DEFAULT_CMAP_SIZE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fclose (fp);
|
|
||||||
|
|
||||||
for (i=0; i<(b->height*b->width); ++i) {
|
for (i=0; i<(b->height*b->width); ++i) {
|
||||||
if ((i%8) == 0)
|
if ((i%8) == 0)
|
||||||
|
@ -156,8 +194,10 @@ int main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
printf ("\n"
|
printf ("\n"
|
||||||
"};\n\n"
|
"};\n\n"
|
||||||
"#endif /* __BMP_LOGO_H__ */\n"
|
"#endif /* __BMP_LOGO_DATA_H__ */\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
return (0);
|
out:
|
||||||
|
fclose(fp);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue