btnmgr.c revision 1.2 1 1.2 uch /* $NetBSD: btnmgr.c,v 1.2 2001/06/04 18:59:31 uch Exp $ */
2 1.1 uch
3 1.1 uch /*-
4 1.1 uch * Copyright (c) 1999
5 1.1 uch * Shin Takemura and PocketBSD Project. All rights reserved.
6 1.1 uch *
7 1.1 uch * Redistribution and use in source and binary forms, with or without
8 1.1 uch * modification, are permitted provided that the following conditions
9 1.1 uch * are met:
10 1.1 uch * 1. Redistributions of source code must retain the above copyright
11 1.1 uch * notice, this list of conditions and the following disclaimer.
12 1.1 uch * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 uch * notice, this list of conditions and the following disclaimer in the
14 1.1 uch * documentation and/or other materials provided with the distribution.
15 1.1 uch * 3. All advertising materials mentioning features or use of this software
16 1.1 uch * must display the following acknowledgement:
17 1.1 uch * This product includes software developed by the PocketBSD project
18 1.1 uch * and its contributors.
19 1.1 uch * 4. Neither the name of the project nor the names of its contributors
20 1.1 uch * may be used to endorse or promote products derived from this software
21 1.1 uch * without specific prior written permission.
22 1.1 uch *
23 1.1 uch * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 uch * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 uch * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 uch * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 uch * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 uch * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 uch * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 uch * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 uch * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 uch * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 uch * SUCH DAMAGE.
34 1.1 uch *
35 1.1 uch */
36 1.1 uch #define BTNMGRDEBUG
37 1.1 uch
38 1.1 uch #include <sys/param.h>
39 1.1 uch #include <sys/systm.h>
40 1.1 uch #include <sys/ioctl.h>
41 1.1 uch #include <sys/conf.h>
42 1.1 uch #include <sys/device.h>
43 1.1 uch #include <sys/malloc.h>
44 1.1 uch #include <sys/kernel.h>
45 1.1 uch
46 1.1 uch #include "opt_wsdisplay_compat.h"
47 1.1 uch #include <dev/wscons/wsconsio.h>
48 1.1 uch #include <dev/wscons/wskbdvar.h>
49 1.1 uch #include <dev/wscons/wsksymdef.h>
50 1.1 uch #ifdef WSDISPLAY_COMPAT_RAWKBD
51 1.1 uch #include <dev/hpc/pckbd_encode.h>
52 1.1 uch #endif
53 1.1 uch
54 1.1 uch #include <machine/bus.h>
55 1.1 uch #include <machine/autoconf.h>
56 1.1 uch #include <machine/config_hook.h>
57 1.1 uch
58 1.1 uch #ifdef BTNMGRDEBUG
59 1.1 uch #ifndef BTNMGRDEBUG_CONF
60 1.1 uch #define BTNMGRDEBUG_CONF 0
61 1.1 uch #endif
62 1.1 uch int btnmgr_debug = BTNMGRDEBUG_CONF;
63 1.1 uch #define DPRINTF(arg) if (btnmgr_debug) printf arg;
64 1.1 uch #define DPRINTFN(n, arg) if (btnmgr_debug > (n)) printf arg;
65 1.1 uch #else
66 1.1 uch #define DPRINTF(arg)
67 1.1 uch #define DPRINTFN(n, arg)
68 1.1 uch #endif
69 1.1 uch
70 1.1 uch cdev_decl(btnmgr);
71 1.1 uch
72 1.1 uch struct btnmgr_softc {
73 1.1 uch struct device sc_dev;
74 1.1 uch config_hook_tag sc_hook_tag;
75 1.1 uch int sc_enabled;
76 1.1 uch struct device *sc_wskbddev;
77 1.1 uch #ifdef WSDISPLAY_COMPAT_RAWKBD
78 1.1 uch int sc_rawkbd;
79 1.1 uch #endif
80 1.1 uch };
81 1.1 uch
82 1.2 uch int btnmgrmatch(struct device *, struct cfdata *, void *);
83 1.2 uch void btnmgrattach(struct device *, struct device *, void *);
84 1.2 uch char *btnmgr_name(long);
85 1.2 uch static int btnmgr_hook(void *, int, long, void *);
86 1.1 uch
87 1.1 uch /*
88 1.1 uch * global/static data
89 1.1 uch */
90 1.1 uch struct cfattach btnmgr_ca = {
91 1.1 uch sizeof(struct btnmgr_softc), btnmgrmatch, btnmgrattach
92 1.1 uch };
93 1.1 uch
94 1.1 uch /* wskbd accessopts */
95 1.2 uch int btnmgr_wskbd_enable(void *, int);
96 1.2 uch void btnmgr_wskbd_set_leds(void *, int);
97 1.2 uch int btnmgr_wskbd_ioctl(void *, u_long, caddr_t, int, struct proc *);
98 1.1 uch
99 1.1 uch const struct wskbd_accessops btnmgr_wskbd_accessops = {
100 1.1 uch btnmgr_wskbd_enable,
101 1.1 uch btnmgr_wskbd_set_leds,
102 1.1 uch btnmgr_wskbd_ioctl,
103 1.1 uch };
104 1.1 uch
105 1.1 uch /* button config: index by buttun event id */
106 1.1 uch static const struct {
107 1.1 uch int kevent;
108 1.1 uch int keycode;
109 1.1 uch char *name;
110 1.1 uch } button_config[] = {
111 1.1 uch /* id kevent keycode name */
112 1.1 uch [CONFIG_HOOK_BUTTONEVENT_POWER] = { 0, 0, "Power" },
113 1.1 uch [CONFIG_HOOK_BUTTONEVENT_OK] = { 1, 28, "OK" },
114 1.1 uch [CONFIG_HOOK_BUTTONEVENT_CANCEL] = { 1, 1, "Cancel" },
115 1.1 uch [CONFIG_HOOK_BUTTONEVENT_UP] = { 1, 72, "Up" },
116 1.1 uch [CONFIG_HOOK_BUTTONEVENT_DOWN] = { 1, 80, "Down" },
117 1.1 uch [CONFIG_HOOK_BUTTONEVENT_REC] = { 0, 0, "Rec" },
118 1.1 uch [CONFIG_HOOK_BUTTONEVENT_COVER] = { 0, 0, "Cover" },
119 1.1 uch [CONFIG_HOOK_BUTTONEVENT_LIGHT] = { 1, 57, "Light" },
120 1.1 uch [CONFIG_HOOK_BUTTONEVENT_CONTRAST] = { 0, 0, "Contrast" },
121 1.1 uch [CONFIG_HOOK_BUTTONEVENT_APP0] = { 1, 67, "Application 0" },
122 1.1 uch [CONFIG_HOOK_BUTTONEVENT_APP1] = { 1, 68, "Application 1" },
123 1.1 uch [CONFIG_HOOK_BUTTONEVENT_APP2] = { 1, 87, "Application 2" },
124 1.1 uch [CONFIG_HOOK_BUTTONEVENT_APP3] = { 1, 88, "Application 3" },
125 1.1 uch };
126 1.1 uch static const int n_button_config =
127 1.1 uch sizeof(button_config) / sizeof(*button_config);
128 1.1 uch
129 1.1 uch #define KC(n) KS_KEYCODE(n)
130 1.1 uch static const keysym_t btnmgr_keydesc_default[] = {
131 1.1 uch /* pos normal shifted */
132 1.2 uch KC(1), KS_Escape,
133 1.2 uch KC(28), KS_Return,
134 1.2 uch KC(57), KS_Cmd, KS_Cmd_BacklightToggle,
135 1.2 uch KC(67), KS_f9,
136 1.2 uch KC(68), KS_f10,
137 1.2 uch KC(72), KS_KP_Up,
138 1.2 uch KC(80), KS_KP_Down,
139 1.2 uch KC(87), KS_f11,
140 1.2 uch KC(88), KS_f12,
141 1.1 uch };
142 1.1 uch #undef KC
143 1.1 uch #define KBD_MAP(name, base, map) \
144 1.1 uch { name, base, sizeof(map)/sizeof(keysym_t), map }
145 1.1 uch const struct wscons_keydesc btnmgr_keydesctab[] = {
146 1.1 uch KBD_MAP(KB_US, 0, btnmgr_keydesc_default),
147 1.1 uch {0, 0, 0, 0}
148 1.1 uch };
149 1.1 uch #undef KBD_MAP
150 1.1 uch
151 1.1 uch struct wskbd_mapdata btnmgr_keymapdata = {
152 1.1 uch btnmgr_keydesctab,
153 1.1 uch KB_US, /* XXX, This is bad idea... */
154 1.1 uch };
155 1.1 uch
156 1.1 uch /*
157 1.1 uch * function bodies
158 1.1 uch */
159 1.1 uch int
160 1.2 uch btnmgrmatch(struct device *parent, struct cfdata *match, void *aux)
161 1.1 uch {
162 1.1 uch struct mainbus_attach_args *ma = aux;
163 1.1 uch
164 1.1 uch if (strcmp(ma->ma_name, match->cf_driver->cd_name))
165 1.1 uch return 0;
166 1.1 uch
167 1.1 uch return (1);
168 1.1 uch }
169 1.1 uch
170 1.1 uch void
171 1.2 uch btnmgrattach(struct device *parent, struct device *self, void *aux)
172 1.1 uch {
173 1.1 uch int id;
174 1.1 uch struct btnmgr_softc *sc = (struct btnmgr_softc *)self;
175 1.1 uch struct wskbddev_attach_args wa;
176 1.1 uch
177 1.1 uch printf("\n");
178 1.1 uch
179 1.1 uch /*
180 1.1 uch * install button event listener
181 1.1 uch */
182 1.1 uch for (id = 0; id <= CONFIG_HOOK_MAX_ID; id++)
183 1.1 uch if (button_config[id].name != NULL)
184 1.1 uch sc->sc_hook_tag = config_hook(CONFIG_HOOK_BUTTONEVENT,
185 1.2 uch id, CONFIG_HOOK_SHARE,
186 1.2 uch btnmgr_hook, sc);
187 1.1 uch
188 1.1 uch /*
189 1.1 uch * attach wskbd
190 1.1 uch */
191 1.1 uch wa.console = 0;
192 1.1 uch wa.keymap = &btnmgr_keymapdata;
193 1.1 uch wa.accessops = &btnmgr_wskbd_accessops;
194 1.1 uch wa.accesscookie = sc;
195 1.1 uch
196 1.1 uch sc->sc_wskbddev = config_found(self, &wa, wskbddevprint);
197 1.1 uch }
198 1.1 uch
199 1.1 uch static int
200 1.2 uch btnmgr_hook(void *ctx, int type, long id, void *msg)
201 1.1 uch {
202 1.1 uch struct btnmgr_softc *sc = ctx;
203 1.1 uch
204 1.1 uch DPRINTF(("%s button: %s\n", btnmgr_name(id), msg ? "ON" : "OFF"));
205 1.1 uch
206 1.1 uch if (button_config[id].kevent) {
207 1.1 uch u_int evtype;
208 1.1 uch evtype = msg ? WSCONS_EVENT_KEY_DOWN : WSCONS_EVENT_KEY_UP;
209 1.1 uch #ifdef WSDISPLAY_COMPAT_RAWKBD
210 1.1 uch if (sc->sc_rawkbd) {
211 1.1 uch int n;
212 1.1 uch u_char data[16];
213 1.1 uch n = pckbd_encode(evtype, button_config[id].keycode,
214 1.2 uch data);
215 1.1 uch wskbd_rawinput(sc->sc_wskbddev, data, n);
216 1.1 uch } else
217 1.1 uch #endif
218 1.2 uch wskbd_input(sc->sc_wskbddev, evtype,
219 1.1 uch button_config[id].keycode);
220 1.1 uch }
221 1.1 uch
222 1.1 uch if (id == CONFIG_HOOK_BUTTONEVENT_POWER && msg)
223 1.1 uch config_hook_call(CONFIG_HOOK_PMEVENT,
224 1.2 uch CONFIG_HOOK_PMEVENT_SUSPENDREQ, NULL);
225 1.1 uch
226 1.1 uch
227 1.1 uch return (0);
228 1.1 uch }
229 1.1 uch
230 1.1 uch char*
231 1.2 uch btnmgr_name(long id)
232 1.1 uch {
233 1.1 uch if (id < n_button_config)
234 1.2 uch return (button_config[id].name);
235 1.1 uch return ("unknown");
236 1.1 uch }
237 1.1 uch
238 1.1 uch int
239 1.2 uch btnmgr_wskbd_enable(void *scx, int on)
240 1.1 uch {
241 1.1 uch struct btnmgr_softc *sc = scx;
242 1.1 uch
243 1.1 uch if (on) {
244 1.1 uch if (sc->sc_enabled)
245 1.1 uch return (EBUSY);
246 1.1 uch sc->sc_enabled = 1;
247 1.1 uch } else {
248 1.1 uch sc->sc_enabled = 0;
249 1.1 uch }
250 1.1 uch
251 1.1 uch return (0);
252 1.1 uch }
253 1.1 uch
254 1.1 uch void
255 1.2 uch btnmgr_wskbd_set_leds(void *scx, int leds)
256 1.1 uch {
257 1.1 uch /*
258 1.1 uch * We have nothing to do.
259 1.1 uch */
260 1.1 uch }
261 1.1 uch
262 1.1 uch int
263 1.2 uch btnmgr_wskbd_ioctl(void *scx, u_long cmd, caddr_t data, int flag,
264 1.2 uch struct proc *p)
265 1.1 uch {
266 1.1 uch #ifdef WSDISPLAY_COMPAT_RAWKBD
267 1.1 uch struct btnmgr_softc *sc = scx;
268 1.1 uch #endif
269 1.1 uch switch (cmd) {
270 1.1 uch case WSKBDIO_GTYPE:
271 1.1 uch *(int *)data = WSKBD_TYPE_HPC_BTN;
272 1.2 uch return (0);
273 1.1 uch case WSKBDIO_SETLEDS:
274 1.1 uch DPRINTF(("%s(%d): no LED\n", __FILE__, __LINE__));
275 1.2 uch return (0);
276 1.1 uch case WSKBDIO_GETLEDS:
277 1.1 uch DPRINTF(("%s(%d): no LED\n", __FILE__, __LINE__));
278 1.1 uch *(int *)data = 0;
279 1.1 uch return (0);
280 1.1 uch #ifdef WSDISPLAY_COMPAT_RAWKBD
281 1.1 uch case WSKBDIO_SETMODE:
282 1.1 uch sc->sc_rawkbd = (*(int *)data == WSKBD_RAW);
283 1.1 uch DPRINTF(("%s(%d): rawkbd is %s\n", __FILE__, __LINE__,
284 1.2 uch sc->sc_rawkbd ? "on" : "off"));
285 1.1 uch return (0);
286 1.1 uch #endif
287 1.1 uch }
288 1.1 uch return (-1);
289 1.1 uch }
290 1.1 uch
291 1.1 uch #ifdef notyet
292 1.1 uch int
293 1.2 uch btnmgropen(dev_t dev, int flag, int mode, struct proc *p)
294 1.1 uch {
295 1.1 uch return (EINVAL);
296 1.1 uch }
297 1.1 uch
298 1.1 uch int
299 1.2 uch btnmgrclose(dev_t dev, int flag, int mode, struct proc *p)
300 1.1 uch {
301 1.1 uch return (EINVAL);
302 1.1 uch }
303 1.1 uch
304 1.1 uch int
305 1.2 uch btnmgrread(dev_t dev, struct uio *uio, int flag)
306 1.1 uch {
307 1.1 uch return (EINVAL);
308 1.1 uch }
309 1.1 uch
310 1.1 uch int
311 1.2 uch btnmgrwrite(dev_t dev, struct uio *uio, int flag)
312 1.1 uch {
313 1.1 uch return (EINVAL);
314 1.1 uch }
315 1.1 uch
316 1.1 uch int
317 1.2 uch btnmgrioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
318 1.1 uch {
319 1.1 uch return (EINVAL);
320 1.1 uch }
321 1.1 uch #endif /* notyet */
322