ioapic: apic_io_enable -> ioapic_enable
[dragonfly.git] / sys / platform / pc64 / acpica5 / 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  *
26  * $FreeBSD: src/sys/i386/acpica/acpi_machdep.c,v 1.20 2004/05/05 19:51:15 njl Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/bus.h>
31 #include <sys/conf.h>
32 #include <sys/device.h>
33 #include <sys/fcntl.h>
34 #include <sys/kernel.h>
35 #include <sys/sysctl.h>
36 #include <sys/uio.h>
37
38 #include "acpi.h"
39 #include <dev/acpica5/acpivar.h>
40 #include <dev/acpica5/acpiio.h>
41
42 static device_t acpi_dev;
43
44 /*
45  * APM driver emulation
46  */
47
48 #include <sys/event.h>
49
50 #include <machine/apm_bios.h>
51 #include <machine/pc/bios.h>
52 #include <machine_base/apm/apm.h>
53 #include <machine/smp.h>
54
55 uint32_t acpi_reset_video = 1;
56 TUNABLE_INT("hw.acpi.reset_video", &acpi_reset_video);
57
58 /*
59  * -1 == unset. Use acpi_GetDefaultIntrModel()
60  */
61 #ifdef SMP /* APIC-IO */
62 static int intr_model = -1;
63 #else
64 static int intr_model = ACPI_INTR_PIC;
65 #endif
66
67 static struct apm_softc apm_softc;
68
69 static d_open_t apmopen;
70 static d_close_t apmclose;
71 static d_write_t apmwrite;
72 static d_ioctl_t apmioctl;
73 static d_kqfilter_t apmkqfilter;
74
75 static struct dev_ops apm_ops = {
76         { "apm", 0, 0 },
77         .d_open = apmopen,
78         .d_close = apmclose,
79         .d_write = apmwrite,
80         .d_ioctl = apmioctl,
81         .d_kqfilter = apmkqfilter
82 };
83
84 static int
85 acpi_capm_convert_battstate(struct  acpi_battinfo *battp)
86 {
87         int     state;
88
89         state = 0xff;   /* XXX unknown */
90
91         if (battp->state & ACPI_BATT_STAT_DISCHARG) {
92                 if (battp->cap >= 50)
93                         state = 0;      /* high */
94                 else
95                         state = 1;      /* low */
96         }
97         if (battp->state & ACPI_BATT_STAT_CRITICAL)
98                 state = 2;              /* critical */
99         if (battp->state & ACPI_BATT_STAT_CHARGING)
100                 state = 3;              /* charging */
101
102         /* If still unknown, determine it based on the battery capacity. */
103         if (state == 0xff) {
104                 if (battp->cap >= 50)
105                         state = 0;      /* high */
106                 else
107                         state = 1;      /* low */
108         }
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         if (battp->state & ACPI_BATT_STAT_CHARGING)
129                 flags |= APM_BATT_CHARGING;
130         if (battp->state == ACPI_BATT_STAT_NOT_PRESENT)
131                 flags = APM_BATT_NOT_PRESENT;
132
133         return (flags);
134 }
135
136 static int
137 acpi_capm_get_info(apm_info_t aip)
138 {
139         int     acline;
140         struct  acpi_battinfo batt;
141
142         aip->ai_infoversion = 1;
143         aip->ai_major       = 1;
144         aip->ai_minor       = 2;
145         aip->ai_status      = apm_softc.active;
146         aip->ai_capabilities= 0xff00;   /* XXX unknown */
147
148         if (acpi_acad_get_acline(&acline))
149                 aip->ai_acline = 0xff;          /* unknown */
150         else
151                 aip->ai_acline = acline;        /* on/off */
152
153         if (acpi_battery_get_battinfo(NULL, &batt)) {
154                 aip->ai_batt_stat = 0xff;       /* unknown */
155                 aip->ai_batt_life = 0xff;       /* unknown */
156                 aip->ai_batt_time = -1;         /* unknown */
157                 aip->ai_batteries = 0;
158         } else {
159                 aip->ai_batt_stat = acpi_capm_convert_battstate(&batt);
160                 aip->ai_batt_life = batt.cap;
161                 aip->ai_batt_time = (batt.min == -1) ? -1 : batt.min * 60;
162                 aip->ai_batteries = acpi_battery_get_units();
163         }
164
165         return (0);
166 }
167
168 static int
169 acpi_capm_get_pwstatus(apm_pwstatus_t app)
170 {
171         device_t dev;
172         int     acline, unit, error;
173         struct  acpi_battinfo batt;
174
175         if (app->ap_device != PMDV_ALLDEV &&
176             (app->ap_device < PMDV_BATT0 || app->ap_device > PMDV_BATT_ALL))
177                 return (1);
178
179         if (app->ap_device == PMDV_ALLDEV)
180                 error = acpi_battery_get_battinfo(NULL, &batt);
181         else {
182                 unit = app->ap_device - PMDV_BATT0;
183                 dev = devclass_get_device(devclass_find("battery"), unit);
184                 if (dev != NULL)
185                         error = acpi_battery_get_battinfo(dev, &batt);
186                 else
187                         error = ENXIO;
188         }
189         if (error)
190                 return (1);
191
192         app->ap_batt_stat = acpi_capm_convert_battstate(&batt);
193         app->ap_batt_flag = acpi_capm_convert_battflags(&batt);
194         app->ap_batt_life = batt.cap;
195         app->ap_batt_time = (batt.min == -1) ? -1 : batt.min * 60;
196
197         if (acpi_acad_get_acline(&acline))
198                 app->ap_acline = 0xff;          /* unknown */
199         else
200                 app->ap_acline = acline;        /* on/off */
201
202         return (0);
203 }
204
205 static int
206 apmopen(struct dev_open_args *ap)
207 {
208         return (0);
209 }
210
211 static int
212 apmclose(struct dev_close_args *ap)
213 {
214         return (0);
215 }
216
217 static int
218 apmioctl(struct dev_ioctl_args *ap)
219 {
220         int     error = 0;
221         struct  acpi_softc *acpi_sc;
222         struct apm_info info;
223         apm_info_old_t aiop;
224
225         acpi_sc = device_get_softc(acpi_dev);
226
227         switch (ap->a_cmd) {
228         case APMIO_SUSPEND:
229                 if ((ap->a_fflag & FWRITE) == 0)
230                         return (EPERM);
231                 if (apm_softc.active)
232                         acpi_SetSleepState(acpi_sc, acpi_sc->acpi_suspend_sx);
233                 else
234                         error = EINVAL;
235                 break;
236         case APMIO_STANDBY:
237                 if ((ap->a_fflag & FWRITE) == 0)
238                         return (EPERM);
239                 if (apm_softc.active)
240                         acpi_SetSleepState(acpi_sc, acpi_sc->acpi_standby_sx);
241                 else
242                         error = EINVAL;
243                 break;
244         case APMIO_GETINFO_OLD:
245                 if (acpi_capm_get_info(&info))
246                         error = ENXIO;
247                 aiop = (apm_info_old_t)ap->a_data;
248                 aiop->ai_major = info.ai_major;
249                 aiop->ai_minor = info.ai_minor;
250                 aiop->ai_acline = info.ai_acline;
251                 aiop->ai_batt_stat = info.ai_batt_stat;
252                 aiop->ai_batt_life = info.ai_batt_life;
253                 aiop->ai_status = info.ai_status;
254                 break;
255         case APMIO_GETINFO:
256                 if (acpi_capm_get_info((apm_info_t)ap->a_data))
257                         error = ENXIO;
258                 break;
259         case APMIO_GETPWSTATUS:
260                 if (acpi_capm_get_pwstatus((apm_pwstatus_t)ap->a_data))
261                         error = ENXIO;
262                 break;
263         case APMIO_ENABLE:
264                 if ((ap->a_fflag & FWRITE) == 0)
265                         return (EPERM);
266                 apm_softc.active = 1;
267                 break;
268         case APMIO_DISABLE:
269                 if ((ap->a_fflag & FWRITE) == 0)
270                         return (EPERM);
271                 apm_softc.active = 0;
272                 break;
273         case APMIO_HALTCPU:
274                 break;
275         case APMIO_NOTHALTCPU:
276                 break;
277         case APMIO_DISPLAY:
278                 if ((ap->a_fflag & FWRITE) == 0)
279                         return (EPERM);
280                 break;
281         case APMIO_BIOS:
282                 if ((ap->a_fflag & FWRITE) == 0)
283                         return (EPERM);
284                 bzero(ap->a_data, sizeof(struct apm_bios_arg));
285                 break;
286         default:
287                 error = EINVAL;
288                 break;
289         }
290
291         return (error);
292 }
293
294 static int
295 apmwrite(struct dev_write_args *ap)
296 {
297         return (ap->a_uio->uio_resid);
298 }
299
300 static void apmfilter_detach(struct knote *);
301 static int apmfilter(struct knote *, long);
302
303 static struct filterops apmfilterops =
304         { FILTEROP_ISFD, NULL, apmfilter_detach, apmfilter };
305
306 static int
307 apmkqfilter(struct dev_kqfilter_args *ap)
308 {
309         struct knote *kn = ap->a_kn;
310
311         kn->kn_fop = &apmfilterops;
312         ap->a_result = 0;
313         return (0);
314 }
315
316 static void
317 apmfilter_detach(struct knote *kn) {}
318
319 static int
320 apmfilter(struct knote *kn, long hint)
321 {
322         return (0);
323 }
324
325 static void
326 acpi_capm_init(struct acpi_softc *sc)
327 {
328         make_dev(&apm_ops, 0, 0, 5, 0664, "apm");
329         make_dev(&apm_ops, 8, 0, 5, 0664, "apm");
330         kprintf("Warning: ACPI is disabling APM's device.  You can't run both\n");
331 }
332
333 /*
334  * Lazy initialize intr_model
335  */
336 static int
337 acpi_GetDefaultIntrModel(void)
338 {
339         if (intr_model == -1) {
340 #ifdef SMP
341                 if (ioapic_enable)
342                         intr_model = ACPI_INTR_APIC;
343                 else
344                         intr_model = ACPI_INTR_PIC;
345 #else
346                 intr_model = ACPI_INTR_PIC;
347 #endif
348         }
349         return intr_model;
350 }
351
352 int
353 acpi_machdep_init(device_t dev)
354 {
355         struct  acpi_softc *sc;
356
357         acpi_dev = dev;
358         sc = device_get_softc(acpi_dev);
359
360         /*
361          * XXX: Prevent the PnP BIOS code from interfering with
362          * our own scan of ISA devices.
363          */
364 #if 0
365         PnPBIOStable = NULL;
366 #endif
367
368         acpi_capm_init(sc);
369
370         acpi_install_wakeup_handler(sc);
371
372         if (acpi_GetDefaultIntrModel() != ACPI_INTR_PIC)
373                 acpi_SetIntrModel(intr_model);
374
375         SYSCTL_ADD_UINT(&sc->acpi_sysctl_ctx,
376             SYSCTL_CHILDREN(sc->acpi_sysctl_tree), OID_AUTO,
377             "reset_video", CTLFLAG_RD | CTLFLAG_RW, &acpi_reset_video, 0,
378             "Call the VESA reset BIOS vector on the resume path");
379
380         return (0);
381 }
382
383 void
384 acpi_SetDefaultIntrModel(int model)
385 {
386
387         intr_model = model;
388 }