]> git.proxmox.com Git - qemu.git/blame - hw/pl050.c
tcg-sparc: Use TCG_TARGET_REG_BITS in conditional compilation.
[qemu.git] / hw / pl050.c
CommitLineData
5fafdf24 1/*
69db0ac7 2 * Arm PrimeCell PL050 Keyboard / Mouse Interface
cdbdb648 3 *
9e61ec31 4 * Copyright (c) 2006-2007 CodeSourcery.
cdbdb648
PB
5 * Written by Paul Brook
6 *
7 * This code is licenced under the GPL.
8 */
9
86394e96 10#include "sysbus.h"
87ecb68b 11#include "ps2.h"
cdbdb648
PB
12
13typedef struct {
86394e96 14 SysBusDevice busdev;
cdbdb648 15 void *dev;
cdbdb648
PB
16 uint32_t cr;
17 uint32_t clk;
18 uint32_t last;
cdbdb648 19 int pending;
d537cf6c 20 qemu_irq irq;
cdbdb648
PB
21 int is_mouse;
22} pl050_state;
23
9e61ec31
PB
24#define PL050_TXEMPTY (1 << 6)
25#define PL050_TXBUSY (1 << 5)
26#define PL050_RXFULL (1 << 4)
27#define PL050_RXBUSY (1 << 3)
28#define PL050_RXPARITY (1 << 2)
29#define PL050_KMIC (1 << 1)
30#define PL050_KMID (1 << 0)
31
cdbdb648
PB
32static const unsigned char pl050_id[] =
33{ 0x50, 0x10, 0x04, 0x00, 0x0d, 0xf0, 0x05, 0xb1 };
34
35static void pl050_update(void *opaque, int level)
36{
37 pl050_state *s = (pl050_state *)opaque;
38 int raise;
39
40 s->pending = level;
41 raise = (s->pending && (s->cr & 0x10) != 0)
42 || (s->cr & 0x08) != 0;
d537cf6c 43 qemu_set_irq(s->irq, raise);
cdbdb648
PB
44}
45
c227f099 46static uint32_t pl050_read(void *opaque, target_phys_addr_t offset)
cdbdb648
PB
47{
48 pl050_state *s = (pl050_state *)opaque;
cdbdb648
PB
49 if (offset >= 0xfe0 && offset < 0x1000)
50 return pl050_id[(offset - 0xfe0) >> 2];
51
52 switch (offset >> 2) {
53 case 0: /* KMICR */
54 return s->cr;
55 case 1: /* KMISTAT */
9e61ec31
PB
56 {
57 uint8_t val;
58 uint32_t stat;
59
60 val = s->last;
61 val = val ^ (val >> 4);
62 val = val ^ (val >> 2);
63 val = (val ^ (val >> 1)) & 1;
64
65 stat = PL050_TXEMPTY;
66 if (val)
67 stat |= PL050_RXPARITY;
68 if (s->pending)
69 stat |= PL050_RXFULL;
70
71 return stat;
cdbdb648
PB
72 }
73 case 2: /* KMIDATA */
74 if (s->pending)
75 s->last = ps2_read_data(s->dev);
76 return s->last;
77 case 3: /* KMICLKDIV */
78 return s->clk;
79 case 4: /* KMIIR */
80 return s->pending | 2;
81 default:
2ac71179 82 hw_error("pl050_read: Bad offset %x\n", (int)offset);
cdbdb648
PB
83 return 0;
84 }
85}
86
c227f099 87static void pl050_write(void *opaque, target_phys_addr_t offset,
cdbdb648
PB
88 uint32_t value)
89{
90 pl050_state *s = (pl050_state *)opaque;
cdbdb648
PB
91 switch (offset >> 2) {
92 case 0: /* KMICR */
93 s->cr = value;
94 pl050_update(s, s->pending);
95 /* ??? Need to implement the enable/disable bit. */
96 break;
97 case 2: /* KMIDATA */
98 /* ??? This should toggle the TX interrupt line. */
99 /* ??? This means kbd/mouse can block each other. */
100 if (s->is_mouse) {
101 ps2_write_mouse(s->dev, value);
102 } else {
103 ps2_write_keyboard(s->dev, value);
104 }
105 break;
106 case 3: /* KMICLKDIV */
107 s->clk = value;
108 return;
109 default:
2ac71179 110 hw_error("pl050_write: Bad offset %x\n", (int)offset);
cdbdb648
PB
111 }
112}
d60efc6b 113static CPUReadMemoryFunc * const pl050_readfn[] = {
cdbdb648
PB
114 pl050_read,
115 pl050_read,
116 pl050_read
117};
118
d60efc6b 119static CPUWriteMemoryFunc * const pl050_writefn[] = {
cdbdb648
PB
120 pl050_write,
121 pl050_write,
122 pl050_write
123};
124
81a322d4 125static int pl050_init(SysBusDevice *dev, int is_mouse)
cdbdb648 126{
86394e96 127 pl050_state *s = FROM_SYSBUS(pl050_state, dev);
cdbdb648 128 int iomemtype;
cdbdb648 129
1eed09cb 130 iomemtype = cpu_register_io_memory(pl050_readfn,
cdbdb648 131 pl050_writefn, s);
86394e96
PB
132 sysbus_init_mmio(dev, 0x1000, iomemtype);
133 sysbus_init_irq(dev, &s->irq);
cdbdb648 134 s->is_mouse = is_mouse;
86394e96 135 if (s->is_mouse)
cdbdb648
PB
136 s->dev = ps2_mouse_init(pl050_update, s);
137 else
138 s->dev = ps2_kbd_init(pl050_update, s);
139 /* ??? Save/restore. */
81a322d4 140 return 0;
cdbdb648 141}
86394e96 142
81a322d4 143static int pl050_init_keyboard(SysBusDevice *dev)
86394e96 144{
81a322d4 145 return pl050_init(dev, 0);
86394e96
PB
146}
147
81a322d4 148static int pl050_init_mouse(SysBusDevice *dev)
86394e96 149{
81a322d4 150 return pl050_init(dev, 1);
86394e96
PB
151}
152
153static void pl050_register_devices(void)
154{
155 sysbus_register_dev("pl050_keyboard", sizeof(pl050_state),
156 pl050_init_keyboard);
157 sysbus_register_dev("pl050_mouse", sizeof(pl050_state),
158 pl050_init_mouse);
159}
160
161device_init(pl050_register_devices)