]> git.proxmox.com Git - qemu.git/blob - hw/input/pl050.c
hw: move target-independent files to subdirectories
[qemu.git] / hw / input / pl050.c
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 #include "hw/sysbus.h"
11 #include "hw/input/ps2.h"
12
13 typedef struct {
14 SysBusDevice busdev;
15 MemoryRegion iomem;
16 void *dev;
17 uint32_t cr;
18 uint32_t clk;
19 uint32_t last;
20 int pending;
21 qemu_irq irq;
22 int is_mouse;
23 } pl050_state;
24
25 static const VMStateDescription vmstate_pl050 = {
26 .name = "pl050",
27 .version_id = 2,
28 .minimum_version_id = 2,
29 .fields = (VMStateField[]) {
30 VMSTATE_UINT32(cr, pl050_state),
31 VMSTATE_UINT32(clk, pl050_state),
32 VMSTATE_UINT32(last, pl050_state),
33 VMSTATE_INT32(pending, pl050_state),
34 VMSTATE_END_OF_LIST()
35 }
36 };
37
38 #define PL050_TXEMPTY (1 << 6)
39 #define PL050_TXBUSY (1 << 5)
40 #define PL050_RXFULL (1 << 4)
41 #define PL050_RXBUSY (1 << 3)
42 #define PL050_RXPARITY (1 << 2)
43 #define PL050_KMIC (1 << 1)
44 #define PL050_KMID (1 << 0)
45
46 static const unsigned char pl050_id[] =
47 { 0x50, 0x10, 0x04, 0x00, 0x0d, 0xf0, 0x05, 0xb1 };
48
49 static void pl050_update(void *opaque, int level)
50 {
51 pl050_state *s = (pl050_state *)opaque;
52 int raise;
53
54 s->pending = level;
55 raise = (s->pending && (s->cr & 0x10) != 0)
56 || (s->cr & 0x08) != 0;
57 qemu_set_irq(s->irq, raise);
58 }
59
60 static uint64_t pl050_read(void *opaque, hwaddr offset,
61 unsigned size)
62 {
63 pl050_state *s = (pl050_state *)opaque;
64 if (offset >= 0xfe0 && offset < 0x1000)
65 return pl050_id[(offset - 0xfe0) >> 2];
66
67 switch (offset >> 2) {
68 case 0: /* KMICR */
69 return s->cr;
70 case 1: /* KMISTAT */
71 {
72 uint8_t val;
73 uint32_t stat;
74
75 val = s->last;
76 val = val ^ (val >> 4);
77 val = val ^ (val >> 2);
78 val = (val ^ (val >> 1)) & 1;
79
80 stat = PL050_TXEMPTY;
81 if (val)
82 stat |= PL050_RXPARITY;
83 if (s->pending)
84 stat |= PL050_RXFULL;
85
86 return stat;
87 }
88 case 2: /* KMIDATA */
89 if (s->pending)
90 s->last = ps2_read_data(s->dev);
91 return s->last;
92 case 3: /* KMICLKDIV */
93 return s->clk;
94 case 4: /* KMIIR */
95 return s->pending | 2;
96 default:
97 qemu_log_mask(LOG_GUEST_ERROR,
98 "pl050_read: Bad offset %x\n", (int)offset);
99 return 0;
100 }
101 }
102
103 static void pl050_write(void *opaque, hwaddr offset,
104 uint64_t value, unsigned size)
105 {
106 pl050_state *s = (pl050_state *)opaque;
107 switch (offset >> 2) {
108 case 0: /* KMICR */
109 s->cr = value;
110 pl050_update(s, s->pending);
111 /* ??? Need to implement the enable/disable bit. */
112 break;
113 case 2: /* KMIDATA */
114 /* ??? This should toggle the TX interrupt line. */
115 /* ??? This means kbd/mouse can block each other. */
116 if (s->is_mouse) {
117 ps2_write_mouse(s->dev, value);
118 } else {
119 ps2_write_keyboard(s->dev, value);
120 }
121 break;
122 case 3: /* KMICLKDIV */
123 s->clk = value;
124 return;
125 default:
126 qemu_log_mask(LOG_GUEST_ERROR,
127 "pl050_write: Bad offset %x\n", (int)offset);
128 }
129 }
130 static const MemoryRegionOps pl050_ops = {
131 .read = pl050_read,
132 .write = pl050_write,
133 .endianness = DEVICE_NATIVE_ENDIAN,
134 };
135
136 static int pl050_init(SysBusDevice *dev, int is_mouse)
137 {
138 pl050_state *s = FROM_SYSBUS(pl050_state, dev);
139
140 memory_region_init_io(&s->iomem, &pl050_ops, s, "pl050", 0x1000);
141 sysbus_init_mmio(dev, &s->iomem);
142 sysbus_init_irq(dev, &s->irq);
143 s->is_mouse = is_mouse;
144 if (s->is_mouse)
145 s->dev = ps2_mouse_init(pl050_update, s);
146 else
147 s->dev = ps2_kbd_init(pl050_update, s);
148 return 0;
149 }
150
151 static int pl050_init_keyboard(SysBusDevice *dev)
152 {
153 return pl050_init(dev, 0);
154 }
155
156 static int pl050_init_mouse(SysBusDevice *dev)
157 {
158 return pl050_init(dev, 1);
159 }
160
161 static void pl050_kbd_class_init(ObjectClass *klass, void *data)
162 {
163 DeviceClass *dc = DEVICE_CLASS(klass);
164 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
165
166 k->init = pl050_init_keyboard;
167 dc->vmsd = &vmstate_pl050;
168 }
169
170 static const TypeInfo pl050_kbd_info = {
171 .name = "pl050_keyboard",
172 .parent = TYPE_SYS_BUS_DEVICE,
173 .instance_size = sizeof(pl050_state),
174 .class_init = pl050_kbd_class_init,
175 };
176
177 static void pl050_mouse_class_init(ObjectClass *klass, void *data)
178 {
179 DeviceClass *dc = DEVICE_CLASS(klass);
180 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
181
182 k->init = pl050_init_mouse;
183 dc->vmsd = &vmstate_pl050;
184 }
185
186 static const TypeInfo pl050_mouse_info = {
187 .name = "pl050_mouse",
188 .parent = TYPE_SYS_BUS_DEVICE,
189 .instance_size = sizeof(pl050_state),
190 .class_init = pl050_mouse_class_init,
191 };
192
193 static void pl050_register_types(void)
194 {
195 type_register_static(&pl050_kbd_info);
196 type_register_static(&pl050_mouse_info);
197 }
198
199 type_init(pl050_register_types)