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