tests: Fixes test-io-channel-file by mask only owner file state mask bits
[qemu/ar7.git] / include / hw / display / blizzard.h
blob5b3301883545a5180e0b76f89d059064318180c8
1 /*
2 * Epson S1D13744/S1D13745 (Blizzard/Hailstorm/Tornado) LCD/TV controller.
4 * Copyright (C) 2008 Nokia Corporation
5 * Written by Andrzej Zaborowski
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 */
11 #ifndef HW_DISPLAY_BLIZZARD_H
12 #define HW_DISPLAY_BLIZZARD_H
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);
21 #endif