mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 07:04:28 +00:00
lib: at91: Add logo files used via API of DM_VIDEO
In order to display the company's logo via the API of DM_VIDEO, and add the logo files of both Atmel and Microchip. Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
56246d1e87
commit
d330e04d9d
7 changed files with 2440 additions and 0 deletions
|
@ -43,6 +43,15 @@ typedef struct vidinfo {
|
|||
u_long vl_lower_margin; /* Time from picture to sync */
|
||||
|
||||
u_long mmio; /* Memory mapped registers */
|
||||
|
||||
u_int logo_width;
|
||||
u_int logo_height;
|
||||
int logo_x_offset;
|
||||
int logo_y_offset;
|
||||
u_long logo_addr;
|
||||
} vidinfo_t;
|
||||
|
||||
void atmel_logo_info(vidinfo_t *info);
|
||||
void microchip_logo_info(vidinfo_t *info);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -16,6 +16,7 @@ obj-$(CONFIG_TIZEN) += tizen/
|
|||
obj-$(CONFIG_FIT) += libfdt/
|
||||
obj-$(CONFIG_OF_LIVE) += of_live.o
|
||||
obj-$(CONFIG_CMD_DHRYSTONE) += dhry/
|
||||
obj-$(CONFIG_ARCH_AT91) += at91/
|
||||
|
||||
obj-$(CONFIG_AES) += aes.o
|
||||
obj-y += charset.o
|
||||
|
|
8
lib/at91/Makefile
Normal file
8
lib/at91/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# Copyright (C) 2017 Microchip
|
||||
# Wenyou.Yang <wenyou.yang@microchip.com>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-$(CONFIG_ARCH_AT91) += at91.o
|
30
lib/at91/at91.c
Normal file
30
lib/at91/at91.c
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (C) 2016 Microchip
|
||||
* Wenyou.Yang <wenyou.yang@microchip.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <atmel_lcd.h>
|
||||
|
||||
#include "atmel_logo_8bpp.h"
|
||||
#include "microchip_logo_8bpp.h"
|
||||
|
||||
void atmel_logo_info(vidinfo_t *info)
|
||||
{
|
||||
info->logo_width = ATMEL_LOGO_8BPP_WIDTH;
|
||||
info->logo_height = ATMEL_LOGO_8BPP_HEIGHT;
|
||||
info->logo_x_offset = ATMEL_LOGO_8BPP_X_OFFSET;
|
||||
info->logo_y_offset = ATMEL_LOGO_8BPP_X_OFFSET;
|
||||
info->logo_addr = (u_long)atmel_logo_8bpp;
|
||||
}
|
||||
|
||||
void microchip_logo_info(vidinfo_t *info)
|
||||
{
|
||||
info->logo_width = MICROCHIP_LOGO_8BPP_WIDTH;
|
||||
info->logo_height = MICROCHIP_LOGO_8BPP_HEIGHT;
|
||||
info->logo_x_offset = MICROCHIP_LOGO_8BPP_X_OFFSET;
|
||||
info->logo_y_offset = MICROCHIP_LOGO_8BPP_X_OFFSET;
|
||||
info->logo_addr = (u_long)microchip_logo_8bpp;
|
||||
}
|
1310
lib/at91/atmel_logo_8bpp.h
Normal file
1310
lib/at91/atmel_logo_8bpp.h
Normal file
File diff suppressed because it is too large
Load diff
1082
lib/at91/microchip_logo_8bpp.h
Normal file
1082
lib/at91/microchip_logo_8bpp.h
Normal file
File diff suppressed because it is too large
Load diff
BIN
tools/logos/microchip.bmp
Normal file
BIN
tools/logos/microchip.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Loading…
Reference in a new issue