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