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#include "exec/memory.h" 16#include "hw/irq.h" 17 18typedef struct TC6393xbState TC6393xbState; 19 20TC6393xbState *tc6393xb_init(struct MemoryRegion *sysmem, 21 uint32_t base, qemu_irq irq); 22qemu_irq tc6393xb_l3v_get(TC6393xbState *s); 23 24#endif 25