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 #include "hw/irq.h" 15 16 void *s1d13745_init(qemu_irq gpio_int); 17 void s1d13745_write(void *opaque, int dc, uint16_t value); 18 void s1d13745_write_block(void *opaque, int dc, 19 void *buf, size_t len, int pitch); 20 uint16_t s1d13745_read(void *opaque, int dc); 21 22 #endif 23