summaryrefslogtreecommitdiff
path: root/sys/arch/epoc32/dev/epockbd.c
blob: 7365fd37decb22be66f4728a6a57ea94a793234b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*	$NetBSD: epockbd.c,v 1.5 2021/08/07 16:18:48 thorpej Exp $	*/
/*
 * Copyright (c) 2013 KIYOHARA Takashi
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: epockbd.c,v 1.5 2021/08/07 16:18:48 thorpej Exp $");

#include <sys/param.h>
#include <sys/bus.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/errno.h>
#include <sys/kernel.h>

#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wskbdvar.h>
#include <dev/wscons/wsksymdef.h>
#include <dev/wscons/wsksymvar.h>

#include <epoc32/dev/epockbdvar.h>
#include <epoc32/dev/epockbdmap.h>

#define EPOCKBD_COLUMN0		8

#define EPOCKBD_SCAN_READ(sc) \
	bus_space_read_1((sc)->sc_scant, (sc)->sc_scanh, 0)
#define EPOCKBD_SCAN_WRITE(sc, cmd) \
	bus_space_write_1((sc)->sc_scant, (sc)->sc_scanh, 0, (cmd))
#define EPOCKBD_DATA_READ(sc) \
	bus_space_read_1((sc)->sc_datat, (sc)->sc_datah, 0)

#define EPOC2WS_KBD_DATA(r, c)	(((c) << 3) + (31 - __builtin_clz(r)) + 1)

static int epockbd_enable(void *, int);
static void epockbd_set_leds(void *, int);
static int epockbd_ioctl(void *, u_long, void *, int, struct lwp *);

static void epockbd_poll(void *);

static void epockbd_cngetc(void *, u_int *, int *);
static void epockbd_cnpollc(void *, int);

static struct wskbd_consops epockbd_consops = {
	epockbd_cngetc,
	epockbd_cnpollc,
	NULL
};

static struct wskbd_accessops epockbd_accessops = {
	epockbd_enable,
	epockbd_set_leds,
	epockbd_ioctl,
};

static struct wskbd_mapdata epockbd_mapdata = {
	epockbd_keydesctab,
	KB_UK,
};

static int is_console;

void
epockbd_attach(struct epockbd_softc *sc)
{
	struct wskbddev_attach_args aa;

	aprint_normal("\n");
	aprint_naive("\n");

	if (is_console)
		wskbd_cnattach(&epockbd_consops, sc, &epockbd_mapdata);

	callout_init(&sc->sc_c, 0);
	callout_reset(&sc->sc_c, hz, epockbd_poll, sc);
	sc->sc_flags |= EPOCKBD_FLAG_ENABLE;

	aa.console = is_console;
	aa.keymap = &epockbd_mapdata;
	aa.accessops = &epockbd_accessops;
	aa.accesscookie = sc;
	sc->sc_wskbddev = config_found(sc->sc_dev, &aa, wskbddevprint,
	    CFARGS_NONE);
}

/*
 * wskbd(9) functions
 */

static int
epockbd_enable(void *v, int on)
{
	struct epockbd_softc *sc = v;

	if (on) {
		sc->sc_flags |= EPOCKBD_FLAG_ENABLE;
		callout_schedule(&sc->sc_c, hz / 20);
	} else {
		sc->sc_flags &= ~EPOCKBD_FLAG_ENABLE;
		callout_stop(&sc->sc_c);
	}
	return 0;
}

static void
epockbd_set_leds(void *v, int on)
{
	/* Nothing */
}

static int
epockbd_ioctl(void *v, u_long cmd, void *data, int flag, struct lwp *l)
{
#ifdef WSDISPLAY_COMPAT_RAWKBD
	struct epockbd_softc *sc = v;
#endif

	switch (cmd) {
	case WSKBDIO_GTYPE:
		*(int *)data = WSKBD_TYPE_EPOC;
		return 0;

	case WSKBDIO_SETLEDS:
		return 0;

	case WSKBDIO_GETLEDS:
		*(int *)data = 0;
		return 0;

#ifdef WSDISPLAY_COMPAT_RAWKBD
	case WSKBDIO_SETMODE:
		*(int *)data = WSKBD_RAW;
		sc->sc_flags |= EPOCKBD_FLAG_RAW;

		/* Not yet...: return 0; */
#endif
	}
	return EPASSTHROUGH;
}

static void
epockbd_poll(void *v)
{
	struct epockbd_softc *sc = v;
	u_int type;
	int data;

	epockbd_cngetc(v, &type, &data);
	if (data != 0)
		wskbd_input(sc->sc_wskbddev, type, data);

	callout_schedule(&sc->sc_c, hz / 20);
}

void
epockbd_cnattach(void)
{

	is_console = 1;
}

static void
epockbd_cngetc(void *conscookie, u_int *type, int *data)
{
	struct epockbd_softc *sc = conscookie;
	uint8_t cmd, key, mask;
	int column, row;
#if 1
	/*
	 * For some machines which return a strange response, it calculates
	 * using this variable.
	 */
	int pc = 0, pr = 0;
#endif

	*type = 0;
	*data = 0;
	mask = (1 << sc->sc_kbd_nrow) - 1;
	for (column = 0; column < sc->sc_kbd_ncolumn; column++) {
		delay(16);
		cmd = EPOCKBD_SCAN_READ(sc);
		cmd &= ~0xf;
		cmd |= (EPOCKBD_COLUMN0 + column);
		EPOCKBD_SCAN_WRITE(sc, cmd);
		delay(16);
		key = EPOCKBD_DATA_READ(sc) & mask;
		if (sc->sc_state[column] != key) {
			row = sc->sc_state[column] ^ key;
			sc->sc_state[column] = key;
#if 1
			if (*data == 0 ||
			    (row == pr && pc == 0 &&
			     column == sc->sc_kbd_ncolumn - 1))
#else
			if (*data == 0)
#endif
			{
				if (key & row)
					*type = WSCONS_EVENT_KEY_DOWN;
				else
					*type = WSCONS_EVENT_KEY_UP;
				*data = EPOC2WS_KBD_DATA(row, column);
#if 1
				pc = column;
				pr = row;
#endif
			}
		}
	}
}

/* ARGSUSED */
static void
epockbd_cnpollc(void *conckookie, int on)
{
	/* Nothing */
}