forked from Xilinx/u-boot-xlnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathat91.c
29 lines (25 loc) · 798 Bytes
/
at91.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2016 Microchip
* Wenyou.Yang <[email protected]>
*/
#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;
}