summaryrefslogtreecommitdiff
path: root/include/atmel_lcd.h
diff options
context:
space:
mode:
authorWenyou Yang <wenyou.yang@atmel.com>2017-09-13 14:58:46 +0800
committerTom Rini <trini@konsulko.com>2017-09-14 16:02:43 -0400
commitd330e04d9d427a26381b59f40875af17f4c288a2 (patch)
tree4d02a32a6508bab84a1c7d4dbdbe4697e5804406 /include/atmel_lcd.h
parent56246d1e87050bf22198e95c4526331a94c8a520 (diff)
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>
Diffstat (limited to 'include/atmel_lcd.h')
-rw-r--r--include/atmel_lcd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/atmel_lcd.h b/include/atmel_lcd.h
index 8a2f46f6c7..ee7ba27798 100644
--- a/include/atmel_lcd.h
+++ b/include/atmel_lcd.h
@@ -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