pl050.c (423bcb234b358a46c868f6baa0483c84870825c5) | pl050.c (1d9d4b072db7e1de406122a3012eced157939299) |
---|---|
1/* 2 * Arm PrimeCell PL050 Keyboard / Mouse Interface 3 * 4 * Copyright (c) 2006-2007 CodeSourcery. 5 * Written by Paul Brook 6 * 7 * This code is licensed under the GPL. 8 */ 9 | 1/* 2 * Arm PrimeCell PL050 Keyboard / Mouse Interface 3 * 4 * Copyright (c) 2006-2007 CodeSourcery. 5 * Written by Paul Brook 6 * 7 * This code is licensed under the GPL. 8 */ 9 |
10/* 11 * QEMU interface: 12 * + sysbus MMIO region 0: MemoryRegion defining the PL050 registers 13 * + Named GPIO input "ps2-input-irq": set to 1 if the downstream PS2 device 14 * has asserted its irq 15 * + sysbus IRQ 0: PL050 output irq 16 */ 17 |
|
10#include "qemu/osdep.h" 11#include "hw/sysbus.h" 12#include "migration/vmstate.h" 13#include "hw/input/ps2.h" 14#include "hw/irq.h" 15#include "qemu/log.h" 16#include "qemu/module.h" 17#include "qom/object.h" --- 213 unchanged lines hidden --- | 18#include "qemu/osdep.h" 19#include "hw/sysbus.h" 20#include "migration/vmstate.h" 21#include "hw/input/ps2.h" 22#include "hw/irq.h" 23#include "qemu/log.h" 24#include "qemu/module.h" 25#include "qom/object.h" --- 213 unchanged lines hidden --- |