Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / i386 / acpica / acpi_machdep.c
1 /*-
2  * Copyright (c) 2001 Mitsuru IWASAKI
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *      $DragonFly: src/sys/i386/acpica/Attic/acpi_machdep.c,v 1.4 2004/05/26 19:10:00 dillon Exp $ 
26  */
27
28 #include <sys/cdefs.h>
29
30 #include <sys/param.h>
31 #include <sys/bus.h>
32 #include <sys/conf.h>
33 #include <sys/fcntl.h>
34 #include <sys/uio.h>
35
36 #include "acpi.h"
37
38 #include <dev/acpica/acpivar.h>
39 #include <dev/acpica/acpiio.h>
40
41 static device_t acpi_dev;
42
43 /*
44  * APM driver emulation 
45  */
46
47 #if defined(__DragonFly__) || __FreeBSD_version < 500000
48 #include <sys/select.h>
49 #else
50 #include <sys/selinfo.h>
51 #endif
52
53 #include <machine/apm_bios.h>
54 #include <machine/pc/bios.h>
55
56 #if defined(__DragonFly__) || __FreeBSD_version < 500000
57 #include <i386/apm/apm.h>
58 #else
59 #include <i386/bios/apm.h>
60 #endif
61
62 #if 0
63 static struct apm_softc apm_softc;
64
65 static d_open_t apmopen;
66 static d_close_t apmclose;
67 static d_write_t apmwrite;
68 static d_ioctl_t apmioctl;
69 static d_poll_t apmpoll;
70 #endif
71
72 #define CDEV_MAJOR 39
73 static struct cdevsw apm_cdevsw = {
74
75 /**
76         .d_open =       apmopen,
77         .d_close =      apmclose,
78         .d_write =      apmwrite,
79         .d_ioctl =      apmioctl,
80
81         .d_poll =       apmpoll,
82 */
83         .d_name =       "apm",
84         .d_maj =        CDEV_MAJOR,
85
86 };
87
88 #if 0
89
90 static int
91 acpi_capm_convert_battstate(struct  acpi_battinfo *battp)
92 {
93         int     state;
94
95         state = 0xff;   /* XXX unknown */
96
97         if (battp->state & ACPI_BATT_STAT_DISCHARG) {
98                 if (battp->cap >= 50) {
99                         state = 0;      /* high */
100                 } else {
101                         state = 1;      /* low */
102                 }
103         }
104         if (battp->state & ACPI_BATT_STAT_CRITICAL) {
105                 state = 2;              /* critical */
106         }
107         if (battp->state & ACPI_BATT_STAT_CHARGING) {
108                 state = 3;              /* charging */
109         }
110         return (state);
111 }
112
113 static int
114 acpi_capm_convert_battflags(struct  acpi_battinfo *battp)
115 {
116         int     flags;
117
118         flags = 0;
119
120         if (battp->cap >= 50) {
121                 flags |= APM_BATT_HIGH;
122         } else {
123                 if (battp->state & ACPI_BATT_STAT_CRITICAL) {
124                         flags |= APM_BATT_CRITICAL;
125                 } else {
126                         flags |= APM_BATT_LOW;
127                 }
128         }
129         if (battp->state & ACPI_BATT_STAT_CHARGING) {
130                 flags |= APM_BATT_CHARGING;
131         }
132         if (battp->state == ACPI_BATT_STAT_NOT_PRESENT) {
133                 flags = APM_BATT_NOT_PRESENT;
134         }
135
136         return (flags);
137 }
138
139 static int
140 acpi_capm_get_info(apm_info_t aip)
141 {
142         int     acline;
143         struct  acpi_battinfo batt;
144
145         aip->ai_infoversion = 1;
146         aip->ai_major       = 1;
147         aip->ai_minor       = 2;
148         aip->ai_status      = apm_softc.active;
149         aip->ai_capabilities= 0xff00;   /* XXX unknown */
150
151         if (acpi_acad_get_acline(&acline)) {
152                 aip->ai_acline = 0xff;          /* unknown */
153         } else {
154                 aip->ai_acline = acline;        /* on/off */
155         }
156
157         if (acpi_battery_get_battinfo(-1, &batt)) {
158                 aip->ai_batt_stat = 0xff;       /* unknown */
159                 aip->ai_batt_life = 0xff;       /* unknown */
160                 aip->ai_batt_time = -1;         /* unknown */
161                 aip->ai_batteries = 0;
162         } else {
163                 aip->ai_batt_stat = acpi_capm_convert_battstate(&batt);
164                 aip->ai_batt_life = batt.cap;
165                 aip->ai_batt_time = (batt.min == -1) ? -1 : batt.min * 60;
166                 aip->ai_batteries = acpi_battery_get_units();
167         }
168
169         return (0);
170 }
171
172 static int
173 acpi_capm_get_pwstatus(apm_pwstatus_t app)
174 {
175         int     batt_unit;
176         int     acline;
177         struct  acpi_battinfo batt;
178
179         if (app->ap_device != PMDV_ALLDEV &&
180             (app->ap_device < PMDV_BATT0 || app->ap_device > PMDV_BATT_ALL)) {
181                 return (1);
182         }
183
184         if (app->ap_device == PMDV_ALLDEV) {
185                 batt_unit = -1;                 /* all units */
186         } else {
187                 batt_unit = app->ap_device - PMDV_BATT0;
188         }
189
190         if (acpi_battery_get_battinfo(batt_unit, &batt)) {
191                 return (1);
192         }
193
194         app->ap_batt_stat = acpi_capm_convert_battstate(&batt);
195         app->ap_batt_flag = acpi_capm_convert_battflags(&batt);
196         app->ap_batt_life = batt.cap;
197         app->ap_batt_time = (batt.min == -1) ? -1 : batt.min * 60;
198
199         if (acpi_acad_get_acline(&acline)) {
200                 app->ap_acline = 0xff;          /* unknown */
201         } else {
202                 app->ap_acline = acline;        /* on/off */
203         }
204
205         return (0);
206 }
207
208 static int
209 apmopen(dev_t dev, int flag, int fmt, d_thread_t *td)
210 {
211         return (0);
212 }
213
214 static int
215 apmclose(dev_t dev, int flag, int fmt, d_thread_t *td)
216 {
217         return (0);
218 }
219
220 static int
221 apmioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td)
222 {
223         int     error = 0;
224         struct  acpi_softc *acpi_sc;
225         struct apm_info info;
226         apm_info_old_t aiop;
227
228         if ((acpi_sc = device_get_softc(acpi_dev)) == NULL) {
229                 return (ENXIO);
230         }
231
232         switch (cmd) {
233         case APMIO_SUSPEND:
234                 if (!(flag & FWRITE))
235                         return (EPERM);
236                 if (apm_softc.active)
237                         acpi_SetSleepState(acpi_sc, acpi_sc->acpi_suspend_sx);
238                 else
239                         error = EINVAL;
240                 break;
241
242         case APMIO_STANDBY:
243                 if (!(flag & FWRITE))
244                         return (EPERM);
245                 if (apm_softc.active)
246                         acpi_SetSleepState(acpi_sc, acpi_sc->acpi_standby_sx);
247                 else
248                         error = EINVAL;
249                 break;
250
251         case APMIO_GETINFO_OLD:
252                 if (acpi_capm_get_info(&info))
253                         error = ENXIO;
254                 aiop = (apm_info_old_t)addr;
255                 aiop->ai_major = info.ai_major;
256                 aiop->ai_minor = info.ai_minor;
257                 aiop->ai_acline = info.ai_acline;
258                 aiop->ai_batt_stat = info.ai_batt_stat;
259                 aiop->ai_batt_life = info.ai_batt_life;
260                 aiop->ai_status = info.ai_status;
261                 break;
262
263         case APMIO_GETINFO:
264                 if (acpi_capm_get_info((apm_info_t)addr))
265                         error = ENXIO;
266
267                 break;
268
269         case APMIO_GETPWSTATUS:
270                 if (acpi_capm_get_pwstatus((apm_pwstatus_t)addr))
271                         error = ENXIO;
272                 break;
273
274         case APMIO_ENABLE:
275                 if (!(flag & FWRITE))
276                         return (EPERM);
277                 apm_softc.active = 1;
278                 break;
279
280         case APMIO_DISABLE:
281                 if (!(flag & FWRITE))
282                         return (EPERM);
283                 apm_softc.active = 0;
284                 break;
285
286         case APMIO_HALTCPU:
287                 break;
288
289         case APMIO_NOTHALTCPU:
290                 break;
291
292         case APMIO_DISPLAY:
293                 if (!(flag & FWRITE))
294                         return (EPERM);
295                 break;
296
297         case APMIO_BIOS:
298                 if (!(flag & FWRITE))
299                         return (EPERM);
300                 bzero(addr, sizeof(struct apm_bios_arg));
301                 break;
302
303         default:
304                 error = EINVAL;
305                 break;
306         }
307
308         return (error);
309 }
310
311 static int
312 apmwrite(dev_t dev, struct uio *uio, int ioflag)
313 {
314
315         return (uio->uio_resid);
316 }
317
318 static int
319 apmpoll(dev_t dev, int events, d_thread_t *td)
320 {
321         return (0);
322 }
323 #endif
324
325 static void
326 acpi_capm_init(struct acpi_softc *sc)
327 {
328         cdevsw_add(&apm_cdevsw, 0, 0);
329         make_dev(&apm_cdevsw, 0, 0, 5, 0664, "apm");
330 }
331
332 int
333 acpi_machdep_init(device_t dev)
334 {
335         struct  acpi_softc *sc;
336
337         acpi_dev = dev;
338         if ((sc = device_get_softc(acpi_dev)) == NULL) {
339                 return (ENXIO);
340         }
341
342         /*
343          * XXX: Prevent the PnP BIOS code from interfering with
344          * our own scan of ISA devices.
345          */
346         PnPBIOStable = NULL;
347
348         acpi_capm_init(sc);
349
350         acpi_install_wakeup_handler(sc);
351
352 #ifdef SMP
353         acpi_SetIntrModel(ACPI_INTR_APIC);
354 #endif
355         return (0);
356 }
357