tctrl.c revision 1.24.2.5 1 1.24.2.5 skrll /* $NetBSD: tctrl.c,v 1.24.2.5 2005/11/10 13:58:55 skrll Exp $ */
2 1.1 matt
3 1.1 matt /*-
4 1.1 matt * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.1 matt * All rights reserved.
6 1.1 matt *
7 1.1 matt * This code is derived from software contributed to The NetBSD Foundation
8 1.1 matt * by Matt Thomas.
9 1.1 matt *
10 1.1 matt * Redistribution and use in source and binary forms, with or without
11 1.1 matt * modification, are permitted provided that the following conditions
12 1.1 matt * are met:
13 1.1 matt * 1. Redistributions of source code must retain the above copyright
14 1.1 matt * notice, this list of conditions and the following disclaimer.
15 1.1 matt * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 matt * notice, this list of conditions and the following disclaimer in the
17 1.1 matt * documentation and/or other materials provided with the distribution.
18 1.1 matt * 3. All advertising materials mentioning features or use of this software
19 1.1 matt * must display the following acknowledgement:
20 1.1 matt * This product includes software developed by the NetBSD
21 1.1 matt * Foundation, Inc. and its contributors.
22 1.1 matt * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 matt * contributors may be used to endorse or promote products derived
24 1.1 matt * from this software without specific prior written permission.
25 1.1 matt *
26 1.1 matt * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 matt * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 matt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 matt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 matt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 matt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 matt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 matt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 matt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 matt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 matt * POSSIBILITY OF SUCH DAMAGE.
37 1.1 matt */
38 1.1 matt
39 1.24.2.1 skrll #include <sys/cdefs.h>
40 1.24.2.5 skrll __KERNEL_RCSID(0, "$NetBSD: tctrl.c,v 1.24.2.5 2005/11/10 13:58:55 skrll Exp $");
41 1.24.2.1 skrll
42 1.1 matt #include <sys/param.h>
43 1.1 matt #include <sys/systm.h>
44 1.8 thorpej #include <sys/callout.h>
45 1.1 matt #include <sys/ioctl.h>
46 1.1 matt #include <sys/select.h>
47 1.1 matt #include <sys/tty.h>
48 1.1 matt #include <sys/proc.h>
49 1.1 matt #include <sys/user.h>
50 1.1 matt #include <sys/conf.h>
51 1.1 matt #include <sys/file.h>
52 1.1 matt #include <sys/uio.h>
53 1.1 matt #include <sys/kernel.h>
54 1.1 matt #include <sys/syslog.h>
55 1.1 matt #include <sys/types.h>
56 1.1 matt #include <sys/device.h>
57 1.4 garbled #include <sys/envsys.h>
58 1.4 garbled #include <sys/poll.h>
59 1.1 matt
60 1.4 garbled #include <machine/apmvar.h>
61 1.1 matt #include <machine/autoconf.h>
62 1.1 matt #include <machine/bus.h>
63 1.11 pk #include <machine/intr.h>
64 1.4 garbled #include <machine/tctrl.h>
65 1.1 matt
66 1.1 matt #include <sparc/dev/ts102reg.h>
67 1.1 matt #include <sparc/dev/tctrlvar.h>
68 1.7 jdc #include <sparc/sparc/auxiotwo.h>
69 1.24.2.5 skrll #include <sparc/sparc/auxreg.h>
70 1.24.2.5 skrll
71 1.24.2.5 skrll #include <dev/sysmon/sysmonvar.h>
72 1.24.2.5 skrll #include <dev/sysmon/sysmon_taskq.h>
73 1.24.2.5 skrll #include "sysmon_envsys.h"
74 1.1 matt
75 1.15 gehenna extern struct cfdriver tctrl_cd;
76 1.4 garbled
77 1.15 gehenna dev_type_open(tctrlopen);
78 1.15 gehenna dev_type_close(tctrlclose);
79 1.15 gehenna dev_type_ioctl(tctrlioctl);
80 1.15 gehenna dev_type_poll(tctrlpoll);
81 1.20 jdolecek dev_type_kqfilter(tctrlkqfilter);
82 1.15 gehenna
83 1.15 gehenna const struct cdevsw tctrl_cdevsw = {
84 1.15 gehenna tctrlopen, tctrlclose, noread, nowrite, tctrlioctl,
85 1.20 jdolecek nostop, notty, tctrlpoll, nommap, tctrlkqfilter,
86 1.15 gehenna };
87 1.4 garbled
88 1.1 matt static const char *tctrl_ext_statuses[16] = {
89 1.1 matt "main power available",
90 1.1 matt "internal battery attached",
91 1.1 matt "external battery attached",
92 1.1 matt "external VGA attached",
93 1.1 matt "external keyboard attached",
94 1.1 matt "external mouse attached",
95 1.1 matt "lid down",
96 1.1 matt "internal battery charging",
97 1.1 matt "external battery charging",
98 1.1 matt "internal battery discharging",
99 1.1 matt "external battery discharging",
100 1.1 matt };
101 1.1 matt
102 1.1 matt struct tctrl_softc {
103 1.4 garbled struct device sc_dev;
104 1.4 garbled bus_space_tag_t sc_memt;
105 1.4 garbled bus_space_handle_t sc_memh;
106 1.4 garbled unsigned int sc_junk;
107 1.4 garbled unsigned int sc_ext_status;
108 1.4 garbled unsigned int sc_flags;
109 1.4 garbled #define TCTRL_SEND_REQUEST 0x0001
110 1.4 garbled #define TCTRL_APM_CTLOPEN 0x0002
111 1.4 garbled unsigned int sc_wantdata;
112 1.6 garbled volatile unsigned short sc_lcdstate;
113 1.1 matt enum { TCTRL_IDLE, TCTRL_ARGS,
114 1.1 matt TCTRL_ACK, TCTRL_DATA } sc_state;
115 1.4 garbled u_int8_t sc_cmdbuf[16];
116 1.4 garbled u_int8_t sc_rspbuf[16];
117 1.4 garbled u_int8_t sc_bitport;
118 1.4 garbled u_int8_t sc_tft_on;
119 1.4 garbled u_int8_t sc_op;
120 1.4 garbled u_int8_t sc_cmdoff;
121 1.4 garbled u_int8_t sc_cmdlen;
122 1.4 garbled u_int8_t sc_rspoff;
123 1.4 garbled u_int8_t sc_rsplen;
124 1.4 garbled /* APM stuff */
125 1.4 garbled #define APM_NEVENTS 16
126 1.4 garbled struct apm_event_info sc_event_list[APM_NEVENTS];
127 1.4 garbled int sc_event_count;
128 1.4 garbled int sc_event_ptr;
129 1.4 garbled struct selinfo sc_rsel;
130 1.24.2.5 skrll
131 1.4 garbled /* ENVSYS stuff */
132 1.4 garbled #define ENVSYS_NUMSENSORS 3
133 1.4 garbled struct evcnt sc_intrcnt; /* interrupt counting */
134 1.24.2.5 skrll struct sysmon_envsys sc_sme;
135 1.24.2.5 skrll struct envsys_tre_data sc_tre[ENVSYS_NUMSENSORS];
136 1.24.2.5 skrll struct envsys_basic_info sc_binfo[ENVSYS_NUMSENSORS];
137 1.24.2.5 skrll struct envsys_range sc_range[ENVSYS_NUMSENSORS];
138 1.24.2.5 skrll
139 1.24.2.5 skrll struct sysmon_pswitch sc_smcontext;
140 1.24.2.5 skrll int sc_powerpressed;
141 1.1 matt };
142 1.1 matt
143 1.4 garbled #define TCTRL_STD_DEV 0
144 1.4 garbled #define TCTRL_APMCTL_DEV 8
145 1.1 matt
146 1.9 thorpej static struct callout tctrl_event_ch = CALLOUT_INITIALIZER;
147 1.8 thorpej
148 1.4 garbled static int tctrl_match __P((struct device *parent, struct cfdata *cf,
149 1.4 garbled void *aux));
150 1.4 garbled static void tctrl_attach __P((struct device *parent, struct device *self,
151 1.4 garbled void *aux));
152 1.4 garbled static void tctrl_write __P((struct tctrl_softc *sc, bus_size_t off,
153 1.4 garbled u_int8_t v));
154 1.4 garbled static u_int8_t tctrl_read __P((struct tctrl_softc *sc, bus_size_t off));
155 1.4 garbled static void tctrl_write_data __P((struct tctrl_softc *sc, u_int8_t v));
156 1.4 garbled static u_int8_t tctrl_read_data __P((struct tctrl_softc *sc));
157 1.4 garbled static int tctrl_intr __P((void *arg));
158 1.4 garbled static void tctrl_setup_bitport __P((void));
159 1.4 garbled static void tctrl_setup_bitport_nop __P((void));
160 1.4 garbled static void tctrl_read_ext_status __P((void));
161 1.4 garbled static void tctrl_read_event_status __P((void *arg));
162 1.4 garbled static int tctrl_apm_record_event __P((struct tctrl_softc *sc,
163 1.4 garbled u_int event_type));
164 1.6 garbled static void tctrl_init_lcd __P((void));
165 1.1 matt
166 1.24.2.5 skrll static void tctrl_sensor_setup(struct tctrl_softc *);
167 1.24.2.5 skrll static int tctrl_gtredata(struct sysmon_envsys *, struct envsys_tre_data *);
168 1.24.2.5 skrll static int tctrl_streinfo(struct sysmon_envsys *, struct envsys_basic_info *);
169 1.24.2.5 skrll
170 1.24.2.5 skrll static void tctrl_power_button_pressed(void *);
171 1.24.2.5 skrll static int tctrl_powerfail(void *);
172 1.24.2.5 skrll
173 1.17 thorpej CFATTACH_DECL(tctrl, sizeof(struct tctrl_softc),
174 1.18 thorpej tctrl_match, tctrl_attach, NULL, NULL);
175 1.1 matt
176 1.1 matt extern struct cfdriver tctrl_cd;
177 1.4 garbled /* XXX wtf is this? see i386/apm.c */
178 1.4 garbled int tctrl_apm_evindex;
179 1.1 matt
180 1.1 matt static int
181 1.4 garbled tctrl_match(parent, cf, aux)
182 1.4 garbled struct device *parent;
183 1.4 garbled struct cfdata *cf;
184 1.4 garbled void *aux;
185 1.1 matt {
186 1.1 matt union obio_attach_args *uoba = aux;
187 1.1 matt struct sbus_attach_args *sa = &uoba->uoba_sbus;
188 1.1 matt
189 1.1 matt if (uoba->uoba_isobio4 != 0) {
190 1.1 matt return (0);
191 1.1 matt }
192 1.1 matt
193 1.1 matt /* Tadpole 3GX/3GS uses "uctrl" for the Tadpole Microcontroller
194 1.1 matt * (who's interface is off the TS102 PCMCIA controller but there
195 1.1 matt * exists a OpenProm for microcontroller interface).
196 1.1 matt */
197 1.1 matt return strcmp("uctrl", sa->sa_name) == 0;
198 1.1 matt }
199 1.1 matt
200 1.1 matt static void
201 1.4 garbled tctrl_attach(parent, self, aux)
202 1.4 garbled struct device *parent;
203 1.4 garbled struct device *self;
204 1.4 garbled void *aux;
205 1.1 matt {
206 1.1 matt struct tctrl_softc *sc = (void *)self;
207 1.1 matt union obio_attach_args *uoba = aux;
208 1.1 matt struct sbus_attach_args *sa = &uoba->uoba_sbus;
209 1.2 matt unsigned int i, v;
210 1.1 matt
211 1.1 matt /* We're living on a sbus slot that looks like an obio that
212 1.1 matt * looks like an sbus slot.
213 1.1 matt */
214 1.1 matt sc->sc_memt = sa->sa_bustag;
215 1.14 pk if (sbus_bus_map(sc->sc_memt,
216 1.14 pk sa->sa_slot,
217 1.14 pk sa->sa_offset - TS102_REG_UCTRL_INT,
218 1.14 pk sa->sa_size,
219 1.14 pk BUS_SPACE_MAP_LINEAR, &sc->sc_memh) != 0) {
220 1.1 matt printf(": can't map registers\n");
221 1.1 matt return;
222 1.1 matt }
223 1.1 matt
224 1.2 matt printf("\n");
225 1.2 matt
226 1.1 matt sc->sc_tft_on = 1;
227 1.2 matt
228 1.1 matt /* clear any pending data.
229 1.1 matt */
230 1.1 matt for (i = 0; i < 10000; i++) {
231 1.4 garbled if ((TS102_UCTRL_STS_RXNE_STA &
232 1.4 garbled tctrl_read(sc, TS102_REG_UCTRL_STS)) == 0) {
233 1.1 matt break;
234 1.1 matt }
235 1.1 matt v = tctrl_read(sc, TS102_REG_UCTRL_DATA);
236 1.2 matt tctrl_write(sc, TS102_REG_UCTRL_STS, TS102_UCTRL_STS_RXNE_STA);
237 1.1 matt }
238 1.1 matt
239 1.3 pk if (sa->sa_nintr != 0) {
240 1.11 pk (void)bus_intr_establish(sc->sc_memt, sa->sa_pri, IPL_NONE,
241 1.22 pk tctrl_intr, sc);
242 1.10 cgd evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
243 1.22 pk sc->sc_dev.dv_xname, "intr");
244 1.3 pk }
245 1.2 matt
246 1.24.2.5 skrll /* See what the external status is */
247 1.1 matt
248 1.4 garbled tctrl_read_ext_status();
249 1.2 matt if (sc->sc_ext_status != 0) {
250 1.2 matt const char *sep;
251 1.1 matt
252 1.1 matt printf("%s: ", sc->sc_dev.dv_xname);
253 1.2 matt v = sc->sc_ext_status;
254 1.1 matt for (i = 0, sep = ""; v != 0; i++, v >>= 1) {
255 1.1 matt if (v & 1) {
256 1.1 matt printf("%s%s", sep, tctrl_ext_statuses[i]);
257 1.1 matt sep = ", ";
258 1.1 matt }
259 1.1 matt }
260 1.1 matt printf("\n");
261 1.1 matt }
262 1.1 matt
263 1.24.2.5 skrll /* Get a current of the control bitport */
264 1.4 garbled tctrl_setup_bitport_nop();
265 1.2 matt tctrl_write(sc, TS102_REG_UCTRL_INT,
266 1.2 matt TS102_UCTRL_INT_RXNE_REQ|TS102_UCTRL_INT_RXNE_MSK);
267 1.1 matt
268 1.4 garbled sc->sc_wantdata = 0;
269 1.4 garbled sc->sc_event_count = 0;
270 1.4 garbled
271 1.24.2.5 skrll /* setup sensors and register the power button */
272 1.24.2.5 skrll tctrl_sensor_setup(sc);
273 1.24.2.5 skrll
274 1.6 garbled /* initialize the LCD */
275 1.6 garbled tctrl_init_lcd();
276 1.6 garbled
277 1.6 garbled /* initialize sc_lcdstate */
278 1.6 garbled sc->sc_lcdstate = 0;
279 1.6 garbled tctrl_set_lcd(2, 0);
280 1.1 matt }
281 1.1 matt
282 1.1 matt static int
283 1.4 garbled tctrl_intr(arg)
284 1.4 garbled void *arg;
285 1.1 matt {
286 1.1 matt struct tctrl_softc *sc = arg;
287 1.1 matt unsigned int v, d;
288 1.1 matt int progress = 0;
289 1.1 matt
290 1.1 matt again:
291 1.1 matt /* find out the cause(s) of the interrupt */
292 1.12 toddpw v = tctrl_read(sc, TS102_REG_UCTRL_STS) & TS102_UCTRL_STS_MASK;
293 1.1 matt
294 1.1 matt /* clear the cause(s) of the interrupt */
295 1.1 matt tctrl_write(sc, TS102_REG_UCTRL_STS, v);
296 1.1 matt
297 1.2 matt v &= ~(TS102_UCTRL_STS_RXO_STA|TS102_UCTRL_STS_TXE_STA);
298 1.1 matt if (sc->sc_cmdoff >= sc->sc_cmdlen) {
299 1.2 matt v &= ~TS102_UCTRL_STS_TXNF_STA;
300 1.24.2.5 skrll if (tctrl_read(sc, TS102_REG_UCTRL_INT) &
301 1.24.2.5 skrll TS102_UCTRL_INT_TXNF_REQ) {
302 1.4 garbled tctrl_write(sc, TS102_REG_UCTRL_INT, 0);
303 1.4 garbled progress = 1;
304 1.4 garbled }
305 1.1 matt }
306 1.4 garbled if ((v == 0) && ((sc->sc_flags & TCTRL_SEND_REQUEST) == 0 ||
307 1.4 garbled sc->sc_state != TCTRL_IDLE)) {
308 1.4 garbled wakeup(sc);
309 1.1 matt return progress;
310 1.1 matt }
311 1.1 matt
312 1.1 matt progress = 1;
313 1.2 matt if (v & TS102_UCTRL_STS_RXNE_STA) {
314 1.1 matt d = tctrl_read_data(sc);
315 1.1 matt switch (sc->sc_state) {
316 1.1 matt case TCTRL_IDLE:
317 1.2 matt if (d == 0xfa) {
318 1.4 garbled /* external event */
319 1.8 thorpej callout_reset(&tctrl_event_ch, 1,
320 1.8 thorpej tctrl_read_event_status, NULL);
321 1.2 matt } else {
322 1.2 matt printf("%s: (op=0x%02x): unexpected data (0x%02x)\n",
323 1.2 matt sc->sc_dev.dv_xname, sc->sc_op, d);
324 1.1 matt }
325 1.2 matt goto again;
326 1.1 matt case TCTRL_ACK:
327 1.1 matt if (d != 0xfe) {
328 1.2 matt printf("%s: (op=0x%02x): unexpected ack value (0x%02x)\n",
329 1.1 matt sc->sc_dev.dv_xname, sc->sc_op, d);
330 1.1 matt }
331 1.4 garbled #ifdef TCTRLDEBUG
332 1.2 matt printf(" ack=0x%02x", d);
333 1.2 matt #endif
334 1.2 matt sc->sc_rsplen--;
335 1.2 matt sc->sc_rspoff = 0;
336 1.1 matt sc->sc_state = sc->sc_rsplen ? TCTRL_DATA : TCTRL_IDLE;
337 1.4 garbled sc->sc_wantdata = sc->sc_rsplen ? 1 : 0;
338 1.4 garbled #ifdef TCTRLDEBUG
339 1.2 matt if (sc->sc_rsplen > 0) {
340 1.2 matt printf(" [data(%u)]", sc->sc_rsplen);
341 1.2 matt } else {
342 1.2 matt printf(" [idle]\n");
343 1.2 matt }
344 1.2 matt #endif
345 1.2 matt goto again;
346 1.1 matt case TCTRL_DATA:
347 1.1 matt sc->sc_rspbuf[sc->sc_rspoff++] = d;
348 1.4 garbled #ifdef TCTRLDEBUG
349 1.2 matt printf(" [%d]=0x%02x", sc->sc_rspoff-1, d);
350 1.2 matt #endif
351 1.1 matt if (sc->sc_rspoff == sc->sc_rsplen) {
352 1.4 garbled #ifdef TCTRLDEBUG
353 1.2 matt printf(" [idle]\n");
354 1.2 matt #endif
355 1.1 matt sc->sc_state = TCTRL_IDLE;
356 1.4 garbled sc->sc_wantdata = 0;
357 1.1 matt }
358 1.2 matt goto again;
359 1.1 matt default:
360 1.1 matt printf("%s: (op=0x%02x): unexpected data (0x%02x) in state %d\n",
361 1.1 matt sc->sc_dev.dv_xname, sc->sc_op, d, sc->sc_state);
362 1.2 matt goto again;
363 1.1 matt }
364 1.1 matt }
365 1.4 garbled if ((sc->sc_state == TCTRL_IDLE && sc->sc_wantdata == 0) ||
366 1.4 garbled sc->sc_flags & TCTRL_SEND_REQUEST) {
367 1.4 garbled if (sc->sc_flags & TCTRL_SEND_REQUEST) {
368 1.4 garbled sc->sc_flags &= ~TCTRL_SEND_REQUEST;
369 1.4 garbled sc->sc_wantdata = 1;
370 1.4 garbled }
371 1.1 matt if (sc->sc_cmdlen > 0) {
372 1.1 matt tctrl_write(sc, TS102_REG_UCTRL_INT,
373 1.1 matt tctrl_read(sc, TS102_REG_UCTRL_INT)
374 1.1 matt |TS102_UCTRL_INT_TXNF_MSK
375 1.1 matt |TS102_UCTRL_INT_TXNF_REQ);
376 1.1 matt v = tctrl_read(sc, TS102_REG_UCTRL_STS);
377 1.1 matt }
378 1.1 matt }
379 1.2 matt if ((sc->sc_cmdoff < sc->sc_cmdlen) && (v & TS102_UCTRL_STS_TXNF_STA)) {
380 1.1 matt tctrl_write_data(sc, sc->sc_cmdbuf[sc->sc_cmdoff++]);
381 1.4 garbled #ifdef TCTRLDEBUG
382 1.2 matt if (sc->sc_cmdoff == 1) {
383 1.2 matt printf("%s: op=0x%02x(l=%u)", sc->sc_dev.dv_xname,
384 1.2 matt sc->sc_cmdbuf[0], sc->sc_rsplen);
385 1.2 matt } else {
386 1.2 matt printf(" [%d]=0x%02x", sc->sc_cmdoff-1,
387 1.2 matt sc->sc_cmdbuf[sc->sc_cmdoff-1]);
388 1.2 matt }
389 1.2 matt #endif
390 1.1 matt if (sc->sc_cmdoff == sc->sc_cmdlen) {
391 1.1 matt sc->sc_state = sc->sc_rsplen ? TCTRL_ACK : TCTRL_IDLE;
392 1.4 garbled #ifdef TCTRLDEBUG
393 1.2 matt printf(" %s", sc->sc_rsplen ? "[ack]" : "[idle]\n");
394 1.2 matt #endif
395 1.2 matt if (sc->sc_cmdoff == 1) {
396 1.2 matt sc->sc_op = sc->sc_cmdbuf[0];
397 1.2 matt }
398 1.1 matt tctrl_write(sc, TS102_REG_UCTRL_INT,
399 1.1 matt tctrl_read(sc, TS102_REG_UCTRL_INT)
400 1.1 matt & (~TS102_UCTRL_INT_TXNF_MSK
401 1.1 matt |TS102_UCTRL_INT_TXNF_REQ));
402 1.1 matt } else if (sc->sc_state == TCTRL_IDLE) {
403 1.1 matt sc->sc_op = sc->sc_cmdbuf[0];
404 1.1 matt sc->sc_state = TCTRL_ARGS;
405 1.4 garbled #ifdef TCTRLDEBUG
406 1.2 matt printf(" [args]");
407 1.2 matt #endif
408 1.1 matt }
409 1.1 matt }
410 1.1 matt goto again;
411 1.1 matt }
412 1.1 matt
413 1.1 matt static void
414 1.4 garbled tctrl_setup_bitport_nop(void)
415 1.4 garbled {
416 1.4 garbled struct tctrl_softc *sc;
417 1.4 garbled struct tctrl_req req;
418 1.4 garbled int s;
419 1.4 garbled
420 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
421 1.4 garbled req.cmdbuf[0] = TS102_OP_CTL_BITPORT;
422 1.4 garbled req.cmdbuf[1] = 0xff;
423 1.4 garbled req.cmdbuf[2] = 0;
424 1.4 garbled req.cmdlen = 3;
425 1.4 garbled req.rsplen = 2;
426 1.4 garbled req.p = NULL;
427 1.4 garbled tadpole_request(&req, 1);
428 1.4 garbled s = splts102();
429 1.4 garbled sc->sc_bitport = (req.rspbuf[0] & req.cmdbuf[1]) ^ req.cmdbuf[2];
430 1.4 garbled splx(s);
431 1.4 garbled }
432 1.4 garbled
433 1.4 garbled static void
434 1.4 garbled tctrl_setup_bitport(void)
435 1.1 matt {
436 1.4 garbled struct tctrl_softc *sc;
437 1.4 garbled struct tctrl_req req;
438 1.4 garbled int s;
439 1.4 garbled
440 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
441 1.4 garbled s = splts102();
442 1.4 garbled if ((sc->sc_ext_status & TS102_EXT_STATUS_LID_DOWN)
443 1.4 garbled || (!sc->sc_tft_on)) {
444 1.4 garbled req.cmdbuf[2] = TS102_BITPORT_TFTPWR;
445 1.1 matt } else {
446 1.4 garbled req.cmdbuf[2] = 0;
447 1.4 garbled }
448 1.4 garbled req.cmdbuf[0] = TS102_OP_CTL_BITPORT;
449 1.4 garbled req.cmdbuf[1] = ~TS102_BITPORT_TFTPWR;
450 1.4 garbled req.cmdlen = 3;
451 1.4 garbled req.rsplen = 2;
452 1.4 garbled req.p = NULL;
453 1.4 garbled tadpole_request(&req, 1);
454 1.4 garbled s = splts102();
455 1.4 garbled sc->sc_bitport = (req.rspbuf[0] & req.cmdbuf[1]) ^ req.cmdbuf[2];
456 1.4 garbled splx(s);
457 1.4 garbled }
458 1.4 garbled
459 1.6 garbled /*
460 1.6 garbled * The tadpole microcontroller is not preprogrammed with icon
461 1.6 garbled * representations. The machine boots with the DC-IN light as
462 1.6 garbled * a blank (all 0x00) and the other lights, as 4 rows of horizontal
463 1.6 garbled * bars. The below code initializes the icons in the system to
464 1.6 garbled * sane values. Some of these icons could be used for any purpose
465 1.6 garbled * desired, namely the pcmcia, LAN and WAN lights. For the disk spinner,
466 1.6 garbled * only the backslash is unprogrammed. (sigh)
467 1.6 garbled *
468 1.6 garbled * programming the icons is simple. It is a 5x8 matrix, which each row a
469 1.6 garbled * bitfield in the order 0x10 0x08 0x04 0x02 0x01.
470 1.6 garbled */
471 1.6 garbled
472 1.6 garbled static void
473 1.6 garbled tctrl_init_lcd(void)
474 1.6 garbled {
475 1.6 garbled struct tctrl_req req;
476 1.6 garbled
477 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
478 1.6 garbled req.cmdlen = 11;
479 1.6 garbled req.rsplen = 1;
480 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
481 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_DC_GOOD;
482 1.6 garbled req.cmdbuf[3] = 0x00; /* ..... */
483 1.6 garbled req.cmdbuf[4] = 0x00; /* ..... */
484 1.6 garbled req.cmdbuf[5] = 0x1f; /* XXXXX */
485 1.6 garbled req.cmdbuf[6] = 0x00; /* ..... */
486 1.6 garbled req.cmdbuf[7] = 0x15; /* X.X.X */
487 1.6 garbled req.cmdbuf[8] = 0x00; /* ..... */
488 1.6 garbled req.cmdbuf[9] = 0x00; /* ..... */
489 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
490 1.6 garbled req.p = NULL;
491 1.6 garbled tadpole_request(&req, 1);
492 1.6 garbled
493 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
494 1.6 garbled req.cmdlen = 11;
495 1.6 garbled req.rsplen = 1;
496 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
497 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_BACKSLASH;
498 1.6 garbled req.cmdbuf[3] = 0x00; /* ..... */
499 1.6 garbled req.cmdbuf[4] = 0x10; /* X.... */
500 1.6 garbled req.cmdbuf[5] = 0x08; /* .X... */
501 1.6 garbled req.cmdbuf[6] = 0x04; /* ..X.. */
502 1.6 garbled req.cmdbuf[7] = 0x02; /* ...X. */
503 1.6 garbled req.cmdbuf[8] = 0x01; /* ....X */
504 1.6 garbled req.cmdbuf[9] = 0x00; /* ..... */
505 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
506 1.6 garbled req.p = NULL;
507 1.6 garbled tadpole_request(&req, 1);
508 1.6 garbled
509 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
510 1.6 garbled req.cmdlen = 11;
511 1.6 garbled req.rsplen = 1;
512 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
513 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_WAN1;
514 1.6 garbled req.cmdbuf[3] = 0x0c; /* .XXX. */
515 1.6 garbled req.cmdbuf[4] = 0x16; /* X.XX. */
516 1.6 garbled req.cmdbuf[5] = 0x10; /* X.... */
517 1.6 garbled req.cmdbuf[6] = 0x15; /* X.X.X */
518 1.6 garbled req.cmdbuf[7] = 0x10; /* X.... */
519 1.6 garbled req.cmdbuf[8] = 0x16; /* X.XX. */
520 1.6 garbled req.cmdbuf[9] = 0x0c; /* .XXX. */
521 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
522 1.6 garbled req.p = NULL;
523 1.6 garbled tadpole_request(&req, 1);
524 1.6 garbled
525 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
526 1.6 garbled req.cmdlen = 11;
527 1.6 garbled req.rsplen = 1;
528 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
529 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_WAN2;
530 1.6 garbled req.cmdbuf[3] = 0x0c; /* .XXX. */
531 1.6 garbled req.cmdbuf[4] = 0x0d; /* .XX.X */
532 1.6 garbled req.cmdbuf[5] = 0x01; /* ....X */
533 1.6 garbled req.cmdbuf[6] = 0x15; /* X.X.X */
534 1.6 garbled req.cmdbuf[7] = 0x01; /* ....X */
535 1.6 garbled req.cmdbuf[8] = 0x0d; /* .XX.X */
536 1.6 garbled req.cmdbuf[9] = 0x0c; /* .XXX. */
537 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
538 1.6 garbled req.p = NULL;
539 1.6 garbled tadpole_request(&req, 1);
540 1.6 garbled
541 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
542 1.6 garbled req.cmdlen = 11;
543 1.6 garbled req.rsplen = 1;
544 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
545 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_LAN1;
546 1.6 garbled req.cmdbuf[3] = 0x00; /* ..... */
547 1.6 garbled req.cmdbuf[4] = 0x04; /* ..X.. */
548 1.6 garbled req.cmdbuf[5] = 0x08; /* .X... */
549 1.6 garbled req.cmdbuf[6] = 0x13; /* X..XX */
550 1.6 garbled req.cmdbuf[7] = 0x08; /* .X... */
551 1.6 garbled req.cmdbuf[8] = 0x04; /* ..X.. */
552 1.6 garbled req.cmdbuf[9] = 0x00; /* ..... */
553 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
554 1.6 garbled req.p = NULL;
555 1.6 garbled tadpole_request(&req, 1);
556 1.6 garbled
557 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
558 1.6 garbled req.cmdlen = 11;
559 1.6 garbled req.rsplen = 1;
560 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
561 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_LAN2;
562 1.6 garbled req.cmdbuf[3] = 0x00; /* ..... */
563 1.6 garbled req.cmdbuf[4] = 0x04; /* ..X.. */
564 1.6 garbled req.cmdbuf[5] = 0x02; /* ...X. */
565 1.6 garbled req.cmdbuf[6] = 0x19; /* XX..X */
566 1.6 garbled req.cmdbuf[7] = 0x02; /* ...X. */
567 1.6 garbled req.cmdbuf[8] = 0x04; /* ..X.. */
568 1.6 garbled req.cmdbuf[9] = 0x00; /* ..... */
569 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
570 1.6 garbled req.p = NULL;
571 1.6 garbled tadpole_request(&req, 1);
572 1.6 garbled
573 1.6 garbled req.cmdbuf[0] = TS102_OP_BLK_DEF_SPCL_CHAR;
574 1.6 garbled req.cmdlen = 11;
575 1.6 garbled req.rsplen = 1;
576 1.6 garbled req.cmdbuf[1] = 0x08; /*len*/
577 1.6 garbled req.cmdbuf[2] = TS102_BLK_OFF_DEF_PCMCIA;
578 1.6 garbled req.cmdbuf[3] = 0x00; /* ..... */
579 1.6 garbled req.cmdbuf[4] = 0x0c; /* .XXX. */
580 1.6 garbled req.cmdbuf[5] = 0x1f; /* XXXXX */
581 1.6 garbled req.cmdbuf[6] = 0x1f; /* XXXXX */
582 1.6 garbled req.cmdbuf[7] = 0x1f; /* XXXXX */
583 1.6 garbled req.cmdbuf[8] = 0x1f; /* XXXXX */
584 1.6 garbled req.cmdbuf[9] = 0x00; /* ..... */
585 1.6 garbled req.cmdbuf[10] = 0x00; /* ..... */
586 1.6 garbled req.p = NULL;
587 1.6 garbled tadpole_request(&req, 1);
588 1.6 garbled }
589 1.6 garbled
590 1.6 garbled
591 1.6 garbled
592 1.6 garbled /*
593 1.6 garbled * set the blinken-lights on the lcd. what:
594 1.6 garbled * what = 0 off, what = 1 on, what = 2 toggle
595 1.6 garbled */
596 1.6 garbled
597 1.6 garbled void
598 1.6 garbled tctrl_set_lcd(what, which)
599 1.6 garbled int what;
600 1.6 garbled unsigned short which;
601 1.6 garbled {
602 1.6 garbled struct tctrl_softc *sc;
603 1.6 garbled struct tctrl_req req;
604 1.6 garbled int s;
605 1.24.2.5 skrll
606 1.6 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
607 1.6 garbled s = splts102();
608 1.6 garbled
609 1.24.2.1 skrll /* provide a quick exit to save CPU time */
610 1.6 garbled if ((what == 1 && sc->sc_lcdstate & which) ||
611 1.6 garbled (what == 0 && !(sc->sc_lcdstate & which))) {
612 1.6 garbled splx(s);
613 1.6 garbled return;
614 1.6 garbled }
615 1.6 garbled /*
616 1.6 garbled * the mask setup on this particular command is *very* bizzare
617 1.6 garbled * and totally undocumented.
618 1.6 garbled */
619 1.6 garbled if ((what == 1) || (what == 2 && !(sc->sc_lcdstate & which))) {
620 1.6 garbled req.cmdbuf[2] = (u_int8_t)(which&0xff);
621 1.24.2.5 skrll req.cmdbuf[3] = (u_int8_t)((which&0x100)>>8);
622 1.24.2.5 skrll sc->sc_lcdstate|=which;
623 1.6 garbled } else {
624 1.6 garbled req.cmdbuf[2] = 0;
625 1.6 garbled req.cmdbuf[3] = 0;
626 1.24.2.5 skrll sc->sc_lcdstate&=(~which);
627 1.6 garbled }
628 1.6 garbled req.cmdbuf[0] = TS102_OP_CTL_LCD;
629 1.24.2.5 skrll req.cmdbuf[1] = (u_int8_t)((~which)&0xff);
630 1.24.2.5 skrll req.cmdbuf[4] = (u_int8_t)((~which>>8)&1);
631 1.24.2.5 skrll
632 1.6 garbled
633 1.13 wiz /* XXX this thing is weird.... */
634 1.6 garbled req.cmdlen = 3;
635 1.6 garbled req.rsplen = 2;
636 1.24.2.5 skrll
637 1.24.2.5 skrll /* below are the values one would expect but which won't work */
638 1.6 garbled #if 0
639 1.6 garbled req.cmdlen = 5;
640 1.6 garbled req.rsplen = 4;
641 1.6 garbled #endif
642 1.6 garbled req.p = NULL;
643 1.6 garbled tadpole_request(&req, 1);
644 1.24.2.5 skrll
645 1.6 garbled splx(s);
646 1.6 garbled }
647 1.6 garbled
648 1.4 garbled static void
649 1.4 garbled tctrl_read_ext_status(void)
650 1.4 garbled {
651 1.4 garbled struct tctrl_softc *sc;
652 1.4 garbled struct tctrl_req req;
653 1.4 garbled int s;
654 1.4 garbled
655 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
656 1.4 garbled req.cmdbuf[0] = TS102_OP_RD_EXT_STATUS;
657 1.4 garbled req.cmdlen = 1;
658 1.4 garbled req.rsplen = 3;
659 1.4 garbled req.p = NULL;
660 1.4 garbled #ifdef TCTRLDEBUG
661 1.4 garbled printf("pre read: sc->sc_ext_status = 0x%x\n", sc->sc_ext_status);
662 1.4 garbled #endif
663 1.4 garbled tadpole_request(&req, 1);
664 1.4 garbled s = splts102();
665 1.4 garbled sc->sc_ext_status = req.rspbuf[0] * 256 + req.rspbuf[1];
666 1.4 garbled splx(s);
667 1.4 garbled #ifdef TCTRLDEBUG
668 1.4 garbled printf("post read: sc->sc_ext_status = 0x%x\n", sc->sc_ext_status);
669 1.4 garbled #endif
670 1.4 garbled }
671 1.4 garbled
672 1.4 garbled /*
673 1.4 garbled * return 0 if the user will notice and handle the event,
674 1.4 garbled * return 1 if the kernel driver should do so.
675 1.4 garbled */
676 1.4 garbled static int
677 1.4 garbled tctrl_apm_record_event(sc, event_type)
678 1.4 garbled struct tctrl_softc *sc;
679 1.4 garbled u_int event_type;
680 1.4 garbled {
681 1.4 garbled struct apm_event_info *evp;
682 1.4 garbled
683 1.4 garbled if ((sc->sc_flags & TCTRL_APM_CTLOPEN) &&
684 1.4 garbled (sc->sc_event_count < APM_NEVENTS)) {
685 1.4 garbled evp = &sc->sc_event_list[sc->sc_event_ptr];
686 1.4 garbled sc->sc_event_count++;
687 1.4 garbled sc->sc_event_ptr++;
688 1.4 garbled sc->sc_event_ptr %= APM_NEVENTS;
689 1.4 garbled evp->type = event_type;
690 1.4 garbled evp->index = ++tctrl_apm_evindex;
691 1.20 jdolecek selnotify(&sc->sc_rsel, 0);
692 1.4 garbled return(sc->sc_flags & TCTRL_APM_CTLOPEN) ? 0 : 1;
693 1.1 matt }
694 1.4 garbled return(1);
695 1.1 matt }
696 1.1 matt
697 1.1 matt static void
698 1.4 garbled tctrl_read_event_status(arg)
699 1.4 garbled void *arg;
700 1.1 matt {
701 1.4 garbled struct tctrl_softc *sc;
702 1.4 garbled struct tctrl_req req;
703 1.4 garbled int s;
704 1.4 garbled unsigned int v;
705 1.4 garbled
706 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
707 1.4 garbled req.cmdbuf[0] = TS102_OP_RD_EVENT_STATUS;
708 1.4 garbled req.cmdlen = 1;
709 1.4 garbled req.rsplen = 3;
710 1.4 garbled req.p = NULL;
711 1.4 garbled tadpole_request(&req, 1);
712 1.4 garbled s = splts102();
713 1.4 garbled v = req.rspbuf[0] * 256 + req.rspbuf[1];
714 1.24.2.5 skrll #ifdef TCTRLDEBUG
715 1.24.2.5 skrll printf("event: %x\n",v);
716 1.24.2.5 skrll #endif
717 1.24.2.5 skrll if (v & TS102_EVENT_STATUS_POWERON_BTN_PRESSED) {
718 1.24.2.5 skrll printf("%s: Power button pressed\n",sc->sc_dev.dv_xname);
719 1.24.2.5 skrll tctrl_powerfail(sc);
720 1.24.2.5 skrll }
721 1.4 garbled if (v & TS102_EVENT_STATUS_SHUTDOWN_REQUEST) {
722 1.4 garbled printf("%s: SHUTDOWN REQUEST!\n", sc->sc_dev.dv_xname);
723 1.4 garbled }
724 1.4 garbled if (v & TS102_EVENT_STATUS_VERY_LOW_POWER_WARNING) {
725 1.4 garbled /*printf("%s: VERY LOW POWER WARNING!\n", sc->sc_dev.dv_xname);*/
726 1.4 garbled /* according to a tadpole header, and observation */
727 1.4 garbled #ifdef TCTRLDEBUG
728 1.24.2.5 skrll printf("%s: Battery charge level change\n",
729 1.24.2.5 skrll sc->sc_dev.dv_xname);
730 1.4 garbled #endif
731 1.1 matt }
732 1.4 garbled if (v & TS102_EVENT_STATUS_LOW_POWER_WARNING) {
733 1.4 garbled if (tctrl_apm_record_event(sc, APM_BATTERY_LOW))
734 1.1 matt printf("%s: LOW POWER WARNING!\n", sc->sc_dev.dv_xname);
735 1.4 garbled }
736 1.4 garbled if (v & TS102_EVENT_STATUS_DC_STATUS_CHANGE) {
737 1.4 garbled splx(s);
738 1.4 garbled tctrl_read_ext_status();
739 1.4 garbled s = splts102();
740 1.4 garbled if (tctrl_apm_record_event(sc, APM_POWER_CHANGE))
741 1.1 matt printf("%s: main power %s\n", sc->sc_dev.dv_xname,
742 1.4 garbled (sc->sc_ext_status &
743 1.4 garbled TS102_EXT_STATUS_MAIN_POWER_AVAILABLE) ?
744 1.4 garbled "restored" : "removed");
745 1.4 garbled }
746 1.4 garbled if (v & TS102_EVENT_STATUS_LID_STATUS_CHANGE) {
747 1.4 garbled splx(s);
748 1.4 garbled tctrl_read_ext_status();
749 1.4 garbled tctrl_setup_bitport();
750 1.4 garbled #ifdef TCTRLDEBUG
751 1.4 garbled printf("%s: lid %s\n", sc->sc_dev.dv_xname,
752 1.4 garbled (sc->sc_ext_status & TS102_EXT_STATUS_LID_DOWN)
753 1.4 garbled ? "closed" : "opened");
754 1.2 matt #endif
755 1.1 matt }
756 1.4 garbled splx(s);
757 1.1 matt }
758 1.1 matt
759 1.1 matt void
760 1.4 garbled tadpole_request(req, spin)
761 1.4 garbled struct tctrl_req *req;
762 1.4 garbled int spin;
763 1.1 matt {
764 1.1 matt struct tctrl_softc *sc;
765 1.1 matt int i, s;
766 1.1 matt
767 1.1 matt if (tctrl_cd.cd_devs == NULL
768 1.1 matt || tctrl_cd.cd_ndevs == 0
769 1.4 garbled || tctrl_cd.cd_devs[TCTRL_STD_DEV] == NULL) {
770 1.1 matt return;
771 1.1 matt }
772 1.1 matt
773 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
774 1.4 garbled while (sc->sc_wantdata != 0) {
775 1.4 garbled if (req->p != NULL)
776 1.4 garbled tsleep(&sc->sc_wantdata, PLOCK, "tctrl_lock", 10);
777 1.4 garbled else
778 1.4 garbled DELAY(1);
779 1.4 garbled }
780 1.4 garbled if (spin)
781 1.4 garbled s = splhigh();
782 1.4 garbled else
783 1.4 garbled s = splts102();
784 1.4 garbled sc->sc_flags |= TCTRL_SEND_REQUEST;
785 1.4 garbled memcpy(sc->sc_cmdbuf, req->cmdbuf, req->cmdlen);
786 1.4 garbled sc->sc_wantdata = 1;
787 1.4 garbled sc->sc_rsplen = req->rsplen;
788 1.4 garbled sc->sc_cmdlen = req->cmdlen;
789 1.4 garbled sc->sc_cmdoff = sc->sc_rspoff = 0;
790 1.4 garbled
791 1.4 garbled /* we spin for certain commands, like poweroffs */
792 1.4 garbled if (spin) {
793 1.6 garbled /* for (i = 0; i < 30000; i++) {*/
794 1.6 garbled while (sc->sc_wantdata == 1) {
795 1.4 garbled tctrl_intr(sc);
796 1.4 garbled DELAY(1);
797 1.4 garbled }
798 1.4 garbled } else {
799 1.1 matt tctrl_intr(sc);
800 1.5 garbled i = 0;
801 1.5 garbled while (((sc->sc_rspoff != sc->sc_rsplen) ||
802 1.5 garbled (sc->sc_cmdoff != sc->sc_cmdlen)) &&
803 1.5 garbled (i < (5 * sc->sc_rsplen + sc->sc_cmdlen)))
804 1.5 garbled if (req->p != NULL) {
805 1.5 garbled tsleep(sc, PWAIT, "tctrl_data", 15);
806 1.5 garbled i++;
807 1.5 garbled }
808 1.4 garbled else
809 1.4 garbled DELAY(1);
810 1.1 matt }
811 1.5 garbled /*
812 1.5 garbled * we give the user a reasonable amount of time for a command
813 1.5 garbled * to complete. If it doesn't complete in time, we hand them
814 1.5 garbled * garbage. This is here to stop things like setting the
815 1.5 garbled * rsplen too long, and sleeping forever in a CMD_REQ ioctl.
816 1.5 garbled */
817 1.5 garbled sc->sc_wantdata = 0;
818 1.4 garbled memcpy(req->rspbuf, sc->sc_rspbuf, req->rsplen);
819 1.1 matt splx(s);
820 1.1 matt }
821 1.1 matt
822 1.1 matt void
823 1.4 garbled tadpole_powerdown(void)
824 1.4 garbled {
825 1.4 garbled struct tctrl_req req;
826 1.4 garbled
827 1.4 garbled req.cmdbuf[0] = TS102_OP_ADMIN_POWER_OFF;
828 1.4 garbled req.cmdlen = 1;
829 1.4 garbled req.rsplen = 1;
830 1.4 garbled req.p = NULL;
831 1.4 garbled tadpole_request(&req, 1);
832 1.4 garbled }
833 1.4 garbled
834 1.4 garbled void
835 1.4 garbled tadpole_set_video(enabled)
836 1.4 garbled int enabled;
837 1.1 matt {
838 1.1 matt struct tctrl_softc *sc;
839 1.4 garbled struct tctrl_req req;
840 1.1 matt int s;
841 1.1 matt
842 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
843 1.4 garbled while (sc->sc_wantdata != 0)
844 1.4 garbled DELAY(1);
845 1.4 garbled s = splts102();
846 1.4 garbled req.p = NULL;
847 1.4 garbled if ((sc->sc_ext_status & TS102_EXT_STATUS_LID_DOWN && !enabled)
848 1.4 garbled || (sc->sc_tft_on)) {
849 1.4 garbled req.cmdbuf[2] = TS102_BITPORT_TFTPWR;
850 1.4 garbled } else {
851 1.4 garbled req.cmdbuf[2] = 0;
852 1.1 matt }
853 1.4 garbled req.cmdbuf[0] = TS102_OP_CTL_BITPORT;
854 1.4 garbled req.cmdbuf[1] = ~TS102_BITPORT_TFTPWR;
855 1.4 garbled req.cmdlen = 3;
856 1.4 garbled req.rsplen = 2;
857 1.1 matt
858 1.1 matt if ((sc->sc_tft_on && !enabled) || (!sc->sc_tft_on && enabled)) {
859 1.1 matt sc->sc_tft_on = enabled;
860 1.1 matt if (sc->sc_ext_status & TS102_EXT_STATUS_LID_DOWN) {
861 1.1 matt splx(s);
862 1.1 matt return;
863 1.1 matt }
864 1.4 garbled tadpole_request(&req, 1);
865 1.4 garbled sc->sc_bitport =
866 1.4 garbled (req.rspbuf[0] & req.cmdbuf[1]) ^ req.cmdbuf[2];
867 1.1 matt }
868 1.1 matt splx(s);
869 1.1 matt }
870 1.1 matt
871 1.1 matt static void
872 1.4 garbled tctrl_write_data(sc, v)
873 1.4 garbled struct tctrl_softc *sc;
874 1.4 garbled u_int8_t v;
875 1.1 matt {
876 1.1 matt unsigned int i;
877 1.4 garbled
878 1.1 matt for (i = 0; i < 100; i++) {
879 1.24.2.5 skrll if (TS102_UCTRL_STS_TXNF_STA &
880 1.24.2.5 skrll tctrl_read(sc, TS102_REG_UCTRL_STS))
881 1.1 matt break;
882 1.1 matt }
883 1.1 matt tctrl_write(sc, TS102_REG_UCTRL_DATA, v);
884 1.1 matt }
885 1.1 matt
886 1.1 matt static u_int8_t
887 1.4 garbled tctrl_read_data(sc)
888 1.4 garbled struct tctrl_softc *sc;
889 1.4 garbled {
890 1.1 matt unsigned int i, v;
891 1.1 matt
892 1.1 matt for (i = 0; i < 100000; i++) {
893 1.24.2.5 skrll if (TS102_UCTRL_STS_RXNE_STA &
894 1.24.2.5 skrll tctrl_read(sc, TS102_REG_UCTRL_STS))
895 1.1 matt break;
896 1.1 matt DELAY(1);
897 1.1 matt }
898 1.1 matt
899 1.1 matt v = tctrl_read(sc, TS102_REG_UCTRL_DATA);
900 1.2 matt tctrl_write(sc, TS102_REG_UCTRL_STS, TS102_UCTRL_STS_RXNE_STA);
901 1.1 matt return v;
902 1.1 matt }
903 1.1 matt
904 1.1 matt static u_int8_t
905 1.4 garbled tctrl_read(sc, off)
906 1.4 garbled struct tctrl_softc *sc;
907 1.4 garbled bus_size_t off;
908 1.1 matt {
909 1.4 garbled
910 1.2 matt sc->sc_junk = bus_space_read_1(sc->sc_memt, sc->sc_memh, off);
911 1.1 matt return sc->sc_junk;
912 1.1 matt }
913 1.1 matt
914 1.1 matt static void
915 1.4 garbled tctrl_write(sc, off, v)
916 1.4 garbled struct tctrl_softc *sc;
917 1.4 garbled bus_size_t off;
918 1.4 garbled u_int8_t v;
919 1.1 matt {
920 1.4 garbled
921 1.1 matt sc->sc_junk = v;
922 1.2 matt bus_space_write_1(sc->sc_memt, sc->sc_memh, off, v);
923 1.4 garbled }
924 1.4 garbled
925 1.4 garbled int
926 1.24.2.4 skrll tctrlopen(dev, flags, mode, l)
927 1.4 garbled dev_t dev;
928 1.4 garbled int flags, mode;
929 1.24.2.4 skrll struct lwp *l;
930 1.4 garbled {
931 1.4 garbled int unit = (minor(dev)&0xf0);
932 1.4 garbled int ctl = (minor(dev)&0x0f);
933 1.4 garbled struct tctrl_softc *sc;
934 1.4 garbled
935 1.4 garbled if (unit >= tctrl_cd.cd_ndevs)
936 1.4 garbled return(ENXIO);
937 1.4 garbled sc = tctrl_cd.cd_devs[TCTRL_STD_DEV];
938 1.4 garbled if (!sc)
939 1.4 garbled return(ENXIO);
940 1.4 garbled
941 1.4 garbled switch (ctl) {
942 1.4 garbled case TCTRL_STD_DEV:
943 1.4 garbled break;
944 1.4 garbled case TCTRL_APMCTL_DEV:
945 1.4 garbled if (!(flags & FWRITE))
946 1.4 garbled return(EINVAL);
947 1.4 garbled if (sc->sc_flags & TCTRL_APM_CTLOPEN)
948 1.4 garbled return(EBUSY);
949 1.4 garbled sc->sc_flags |= TCTRL_APM_CTLOPEN;
950 1.4 garbled break;
951 1.4 garbled default:
952 1.4 garbled return(ENXIO);
953 1.4 garbled break;
954 1.4 garbled }
955 1.4 garbled
956 1.4 garbled return(0);
957 1.4 garbled }
958 1.4 garbled
959 1.4 garbled int
960 1.24.2.4 skrll tctrlclose(dev, flags, mode, l)
961 1.4 garbled dev_t dev;
962 1.4 garbled int flags, mode;
963 1.24.2.4 skrll struct lwp *l;
964 1.4 garbled {
965 1.4 garbled int ctl = (minor(dev)&0x0f);
966 1.4 garbled struct tctrl_softc *sc;
967 1.4 garbled
968 1.4 garbled sc = tctrl_cd.cd_devs[TCTRL_STD_DEV];
969 1.4 garbled if (!sc)
970 1.4 garbled return(ENXIO);
971 1.4 garbled
972 1.4 garbled switch (ctl) {
973 1.4 garbled case TCTRL_STD_DEV:
974 1.4 garbled break;
975 1.4 garbled case TCTRL_APMCTL_DEV:
976 1.4 garbled sc->sc_flags &= ~TCTRL_APM_CTLOPEN;
977 1.4 garbled break;
978 1.4 garbled }
979 1.4 garbled return(0);
980 1.4 garbled }
981 1.4 garbled
982 1.4 garbled int
983 1.24.2.4 skrll tctrlioctl(dev, cmd, data, flags, l)
984 1.4 garbled dev_t dev;
985 1.4 garbled u_long cmd;
986 1.4 garbled caddr_t data;
987 1.4 garbled int flags;
988 1.24.2.4 skrll struct lwp *l;
989 1.4 garbled {
990 1.4 garbled struct tctrl_req req, *reqn;
991 1.7 jdc struct tctrl_pwr *pwrreq;
992 1.4 garbled struct apm_power_info *powerp;
993 1.4 garbled struct apm_event_info *evp;
994 1.4 garbled struct tctrl_softc *sc;
995 1.4 garbled int i;
996 1.24.2.5 skrll /*u_int j;*/
997 1.4 garbled u_int16_t a;
998 1.4 garbled u_int8_t c;
999 1.4 garbled
1000 1.4 garbled if (tctrl_cd.cd_devs == NULL
1001 1.4 garbled || tctrl_cd.cd_ndevs == 0
1002 1.4 garbled || tctrl_cd.cd_devs[TCTRL_STD_DEV] == NULL) {
1003 1.4 garbled return ENXIO;
1004 1.4 garbled }
1005 1.4 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
1006 1.4 garbled switch (cmd) {
1007 1.4 garbled
1008 1.4 garbled case APM_IOC_STANDBY:
1009 1.4 garbled return(EOPNOTSUPP); /* for now */
1010 1.4 garbled
1011 1.4 garbled case APM_IOC_SUSPEND:
1012 1.4 garbled return(EOPNOTSUPP); /* for now */
1013 1.4 garbled
1014 1.19 takemura case OAPM_IOC_GETPOWER:
1015 1.4 garbled case APM_IOC_GETPOWER:
1016 1.4 garbled powerp = (struct apm_power_info *)data;
1017 1.4 garbled req.cmdbuf[0] = TS102_OP_RD_INT_CHARGE_RATE;
1018 1.4 garbled req.cmdlen = 1;
1019 1.4 garbled req.rsplen = 2;
1020 1.24.2.4 skrll req.p = l->l_proc;
1021 1.4 garbled tadpole_request(&req, 0);
1022 1.4 garbled if (req.rspbuf[0] > 0x00)
1023 1.4 garbled powerp->battery_state = APM_BATT_CHARGING;
1024 1.4 garbled req.cmdbuf[0] = TS102_OP_RD_INT_CHARGE_LEVEL;
1025 1.4 garbled req.cmdlen = 1;
1026 1.4 garbled req.rsplen = 3;
1027 1.24.2.4 skrll req.p = l->l_proc;
1028 1.4 garbled tadpole_request(&req, 0);
1029 1.4 garbled c = req.rspbuf[0];
1030 1.4 garbled powerp->battery_life = c;
1031 1.6 garbled if (c > 0x70) /* the tadpole sometimes dips below zero, and */
1032 1.6 garbled c = 0; /* into the 255 range. */
1033 1.4 garbled powerp->minutes_left = (45 * c) / 100; /* XXX based on 45 min */
1034 1.4 garbled if (powerp->battery_state != APM_BATT_CHARGING) {
1035 1.4 garbled if (c < 0x20)
1036 1.4 garbled powerp->battery_state = APM_BATT_CRITICAL;
1037 1.4 garbled else if (c < 0x40)
1038 1.4 garbled powerp->battery_state = APM_BATT_LOW;
1039 1.4 garbled else if (c < 0x66)
1040 1.4 garbled powerp->battery_state = APM_BATT_HIGH;
1041 1.4 garbled else
1042 1.4 garbled powerp->battery_state = APM_BATT_UNKNOWN;
1043 1.4 garbled }
1044 1.4 garbled req.cmdbuf[0] = TS102_OP_RD_EXT_STATUS;
1045 1.4 garbled req.cmdlen = 1;
1046 1.4 garbled req.rsplen = 3;
1047 1.24.2.4 skrll req.p = l->l_proc;
1048 1.4 garbled tadpole_request(&req, 0);
1049 1.4 garbled a = req.rspbuf[0] * 256 + req.rspbuf[1];
1050 1.4 garbled if (a & TS102_EXT_STATUS_MAIN_POWER_AVAILABLE)
1051 1.4 garbled powerp->ac_state = APM_AC_ON;
1052 1.4 garbled else
1053 1.4 garbled powerp->ac_state = APM_AC_OFF;
1054 1.4 garbled break;
1055 1.4 garbled
1056 1.4 garbled case APM_IOC_NEXTEVENT:
1057 1.4 garbled if (!sc->sc_event_count)
1058 1.4 garbled return EAGAIN;
1059 1.4 garbled
1060 1.4 garbled evp = (struct apm_event_info *)data;
1061 1.4 garbled i = sc->sc_event_ptr + APM_NEVENTS - sc->sc_event_count;
1062 1.4 garbled i %= APM_NEVENTS;
1063 1.4 garbled *evp = sc->sc_event_list[i];
1064 1.4 garbled sc->sc_event_count--;
1065 1.4 garbled return(0);
1066 1.4 garbled
1067 1.4 garbled /* this ioctl assumes the caller knows exactly what he is doing */
1068 1.4 garbled case TCTRL_CMD_REQ:
1069 1.4 garbled reqn = (struct tctrl_req *)data;
1070 1.24.2.4 skrll if ((i = suser(l->l_proc->p_ucred, &l->l_proc->p_acflag)) != 0 &&
1071 1.4 garbled (reqn->cmdbuf[0] == TS102_OP_CTL_BITPORT ||
1072 1.4 garbled (reqn->cmdbuf[0] >= TS102_OP_CTL_WATCHDOG &&
1073 1.4 garbled reqn->cmdbuf[0] <= TS102_OP_CTL_SECURITY_KEY) ||
1074 1.4 garbled reqn->cmdbuf[0] == TS102_OP_CTL_TIMEZONE ||
1075 1.4 garbled reqn->cmdbuf[0] == TS102_OP_CTL_DIAGNOSTIC_MODE ||
1076 1.4 garbled reqn->cmdbuf[0] == TS102_OP_CMD_SOFTWARE_RESET ||
1077 1.4 garbled (reqn->cmdbuf[0] >= TS102_OP_CMD_SET_RTC &&
1078 1.4 garbled reqn->cmdbuf[0] < TS102_OP_RD_INT_CHARGE_LEVEL) ||
1079 1.4 garbled reqn->cmdbuf[0] > TS102_OP_RD_EXT_CHARGE_LEVEL))
1080 1.4 garbled return(i);
1081 1.24.2.4 skrll reqn->p = l->l_proc;
1082 1.4 garbled tadpole_request(reqn, 0);
1083 1.4 garbled break;
1084 1.7 jdc /* serial power mode (via auxiotwo) */
1085 1.7 jdc case TCTRL_SERIAL_PWR:
1086 1.7 jdc pwrreq = (struct tctrl_pwr *)data;
1087 1.7 jdc if (pwrreq->rw)
1088 1.7 jdc pwrreq->state = auxiotwoserialgetapm();
1089 1.7 jdc else
1090 1.7 jdc auxiotwoserialsetapm(pwrreq->state);
1091 1.7 jdc break;
1092 1.7 jdc
1093 1.7 jdc /* modem power mode (via auxio) */
1094 1.7 jdc case TCTRL_MODEM_PWR:
1095 1.7 jdc return(EOPNOTSUPP); /* for now */
1096 1.7 jdc break;
1097 1.4 garbled
1098 1.4 garbled
1099 1.4 garbled default:
1100 1.4 garbled return (ENOTTY);
1101 1.4 garbled }
1102 1.4 garbled return (0);
1103 1.4 garbled }
1104 1.4 garbled
1105 1.4 garbled int
1106 1.24.2.4 skrll tctrlpoll(dev, events, l)
1107 1.4 garbled dev_t dev;
1108 1.4 garbled int events;
1109 1.24.2.4 skrll struct lwp *l;
1110 1.4 garbled {
1111 1.4 garbled struct tctrl_softc *sc = tctrl_cd.cd_devs[TCTRL_STD_DEV];
1112 1.4 garbled int revents = 0;
1113 1.4 garbled
1114 1.4 garbled if (events & (POLLIN | POLLRDNORM)) {
1115 1.4 garbled if (sc->sc_event_count)
1116 1.4 garbled revents |= events & (POLLIN | POLLRDNORM);
1117 1.4 garbled else
1118 1.24.2.4 skrll selrecord(l, &sc->sc_rsel);
1119 1.4 garbled }
1120 1.4 garbled
1121 1.4 garbled return (revents);
1122 1.1 matt }
1123 1.20 jdolecek
1124 1.20 jdolecek static void
1125 1.20 jdolecek filt_tctrlrdetach(struct knote *kn)
1126 1.20 jdolecek {
1127 1.20 jdolecek struct tctrl_softc *sc = kn->kn_hook;
1128 1.20 jdolecek int s;
1129 1.20 jdolecek
1130 1.20 jdolecek s = splts102();
1131 1.21 christos SLIST_REMOVE(&sc->sc_rsel.sel_klist, kn, knote, kn_selnext);
1132 1.20 jdolecek splx(s);
1133 1.20 jdolecek }
1134 1.20 jdolecek
1135 1.20 jdolecek static int
1136 1.20 jdolecek filt_tctrlread(struct knote *kn, long hint)
1137 1.20 jdolecek {
1138 1.20 jdolecek struct tctrl_softc *sc = kn->kn_hook;
1139 1.20 jdolecek
1140 1.20 jdolecek kn->kn_data = sc->sc_event_count;
1141 1.20 jdolecek return (kn->kn_data > 0);
1142 1.20 jdolecek }
1143 1.20 jdolecek
1144 1.20 jdolecek static const struct filterops tctrlread_filtops =
1145 1.20 jdolecek { 1, NULL, filt_tctrlrdetach, filt_tctrlread };
1146 1.20 jdolecek
1147 1.20 jdolecek int
1148 1.20 jdolecek tctrlkqfilter(dev_t dev, struct knote *kn)
1149 1.20 jdolecek {
1150 1.20 jdolecek struct tctrl_softc *sc = tctrl_cd.cd_devs[TCTRL_STD_DEV];
1151 1.20 jdolecek struct klist *klist;
1152 1.20 jdolecek int s;
1153 1.20 jdolecek
1154 1.20 jdolecek switch (kn->kn_filter) {
1155 1.20 jdolecek case EVFILT_READ:
1156 1.21 christos klist = &sc->sc_rsel.sel_klist;
1157 1.20 jdolecek kn->kn_fop = &tctrlread_filtops;
1158 1.20 jdolecek break;
1159 1.20 jdolecek
1160 1.20 jdolecek default:
1161 1.20 jdolecek return (1);
1162 1.20 jdolecek }
1163 1.20 jdolecek
1164 1.20 jdolecek kn->kn_hook = sc;
1165 1.20 jdolecek
1166 1.20 jdolecek s = splts102();
1167 1.20 jdolecek SLIST_INSERT_HEAD(klist, kn, kn_selnext);
1168 1.20 jdolecek splx(s);
1169 1.20 jdolecek
1170 1.20 jdolecek return (0);
1171 1.20 jdolecek }
1172 1.20 jdolecek
1173 1.6 garbled /* DO NOT SET THIS OPTION */
1174 1.6 garbled #ifdef TADPOLE_BLINK
1175 1.6 garbled void
1176 1.6 garbled cpu_disk_unbusy(busy)
1177 1.6 garbled int busy;
1178 1.6 garbled {
1179 1.6 garbled static struct timeval tctrl_ds_timestamp;
1180 1.6 garbled struct timeval dv_time, diff_time;
1181 1.6 garbled struct tctrl_softc *sc;
1182 1.6 garbled
1183 1.6 garbled sc = (struct tctrl_softc *) tctrl_cd.cd_devs[TCTRL_STD_DEV];
1184 1.6 garbled
1185 1.6 garbled /* quickly bail */
1186 1.6 garbled if (!(sc->sc_lcdstate & TS102_LCD_DISK_ACTIVE) || busy > 0)
1187 1.6 garbled return;
1188 1.6 garbled
1189 1.6 garbled /* we aren't terribly concerned with precision here */
1190 1.6 garbled dv_time = mono_time;
1191 1.6 garbled timersub(&dv_time, &tctrl_ds_timestamp, &diff_time);
1192 1.6 garbled
1193 1.6 garbled if (diff_time.tv_sec > 0) {
1194 1.6 garbled tctrl_set_lcd(0, TS102_LCD_DISK_ACTIVE);
1195 1.6 garbled tctrl_ds_timestamp = mono_time;
1196 1.6 garbled }
1197 1.6 garbled }
1198 1.6 garbled #endif
1199 1.24.2.5 skrll
1200 1.24.2.5 skrll static void
1201 1.24.2.5 skrll tctrl_sensor_setup(struct tctrl_softc *sc)
1202 1.24.2.5 skrll {
1203 1.24.2.5 skrll int error;
1204 1.24.2.5 skrll
1205 1.24.2.5 skrll /* case temperature */
1206 1.24.2.5 skrll strcpy(sc->sc_binfo[0].desc, "Case temperature");
1207 1.24.2.5 skrll sc->sc_binfo[0].sensor = 0;
1208 1.24.2.5 skrll sc->sc_binfo[0].units = ENVSYS_STEMP;
1209 1.24.2.5 skrll sc->sc_binfo[0].validflags = ENVSYS_FVALID | ENVSYS_FCURVALID;
1210 1.24.2.5 skrll sc->sc_range[0].low = 0;
1211 1.24.2.5 skrll sc->sc_range[0].high = 0;
1212 1.24.2.5 skrll sc->sc_range[0].units = ENVSYS_STEMP;
1213 1.24.2.5 skrll sc->sc_tre[0].sensor = 0;
1214 1.24.2.5 skrll sc->sc_tre[0].warnflags = ENVSYS_WARN_OK;
1215 1.24.2.5 skrll sc->sc_tre[0].validflags = ENVSYS_FVALID | ENVSYS_FCURVALID;
1216 1.24.2.5 skrll sc->sc_tre[0].units = ENVSYS_STEMP;
1217 1.24.2.5 skrll
1218 1.24.2.5 skrll /* battery voltage */
1219 1.24.2.5 skrll strcpy(sc->sc_binfo[1].desc, "Internal battery voltage");
1220 1.24.2.5 skrll sc->sc_binfo[1].sensor = 1;
1221 1.24.2.5 skrll sc->sc_binfo[1].units = ENVSYS_SVOLTS_DC;
1222 1.24.2.5 skrll sc->sc_binfo[1].validflags = ENVSYS_FVALID | ENVSYS_FCURVALID;
1223 1.24.2.5 skrll sc->sc_range[1].low = 0;
1224 1.24.2.5 skrll sc->sc_range[1].high = 0;
1225 1.24.2.5 skrll sc->sc_range[1].units = ENVSYS_SVOLTS_DC;
1226 1.24.2.5 skrll sc->sc_tre[1].sensor = 0;
1227 1.24.2.5 skrll sc->sc_tre[1].warnflags = ENVSYS_WARN_OK;
1228 1.24.2.5 skrll sc->sc_tre[1].validflags = ENVSYS_FVALID | ENVSYS_FCURVALID;
1229 1.24.2.5 skrll sc->sc_tre[1].units = ENVSYS_SVOLTS_DC;
1230 1.24.2.5 skrll
1231 1.24.2.5 skrll /* DC voltage */
1232 1.24.2.5 skrll strcpy(sc->sc_binfo[2].desc, "DC-In voltage");
1233 1.24.2.5 skrll sc->sc_binfo[2].sensor = 2;
1234 1.24.2.5 skrll sc->sc_binfo[2].units = ENVSYS_SVOLTS_DC;
1235 1.24.2.5 skrll sc->sc_binfo[2].validflags = ENVSYS_FVALID | ENVSYS_FCURVALID;
1236 1.24.2.5 skrll sc->sc_range[2].low = 0;
1237 1.24.2.5 skrll sc->sc_range[2].high = 0;
1238 1.24.2.5 skrll sc->sc_range[2].units = ENVSYS_SVOLTS_DC;
1239 1.24.2.5 skrll sc->sc_tre[2].sensor = 0;
1240 1.24.2.5 skrll sc->sc_tre[2].warnflags = ENVSYS_WARN_OK;
1241 1.24.2.5 skrll sc->sc_tre[2].validflags = ENVSYS_FVALID | ENVSYS_FCURVALID;
1242 1.24.2.5 skrll sc->sc_tre[2].units = ENVSYS_SVOLTS_DC;
1243 1.24.2.5 skrll
1244 1.24.2.5 skrll sc->sc_sme.sme_nsensors = ENVSYS_NUMSENSORS;
1245 1.24.2.5 skrll sc->sc_sme.sme_envsys_version = 1000;
1246 1.24.2.5 skrll sc->sc_sme.sme_ranges = sc->sc_range;
1247 1.24.2.5 skrll sc->sc_sme.sme_sensor_info = sc->sc_binfo;
1248 1.24.2.5 skrll sc->sc_sme.sme_sensor_data = sc->sc_tre;
1249 1.24.2.5 skrll sc->sc_sme.sme_cookie = sc;
1250 1.24.2.5 skrll sc->sc_sme.sme_gtredata = tctrl_gtredata;
1251 1.24.2.5 skrll sc->sc_sme.sme_streinfo = tctrl_streinfo;
1252 1.24.2.5 skrll sc->sc_sme.sme_flags = 0;
1253 1.24.2.5 skrll
1254 1.24.2.5 skrll if ((error = sysmon_envsys_register(&sc->sc_sme)) != 0) {
1255 1.24.2.5 skrll printf("%s: couldn't register sensors (%d)\n",
1256 1.24.2.5 skrll sc->sc_dev.dv_xname, error);
1257 1.24.2.5 skrll }
1258 1.24.2.5 skrll
1259 1.24.2.5 skrll /* now register the power button */
1260 1.24.2.5 skrll
1261 1.24.2.5 skrll sysmon_task_queue_init();
1262 1.24.2.5 skrll
1263 1.24.2.5 skrll sc->sc_powerpressed = 0;
1264 1.24.2.5 skrll memset(&sc->sc_smcontext, 0, sizeof(struct sysmon_pswitch));
1265 1.24.2.5 skrll sc->sc_smcontext.smpsw_name = sc->sc_dev.dv_xname;
1266 1.24.2.5 skrll sc->sc_smcontext.smpsw_type = PSWITCH_TYPE_POWER;
1267 1.24.2.5 skrll if (sysmon_pswitch_register(&sc->sc_smcontext) != 0)
1268 1.24.2.5 skrll printf("%s: unable to register power button with sysmon\n",
1269 1.24.2.5 skrll sc->sc_dev.dv_xname);
1270 1.24.2.5 skrll }
1271 1.24.2.5 skrll
1272 1.24.2.5 skrll static void
1273 1.24.2.5 skrll tctrl_power_button_pressed(void *arg)
1274 1.24.2.5 skrll {
1275 1.24.2.5 skrll struct tctrl_softc *sc = arg;
1276 1.24.2.5 skrll
1277 1.24.2.5 skrll sysmon_pswitch_event(&sc->sc_smcontext, PSWITCH_EVENT_PRESSED);
1278 1.24.2.5 skrll sc->sc_powerpressed = 0;
1279 1.24.2.5 skrll }
1280 1.24.2.5 skrll
1281 1.24.2.5 skrll static int
1282 1.24.2.5 skrll tctrl_powerfail(void *arg)
1283 1.24.2.5 skrll {
1284 1.24.2.5 skrll struct tctrl_softc *sc = (struct tctrl_softc *)arg;
1285 1.24.2.5 skrll
1286 1.24.2.5 skrll /*
1287 1.24.2.5 skrll * We lost power. Queue a callback with thread context to
1288 1.24.2.5 skrll * handle all the real work.
1289 1.24.2.5 skrll */
1290 1.24.2.5 skrll if (sc->sc_powerpressed == 0) {
1291 1.24.2.5 skrll sc->sc_powerpressed = 1;
1292 1.24.2.5 skrll sysmon_task_queue_sched(0, tctrl_power_button_pressed, sc);
1293 1.24.2.5 skrll }
1294 1.24.2.5 skrll return (1);
1295 1.24.2.5 skrll }
1296 1.24.2.5 skrll
1297 1.24.2.5 skrll static int
1298 1.24.2.5 skrll tctrl_gtredata(struct sysmon_envsys *sme, struct envsys_tre_data *tred)
1299 1.24.2.5 skrll {
1300 1.24.2.5 skrll /*struct tctrl_softc *sc = sme->sme_cookie;*/
1301 1.24.2.5 skrll struct envsys_tre_data *cur_tre;
1302 1.24.2.5 skrll struct envsys_basic_info *cur_i;
1303 1.24.2.5 skrll struct tctrl_req req;
1304 1.24.2.5 skrll struct proc *p;
1305 1.24.2.5 skrll int i;
1306 1.24.2.5 skrll
1307 1.24.2.5 skrll i = tred->sensor;
1308 1.24.2.5 skrll cur_tre = &sme->sme_sensor_data[i];
1309 1.24.2.5 skrll cur_i = &sme->sme_sensor_info[i];
1310 1.24.2.5 skrll p = __curproc();
1311 1.24.2.5 skrll
1312 1.24.2.5 skrll switch (i)
1313 1.24.2.5 skrll {
1314 1.24.2.5 skrll case 0: /* case temperature */
1315 1.24.2.5 skrll req.cmdbuf[0] = TS102_OP_RD_CURRENT_TEMP;
1316 1.24.2.5 skrll req.cmdlen = 1;
1317 1.24.2.5 skrll req.rsplen = 2;
1318 1.24.2.5 skrll req.p = p;
1319 1.24.2.5 skrll tadpole_request(&req, 0);
1320 1.24.2.5 skrll cur_tre->cur.data_us = /* 273160? */
1321 1.24.2.5 skrll (u_int32_t)((int)((int)req.rspbuf[0] - 32) * 5000000
1322 1.24.2.5 skrll / 9 + 273150000);
1323 1.24.2.5 skrll cur_tre->validflags |= ENVSYS_FCURVALID;
1324 1.24.2.5 skrll req.cmdbuf[0] = TS102_OP_RD_MAX_TEMP;
1325 1.24.2.5 skrll req.cmdlen = 1;
1326 1.24.2.5 skrll req.rsplen = 2;
1327 1.24.2.5 skrll req.p = p;
1328 1.24.2.5 skrll tadpole_request(&req, 0);
1329 1.24.2.5 skrll cur_tre->max.data_us =
1330 1.24.2.5 skrll (u_int32_t)((int)((int)req.rspbuf[0] - 32) * 5000000
1331 1.24.2.5 skrll / 9 + 273150000);
1332 1.24.2.5 skrll cur_tre->validflags |= ENVSYS_FMAXVALID;
1333 1.24.2.5 skrll req.cmdbuf[0] = TS102_OP_RD_MIN_TEMP;
1334 1.24.2.5 skrll req.cmdlen = 1;
1335 1.24.2.5 skrll req.rsplen = 2;
1336 1.24.2.5 skrll req.p = p;
1337 1.24.2.5 skrll tadpole_request(&req, 0);
1338 1.24.2.5 skrll cur_tre->min.data_us =
1339 1.24.2.5 skrll (u_int32_t)((int)((int)req.rspbuf[0] - 32) * 5000000
1340 1.24.2.5 skrll / 9 + 273150000);
1341 1.24.2.5 skrll cur_tre->validflags |= ENVSYS_FMINVALID;
1342 1.24.2.5 skrll cur_tre->units = ENVSYS_STEMP;
1343 1.24.2.5 skrll break;
1344 1.24.2.5 skrll
1345 1.24.2.5 skrll case 1: /* battery voltage */
1346 1.24.2.5 skrll {
1347 1.24.2.5 skrll cur_tre->validflags =
1348 1.24.2.5 skrll ENVSYS_FVALID|ENVSYS_FCURVALID;
1349 1.24.2.5 skrll cur_tre->units = ENVSYS_SVOLTS_DC;
1350 1.24.2.5 skrll req.cmdbuf[0] = TS102_OP_RD_INT_BATT_VLT;
1351 1.24.2.5 skrll req.cmdlen = 1;
1352 1.24.2.5 skrll req.rsplen = 2;
1353 1.24.2.5 skrll req.p = p;
1354 1.24.2.5 skrll tadpole_request(&req, 0);
1355 1.24.2.5 skrll cur_tre->cur.data_s = (int32_t)req.rspbuf[0] *
1356 1.24.2.5 skrll 1000000 / 11;
1357 1.24.2.5 skrll }
1358 1.24.2.5 skrll break;
1359 1.24.2.5 skrll case 2: /* DC voltage */
1360 1.24.2.5 skrll {
1361 1.24.2.5 skrll cur_tre->validflags =
1362 1.24.2.5 skrll ENVSYS_FVALID|ENVSYS_FCURVALID;
1363 1.24.2.5 skrll cur_tre->units = ENVSYS_SVOLTS_DC;
1364 1.24.2.5 skrll req.cmdbuf[0] = TS102_OP_RD_DC_IN_VLT;
1365 1.24.2.5 skrll req.cmdlen = 1;
1366 1.24.2.5 skrll req.rsplen = 2;
1367 1.24.2.5 skrll req.p = p;
1368 1.24.2.5 skrll tadpole_request(&req, 0);
1369 1.24.2.5 skrll cur_tre->cur.data_s = (int32_t)req.rspbuf[0] *
1370 1.24.2.5 skrll 1000000 / 11;
1371 1.24.2.5 skrll }
1372 1.24.2.5 skrll break;
1373 1.24.2.5 skrll }
1374 1.24.2.5 skrll cur_tre->validflags |= ENVSYS_FVALID;
1375 1.24.2.5 skrll *tred = sme->sme_sensor_data[i];
1376 1.24.2.5 skrll return 0;
1377 1.24.2.5 skrll }
1378 1.24.2.5 skrll
1379 1.24.2.5 skrll
1380 1.24.2.5 skrll static int
1381 1.24.2.5 skrll tctrl_streinfo(struct sysmon_envsys *sme, struct envsys_basic_info *binfo)
1382 1.24.2.5 skrll {
1383 1.24.2.5 skrll /* There is nothing to set here. */
1384 1.24.2.5 skrll return (EINVAL);
1385 1.24.2.5 skrll }
1386 1.24.2.5 skrll
1387