1 /* 2 * Toshiba TC6393XB I/O Controller. 3 * Found in Sharp Zaurus SL-6000 (tosa) or some 4 * Toshiba e-Series PDAs. 5 * 6 * Copyright (c) 2007 Hervé Poussineau 7 * 8 * This work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 */ 11 12 #ifndef HW_DISPLAY_TC6393XB_H 13 #define HW_DISPLAY_TC6393XB_H 14 15 typedef struct TC6393xbState TC6393xbState; 16 17 TC6393xbState *tc6393xb_init(struct MemoryRegion *sysmem, 18 uint32_t base, qemu_irq irq); 19 qemu_irq tc6393xb_l3v_get(TC6393xbState *s); 20 21 #endif 22