xref: /qemu/include/hw/display/blizzard.h (revision abff1abf)
1 /*
2  * Epson S1D13744/S1D13745 (Blizzard/Hailstorm/Tornado) LCD/TV controller.
3  *
4  * Copyright (C) 2008 Nokia Corporation
5  * Written by Andrzej Zaborowski
6  *
7  * This work is licensed under the terms of the GNU GPL, version 2 or later.
8  * See the COPYING file in the top-level directory.
9  */
10 
11 #ifndef HW_DISPLAY_BLIZZARD_H
12 #define HW_DISPLAY_BLIZZARD_H
13 
14 
15 void *s1d13745_init(qemu_irq gpio_int);
16 void s1d13745_write(void *opaque, int dc, uint16_t value);
17 void s1d13745_write_block(void *opaque, int dc,
18                           void *buf, size_t len, int pitch);
19 uint16_t s1d13745_read(void *opaque, int dc);
20 
21 #endif
22